@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
} /* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}

/* タイトル
------------------------------*/
.c-sec-ttl {
  position: relative;
  color: #209068;
}

.c-sec-ttl__ja {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.c-sec-ttl__ja strong {
  display: block;
  font-size: 6rem;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .c-sec-ttl__ja {
    font-size: 5.3333333333vw;
  }
  .c-sec-ttl__ja strong {
    font-size: 8vw;
    margin-top: 0;
  }
}

.c-sec-ttl__ja--lg {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .c-sec-ttl__ja--lg {
    font-size: 3rem;
  }
}

.c-sec-ttl__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  font-size: min(15.3rem, 15.3vw);
  font-weight: 700;
  color: rgba(32, 144, 104, 0.1);
  font-family: "Poppins", sans-serif;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
}
.c-sec-ttl__en.type2 {
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-sec-ttl__en {
    font-size: 20.5333333333vw;
    transform: translate(-50%, -50%);
  }
}

/* 補足
------------------------------*/
.c-note {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .c-note {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .c-note {
    font-size: 2.6666666667vw;
  }
}

/*------------------------------
header
------------------------------*/
header {
  background: #013514;
  padding: 10px;
}
@media (max-width: 767px) {
  header {
    padding: 12px 0px;
  }
}

.header__logo {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 1.6rem;
  }
}

/*------------------------------
form-step
------------------------------*/
.form-steps__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .form-steps__list {
    width: 89%;
    margin: 0 auto;
    justify-content: space-between;
  }
}

.form-steps__item {
  width: calc(33.3% - 33.3333333333px);
  max-width: 150px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #209068;
  color: #fff;
  text-align: center;
  padding: 17px 0;
}
.form-steps__item:nth-child(n+2) {
  margin-left: 50px;
  position: relative;
}
.form-steps__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background: #013514;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 11px;
  aspect-ratio: 11/16;
}
.form-steps__item.type2 {
  background: #b5b5b6;
}
@media (max-width: 767px) {
  .form-steps__item {
    width: 28%;
    padding: 0.8em 0;
  }
  .form-steps__item:nth-child(n+2) {
    margin-left: 0;
  }
  .form-steps__item:nth-child(n+2)::before {
    left: -20%;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  position: relative;
}

.fv__cta-wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
}

.fv__cta {
  width: 100%;
  background: rgba(32, 144, 104, 0.8);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1% 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv__cta {
    display: block;
    padding: 3% 0;
  }
}

.fv__cta-text {
  font-weight: bold;
  font-size: min(1.8rem, 1.317715959vw);
  text-align: center;
  line-height: 1.4;
}
.fv__cta-text strong {
  font-size: min(2.9rem, 2.1229868228vw);
}
@media (max-width: 767px) {
  .fv__cta-text {
    font-size: 4.2666666667vw;
    margin-bottom: 1.2em;
  }
  .fv__cta-text strong {
    font-size: 5.8666666667vw;
  }
}

.fv__cta-button {
  margin-left: min(3%, 27px);
}
.fv__cta-button a {
  display: block;
}
@media (max-width: 767px) {
  .fv__cta-button {
    margin: 0;
  }
  .fv__cta-button a {
    margin: 0 auto;
  }
}

.fv_text1 {
  position: absolute;
  top: 21.2%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.fv_text2 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.fv_text3 {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.fv_text4 {
  position: absolute;
  top: 7.7%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
}

.fv_text5 {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 2.6666666667vw;
  color: #013514;
}

/*------------------------------

------------------------------*/
.c-cta-button {
  position: relative;
  background: linear-gradient(90deg, rgb(239, 134, 8) 0%, rgb(234, 85, 4) 100%);
  font-size: min(3rem, 2.196193265vw);
  font-weight: bold;
  width: 14.8em;
  padding: 0.7em 0;
  border-radius: 35px;
  text-align: center;
}
.c-cta-button::before {
  content: "";
  position: absolute;
  background: url(../img/dec3.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 50/78;
  width: 5%;
  left: 13%;
  top: 50%;
}
.c-cta-button::after {
  content: "";
  position: absolute;
  background: url(../img/dec4.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 17/30;
  width: 1.9%;
  left: 95.7%;
  top: 50%;
}
@media (max-width: 767px) {
  .c-cta-button {
    font-size: 5.3333333333vw;
    width: 16.8em;
  }
}

.c-cta-button__caption {
  font-size: min(2rem, 1.4641288433vw);
  color: #ee8008;
  background: #fff;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13.8em;
  padding: 0.2em 0 0.5em;
  -webkit-clip-path: polygon(0% 0%, 0% calc(100% - 0.25em), 47% calc(100% - 0.25em), 50% 100%, 53% calc(100% - 0.25em), 100% calc(100% - 0.25em), 100% 0%);
          clip-path: polygon(0% 0%, 0% calc(100% - 0.25em), 47% calc(100% - 0.25em), 50% 100%, 53% calc(100% - 0.25em), 100% calc(100% - 0.25em), 100% 0%);
}
@media (max-width: 767px) {
  .c-cta-button__caption {
    font-size: 3.2vw;
    width: 14.6em;
  }
}

.fv__cta-note {
  background: #013514;
  color: #fff;
}

.media {
  padding: 8% 0 min(5%, 70px);
}
@media (max-width: 767px) {
  .media {
    padding: 13% 0 min(5%, 70px);
  }
}

.media__title-en {
  transform: translate(-50%, -50%);
}

.media__heading {
  font-weight: bold;
  font-size: 4.5rem;
  color: #013514;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 1.2;
  position: relative;
  margin: 0 auto;
  padding: 1em 2.3em;
}
.media__heading::before, .media__heading::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0%;
  transform: translate(0%, -50%);
  background: url(../img/dec2_2.webp) no-repeat center center/contain;
  aspect-ratio: 82/304;
  height: 100%;
}
.media__heading::after {
  left: unset;
  right: 0;
  transform: translate(0%, -50%) scale(-1, 1);
}
@media (max-width: 767px) {
  .media__heading {
    font-size: 6.6666666667vw;
    padding: 0.7em 0em 2em;
    width: 100%;
  }
}

.media__note {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 1.4rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .media__note {
    font-size: 2.6666666667vw;
  }
}

@media (max-width: 767px) {
  .media__movie {
    margin-top: 6%;
  }
}

@media (min-width: 768px) {
  .media__movie-images {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 113%;
    max-width: 88vw;
    position: relative;
    z-index: 10;
  }
  .media__movie-images img {
    width: 32%;
  }
}
@media (max-width: 767px) {
  .media__movie-images {
    position: relative;
    z-index: 10;
  }
  .media__movie-images img:nth-child(n+2) {
    margin-top: 5%;
  }
}

.media__movie-lead {
  margin-top: -3.3%;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #013514;
  width: 100vw;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 3.9em 0 1.9em;
}
.media__movie-lead::after {
  content: "";
  position: absolute;
  background: url(../img/dec4.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%) rotate(90deg);
  aspect-ratio: 17/30;
  width: 0.7em;
  left: 50%;
  top: 2.3em;
}
@media (max-width: 767px) {
  .media__movie-lead {
    font-size: 5.3333333333vw;
    padding: 8.1em 0 5.7em;
    line-height: 1.4;
    margin-top: -30.3%;
  }
  .media__movie-lead::after {
    top: 6.7em;
  }
}

.media__movie-content {
  margin: -3% auto 5%;
  width: 640px;
  max-width: 100%;
  position: relative;
}
.media__movie-content iframe {
  width: 100%;
}
@media (max-width: 767px) {
  .media__movie-content {
    margin: -25% auto 8%;
  }
}

.media__pickup-title {
  font-weight: bold;
  text-align: center;
  color: #013514;
  line-height: 1.3;
  font-size: 2.5rem;
  width: 17em;
  margin: 0 auto;
  position: relative;
}
.media__pickup-title strong {
  font-size: 4rem;
}
.media__pickup-title span {
  position: absolute;
  background: url(../img/dec.webp) no-repeat center center/100%;
  width: calc((100vw - 17em) / 2);
  height: 1px;
  top: 70%;
  background: #013514;
}
.media__pickup-title span::after {
  content: "";
  position: absolute;
  background: #013514;
  width: 2.8em;
  height: 1px;
  top: 0;
  transform: translate(47%, -530%) rotate(65deg);
  right: 0%;
}
.media__pickup-title span:nth-of-type(1) {
  left: calc(-50vw + 8.5em);
  transform: translate(0%, -50%);
}
.media__pickup-title span:nth-of-type(2) {
  right: calc(-50vw + 8.5em);
  transform: translate(0%, -50%) scale(-1, 1);
}
@media (max-width: 767px) {
  .media__pickup-title {
    font-size: 4.2666666667vw;
  }
  .media__pickup-title strong {
    font-size: 6.6666666667vw;
  }
  .media__pickup-title span::after {
    width: 3.8em;
    transform: translate(47%, -320%) rotate(62deg);
  }
}

.media__pickup-images {
  display: flex;
  justify-content: space-between;
  width: 88%;
  max-width: 1202px;
  margin: 2.7% auto 0;
}
.media__pickup-images li {
  width: 16%;
}
@media (max-width: 767px) {
  .media__pickup-images {
    margin: 7.5% auto 0;
    flex-wrap: wrap;
  }
  .media__pickup-images li {
    width: 46%;
  }
  .media__pickup-images li:nth-child(n+3) {
    margin-top: 5%;
  }
  .media__pickup-images li:last-child:not(:nth-child(2n)) {
    justify-self: center;
    margin: 5% auto;
  }
}

/*------------------------------
voice
------------------------------*/
.voice {
  background: #d2e9e1;
  padding: 70px 0 110px;
}
@media (max-width: 767px) {
  .voice {
    padding: 14% 0 16%;
  }
}

.voice__header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.voice__header::after {
  content: "";
  position: absolute;
  background: url(../img/voice1.svg) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 460/460;
  width: 32%;
  left: 100%;
  top: 50%;
}
.voice__header > h2, .voice__header > p {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .voice__header::after {
    width: 42%;
    left: 80%;
    top: 31%;
  }
}

.voice__title {
  font-size: min(3rem, 3vw);
  font-weight: 700;
  line-height: 2;
  color: #209068;
  text-align: center;
  margin: 0 auto 0.5em;
}
.voice__title strong {
  display: block;
  font-size: min(8.5rem, 8.5vw);
  line-height: 1.1;
}
.voice__title strong span {
  font-size: min(6rem, 6vw);
}
@media (max-width: 767px) {
  .voice__title {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
  .voice__title strong {
    font-size: 13.3333333333vw;
  }
}

.voice__list {
  max-width: 944px;
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  .voice__list {
    margin-top: 35%;
  }
}

.voice__item {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5%;
  padding-bottom: 3%;
}
.voice__item:nth-child(n+2) {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .voice__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .voice__item {
    display: block;
    position: relative;
    padding: 58% 5% 6%;
  }
  .voice__item:nth-child(n+2) {
    margin-top: 34%;
  }
}

.voice__profile {
  width: 27%;
  margin-top: -90px;
}
@media (max-width: 767px) {
  .voice__profile {
    margin-top: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 100%;
    top: 0%;
  }
}

.voice__image img {
  box-shadow: 13.6px 14.6px 38.2px 3.8px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .voice__image {
    width: 40%;
    margin: 0 auto;
  }
}

.voice__name {
  font-size: min(1.6rem, 1.6vw);
  font-weight: 400;
  line-height: 1.6875;
  color: #209068;
  text-align: center;
  margin-top: 0.8em;
}
.voice__name strong {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .voice__name {
    font-size: 3.7333333333vw;
    margin-top: 1.5em;
  }
  .voice__name strong {
    font-size: 5.3333333333vw;
  }
}

.voice__content {
  width: 69.8%;
}
@media (max-width: 767px) {
  .voice__content {
    width: 100%;
  }
}

.voice__heading {
  font-size: min(2.8rem, 2.5454545455vw);
  line-height: 1.4285714286;
  font-weight: 700;
  color: #eb5a04;
  text-align: center;
}
@media (max-width: 767px) {
  .voice__heading {
    font-size: 5.3333333333vw;
    line-height: 1.6;
  }
}

.voice__text {
  margin-top: 1.5em;
  font-size: min(1.6rem, 1.6vw);
  line-height: 2;
}
@media (max-width: 767px) {
  .voice__text {
    margin-top: 0.3em;
    font-size: 4.2666666667vw;
    line-height: 1.8;
  }
}

/*------------------------------
cta
------------------------------*/
.cta__note {
  background: #013514;
  color: #fff;
}

/*------------------------------
problem
------------------------------*/
.problem {
  background: url(../img/problem-bg.webp) no-repeat center top/cover;
  aspect-ratio: 2732/2418;
}
@media (max-width: 767px) {
  .problem {
    background: url(../img/problem-bg_sp.webp) no-repeat center top/cover;
    aspect-ratio: 750/2750;
    position: relative;
  }
  .problem .text {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

@media (min-width: 768px) {
  .problem__inner {
    width: 73%;
    max-width: unset;
  }
}

.problem__content {
  padding-top: 3.7%;
  position: relative;
}
@media (max-width: 767px) {
  .problem__content {
    padding-top: 8.7%;
  }
}

.problem__subtext {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.196193265vw;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.problem__subtext::after {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(-50%, 230%);
  aspect-ratio: 736/24;
  width: 100%;
  left: 50%;
  bottom: 0%;
}
@media (max-width: 767px) {
  .problem__subtext {
    font-size: 5.3333333333vw;
  }
}

.problem__title {
  margin-top: 1.1em;
  font-size: 2.9282576867vw;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .problem__title {
    font-size: 8vw;
    line-height: 1.2;
  }
}

.problem__items {
  margin-top: 3%;
}
.problem__items li {
  width: 67%;
  background-image: linear-gradient(to top, #dcdddd, #fff);
  border-radius: 20px;
  border: solid 2px rgba(255, 255, 255, 0.3);
  font-size: 1.4641288433vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 1em 0;
}
.problem__items li:nth-child(n+2) {
  margin-top: 2%;
}
.problem__items li strong {
  color: #209068;
}
@media (min-width: 768px) {
  .problem__items li:nth-child(2n) {
    transform: translateX(90px);
  }
}
@media (max-width: 767px) {
  .problem__items {
    margin-top: 73%;
  }
  .problem__items li {
    width: 100%;
    font-size: 4.2666666667vw;
  }
  .problem__items li:nth-child(n+2) {
    margin-top: 3%;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  background: #013514;
  padding: 90px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 14% 0;
  }
}

.about__header {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 48px;
  position: relative;
}
.about__header::before, .about__header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background: url(../img/dec2.webp) no-repeat center center/contain;
  aspect-ratio: 82/304;
  height: 100%;
}
.about__header::after {
  left: unset;
  right: 0;
  transform: translate(0%, -50%) scale(-1, 1);
}
@media (max-width: 767px) {
  .about__header {
    width: 100%;
    margin: 0 auto 10%;
  }
  .about__header::before, .about__header::after {
    height: 83%;
  }
  .about__header::before {
    transform: translate(0%, -54%);
  }
  .about__header::after {
    left: unset;
    right: 0;
    transform: translate(0%, -54%) scale(-1, 1);
  }
}

.about__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.7em;
  padding: 0em 2.3em;
}
.about__title strong {
  display: block;
  font-size: 4rem;
  margin-top: 30px;
}
.about__title span {
  font-size: 1.4rem;
  vertical-align: top;
}
@media (max-width: 767px) {
  .about__title {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding: 0;
  }
  .about__title strong {
    font-size: 8vw;
    margin-top: 0;
  }
}

.about__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
  text-align: center;
  color: #fff;
}
.about__text strong {
  color: #fff100;
}
@media screen and (max-width: 999px) {
  .about__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .about__text {
    font-size: 4.2666666667vw;
  }
}

.about__image {
  margin: 40px auto;
  width: 78%;
}
.about__image video {
  width: 100%;
}
@media (max-width: 767px) {
  .about__image {
    margin: 8% auto;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

.comparison {
  padding: 0;
  position: relative;
  margin-top: 88px;
}
.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #dcdddd;
  width: 50%;
  height: 100%;
}
.comparison::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #d2e9e1;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .comparison {
    margin-top: 14%;
  }
}

.comparison__body {
  position: relative;
  z-index: 10;
  padding: 7% 0 5%;
}

.comparison__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(3.5rem, 3.5vw);
  font-weight: 700;
  padding: 10px 20px;
  background: #fff;
  z-index: 2;
  white-space: nowrap;
}
.comparison__title::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 30px;
  aspect-ratio: 2/1;
}
@media (max-width: 767px) {
  .comparison__title {
    font-size: 5.3333333333vw;
    padding: 0.5em 0.4em;
  }
}

.comparison__image {
  width: 64%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .comparison__image {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 6%;
  }
}

.comparison__items {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comparison__items {
    margin-top: 0;
  }
}

.comparison__item {
  width: 50%;
  position: relative;
  z-index: 2;
}

.comparison__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(2.5rem, 2.5vw);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
  background: #00000c;
  padding: 0.2em 0.5em;
}
@media (max-width: 767px) {
  .comparison__label {
    font-size: 4.2666666667vw;
    width: 100%;
    text-align: center;
    padding: 0.9em 0;
  }
}

.comparison__description {
  margin-top: 1.1em;
  font-size: min(2rem, 2vw);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.comparison__description strong {
  color: #209068;
}
@media (max-width: 767px) {
  .comparison__description {
    font-size: 3.7333333333vw;
    margin-top: 0;
    line-height: 1.75;
  }
}

@media (max-width: 767px) {
  .comparison__description1 {
    margin-top: 1.8em;
  }
}

@media (max-width: 767px) {
  .comparison__description2 {
    margin-top: 0.8em;
  }
}

/*------------------------------
reason
------------------------------*/
.reason {
  padding: 120px 0 100px;
  background: #e4f7f0;
}
@media (max-width: 767px) {
  .reason {
    padding: 13% 0 18%;
  }
}

.reason__title {
  color: #013514;
}

.reason__title-number {
  font-size: 8rem;
  color: #eb5804;
  font-weight: 500;
  font-style: italic;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .reason__title-number {
    font-size: 13.3333333333vw;
  }
}

.reason__list {
  margin-top: 110px;
}
@media (max-width: 767px) {
  .reason__list {
    margin-top: 14%;
  }
}

.reason__item {
  width: min(1184px + (100vw - 1366px) / 2, 86.7%);
  background: #fff;
  margin-left: auto;
  padding: min(45px, 3.2942898975vw) min(30px, 2.196193265vw) min(76px, 5.5636896047vw) min(367px, 26.8667642753vw);
  box-shadow: 0 0 38.2px 3.8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.reason__item:nth-child(n+2) {
  margin-top: 120px;
}
@media (min-width: 768px) {
  .reason__item:nth-child(2n) {
    padding: min(45px, 3.2942898975vw) min(367px, 26.8667642753vw) min(76px, 5.5636896047vw) min(30px, 2.196193265vw);
    padding-left: calc(min(185px, 13.5431918009vw) + max(0px, (100vw - 1366px) / 2));
    margin-left: unset;
    margin-right: auto;
  }
  .reason__item:nth-child(2n) .reason__image {
    left: unset;
    right: max(-13.3vw, -182px);
  }
  .reason__item:nth-child(2n) .reason__label {
    left: calc(min(15.4%, 183px) + max((100vw - 1366px) / 2, 0px));
  }
}
@media (max-width: 767px) {
  .reason__item {
    width: 94.6%;
    padding: 6% 4% 65% 5%;
  }
  .reason__item:nth-child(n+2) {
    margin-top: 20%;
  }
}

.reason__label {
  position: absolute;
  top: 0;
  transform: translateY(-80%);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #013514;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .reason__label {
    left: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}

.reason__number {
  display: inline-block;
  line-height: 1;
  margin-left: 14px;
  font-size: 6rem;
  color: #eb5804;
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 767px) {
  .reason__number {
    font-size: 10.6666666667vw;
  }
}

.reason__content {
  max-width: 635px;
}

.reason__heading {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
  color: #209068;
}
@media screen and (max-width: 999px) {
  .reason__heading {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .reason__heading {
    font-size: 5.3333333333vw;
  }
}

.reason__description {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  font-feature-settings: "palt";
}
.reason__description strong {
  font-weight: 700;
  color: #eb5804;
}
@media (max-width: 767px) {
  .reason__description {
    margin-top: 0.7em;
    line-height: 1.7;
    font-size: 4.2666666667vw;
  }
}

.reason__image {
  position: absolute;
  top: max(-63px, -4.6120058565vw);
  max-width: 500px;
  width: 42%;
  left: max(-13.3vw, -182px);
}
@media (max-width: 767px) {
  .reason__image {
    top: unset;
    max-width: unset;
    left: -5.4vw;
    bottom: 0;
    width: 100vw;
    transform: unset;
  }
}

/*------------------------------
curriculum
------------------------------*/
.curriculum {
  background: #209068;
  padding: 76px 0 111px;
}
@media (max-width: 767px) {
  .curriculum {
    padding: 14% 0 10%;
  }
}

.curriculum__header {
  padding: 3em 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
.curriculum__header::after {
  content: "";
  position: absolute;
  background: url(../img/curriculum1.webp) no-repeat center center/100%;
  transform: translate(-50%, 50%);
  aspect-ratio: 806/442;
  width: 41%;
  left: 71%;
  bottom: 40%;
}
@media (max-width: 767px) {
  .curriculum__header {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 8vw 0 32vw;
  }
  .curriculum__header::after {
    width: 90%;
    left: 50%;
    bottom: 27%;
  }
}

.curriculum__subtext {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(3rem, 3vw);
  font-weight: 700;
  line-height: 1.0666666667;
  color: #fff;
  text-align: center;
  background: #209068;
  padding: 0 0.5em;
  white-space: nowrap;
}
.curriculum__subtext::before {
  content: "";
  width: 2px;
  height: 40px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
.curriculum__subtext::after {
  content: "";
  width: 2px;
  height: 40px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}
@media (max-width: 767px) {
  .curriculum__subtext {
    font-size: 5.3333333333vw;
  }
}

.curriculum__title {
  width: 50%;
  font-size: min(4rem, 4vw);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  text-align: center;
  transform: translate(8%, 7%);
}
.curriculum__title strong {
  display: block;
  font-size: min(5rem, 5vw);
}
@media (max-width: 767px) {
  .curriculum__title {
    font-size: 8vw;
    width: 100%;
    transform: unset;
    line-height: 1.2;
  }
  .curriculum__title strong {
    font-size: 10.6666666667vw;
  }
}

.curriculum__container {
  margin-top: 85px;
}
@media (max-width: 767px) {
  .curriculum__container {
    margin-top: 22%;
  }
}

.curriculum__block {
  background: #fff;
  padding: 6.1% 4%;
  position: relative;
}
.curriculum__block:nth-child(n+2) {
  margin-top: 83px;
}
@media (max-width: 767px) {
  .curriculum__block {
    padding: 18.1% 6% 7%;
  }
  .curriculum__block:nth-child(n+2) {
    margin-top: 22%;
  }
}

.curriculum__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
}
@media (max-width: 767px) {
  .curriculum__icon {
    width: 28%;
  }
}

.curriculum__label {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  color: #209068;
  text-align: center;
}
@media (max-width: 767px) {
  .curriculum__label {
    font-size: 8vw;
  }
}

.curriculum__meta {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.3em;
  padding: 0.33em 0.78em;
  font-size: 1.8rem;
  font-weight: 400;
  color: #209068;
  text-align: center;
  border: 1px solid #209068;
}
@media (max-width: 767px) {
  .curriculum__meta {
    font-size: 4.2666666667vw;
    padding: 0.33em 1.5em;
    margin-top: 0.8em;
    line-height: 1.4;
  }
}

@media (min-width: 768px) {
  .curriculum__images {
    display: flex;
    margin-top: 22px;
  }
  .curriculum__images img {
    width: calc(33.3% - 6.6666666667px);
  }
  .curriculum__images img:nth-child(n+2) {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .curriculum__images {
    margin-top: 9%;
  }
  .curriculum__images img:nth-child(n+2) {
    margin-top: 5%;
  }
}

.curriculum__image {
  max-width: 570px;
  margin: 0 auto;
}

.curriculum__description {
  margin-top: 1.6em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.curriculum__description strong {
  font-weight: 700;
  color: #eb5804;
}
@media (max-width: 767px) {
  .curriculum__description {
    margin-top: 1em;
    line-height: 1.75;
    font-size: 4.2666666667vw;
  }
}

.curriculum__content {
  background: #d2e9e1;
  margin-top: 3.2%;
  padding: 3.3% 2.5%;
}
@media (max-width: 767px) {
  .curriculum__content {
    padding: 7.3% 6.5% 3%;
  }
}

.curriculum__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.3%;
}
@media (max-width: 767px) {
  .curriculum__wrapper {
    display: block;
  }
}

.curriculum__list {
  width: calc(50% - 18px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.curriculum__list dt:nth-of-type(n + 2), .curriculum__list dd:nth-of-type(n + 2) {
  margin-top: 7px;
}
.curriculum__list dt {
  width: 14%;
  font-size: min(1.4rem, 1.4vw);
  font-weight: 500;
  color: #fff;
  background: #013514;
  padding: 0.4em 0;
  text-align: center;
}
.curriculum__list dd {
  width: 81%;
  font-size: min(1.6rem, 1.6vw);
  font-weight: 700;
  color: #013514;
  line-height: 2;
  padding-left: 0.875em;
}
@media (min-width: 768px) {
  .curriculum__list:first-child {
    position: relative;
  }
  .curriculum__list:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    background: #013514;
    width: 1px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .curriculum__list {
    width: 100%;
    display: block;
  }
  .curriculum__list dt, .curriculum__list dd {
    font-size: 3.7333333333vw;
  }
  .curriculum__list dt:nth-child(n+2), .curriculum__list dd:nth-child(n+2) {
    margin-top: 0;
  }
  .curriculum__list dt {
    width: 4.2em;
  }
  .curriculum__list dd {
    width: 100%;
    padding: 0.6em 0;
  }
}

@media (max-width: 767px) {
  .curriculum-note {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

/*------------------------------
support
------------------------------*/
.support {
  padding: 64px 0 100px;
  background: #fffaec;
}
@media (max-width: 767px) {
  .support {
    padding: 10% 0;
  }
}

.support__header {
  color: #209068;
  text-align: center;
}

.support__subtext {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.7em;
}
.support__subtext::after {
  content: "";
  position: absolute;
  background: url(../img/dec5.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 570/32;
  width: 100%;
  left: 50%;
  top: 160%;
}
@media (max-width: 767px) {
  .support__subtext {
    font-size: 5.3333333333vw;
  }
}

@media (max-width: 767px) {
  .support__title-ja {
    line-height: 1.4;
  }
}

.support__title-en {
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .support__title-en {
    font-size: 18.1333333333vw;
    width: 100vw;
  }
}

.support__list {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .support__list {
    margin-top: 9%;
  }
}

.support__item {
  width: min(1184px + (100vw - 1366px) / 2, 86.7%);
  background: #fff;
  margin-left: auto;
  padding: min(60px, 4.39238653vw) min(30px, 2.196193265vw) min(40px, 2.9282576867vw);
  position: relative;
}
.support__item:nth-child(n+2) {
  margin-top: 76px;
}
@media (max-width: 767px) {
  .support__item {
    width: 89%;
    padding: 9% 5% 59%;
  }
  .support__item:nth-child(2) {
    padding-bottom: 65%;
  }
  .support__item:nth-child(2) .support__image {
    width: 74.1333333333vw;
    right: unset;
    transform: translateX(2%);
  }
  .support__item:nth-child(3) {
    padding-bottom: 68%;
  }
  .support__item:nth-child(n+2) {
    margin-top: 9%;
  }
}

.support__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .support__wrapper {
    padding-right: 2.5%;
  }
}
@media (max-width: 767px) {
  .support__wrapper {
    display: block;
  }
}

.support__content {
  width: 45%;
}
@media (max-width: 767px) {
  .support__content {
    width: 100%;
  }
}

.support__heading {
  position: absolute;
  top: 0;
  left: -0.8em;
  transform: translate(0%, -50%);
  display: inline-block;
  font-size: min(3.5rem, 3.1818181818vw);
  font-weight: 700;
  line-height: 1.3714285714;
  color: #fff;
  background: #209068;
  padding: 0.2em 0.57em;
}
@media (max-width: 767px) {
  .support__heading {
    font-size: 5.3333333333vw;
    padding: 0.4em 1em;
    left: -1em;
  }
}

.support__description {
  font-size: min(1.6rem, 1.6vw);
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .support__description {
    font-size: 4.2666666667vw;
  }
}

.support__image {
  width: 52%;
  margin-top: max(-90px, -6.588579795vw);
}
@media (max-width: 767px) {
  .support__image {
    position: absolute;
    bottom: 5vw;
    right: 0;
    width: 94.6vw;
  }
}

/*------------------------------
instructor
------------------------------*/
.instructor {
  background: #013514;
  padding: 66px 0 83px;
}
@media (max-width: 767px) {
  .instructor {
    padding: 11% 0;
  }
}

.instructor__title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  color: #fff;
  padding-top: 1.625em;
  position: relative;
}
.instructor__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/instructor_title-icon.webp) no-repeat center center/contain;
  width: 1.6em;
  aspect-ratio: 128/80;
}
@media (max-width: 767px) {
  .instructor__title {
    font-size: 8vw;
  }
  .instructor__title::after {
    width: 1.3em;
  }
}

.instructor__container {
  margin-top: 6.3%;
}
@media (max-width: 767px) {
  .instructor__container {
    margin-top: 45%;
  }
}

.instructor__block:nth-child(n+2) {
  margin-top: 75px;
}
@media (max-width: 767px) {
  .instructor__block {
    position: relative;
  }
  .instructor__block:nth-child(n+2) {
    margin-top: 38.6666666667vw;
  }
}

.instructor__content {
  padding: 4.3% 5%;
  background: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .instructor__content {
    padding: 45% 6% 8%;
  }
}

.instructor__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.instructor__profile {
  padding-left: 24px;
  border-left: 4px solid #209068;
}
@media (max-width: 767px) {
  .instructor__profile {
    padding-left: 4%;
  }
}

.instructor__role {
  font-size: 2rem;
  font-weight: 700;
  color: #013514;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .instructor__role {
    font-size: 4.2666666667vw;
  }
}

.instructor__name {
  margin-top: 0.5em;
  font-size: 4rem;
  font-weight: 700;
  color: #013514;
}
@media (max-width: 767px) {
  .instructor__name {
    margin-top: 0.5em;
    font-size: 8vw;
  }
}

.instructor__bio {
  margin-top: 1.4em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .instructor__bio {
    margin-top: 1.5em;
    font-size: 3.7333333333vw;
    white-space: nowrap;
  }
}

.instructor__image {
  width: 25.6%;
  margin-top: -9%;
  filter: drop-shadow(20px 3.78px 38.22px rgba(0, 0, 0, 0.2));
}
@media (max-width: 767px) {
  .instructor__image {
    position: absolute;
    width: 54%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -35%);
  }
}

.instructor__text {
  background: #e4f7f0;
  padding: 3% 3.5%;
  letter-spacing: 0.01em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  margin-top: 3%;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .instructor__text {
    margin-top: 8%;
    padding: 1.5em;
    font-size: 3.7333333333vw;
  }
}

.instructor__media {
  background: #209068;
  padding: 3% 5%;
  color: #fff;
}
@media (max-width: 767px) {
  .instructor__media {
    padding: 7% 5%;
    padding-right: 0;
  }
}

.instructor__media-info {
  display: flex;
}
.instructor__media-info dt {
  width: 190px;
  font-size: 2rem;
  font-weight: 700;
}
.instructor__media-info dd {
  width: calc(100% - 190px);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  padding-left: 1%;
  margin-top: calc((1lh - 1em) / -2);
}
@media (max-width: 767px) {
  .instructor__media-info {
    display: block;
  }
  .instructor__media-info dt {
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }
  .instructor__media-info dd {
    width: 100%;
    margin-top: 5%;
    padding-left: 0;
  }
}

/*------------------------------
contact
------------------------------*/
.contact {
  padding: 70px 0 85px;
  background: url(../img/contact1.webp) no-repeat center top/100% auto;
}
@media (max-width: 767px) {
  .contact {
    padding: 12% 0;
  }
}

.contact__subtext {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 700;
  color: #013514;
  position: relative;
  padding-bottom: 1em;
}
.contact__subtext::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/img_bar.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 732/32;
}
@media (max-width: 767px) {
  .contact__subtext {
    font-size: 5.3333333333vw;
  }
}

.contact__title {
  margin-top: 0.4em;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #013514;
}
.contact__title strong {
  display: inline-block;
  color: #fff;
  background: #eb5804;
  padding: 0em 0.4em;
  transform: translateX(-5.5%);
}
.contact__title:has(.is-con) {
  margin-top: 2.4em;
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 7.7333333333vw;
    margin-top: 0.7em;
    width: calc(100% + 1em);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .contact__title strong.type2 {
    transform: unset;
  }
}

.contact__message {
  margin-top: 1.6em;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  color: #00000c;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__message {
    margin-top: 1em;
    font-size: 4.2666666667vw;
    line-height: 1.8;
  }
}

.contact__caution {
  margin-top: 60px;
  background: #fffaec;
  padding: 28px 0 40px;
  width: 700px;
  max-width: 100%;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .contact__caution {
    margin: 6% auto 0;
    padding: 6% 4%;
  }
}

.contact__caution-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  color: #eb5804;
  text-align: center;
  position: relative;
  padding-top: 87px;
}
.contact__caution-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/icon_caution.webp) no-repeat center center/contain;
  width: 70px;
  aspect-ratio: 140/125;
}
@media (max-width: 767px) {
  .contact__caution-text {
    padding-top: 3em;
    font-size: 4.2666666667vw;
    line-height: 1.7;
  }
  .contact__caution-text::before {
    width: 2.7em;
  }
}

.contact__caution-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 15px;
}
.contact__caution-list li {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: #eb5804;
}
@media (max-width: 767px) {
  .contact__caution-list li {
    font-size: 4.2666666667vw;
  }
}

.contact__form {
  margin: 50px auto 0;
  width: 900px;
  max-width: 100%;
}

.contact__items {
  border-top: 1px solid #eff5f2;
  border-bottom: 1px solid #eff5f2;
  display: flex;
  flex-wrap: wrap;
}
.contact__items dt {
  width: 22%;
  background: #d2e9e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  font-size: min(1.6rem, 1.6vw);
  font-weight: 700;
  color: #209068;
  padding-left: 1.5em;
  border-bottom: 2px solid #209068;
  position: relative;
}
.contact__items dt::after {
  content: "必須";
  position: absolute;
  background: url(../img/dec.png) no-repeat center center/100%;
  transform: translate(0%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  right: 5%;
  top: 50%;
  background: red;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0.3em;
}
.contact__items dt:first-of-type {
  border-top: 2px solid #209068;
}
.contact__items dd {
  background: #fff;
  width: 78%;
  padding: 25px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  position: relative;
  min-height: calc(1lh + 50px);
}
.contact__items dd::after {
  pointer-events: none;
  content: "";
  position: absolute;
  border-top: 2px solid #eff5f2;
  width: 100%;
  height: calc(100% + 4px);
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
.contact__items dd:last-child::after {
  border-bottom: 2px solid #eff5f2;
}
.contact__items dd input[type=text],
.contact__items dd input[type=tel],
.contact__items dd input[type=email],
.contact__items dd textarea,
.contact__items dd select {
  font: inherit;
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  border: none;
  background: #fffaec;
  padding: 15px 20px;
}
.contact__items dd input[type=text]::-moz-placeholder, .contact__items dd input[type=tel]::-moz-placeholder, .contact__items dd input[type=email]::-moz-placeholder, .contact__items dd textarea::-moz-placeholder, .contact__items dd select::-moz-placeholder {
  color: #cfd0d0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
}
.contact__items dd input[type=text]::placeholder,
.contact__items dd input[type=tel]::placeholder,
.contact__items dd input[type=email]::placeholder,
.contact__items dd textarea::placeholder,
.contact__items dd select::placeholder {
  color: #cfd0d0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact__items {
    display: block;
  }
  .contact__items dt, .contact__items dd {
    width: 100%;
    font-size: 4.2666666667vw;
  }
  .contact__items dt {
    padding: 0.6em 0;
    padding-left: 1.1em;
    border-top: 2px solid #209068;
    border-bottom: 2px solid #209068;
  }
  .contact__items dd {
    padding: 4% 0%;
  }
  .contact__items dd::after {
    display: none;
  }
  .contact__items dd input[type=text],
.contact__items dd input[type=tel],
.contact__items dd input[type=email],
.contact__items dd textarea {
    padding: 0.5em 1em;
  }
}

input[type=date] {
  position: relative;
  font: inherit;
}

.contact__submit {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .contact__submit {
    margin-top: 8%;
  }
}

.contact__button {
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 0.7em;
  width: 20em;
  max-width: 100%;
  font-size: 3rem;
  display: block;
}
.contact__button::before {
  left: calc(50% - 144px);
  transform: translate(-50%, -50%);
  width: 4%;
}
.contact__button span {
  font-size: 2rem;
  border: 1px solid #ee8008;
}
.contact__button button {
  cursor: pointer;
  background: transparent;
  color: #fff;
  margin-left: 2em;
}
@media (max-width: 767px) {
  .contact__button {
    font-size: 5.3333333333vw;
    margin-bottom: 1.1em;
  }
  .contact__button::before {
    left: 15%;
    transform: translate(-50%, -50%);
    width: 5%;
  }
  .contact__button span {
    font-size: 3.2vw;
  }
  .contact__button button {
    margin-left: 0.7em;
  }
}

.contact__submit2 {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__submit2 {
    flex-direction: column-reverse;
  }
}

.contact__button-back,
.contact__button-submit {
  cursor: pointer;
  font-weight: bold;
  border-radius: 25px;
  font-size: 2rem;
  padding: 0.8em 4em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  color: #fff;
  position: relative;
}
.contact__button-back::after,
.contact__button-submit::after {
  content: "";
  position: absolute;
  background: url(../img/dec4.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 17/30;
  width: 0.5em;
  left: 90.7%;
  top: 50%;
}
@media (max-width: 767px) {
  .contact__button-back,
.contact__button-submit {
    width: 100%;
    text-align: center;
  }
  .contact__button-back::after,
.contact__button-submit::after {
    width: 0.4em;
    left: 94.7%;
  }
}

.contact__button-back {
  background: #b5b5b6;
  border: 2px solid #9fa0a0;
}
.contact__button-back::after {
  transform: translate(-50%, -50%) scale(-1, 1);
  left: 10.7%;
  top: 50%;
}
@media (max-width: 767px) {
  .contact__button-back::after {
    left: 4.7%;
  }
}

.contact__button-submit {
  background: linear-gradient(90deg, rgb(239, 134, 8) 0%, rgb(234, 85, 4) 100%);
  border: 2px solid #f08300;
}
@media (min-width: 768px) {
  .contact__button-submit {
    margin-left: 3%;
  }
}
@media (max-width: 767px) {
  .contact__button-submit {
    margin-bottom: 5%;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  background: #d2e9e1;
  padding: 108px 0 77px;
}
@media (max-width: 767px) {
  .faq {
    padding: 18% 0;
  }
}

.faq__list {
  margin-top: 9%;
}
@media (max-width: 767px) {
  .faq__list {
    margin-top: 13%;
  }
}

.faq__item {
  background: #fff;
  border-radius: 28px;
  padding: 25px 30px;
}
.faq__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .faq__item {
    padding: 8% 6%;
    border-radius: 5.3333333333vw;
  }
  .faq__item:nth-child(n+2) {
    margin-top: 4%;
  }
}

.faq__q {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 0 60px;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_Q.webp) no-repeat center center/contain;
  width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__q {
    font-size: 4.2666666667vw;
    padding-left: 15%;
    padding-right: 14%;
  }
  .faq__q::before {
    font-size: 5.3333333333vw;
    width: 1.5em;
  }
}

.faq__icon {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq__icon.is-open .faq__bar2 {
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq__icon {
    width: 6.6666666667vw;
    aspect-ratio: 1/1;
  }
}

.faq__bars {
  position: relative;
}
@media (max-width: 767px) {
  .faq__bars {
    width: 100%;
  }
}

.faq__bar1,
.faq__bar2 {
  width: 30px;
  height: 2px;
  background: #209068;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq__bar1,
.faq__bar2 {
    width: 100%;
  }
}

.faq__bar2 {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s;
}

.faq__a {
  display: none;
  padding-top: 1em;
  border-top: 1px solid #d2e9e1;
  margin-top: 23px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  position: relative;
  padding-left: 60px;
}
.faq__a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  background: url(../img/icon_A.webp) no-repeat center center/contain;
  width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__a {
    font-size: 3.7333333333vw;
    padding-left: 12vw;
    margin-top: 2em;
  }
  .faq__a::before {
    width: 8vw;
  }
}

/*------------------------------
message
------------------------------*/
.message {
  padding: 90px 0 105px;
  background: url(../img/message_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .message {
    background: url(../img/message_bg_sp.webp) no-repeat center center/cover;
    padding: 15% 0 160%;
  }
}

.message__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .message__text {
    text-align: left;
    font-size: 4.2666666667vw;
    letter-spacing: -0.05em;
  }
}

.message__signature {
  text-align: right;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  display: block;
  margin-top: 1.2em;
  margin-right: 2.7em;
}
@media (max-width: 767px) {
  .message__signature {
    font-size: 5.3333333333vw;
    margin-top: 0.7em;
    margin-right: 0em;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #013514;
  text-align: center;
  padding: 10px 0;
}

.footer__copyright, footer a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2857142857;
  color: #fff;
}

/*------------------------------
cta
------------------------------*/
.cta {
  background: #f5f0ec;
}

.cta__content {
  text-align: center;
  padding: 4% 0 1.4%;
  position: relative;
}
.cta__content::after {
  content: "";
  position: absolute;
  background: url(../img/cta1.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1067/522;
  top: 50%;
  width: 70%;
  left: -13%;
}
.cta__content > p, .cta__content > a {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .cta__content {
    margin-left: auto;
    width: 72%;
  }
}
@media (max-width: 767px) {
  .cta__content {
    padding: 8% 0 1.4%;
  }
  .cta__content::after {
    top: 50%;
    width: 60%;
    left: 17%;
  }
}

.cta__message {
  font-weight: bold;
  font-size: min(2.3rem, 1.6837481698vw);
  color: #013514;
  line-height: 1.5;
  margin-bottom: 25px;
}
.cta__message strong {
  font-size: min(3.5rem, 2.5622254758vw);
}
@media (max-width: 767px) {
  .cta__message {
    font-size: 4.2666666667vw;
    line-height: 1.7;
  }
  .cta__message strong {
    font-size: 8vw;
    margin-left: auto;
    display: block;
    padding-right: 0.4em;
    line-height: 1.3;
    text-align: right;
  }
}

.float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 500;
  color: #fff;
  transition: opacity 0.3s;
}
.float.act {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .float {
    width: 430px;
  }
  .float a {
    font-size: 3rem;
    width: 100%;
    aspect-ratio: 430/72;
  }
  .float a span:nth-child(1) {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .float {
    right: 50%;
    transform: translateX(50%);
    bottom: 5px;
  }
}

.fv__cta-button--float {
  margin: 0;
}

/*------------------------------
confirm
------------------------------*/
.invalid-caution { /* バリデーションエラーメッセージ */
  width: 100%;
  color: #C1262D;
  font-size: 1.6rem;
}

.bt_acc {
  pointer-events: none;
  opacity: 0.5;
}
.bt_acc.act {
  pointer-events: auto;
  opacity: 1;
}

[data-form-mode=con] .is-in {
  display: none !important;
}
[data-form-mode=con] .is-con-po {
  pointer-events: none !important;
}
[data-form-mode=con] main > *:not(.contact, .is-con) {
  display: none;
}

[data-form-mode=in] .is-con {
  display: none !important;
}
/*# sourceMappingURL=style.css.map */