@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;
  line-height: normal;
}
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 min(4%, 15px);
    width: 400px;
  }
}

@media (min-width: 768px) {
  .u-inner-1200 {
    width: 1200px;
  }
}

/*------------------------------
テキスト装飾
------------------------------*/
.u-text-marker {
  background: linear-gradient(transparent 60%, #fff100 60%);
}

.u-diagonal-bg {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.3em 1em;
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
          clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  background: #c8161d;
}
.u-diagonal-bg.u-diagonal-bg--2 {
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .u-diagonal-bg {
    font-size: 2rem;
  }
}

/*------------------------------
ボタン
------------------------------*/
.c-button {
  display: inline-block;
  width: 600px;
  max-width: 100%;
  box-shadow: 3.4px 3.7px 0 0 #000;
  border-radius: 50px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
  padding: 1em;
  position: relative;
}
.c-button::after {
  content: "";
  background: url(../img/icon_arrow.webp) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .c-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .c-button {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1em 0;
  }
  .c-button::after {
    display: inline-block;
    content: "";
    position: relative;
  }
}

.c-button--green {
  background: #08c656;
}

.c-button--red {
  background: #c8161d;
}

/*------------------------------
テキスト色
------------------------------*/
.u-text-red {
  color: #c8161d;
}

.u-text-yel {
  color: #fff100;
}

/*------------------------------
relative 
------------------------------*/
.c-relative {
  position: relative;
  z-index: 10;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #000;
}

.footer__img {
  width: 140px;
  max-width: 100%;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}
.footer__img a {
  position: absolute;
  top: 27%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 40%;
}
.footer__img a:nth-of-type(1) {
  left: 27%;
}
.footer__img a:nth-of-type(2) {
  left: 77%;
}

/*------------------------------
header
------------------------------*/
header {
  padding: 5px 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}

.header__message {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .header__message {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

/*------------------------------
fv
------------------------------*/
@media (min-width: 768px) {
  .fv__inner {
    width: 1200px;
  }
}

.fv__body {
  position: relative;
  background: url(../img/fv.webp) no-repeat center center/cover;
  aspect-ratio: 1366/590;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(3%, 40px) 0 70px;
}
@media (min-width: 768px) {
  .fv__body {
    max-height: 590px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .fv__body {
    background: none;
    aspect-ratio: unset;
    padding: 0 0 13%;
  }
}

.fv__body__sub {
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  background: #000;
  color: #f6f6f6;
  padding: 0.2em 0;
}
.fv__body__sub span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .fv__body__sub {
    font-size: min(1.6rem, 4.2666666667vw);
    padding-bottom: 0.7em;
  }
  .fv__body__sub .logo {
    background: #fff;
    margin-top: 3%;
    padding: 4% 5%;
  }
}

.fv__cta__wrap {
  max-height: 125px;
  height: 125px;
  width: 100%;
  position: relative;
}
.fv__cta__wrap::before {
  content: "";
  position: absolute;
  background: url(../img/fv_cta.webp) no-repeat center center/100%;
  aspect-ratio: 2510/232;
  width: 92%;
  max-width: 1256px;
  left: 50%;
  top: 0%;
  transform: translate(-50%, 0%);
}
.fv__cta__wrap::after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 17px;
  max-height: 17px;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 0%);
}

.fv__cta__bg {
  background: #2e2e2e;
  mix-blend-mode: multiply;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.fv__cta-text {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 767px) {
  .fv__cta-text {
    font-size: 4.2666666667vw;
  }
}

.fv__cta-buttons {
  max-width: 618px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.fv__cta-buttons a {
  width: 49%;
  font-size: 2rem;
  padding: 0.5em 0;
}
@media (max-width: 767px) {
  .fv__cta-buttons {
    padding: 2%;
    margin-top: 1%;
  }
  .fv__cta-buttons a {
    font-size: 4.2666666667vw;
  }
}

.logoSwiper {
  overflow: hidden;
  padding: 25px 0;
  text-align: center;
}
.logoSwiper .swiper-wrapper {
  transition-timing-function: linear;
}
@media (max-width: 767px) {
  .logoSwiper {
    padding: 15px 0;
  }
}

.logo__item img {
  height: 100px;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 999px) {
  .logo__item img {
    height: 70px;
  }
}

/*------------------------------
campaign
------------------------------*/
.campaign {
  padding: 55px 0 80px;
  background: url(../img/campaign_bg.webp) no-repeat center center/cover;
  position: relative;
}
.campaign::before {
  content: "";
  position: absolute;
  background: url(../img/campaign.webp) no-repeat center center/100%;
  aspect-ratio: 2384/336;
  width: 88%;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 0%);
  max-width: 1205px;
}
.campaign.campaign2 {
  padding: 45px 0;
}
@media (max-width: 767px) {
  .campaign {
    padding: 40px 0;
  }
  .campaign::before {
    background: url(../img/campaign_sp.webp) no-repeat center center/100%;
    aspect-ratio: 150/1056;
    left: unset;
    right: 0;
    top: 50%;
    height: 100%;
    width: auto;
    transform: translate(0, -50%);
  }
  .campaign.campaign2 {
    padding: 25px 0;
  }
}

.campaign__label span {
  background: #000;
  color: #fff100;
}
@media (max-width: 767px) {
  .campaign__label span:nth-child(2) {
    margin-top: 8px;
  }
}

.campaign__heading {
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: 2.15px;
  text-align: center;
  color: #fff;
  margin-top: 0.1em;
}
@media (max-width: 767px) {
  .campaign__heading {
    font-size: 3.4rem;
    line-height: normal;
  }
}

.campaign__box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  padding: 50px;
  padding-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .campaign__box {
    padding: 50px 10px 30px;
  }
}

.campaign__box-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 61.15%;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 8px 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
          clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
@media (max-width: 767px) {
  .campaign__box-label {
    font-size: 1.8rem;
    width: 100%;
  }
}

.campaign__box-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .campaign__box-wrapper {
    display: block;
  }
}

.campaign__box-badge {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #c8161d;
  text-align: center;
}
.campaign__box-badge strong {
  font-size: 3.4rem;
}
@media (min-width: 768px) {
  .campaign__box-badge {
    width: 130px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
}
@media (max-width: 767px) {
  .campaign__box-badge {
    width: 187px;
    -webkit-clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
            clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    font-size: 1.8rem;
    margin: 0 auto;
  }
  .campaign__box-badge strong {
    font-size: 3rem;
  }
}

.campaign__box-text {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-align: center;
}
@media (max-width: 767px) {
  .campaign__box-text {
    font-size: min(2.3rem, 6.1333333333vw);
    letter-spacing: 1.18px;
    margin-top: 10px;
  }
}

.campaign__box-value {
  font-size: 4rem;
}
.campaign__box-value strong {
  font-size: 7rem;
}
@media (max-width: 767px) {
  .campaign__box-value {
    font-size: 3.2rem;
  }
  .campaign__box-value strong {
    font-size: 4.7rem;
  }
}

/*------------------------------
cta
------------------------------*/
.cta {
  padding: 36px 0 46px;
}
@media (max-width: 767px) {
  .cta {
    padding: 15px 0 30px;
  }
}

.cta__text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.cta__text strong {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .cta__text {
    font-size: 2rem;
  }
}

.cta__buttons {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .cta__buttons {
    margin-top: 50px;
  }
}

.cta__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.cta__button:nth-child(2) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cta__button {
    width: 100%;
  }
  .cta__button:nth-child(2) {
    margin-top: 20px;
  }
  .cta__button:nth-child(2) a {
    font-size: 2rem;
  }
}

.cta__badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -35%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 1.5px;
  color: #fff100;
  width: 3.8em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cta__badge {
    font-size: 1.7rem;
    top: -10px;
    transform: translate(0%, -50%);
  }
}

/*------------------------------
problem
------------------------------*/
.problem {
  background: #000;
  padding: 45px 0;
}

.problem__sub-text span {
  background: #fff;
  color: #c8161d;
}
@media (max-width: 767px) {
  .problem__sub-text span {
    font-size: min(1.8rem, 4.8vw);
  }
}

.problem__heading {
  margin-top: 20px;
  font-size: min(4rem, 4.5572916667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .problem__heading {
    font-size: 3rem;
    margin-top: 0;
  }
}

.problem__content {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #fff;
  padding: 3% 0;
  position: relative;
  overflow: hidden;
}
.problem__content::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(18deg);
  height: 110%;
  width: 1px;
}
@media (max-width: 999px) {
  .problem__content::after {
    transform: translateX(-50%) rotate(10deg);
  }
}
@media (max-width: 767px) {
  .problem__content {
    display: block;
    border: none;
    padding: 0;
    overflow: unset;
    margin-top: 35px;
  }
  .problem__content::after {
    display: none;
  }
}

.problem__item {
  width: 50%;
}
.problem__item:nth-child(2) .problem__label {
  background: #fff;
  color: #c8161d;
}
@media (max-width: 999px) {
  .problem__item {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .problem__item {
    width: 100%;
    border: 1px solid #fff;
    padding: 15px;
    position: relative;
    font-feature-settings: "palt";
  }
  .problem__item:nth-child(2) {
    margin-top: 37px;
  }
}

.problem__label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(2.4rem, 2.0833333333vw);
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.problem__label img {
  width: 1em;
  margin-right: 0.8em;
}
@media (max-width: 767px) {
  .problem__label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: min(2rem, 5.3333333333vw);
    width: 83.5%;
  }
}

.problem__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2.3%;
}
.problem__list li {
  font-size: min(1.8rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 2.7222222222;
  color: #fff;
  position: relative;
  padding-left: 1.5em;
}
.problem__list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background: url(../img/icon_check.webp) no-repeat center center/contain;
  width: 1.2em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .problem__list {
    margin-top: 7.3%;
    width: 93%;
  }
  .problem__list li {
    font-size: min(1.6rem, 4.2666666667vw);
    line-height: 1.6;
  }
  .problem__list li::before {
    transform: translate(0%, -50%);
    top: 0.8em;
  }
  .problem__list li:nth-child(n+2) {
    margin-top: 0.2em;
  }
  .problem__list li.nowrap_sp {
    white-space: nowrap;
  }
}

.problem__footer {
  margin-top: 68px;
}
@media (max-width: 767px) {
  .problem__footer {
    margin-top: 40px;
  }
}

.problem__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 3%;
  position: relative;
}
.problem__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  background: url(../img/img_arrow.webp) no-repeat center center/contain;
  width: 25%;
  aspect-ratio: 524/94;
}
@media (max-width: 767px) {
  .problem__box {
    display: block;
    padding: 40px 6% 20px;
    font-feature-settings: "palt";
  }
  .problem__box::before {
    width: 262px;
  }
}

.problem__message {
  width: 60%;
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 700;
  line-height: 1.75;
  list-style-position: 1px;
}
.problem__message strong {
  font-size: min(3rem, 3.125vw);
}
@media (max-width: 767px) {
  .problem__message {
    width: 100%;
    font-size: min(1.6rem, 4.2666666667vw);
    line-height: 2;
    letter-spacing: 0.6px;
    text-align: center;
  }
  .problem__message strong {
    font-size: min(2rem, 5.3333333333vw);
  }
}

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

/*------------------------------
featured
------------------------------*/
.featured {
  padding-top: 35px;
  background: url(../img/featured_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .featured {
    padding-top: 25px;
  }
}

.featured__badge {
  width: 140px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .featured__badge {
    width: 100px;
  }
}

.featured__subtext {
  margin-top: 17px;
  font-size: 3rem;
  padding: 0.1em 1.2em;
}
@media (max-width: 767px) {
  .featured__subtext {
    font-size: 2rem;
  }
}

.featured__heading {
  margin-top: 0.3em;
  font-size: min(4rem, 3.90625vw);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.featured__heading strong {
  display: block;
  font-size: min(6rem, 5.859375vw);
}
@media (max-width: 767px) {
  .featured__heading {
    margin-top: 17px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .featured__heading strong {
    margin-top: 0;
    font-size: 4rem;
    line-height: 1.25;
  }
}

.featured__text {
  margin-top: 1em;
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
  font-feature-settings: "palt";
}
.featured__text strong {
  font-size: min(2.4rem, 2.34375vw);
}
@media (max-width: 767px) {
  .featured__text {
    font-size: 1.6rem;
    letter-spacing: -0.16px;
    margin-top: 0;
  }
  .featured__text strong {
    font-size: 2rem;
    letter-spacing: -0.2px;
  }
}

.featured__images {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .featured__images {
    margin-top: 20px;
  }
}

/*------------------------------
appeal
------------------------------*/
.appeal {
  background: #000;
  padding: 75px 0 45px;
}

.appeal__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(2.4rem, 2.6041666667vw);
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 1.2px;
  color: #fff;
  text-align: center;
  padding: 0 0.4em;
  position: relative;
}
.appeal__text::before, .appeal__text::after {
  content: "";
  width: 2px;
  height: 3em;
  background: #fff;
  position: absolute;
  bottom: 0%;
}
.appeal__text::before {
  left: 0;
  transform: translateY(0%) rotate(-30deg);
}
.appeal__text::after {
  right: 0;
  transform: translateY(0%) rotate(30deg);
}
@media (max-width: 767px) {
  .appeal__text {
    font-size: 1.6rem;
    padding: 0 0;
  }
  .appeal__text::before, .appeal__text::after {
    height: 5em;
  }
}

.appeal__subtext {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .appeal__subtext {
    margin-top: 10px;
  }
  .appeal__subtext span:nth-child(2) {
    margin-top: 14px;
  }
}

.appeal__hading {
  margin-top: 0.2em;
  font-size: min(4rem, 3.6458333333vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}
.appeal__hading strong {
  font-size: 5rem;
}
@media (max-width: 767px) {
  .appeal__hading {
    font-size: min(2rem, 5.3333333333vw);
    font-feature-settings: "palt";
    letter-spacing: normal;
  }
  .appeal__hading strong {
    font-size: min(2.5rem, 6.6666666667vw);
  }
}

.appeal__content {
  margin-top: 10px;
  border: 1px solid #fff;
  padding: 40px;
}
@media (max-width: 767px) {
  .appeal__content {
    padding: 18px;
    margin-top: 30px;
  }
}

.appeal__label {
  width: 77%;
  display: block;
  margin: 3% auto;
}
@media (max-width: 767px) {
  .appeal__label {
    width: 100%;
    margin: 5% auto;
  }
}

.appeal__wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .appeal__wrapper {
    display: block;
    margin-top: 20px;
  }
}

.appeal__block {
  width: 48%;
  background: #fff;
  padding: 20px;
}
@media (max-width: 767px) {
  .appeal__block {
    width: 100%;
    padding: 20px 10px;
  }
  .appeal__block:nth-child(2) {
    margin-top: 16px;
  }
}

.appeal__feature {
  font-size: min(2rem, 1.5625vw);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .appeal__feature {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
}

.appeal__icon {
  width: 50px;
  margin: 11px auto 0;
}
.appeal__icon.appeal__icon--2 img {
  transform: scale(1.2);
}
.appeal__icon img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.appeal__name {
  margin-top: 0;
  font-size: min(4rem, 2.8645833333vw);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
@media (max-width: 767px) {
  .appeal__name {
    font-size: 2.4rem;
  }
}

.appeal__note {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #fff;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .appeal__note {
    font-size: 1.6rem;
  }
}

/*------------------------------
feature
------------------------------*/
.feature {
  background: url(../img/feature_bg.webp) no-repeat center center/cover;
  padding: 46px 0 66px;
}

.feature__heading {
  position: relative;
  font-size: min(3.5rem, 3.90625vw);
  font-weight: 700;
  letter-spacing: 0.35px;
  padding-top: 1.9em;
  color: #fff;
  text-align: center;
}
.feature__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/img_question.webp) no-repeat center center/contain;
  width: 1.6em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .feature__heading {
    font-size: 2.6rem;
    line-height: 1.3461538462;
    padding-top: 2.5em;
  }
  .feature__heading::before {
    width: 2em;
  }
}

.feature__description {
  font-feature-settings: "palt";
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4%;
  font-size: min(1.6rem, 1.4414414414vw);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.16px;
}
.feature__description strong {
  font-size: min(2rem, 1.8018018018vw);
}
@media (max-width: 767px) {
  .feature__description {
    padding: 40px 20px;
    text-align: left;
    letter-spacing: -0.48px;
    font-size: min(1.6rem, 4.2666666667vw);
  }
  .feature__description strong {
    letter-spacing: -0.6px;
    font-size: min(2rem, 5.3333333333vw);
  }
}

/*------------------------------
voice
------------------------------*/
.voice {
  padding: 100px 0 83px;
  background: url(../img/voice_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .voice {
    padding: 53px 0 58px;
  }
}

.voice__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.voice__title::before {
  content: "";
  position: absolute;
  background: url(../img/voice.webp) no-repeat center center/100%;
  aspect-ratio: 1330/332;
  width: 117%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.voice__title strong {
  display: block;
  font-size: 5rem;
  letter-spacing: 2.5px;
}
@media (max-width: 767px) {
  .voice__title {
    font-size: min(2rem, 5.3333333333vw);
  }
  .voice__title::before {
    width: 100%;
  }
  .voice__title strong {
    font-size: min(3rem, 8vw);
    letter-spacing: normal;
  }
}

.voice__note {
  margin-top: 2em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.7px;
}
@media (max-width: 767px) {
  .voice__note {
    margin-top: 0.7em;
  }
}

.voice__list {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .voice__list {
    margin-top: 75px;
  }
}

.voice__item {
  border: 1px solid #000;
  padding: 2%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  font-feature-settings: "palt";
}
.voice__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .voice__item {
    position: relative;
    padding: 50px 4% 30px;
    display: block;
  }
  .voice__item:nth-child(n+2) {
    margin-top: 23%;
  }
}

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

.voice__image {
  display: block;
  margin: 0 auto;
  width: 75%;
}
@media (max-width: 767px) {
  .voice__image {
    width: 30%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.voice__profile {
  font-size: min(1.6rem, 1.5625vw);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.8px;
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .voice__profile {
    font-size: 1.4rem;
    text-align: center;
  }
}

.voice__body {
  width: 78%;
}
@media (max-width: 767px) {
  .voice__body {
    width: 100%;
    margin-top: 24px;
  }
}

.voice__heading {
  font-size: min(2.8rem, 2.34375vw);
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 1.4px;
  color: #c8161d;
}
@media (max-width: 767px) {
  .voice__heading {
    font-size: 2rem;
    text-align: center;
  }
}

.voice__text {
  margin-top: 0.5em;
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1.75;
}
.voice__text strong {
  display: inline;
  color: #c8161d;
  background: #fff100;
}
@media (max-width: 767px) {
  .voice__text {
    font-size: 1.6rem;
  }
}

/*------------------------------
strengths
------------------------------*/
.strengths {
  padding: 80px 0 110px;
  background: #000;
}
@media (max-width: 767px) {
  .strengths {
    padding: 36px 0 56px;
  }
}

.strengths__subtext {
  border: 1px solid #fff;
  background: transparent;
  color: #fff100;
}
@media (max-width: 767px) {
  .strengths__subtext {
    font-size: 1.6rem;
  }
}

.strengths__title {
  margin-top: 37px;
  font-size: min(6rem, 4.5572916667vw);
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}
.strengths__title strong {
  font-size: 7rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .strengths__title {
    margin-top: 16px;
    font-size: min(4rem, 10.6666666667vw);
    letter-spacing: -0.01em;
    font-feature-settings: "palt";
  }
  .strengths__title strong {
    font-size: min(7rem, 18.6666666667vw);
  }
}

.strengths__title--sm {
  display: block;
  margin-bottom: 8px;
  font-size: min(4rem, 3.90625vw);
}
@media (max-width: 767px) {
  .strengths__title--sm {
    font-size: 3rem;
    line-height: 1.3333333333;
    letter-spacing: 1.5px;
  }
}

.strengths__en {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #272727;
  text-align: center;
}
@media (max-width: 767px) {
  .strengths__en {
    font-size: min(2rem, 5.3333333333vw);
  }
}

.strengths__image {
  max-width: 777px;
  margin: 0 auto;
  margin-top: 38px;
}

.strengths__list {
  margin-top: 54px;
}

.strengths__item {
  background: #fff;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.strengths__item:nth-child(n+2) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .strengths__item {
    position: relative;
    padding: 78px 0 30px;
  }
  .strengths__item:nth-child(n+2) {
    margin-top: 80px;
  }
}

.strengths__label {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  height: 110%;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #c8161d;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 0% 100%);
  padding-right: 4%;
}
.strengths__label img {
  display: block;
  width: 50%;
}
@media (max-width: 767px) {
  .strengths__label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 120px;
    aspect-ratio: 1/1;
    height: auto;
    -webkit-clip-path: unset;
            clip-path: unset;
    padding: 0;
  }
}

.strengths__body {
  width: 78%;
  padding: 4%;
  padding-left: 0;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .strengths__body {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}

.strengths__heading {
  display: inline;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  background: linear-gradient(transparent 60%, #fff100 60%);
}
@media (max-width: 767px) {
  .strengths__heading {
    font-size: 2rem;
    text-align: center;
  }
}

.strengths__description {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .strengths__description {
    margin-top: 15px;
    text-align: left;
    padding: 0 7%;
  }
}

/*------------------------------
movie
------------------------------*/
.movie {
  padding: 50px 0 84px;
  background: url(../img/movie_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .movie {
    padding: 35px 0 56px;
  }
}

.movie__heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
  padding-top: 1.75em;
}
.movie__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/icon_mark2.webp) no-repeat center center/contain;
  width: 1.3em;
  aspect-ratio: 50/50;
}
@media (max-width: 767px) {
  .movie__heading {
    font-size: min(2.2rem, 5.8666666667vw);
    letter-spacing: normal;
    font-feature-settings: "palt";
    padding-top: 2.35em;
  }
  .movie__heading::before {
    width: 1.7em;
  }
}

.movie__list {
  margin-top: 34px;
}
@media (max-width: 767px) {
  .movie__list {
    margin-top: 25px;
  }
}

.movie__item:nth-child(n+2) {
  margin-top: 34px;
}
.movie__item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
@media (max-width: 767px) {
  .movie__item:nth-child(n+2) {
    margin-top: 25px;
  }
}

/*------------------------------
reason
------------------------------*/
.reason {
  background: #000;
  padding: 64px 0 87px;
}
@media (max-width: 767px) {
  .reason {
    padding: 45px 0 40px;
    overflow: hidden;
  }
}

.reson__inner {
  width: 1160px;
}

.reason__subtext {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(4rem, 3.90625vw);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.4em 0;
}
@media (max-width: 767px) {
  .reason__subtext {
    font-size: min(2rem, 5.3333333333vw);
    padding: 0.7em 0;
  }
}

.reason__title {
  font-size: min(6.7rem, 6.5104166667vw);
  font-weight: 700;
  letter-spacing: 3.35px;
  color: #fff;
  text-align: center;
  position: relative;
}
.reason__title::before {
  content: "";
  position: absolute;
  background: url(../img/reason__title.webp) no-repeat center center/100%;
  aspect-ratio: 1814/330;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.reason__title strong {
  display: inline-block;
  line-height: 1;
  font-size: min(9.4rem, 10.6666666667vw);
}
.reason__title em {
  display: inline-block;
  line-height: 1;
  font-size: min(8rem, 7.8125vw);
}
@media (max-width: 767px) {
  .reason__title {
    font-size: 5rem;
  }
  .reason__title::before {
    width: 130%;
    top: 80%;
  }
  .reason__title strong {
    font-size: 7rem;
  }
  .reason__title em {
    font-size: 6rem;
  }
}

.reason__title--sm {
  display: block;
  font-size: min(5rem, 4.4270833333vw);
}
@media (max-width: 767px) {
  .reason__title--sm {
    font-size: min(3rem, 8vw);
  }
}

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

.reason__item {
  border: 1px solid #fff;
  padding: 1.5% 3.5%;
  padding-right: 1%;
  font-feature-settings: "palt";
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.reason__item:nth-child(n+2) {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .reason__item {
    display: block;
    padding: 9% 7%;
  }
  .reason__item:nth-child(n+2) {
    margin-top: 40px;
  }
}

.reason__label {
  position: absolute;
  top: 0;
  left: -3%;
  transform: translateY(-50%);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(3rem, 2.6041666667vw);
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.2em 1.3em;
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  background: #c8161d;
}
@media (max-width: 767px) {
  .reason__label {
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: min(2.4rem, 6.4vw);
    width: 82%;
  }
}

.reason__body {
  width: 74%;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .reason__body {
    width: 100%;
  }
}

.reason__heading {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3043478261;
  letter-spacing: 1.15px;
  color: #fff;
  padding-left: 0.5em;
  border-left: 3px solid #c8161d;
}
@media (max-width: 767px) {
  .reason__heading {
    font-size: 2rem;
    padding-left: 0.9em;
  }
}

.reason__description {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
}
@media (max-width: 767px) {
  .reason__description {
    margin-top: 20px;
  }
}

.reason__image {
  width: 22.5%;
}
@media (max-width: 767px) {
  .reason__image {
    width: 100%;
    margin-top: 7%;
  }
}

/*------------------------------
outcome
------------------------------*/
.outcome {
  background: url(../img/outcome_bg.webp) no-repeat center center/cover;
  padding: 75px 0 82px;
}
@media (max-width: 767px) {
  .outcome {
    padding: 30px 0 40px;
  }
}

.outcome__heading {
  font-size: min(4rem, 3.90625vw);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .outcome__heading {
    font-size: min(2.4rem, 6.4vw);
  }
}

.outcome__images {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 112%;
  max-width: 95vw;
}
@media (max-width: 767px) {
  .outcome__images {
    display: block;
    margin-top: 5%;
    width: 100%;
  }
}

.outcome__image {
  width: calc(33.3% - 4px);
}
@media (min-width: 768px) {
  .outcome__image:not(:nth-child(3n)) {
    margin-right: 6px;
  }
  .outcome__image:nth-child(n+4) {
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .outcome__image {
    width: 100%;
  }
  .outcome__image:nth-child(n+2) {
    margin-top: 9px;
  }
}

/*------------------------------
voice02
------------------------------*/
.voice02 {
  padding: 57px 0 70px;
}
@media (max-width: 767px) {
  .voice02 {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .voice_subtext {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.voice02__title {
  font-size: min(4rem, 4.9479166667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .voice02__title {
    font-size: 3rem;
    margin-top: 0.2em;
  }
}

.voice02__note {
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  text-align: center;
}

.voice02__list {
  margin-top: 35px;
}

.voice02__item {
  background: #f6f6f6;
  border: 1px solid #c9caca;
  box-shadow: 3.4px 3.7px 0 0 #c9caca;
  padding: 3% 2%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-feature-settings: "palt";
}
.voice02__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .voice02__item {
    display: block;
    padding: 34% 20px 20px;
    position: relative;
  }
  .voice02__item:nth-child(n+2) {
    margin-top: 38px;
  }
}

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

@media (max-width: 767px) {
  .voice02__image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-45%, -6%);
    width: 36%;
  }
}

.voice02__profile {
  font-size: min(1.6rem, 1.5625vw);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 0.5em;
  padding-right: 2.5em;
}
@media (max-width: 767px) {
  .voice02__profile {
    font-size: 1.4rem;
    padding-right: 0;
  }
}

.voice02__body {
  width: 78.5%;
}
@media (max-width: 767px) {
  .voice02__body {
    width: 100%;
    margin-top: 2%;
  }
}

.voice02__heading {
  font-size: min(3rem, 3.3854166667vw);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 1.5px;
  color: #c8161d;
}
@media (max-width: 767px) {
  .voice02__heading {
    font-size: 2rem;
    text-align: center;
  }
}

.voice02__text {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .voice02__text {
    margin-top: 20px;
  }
}

/*------------------------------
instructor
------------------------------*/
.instructor {
  padding: 65px 0 88px;
  background: #000;
}
@media (max-width: 767px) {
  .instructor {
    padding: 25px 0 40px;
  }
}

.instructor__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
}
.instructor__title strong {
  display: block;
  margin-top: 20px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .instructor__title {
    font-size: min(2rem, 5.3333333333vw);
  }
  .instructor__title strong {
    font-size: min(3rem, 8vw);
    margin-top: 0;
    letter-spacing: normal;
  }
}

.instructor__block01 {
  margin-top: 35px;
}
.instructor__block01 .instructor__item {
  border: 1px solid #c8161d;
}
@media (max-width: 767px) {
  .instructor__block01 {
    margin-top: 18%;
  }
}

.instructor__block02 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .instructor__block02 {
    margin-top: 60px;
  }
}

.instructor__item {
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 3%;
  font-feature-settings: "palt";
}
.instructor__item:nth-child(n+2) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .instructor__item {
    position: relative;
    padding: 150px 20px 30px;
  }
}

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

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

.instructor__profile {
  padding-left: 17px;
  border-left: 3px solid #c8161d;
}

.instructor__name {
  font-size: min(4rem, 3.90625vw);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .instructor__name {
    font-size: min(3rem, 8vw);
  }
}

.instructor__name--en {
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 400;
  color: #595757;
  margin-left: 1.2em;
}
@media (max-width: 767px) {
  .instructor__name--en {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.instructor__role {
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 700;
  letter-spacing: 1px;
  color: #f6f6f6;
}
@media (max-width: 767px) {
  .instructor__role {
    font-size: 1.6rem;
  }
}

.instructor__description {
  margin-top: 1em;
  font-size: min(1.6rem, 1.8229166667vw);
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: #f6f6f6;
}
@media (max-width: 767px) {
  .instructor__description {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.instructor__section {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .instructor__section {
    margin-top: 30px;
  }
}

.instructor__label {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
}

.instructor__sub-label {
  margin-top: 30px;
  background: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.3em 0;
  text-align: center;
}
@media (max-width: 767px) {
  .instructor__sub-label {
    font-size: 20px;
    margin-top: 4%;
  }
}

/*------------------------------
course
------------------------------*/
.course {
  padding: 70px 0 40px;
}
@media (max-width: 767px) {
  .course {
    padding: 50px 0 20px;
    overflow: hidden;
  }
}

.course__header {
  position: relative;
}
.course__header::before {
  content: "";
  position: absolute;
  background: url(../img/course.webp) no-repeat center center/100%;
  aspect-ratio: 1786/332;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .course__header::before {
    width: 130%;
    top: 40%;
  }
}

.course__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
}
@media (max-width: 767px) {
  .course__title {
    font-size: 3rem;
  }
}

.course__lead {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-top: 0.5em;
}

.course__list {
  margin-top: 84px;
  display: flex;
}
@media (max-width: 767px) {
  .course__list {
    display: block;
    margin-top: 12%;
  }
}

.course__item {
  width: calc(33.3% - 13.3333333333px);
  border: 1px solid #000;
  position: relative;
  padding: 50px 1% 30px;
}
.course__item:nth-child(n+2) {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .course__item {
    width: 100%;
    padding: 30px 1%;
  }
  .course__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 35px;
  }
}

.course__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  font-size: min(6rem, 3.90625vw);
  font-weight: 700;
  font-style: italic;
  color: #c8161d;
  text-align: center;
  padding: 5px;
}
@media (max-width: 767px) {
  .course__label {
    font-size: 4rem;
  }
}

.course__icon img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .course__icon img {
    height: 40px;
  }
}

.course__name {
  font-size: min(2.8rem, 2.0833333333vw);
  font-weight: 700;
  line-height: 1.1428571429;
  letter-spacing: 1.4px;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .course__name {
    font-size: 2.8rem;
    margin-top: 0;
  }
}

.course__name--sm {
  display: block;
  font-size: min(1.6rem, 1.5625vw);
}
@media (max-width: 767px) {
  .course__name--sm {
    font-size: 1.6rem;
  }
}

.course__note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 27px;
  font-size: min(2rem, 2.0833333333vw);
  font-weight: 500;
  padding: 0.2em;
  color: #fff;
  text-align: center;
  background: #c8161d;
}
@media (max-width: 767px) {
  .course__note {
    background: unset;
    font-size: 1.6rem;
    margin-top: 1em;
  }
  .course__note span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    background: #c8161d;
  }
  .course__note span:nth-child(2) {
    margin-top: 4px;
  }
}

/*------------------------------
curriculum
------------------------------*/
.curriculum {
  padding: 50px 0 130px;
  background: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .curriculum {
    padding: 35px 0 80px;
  }
}

.curriculum__block:nth-child(n+2) {
  margin-top: 6%;
}
@media (max-width: 767px) {
  .curriculum__block {
    position: relative;
  }
}

.curriculum__top {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.curriculum__top::before, .curriculum__top::after {
  content: "";
  position: absolute;
  background: #c8161d;
  width: calc(50vw - 30px);
  height: 1px;
  top: 50%;
  transform: translate(0%, -50%);
}
.curriculum__top::before {
  left: 0;
}
.curriculum__top::after {
  right: 0;
}
.curriculum__top img {
  width: 50px;
  display: block;
  margin: 0 auto;
}

.curriculum__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
  margin-top: 0.7em;
}
.curriculum__title strong {
  font-size: 4rem;
  display: block;
}
@media (max-width: 767px) {
  .curriculum__title {
    font-size: min(3rem, 8vw);
  }
  .curriculum__title strong {
    font-size: min(4rem, 10.6666666667vw);
  }
}

.curriculum__subtext {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 400;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.3em 0.5em;
  margin-top: 1.4em;
}
@media (max-width: 767px) {
  .curriculum__subtext {
    margin-top: 0.8em;
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.curriculum__content {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .curriculum__content {
    margin-top: 30px;
  }
}

.curriculum__content2 {
  margin-top: 60px;
}
.curriculum__content2 .curriculum__tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em 0;
  margin-left: 0.5em;
}

.curriculum__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.curriculum__item::before {
  content: "";
  position: absolute;
  background: #c8161d;
  width: 1px;
  height: calc(100% - min(60px, 4.5011252813vw) + 30px);
  left: 2.75%;
  top: min(61px, 4.576144036vw);
  transform: translate(-50%, 0%);
}
.curriculum__item:nth-child(n+2) {
  margin-top: 30px;
}
.curriculum__item:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  .curriculum__item {
    flex-direction: column-reverse;
    position: relative;
    padding-left: 22%;
  }
  .curriculum__item::before {
    left: 10%;
    top: min(54px, 14.4vw);
    height: calc(100% - min(60px, 16vw) + 30px);
  }
  .curriculum__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.curriculum__label {
  width: 5.5%;
  aspect-ratio: 1/1;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: min(3rem, 2.2556390977vw);
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum__label::before {
  content: "";
  position: absolute;
  border: 1px solid #c8161d;
  width: 70%;
  height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
  .curriculum__label {
    position: absolute;
    top: 0%;
    left: 10%;
    transform: translate(-50%, 0%);
    font-size: min(2.7rem, 7.2vw);
    width: 16%;
  }
  .curriculum__label::before {
    width: 70%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.curriculum__body {
  width: 72%;
  margin-top: 1%;
}
@media (max-width: 767px) {
  .curriculum__body {
    width: 100%;
    margin-top: 15px;
  }
}

.curriculum__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3333333333;
  color: #fff;
}
@media (max-width: 767px) {
  .curriculum__heading {
    font-size: min(2.4rem, 6.4vw);
  }
}

.curriculum__tag {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.3em 1em;
  margin-left: 1.4em;
}
@media (max-width: 767px) {
  .curriculum__tag {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin-left: 0;
    margin-top: 14px;
    font-feature-settings: "palt";
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.curriculum__description {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.8px;
  font-weight: 400;
  color: #fff;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .curriculum__description {
    margin-top: 0.5em;
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

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

.curriculum__lead {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1.3em;
}
.curriculum__note {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  margin-top: 1.9em;
  line-height: 1.7;
}

.curriculum__guide {
  margin-top: 50px;
  border: 1px solid #fff;
  padding: 2% 4%;
  width: 84%;
  margin: 3% auto 0;
}
.curriculum__guide h3 {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .curriculum__guide {
    width: 98%;
    margin: 9% auto 0;
    padding: 5% 6%;
  }
  .curriculum__guide h3 {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.curriculum__guide__body {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.curriculum__guide__body p {
  width: 24%;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
.curriculum__guide__body p span {
  display: block;
  padding: 0.5em 0;
}
.curriculum__guide__body p span:first-child {
  background: #595757;
}
.curriculum__guide__body p span:nth-child(2) {
  background: #fff;
  color: #000;
  margin-top: 0.7em;
}
.curriculum__guide__body p span.red {
  background: #c8161d;
}
@media (max-width: 767px) {
  .curriculum__guide__body {
    display: block;
    margin-top: 15px;
  }
  .curriculum__guide__body p {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .curriculum__guide__body p:nth-child(n+2) {
    margin-top: 0.6em;
  }
  .curriculum__guide__body p span {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .curriculum__guide__body p span:nth-child(2) {
    margin-top: 0;
  }
}

.curriculum__extra {
  margin-top: 40px;
}

.curriculum__extra-box {
  background: white;
  font-feature-settings: "palt";
  color: #000;
  padding: 5% 3%;
  border: 2px solid #c8161d;
}
@media (max-width: 767px) {
  .curriculum__extra-box {
    padding: 20px;
  }
}

.curriculum__extra-heading {
  font-size: min(3rem, 2.8645833333vw);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 1.5px;
  color: #c8161d;
  position: relative;
  padding-left: 3.3em;
}
.curriculum__extra-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_exclamation-mark.svg) no-repeat center center/contain;
  width: 2.3em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .curriculum__extra-heading {
    font-size: 2rem;
    text-align: center;
    padding-left: 0;
    padding-top: 2.5em;
  }
  .curriculum__extra-heading::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.curriculum__extra-list {
  margin-top: 4%;
}

.curriculum__extra-item {
  display: flex;
  justify-content: space-between;
}
.curriculum__extra-item:nth-child(2) {
  flex-direction: row-reverse;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .curriculum__extra-item {
    flex-direction: column-reverse;
  }
  .curriculum__extra-item:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.curriculum__extra-image {
  width: 36%;
}
@media (max-width: 767px) {
  .curriculum__extra-image {
    width: 100%;
    margin-top: 20px;
  }
}

.curriculum__extra-text {
  width: 60%;
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.8px;
}
.curriculum__extra-text strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #c8161d;
}
@media (max-width: 767px) {
  .curriculum__extra-text {
    width: 100%;
    font-size: 1.6rem;
  }
}

/*------------------------------
flow
------------------------------*/
.follow {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .follow {
    overflow: hidden;
    padding: 70px 0 40px;
  }
}

.follow__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  position: relative;
}
.follow__title::before {
  content: "";
  position: absolute;
  background: url(../img/follow.webp) no-repeat center center/100%;
  aspect-ratio: 2300/222;
  width: 95%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .follow__title {
    font-size: 3rem;
  }
  .follow__title::before {
    background: url(../img/follow_sp.webp) no-repeat center center/100%;
    aspect-ratio: 750/304;
    width: 108%;
  }
}

.follow__items {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .follow__items {
    display: block;
    margin-top: 16%;
  }
}

.follow__item {
  font-feature-settings: "palt";
  width: 49%;
  background: #f6f6f6;
  padding: 30px;
  padding: 3%;
}
@media (max-width: 767px) {
  .follow__item {
    width: 100%;
    padding: 5% 7%;
  }
  .follow__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.follow__heading {
  font-size: min(2.8rem, 3.125vw);
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 1.4px;
  text-align: center;
  color: #c8161d;
  margin-top: 0.7em;
}
@media (max-width: 767px) {
  .follow__heading {
    font-size: 2rem;
  }
}

.follow__description {
  margin-top: 0.6em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .follow__description {
    margin-top: 0.2em;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: 100px 0 50px;
  background: #000;
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0 30px;
  }
}

.faq__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.faq__title::before {
  content: "";
  position: absolute;
  background: url(../img/faq.webp) no-repeat center center/100%;
  aspect-ratio: 774/258;
  width: 150%;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 3rem;
  }
  .faq__title::before {
    width: 160%;
  }
}

.faq__list {
  margin-top: 78px;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .faq__list {
    margin-top: 55px;
  }
}

.faq__item:nth-child(n+2) {
  margin-top: 1.9%;
}
@media (max-width: 767px) {
  .faq__item:nth-child(n+2) {
    margin-top: 5%;
  }
}

.faq__q {
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
  background: #fff;
  display: flex;
}
@media (max-width: 767px) {
  .faq__q {
    font-size: min(1.6rem, 4.2666666667vw);
    line-height: 1.8;
    position: relative;
    padding: 0.6em 0;
    padding-right: 10%;
    padding-left: 24%;
  }
}

.faq__label {
  font-family: "Roboto", sans-serif;
  width: 4.5em;
  letter-spacing: 1px;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0%, 72% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 72% 100%, 0% 100%);
  background: #c8161d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 1.2em;
}
@media (max-width: 767px) {
  .faq__label {
    font-size: min(1.8rem, 4.8vw);
    letter-spacing: normal;
    width: 22%;
    flex-shrink: 0;
    position: absolute;
    top: 0%;
    left: 0;
    height: 100%;
  }
}

.faq__a {
  margin-top: 0.7em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.8px;
  color: #fff;
}
@media (max-width: 767px) {
  .faq__a {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

/*------------------------------
attention
------------------------------*/
.attention {
  background: #000;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .attention {
    padding: 40px 0;
  }
}

.attention__content {
  border: 1px solid #fff;
  padding: 20px 20px 50px;
}
@media (max-width: 767px) {
  .attention__content {
    padding: 20px 2%;
    padding-top: 2.7em;
  }
}

.attention__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 1.5px;
  color: #c8161d;
  text-align: center;
  position: relative;
  padding-top: 2.3em;
}
.attention__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/icon_attention.webp) no-repeat center center/contain;
  width: 2em;
  aspect-ratio: 50/50;
}
@media (max-width: 767px) {
  .attention__heading {
    font-size: min(2.5rem, 6.6666666667vw);
    letter-spacing: normal;
  }
}

.attention__text {
  margin-top: 0.7em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #fff;
  text-align: center;
}
.attention__text strong {
  font-size: 2rem;
  font-weight: 700;
  color: #fff100;
}
@media (max-width: 767px) {
  .attention__text {
    margin-top: 30px;
  }
}

/*------------------------------
seminar
------------------------------*/
.seminar {
  padding: 58px 0 74px;
}

.seminar__title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
@media (max-width: 767px) {
  .seminar__title {
    font-size: 3rem;
  }
}

.seminar__info {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
}
.seminar__info dt:nth-of-type(n + 2), .seminar__info dd:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .seminar__info {
    display: block;
  }
  .seminar__info dt, .seminar__info dd {
    width: 100%;
  }
}

.seminar__label {
  width: 21%;
  background: #f3f7f8;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .seminar__label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .seminar__label {
    text-align: left;
    padding: 0.1em 1em;
  }
}

.seminar__content {
  width: 79%;
  padding: 10px 2%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .seminar__content {
    margin-top: 0;
    padding: 10px 0;
    letter-spacing: -0.16px;
  }
}

.seminar__image {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .seminar__image {
    margin-top: 10px;
  }
}

.seminar__map {
  margin-top: 25px;
}
.seminar__map iframe {
  width: 100%;
  aspect-ratio: 1000/410;
  height: auto;
}
@media (max-width: 767px) {
  .seminar__map iframe {
    aspect-ratio: 1000/930;
  }
}

.seminar__button {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .seminar__button {
    margin-top: 10px;
  }
  .seminar__button a {
    font-size: 2rem;
  }
}

/*------------------------------
form
------------------------------*/
.iframe__wrap {
  margin: 0 auto;
  text-align: center;
}
.iframe__wrap iframe {
  width: 100%;
}

/*------------------------------
message
------------------------------*/
.message {
  background: url(../img/message_bg.webp) no-repeat center center/cover;
  padding: 88px 0 70px;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  margin-top: 100px;
}
@media (max-width: 767px) {
  .message {
    padding: 60px 0 90px;
  }
}

.message__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.0666666667;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .message__heading {
    font-size: 3rem;
  }
}

.message__text {
  margin-top: 6%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #fff;
}
@media (max-width: 767px) {
  .message__text {
    margin-top: 34px;
    line-height: 1.8;
  }
}

.message__signature {
  text-align: right;
  margin-top: 2em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4375;
  color: #fff;
  letter-spacing: 0.8px;
}
.message__signature strong {
  font-size: 2rem;
}

/*------------------------------
float
------------------------------*/
.float {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  max-height: 125px;
  height: 125px;
  width: 100%;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
.float.act {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .float {
    height: auto;
  }
}

.fv__cta {
  position: relative;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .fv__cta {
    padding: 2% 0;
  }
}
/*# sourceMappingURL=style.css.map */