@charset "utf-8";
/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("sanitize.css");

/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /*フォント種類*/
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  background: #fff;
  /*背景色*/
  color: #000;
  /*全体の文字色*/
  line-height: 1.6em;
  /*行間*/
  overflow-x: hidden;
}

/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin: auto;
}

a img:hover {
  transition: all .3s;
  opacity: 0.7;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*ul,olタグ*/
ul,
ol {
  margin: 0px;
  padding: 0px;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: #000;
  /*文字色*/
  transition: 0.3s;
}

/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section {
  margin: 80px auto;
  /*ボックス内の余白*/
  width: 100%;
}

@media screen and (max-width: 1110px) {
  section {
    width: 100%;
    margin: 40px auto;
  }

  body {
    font-size: 14px;
  }
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  z-index: 3;
  width: 100%;
  position: absolute;
}

.h_area {
  max-width: 1440px;
  margin: auto;
  display: flex;
  padding: 20px 0;
}

/*ロゴ画像*/
header #logo img {
  display: block;
  max-height: 80px;
  /* max-height: 32px; */
}

header #logo {
  margin-right: auto
}

@media screen and (max-width:1110px) {
  header #logo img {
    max-height: 24px;
  }

  .h_area {
    padding: 30px 0px 0px 40px;
  }
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  width: 100%;
  background: url(../images/pc_bg.webp);
  background-size: cover;
  background-position: center;
  height: 700px;
}

#main_area ul {
  width: 920px;
  height: 580px;
  display: grid;
  grid-template-columns: 575px 290px;
  margin: auto;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 0;
}

#main_area dd {
  margin-bottom: 20px;
}

#main_area dd:nth-of-type(3) {
  margin-bottom: 20px;
}

#main_area dd:first-child {
  width: 575px;
  height: 60px;
  background-color: #000;
  display: grid;
  place-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  clip-path: polygon(6% 0%, 100% 0%, 95% 100%, 0% 100%);
}

#main_area dd ul {
  width: 85%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  padding: 0;
}

#main_area li.img_area {
  width: 100%;
  position: relative;
  height: auto;
  margin: auto;
}

#main_area li.img_area figure:last-child {
  width: 230px;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

#main_area figure {
  text-align: center;
}

@media (max-width: 1110px) {

  #main_area {
    width: 100%;
    background: url(../images/sp_bg.webp);
    background-size: cover;
    background-position: center;
    height: auto;
  }

  #main_area ul {
    width: 585px;
    height: auto;
    grid-template-columns: 1fr;
    padding: 10% 0 10%;
  }
}

@media (max-width: 768px) {
  .h_area {
    padding: 15px 0px 0px 20px;
  }

  header #logo img {
    max-height: 30px;
  }

  #main_area ul {
    width: 80%;
    margin: auto;
    padding: 12% 0 12%;
  }

  #main_area dd {
    margin-bottom: 15px;
  }

  #main_area dd:nth-of-type(3) {
    margin-bottom: 10px;
  }

  #main_area dd:first-child {
    width: 100%;
    padding: 2% 0;
    height: auto;
    font-size: 13px;
    margin: 0 auto 15px;
    letter-spacing: 0.2px;
  }

  #main_area dd ul {
    width: 85%;
    padding: 0;
  }

  #main_area dd li {
    padding-left: 6%;
  }

  #main_area dd li:first-child {
    padding-left: 0%;
  }

  #main_area dd:last-child {
    width: 85%;
    margin: auto;
  }
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
  text-align: center;
  line-height: 1.8em;
}

/*mainブロック内のh2タグ*/
main h2 {
  color: #fff;
  font-size: 48px;
  position: relative;
  font-weight: bold;
}

main h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

main figure {
  text-align: center;
}

/*mainブロックのpタグ*/
main p {
  margin: 0;
  /*上、左右、下へ空けるスペース*/
}

@media (max-width: 1110px) {

  main h2 {
    font-size: 20px;
  }

  main h2::after {
    height: 8px;
    bottom: -20px;
  }
}

/*TikTok運用でこんな悩みはございませんか？
---------------------------------------------------------------------------*/
#info {
  margin: auto;
  padding: 0;
  background: #fb703b;
  padding: 80px 0 0;
  position: relative;
}

#info::after {
  content: "";
  position: absolute;
  height: 50px;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  /* ココ */
  background-color: #fb703b;
  /* デモは青色の部分 */
  left: 0;
  bottom: -49px;
  /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
}

#info h2 {
  color: #fff;
  font-size: 30px;
}

#info h2::after {
  display: none;
}

#info h2 span {
  color: #fff;
  font-size: 30px;
  position: relative;
}

#info h2 span:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0.4em;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
}

#info .img_area {
  width: 800px;
  height: 380px;
  margin: 20px auto 0;
  position: relative;
  bottom: -50px;
  z-index: 2;
}

#info .img_area figure:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
}

#info .img_area figure:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: -8px;
  right: 0;
  margin: auto;
}

@media (max-width: 1110px) {
  #info {
    margin: auto;
    padding: 0;
    background: #fb703b;
    padding: 30px 0px 0;
    position: relative;
  }

  #info::after {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    /* ココ */
    background-color: #fb703b;
    /* デモは青色の部分 */
    left: 0;
    bottom: -49px;
    /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
  }

  #info h2 {
    font-size: 20px;
  }

  #info h2 span {
    color: #fff;
    font-size: 20px;
    position: relative;
  }

  #info h2 span:before {
    display: none;
  }

  #info .img_area {
    width: 700px;
    height: 380px;
    margin: -10px auto 0;
    position: relative;
    bottom: -50px;
    z-index: 2;
  }

  #info .img_area figure:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
  }

  #info .img_area figure:nth-of-type(2) {
    position: absolute;
    bottom: 3px;
    left: -13px;
    width: 200px;
  }
}

@media (max-width: 750px) {
  #info::after {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    clip-path: polygon(0 0, 0 0, 0 0);
    /* ココ */
    left: 0;
    bottom: -49px;
    /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
  }

  #info .img_area {
    width: 100%;
    padding-top: calc(350 / 750 * 100%);
    margin: -10px auto 0;
    position: relative;
    bottom: -30px;
    z-index: 2;
    height: auto;
  }

  #info .img_area figure:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 96%;
  }

  #info .img_area figure:nth-of-type(2) {
    position: absolute;
    bottom: -6vw;
    left: 0px;
    width: 100%;
  }
}

/*TikTok運用でこんな悩みはございませんか？
---------------------------------------------------------------------------*/
#about {
  margin: auto;
  padding: 0;
  font-size: 34px;
}

#about article {
  max-width: 1300px;
  margin: auto;
  padding: 115px 0 80px;
  position: relative;
}

#about h2 {
  color: #1c1c1c;
  font-size: 34px;
  background: linear-gradient(transparent 70%, #fffb9b 70%);
  display: inline;
}

#about h2::after {
  width: 34px;
  height: 41px;
  background-color: transparent;
  background-image: url(../images/about_img.webp);
  bottom: 10px;
  left: -50px;
  right: 0px;
  margin: 0;
}

#about h2::before {
  width: 34px;
  height: 41px;
  background-color: transparent;
  background-image: url(../images/about_img.webp);
  bottom: 10px;
  right: -50px;
  margin: 0;
  display: block;
  content: "";
  transform: scale(-1, 1);
  position: absolute;
}

#about p {
  margin: 50px auto 0;
  line-height: 1.6em;
  font-weight: 500;
}

#about p span {
  background-color: #000;
  color: #fff;
  padding: 2px 8px;
}

#about figure:nth-of-type(1) {
  position: absolute;
  top: -45%;
  left: 0;
  z-index: -1;
}

#about figure:nth-of-type(2) {
  position: absolute;
  bottom: -45%;
  right: 0;
  z-index: -1;
}


@media (max-width: 1110px) {
  #about {
    margin: auto;
    padding: 0;
    font-size: 20px;
  }

  #about article {
    padding: 85px 0 45px;
  }

  #about h2 {
    font-size: 22px;
  }

  #about h2::after {
    width: 24px;
    height: 31px;
    bottom: 0px;
    left: -30px;
    right: 0px;
    background-size: cover;
  }

  #about h2::before {
    width: 24px;
    height: 31px;
    bottom: 0px;
    right: -30px;
    background-size: cover;
  }

  #about p {
    margin: 25px auto 0;
    line-height: 1.6em;
    font-weight: 500;
  }

  #about figure:nth-of-type(1) {
    position: absolute;
    top: -4%;
    left: -7%;
    z-index: -1;
    width: 26%;
  }

  #about figure:nth-of-type(2) {
    position: absolute;
    bottom: -4%;
    right: -7%;
    z-index: -1;
    width: 26%;
  }
}

/*FEATURE TikTok
---------------------------------------------------------------------------*/
#feature {
  width: 100%;
  margin: auto;
  padding: 80px 0;
  background-color: #000;
}

#feature strong {
  color: #fff;
  font-size: 24px;
  padding-top: 60px;
  display: block;
}

#feature ul {
  width: 1000px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 40px;
  position: relative;
  margin: 80px auto 0;
  z-index: 2;
  list-style: none;
}

#feature ul::before {
  position: absolute;
  width: 375px;
  height: 165px;
  content: "";
  display: block;
  background: url(../images/feature_img01.webp);
  top: -35px;
  right: -45px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

#feature ul::after {
  position: absolute;
  width: 375px;
  height: 165px;
  content: "";
  display: block;
  background: url(../images/feature_img02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -35px;
  left: -45px;
  z-index: -1;
}


#feature li {
  background: #fff;
  border-radius: 40px;
  padding: 30px;
}

#feature li h3 {
  background: #09d3cd;
  font-size: 24px;
  padding: 30px 0px;
  width: 315px;
  height: 55px;
  display: grid;
  place-content: center;
  color: #fff;
  margin: 0 auto 25px;
}

#feature li:nth-of-type(2) h3,
#feature li:nth-of-type(3) h3 {
  background: #fe2c55;
}


#feature dd {
  text-align: left;
}


@media (max-width: 1110px) {
  #feature {
    padding: 25px 0;
  }

  #feature strong {
    color: #fff;
    font-size: 16px;
    padding-top: 30px;
    display: block;
  }

  #feature ul {
    width: 90%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 20px;
    margin: 35px auto;
  }

  #feature ul::before {
    position: absolute;
    width: 375px;
    height: 165px;
    content: "";
    display: block;
    background: url(../images/feature_img01.webp);
    top: -28px;
    right: -45px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

  #feature ul::after {
    position: absolute;
    width: 375px;
    height: 165px;
    content: "";
    display: block;
    background: url(../images/feature_img02.webp);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -35px;
    left: -45px;
    z-index: -1;
  }

  #feature li {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
  }

  #feature li h3 {
    background: #09d3cd;
    font-size: 16px;
    padding: 15px 0px;
    width: 210px;
    height: 32px;
    margin: 0 auto 15px;
  }
}


/*point
---------------------------------------------------------------------------*/
#point {
  width: 100%;
}

#point h2 {
  color: #000;
}

#point h2::after {
  background-color: #000;
}

#point strong {
  font-size: 24px;
  padding-top: 60px;
  display: block;
}

#point ul {
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 45px;
  margin: 80px auto 0;
  list-style: none;
}

#point li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  align-items: start;
}

#point dl {
  width: 600px;
  height: 230px;
  padding: 30px;
  background-color: #fb703b;
  color: #fff;
  border-radius: 40px;
  margin: 35px 0 0 -80px;
  text-align: left;
}

#point li:nth-of-type(2) dl {
  margin: 35px -80px 0 0;
  order: -1;
}

#point li figure {
  z-index: -1;
}

#point dt {
  display: grid;
  grid-template-columns: 100px 400px;
  align-items: center;
  margin-bottom: 20px;
}

#point dt h3 {
  font-size: 24px;
}

#point dt p {
  display: grid;
  width: 80px;
  height: 80px;
  place-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #fb703b;
  font-weight: bold;
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 25px;
}

#point dt span {
  font-size: 28px;
}

#point dd {
  line-height: 1.4em;
}


@media (max-width: 1110px) {

  #point h2::after {
    background-color: #000;
  }

  #point strong {
    font-size: 16px;
    padding-top: 30px;
  }

  #point ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin: 40px auto 0;
    list-style: none;
  }

  #point li {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    align-items: start;
  }

  #point dl {
    width: 320px;
    height: auto;
    padding: 20px;
    background-color: #fb703b;
    color: #fff;
    border-radius: 20px;
    margin: -18% 5% 0 auto;
    text-align: left;
  }

  #point li:nth-of-type(2) dl {
    margin: -18% 0 0 5%;
    order: 0;
  }

  #point li figure {
    z-index: -1;
    text-align: left;
  }

  #point dt {
    display: grid;
    grid-template-columns: 60px 220px;
    align-items: center;
    margin-bottom: 10px;
  }

  #point dt h3 {
    font-size: 16px;
  }

  #point dt p {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #fb703b;
    font-weight: bold;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.3px;
    line-height: 12px;
  }

  #point dt span {
    font-size: 16px;
  }
}

/*CASE
---------------------------------------------------------------------------*/
#case {
  width: 100%;
  margin: auto;
  padding: 80px 0;
  background-color: #fb703b;
}

#case strong {
  color: #fff;
  font-size: 24px;
  padding-top: 60px;
  display: block;
}

/* #case ul {
  width: 1000px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 40px;
  position: relative;
  margin: 70px auto 0;
  z-index: 2;
  list-style: none;
}

#case li {
  background: #fff;
  padding: 25px 10px 0px 5px;
  border: 4px solid #25f4ee;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
} */

#case ul {
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 70px auto 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

#case li {
  display: flex;
  align-items: center;
  justify-content: center;
}

#case dt h3 {
  background: #09d3cd;
  font-size: 22px;
  padding: 20px 0px;
  width: 200px;
  height: 45px;
  display: grid;
  place-content: center;
  color: #fff;
  margin: 0 0 10px;
}

/* #case li:nth-of-type(2) h3 {
  background: #fe2c55;
}

#case li:nth-of-type(2) {
  border: 4px solid #fe2c55;
} */

#case dd {
  text-align: left;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: -0.06em;
}

#case dd p {
  font-size: 14px;
  margin: 45px 0 30px;
  letter-spacing: -0.1em;
  line-height: 1em;
}

#case dd span {
  background: linear-gradient(transparent 60%, #fffb9b 60%);
}



@media (max-width: 1110px) {
  #case {
    width: 100%;
    margin: auto;
    padding: 30px 0 40px;
    background-color: #fb703b;
  }

  #case strong {
    font-size: 16px;
    padding-top: 30px;
  }

  #case ul {
    grid-template-columns: 1fr;
    width: 90%;
  }

  /* #case ul {
    width: 90%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    position: relative;
    margin: 30px auto 0;
    z-index: 2;
    list-style: none;
  }

  #case li {
    background: #fff;
    padding: 20px 10px 0px 5px;
    border: 4px solid #25f4ee;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
  } */

  #case dt h3 {
    background: #09d3cd;
    font-size: 16px;
    padding: 20px 0px;
    width: 150px;
    height: 30px;
    display: grid;
    place-content: center;
    color: #fff;
    margin: 0 0 10px;
  }

  #case li:nth-of-type(2) h3 {
    background: #fe2c55;
  }

  #case li:nth-of-type(4) h3 {
    background: #fe2c55;
  }

  /* #case li:nth-of-type(2) {
    border: 4px solid #fe2c55;
  }

  #case li:nth-of-type(4) {
    border: 4px solid #fe2c55;
  } */

  #case dd {
    text-align: left;
    font-size: 12px;
    line-height: 2em;
    letter-spacing: -0.06em;
  }

  #case dd p {
    font-size: 12px;
    margin: 20px 0 20px;
    letter-spacing: -0.1em;
    line-height: 1em;
  }

  #case dd span {
    background: linear-gradient(transparent 60%, #fffb9b 60%);
  }

}


/*プラン
---------------------------------------------------------------------------*/
#plan {
  width: 100%;
}

#plan h2 {
  color: #000;
}

#plan strong {
  font-size: 24px;
  padding-top: 60px;
  display: block;
}

#plan h2::after {
  background-color: #000;
}

#plan table {
  border-collapse: collapse;
  margin: 60px auto 0;
  padding: 0;
  width: 1000px;
  table-layout: fixed;
}

#plan table tr {
  border-bottom: 10px solid #fff;
}

#plan table tbody tr {
  background-color: #def2fe;
}

#plan table td {
  border-right: 10px solid #fff;
  height: 80px;
}

#plan table th {
  font-size: 20px;
  border-right: 10px solid #fff;
  color: #fff;
  vertical-align: bottom;
}

#plan table thead th div {
  font-size: 20px;
  background-color: #fb703b;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
  margin-top:10px;
}

#plan table tbody th div {
  font-size: 20px;
  background: #525252;
  color: #fff;
  text-align: center;
  border-radius: 10px 0 0 10px;
  height: 80px;
  display: grid;
  place-content: center;
}

#plan table tbody th {
  text-align: left;
  width: 120px;
  background-color: #fff;
}

#plan .txt {
  text-align: left;
}

#plan .price {
  text-align: left;
}

#plan .price strong {
  color: #B90018;
  font-weight: bold;
}

#plan .non {
  background: #fff;
  width: 120px;
  height: auto;
}

@media (max-width: 1110px) {
  #plan {
    width: 100%;
    margin: 35px 0 0px;
  }

  #plan strong {
    font-size: 16px;
    padding-top: 30px;
  }

  #plan table {
    border-collapse: collapse;
    margin: 30px 0 0 5%;
    padding: 0;
    width: 610px;
    table-layout: fixed;
  }

  #plan table tr {
    border-bottom: 5px solid #fff;
  }

  #plan table tbody tr {
    background-color: #def2fe;
  }

  #plan table td {
    border-right: 5px solid #fff;
    height: 40px;
  }

  #plan table th {
    font-size: 13px;
    border-right: 5px solid #fff;
    color: #fff;
  }

  #plan table thead th div {
    font-size: 13px;
    background-color: #fb703b;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 10px 0;
  }

  #plan table tbody th div {
    font-size: 13px;
    background: #525252;
    color: #fff;
    text-align: center;
    border-radius: 10px 0 0 10px;
    height: 40px;
    display: grid;
    place-content: center;
  }

  #plan table tbody th {
    text-align: left;
    width: 70px;
    background-color: #fff;
  }

  #plan .txt {
    text-align: left;
  }

  #plan .price {
    text-align: left;
  }

  #plan .price strong {
    color: #B90018;
    font-weight: bold;
  }

  #plan .non {
    background: #fff;
    width: 70px;
    height: auto;
  }
}


/*施策開始までの流れ
---------------------------------------------------------------------------*/
#flow {
  width: 100%;
  margin-top: 120px;
}

#flow h2 {
  color: #000;
}

#flow h2::after {
  background-color: #000;
}

#flow strong {
  color: #000;
  font-size: 24px;
  padding-top: 60px;
  margin-bottom: 60px;
  display: block;
}

@media (max-width: 1110px) {
  #flow {
    width: 90%;
    margin: 50px auto;
  }

  #flow h2 {
    color: #000;
  }

  #flow h2::after {
    background-color: #000;
  }

  #flow strong {
    font-size: 16px;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}

/*お問い合わせ
---------------------------------------------------------------------------*/
#contact {
  width: 100%;
  margin: auto;
  padding: 60px 0 80px;
  background-color: #e3e3e3;
}

#contact h2 {
  color: #000;
  font-size: 34px;
}

#contact h2::after {
  display: none;
}

#contact strong {
  color: #000;
  font-size: 18px;
  padding-top: 40px;
  display: block;
  font-weight: normal;
  margin-bottom: 50px;
}

@media (max-width: 1110px) {
  #contact {
    width: 100%;
    margin: auto;
    padding: 35px 0 60px;
    background-color: #e3e3e3;
  }

  #contact h2 {
    color: #000;
    font-size: 20px;
  }

  #contact strong {
    color: #000;
    font-size: 14px;
    padding-top: 25px;
    display: block;
    font-weight: normal;
    margin-bottom: 40px;
  }
}

/*施策開始までの流れ
---------------------------------------------------------------------------*/
#company {
  width: 100%;
}

#company h2 {
  color: #000;
  font-size: 34px;
  margin-bottom: 50px;
}

#company h2::after {
  display: none;
}

#company table {
  width: 700px;
  margin: auto;
}

#company table tr {
  border-top: 2px solid #000;
}

#company table tr:last-child {
  border-bottom: 2px solid #000;
}

#company table tr td:nth-child(1) {
  text-align: center;
  width: 30%;
  padding: 30px 0;
  vertical-align: top;
}

#company table tr td:nth-child(1) {
  font-weight: bold;
}

#company table tr td:nth-child(2) {
  text-align: left;
  padding: 30px 0;
}

@media (max-width: 1110px) {
  #company {
    width: 90%;
    margin: 37.5px auto 0;
  }

  #company h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #company table {
    width: 100%;
  }

  #company table td {
    display: block;
  }

  #company table tr td:nth-child(1) {
    text-align: left;
    width: 90%;
    padding: 15px 0 0px;
    vertical-align: top;
  }

  #company table tr td:nth-child(1) {
    font-weight: bold;
  }

  #company table tr td:nth-child(2) {
    text-align: left;
    padding: 0px 0 15px;
  }
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  background: #fb703b;
  color: #fff;
  font-size: 16px;
  height: 100px;
  display: grid;
  place-content: center;
  margin-top: 120px;
}

@media (max-width: 1110px) {
  footer {
    font-size: 12px;
    height: 50px;
    margin-top: 80px;
  }
}

/*その他
---------------------------------------------------------------------------*/

.c {
  text-align: center !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.text_box {
  margin: 60px auto;
}

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}

.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}

.large {
  font-size: 1.8em !important;
}

.block {
  display: block !important;
}

.sh {
  display: block;
}

.pc {
  display: none;
}

.sh2 {
  display: block;
}

.pc2 {
  display: none;
}

.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@media screen and (min-width:1110px) {

  /*全体の設定

    /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .pc {
    display: inline-block;
  }
}

@media screen and (min-width:750px) {

  /*全体の設定

    /*その他
---------------------------------------------------------------------------*/
  .sh2 {
    display: none;
  }

  .pc2 {
    display: inline-block;
  }
}


/* フォーム全体のスタイル */
.wpcf7-form {
  width: 700px;
  margin: auto;
}

.cf7-q {
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
  font-size: 22px;
}

.cf7-q span {
  font-size: 14px;
  color: #ee0c47;
  padding-left: 10px;
}

/* 入力フィールドのスタイル */
.wpcf7-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form input[type="file"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 16px;
}

/* フォーカス時のスタイル */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form input[type="file"]:focus {
  border-color: #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
  background-color: #ee0c47;
  color: #FFFFFF;
  font-size: 24px;
  padding: 10px 30px;
  border-radius: 20px;
  border: 2px solid #ee0c47;
  transition: background-color 0.3s ease;
  width: 220px;
  height: 70px;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #be1a46;
}

@media screen and (max-width:750px) {

  .wpcf7-form {
    width: 90%;
    margin: auto;
  }

  .cf7-q {
    margin-bottom: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
  }

  .cf7-q span {
    font-size: 12px;
    color: #ee0c47;
    padding-left: 10px;
  }

  /* 入力フィールドのスタイル */
  .wpcf7-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea,
  .wpcf7-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  /* フォーカス時のスタイル */
  .wpcf7-form input[type="text"]:focus,
  .wpcf7-form input[type="tel"]:focus,
  .wpcf7-form input[type="email"]:focus,
  .wpcf7-form textarea:focus,
  .wpcf7-form input[type="file"]:focus {
    border-color: #999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  /* 送信ボタンのスタイル */
  .wpcf7-form input[type="submit"] {
    background-color: #ee0c47;
    color: #FFFFFF;
    font-size: 24px;
    padding: 10px 30px;
    border-radius: 20px;
    border: 2px solid #ee0c47;
    transition: background-color 0.3s ease;
    width: 220px;
    height: 70px;
  }

  .wpcf7-form input[type="submit"]:hover {
    background-color: #be1a46;
  }

}