@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #F6F7F8;
}

@media screen and (min-width: 768px) {
  body {
    /* padding-top: 48px; ヘッダーの高さに合わせて調整 */
  }
}
.hidden-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .hidden-sp {
    display: inline;
  }
}
.hidden-pc {
  display: inline;
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 1000;
  /* 他の要素の上に表示するための値 */
  background-color: #fff;
  /* 背景色を指定（必要に応じて変更） */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* スクロール時に影をつける場合 */
}

@media screen and (min-width: 768px) {
  .header {
    height: 78px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 11px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header__logo img {
  width: 74px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .header__logo img {
    width: 88px;
  }
}
.header__nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: normal;
    font-style: normal;
  }
}
@media screen and (min-width: 768px) {
  .header__link {
    font-weight: 650;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .header-button {
    display: inline-block;
    padding: 11px 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #00C4CC;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 3px;
    white-space: nowrap;
    margin-left: auto;
  }
  .header-button:hover {
    opacity: 0.7;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}
.drawer-icon {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #00C4CC;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    display: none;
  }
}
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 50;
  padding: 120px 40px 40px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  /* テキストの中央揃え */
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer-content__img img {
  width: 100px;
}

.drawer-content__menu {
  margin-top: 50px;
  text-align: center;
}

.drawer-content__link {
  display: block;
  color: #00C4CC;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.fv {
  background-image: url(../img/fv-img.png);
  background-color: rgb(0, 0, 0);
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 280px;
  width: 100%;
  margin-top: 70px;
}

@media screen and (min-width: 768px) {
  .fv {
    background-image: url(../img/fv-img-pc.webp);
    background-color: rgb(0, 0, 0);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin-top: 39px;
    max-height: 870px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv {
    height: 100vh;
    margin-top: 173px;
    max-height: 656px;
  }
}
.fv__inner {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.fv__content {
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .fv__content {
    text-align: left;
  }
}
.fv__lead {
  font-weight: 650;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .fv__lead {
    padding-top: 230px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__lead {
    padding-top: 156px;
  }
}
.fv__lead1 {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .fv__lead1 {
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__lead1 {
    font-size: 50px;
  }
}
.fv__lead2 {
  font-size: 16px;
  margin-top: 14px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .fv__lead2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__lead2 {
    font-size: 30px;
    margin-top: 40px;
  }
}
.fv__button {
  margin-top: 12px;
  border: 2px solid #00C4CC;
  display: inline-block;
  padding: 8px 26px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #00C4CC;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .fv__button {
    margin-top: 50px;
    font-size: 24px;
    padding: 13px 56px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__button {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 768px) {
  .fv__button:hover {
    background-color: #fff;
    color: #00C4CC;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}
.problem {
  padding-top: 25px;
}

@media screen and (min-width: 768px) {
  .problem {
    padding-top: 50px;
  }
}
.inner {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
}
.problem__title {
  text-align: center;
}

.problem-title__lead1 {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .problem-title__lead1 {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
  }
}
.problem__emphasis {
  color: #00C4CC;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .problem__emphasis {
    color: #00C4CC;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .problem__emphasis {
    font-size: 26px;
  }
}
.problem-title__lead2 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .problem-title__lead2 {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
    margin-top: 30px;
  }
}
.problem__box {
  padding: 30px 10px;
  background: #fff;
  margin-top: 24px;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .problem__box {
    padding: 40px 40px 0;
    max-width: 950px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .problem__box {
    max-width: 600px;
    padding: 50px 20px;
  }
}
.problem__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .problem__items {
    display: grid;
    /* グリッドレイアウトに変更 */
    grid-template-columns: repeat(2, 1fr);
    /* 2列に設定 */
    gap: 35px 0;
    /* アイテム間の間隔 */
    border-bottom: 1px solid #DADADA;
    padding-bottom: 30px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .problem__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 30px;
    text-align: left;
  }
}
.problem__item1, .problem__item2, .problem__item3, .problem__item4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

@media screen and (min-width: 768px) {
  .problem__item1, .problem__item2, .problem__item3, .problem__item4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* 垂直方向に中央揃え */
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .problem__item1, .problem__item2, .problem__item3, .problem__item4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .problem__checkimg {
    margin-right: 12px;
  }
}
.problem__checkimg img {
  width: 18px;
}

@media screen and (min-width: 768px) {
  .problem__checkimg img {
    width: 38px;
  }
}
.problem__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .problem__item {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 19px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .problem__item {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .answer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .answer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.answer__img {
  text-align: center;
  margin-top: 7px;
}
.answer__img img {
  width: 213px;
}

@media screen and (min-width: 768px) {
  .answer__img img {
    width: 400px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .answer__img img {
    width: 300px;
  }
}
.answer__title {
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 650;
  line-height: 31px;
}

@media screen and (min-width: 768px) {
  .answer__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
    margin-top: 88px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .answer__title {
    font-size: 22px;
    margin-top: 30px;
    text-align: center;
  }
}
.service {
  padding-top: 75px;
}

@media screen and (min-width: 768px) {
  .service {
    padding-top: 100px;
  }
}
.heading__title {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 50px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .heading__title {
    font-size: 40px;
  }
}
.service__emphasis {
  font-size: 24px;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .service__emphasis {
    font-size: 74px;
  }
}
.service__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .service__box {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-box {
  background: #FFF;
  padding: 30px 12px;
}

@media screen and (min-width: 768px) {
  .service-box {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .service-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .service-box__content {
    gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .is-reverse .service-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.service-box__img {
  text-align: center;
}
.service-box__img img {
  width: 303px;
}

@media screen and (min-width: 768px) {
  .service-box__img {
    width: 55.3191489362%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .service-box__img img {
    width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .service-box__body {
    width: 69.1489361702%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.service-box__title {
  color: #00C4CC;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-top: 18px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-box__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service-box__title {
    font-size: 18px;
  }
}
.service-box__title-center {
  text-align: center;
}

.service-box__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 650;
  line-height: 25px;
  /* 166.667% */
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .service-box__text {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service-box__text {
    font-size: 16px;
  }
}
.gallery {
  padding-top: 75px;
}

@media screen and (min-width: 768px) {
  .gallery {
    padding-top: 100px;
  }
}
.gallery__slider {
  margin-top: 40px;
}

.gallery__swiper {
  padding-bottom: 26px;
  padding-right: 5px;
  padding-left: 5px;
}

.gallery-card {
  background: #FFF;
  padding: 40px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* パディングを含むサイズを考慮 */
}

@media screen and (min-width: 768px) {
  .gallery-card {
    padding: 60px 60px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    padding: 0 125px 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .swiper-slide {
    padding: 60px 0px;
  }
}
.gallery-card__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  /* 画像間の隙間を調整 */
}

.gallery-card__image {
  text-align: center;
}

.gallery-card__text {
  text-align: center;
  font-size: 13px;
  margin-top: 18px;
}

.gallery-card__link {
  text-align: center;
  font-size: 14px;
  margin-top: 18px;
  text-decoration: underline;
}
.gallery-card__link:hover {
  color: #00C4CC;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 70px !important;
    height: 70px !important;
  }
}
.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #D9D9D9;
  opacity: 1;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00C4CC;
}

.gallery__prev, .gallery__next {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .gallery__prev, .gallery__next {
    width: 80px;
    height: 80px;
  }
}
.gallery__prev::after, .gallery__next::after {
  display: none;
}

.gallery__prev {
  left: 0;
  margin-top: -84px;
  background: url(../img/back-icon.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .gallery__prev {
    left: 20px;
  }
}
.gallery__next {
  right: 0;
  margin-top: -84px;
  background: url(../img/next-icon.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .gallery__next {
    right: 20px;
  }
}
.flow {
  padding-top: 75px;
  padding-bottom: 75px;
}

@media screen and (min-width: 768px) {
  .flow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.flow__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 54px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flow__box:nth-child(n+2):nth-child(-n+5) {
  position: relative;
}
.flow__box:nth-child(n+2):nth-child(-n+5)::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 30px;
  top: -40px;
  left: 0;
  background: url(../img/triangle-img.png) no-repeat center center/contain;
}

.flow-box {
  background: #FFF;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .flow-box {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 50px 50px 70px;
  }
}
@media screen and (min-width: 768px) {
  .flow-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .flow-box__content-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 65px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .flow-box__content-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 53px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.flow-box__img, .flow-box__img-2 {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flow-box__img {
    width: 14.8936170213%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.flow-box__img img, .flow-box__img-2 img {
  width: 80px;
}

@media screen and (min-width: 768px) {
  .flow-box__img img {
    width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .flow-box__img-2 img {
    width: 110px;
  }
}
@media screen and (min-width: 768px) {
  .flow-box__body {
    width: 72.3404255319%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
  }
}
.flow-box__title {
  color: #00C4CC;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .flow-box__title {
    font-size: 20px;
    margin-top: 0;
    text-align: left;
  }
}
.flow-box__text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
  line-height: 24px;
  /* 171.429% */
  margin-top: 10px;
}
.flow-box__text.is-change {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flow-box__text {
    font-size: 16px;
  }
}
.cta {
  text-align: center;
  background: #00C4CC;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cta__inner {
  padding-left: 40px;
  padding-right: 40px;
}

.cta__text {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.cta__text::before, .cta__text::after {
  content: "";
  position: absolute;
  top: 6px;
  display: inline-block;
  width: 26px;
  height: 2px;
  background-color: #fff;
}
.cta__text::before {
  left: 13px;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.cta__text::after {
  right: 13px;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.cta__button {
  margin-top: 15px;
  border: 2px solid #00C4CC;
  background: #fff;
  color: #00C4CC;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.cta-button {
  display: block;
  padding: 10px 6px;
  color: #00C4CC;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  text-align: center;
  border: none;
  font-weight: 650;
}

@media screen and (min-width: 768px) {
  .cta__button:hover .cta-button {
    background: #00C4CC;
    border: 2px solid #fff;
    color: #fff;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
}
.qa {
  padding-top: 75px;
}

@media screen and (min-width: 768px) {
  .qa {
    padding-top: 100px;
  }
}
@media screen and (min-width: 768px) {
  .qa__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.qa__container {
  margin-top: 40px;
  background: #FFF;
  padding: 30px 28px 30px 58px;
}

@media screen and (min-width: 768px) {
  .qa__container {
    padding: 60px 110px 60px 138px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .qa__container {
    padding: 60px 100px 60px 100px;
  }
}
.qa__list:nth-child(n+2):nth-child(-n+7) {
  position: relative;
}
.qa__list:nth-child(n+2):nth-child(-n+7)::before {
  content: "";
  position: absolute;
  width: calc(100% + 70px);
  top: -2px;
  left: -35px;
  border-bottom: 1px solid #DADADA;
}

@media screen and (min-width: 768px) {
  .qa__list:nth-child(n+2):nth-child(-n+7)::before {
    width: calc(100% + 100px);
    left: -50px;
  }
}
.qa__item {
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .qa__item {
    padding: 35px 0;
  }
}
.qa__item-question {
  position: relative;
}
.qa__item-question::before {
  position: absolute;
  content: "Q";
  background: #00C4CC;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 24px;
  left: -30px;
  top: -2px;
  font-family: Montserrat;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .qa__item-question::before {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: -10px;
  }
}
.qa__item-question__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
  /* 153.846% */
}

@media screen and (min-width: 768px) {
  .qa__item-question__text {
    font-size: 16px;
    font-weight: 800;
    padding-left: 30px;
  }
}
.qa__item-answer {
  position: relative;
}
.qa__item-answer::before {
  position: absolute;
  content: "A";
  background: #F99A9A;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 24px;
  left: -30px;
  top: -2px;
  color: #fff;
  font-family: Montserrat;
}

@media screen and (min-width: 768px) {
  .qa__item-answer::before {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: -6px;
  }
}
.qa__item-answer__inner {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .qa__item-answer__inner {
    margin-top: 40px;
  }
}
.qa__item-answer__text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: 20px;
  /* 153.846% */
}

@media screen and (min-width: 768px) {
  .qa__item-answer__text {
    font-size: 16px;
    font-weight: 650;
    padding-left: 30px;
    line-height: 28px;
  }
}
input[type=text],
input[type=email],
input[type=url],
select,
textarea {
  border-radius: 0;
  width: 100%;
  border: 1px solid #000;
  padding: 12px 24px;
  font-size: 16px;
  line-height: normal;
}

textarea {
  height: 180px;
  resize: vertical;
}

.contact {
  padding-top: 75px;
  margin-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .contact {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact__inner {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.contact__container {
  background: #FFFFFF;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 40px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .contact__container {
    padding: 60px 80px 60px 100px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__container {
    padding: 60px 40px 40px 80px;
  }
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .contact__row {
    display: grid;
    grid-template-columns: 160px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact__head {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

.--must {
  position: relative;
  display: inline-block;
}
.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 10px);
  font-size: 11px;
  line-height: normal;
  display: inline-block;
  padding: 1px 10px;
  font-weight: 700;
  background: #FFB800;
  color: #FFF;
  white-space: nowrap;
}

.--any {
  position: relative;
  display: inline-block;
}
.--any::after {
  content: "任意";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 10px);
  font-size: 11px;
  line-height: normal;
  display: inline-block;
  padding: 1px 10px;
  background: #BBB;
  font-family: Inter;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.contact__data-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__data-radio span {
  display: block;
  font-size: 13px;
  line-height: normal;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}
.contact__data-radio span::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  left: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.contact__data-radio span::after {
  position: absolute;
  top: 50%;
  content: "";
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  background: transparent;
  opacity: 0;
}

input[type=radio]:checked + span {
  font-weight: 700;
}

input[type=radio]:checked + span::before {
  border: 1px solid #00C4CC;
}

input[type=radio]:checked + span::after {
  width: 10px;
  height: 10px;
  background: #00C4CC;
  opacity: 1;
  left: 1px;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 55px;
  font-size: 14px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-checkbox__text::before {
  width: 17px;
  height: 17px;
  border: 1px solid #000;
  left: 26px;
}

.form-checkbox__text::after {
  width: 40px;
  height: 15px;
  left: 4px;
  margin-top: 0.8px;
  background: url(../img/check-img.png) no-repeat center center/contain;
  opacity: 0;
  left: 15px;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  display: inline-block;
  background: #00C4CC;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  padding: 14px 47px;
}

.contact__acceptance {
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 40px;
}

.footer {
  background: #111;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.footer__copyright {
  color: #Fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.96px;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 16px;
  }
}
#js-button-top, .top-button {
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: fixed;
  bottom: 5px;
  right: 10px;
  z-index: 10;
  border: none;
  font-size: 12px;
  background-color: #00C4CC;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (min-width: 768px) {
  #js-button-top, .top-button {
    width: 60px;
    height: 60px;
    bottom: 20px;
    font-size: 16px;
  }
}
.js-button-top:hover {
  border: 2px solid #00C4CC;
  background-color: #fff;
  color: #00C4CC;
}

#js-button-top.is-show, .top-button.is-show {
  opacity: 1;
  visibility: visible;
}

.privacy {
  padding-top: 50px;
  padding-bottom: 50px;
}

.privacy__container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .privacy__container {
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
}
.privacy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.privacy__head-title {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .privacy__head-title {
    font-size: 24px;
  }
}
.privacy__head-text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .privacy__head-text {
    font-size: 16px;
  }
}
.privacy__item-title {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .privacy__item-title {
    font-size: 20px;
  }
}
.privacy__item-text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .privacy__item-text {
    font-size: 16px;
  }
}
.privacy__item-lists {
  margin-top: 10px;
}

.privacy__item-list {
  font-size: 14px;
  font-weight: 400;
  margin-top: 7px;
}

@media screen and (min-width: 768px) {
  .privacy__item-list {
    font-size: 16px;
  }
}
.privacy__information {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .privacy__information {
    font-size: 16px;
  }
}
.privacy__company, .privacy__name, .privacy__address {
  font-weight: 650;
}

.privacy__finish {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .privacy__finish {
    margin-top: 15px;
  }
}
/* フワッと表示 */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}