html {
  /* font-feature-settings: 'palt'; */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* @media screen and (min-width:1650px) {
  html {
    font-size: calc(100vw / 1650 * 10);
  }
} */
@media screen and (max-width:1050px) {
  html {
    font-size: calc(100vw / 1050 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  /* 太さが落ち着くことが多い */
  -moz-osx-font-smoothing: grayscale;
  /* Firefox/Mac向けもついでに */
  text-rendering: geometricPrecision;
  /* 字形の崩れ対策として */
}

@media screen and (max-width:768px) {
  body {
    font-size: 1.4rem;
    padding-top: 0 !important;
  }
}

.body_container {
  opacity: 0;
  overflow: hidden;
  transition: .6s ease;
  padding-top: 6.2rem;
}

.page_home .body_container {
  padding-top: 13rem;
}

@media screen and (max-width:768px) {
  .body_container {
    padding: 0 !important;
  }
}

.lazy .body_container {
  opacity: 1;
}

.max1200 {
  max-width: 124rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.max1000 {
  max-width: 100rem;
  margin: 0 auto;
}

img:not(.cover) {
  height: auto;
  max-width: 100%;
  width: 100%;
}

img.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
}

video.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a {
  transition: .3s;
}

.anchor {
  display: flex;
  margin-top: -6.2rem;
  padding-top: 6.2rem;
}

@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -5.6rem;
    padding-top: 5.6rem;
  }
}

strong {
  font-weight: inherit;
}

dt {
  font-weight: inherit;
}

/* ---------------------------------------------------------------------------
//  ttlA
--------------------------------------------------------------------------- */
.ttlA {
  position: relative;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  padding-bottom: 2rem;
}

.ttlA::after {
  background-image: url(../img/ttlA_dots.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 3.6rem;
  height: 1.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width:768px) {
  .ttlA {
    font-size: 3rem;
    line-height: 1.3;
  }
}

/* ---------------------------------------------------------------------------
//  top_fv
--------------------------------------------------------------------------- */
.top_fv {
  background-image: url(../img/fv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}

.top_fv .wrap {
  height: 52.1rem;
  position: relative;
}

.top_fv .wrap .h1 {
  position: absolute;
  left: 0;
  top: -2.95rem;
  width: 131.1rem;
  pointer-events: none;
}

.top_fv .wrap .bnrs {
  position: absolute;
  bottom: -3.4rem;
  display: flex;
  width: 100%;
  left: 0;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.top_fv .wrap .bnrs .bnr {
  width: 43.3rem;
}

.top_fv .wrap .bnrs .bnr img {
  filter: drop-shadow(.6rem .6rem 1.5rem rgba(0, 0, 0, .2));
}

@media screen and (max-width:768px) {
  .top_fv {
    background-image: url(../img/fv_bg_sp.jpg);
  }

  .top_fv .wrap {
    height: 66.7rem;
  }

  .top_fv .wrap .h1 {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .top_fv .wrap .bnrs {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

/* ---------------------------------------------------------------------------
//  top_01_01
--------------------------------------------------------------------------- */
.top_01_01 .wrap {
  padding: 9rem 0 0;
  position: relative;
}

.top_01_01 .wrap .ttlA .h2 strong {
  display: inline-block;
  margin: 0 .7rem;
  color: #08B5B9;
  font-size: 4.45rem;
}

.top_01_01 .wrap .ttlA .h2 strong span {
  display: inline-block;
  margin: 0 -.7rem;
}

.top_01_01 .wrap .hidden {
  width: 100%;
  height: 35.437rem;
  margin-top: 2.4rem;
  background-image: url(../img/01_01_img01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

.top_01_01 .wrap .hidden li {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (max-width:768px) {
  .top_01_01 .wrap {
    padding: 0 2.2rem;
  }

  .top_01_01 .wrap .ttlA {
    font-size: 2.4rem;
  }

  .top_01_01 .wrap .ttlA .h2 strong {
    display: block;
    margin: 0;
    font-size: 3rem;
  }

  .top_01_01 .wrap .ttlA .h2 strong span {
    margin: 0 -.4rem;
  }

  .top_01_01 .wrap .hidden {
    height: 77.437rem;
    background-image: url(../img/01_01_img01_sp.png);
  }
}

/* ---------------------------------------------------------------------------
//  top_01_02
--------------------------------------------------------------------------- */
.top_01_02 {
  background: #F7F7F7;
  margin-top: -3.237rem;
}

.top_01_02 .wrap {
  padding: 4.4rem 0 7.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_01_02 .wrap .h3 {
  width: 61.3rem;
}

.top_01_02 .wrap .h4 {
  color: #00B900;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: .4rem;
  line-height: 1;
  margin: 2.4rem 0;
}

.top_01_02 .wrap .h4 img {
  width: 6rem;
}

.top_01_02 .wrap .steps {
  display: flex;
  justify-content: center;
  gap: 4.9rem;
}

.top_01_02 .wrap .steps .step {
  position: relative;
}

.top_01_02 .wrap .steps .step img {
  filter: drop-shadow(0 0 3rem rgba(0, 0, 0, .1));
}

.top_01_02 .wrap .steps .step01 {
  width: 31.9rem;
}

.top_01_02 .wrap .steps .step01::after {
  background-image: url(../img/arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 1.6rem;
  height: 3.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -3.6rem;
}

.top_01_02 .wrap .steps .step02 {
  width: 43.3rem;
}

@media screen and (max-width:768px) {
  .top_01_02 {
    margin-top: -8.037rem;
  }

  .top_01_02 .wrap {
    padding: 8.9rem 2.2rem 3.5rem;
  }

  .top_01_02 .wrap .h3 {
    width: 21.7rem;
  }

  .top_01_02 .wrap .h4 {
    font-size: 1.5rem;
  }

  .top_01_02 .wrap .h4 img {
    width: 4.5rem;
  }

  .top_01_02 .wrap .steps {
    flex-direction: column;
    gap: 4rem;
  }

  .top_01_02 .wrap .steps .step {
    width: 100% !important;
  }

  .top_01_02 .wrap .steps .step01::after {
    transform: rotate(90deg);
    top: auto;
    bottom: -4.5rem;
    right: 0;
    left: 0;
  }
}

/* ---------------------------------------------------------------------------
//  top_02_01
--------------------------------------------------------------------------- */
.top_02_01 .wrap {
  padding: 5rem 0 24.7rem;
  position: relative;
}

.top_02_01 .wrap .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
  margin-top: 2rem;
}

.top_02_01 .wrap .cards .card {
  width: calc((100% - 5.2rem) / 5);
  background: rgba(8, 181, 185, .1);
  border-radius: 3rem;
  height: 22.6rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top_02_01 .wrap .cards .card .pict {
  height: 10.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
}

.top_02_01 .wrap .cards .card01 img {
  width: 9.2rem;
}

.top_02_01 .wrap .cards .card02 img {
  width: 9.5rem;
}

.top_02_01 .wrap .cards .card03 img {
  width: 8.3rem;
}

.top_02_01 .wrap .cards .card04 img {
  width: 8.4rem;
}

.top_02_01 .wrap .cards .card05 img {
  width: 7.4rem;
}

.top_02_01 .wrap .cards .card span {
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .top_02_01 .wrap {
    padding: 3rem 2.2rem 36.5rem;
  }

  .top_02_01 .wrap .cards {
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .top_02_01 .wrap .cards .card {
    width: calc((100% - 1rem) / 2);
    border-radius: 2.5rem;
    height: 18rem;
  }

  .top_02_01 .wrap .cards .card .pict {
    height: 9rem;
    align-items: center;
  }

  .top_02_01 .wrap .cards .card01 img {
    width: calc(9.2rem * .8);
  }

  .top_02_01 .wrap .cards .card02 img {
    width: calc(9.5rem * .8);
  }

  .top_02_01 .wrap .cards .card03 img {
    width: calc(8.3rem * .8);
  }

  .top_02_01 .wrap .cards .card04 img {
    width: calc(8.4rem * .8);
  }

  .top_02_01 .wrap .cards .card05 img {
    width: calc(7.4rem * .8);
  }

  .top_02_01 .wrap .cards .card span {
    height: 4.8rem;
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_02_02
--------------------------------------------------------------------------- */
.top_02_02 {
  background: rgba(8, 181, 185, .1);
}

.top_02_02 .wrap {
  padding: 13.7rem 0 0;
  position: relative;
}

.top_02_02 .wrap .h3 {
  width: 78.913rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -19rem;
}

.top_02_02 .wrap .ex {
  margin-top: 2.8rem;
}

@media screen and (max-width:768px) {
  .top_02_02 .wrap {
    padding: 14.2rem 2.2rem 0;
    position: relative;
  }

  .top_02_02 .wrap .h3 {
    width: 28.726rem;
    top: -29rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_02_03
--------------------------------------------------------------------------- */
.top_02_03 {
  background: rgba(8, 181, 185, .1);
}

.top_02_03 .wrap {
  padding: 6rem 0 13rem;
  position: relative;
}

.top_02_03 .wrap .h3 {
  font-size: 3rem;
  position: relative;
  font-weight: 800;
  color: #FF8E2B;
  text-align: center;
}

.top_02_03 .wrap .h3::before {
  background-image: url(../img/arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 3.3rem;
  height: 3.7rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -4rem;
}

.top_02_03 .wrap .conditions {
  margin-top: 2.4rem;
}

.top_02_03 .wrap .conditions .condition+.condition {
  margin-top: 6rem;
}

.top_02_03 .wrap .conditions .condition dl {
  display: flex;
  border-bottom: solid 1px #B3B3B3;
  padding-bottom: 1rem;
  align-items: flex-end;
  margin-bottom: 3.3rem;
}

.top_02_03 .wrap .conditions .condition dl dt {
  display: flex;
  align-items: flex-end;
  color: #FF8E2B;
  font-size: 3rem;
  line-height: 1;
  width: 10rem;
}

.top_02_03 .wrap .conditions .condition dl dd {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.top_02_03 .wrap .conditions .condition dl dd small {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 1.6rem;
}

.top_02_03 .wrap .conditions .condition .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 0;
}

.top_02_03 .wrap .conditions .condition .logos .logo {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_02_03 .wrap .conditions .condition .logos .logo01 img {
  width: 17.124rem;
}

.top_02_03 .wrap .conditions .condition .logos .logo02 img {
  width: 19.419rem;
}

.top_02_03 .wrap .conditions .condition .logos .logo03 img {
  width: 19.616rem;
}

.top_02_03 .wrap .conditions .condition .logos .logo04 img {
  width: 15.998rem;
}

.top_02_03 .wrap .conditions .condition .logos .logo05 img {
  width: 14.197rem;
}

.top_02_03 .wrap .conditions .condition .logos .logo06 img {
  width: 18.812rem;
}

.marquee {
  --item-gap: .9rem;
  /* 画像同士の間隔 */
  --item-width: 25.2rem;
  /* 画像の幅 */
  --duration: 10s;
  /* 一周にかかる時間 */
  overflow: hidden;
  width: 100%;
}

.marquee_track {
  display: flex;
  width: max-content;
  /* 中身の幅に合わせる */
  will-change: transform;
  animation: marquee var(--duration) linear infinite;
}

.marquee_group {
  display: flex;
}

.marquee_item img {
  display: block;
  width: var(--item-width);
  height: auto;
  max-width: inherit;
  border-radius: 1.5rem;
  margin: 0 var(--item-gap);
}

/* ガクッとしないように、2セット分のうち「ちょうど半分」だけ動かす */
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media screen and (max-width:768px) {
  .top_02_03 .wrap {
    padding: 4rem 0 6rem;
  }

  .top_02_03 .wrap .max1000 {
    padding: 0 2.2rem;
  }

  .top_02_03 .wrap .h3 {
    font-size: 1.8rem;
  }

  .top_02_03 .wrap .h3::before {
    width: 1.75rem;
    height: 2rem;
    top: -2.5rem;
  }

  .top_02_03 .wrap .conditions {
    margin-top: 2rem;
  }

  .top_02_03 .wrap .conditions .condition+.condition {
    margin-top: 4rem;
  }

  .top_02_03 .wrap .conditions .condition dl {
    margin-bottom: 2rem;
    align-items: flex-start;
  }

  .top_02_03 .wrap .conditions .condition dl dt {
    font-size: 1.7rem;
    width: 6rem;
  }

  .top_02_03 .wrap .conditions .condition dl dd {
    width: calc(100% - 6rem);
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }

  .top_02_03 .wrap .conditions .condition dl dd small {
    font-size: 1.2rem;
    margin-left: 0;
    display: block;
    margin-top: .6rem;
  }

  .top_02_03 .wrap .conditions .condition .logos {
    gap: 2rem 0;
  }

  .top_02_03 .wrap .conditions .condition .logos .logo {
    width: calc(100% / 2);
  }

  .top_02_03 .wrap .conditions .condition .logos .logo01 img {
    width: calc(17.124rem * .65)
  }

  .top_02_03 .wrap .conditions .condition .logos .logo02 img {
    width: calc(19.419rem * .65)
  }

  .top_02_03 .wrap .conditions .condition .logos .logo03 img {
    width: calc(19.616rem * .65)
  }

  .top_02_03 .wrap .conditions .condition .logos .logo04 img {
    width: calc(15.998rem * .65)
  }

  .top_02_03 .wrap .conditions .condition .logos .logo05 img {
    width: calc(14.197rem * .65)
  }

  .top_02_03 .wrap .conditions .condition .logos .logo06 img {
    width: calc(18.812rem * .65)
  }

  .marquee {
    --item-gap: .5rem;
    --item-width: 20rem;
    --duration: 10s;
  }

  .marquee_item img {
    border-radius: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_03
--------------------------------------------------------------------------- */
.top_03 .wrap {
  padding: 6.6rem 0 10rem;
}

.top_03 .wrap .cards {
  display: flex;
  gap: 6.9rem;
  margin-top: 6rem;
}

.top_03 .wrap .cards .card {
  width: calc((100% - 13.8rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_03 .wrap .cards .card .pict {
  width: 21.8rem;
}

.top_03 .wrap .cards .card dl {
  width: 100%;
}

.top_03 .wrap .cards .card dl dt {
  color: #08B5B9;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
}

.top_03 .wrap .cards .card dl dd {
  line-height: 1.6;
  text-align: justify;
  font-size: 1.6rem;
}

@media screen and (max-width:768px) {
  .top_03 .wrap {
    padding: 6rem 2.2rem 10rem;
  }

  .top_03 .wrap .cards {
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
  }

  .top_03 .wrap .cards .card {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  top_04
--------------------------------------------------------------------------- */
.top_04 {
  background: #F7F7F7;
}

.top_04 .wrap {
  padding: 10rem 0 12rem;
  position: relative;
}

.top_04 .wrap .illust {
  background-image: url(../img/04_illust01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20.6rem;
  height: 18.1rem;
  position: absolute;
  top: 3.8rem;
  right: 10rem;
}

.top_04 .wrap .steps {
  display: flex;
  flex-wrap: wrap;
  padding: 0 11rem;
  margin-top: 3.5rem;
  gap: 4rem 0;
}

.top_04 .wrap .steps .step {
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  position: relative;
  justify-content: center;
}

.top_04 .wrap .steps .step03 {
  margin-right: auto;
}

.top_04 .wrap .steps .step04 {
  margin-left: auto;
}

.top_04 .wrap .steps .step::before,
.top_04 .wrap .steps .step::after {
  background-image: url(../img/arrow03.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 5.1rem;
  height: 2.2rem;
  position: absolute;
  top: 3.9rem;
  pointer-events: none;
}

.top_04 .wrap .steps .step::before {
  left: -2.55rem;
}

.top_04 .wrap .steps .step::after {
  right: -2.55rem;
}

.top_04 .wrap .steps .step01::before {
  opacity: 0;
}

.top_04 .wrap .steps .step06::after {
  opacity: 0;
}

.top_04 .wrap .steps .step .pict {
  position: relative;
  left: -1.4rem;
  width: 12.3rem;
}

.top_04 .wrap .steps .step .txts {
  margin-top: .5rem;
}

.top_04 .wrap .steps .step .txts .h3 {
  color: #08B5B9;
  font-size: 2rem;
  font-weight: 700;
}

.top_04 .wrap .steps .step .txts .p01 {
  line-height: 1.375;
  margin-top: .3rem;
  font-size: 1.6rem;
}

@media screen and (max-width:768px) {
  .top_04 .wrap {
    padding: 16rem 2.2rem 6rem;
    position: relative;
  }

  .top_04 .wrap .illust {
    top: -3.8rem;
    right: 0;
    left: 0;
    margin: auto;
  }

  .top_04 .wrap .steps {
    padding: 0;
    margin-top: 6.5rem;
    gap: 8rem 0;
  }

  .top_04 .wrap .steps .step {
    width: 100%;
  }

  .top_04 .wrap .steps .step::before,
  .top_04 .wrap .steps .step::after {
    background-image: url(../img/arrow03.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    width: 5.1rem;
    height: 2.2rem;
    position: absolute;
    top: -5.3rem;
    transform: rotate(90deg);
    left: 0 !important;
    right: 0 !important;
    margin: auto;
    opacity: 0;
  }

  .top_04 .wrap .steps .step+.step::before {
    opacity: 1;
  }

  .top_04 .wrap .steps .step .pict {
    transform: scale(1.5);
  }

  .top_04 .wrap .steps .step .txts {
    margin-top: 3.5rem;
  }

  .top_04 .wrap .steps .step .txts .p01 {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_05
--------------------------------------------------------------------------- */
.top_05 .wrap {
  padding: 10rem 0 12rem;
  position: relative;
}

.top_05 .wrap .ttlA span {
  color: #08B5B9;
  font-size: 2rem;
  display: block;
}

.top_05 .wrap .voices {
  margin-top: 6rem;
}

.top_05 .wrap .voices .voice {
  background: #F7F7F7;
  border-radius: .8rem;
  padding: 3rem 4rem 3rem 2rem;
  display: flex;
}

.top_05 .wrap .voices .voice+.voice {
  margin-top: 5rem;
}

.top_05 .wrap .voices .voice .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  font-size: 1.4rem;
  width: 14rem;
}

.top_05 .wrap .voices .voice .name .pict {
  width: 10rem;
  margin-bottom: .3rem;
}

.top_05 .wrap .voices .txts01 {
  width: calc(100% - 14rem - 43.3rem - 2rem - 3rem);
  margin: 0 3.5rem 0 auto;
}

.top_05 .wrap .voices .txts01 .p01 {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: solid 1px #B3B3B3;
  padding-bottom: .3rem;
}

.top_05 .wrap .voices .txts01 .p01 span {
  font-size: 3.5rem;
  font-family: Roboto;
  display: inline-block;
  margin-left: .3rem;
}

.top_05 .wrap .voices .txts01 .p01 small {
  font-size: 1.4rem;
}

.top_05 .wrap .voices .txts01 .p02 {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: solid 1px #B3B3B3;
  padding: .5rem 0;
}

.top_05 .wrap .voices .txts01 .p02 span {
  font-size: 2.1rem;
  font-family: Roboto;
  display: inline-block;
  margin-left: .1rem;
}

.top_05 .wrap .voices .txts01 .p02 small {
  font-size: 1.2rem;
}

.top_05 .wrap .voices .txts01 .p03 {
  font-size: 1.8rem;
  font-weight: 700;
}

.top_05 .wrap .voices .txts01 .p03 strong {
  color: #FF8E2B;
  display: inline-block;
  margin-left: .5rem;
  margin-right: .5rem;
  font-weight: 700;
}

.top_05 .wrap .voices .txts01 .p03 strong b {
  font-size: 5rem;
  font-family: Roboto;
  font-weight: 700;
}

.top_05 .wrap .voices .txts01 .p03 strong small {
  font-size: 2.2rem;
}

.top_05 .wrap .voices .txts01 .p03 span {
  font-size: 2.5rem;
}

.top_05 .wrap .voices .txts01 .p04 {
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.top_05 .wrap .voices .txts01 .p04 span {
  background: linear-gradient(transparent 95%, #08B5B9 95%);
  padding: .2rem 0;
}

.top_05 .wrap .voices .txts02 {
  width: 43.3rem;
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: justify;
}

@media screen and (max-width:768px) {
  .top_05 .wrap {
    padding: 6rem 2.2rem 6rem;
  }

  .top_05 .wrap .ttlA span {
    font-size: 1.8rem;
  }

  .top_05 .wrap .voices {
    margin-top: 4rem;
  }

  .top_05 .wrap .voices .voice {
    border-radius: .4rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top_05 .wrap .voices .voice+.voice {
    margin-top: 4rem;
  }

  .top_05 .wrap .voices .txts01 {
    width: 100%;
    margin: .5rem 0 1rem;
  }

  .top_05 .wrap .voices .txts01 .p04 {
    font-size: 1.3rem;
  }

  .top_05 .wrap .voices .txts02 {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  top_06
--------------------------------------------------------------------------- */
.top_06 {
  background: rgba(8, 181, 185, .1);
}

.top_06 .wrap {
  padding: 10rem 0 12rem;
  position: relative;
}

.top_06 .wrap .qas {
  margin-top: 5rem;
}

.top_06 .wrap .qas .qa+.qa {
  margin-top: 2.5rem;
}

.top_06 .wrap .qas .qa .qa_ttl {
  border-radius: 1.2rem;
  border: 1px solid #ECFFFF;
  background: #E6F8F8;
  box-shadow: 0 1.5rem 3rem 0 rgba(0, 0, 0, 0.07);
  padding: 1.4rem 6.1rem 1.4rem 2rem;
  display: flex;
  gap: .9rem;
  position: relative;
  cursor: pointer;
}

.top_06 .wrap .qas .qa .qa_ttl::before {
  background-image: url(../img/q.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 4.2rem;
  height: 4.2rem;
}

.top_06 .wrap .qas .qa .qa_ttl::after {
  background-image: url(../img/arrow04.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 1.7rem;
  height: 1rem;
  position: absolute;
  right: 2.4rem;
  top: 3rem;
  transform: rotate(180deg);
  transition: .3s;
}

.top_06 .wrap .qas .qa .qa_ttl.is-open::after {
  transform: rotate(0);
}

.top_06 .wrap .qas .qa .qa_ttl span {
  width: calc(100% - 4.2rem - .9rem);
  padding-top: .4rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.top_06 .wrap .qas .qa .qa_txt {
  display: none;
}

.top_06 .wrap .qas .qa .qa_txt .box {
  padding: 2.3rem 2rem;
  display: flex;
  gap: .9rem;
}

.top_06 .wrap .qas .qa .qa_txt .box::before {
  background-image: url(../img/a.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 4.2rem;
  height: 4.2rem;
}

.top_06 .wrap .qas .qa .qa_txt .box p {
  width: calc(100% - 4.2rem - .9rem);
  padding-top: .7rem;
  font-size: 1.6rem;
  line-height: 1.625;
}

@media screen and (max-width:768px) {
  .top_06 .wrap {
    padding: 6rem 2.2rem 12rem;
  }

  .top_06 .wrap .qas {
    margin-top: 4rem;
  }

  .top_06 .wrap .qas .qa .qa_ttl {
    border-radius: .6rem;
    padding: 2rem 1rem 3.4rem 1rem;
    gap: .5rem;
  }

  .top_06 .wrap .qas .qa .qa_ttl::before {
    width: 3rem;
    height: 3rem;
  }

  .top_06 .wrap .qas .qa .qa_ttl::after {
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: 1.4rem;
  }

  .top_06 .wrap .qas .qa .qa_ttl span {
    width: calc(100% - 3rem - .5rem);
    padding-top: .3rem;
    font-size: 1.6rem;
  }

  .top_06 .wrap .qas .qa .qa_txt .box {
    padding: 2.3rem 1rem;
    gap: .5rem;
  }

  .top_06 .wrap .qas .qa .qa_txt .box::before {
    width: 3rem;
    height: 3rem;
  }

  .top_06 .wrap .qas .qa .qa_txt .box p {
    width: calc(100% - 3rem - .5rem);
    padding-top: .4rem;
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_07
--------------------------------------------------------------------------- */
.top_07 .wrap {
  padding: 12rem 0 12rem;
  position: relative;
}

.top_07 .wrap .deco {
  background-image: url(../img/07_deco01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 15rem;
  height: 17.5rem;
  left: 26.4rem;
  top: 4rem;
}

.top_07 .wrap .content01 {
  border-radius: 3rem;
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.10);
  padding: 4rem 6rem 6rem;
  margin-top: 7rem;
}

.top_07 .wrap .content01 .h3 {
  font-size: 2.2rem;
  font-weight: 700;
}

.top_07 .wrap .content01 .flex {
  display: flex;
  margin-top: 1.6rem;
  gap: 3rem;
}

.top_07 .wrap .content01 .flex .dls {
  width: calc((100% - 3rem) / 2);
}

.top_07 .wrap .content01 .flex .dls dl {
  display: flex;
  line-height: 1.87;
  font-weight: 400;
  font-size: 1.6rem;
  gap: 1.5rem;
}

.top_07 .wrap .content01 .flex .dls dl dt {
  padding: 1.6rem 0;
  border-bottom: solid 1px #08B5B9;
  width: 11.2rem;
}

.top_07 .wrap .content01 .flex .dls.dls02 dl:last-of-type dt {
  border-bottom: none;
}

.top_07 .wrap .content01 .flex .dls dl dd {
  padding: 1.6rem 0;
  border-bottom: solid 1px #D7D7D7;
  flex-grow: 2;
}

.top_07 .wrap .content01 .flex .dls.dls02 dl:last-of-type dd {
  border-bottom: none;
}

.top_07 .wrap .content02 {
  margin-top: 6rem;
}

.top_07 .wrap .content02 .h3 {
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: solid 1px #D7D7D7;
  padding-bottom: 2rem;
}

.top_07 .wrap .content02 .flex {
  display: flex;
  margin-top: 5rem;
  gap: 6.5rem;
}

.top_07 .wrap .content02 .flex .txts {
  width: 60.2rem;
  display: flex;
  flex-direction: column;
}

.top_07 .wrap .content02 .flex .txts .p01 {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
  margin-bottom: 2rem;
}

.top_07 .wrap .content02 .flex .txts .p02 {
  font-weight: 700;
  margin-top: auto;
}

.top_07 .wrap .content02 .flex .txts .p02 small {
  font-size: 1.6rem;
  display: block;
  margin-top: auto;
}

.top_07 .wrap .content02 .flex .txts .p02 strong {
  font-size: 2.2rem;
  display: block;
}

.top_07 .wrap .content02 .flex .img {
  width: calc(100% - 60.2rem - 6.5rem);
}

.top_07 .wrap .content02 .flex .img img {
  border-radius: 3rem;
}

@media screen and (max-width:768px) {
  .top_07 .wrap {
    padding: 16rem 2.2rem 12rem;
  }

  .top_07 .wrap .deco {
    left: 0;
    right: 0;
    margin: auto;
    top: -4rem;
  }

  .top_07 .wrap .content01 {
    border-radius: 1.5rem;
    padding: 3rem 2.2rem;
    margin-top: 5rem;
    width: calc(100% + 2.2rem);
    position: relative;
    left: -1.1rem;
  }

  .top_07 .wrap .content01 .flex {
    display: block;
  }

  .top_07 .wrap .content01 .flex .dls {
    width: 100%;
  }

  .top_07 .wrap .content01 .flex .dls dl {
    display: block;
    line-height: 1.62;
    margin-bottom: 1.6rem;
  }

  .top_07 .wrap .content01 .flex .dls dl dt {
    padding: 0 0 0 1.6rem;
    border-bottom: none;
    border-left: solid 1px #08B5B9;
    width: 100%;
  }

  .top_07 .wrap .content01 .flex .dls dl:last-of-type dt {
    border-bottom: none;
  }

  .top_07 .wrap .content01 .flex .dls dl dd {
    padding: 1.6rem 0;
    border-bottom: none;
  }

  .top_07 .wrap .content01 .flex .dls dl:last-of-type dd {
    border-bottom: none;
  }

  .top_07 .wrap .content02 {
    margin-top: 6rem;
  }

  .top_07 .wrap .content02 .flex {
    flex-direction: column;
    margin-top: 2rem;
    gap: 3rem;
  }

  .top_07 .wrap .content02 .flex .txts {
    width: 100%;
  }

  .top_07 .wrap .content02 .flex .txts .p01 {
    font-size: 1.6rem;
    line-height: 1.62;
  }

  .top_07 .wrap .content02 .flex .txts .p02 {
    display: flex;
    gap: 1rem;
  }

  .top_07 .wrap .content02 .flex .img {
    width: 100%;
  }

  .top_07 .wrap .content02 .flex .img img {
    border-radius: 1.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_08
--------------------------------------------------------------------------- */
.top_08 {
  background: #F7F7F7;
}

.top_08 .wrap {
  padding: 11.2rem 0 14rem;
  position: relative;
}

.top_08 .wrap .illust {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.top_08 .wrap .illust01 {
  background-image: url(../img/08_illust01.png);
  width: 11.8rem;
  height: 16rem;
  top: 5rem;
  left: 23.7rem;
}

.top_08 .wrap .illust02 {
  background-image: url(../img/08_illust02.png);
  width: 14rem;
  height: 15.8rem;
  top: 5.2rem;
  right: 22.7rem;
}

.top_08 .wrap .p00 {
  color: #08B5B9;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 5.4rem;
}

.top_08 .wrap .bnrs {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: 1rem;
}

.top_08 .wrap .bnrs .bnr {
  width: 23.1rem;
  height: 23.1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  border: solid 2px;
}

.top_08 .wrap .bnrs .bnr:hover {
  opacity: .7;
}

.top_08 .wrap .bnrs .bnr_tel {
  color: #FF8E2B;
}

.top_08 .wrap .bnrs .bnr_mail {
  color: #08B5B9;
}

.top_08 .wrap .bnrs .bnr_line {
  color: #00B900;
}

.top_08 .wrap .bnrs .bnr::before {
  background-position: center;
  background-repeat: no-repeat;
  height: 4rem;
  content: '';
  width: 7rem;
}

.top_08 .wrap .bnrs .bnr_tel::before {
  background-image: url(../img/bnr_icon_tel.svg);
  background-size: 3rem;
  height: 5rem;
}

.top_08 .wrap .bnrs .bnr_mail::before {
  background-image: url(../img/bnr_icon_mail.svg);
  background-size: 4rem;
}

.top_08 .wrap .bnrs .bnr_line::before {
  background-image: url(../img/bnr_icon_line.svg);
  background-size: 6.343rem;
}

.top_08 .wrap .bnrs .bnr>div {
  height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top_08 .wrap .bnrs .bnr_tel img {
  width: 18.4rem;
}

.top_08 .wrap .bnrs .bnr_tel p {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .5rem;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  font-weight: 500;
}

.top_08 .wrap .bnrs .bnr_tel p strong {
  font-size: 1.25rem;
}

.top_08 .wrap .bnrs .bnr_tel p span {
  font-size: 1.5rem;
}

.top_08 .wrap .bnrs .bnr_tel p small {
  font-size: 1.2rem;
  width: 100%;
  font-weight: 400;
}

.top_08 .wrap .form_sec {
  max-width: 72rem;
  margin: 12rem auto 0;
}

.page_thanks .top_08 .wrap .form_sec {
  margin-top: 5rem;
}

.top_08 .wrap .form_sec .head {
  text-align: center;
}

.top_08 .wrap .form_sec .head .h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08B5B9;
}

.top_08 .wrap .form_sec .head .p01 {
  font-size: 1.7rem;
  line-height: 1.62;
  margin-top: 3rem;
}

.top_08 .wrap .form_sec .head .p02 {
  text-align: left;
  font-size: 1.4rem;
  margin-top: 2.5rem;
}

.top_08 .wrap .form_sec .head .p02 span {
  color: #EA394B;
}

.top_08 .wrap .form_sec .head .btn {
  width: 20rem;
  height: 6rem;
  background: #08B5B9;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(../img/arrow05.svg);
  background-size: 1.4rem;
  background-position: center right 2.7rem;
  background-repeat: no-repeat;
  transition: .3s;
  margin: 6rem auto 0;
}

.top_08 .wrap .form_sec .head .btn:hover {
  opacity: .7;
}

.top_08 .wrap .form_sec form {
  margin-top: 3rem;
}

.top_08 .wrap .form_sec form .tag {
  background: rgba(8, 181, 185, .2);
  width: 15.3rem;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.top_08 .wrap .form_sec form dl {
  margin-top: 4rem;
  display: flex;
  font-size: 1.6rem;
}

.top_08 .wrap .form_sec form dl dt {
  padding: 1.4rem 0;
  width: 18.2rem;
  display: flex;
  gap: .3rem;
}

.top_08 .wrap .form_sec form dl dt span {
  color: #EA394B;
}

.top_08 .wrap .form_sec form dl dd {
  width: calc(100% - 18.2rem);
}

.top_08 .wrap .form_sec form dl dd input[type=text],
.top_08 .wrap .form_sec form dl dd input[type=email] {
  padding: 1.4rem 1.6rem;
  background: #fff;
  width: 100%;
}

.top_08 .wrap .form_sec form dl dd input[type=file] {
  width: 100%;
  padding: 1.4rem 0;
}

.top_08 .wrap .form_sec form dl dd textarea {
  padding: 1.4rem 1.6rem;
  background: #fff;
  width: 100%;
  resize: none;
  height: 15.3rem;
}

.top_08 .wrap .form_sec form dl dd .sup {
  color: #EA394B;
  font-size: 1.4rem;
  display: flex;
}

.top_08 .wrap .form_sec form dl dd .sup::before {
  content: "※";
}

::placeholder {
  color: #BDBDBD;
}

.top_08 .wrap .form_sec form .privacy {
  margin-top: 10rem;
}

.top_08 .wrap .form_sec form .privacy .scroll {
  background: #fff;
  padding: 4rem 2.2rem;
  height: 22.7rem;
  overflow: auto;
  font-size: 1.4rem;
}

.top_08 .wrap .form_sec form .privacy .scroll h4 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.top_08 .wrap .form_sec form .privacy .scroll h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
}

.top_08 .wrap .form_sec form .privacy .scroll h6 {
  margin-bottom: .5rem;
}

.top_08 .wrap .form_sec form .privacy .scroll li {
  display: flex;
}

.top_08 .wrap .form_sec form .btn {
  margin: 4rem 0 0;
  display: flex;
  justify-content: center;
}

.top_08 .wrap .form_sec form .btn input[type=submit] {
  width: 41.5rem;
  height: 8.6rem;
  background: #08B5B9;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(../img/arrow05.svg);
  background-size: 1.4rem;
  background-position: center right 2.7rem;
  background-repeat: no-repeat;
  transition: .3s;
}

.top_08 .wrap .form_sec form .btn input[type=submit]:hover {
  opacity: .7;
}

.agree {
  text-align: center;
  margin-top: 3rem;
}

.c_checkbox {
  --cb-size: 1.9rem;
  /* チェックボックスのサイズ */
  --cb-border: #707070;
  /* 枠線の色 */
  --cb-bg: #fff;
  /* 背景色 */
  --cb-check: #fff;
  /* ✓ の色 */
  --cb-active: #08B5B9;
  /* ON 時の背景色 */
  --cb-radius: 0;
  /* 角丸 */
  --cb-gap: 1.1rem;
  /* 箱と文字の間 */
}

/* ベース */
.c_checkbox {
  display: inline-flex;
  align-items: center;
  gap: var(--cb-gap);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
}

/* 本来のチェックボックスは隠す */
.c_checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 見た目用のボックス */
.c_checkbox__box {
  width: var(--cb-size);
  height: var(--cb-size);
  box-sizing: border-box;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius);
  background-color: var(--cb-bg);
  position: relative;
}

/* チェックマーク */
.c_checkbox__box::after {
  content: "";
  position: absolute;
  inset: .3rem .5rem .4rem .5rem;
  /* ざっくり ✓ の描画エリア */
  border-right: 2px solid var(--cb-check);
  border-bottom: 2px solid var(--cb-check);
  transform: scale(0) rotate(45deg);
  transform-origin: center;
  opacity: 0;
  transition: 0.15s ease-out;
}

/* ON の時の見た目 */
.c_checkbox__input:checked+.c_checkbox__box {
  background-color: var(--cb-active);
  border-color: var(--cb-active);
}

.c_checkbox__input:checked+.c_checkbox__box::after {
  transform: scale(1) rotate(45deg);
  opacity: 1;
}

/* キーボードフォーカス時 */
.c_checkbox__input:focus-visible+.c_checkbox__box {
  outline: 2px solid rgba(0, 122, 255, 0.6);
  outline-offset: 2px;
}

/* ラベル文字 */
.c_checkbox__label {
  line-height: 1.4;
}

.grecaptcha-badge {
  bottom: 13rem !important;
  visibility: hidden;
  pointer-events: none;
}

.reCAPTCHA_policy {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 3rem;
}

.reCAPTCHA_policy a {
  color: #08B5B9;
  text-decoration: underline;
}

.reCAPTCHA_policy a:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .top_08 .wrap {
    padding: 13rem 2.2rem 12rem;
  }

  .top_08 .wrap .illust01 {
    top: -5rem;
    left: 4rem;
  }

  .top_08 .wrap .illust02 {
    top: -5.2rem;
    right: 4rem;
  }

  .top_08 .wrap .p00 {
    font-size: 2rem;
    margin-top: 4rem;
  }

  .top_08 .wrap .bnrs {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .top_08 .wrap .bnrs .bnr {
    width: 100%;
    height: auto;
    border-radius: .5rem;
    font-size: 1.6rem;
    padding: 2rem;
  }

  .top_08 .wrap .bnrs .bnr>div {
    height: auto;
    margin-top: 1rem;
  }

  .top_08 .wrap .bnrs .bnr_tel img {
    width: 18.4rem;
  }

  .top_08 .wrap .bnrs .bnr_tel p {
    display: flex;
    flex-wrap: wrap;
    gap: 0 .5rem;
    justify-content: center;
    align-items: center;
    margin-top: .5rem;
  }

  .top_08 .wrap .bnrs .bnr_tel p strong {
    font-size: 1.6rem;
  }

  .top_08 .wrap .bnrs .bnr_tel p span {
    font-size: 1.8rem;
  }

  .top_08 .wrap .bnrs .bnr_tel p small {
    font-size: 1.4rem;
    width: 100%;
  }

  .top_08 .wrap .form_sec {
    margin: 8rem auto 0;
  }

  .top_08 .wrap .form_sec .head .h3 {
    font-size: 2.2rem;
  }

  .top_08 .wrap .form_sec .head .p01 {
    font-size: 1.6rem;
    white-space: nowrap;
  }

  .top_08 .wrap .form_sec form dl {
    margin-top: 2rem;
    display: block;
  }

  .top_08 .wrap .form_sec form dl dt {
    width: 100%;
  }

  .top_08 .wrap .form_sec form dl dd {
    width: 100%
  }

  .top_08 .wrap .form_sec form dl dd input[type=text],
  .top_08 .wrap .form_sec form dl dd input[type=email] {
    padding: 1.4rem 1rem;
  }

  .top_08 .wrap .form_sec form dl dd input[type=file] {
    padding: 0 0 1.4rem;
  }

  .top_08 .wrap .form_sec form dl dd textarea {
    padding: 1.4rem 1rem;
  }

  .top_08 .wrap .form_sec form .privacy {
    margin-top: 6rem;
  }

  .top_08 .wrap .form_sec form .privacy .scroll {
    padding: 3rem 1rem;
    height: 22.7rem;
    font-size: 1.2rem;
  }

  .top_08 .wrap .form_sec form .privacy .scroll h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .top_08 .wrap .form_sec form .privacy .scroll h5 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
  }

  .top_08 .wrap .form_sec form .privacy .scroll h6 {
    margin-bottom: .3rem;
  }

  .top_08 .wrap .form_sec form .btn {
    margin: 4rem 0 0;
  }

  .top_08 .wrap .form_sec form .btn input[type=submit] {
    width: 100%;
    height: 6.5rem;
    font-size: 2rem;
  }

  .agree {
    margin-top: 4rem;
  }

  .c_checkbox {
    --cb-size: 1.6rem;
  }

  .grecaptcha-badge {
    bottom: 6rem !important;
  }

  .reCAPTCHA_policy {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

/* ---------------------------------------------------------------------------
//  PC/SP
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}

@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }

  .forPC {
    display: none;
  }
}