@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1214px) {
  html {
    font-size: 0.694vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.564vw;
  }
}
.inner {
  max-width: 125.4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pc_n {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp_n {
    display: none !important;
  }
}

img {
  width: 100%;
}

.wrap {
  overflow: hidden;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

body {
  font-family: "Noto Sans JP";
}

/* ===============================
   ハンバーガーメニュー 画面全体フェードイン
   =============================== */
/* ヘッダーを最前面に */
.header-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100; /* ← 罰が隠れないように最前面へ */
  height: 8rem;
}
.header-sp .inner {
  height: 100%;
}

.header-sp__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  height: 8rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.header-sp__brand {
  width: 16.5rem;
  display: inline-block;
}

/* トグルボタン */
.header-sp__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 4rem;
  height: 2.6rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1101; /* ← drawer より上に重ねる */
}

.header-sp__menu-toggle-line {
  width: 100%;
  height: 0.1rem;
  background-color: #000000;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* 開閉アニメーション */
.header-sp__menu-toggle.is-active .header-sp__menu-toggle-line:nth-child(1) {
  transform: translateY(1.5rem) rotate(45deg);
}

.header-sp__menu-toggle.is-active .header-sp__menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-sp__menu-toggle.is-active .header-sp__menu-toggle-line:nth-child(3) {
  transform: translateY(-1rem) rotate(-45deg);
}

/* オーバーレイ（ヘッダーより下層） */
.header-sp__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

.header-sp__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ドロワー */
.header-sp__drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF0DD;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  z-index: 1000;
}

.header-sp__drawer.is-active {
  opacity: 1;
  visibility: visible;
}

/* 閉じるボタン（ドロワー内） */
.header-sp__drawer-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header-sp__drawer-close span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.4rem;
  background-color: #000000;
  border-radius: 0.2rem;
}

.header-sp__drawer-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.header-sp__drawer-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

/* ナビリンク */
.header-sp__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-sp__nav-item + .header-sp__nav-item {
  margin-top: 4rem;
}

.header-sp__nav-link {
  color: var(--black, #0E0E0E);
  font-family: Inter;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header-sp__nav-item:last-child .header-sp__nav-link {
  color: var(--main-1, #F8724D);
  font-size: 2.4rem;
  font-weight: bold;
}

.header {
  height: 8.8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 0.3rem solid #FFA34F;
  z-index: 9999;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header h1 {
  padding-left: 0.9rem;
}

.header__brand {
  width: 16.2rem;
  display: inline-block;
}

.header__nav-list {
  display: flex;
  gap: 4rem;
}

.header__nav-link {
  color: var(--black, #0E0E0E);
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* =========================================
  hero
========================================= */
.hero {
  position: relative;
  background: var(--bg, #FFF0DD);
  padding-top: 4.2rem;
  padding-bottom: 6.4rem;
  margin-top: 8.8rem;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 1.6rem;
    margin-top: 8rem;
    padding-bottom: 3.2rem;
  }
}
.hero .inner {
  position: relative;
}
.hero .inner::after {
  content: "";
  position: absolute;
  background: url(../img/fv.png) no-repeat center center/cover;
  width: 91.4rem;
  height: 61.5rem;
  bottom: -6.6rem;
  right: -20.6rem;
}
@media (max-width: 767px) {
  .hero .inner::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero .inner {
    padding-right: 0;
  }
}

.hero__fv {
  position: relative;
}
.hero__fv::after {
  content: "";
  position: absolute;
  height: 5.2rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF0DD 100%);
  width: 39rem;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hero__fv {
    top: -3rem;
  }
}

.hero__content {
  z-index: 2;
}

.hero__title {
  width: 92.7rem;
  padding-left: 0.6rem;
}
@media (max-width: 767px) {
  .hero__title {
    padding-left: 0;
    width: 38.2rem;
  }
}

.hero__badges {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .hero__badges {
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.7rem;
  }
}

.hero__badge {
  padding: 0.4rem 2.2rem;
  border: 4px solid var(--white, #FFF);
  background: var(--gradation, linear-gradient(112deg, #FCAB4E 7.92%, #FA724D 90.76%));
  color: var(--white, #FFF);
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-top: 0.6rem;
}
@media (max-width: 767px) {
  .hero__badge {
    font-size: 2.2rem;
    padding: 0rem 1rem;
    border: 0.2rem solid #FFF;
    padding-top: 0rem;
    padding-bottom: 0.3rem;
  }
}

.hero__badge-divider {
  color: var(--black, #0E0E0E);
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 1.25rem;
  margin-right: 2.3rem;
  position: relative;
  top: 0.9rem;
  left: 0.6rem;
}
@media (max-width: 767px) {
  .hero__badge-divider {
    font-size: 2.4rem;
    margin-left: 0.55rem;
    margin-right: 0.55rem;
    top: 0;
    left: 0;
  }
}

.hero__badge-divider02 {
  width: 48.2rem;
  display: inline-block;
  margin-left: 1.4rem;
  position: relative;
  top: -1.7rem;
}
@media (max-width: 767px) {
  .hero__badge-divider02 {
    margin-left: 0.3rem;
    width: 34.4rem;
    margin-top: 1.8rem;
  }
}

.hero__copy {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 5.12rem */
  margin-top: 2.9rem;
  margin-left: 0.8rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__copy {
    margin-left: 0;
    font-size: 1.9rem;
    text-align: center;
    margin-top: -1.1rem;
  }
}
.hero__copy span {
  display: inline-block;
  position: relative;
}
.hero__copy span::after {
  content: "";
  position: absolute;
  width: 42.3rem;
  height: 0.5rem;
  left: 0;
  bottom: 0;
  background-color: #F8724D;
}
@media (max-width: 767px) {
  .hero__copy span::after {
    width: 24.6rem;
    height: 0.5rem;
  }
}

.hero__cta-button {
  margin-left: 0.8rem;
  margin-top: 3.9rem;
  display: inline-flex;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  padding-top: 2.1rem;
  padding-bottom: 1.9rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.8rem;
  border: 2px solid var(--white, #FFF);
  background: linear-gradient(92deg, #00E158 0%, #019155 102.07%);
  box-shadow: 4px 4px 10px 0px #929292;
  color: var(--white, #FFF);
  font-size: 3.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .hero__cta-button {
    margin-left: 0;
    display: flex;
    width: 35.5rem;
    padding: 1.8rem 2.4rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 2.4rem;
    margin-top: 2.7rem;
    text-align: center;
  }
}

.hero__cta-button:hover,
.hero__cta-button:focus {
  opacity: 0.8;
}

.hero__offer {
  margin-top: 7.1rem;
  border-radius: 0.8rem;
  border: 3px solid var(--accent, #E7000F);
  background: #FFF;
  width: 45.3rem;
  height: 16.7rem;
  flex-shrink: 0;
  margin-left: 0.4rem;
}
@media (max-width: 767px) {
  .hero__offer {
    width: 35.8rem;
    height: 16.1rem;
    flex-shrink: 0;
    margin-top: 4.7rem;
    margin-left: 0;
  }
}

.hero__offer-ribbon {
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  stroke-width: 1px;
  stroke: var(--white, #FFF);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
  align-items: flex-end;
  left: -0.8rem;
}
@media (max-width: 767px) {
  .hero__offer-ribbon {
    padding-left: 0.9rem;
  }
}
.hero__offer-ribbon span {
  font-size: 2.4rem;
}

.hero__offer-ribbon-wrapper {
  position: relative;
  margin-top: -1.5rem;
}
.hero__offer-ribbon-wrapper::after {
  content: "";
  position: absolute;
  width: 30.25rem;
  height: 4.7rem;
  flex-shrink: 0;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  background: url(../img/Chance_bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .hero__offer-ribbon-wrapper::after {
    width: 30.25rem;
    height: 4.7rem;
    left: 50%;
  }
}

.hero__offer-text {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  margin-top: 3.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .hero__offer-text {
    font-size: 2rem;
  }
}
.hero__offer-text span {
  position: relative;
}
.hero__offer-text span::after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #FFC16A;
  border-radius: 50%;
  left: 71%;
  transform: translateX(-50%);
  top: -0.4rem;
}
.hero__offer-text span:last-of-type::after {
  display: none;
}
.hero__offer-text::after {
  content: "";
  position: absolute;
  background: url(../img/triangle.png) no-repeat center center/cover;
  width: 40.3rem;
  height: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.7rem;
}
@media (max-width: 767px) {
  .hero__offer-text::after {
    width: 32.5534rem;
    height: 2.1rem;
    background: url(../img/triangle_sp.png) no-repeat center center/cover;
    bottom: -1.6rem;
  }
}
.hero__offer-text span {
  color: var(--main-1, #F8724D);
  font-size: 4rem;
}
@media (max-width: 767px) {
  .hero__offer-text span {
    font-size: 3.2rem;
  }
}

.hero__offer-link {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: 0.7rem;
  display: block;
}
@media (max-width: 767px) {
  .hero__offer-link {
    font-size: 2rem;
    margin-top: 2.1rem;
  }
}

.hero__offer-link:hover,
.hero__offer-link:focus {
  opacity: 0.6;
}

.hero__image {
  position: relative;
  width: 48%;
  z-index: 1;
}

.hero__image-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__decor {
  position: absolute;
  top: -4rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  background-image: radial-gradient(#ffd84d 15%, transparent 16%);
  background-size: 1.6rem 1.6rem;
  transform: rotate(20deg);
  opacity: 0.5;
  pointer-events: none;
}

/* base ------------------------------------ */
.datsume-about {
  position: relative;
  font-size: 1rem; /* 10px */
  line-height: 1.8;
  padding-top: 6.4rem;
  padding-bottom: 11.3rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: url(../img/bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .datsume-about {
    background: url(../img/about-bg.jpg) no-repeat center center/cover;
    padding-top: 4.8rem;
    padding-bottom: 13.2rem;
  }
}
@media (max-width: 767px) {
  .datsume-about .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.datsume-about__title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0.3rem 0 #ff6a5c;
  margin-bottom: 2rem;
  width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .datsume-about__title {
    width: auto;
    margin-left: 4.2rem;
    margin-right: 1.6rem;
  }
}

.datsume-about__lead {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.09rem;
  position: relative;
  z-index: 2;
  margin-top: 5.1rem;
}
@media (max-width: 767px) {
  .datsume-about__lead {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 4rem;
  }
}

.datsume-about__highlight {
  color: var(--main-4, #F9604C);
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12rem;
  position: relative;
  margin-left: 1.2rem;
  margin-right: 3rem;
}
@media (max-width: 767px) {
  .datsume-about__highlight {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 0.9rem;
    display: inline-block;
    margin-bottom: 0.8rem;
  }
  .datsume-about__highlight span {
    transform: skew(-13deg);
    display: inline-block;
    background-color: #fff;
    border: 2px solid #0E0E0E;
    padding: 0.6rem 1.8rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .datsume-about__highlight span {
    font-size: 2rem;
    padding: 0.2rem 1.8rem;
    transform: skew(-21deg);
  }
  .datsume-about__highlight span:nth-of-type(1) {
    position: relative;
    left: -3.4rem;
    padding-right: 0;
  }
  .datsume-about__highlight span:nth-of-type(2) {
    position: relative;
    top: -0.3rem;
    left: 3.5rem;
    padding-left: 1.5rem;
    padding-right: 1.2rem;
  }
}
.datsume-about__highlight::after {
  content: "";
  position: absolute;
  background: url(../img/bg-section.png) no-repeat center center/cover;
  width: 54.9rem;
  height: 4.5rem;
  z-index: -1;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  margin-left: 1.9rem;
  margin-right: 4.6rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .datsume-about__highlight::after {
    display: none;
  }
}

.datsume-about__category-list {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .datsume-about__category-list {
    gap: 1.4rem;
    margin-left: 1.7rem;
    margin-right: 1.7rem;
  }
}

.datsume-about__category-item {
  width: 11.5rem;
  height: 11.5rem;
  flex-shrink: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .datsume-about__category-item {
    width: 10.9rem;
    height: 10.9rem;
  }
}
.datsume-about__category-item:nth-child(1) .datsume-about__category-image {
  width: 3.8rem;
}
.datsume-about__category-item:nth-child(2) .datsume-about__category-image {
  width: 3.7rem;
}
.datsume-about__category-item:nth-child(2) .datsume-about__category-label {
  font-size: 1.7rem;
  line-height: 1.2;
}
.datsume-about__category-item:nth-child(3) .datsume-about__category-image {
  width: 3.7rem;
}

.datsume-about__category-icon {
  border-radius: 50%;
  width: 100%;
  background: var(--gradation, linear-gradient(112deg, #FCAB4E 7.92%, #FA724D 90.76%));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
}

.datsume-about__category-icon img {
  width: 4rem;
  height: 4rem;
}

.datsume-about__category-label {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.datsume-about__sentence-wrapper {
  margin-top: 3.3rem;
}
@media (max-width: 767px) {
  .datsume-about__sentence-wrapper {
    margin-top: 3.6rem;
  }
}

.datsume-about__sentence {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 230%;
  letter-spacing: 0.09rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .datsume-about__sentence {
    font-size: 1.6rem;
    line-height: 257%;
  }
}
.datsume-about__sentence:nth-of-type(n+2) {
  margin-top: 1.1rem;
}
@media (max-width: 767px) {
  .datsume-about__sentence:nth-of-type(n+2) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .datsume-about__sentence {
    white-space: normal;
  }
}

.datsume-about__sentence--em {
  font-size: 2.4rem;
  color: var(--main-4, #F9604C);
  position: relative;
}
@media (max-width: 767px) {
  .datsume-about__sentence--em {
    font-size: 2rem;
    white-space: nowrap;
  }
}
.datsume-about__sentence--em::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.4rem;
  background: #FFA34F;
  bottom: -0.2rem;
  left: 0;
}

.datsume-about__sentence02 {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.09rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .datsume-about__sentence02 {
    font-size: 1.6rem;
    margin-top: 4.1rem;
  }
}
.datsume-about__sentence02 span {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .datsume-about__sentence02 span {
    font-size: 2rem;
  }
}

.datsume-about__keywords {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .datsume-about__keywords {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 1.2rem;
  }
}

.datsume-about__keyword {
  color: var(--main-1, #F8724D);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12rem;
  transform: skew(-13deg);
  display: inline-block;
  background-color: #fff;
  border: 2px solid #0E0E0E;
  padding: 0.3rem 1.3rem;
}
@media (max-width: 767px) {
  .datsume-about__keyword {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    padding: 0.3rem 1rem;
  }
}

.datsume-about__keyword-divider {
  font-size: 2.5rem;
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}
@media (max-width: 767px) {
  .datsume-about__keyword-divider {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    font-size: 2.3rem;
  }
}

.datsume-about__keyword--community {
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .datsume-about__keyword--community {
    margin-right: 1.3rem;
  }
}

/* ============================================
Section Split (切れ目) – dotted yellow top & orange gradient bottom
10px = 1rem
============================================= */
.section-split {
  position: relative;
  background: var(--gradation, linear-gradient(112deg, #FCAB4E 7.92%, #FA724D 90.76%));
  padding-top: 16rem; /* 60px top & bottom */
  padding-bottom: 9.6rem;
  text-align: center;
  margin-top: -11.4rem;
}
@media (max-width: 767px) {
  .section-split {
    padding-bottom: 5.3rem;
    padding-top: 7.5rem;
  }
}

/* dotted yellow area + V‑cut */
.section-split::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 100%;
  height: 11.4rem; /* 100px */
  background-color: #FFE389;
  /* create central V shape */
  clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
  z-index: 1;
}
@media (max-width: 767px) {
  .section-split::before {
    height: 7.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
    height: 4.3rem;
    top: -0.05rem;
  }
}

/* make sure inner contents sit above ::before */
.section-split__inner {
  position: relative;
  z-index: 2;
  max-width: 100rem; /* 1000px */
  margin: 0 auto;
  padding: 0 2rem;
}

.section-split__title {
  width: 60.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section-split__title {
    width: 30.1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
Section Split & Feature Cards
10px = 1rem
============================================= */
/* ---------- Feature list ---------- */
.section-split__feature-list {
  display: grid;
  gap: 3rem; /* 30px */
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); /* ≥250px */
  max-width: 120rem; /* 1200px */
  margin-top: 3.8rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .section-split__feature-list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

.feature-card {
  border: 3px solid var(--black, #0E0E0E);
  background: #FFDD6E;
  padding: 3.2rem 2.3rem; /* 40px 20px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 22rem; /* 220px */
}
@media (max-width: 767px) {
  .feature-card {
    min-height: auto;
    padding-top: 2.3rem;
    padding-bottom: 2.3rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.feature-card:nth-of-type(1) .feature-card__title {
  max-width: 23.9rem;
}
@media (max-width: 767px) {
  .feature-card:nth-of-type(2) {
    padding-top: 0;
  }
}
.feature-card:nth-of-type(2) .feature-card__title {
  max-width: 23.9rem;
}
@media (max-width: 767px) {
  .feature-card:nth-of-type(2) .feature-card__title {
    width: 19.8rem;
  }
}
@media (max-width: 767px) {
  .feature-card:nth-of-type(2) .feature-card__text {
    margin-top: 0;
  }
}
.feature-card:nth-of-type(3) .feature-card__title {
  max-width: 21.6rem;
}
.feature-card:nth-of-type(4) .feature-card__title {
  max-width: 16.8rem;
}
@media (max-width: 767px) {
  .feature-card:nth-of-type(4) {
    padding-top: 0.8rem;
  }
  .feature-card:nth-of-type(4) .feature-card__text {
    margin-top: 0;
  }
}

.feature-card__title {
  height: 6.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-card__text {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 2.56rem */
  margin-top: 1rem;
}

/* ---------- 基本 ---------- */
.plans-section {
  position: relative;
  overflow: hidden;
  padding-top: 6.7rem;
  background: url(../img/plan_bg.png) no-repeat center center/cover;
  padding-bottom: 20.1rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 11vw));
}
@media (max-width: 767px) {
  .plans-section {
    padding-top: 5.6rem;
    margin-top: -5px;
  }
}

/* 背景ドット + 右下から左上へのグレーの斜め陰影 */
.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 8px 8px;
  /* 斜めに切り抜き */
  mask-image: linear-gradient(135deg, transparent 35%, #000 35%);
  -webkit-mask-image: linear-gradient(135deg, transparent 35%, #000 35%);
  pointer-events: none;
}

/* ---------- タイトル ---------- */
.plans-section__title {
  text-align: center;
  color: var(--black, #0E0E0E);
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .plans-section__title {
    font-size: 4.8rem;
  }
}
.plans-section__title span {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .plans-section__title span {
    font-size: 3.2rem;
  }
}

/* ---------- カードリスト ---------- */
.plans-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  margin-top: 6.7rem;
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}
@media (max-width: 767px) {
  .plans-list {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    gap: 2.4rem;
  }
}

/* ---------- カード ---------- */
.plans-item {
  border-radius: 0.8rem;
  background-color: #fff;
}

.plans-item--course-01 {
  border: 3px solid #F8724D;
}
.plans-item--course-01 .plans-item__course {
  background-color: #F8724D;
}

/* コース別ヘッダーバー色変更 */
.plans-item--course-02 {
  border: 3px solid #FFA34F;
}
.plans-item--course-02 .plans-item__course {
  background-color: #FFA34F;
}
.plans-item--course-02 .plans-item__course-title {
  font-size: 2.8rem;
}

.plans-item--course-03 {
  border: 3px solid #FFC16A;
}
.plans-item--course-03 .plans-item__course {
  background-color: #FFC16A;
}
.plans-item--course-03 .plans-item__course {
  margin-bottom: 4.1rem;
}
@media (max-width: 767px) {
  .plans-item--course-03 .plans-item__course {
    margin-bottom: 2.4rem;
  }
}
.plans-item--course-03 .plans-item__price-row:nth-of-type(1) {
  padding-bottom: 4.7rem;
  border-bottom: 1px solid #BDBDBD;
}
@media (max-width: 767px) {
  .plans-item--course-03 .plans-item__price-row:nth-of-type(1) {
    padding-bottom: 2.1rem;
  }
}
.plans-item--course-03 .plans-item__price-row:nth-of-type(2) {
  margin-top: 1.9rem;
  padding-bottom: 1.9rem;
}

/* コース番号とタイトル行 */
.plans-item__course {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  margin-bottom: 1.6rem;
  color: #ffffff;
  height: 7.5rem;
  padding-left: 2.3rem;
}
@media (max-width: 767px) {
  .plans-item__course {
    height: 7rem;
    padding-left: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
  }
}

.plans-item__course-label {
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.plans-item__course-wrapper {
  flex-direction: column;
  display: flex;
}

.plans-item__course-number {
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 4.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  line-height: 1;
}

.plans-item__course-title {
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* ---------- 料金行 ---------- */
.plans-item__price-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}
.plans-item__price-row:nth-of-type(2) {
  margin-top: 0.9rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid #BDBDBD;
}
.plans-item__price-row:nth-of-type(3) {
  padding-top: 2.1rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #BDBDBD;
}

.plans-item__price-row:first-of-type {
  border-top: none;
}

.price-label {
  width: 5.6rem;
  height: 2.8rem;
  flex-shrink: 0;
  color: var(--white, #FFF);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  background: var(--accent, #E7000F);
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.3rem;
}
@media (max-width: 767px) {
  .price-label {
    padding-top: 0;
  }
}

.plans-item__price-value {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.plans-item__price-value small {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* ---------- テキスト情報 ---------- */
.plans-item__heading {
  margin-top: 2.4rem;
  margin-left: 1.1rem;
  margin-right: 1.1rem;
  color: var(--gray-1, #919191);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.plans-item__list {
  color: var(--black, #0E0E0E);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 2.56rem */
  margin-top: 0.4rem;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid #BDBDBD;
  margin-left: 1rem;
  margin-right: 1rem;
}
.plans-item__other {
  font-size: 1rem;
  display: block;
  line-height: 1.4;
  margin-top: 10px;
}

@media (max-width: 767px) {
  #plans-item-01-supports {
    border-bottom: none;
  }
}

.plans-item__list li + li {
  margin-top: 0.4rem;
}

/* ---------- CTA ---------- */
.plans-cta {
  text-align: center;
}

.plans-cta__note {
  display: inline-block;
  background: #e53935;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
}

.plans-cta__button {
  display: inline-block;
  background: #009944;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.2rem 4rem;
  border-radius: 0.4rem;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plans-cta__button:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.2);
}

#plans-item-02-supports, #plans-item-03-features {
  border-bottom: none;
}

/* Artifacts */
.free-trial-cta {
  position: relative;
  text-align: center;
  margin-top: -16rem;
}
@media (max-width: 767px) {
  .free-trial-cta {
    margin-top: -19rem;
  }
}

/* タグ */
.free-trial-cta__tag {
  width: 29rem;
  height: 4.7rem;
  display: flex;
  justify-content: center;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: 1px solid var(--white, #FFF);
  background: var(--accent, #E7000F);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-end;
  padding-bottom: 0.5rem;
  z-index: 3;
  position: relative;
}
.free-trial-cta__tag span {
  font-size: 2.4rem;
  position: relative;
  top: 0.3rem;
}
@media (max-width: 767px) {
  .free-trial-cta__tag span {
    font-size: 2.2rem;
  }
}

/* ボタン */
.free-trial-cta__button {
  padding-top: 0.7rem;
  display: inline-flex;
  width: 46.8rem;
  height: 8.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.8rem;
  border: 2px solid var(--white, #FFF);
  background: var(--green, linear-gradient(92deg, #00E158 0%, #019155 102.07%));
  box-shadow: 4px 4px 10px 0px #929292;
  color: var(--white, #FFF);
  font-size: 3.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* margin-top: -4rem; */
}

@media (max-width: 767px) {
  .free-trial-cta__button {
    padding-top: 0.7rem;
    width: 35.2rem;
    height: 7.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.free-trial-cta__button:hover,
.free-trial-cta__button:focus {
  opacity: 0.85;
}

/* 注意書き */
.free-trial-cta__note {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.6rem;
}

/* Artifacts */
/* セクション全体 */
.lecture-contents {
  position: relative;
  padding-top: 6.7rem;
  padding-bottom: 14.4rem;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .lecture-contents {
    padding-bottom: 9.1rem;
  }
}

/* タイトル */
.lecture-contents__title {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24rem;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .lecture-contents__title {
    font-size: 3.2rem;
  }
}
.lecture-contents__title::after {
  content: "";
  position: absolute;
  width: 6.2324rem;
  height: 7.7144rem;
  background: url(../img/head01.png) no-repeat center center/cover;
  top: 57%;
  transform: translateY(-50%);
  left: -7.7rem;
}
@media (max-width: 767px) {
  .lecture-contents__title::after {
    width: 5.9326rem;
    height: 7.676rem;
    left: -6.7rem;
    top: 68%;
  }
}
.lecture-contents__title::before {
  position: absolute;
  content: "";
  background: url(../img/head02.png) no-repeat center center/cover;
  width: 5.9327rem;
  height: 7.6009rem;
  flex-shrink: 0;
  top: 57%;
  transform: translateY(-50%);
  right: -7.7rem;
}
@media (max-width: 767px) {
  .lecture-contents__title::before {
    width: 5.9327rem;
    height: 7.676rem;
    top: 72%;
    right: -6.7rem;
  }
}
.lecture-contents__title span {
  font-size: 6.4rem;
}
@media (max-width: 767px) {
  .lecture-contents__title span {
    font-size: 4.8rem;
  }
}

/* 説明文 */
.lecture-contents__description {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 3.6rem */
  letter-spacing: 0.09rem;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .lecture-contents__description {
    margin-top: 4rem;
    font-size: 1.6rem;
    white-space: nowrap;
    margin-top: 3.3rem;
    line-height: 280%;
  }
}

.lecture-contents__emphasis {
  color: var(--main-1, #F8724D);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.12rem;
  position: relative;
}
@media (max-width: 767px) {
  .lecture-contents__emphasis {
    font-size: 2rem;
  }
}
.lecture-contents__emphasis::after {
  content: "";
  position: absolute;
  background: var(--sub, #FFDD6E);
  height: 0.5rem;
  width: 100%;
  bottom: -0.3rem;
  left: 0;
}
@media (max-width: 767px) {
  .lecture-contents__emphasis::after {
    bottom: -0.7rem;
  }
}

@media (max-width: 767px) {
  .lecture-contents__emphasis--sp::before {
    content: "";
    position: absolute;
    background: var(--sub, #FFDD6E);
    height: 0.4rem;
    width: 100%;
    bottom: 3.6rem;
    left: -0.3rem;
  }
  .lecture-contents__emphasis--sp::after {
    width: 34.2rem;
    height: 0.4rem;
    left: -29.1rem;
    bottom: -0.5rem;
  }
}

/* リストラッパー */
.lecture-contents__list-wrapper {
  max-width: 75.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.8rem;
  padding: 4.1rem 4.8rem;
  background: var(--bg, #FFF0DD);
  border-radius: 0.8rem;
  text-align: left;
  position: relative;
}
@media (max-width: 767px) {
  .lecture-contents__list-wrapper {
    padding: 1.4rem 2.5rem;
  }
}
.lecture-contents__list-wrapper::after {
  content: "";
  position: absolute;
  background: url(../img/bg03.png) no-repeat center center/cover;
  width: 9.9rem;
  height: 9.9rem;
  top: 2.7rem;
  right: -19.5rem;
}
@media (max-width: 767px) {
  .lecture-contents__list-wrapper::after {
    display: none;
  }
}
.lecture-contents__list-wrapper::before {
  content: "";
  position: absolute;
  background: url(../img/bg04.png) no-repeat center center/cover;
  bottom: 16.3rem;
  right: -35.5rem;
  width: 22.4rem;
  height: 26.25rem;
}
@media (max-width: 767px) {
  .lecture-contents__list-wrapper::before {
    display: none;
  }
}

.lecture-contents__item-title {
  font-weight: bold;
}
@media (max-width: 767px) {
  .lecture-contents__item-title {
    white-space: nowrap;
  }
}

.lecture-contents__inner {
  position: relative;
}
.lecture-contents__inner::after {
  content: "";
  position: absolute;
  background: url(../img/bg01.png) no-repeat center center/cover;
  width: 26rem;
  height: 24.2rem;
  top: 31.9rem;
  left: -4.5rem;
}
@media (max-width: 767px) {
  .lecture-contents__inner::after {
    display: none;
  }
}
.lecture-contents__inner::before {
  content: "";
  position: absolute;
  background: url(../img/bg02.png) no-repeat center center/cover;
  bottom: 2.1rem;
  left: -8.3rem;
  width: 15rem;
  height: 15rem;
}
@media (max-width: 767px) {
  .lecture-contents__inner::before {
    display: none;
  }
}

/* リスト */
.lecture-contents__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lecture-contents__item {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2.3rem;
}
@media (max-width: 767px) {
  .lecture-contents__item {
    display: block;
    font-size: 1.6rem;
    padding-left: 2rem;
    margin-bottom: 0.6rem;
    position: relative;
  }
}

.lecture-contents__item:last-child {
  margin-bottom: 0;
}

/* ドット */
.lecture-contents__dot {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  margin-right: 1.2rem;
  background-color: #FFA34F;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .lecture-contents__dot {
    display: inline-block;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 0.8rem;
    position: absolute;
    top: 0.3rem;
    left: -0.9rem;
  }
}

/* セクション全体 */
.support-section {
  position: relative;
  background: url(../img/bg-support.jpg) no-repeat center center/cover;
  text-align: center;
  padding-top: 9.5rem;
  padding-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .support-section {
    padding-top: 7.1rem;
    padding-bottom: 4.8rem;
    background: url(../img/support-bg_sp.jpg) no-repeat center center/cover;
  }
}

/* 上部カード -------------------- */
.support-section__card-top {
  border-radius: 2.4rem;
  padding-left: 19.5rem;
  padding-right: 19.5rem;
  background-color: #fff;
  padding-bottom: 6.4rem;
  padding-top: 10.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .support-section__card-top {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: 3.2rem;
    border-radius: 1.2rem;
    padding-top: 6.3rem;
  }
}

/* リボン見出し */
.support-section__title {
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 53.4rem;
  height: 9.7rem;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/support-head.png) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.9rem;
  display: flex;
  justify-content: center;
  padding-top: 0.8rem;
}
@media (max-width: 767px) {
  .support-section__title {
    font-size: 3.2rem;
    width: 32.8rem;
    height: 6.6rem;
    background: url(../img/support-head_sp.png) no-repeat center center/cover;
    top: -3.2rem;
    left: 52%;
  }
}

/* リボン影 */
.support-section__title::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0.8rem;
  width: calc(100% - 1.6rem);
  height: 0.4rem;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0.4rem;
  z-index: -1;
}

/* アイコンリスト */
.support-section__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.4rem;
  list-style: none;
}
@media (max-width: 767px) {
  .support-section__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.support-section__item {
  text-align: center;
}

.support-section__icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  padding-top: 2.1rem;
  padding-bottom: 2rem;
  background-color: #ffa33a;
  border-radius: 0.8rem;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  height: 100%;
  height: 21rem;
}
@media (max-width: 767px) {
  .support-section__icon-box {
    padding-top: 2rem;
    padding-bottom: 1.1rem;
    height: 19.7rem;
  }
}

.support-section__label {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .support-section__label {
    line-height: 1.2;
  }
}

.support-section__label-sub {
  font-size: 1.6rem;
}

.support-section__item--offline .support-section__icon-box {
  gap: 0.8rem;
}

/* アイコン */
.support-section__icon {
  width: 7.2rem;
}

/* ＋マーク -------------------- */
.support-section__plus {
  display: inline-block;
  margin-top: 4rem;
  margin-bottom: 5.5rem;
  font-size: 6rem;
  line-height: 1;
  color: #ff7e45;
  font-weight: 700;
  width: 6.6rem;
}
@media (max-width: 767px) {
  .support-section__plus {
    margin-top: 4rem;
    margin-bottom: 6.4rem;
  }
}

/* 下部カード -------------------- */
.support-section__card-bottom {
  padding-top: 5.6rem;
  padding-bottom: 4rem;
  padding-left: 10.2rem;
  padding-right: 9.8rem;
  background-color: #ffffff;
  border: 0.4rem solid #ff7e45;
  border-radius: 2.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .support-section__card-bottom {
    padding-top: 5.4rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2.4rem;
  }
}

/* 下部リボン見出し */
.support-section__subtitle {
  position: absolute;
  background: var(--gradation, linear-gradient(112deg, #FCAB4E 7.92%, #FA724D 90.76%));
  width: 43rem;
  height: 7.4rem;
  transform: rotate(-2.739deg);
  flex-shrink: 0;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -4.5rem;
  left: 6.4rem;
}
@media (max-width: 767px) {
  .support-section__subtitle {
    width: 27.1rem;
    height: 5.6rem;
    font-size: 2.4rem;
    left: 50%;
    top: -2.5rem;
    transform: translateX(-50%) rotate(-2.683deg);
  }
}

/* テキスト */
.support-section__text {
  color: var(--black, #0E0E0E);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 240%; /* 4.8rem */
  letter-spacing: 0.12rem;
  text-align: left;
}
@media (max-width: 767px) {
  .support-section__text {
    font-size: 1.6rem;
    line-height: 212%;
    text-align: center;
  }
}

/* 強調 */
.support-section__emphasis {
  color: #ff7e45;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .support-section__emphasis {
    font-size: 1.9rem;
    white-space: nowrap;
  }
}

/*============== recommend section ==============*/
.recommend {
  padding-bottom: 1.2rem;
  padding-top: 7rem;
  background: linear-gradient(180deg, #ff8d50 0%, #ffa345 100%);
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recommend {
    padding-bottom: 3.5rem;
    padding-top: 2.4rem;
  }
}
.recommend .inner {
  padding-left: 0;
  padding-right: 0;
}

.recommend__title {
  width: 68.1rem;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(2rem) rotate(0deg);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 767px) {
  .recommend__title {
    width: 36.3rem;
    margin-left: 1.9rem;
  }
}

.recommend__title.is-active {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  animation: sway 4s ease-in-out infinite alternate;
}

@keyframes sway {
  0% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-0.5rem) rotate(4deg);
  }
  100% {
    transform: translateY(0) rotate(-4deg);
  }
}
.recommend__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem 3.8rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .recommend__list {
    margin-top: 4rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem;
    gap: 2rem;
  }
}

.recommend__item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  background-color: #ffffff;
  padding-left: 2.4rem;
  padding-top: 3.4rem;
  color: #333333;
  width: 58.8rem;
  height: 12.5rem;
}
@media (max-width: 767px) {
  .recommend__item {
    height: auto;
    padding-top: 2.4rem;
    padding-left: 2.2rem;
    gap: 1.2rem;
    padding-right: 2.2rem;
    padding-bottom: 2.4rem;
  }
}
.recommend__item:last-of-type {
  width: 62.2rem;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .recommend__item {
    width: 50rem;
  }
}
.recommend__icon {
  flex-shrink: 0;
  width: 3.2rem;
}

.recommend__text {
  color: var(--black, #0E0E0E);
  font-family: Inter;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .recommend__text {
    font-size: 1.8rem;
    line-height: 120%;
  }
}
.recommend__text strong {
  color: var(--main-1, #F8724D);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .recommend__text strong {
    line-height: 120%;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .recommend__text {
    font-size: 1.4rem;
  }
}
/*-----------------------------
受講生の声／実績セクション
-----------------------------*/
.voice {
  padding-top: 17.7rem;
  padding-bottom: 8.8rem;
  background-color: #fcefdf;
  position: relative;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 8.6rem;
    padding-bottom: 7.4rem;
  }
}

/* dotted yellow area + V‑cut */
.voice::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 100%;
  height: 11.4rem; /* 100px */
  background: linear-gradient(180deg, #ffa345 0%, #ffa345 100%);
  /* create central V shape */
  clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
  z-index: 1;
}
@media (max-width: 767px) {
  .voice::before {
    height: 7.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
    height: 4.3rem;
    top: 0;
  }
}

/* 見出しバッジ */
.voice__title {
  max-width: 53.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* プレフィックス（小見出し） */
.voice__title-prefix {
  display: block;
  font-size: 1.6rem;
}

/* ボックスリスト */
.voice__list {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .voice__list {
    margin-top: 2.4rem;
  }
}

.swiper-pagination {
  bottom: 4.6rem !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #D9D9D9;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

/* 個別ボックス */
.voice__item {
  background-color: #fff;
  border-radius: 0.8rem;
  padding-top: 1.4rem;
  padding-bottom: 2.4rem;
  box-shadow: 1rem 1rem 0 0 #E8D5BD;
}
@media (max-width: 767px) {
  .voice__item {
    padding-top: 1.9rem;
  }
}

/* カラー別ボーダー */
.voice__item--startup {
  border: 0.5rem solid #F8724D;
}

.voice__item--freelance {
  border: 0.5rem solid #FFA34F;
}

.voice__item--side {
  border: 0.5rem solid #FFC16A;
}

/* タグラベル */
.voice__tag {
  width: 24.3rem;
  height: 5.8rem;
  flex-shrink: 0;
  border-radius: 0rem 9.9rem 9.9rem 0rem;
  color: var(--white, #FFF);
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.3rem;
}
@media (max-width: 767px) {
  .voice__tag {
    font-size: 2.4rem;
    height: 5.3rem;
    width: 20.3rem;
  }
}

/* タグ色をボーダー色と合わせる */
.voice__item--startup .voice__tag {
  background-color: #F8724D;
  width: 24.3rem;
}
@media (max-width: 767px) {
  .voice__item--startup .voice__tag {
    width: 20.3rem;
  }
}

.voice__item--freelance .voice__tag {
  background-color: #FFA34F;
  width: 29.9rem;
}

.voice__item--side .voice__tag {
  background-color: #FFC16A;
}

/* 見出しテキスト */
.voice__headline {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 3.2rem */
  text-align: center;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .voice__headline {
    font-size: 1.8rem;
    text-align: left;
    margin-left: 1.4rem;
  }
}

/* ヘッドライン色も合わせる */
.voice__item--startup .voice__headline {
  color: #F8724D;
}

.voice__item--freelance .voice__headline {
  color: #F8724D;
}

.voice__item--side .voice__headline {
  color: #F8724D;
}

/* 本文 */
.voice__text {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.88rem */
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .voice__text {
    font-size: 1.4rem;
  }
}
.voice__text strong {
  background: linear-gradient(transparent 83%, #FFDD6E 0%);
  display: inline;
  padding: 0 0px 0.2rem;
}

/* 署名 */
.voice__person {
  width: 9rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9.9rem;
  border: 1px solid #000;
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: auto;
  margin-right: 1.6rem;
  margin-top: 1.4rem;
}

/*=============================
  フローセクション
=============================*/
.step-flow {
  position: relative;
  background-color: #FFDD6E;
  padding-bottom: 10.4rem;
}
@media (max-width: 767px) {
  .step-flow {
    padding-top: 3.2rem;
    padding-bottom: 5.6rem;
  }
}
@media (max-width: 767px) {
  .step-flow .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* リスト全体 */
.step-flow__list {
  display: flex;
  margin-top: 7.8rem;
  position: relative;
  left: 1.8rem;
}
@media (max-width: 767px) {
  .step-flow__list {
    overflow-x: scroll;
    left: 0;
    padding: 0;
    margin-top: 0.8rem;
    margin-left: 1.6rem;
    padding-left: 0.2rem;
  }
}
.step-flow__list::after {
  content: "";
  position: absolute;
  background: url(../img/text_text.png) no-repeat center center/cover;
  width: 20.5rem;
  height: 11.2rem;
  top: -3.8rem;
  right: -3.4rem;
  z-index: 6;
}
@media (max-width: 767px) {
  .step-flow__list::after {
    display: none;
  }
}

/* 各ステップ共通 */
.step-flow__item {
  position: relative;
  height: 28.7rem;
}
@media (max-width: 767px) {
  .step-flow__item {
    height: 19.2rem;
  }
}
.step-flow__item:nth-of-type(1) {
  width: 34.5rem;
}
@media (max-width: 767px) {
  .step-flow__item:nth-of-type(1) {
    flex-shrink: 0;
  }
}
.step-flow__item:nth-of-type(2) {
  width: 33.9rem;
}
@media (max-width: 767px) {
  .step-flow__item:nth-of-type(2) {
    flex-shrink: 0;
  }
}
.step-flow__item:nth-of-type(3) {
  width: 33.3rem;
}
@media (max-width: 767px) {
  .step-flow__item:nth-of-type(3) {
    flex-shrink: 0;
  }
}
.step-flow__item:nth-of-type(4) {
  width: 33.9rem;
}
@media (max-width: 767px) {
  .step-flow__item:nth-of-type(4) {
    flex-shrink: 0;
  }
}

/* 番号 */
.step-flow__number {
  position: absolute;
  top: -2.4rem;
  left: -2.4rem;
  font-size: 4.8rem;
  font-weight: 700;
  color: #ffffff;
  -webkit-text-stroke: 0.4rem #ff6a5b;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: inline-block;
}
@media (max-width: 767px) {
  .step-flow__number {
    top: -2rem;
    left: 0;
    width: 6rem;
  }
}

/* 見出し */
.step-flow__heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 4;
  padding-top: 1.6rem;
  padding-left: 5px;
  width: auto !important;
  color: #F8724D;
  text-shadow:
    -2px -2px 0 white,
     0   -2px 0 white,
     2px -2px 0 white,
    -2px  0   0 white,
     2px  0   0 white,
    -2px  2px 0 white,
     0    2px 0 white,
     2px  2px 0 white;
}
@media (max-width: 767px) {
  .step-flow__heading {
    padding-top: 0;
    font-size: 1.8rem;
  }
}

/* テキスト */
.step-flow__text {
  z-index: 2;
  position: relative;
  color: var(--white, #ffffff);
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 2.24rem */
}

/* 吹き出し */
.step-flow__balloon {
  max-width: 71.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6.4rem;
}
@media (max-width: 767px) {
  .step-flow__balloon {
    padding-top: 0;
    margin-left: 1.4rem;
    margin-right: 1.6rem;
  }
}

.step-flow__item--01 {
  z-index: 5;
}
.step-flow__item--01::after {
  content: "";
  position: absolute;
  background: url(../img/step_bg01.png) no-repeat center center/cover;
  width: 34.5rem;
  height: 28.7rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-flow__item--01 .step-flow__number {
  width: 7.8rem;
  display: inline-block;
}
.step-flow__item--01 .step-flow__heading {
  width: 20.4rem;
}
.step-flow__item--01 .step-flow__text {
  padding-left: 3.2rem;
  padding-right: 6.9rem;
}
@media (max-width: 767px) {
  .step-flow__item--01 .step-flow__text {
    padding-left: 1.3rem;
    padding-left: 2.5rem;
    padding-right: 3.7rem;
  }
}

.step-flow__item--01 .step-flow__heading {
  margin-left: 0.7rem;
}
@media (max-width: 767px) {
  .step-flow__item--01 .step-flow__heading {
    width: 16rem;
  }
}
.step-flow__item--01 .step-flow__text {
  padding-left: 1.3rem;
  padding-right: 4.8rem;
  padding-top: 0.9rem;
}
@media (max-width: 767px) {
  .step-flow__item--01 .step-flow__text {
    padding-left: 2.7rem;
    padding-right: 3.5rem;
  }
}

.step-flow__item--02 {
  z-index: 4;
}
.step-flow__item--02::after {
  content: "";
  position: absolute;
  background: url(../img/step_bg02.png) no-repeat center center/cover;
  width: 33.9rem;
  height: 28.7rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-flow__item--02 .step-flow__number {
  width: 8.8rem;
}
.step-flow__item--02 .step-flow__heading {
  width: 12rem;
  margin-left: 3.5rem;
}
.step-flow__item--02 .step-flow__text {
  padding-left: 3.7rem;
  padding-right: 3.5rem;
  padding-top: 1rem;
}

.step-flow__item--03 {
  z-index: 3;
}
.step-flow__item--03::after {
  content: "";
  position: absolute;
  background: url(../img/step_bg03.png) no-repeat center center/cover;
  width: 33.3rem;
  height: 28.7rem;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
}
.step-flow__item--03 .step-flow__number {
  width: 8.9rem;
}
.step-flow__item--03 .step-flow__heading {
  width: 12.3rem;
  margin-left: 1.9rem;
}
.step-flow__item--03 .step-flow__text {
  padding-left: 2.3rem;
  padding-right: 3.8rem;
  color: #fff;
  padding-top: 1.3rem;
}

.step-flow__item--04::after {
  content: "";
  position: absolute;
  background: url(../img/step_bg04.png) no-repeat center center/cover;
  width: 33.9rem;
  height: 28.7rem;
  top: 50%;
  left: 43%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.step-flow__item--04 .step-flow__number {
  width: 9.1rem;
  position: relative;
  left: -3.7rem;
}
.step-flow__item--04 .step-flow__heading {
  width: 14.6rem;
  margin-left: 1.5rem;
}
.step-flow__item--04 .step-flow__text {
  color: #fff;
  padding-left: 1.9rem;
  padding-top: 1.2rem;
  z-index: 4;
  padding-right: 4.6rem;
}

@media (max-width: 767px) {
  .step-flow__list {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .step-flow__list .step-flow__item {
    width: 23.0817rem;
    padding-top: 4.1rem;
  }
  .step-flow__list .step-flow__item::after {
    width: 22.6802rem;
    height: 19.2013rem;
    left: 48%;
  }
  .step-flow__list .step-flow__item--01::after {
    width: 23.0817rem;
    left: 50%;
  }
  .step-flow__list .step-flow__item:nth-of-type(n+2) {
    margin-left: -1.6rem;
  }
}
@media (max-width: 767px) {
  .step-flow__list .step-flow__number {
    width: 6rem;
    top: -2.7rem;
    position: absolute;
    left: 0;
  }
}
@media (max-width: 767px) {
  .step-flow__list .step-flow__text {
    font-size: 1.2rem;
    padding-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .step-flow__list .step-flow__heading {
    margin-bottom: 0;
    height: 3rem;
    width: auto;
    margin-left: 1.7rem;
  }
  .step-flow__list .step-flow__heading img {
    height: 100%;
    width: auto;
  }
}

.step-flow__scroll {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 1.6rem;
}

/*==============================
  FAQセクション
==============================*/
.faq {
  padding-top: 9.4rem;
  padding-bottom: 14.4rem;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 8rem;
    padding-bottom: 9.2rem;
  }
}

/* タイトル */
.faq__title {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 3.2rem;
  }
}

/* 一覧ラッパー */
.faq__list {
  width: 100%;
  margin-top: 6.6rem;
  border-top: 1px solid #BDBDBD;
}
@media (max-width: 767px) {
  .faq__list {
    margin-top: 2.8rem;
  }
}

/* 各アイテム */
.faq__item {
  padding: 3.2rem;
  border-bottom: 0.1rem solid #BDBDBD;
}
@media (max-width: 767px) {
  .faq__item {
    padding-left: 1.2rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    padding-right: 0;
  }
}

/* Q / A 行 */
.faq__row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .faq__row {
    gap: 1.2rem;
  }
}

.faq__row + .faq__row {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .faq__row + .faq__row {
    margin-top: 1.8rem;
  }
}

/* Q・Aラベル */
.faq__label {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: var(--main-2, #FFA34F);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .faq__label {
    flex-shrink: 0;
  }
}

.faq__row--a .faq__label {
  background: var(--main-1, #F8724D);
}

/* テキスト */
.faq__text {
  color: var(--black, #0E0E0E);
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .faq__text {
    font-size: 1.59rem;
    line-height: 120%;
  }
}

/* Artifacts */
/* ============ Closing セクション ============ */
.closing {
  position: relative;
  background: url(../img/closing.jpg) no-repeat center center/cover;
  overflow: hidden;
  text-align: center;
  padding-top: 10.4rem;
  padding-bottom: 10.4rem;
}
@media (max-width: 767px) {
  .closing {
    padding-top: 4.9rem;
    padding-bottom: 5.6rem;
  }
}

/* ドット装飾 ------------------------------ */
.closing__decoration {
  position: absolute;
  pointer-events: none;
}

/* キャッチコピー ------------------------------ */
.closing__catch {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7.2rem;
}
@media (max-width: 767px) {
  .closing__catch {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.closing__catch .big {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .closing__catch .big {
    font-size: 4rem;
  }
}

.closing__catch-highlight {
  width: 29.6rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .closing__catch-highlight {
    width: 25.5rem;
    margin-bottom: 1.3rem;
  }
}

.closing__note {
  color: var(--white, #FFF);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 240%;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .closing__note {
    font-size: 1.9rem;
    margin-top: 5.4rem;
    line-height: 228%;
  }
}
.closing__note .big {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .closing__note .big {
    font-size: 2.3rem;
  }
}

.closing__note-emphasis {
  position: relative;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .closing__note-emphasis {
    font-size: 2.3rem;
  }
}
.closing__note-emphasis::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background: var(--sub, #FFDD6E);
  left: 0;
  bottom: -0.4rem;
}

.closing__subtext {
  width: 52.2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .closing__subtext {
    width: 33.9rem;
    margin-top: 3.2rem;
  }
}

/*==============================
  お問い合わせ／無料体験フォーム
==============================*/
.contact {
  padding-top: 13.5rem;
  padding-bottom: 13.9rem;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 8.8rem;
    padding-bottom: 10.4rem;
  }
}

/* 見出し */
.contact__title {
  margin-bottom: 5.4rem;
  color: var(--black, #0E0E0E);
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 3.2rem;
    line-height: 120%;
    margin-bottom: 6.7rem;
  }
}

/* フォーム全体 */
.contact-form {
  width: 100%;
  max-width: 53.6rem;
  margin-left: auto;
  margin-right: auto;
}

/* 入力グループ */
.contact-form__group {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-form__group {
    margin-bottom: 3.2rem;
  }
}

.contact-form__label {
  color: var(--black, #0E0E0E);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ラベル行 */
.contact-form__label-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
  font-weight: 700;
}

/* バッジ */
.contact-form__badge {
  color: var(--white, #FFF);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 3.6rem;
  height: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form__badge--required {
  background-color: #E7000F;
}

.contact-form__badge--optional {
  background-color: #808080;
}

/* テキストインプット */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  height: 5.1rem;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1rem;
  border: 0.1rem solid #cccccc;
  border-radius: 0.6rem;
  box-sizing: border-box;
}

.contact-form__textarea {
  min-height: 15.5rem;
  resize: vertical;
}

/* プライバシーポリシーエリア */
.contact-form__policy-box {
  width: 100%;
  height: 15.1rem;
  overflow-y: scroll;
  border: 0.1rem solid #bdbdbd;
  border-radius: 0.6rem;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .contact-form__policy-box {
    height: 16.7rem;
  }
}
/*
.contact-form__policy-img {
  width: 100%;
  height: auto;
  display: block;
}*/

/* チェックボックス行 */
.contact-form__checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}

.contact-form__checkbox-input {
  width: 2rem;
  height: 2rem;
  border: 1px solid #bdbdbd;
  border-bottom: 0.4rem;
  margin: 0;
}

.contact-form__checkbox-label {
  font-size: 1.8rem;
  color: var(--black, #0E0E0E);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* 送信ボタン */
.contact-form__submit {
  margin-top: 8rem;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7.4rem;
  width: 35.7rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.8rem;
  background: var(--gradation, linear-gradient(112deg, #FCAB4E 7.92%, #FA724D 90.76%));
}
@media (max-width: 767px) {
  .contact-form__submit {
    margin-top: 5.6rem;
  }
}

.contact-form__submit:hover,
.contact-form__submit:focus {
  opacity: 0.85;
}

/*==============================
  フッター
==============================*/
.footer {
  background: var(--main-2, #FFA34F);
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
  text-align: center;
}

/* プライバシーポリシーリンク */
.footer__policy-link {
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__policy-link:hover,
.footer__policy-link:focus {
  opacity: 0.8;
}

/* コピーライト */
.footer__copyright {
  color: var(--white, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding-top: 1.9rem;
    margin-top: 1rem;
  }
}

.btn-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.free-trial-cta .btn-hover, .closing .btn-hover {
  padding: 0 13px 13px 5px;
}

.btn-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%; /* 開始位置（画面外） */
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: flash-sweep 4s linear infinite; /* ← 速度調整：4s が1サイクル */
  overflow: hidden;
}

/* キーフレーム：最初の20%で待機→30%で一気に走る→残りは停止状態で次周まで待つ */
@keyframes flash-sweep {
  0%, 20% {
    left: -140%;
  }
  30% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}
#formWrap {
  padding-bottom: 10rem;
  padding-top: 14rem;
}
@media (max-width: 767px) {
  #formWrap {
    padding-top: 6rem;
  }
}
#formWrap .contact-form__confirm {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 0.6rem;
  border: 1px solid var(--gray-2, #BDBDBD);
  background: var(--white, #FFF);
  padding-top: 1.4rem;
  padding-bottom: 1.3rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
#formWrap .contact-form__lead {
  display: none;
}
#formWrap .contact-form__heading {
  color: var(--black, #0E0E0E);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7.2rem;
}
#formWrap .contact-form__confirm {
  text-align: left;
}
#formWrap .contact-form__back {
  display: none;
}
#formWrap .contact-form__confirm--policy {
  font-size: 1.8rem;
  display: inline-block;
  padding: 0;
  border: none;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
#formWrap .contact-form__confirm--policy img {
  width: 2rem;
  height: 2rem;
}

/* 修正調整分 */
@media screen and (min-width:768px) and ( max-width:1012px) {
  .feature-card__text .sp_n_2 {
    display: none;
  }
}

.datsume-about__sentence--em-center {
  position: relative;
}
.datsume-about__sentence--em-other {
  position: absolute;
  bottom: -85%;
  left: 0;
  font-size: 1rem;
}

.lecture-contents__emphasis-center {
  position: relative;
}
.lecture-contents__emphasis-other {
  position: absolute;
  bottom: -95%;
  left: 0;
  font-size: 1rem;
}

@media screen and ( max-width:768px) {
  .datsume-about__sentence--em-other {
    bottom: -95%;
    font-size: 0.8rem;
  }
  .lecture-contents__emphasis-other {
    bottom: -110%;
    font-size: 0.8rem;
  }
}