@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: var(--pure-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  body {
    line-height: 2.1;
  }
}
/* color */
:root {
  --main-green: #00ab51;
  --dark-green: #008b42;
  --orange: #f67a00;
  --btn-bink: #cd12a7;
  --background-bk: #3f3f3f;
  --pure-bk: #000;
  --pure-white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #efefef;
}
/* font */
:root {
  --ff-ja: "Noto Sans jp", sans-serif;
  --fz-main: 16px;
  --fw-main: 400;
  --fw-bold: 700;
  --lh-main: 1.5;
}
/* base */
body {
  color: var(--text-bk);
  font-family: var(--ff-ja);
  font-size: var(--fz-main);
  font-weight: var(--fw-main);
  line-height: var(--lh-main);
  background-color: var(--pure-white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* utility */
/* SPで非表示、PCで表示 */
.hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}
/* SPで表示、PCで非表示 */
.hidden-pc {
  display: block;
}
@media (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-tb {
  display: block;
}
@media (min-width: 1000px) {
  .hidden-tb {
    display: none;
  }
}

/* common ここから*/
.section__title--common {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: clamp(23px, 5vw, 32px);
  color: var(--pure-bk);
  line-height: var(--lh-main);
  text-align: center;
}

.c-ctaButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .c-ctaButtons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15.5px;
  }
}

.c-button {
  position: relative;
  overflow: visible;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
  text-decoration: none;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease,
    -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease,
    -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease,
    -webkit-box-shadow 0.2s ease;
  height: 70px;
  /* 厚み */
}
.c-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  border-radius: inherit;
  z-index: -1;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.c-button:active {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c-button:active::before {
  height: 0;
  bottom: 0;
}
.c-button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

.c-button--primary {
  background-color: var(--orange);
  -webkit-box-shadow: 0 5px 0 #ba6511;
  box-shadow: 0 5px 0 #ba6511;
  max-width: 300px;
  padding: 8px 10px 8px 10px;
  text-align: center;
  color: var(--pure-white);
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-button--primary {
    max-width: 451px;
    padding: 8px 20px 8px 20px;
    font-size: 18px;
  }
}

.c-button--secondary {
  background-color: var(--main-green);
  -webkit-box-shadow: 0 5px 0 var(--dark-green);
  box-shadow: 0 5px 0 var(--dark-green);
  position: relative;
  padding-left: 95px;
  max-width: 345px;
  color: var(--pure-white);
}
.c-button--secondary::after {
  content: "";
  position: absolute;
  width: 62.185px;
  height: 50.255px;
  display: inline-block;
  background-image: url(./images/cta__download-sp.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-button__icon--download::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 17px;
  background-image: url(./images/svg/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* バッジ：ボタン内で上にオーバーラップ（親が動けば一緒に動く） */
.c-badge {
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translate(-50%, -65%);
  transform: translate(-50%, -65%);
  pointer-events: none;
  z-index: 2;
  display: inline-block;
  padding: 6px 6px;
  border-radius: 999px;
  font-weight: var(--fw-bold);
  font-size: clamp(12px, 2.9vw, 14px);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.c-badge--info {
  background: #e3ff26;
  color: #4b4b4b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-align: center;
  border-radius: 40.525px;
  -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.15);
  width: 220px;
}
.c-badge--info::before {
  content: "";
  position: absolute;
  left: 100.462px;
  bottom: -7.293px;
  width: 13.171px;
  height: 9.118px;
  background-image: url("./images/svg/triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* header */
.header {
  height: 52px;
  position: fixed;
  top: 0;
  background-color: var(--pure-white);
  z-index: 100;
  width: 100vw;
}
@media (min-width: 768px) {
  .header {
    height: 72px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 52px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  width: 100vw;
  margin: 0 auto;
  height: 52px;
  position: relative;
}
@media (min-width: 768px) {
  .l-header__inner {
    max-width: 1000px;
    padding: 22px 20px;
    height: 72px;
  }
}
@media (min-width: 1000px) {
  .l-header__inner {
    max-width: 1440px;
    padding: 14px 40px;
  }
}

.l-header__right {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__right {
    display: block;
  }
}

.l-container {
  padding-inline: var(--space-20);
}

.c-logo {
  width: 156px;
}
@media screen and (min-width: 1200px) {
  .c-logo {
    width: 200px;
  }
}

.c-button-drawer {
  position: relative;
  width: 30px;
  height: 18px;
}
@media screen and (min-width: 1200px) {
  .c-button-drawer {
    display: none;
  }
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(1) {
  -webkit-transform: translate(0, 0) rotate(30deg);
  transform: translate(0, 0) rotate(30deg);
  top: 50%;
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(2) {
  display: none;
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(3) {
  -webkit-transform: translate(0, 0) rotate(-30deg);
  transform: translate(0, 0) rotate(-30deg);
  top: 50%;
}

.c-button-drawer__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #4f4f4f;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.c-button-drawer__bar:nth-child(1) {
  top: 0;
  left: 0;
}

.c-button-drawer__bar:nth-child(2) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-button-drawer__bar:nth-child(3) {
  bottom: 0;
  left: 0;
}

.c-chipList {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding-top: 32px;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 560px;
}
@media screen and (min-width: 768px) {
  .c-chipList {
    width: clamp(560px, 5vw, 600px);
    max-width: 600px;
  }
}

.c-chipList__item {
  min-width: 0;
  justify-self: center;
}

@media (min-width: 768px) {
  .c-chipList__item:nth-child(odd) {
    justify-self: start; /* 左寄せ（PC） */
  }

  .c-chipList__item:nth-child(even) {
    justify-self: end; /* 右寄せ（PC） */
  }
}

.c-chip {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--pure-white);
  line-height: var(--lh-main);
  font-size: clamp(14px, 2.5vw, 20px);
  padding: 10px;
  border-radius: 8px;
  background: var(--dark-green);
  font-weight: var(--fw-bold);
  max-width: min(100%, 520px);
  overflow-wrap: anywhere;
  /* ホバー／フォーカス：少しだけ明るくして可視化 */
  -webkit-transition: background-color 180ms ease, -webkit-box-shadow 180ms ease,
    -webkit-transform 120ms ease;
  transition: background-color 180ms ease, -webkit-box-shadow 180ms ease,
    -webkit-transform 120ms ease;
  transition: background-color 180ms ease, box-shadow 180ms ease,
    transform 120ms ease;
  transition: background-color 180ms ease, box-shadow 180ms ease,
    transform 120ms ease, -webkit-box-shadow 180ms ease,
    -webkit-transform 120ms ease;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (min-width: 1200px) {
  .p-header__nav-item {
    padding: 15px;
    border-bottom: 2px solid transparent;
    position: relative;
  }
}

.p-header__nav-item--contact {
  position: relative;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #202020;
  width: 167px;
  height: 48px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.25);
  box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.25);
  margin-left: 15px;
  transition: transform 0.2s ease;
}
.p-header__nav-item--contact:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1 !important;
}
@media (min-width: 1200px) {
  .p-header__nav-item::after {
    background-color: var(--main-green);
    display: inline-block;
    font-size: 32px;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: center top;
    width: 100%;
    transition: transform 0.3s ease-in-out; 
  }
  .p-header__nav-item:hover::after {
    transform: scale(1, 1);
  }
}

.p-header__nav-item--contact .p-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-right: 16px;
  text-decoration: none;
  border-radius: inherit;
}
.p-header__nav-item--contact::before {
  content: "";
  position: absolute;
  right: 11px;
  top: 52%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(./images/svg/send-icon.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.2s ease;
}
@media (min-width: 768px) {
  .p-header__nav-item--contact::before {
    width: 35px;
    height: 35px;
  }
}
.p-header__nav-item--contact .p-header__text {
  color: var(--pure-white);
  font-weight: var(--fw-bold);
  letter-spacing: 0.32px;
}

.p-header__text {
  color: #202020;
  font-weight: var(--fw-bold);
  letter-spacing: 0.32px;
}

.p-drawer__content {
  position: fixed;
  top: var(--space-80);
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
  padding-inline: var(--space-60);
  padding-block: var(--space-24);
  background-color: #e5faef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 55;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  overflow: visible !important;
}
@media screen and (min-width: 768px) {
  .p-drawer__content {
    padding-inline: var(--space-60);
    padding-block: var(--space-40);
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-drawer__content {
    display: none;
  }
}
.p-drawer__content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer-content__link--contact {
  /* レイアウト＋装飾 */
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  padding: var(--space-12) var(--space-30);
  color: #202020;
  background-color: transparent;
  -webkit-transition: color 0s;
  transition: color 0s;
}
.p-drawer-content__link--contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--light-gray);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 0;
}
.p-drawer-content__link--contact .p-drawer-content__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-drawer-content__link--contact:hover {
  color: #4f4f4f !important;
}
.p-drawer-content__link--contact:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer-content__scroll {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 120px;
  text-align: center;
  font-size: 20px;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__scroll {
    padding-top: 200px;
    max-width: 400px;
  }
}

.p-drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-drawer-content__menu {
    gap: 60px;
  }
}

.p-drawer-content__link {
  display: block;
  width: 100%;
  padding-block: var(--space-12);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}
.p-drawer-content__link:hover .p-drawer-content__text {
  opacity: 0.7;
}
.p-drawer-content__link:nth-child(5) .p-drawer-content__text {
  color: var(--pure-white);
  font-size: 18px;
}
@media (min-width: 768px) {
  .p-drawer-content__link:nth-child(5) .p-drawer-content__text {
    font-size: 30px;
  }
}
.p-drawer-content__link:nth-child(5) .p-drawer-content__text:hover {
  opacity: 1;
}

.p-drawer-content__text {
  color: #202020;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 768px) {
  .p-drawer-content__text {
    font-size: 30px;
    font-weight: var(--fw-bold);
  }
}

.p-hero {
  position: relative;
  overflow: hidden;
  --container-max: 1120px;
  --container-pad: 24px;
  --edge: max(0px, (100vw - var(--container-max)) / 2);
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.p-hero__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(615px, 94vw, 680px);
  background-color: #e5faef;
  clip-path: ellipse(145% 100% at 50% 0%);
  z-index: 1;
}
@media (min-width: 768px) {
  .p-hero__curve {
    height: clamp(630px, 60vw, 720px);
  }
}

.p-hero__bottom {
  position: absolute;
  top: clamp(550px, 83vw, 670px);
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--main-green);
  z-index: 0;
}
@media (min-width: 768px) {
  .p-hero__bottom {
    top: clamp(550px, 70vw, 582px);
  }
}

.p-hero__deco {
  position: absolute;
  z-index: 2;
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .p-hero__deco .p-hero__deco {
    display: block;
    --container-max: 1120px;
    --edge: max(0px, (100vw - var(--container-max)) / 2);
    width: clamp(180px, 22vw, 300px);
    aspect-ratio: 1/1;
    padding: clamp(12px, 1.8vw, 30px);
    border-radius: clamp(24px, 3vw, 40px);
    background-color: var(--pure-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-hero__deco img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (min-width: 1200px) {
  .p-hero__deco--left,
  .p-hero__deco--right {
    display: block;
    position: absolute;
    padding: 30px;
    background-color: var(--pure-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 40px;
  }
}

.p-hero__deco--left {
  width: 363.752px;
  height: 345.268px;
  left: calc(var(--edge) + var(--container-pad) - 200px);
  top: clamp(24px, 9vw, 115px);
  -webkit-transform: rotate(8.314deg);
  transform: rotate(8.314deg);
}
.p-hero__deco--left img {
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.p-hero__deco--right {
  width: 327.567px;
  height: 328.979px;
  -webkit-transform: rotate(-11.009deg);
  transform: rotate(-11.009deg);
  top: clamp(56px, 13vw, 170px);
  right: calc(var(--edge) + var(--container-pad) - 200px);
}
.p-hero__deco--right img {
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(115px, 15vw, 192px);
  text-align: center;
}

.p-hero__head {
  margin-inline: auto;
  max-width: 980px;
}

.p-hero__title {
  color: #006b2f;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.594px;
  font-size: clamp(26px, 5.5vw, 54px);
}

.p-hero__subtitle {
  margin-top: 32px;
  color: #006b2f;
  text-align: center;
  font-size: clamp(14px, 2.8vw, 22px);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  padding-top: 8px;
  padding-bottom: 6px;
  border-top: 3px solid #006b2f;
  border-bottom: 3px solid #006b2f;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-hero__ribbon {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .p-hero__ribbon {
    padding-top: 50px;
  }
}

.p-hero__ribbonText {
  display: inline-block;
  color: var(--pure-bk);
  text-align: center;
  font-weight: var(--fw-bold);
  font-size: clamp(16px, 3vw, 22px);
}
@media (min-width: 768px) {
  .p-hero__ribbonText {
    display: inline-block;
    color: var(--pure-bk);
    text-align: center;
    font-weight: var(--fw-bold);
  }
}

.p-hero__cta {
  margin-top: clamp(14px, 4vw, 24px);
}

.p-hero__ctaBtn {
  width: 100%;
}
@media (min-width: 768px) {
  .p-hero__ctaBtn {
    width: auto;
    min-width: 320px;
  }
}

.p-hero__lower {
  position: relative;
  padding-top: clamp(100px, 15vw, 168px);
  padding-bottom: 55px;
}
@media (min-width: 768px) {
  .p-hero__lower {
    padding-top: clamp(100px, 15vw, 168px);
    padding-bottom: 75px;
  }
}

.p-hero__lowerInner {
  margin-inline: auto;
  max-width: 725px;
  text-align: center;
}

.p-hero__sectionTitle {
  color: var(--pure-white);
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
  letter-spacing: 0.02em;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .p-hero__sectionTitle {
    padding-top: 40px;
  }
}

.u-header-nav {
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
@media (min-width: 768px) {
  .u-header-nav {
    height: 65px;
  }
}

/* Worries Section */
.p-worries {
  padding: 58px 0 0px;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-worries {
    padding: 60px 0 35px;
  }
}

.l-worries__inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 600px;
}
@media (min-width: 768px) {
  .l-worries__inner {
    padding-inline: 40px;
    max-width: 840px;
  }
}

.p-worries__title {
  text-align: center;
  color: var(--pure-bk);
  padding-top: 12px;
}

.p-worries__statistics {
  margin-top: 40px;
}

.p-worries__statisticsContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
  max-width: 409px;
}
@media (min-width: 768px) {
  .p-worries__statisticsContainer {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 100px) {
  .p-worries__statisticsContainer {
    max-width: 840px;
  }
}

.p-worries__statisticItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #cacaca;
  border-radius: 20px;
  background-color: var(--pure-white);
  min-height: 150px;
  flex: 1;
  max-width: 100%;
  height: 150px;
  gap: 5px;
}
@media (min-width: 1000px) {
  .p-worries__statisticItem {
    max-width: 242px;
    padding: 15px 34px;
    justify-content: space-between;
  }
}

.p-worries__statisticTitle {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 16px;
  color: #4e4e4e;
  text-align: center;
  line-height: var(--lh-main);
}
@media (min-width: 768px) {
  .p-worries__statisticTitle {
    font-size: 16px;
    text-align: center;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
}

.p-worries__statisticValue {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 36px;
  color: var(--bure-bk);
  text-align: center;
  line-height: var(--lh-main);
}
@media (min-width: 768px) {
  .p-worries__statisticValue {
    font-size: 45px;
    display: flex;
    align-items: baseline;
  }
}

.p-worries__statisticValue--medium {
  font-family: var(--ff-ja);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
}
@media (min-width: 768px) {
  .p-worries__statisticValue--medium {
    font-size: 45px;
    display: flex;
    height: 74px;
    justify-content: center;
  }
}

.p-worries__statisticValue--mediumlarge {
  font-family: var(--ff-ja);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
}
@media (min-width: 768px) {
  .p-worries__statisticValue--mediumlarge {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    height: 74px;
    justify-content: center;
    align-items: center;
  }
}

.p-worries__statisticUnit {
  font-family: var(--ff-ja);
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
}

.p-worries__statisticUnit--small {
  font-family: var(--ff-ja);
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-main);
}

.p-worries__note {
  font-family: var(--ff-ja);
  font-size: 14px;
  font-weight: var(--fw-main);
  color: var(--bure-bk);
  text-align: start;
}
@media (min-width: 1000px) {
  .p-worries__note {
    max-width: 840px;
    padding-left: 40px;
    padding-top: 8px;
    line-height: 1.8;
    font-size: 16px;
  }
}

.p-worries__simulation-container {
  padding: 40px 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-worries__simulation-container {
    padding: 40px 20px 0;
  }
}

.p-worries__simulation {
  background-color: var(--background-bk);
  border-radius: 20px;
  padding: 40px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-worries__simulation {
    margin: 0 auto;
  }
}

.p-worries__simulationText {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 18px;
  color: var(--pure-white);
  text-align: center;
  line-height: var(--lh-main);
  padding: 0 10px;
}
@media (min-width: 768px) {
  .p-worries__simulationText {
    font-size: 24px;
    padding: 0;
  }
}

.p-worries__simulationButton {
  width: 100%;
  max-width: 451px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-worries__simulationButton .c-button {
    width: 100%;
  }
}

.p-worries__image {
  max-width: 160px;
  height: 34px;
  margin: 0 auto;
}
.p-worries__image img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-worries__image {
    padding-top: 40px;
  }
}

/* Solution Section */
.p-solution {
  padding-top: 41px;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-solution {
    padding: 40px 0 40px;
  }
}

.l-solution__inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-solution__inner {
    padding-inline: 40px;
  }
}

.l-solution__wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .l-solution__wrapper {
    gap: 15px;
    justify-content: center;
    flex-direction: row;
    align-items: start;
  }
}

.p-solution__container {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 27.26px;
}

.p-solution__description {
  font-family: var(--ff-ja);
  font-weight: var(--fw-main);
  font-size: 16px;
  color: var(--bure-bk);
  text-align: center;
  line-height: 1.8;
  max-width: 600px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-solution__description {
    font-weight: var(--fw-bold);
  }
}

.p-solution__image {
  margin-top: 0px;
  width: 220px;
  height: auto;
  aspect-ratio: 26/33;
}
.p-solution__image img {
  width: 220px;
  height: auto;
}
@media (min-width: 768px) {
  .p-solution__image {
    width: 270px;
    height: auto;
    aspect-ratio: 26/33;
    margin-top: -75px;
  }
  .p-solution__image img {
    width: 270px;
    height: auto;
  }
}

/* CTA Section */
.p-cta {
  padding: 60px 0 0;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-cta {
    padding: 0;
  }
}

.l-cta__inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-cta__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1000px) {
  .l-cta__inner {
    padding-inline: 60px;
  }
}

.p-cta__content {
  background-color: #069847;
  border-radius: 20px;
  padding: 60px 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  position: relative;
  overflow: visible;
  box-shadow: 0 5px 14px rgba(8, 15, 52, 0.04);
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-cta__content {
    background-image: url(./images/cta__background-pc.webp);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    height: 329px;
    padding: 70px 25px 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
    max-width: 1120px;
    overflow: hidden;
  }
}
@media (min-width: 1000px) {
  .p-cta__content {
    background-position: center right;
    padding: 0 122px 0 151px;
    gap: 60px;
  }
}

.p-cta__textContainer {
  flex: 1;
  z-index: 1;
  max-width: 290px;
}
@media (min-width: 768px) {
  .p-cta__textContainer {
    max-width: none;
    padding-top: 32px;
  }
}

.p-cta__title {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 30px;
  color: var(--pure-white);
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 768px) {
  .p-cta__title {
    font-size: 34px;
    line-height: 1.35;
    margin-bottom: 13px;
  }
}

.p-cta__description {
  font-family: var(--ff-ja);
  font-weight: var(--fw-main);
  font-size: 16px;
  color: var(--pure-white);
  line-height: var(--lh-main);
  margin-top: 13px;
  max-width: 290px;
}
@media (min-width: 768px) {
  .p-cta__description {
    line-height: var(--lh-main);
    margin-bottom: 33px;
    max-width: none;
    margin-top: 13px;
    text-align: center;
  }
}

.p-cta__buttonContainer {
  display: flex;
  align-items: center;
  transform: translateY(-20px);
}
@media (min-width: 768px) {
  .p-cta__buttonContainer {
    display: flex;
    align-items: center;
    transform: translateY(-20px);
    justify-content: center;
  }
}

.c-button--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pure-bk);
  color: var(--pure-white);
  padding: 21px 46px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 18px;
  transform: translateY(34px);
  line-height: 1.3;
  box-shadow: 0 4px 8px rgba(114, 114, 114, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 290px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-button--cta {
    font-size: 18px;
    width: auto;
    line-height: 1;
    transform: translateY(0);
  }
}
.c-button--cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(114, 114, 114, 0.25);
}
.c-button--cta:active {
  transform: translateY(4px);
  box-shadow: none;
}
.c-button-cta--green {
  border-radius: 8px;
  background: #007236;
  box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.25);
  transform: translateY(0);
}
.c-button-cta--pink {
  border-radius: 8px;
  background: var(--btn-bink);
  box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.25);
  transform: translateY(0);
}
.c-button-cta--yellow {
  border-radius: 8px;
  background: #d36e02;
  box-shadow: 0 4px 8px 0 rgba(114, 114, 114, 0.25);
  transform: translateY(0);
}

.c-button--cta__label {
  white-space: nowrap;
  font-weight: var(--fw-bold);
}

.c-button--cta__label--pink {
}

.p-cta__imageContainer {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
  width: 291.09px;
  height: 235.24px;
  align-self: center;
}
@media (min-width: 768px) {
  .p-cta__imageContainer {
    width: auto;
    height: auto;
  }
}

.p-cta__image-picture {
  width: 290px;
  height: auto;
}
.p-cta__image-picture img {
  width: 290px;
}

@media (min-width: 768px) {
  .p-cta__image-picture {
    width: 100%;
    max-width: 327px;
    height: auto;
    box-shadow: none;
  }
  .p-cta__image-picture img {
    width: clamp(259px, 25vw, 350px);
    transform: translate(-2px, 9px);
  }
}

/* Program Section*/
.p-program {
  padding: 60px 0 0;
}

@media (min-width: 768px) {
  .p-program {
    padding: 80px 0 60px;
  }
}

.l-program__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .l-program__inner {
    padding: 0 60px;
  }
}

.p-program__container {
  width: 100%;
}

/* programヘッダー */
.p-program__header {
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-program__header {
    margin-bottom: 32px;
  }
}

.p-program__mainTitle {
  font-family: var(--ff-ja);
  font-size: 23px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  line-height: var(--lh-main);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .p-program__mainTitle {
    font-size: 32px;
  }
}

.p-program__subtitle {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  line-height: var(--lh-main);
}

@media (min-width: 768px) {
  .p-program__subtitle {
    font-size: 18px;
  }
}

.p-program__standardSection {
  border-radius: 20px;
  border: 4px solid #069847;
  background: linear-gradient(180deg, #d8ffeb 0%, #89ecb7 100%);
  display: flex;
  padding: 0 20px 60px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  margin: 32px auto 0;
}
@media (min-width: 1000px) {
  .p-program__standardSection {
    padding: 0 45px 53px 45px;
    max-width: 1120px;
  }
}

/* プランタイトルバッジ */
.p-program__planBadge {
  display: flex;
  justify-content: center;
}

.p-program__planBadgeText {
  background-color: var(--dark-green);
  color: var(--pure-white);
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-bold);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  line-height: var(--lh-main);
}

@media (min-width: 768px) {
  .p-program__planBadgeText {
    font-size: 18px;
    padding: 10px 32px;
  }
}

/* キャッチコピー */
.p-program__catchCopy {
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .p-program__catchCopy {
    margin-bottom: 40px;
  }
}

.p-program__catchTitle {
  margin-top: 38px;
}
.p-program__catchTitle img {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .p-program__catchTitle {
    width: 608.509px;
    height: 38.68px;
    margin-top: 38px;
  }
}

.p-program__catchDescription {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1.6;
  margin-top: 21px;
  line-height: var(--lh-main);
  padding-bottom: 0.3em;
}
@media (min-width: 768px) {
  .p-program__catchDescription {
    font-size: 18px;
    padding-top: 21px;
  }
}

span.p-program__catchDescription--green,
span.p-program__catchDescription--pink,
span.p-program__catchDescription--yellow {
  background-size: 100% 24px; /* モバイル用 */
  background-repeat: repeat;
  background-position: 0 21px;
}
@media (min-width: 768px) {
  span.p-program__catchDescription--green,
  span.p-program__catchDescription--pink,
  span.p-program__catchDescription--yellow {
    background-size: 100% 27px; /* 768px以上用 */
    background-position: 0 21px;
  }
}

span.p-program__catchDescription--green {
  background: linear-gradient(transparent 70%, #21ff00 70%);
}
span.p-program__catchDescription--pink {
  background-image: linear-gradient(transparent 70%, #ffd8f1 70%);
}
span.p-program__catchDescription--yellow {
  background: linear-gradient(transparent 70%, #ffc700 70%);
}

/* 説明文 */
.p-program__description {
  text-align: center;
}

.p-program__descriptionText {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-program__descriptionText {
    font-size: 16px;
  }
}

/* コースカード */
.p-program__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

@media (min-width: 768px) {
}
@media (min-width: 1000px) {
  .p-program__cards {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
  }
}

.p-program__card {
  background-color: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-program__card {
    flex: 0 1;
    max-width: 317px;
  }
}
@media (min-width: 1000px) {
  .p-program__card {
    flex: 0 1 317px;
    max-width: 317px;
  }
}

.p-program__cardContent {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1000px) {
  .p-program__cardContent {
    height: 100%;
    flex: 0;
  }
}

.p-program__cardHeader {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
@media (min-width: 1000px) {
  .p-program__cardHeader {
    justify-content: center;
    flex-direction: column;
  }
}

.p-program__cardTitle {
  font-family: var(--ff-ja);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  line-height: 1.2;
  flex: 1;
  width: 24px;
}
@media (min-width: 1000px) {
  .p-program__cardTitle {
    font-size: 24px;
    flex: 0;
    width: auto;
  }
}

.p-program__cardDetails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.p-program__cardTime {
  display: flex;
  align-items: center;
}
@media (min-width: 1000px) {
  .p-program__cardTime {
    padding-top: 17px;
  }
}

.p-program__cardTimeIcon {
  width: 24px;
  height: 24px;
  color: var(--pure-bk);
  flex-shrink: 0;
}

.p-program__cardTimeText {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .p-program__cardTimeText {
    font-size: 18px;
  }
}

.p-program__cardDescription {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-main);
  color: var(--pure-bk);
  line-height: 1.45;
  padding-top: 9px;
}

.p-program__cardFeatures {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 16px 8px;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 16px;
  flex: 0;
}

.p-program__cardFeaturesList {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-main);
  color: var(--pure-bk);
  line-height: 1.45;
}

.p-program__cardFeaturesItem {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.p-program__cardFeaturesItem:last-child {
  margin-bottom: 0;
}

.p-program__cardFeaturesItem::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--pure-bk);
  font-weight: var(--fw-bold);
}

/* 新入社員研修プランセクション */
.p-program__freshersSection {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 0 20px 53px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  border: 4px solid #e02abc;
  background: linear-gradient(180deg, #fff 0%, #ffd8f1 100%);
  margin: 38px auto 0;
}
@media (min-width: 768px) {
  .p-program__freshersSection {
    max-width: 1120px;
    margin: 38px auto 0;
    padding: 0 15px 53px 15px;
  }
}
@media (min-width: 1000px) {
  .p-program__freshersSection {
    padding: 0 60px 53px 60px;
  }
}

/* 新入社員研修用バッジ - ピンク/紫色 */
.p-program__planBadge--freshers .p-program__planBadgeText {
  background-color: #e12abd;
  color: var(--pure-white);
}
@media (min-width: 1000px) {
  .p-program__catchTitle--freshers {
    width: 644.976px;
    height: 37.6px;
  }
}

/* 教材画像 */
.p-program__materialsImage {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
  width: 283px;
  height: auto;
  aspect-ratio: 283/200;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-program__materialsImage {
    width: 516px;
    height: auto;
    margin: 28px auto 0;
  }
}

.p-program__materialsImage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 教材画像モーダル */
.p-program__modal {
  width: 80vw;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.js-modal {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.js-modal-open {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.js-modal-open:hover {
  transform: scale(1.05);
}

.p-program__modalContent {
  position: relative;
}

.p-program__modalClose {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 110;
}
@media (min-width: 768px) {
  .p-program__modalClose {
    top: 60px;
    right: -50px;
    width: 50px;
    height: 50px;
  }
}

.p-program__modalImage img {
  width: 322px;
  height: 460px;
}
@media (min-width: 768px) {
  .p-program__modalImage img {
    width: 480px;
    height: 650px;
  }
}

/* ダウンロードボタン */
.p-program__downloadButton {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .p-program__downloadButton {
    margin-top: 40px;
  }
}

/* カスタム研修プランセクション */
.p-program__customSection {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 4px solid #f4c700;
  background: linear-gradient(180deg, #f3ffbf 0%, #ffd86c 100%);
  display: flex;
  padding: 0 20px 53px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  margin: 40px auto 0;
  max-width: 1120px;
}

@media (min-width: 768px) {
  .p-program__customSection {
    padding: 0 60px 53px 60px;
  }
}

/* カスタムヘッダー */
.p-program__customHeader {
  display: flex;
  justify-content: center;
}

.p-program__customTitleWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* カスタムプラン用バッジ - オレンジ色 */
.p-program__planBadge--custom .p-program__planBadgeText {
  background-color: #ff6b00;
  color: var(--pure-white);
}

/* レーティング */
.p-program__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-program__ratingLabel {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
}
@media (min-width: 768px) {
  .p-program__ratingLabel {
    font-size: 18px;
  }
}

.p-program__stars {
  display: flex;
}

.p-program__star {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .p-program__star {
    width: 23.333px;
    height: 22.167px;
  }
}

/* カスタムプラン用タイトル */
@media (min-width: 1000px) {
  .p-program__catchTitle--custom {
    width: 794.866px;
    height: 38.8px;
  }
}

/* YouTube動画コンテナ */
.p-program__videoContainer {
  width: 280px;
  height: auto;
  aspect-ratio: 347/200;
}
@media (min-width: 1000px) {
  .p-program__videoContainer {
    width: 694px;
    height: 400px;
    aspect-ratio: 347/200;
  }
}

.p-program__videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-program__videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 動画プレースホルダー */
.p-program__videoPlaceholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
  background-color: var(--pure-white);
}

.p-program__videoPlaceholder:hover {
  opacity: 0.9;
}

.p-program__playButton {
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.p-program__playButton:hover {
  transform: scale(1.1);
}

.p-program__playIcon {
  width: 68px;
  height: 68px;
}
@media (min-width: 768px) {
  .p-program__playIcon {
    width: 80px;
    height: 80px;
  }
}

.p-program__videoText {
  font-family: var(--ff-ja);
  font-size: 14px;
  font-weight: 600;
  color: var(--pure-bk);
  text-align: center;
}

@media (min-width: 768px) {
  .p-program__videoText {
    font-size: 16px;
  }
}

/* Instructor */
.p-instructor {
  padding-top: 60px;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-instructor {
    padding-top: 80px;
  }
}

.l-instructor__inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 1120px;
}
@media (min-width: 768px) {
  .l-instructor__inner {
    padding-inline: 60px;
  }
}

.p-instructor__title {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-instructor__title {
    margin-bottom: 40px;
  }
}

.p-instructor__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1000px) {
  .p-instructor__container {
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* 講師カード */
.p-instructor__cardwrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-instructor__cardwrapper {
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .p-instructor__cardwrapper {
    flex-direction: row;
    gap: 25px;
    align-items: start;
    width: min(880px, 94vw, 1000px);
  }
}

.p-instructor__card {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-instructor__card {
    flex-direction: row;
    gap: 34px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .p-instructor__card {
    flex: 0 0 501px;
    max-width: 501px;
    gap: 12px;
    flex-direction: column;
  }
}

.p-instructor__cardImage {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  max-width: 335px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .p-instructor__cardImage {
    width: 100%;
    max-width: 501px;
  }
}
.p-instructor__cardImage img {
  width: 335px;
  height: auto;
}
@media (min-width: 1000px) {
  .p-instructor__cardImage img {
    width: 501px;
    height: 334px;
  }
}

.p-instructor__cardDescription {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-main);
  line-height: var(--lh-main);
  color: var(--pure-bk);
  letter-spacing: 0px;
  padding-top: 12px;
  width: 335px;
}
@media (min-width: 768px) {
  .p-instructor__cardDescription {
    padding-top: 0px;
    width: 501px;
  }
}
@media (min-width: 1000px) {
  .p-instructor__cardDescription {
    width: auto;
  }
}

/* 著書・活動情報 */
.p-instructor__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1000px) {
  .p-instructor__info {
    flex: 1;
    min-width: 0;
  }
}

/* 著書紹介 */
.p-instructor__books {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1000px) {
  .p-instructor__books {
    align-items: start;
    gap: 5px;
  }
}

.p-instructor__booksTitle {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  text-align: left;
  letter-spacing: -0.176px;
  line-height: var(--lh-main);
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 1000px) {
  .p-instructor__booksTitle {
    font-family: var(--ff-ja);
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--pure-bk);
    text-align: left;
    letter-spacing: -0.176px;
    line-height: var(--lh-main);
    padding-top: 0;
  }
}

.p-instructor__booksImages {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 5px;
}
@media (min-width: 768px) {
  .p-instructor__booksImages {
    gap: 30px;
  }
}
@media (min-width: 1000px) {
  .p-instructor__booksImages {
    padding-top: 0;
  }
}

.p-instructor__bookImage {
  width: 160px;
  height: 240px;
  object-fit: cover;
  border: 2px solid var(--pure-bk);
  border-radius: 4px;
}
.p-instructor__bookImage:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .p-instructor__bookImage {
    width: 201px;
    height: 300px;
  }
}
@media (min-width: 1000px) {
  .p-instructor__bookImage {
    width: min(162px, 55vw, 301px);
    height: auto;
    margin-top: 6px;
  }
}

.p-instructor__publisher {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.p-instructor__publisher img {
  width: 159px;
  height: 35px;
  aspect-ratio: 159/35;
  object-fit: contain;
}

/* 主な活動 */
.p-instructor__activity {
  display: flex;
  background: var(--light-gray);
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding-top: 32px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .p-instructor__activity {
    display: flex;
    flex-direction: column;
    background: var(--light-gray);
    display: flex;
    padding: 32px 140px 40px 140px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    margin-top: 40px;
  }
}
@media (min-width: 1000px) {
  .p-instructor__activity {
    align-items: flex-start;
    padding: 32px 0 40px;
  }
}

.p-instructor__activityHeader {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
@media (min-width: 1000px) {
  .p-instructor__activityHeader {
    max-width: 880px;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-instructor__activityTitle {
  font-family: var(--ff-ja);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  letter-spacing: -0.198px;
  line-height: var(--lh-main);
}

.p-instructor__activityNote {
  font-family: var(--ff-ja);
  font-size: 13px;
  font-weight: var(--fw-main);
  color: #1e1e1e;
  letter-spacing: 0.634px;
  line-height: 1.8;
}

/* 活動リンク */
.p-instructor__activeCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 24px;
}
@media (min-width: 768px) {
  .p-instructor__activeCards {
    gap: 8px;
    margin: 0 auto;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .p-instructor__activeCards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: initial;
    width: 880px;
    gap: 16px;
    padding-top: 23px;
  }
}

.p-instructor__activeCard {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 56px;
  border: 1px solid #1f1e1b;
  background-color: var(--pure-white);
}

.p-instructor__activeCard:hover {
  background-color: var(--light-gray);
  border-color: #c0c0c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.p-instructor__Link {
  border-radius: 8px;
  display: flex;
  padding: 10px 20px 5px 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
}
@media (min-width: 768px) {
  .p-instructor__Link {
    border-radius: 8px;
    display: flex;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
  }
}

.p-instructor__wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .p-instructor__wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
}

.p-instructor__linkLabel img {
  width: auto;
  height: 48px;
}
@media (min-width: 768px) {
  .p-instructor__linkLabel img {
    width: 79px;
    height: 40px;
  }
}

.p-instructor__linkLabel--youtube img {
  width: auto;
  height: 18px;
}
@media (min-width: 768px) {
  .p-instructor__linkLabel--youtube img {
    width: 26.4px;
    height: auto;
  }
}

.p-instructor__linkLabel--dime img {
  width: auto;
  height: 38px;
  aspect-ratio: 143/44;
  margin: 5px 0;
}
@media (min-width: 768px) {
  .p-instructor__linkLabel--dime img {
    height: 30px;
  }
}

.p-instructor__linkIcon {
  width: 16px;
  height: 16px;
}

.p-instructor__textarea {
}
@media (min-width: 768px) {
  .p-instructor__textarea {
    padding-top: 8px;
  }
}

.p-instructor__textarea--wide {
}
@media (min-width: 768px) {
  .p-instructor__textarea--wide {
    padding-top: 16px;
  }
}

.p-instructor__text {
  text-align: center;
  letter-spacing: 0.634px;
  font-size: 16px;
}

/* sns一覧 */
.p-instructor__socialNetworks {
  display: flex;
  flex-direction: column;
  padding: 24px 0 32px;
  width: 300px;
}
@media (min-width: 768px) {
  .p-instructor__socialNetworks {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 0;
    width: 300px;
    margin: 0 auto;
  }
}

.p-instructor__socialNetwork {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.p-instructor__snsLogo {
  /* height: 55px;
  width: auto;
  object-fit: contain; */
  height: 68px;
  width: auto;
  object-fit: contain;
}
.p-instructor__snsLogo:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .p-instructor__snsLogo {
    height: 68px;
    width: auto;
    object-fit: contain;
  }
}

/* Voice */
.p-voice {
  padding-top: 60px;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-voice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.l-voice__inner {
  padding-inline: 16px;
  margin: 0 auto;
  max-width: 1120px;
}
@media (min-width: 768px) {
  .l-voice__inner {
    padding-inline: 40px;
    margin: 0 auto;
    max-width: 1000px;
  }
}

.p-voice__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-voice__title {
    margin-bottom: 40px;
    text-align: start;
  }
}

.p-voice__description {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  line-height: 1.6;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-voice__description {
    margin-bottom: 20px;
  }
}

/* お客様の声リスト */
.p-voice__testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-voice__testimonials {
    flex-direction: row;
    gap: 25px;
  }
}

/* 個別の証言カード */
.p-voice__testimonial {
  flex: 1;
  min-width: 0;
}

.p-voice__testimonialContent {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
@media (min-width: 768px) {
  .p-voice__testimonialContent {
    padding: 28px 32px;
  }
}

/* ヘッダー部分 */
.p-voice__testimonialHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* ユーザー情報 */
.p-voice__userInfo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .p-voice__userInfo {
    gap: 16px;
  }
}

.p-voice__userAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 360px) {
  .p-voice__userAvatar {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 768px) {
  .p-voice__userAvatar {
    width: 60px;
    height: 60px;
  }
}
.p-voice__userAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice__userDetails {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .p-voice__userDetails {
    gap: 8px;
  }
}

.p-voice__userName {
  font-size: 18px;
  font-weight: 600;
  color: var(--pure-bk);
  letter-spacing: 0.048px;
  line-height: 1.33;
}
@media (min-width: 360px) {
  .p-voice__userName {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .p-voice__userName {
    font-size: 24px;
  }
}

.p-voice__userDescription {
  font-size: 14px;
  font-weight: var(--fw-main);
  color: var(--pure-bk);
  letter-spacing: 0px;
  line-height: var(--lh-main);
  word-break: break-all;
}
@media (min-width: 360px) {
  .p-voice__userDescription {
    word-break: normal;
  }
}
@media (min-width: 768px) {
  .p-voice__userDescription {
    font-size: 16px;
  }
}

/* 引用マーク */
.p-voice__quoteIcon {
  flex-shrink: 0;
  width: 24px;
  height: 21.5px;
}
@media (min-width: 360px) {
  .p-voice__quoteIcon {
    width: 28px;
    height: 25px;
  }
}
@media (min-width: 768px) {
  .p-voice__quoteIcon {
    width: 35.37px;
    height: 31.84px;
  }
}
.p-voice__quoteIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 感想テキスト */
.p-voice__testimonialText {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-main);
  color: #1e1e1e;
  letter-spacing: 0.634px;
  line-height: 1.8;
  word-break: break-all;
}

/* FAQ */
.p-faq {
  padding: 60px 0;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-faq {
    padding: 80px 0;
  }
}

.l-faq__inner {
  padding-inline: 16px;
  margin: 0 auto;
  max-width: 880px;
}
@media (min-width: 360px) {
  .l-faq__inner {
    padding-inline: 20px;
  }
}
@media (min-width: 768px) {
  .l-faq__inner {
    padding-inline: 60px;
  }
}

.p-faq__title {
  margin-bottom: 32px;
  letter-spacing: -0.352px;
}
@media (min-width: 768px) {
  .p-faq__title {
    margin-bottom: 40px;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-faq__item {
  border: 2px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: var(--gray);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .p-faq__question {
    gap: 16px;
    padding: 12px 16px;
  }
}

.p-faq__question:hover {
  background-color: #e5e5e5;
}

/* 質問アイコン（Q） */
.p-faq__questionIcon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .p-faq__questionIcon {
    width: 40px;
    height: 40px;
  }
}
.p-faq__questionIcon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 質問テキスト */
.p-faq__questionText {
  flex: 1;
  min-width: 0;
}
.p-faq__questionText span {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #202020;
  line-height: 1.6;
  letter-spacing: 0px;
  display: block;
}
@media (min-width: 768px) {
  .p-faq__questionText span {
    font-size: 18px;
  }
}

/* トグルアイコン（矢印） */
.p-faq__toggleIcon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #202020;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .p-faq__toggleIcon {
    width: 28px;
    height: 28px;
  }
}

.p-faq__toggleIcon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* アクティブ時の矢印回転 */
.p-faq__question[aria-expanded="true"] .p-faq__toggleIcon {
  transform: rotate(180deg);
}

/* 回答エリア */
.p-faq__answer {
  display: none;
  padding: 20px 16px;
  background-color: var(--pure-white);
  gap: 12px;
  animation: fadeIn 0.3s ease;
}
@media (min-width: 768px) {
  .p-faq__answer {
    padding: 24px 16px;
    gap: 16px;
  }
}

/* アクティブ時に表示 */
.p-faq__item.is-active .p-faq__answer {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-faq__toggleIcon.is-active svg {
  transform: rotate(180deg);
}

/* 回答アイコン（A） */
.p-faq__answerIcon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .p-faq__answerIcon {
    width: 40px;
    height: 40px;
  }
}
.p-faq__answerIcon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 回答テキスト */
.p-faq__answerText {
  flex: 1;
  min-width: 0;
}
.p-faq__answerText p {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  line-height: 1.6;
  letter-spacing: 0px;
  margin: 0;
}
@media (min-width: 768px) {
  .p-faq__answerText p {
    font-size: 18px;
  }
}

/* 回答内のリスト */
.p-faq__answerText ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
  list-style-type: disc;
}
.p-faq__answerText li {
  font-family: var(--ff-ja);
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  line-height: 1.6;
  letter-spacing: 0px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .p-faq__answerText li {
    font-size: 18px;
  }
}

/* flexibleForm */
.p-flexibleForm {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .p-flexibleForm {
    padding-bottom: 80px;
  }
}

.p-flexibleForm__inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-flexibleForm__inner {
    padding-inline: 60px;
    max-width: 1120px;
  }
}

.p-flexibleForm__subtitle {
  padding-top: 20px;
  font-weight: var(--fw-bold);
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
  color: var(--orange);
}

.p-flexibleForm_wrapper {
  border: 5px solid var(--orange);
  padding: 30px 20px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .p-flexibleForm_wrapper {
    padding: 40px 30px;
  }
}

.p-flexibleForm__textBox {
  max-width: 450px;
  margin: 0 auto;
}

.p-flexibleForm__list {
  padding: 20px 16px;
  position: relative;
  background-color: var(--orange);
  margin-top: 20px;
  border-radius: 10px;
}

.p-flexibleForm__text {
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--pure-white);
}
@media (min-width: 768px) {
  .p-flexibleForm__text {
    padding-left: 36px;
    font-size: 18px;
  }
}

.p-flexibleForm__text::before {
  content: "■";
  position: absolute;
  left: 16px;
  color: var(--pure-white);
  font-weight: var(--fw-bold);
}
@media (min-width: 768px) {
  .p-flexibleForm__text::before {
    left: 28px;
  }
}

.p-flexibleForm__discription {
  text-align: center;
  padding-top: 20px;
  font-weight: var(--fw-bold);
  color: var(--orange);
  font-size: 18px;
}

.p-flexibleForm__buttonBlock {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (min-width: 768px) {
  .p-flexibleForm__buttonBlock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }
}

.p-flexibleForm__contact-button {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-flexibleForm__contact-button {
    justify-self: flex-end;
    margin: 0;
  }
}

.c-button--white {
  border-radius: 8px;
  border: 2px solid var(--main-green);
  background-color: var(--pure-white);
  color: var(--main-green);
  -webkit-box-shadow: 0 5px 0 var(--dark-green);
  box-shadow: 0 5px 0 var(--dark-green);
  width: clamp(270px, 32vw, 320px);
  font-size: clamp(18px, 2vw, 28px);
}

.p-flexibleForm__requestDocument-button {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-flexibleForm__requestDocument-button {
    justify-self: flex-start;
    margin: 0;
  }
}

.c-button--cta-green {
  background-color: var(--main-green);
  color: var(--pure-white);
  width: clamp(270px, 32vw, 320px);
  -webkit-box-shadow: 0 5px 0 var(--dark-green);
  box-shadow: 0 5px 0 var(--dark-green);
  font-size: clamp(18px, 2vw, 28px);
}

/* contact */
.p-contact {
  padding: 60px 0 60px;
  background-color: var(--light-gray);
}
@media (min-width: 768px) {
  .p-contact {
    padding: 80px 0 80px;
  }
}

.l-contact__inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 760px;
}
@media (min-width: 768px) {
  .l-contact__inner {
    padding-inline: 40px;
  }
}

/* フォームタイトル */
.content_title h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
@media (min-width: 768px) {
  .content_title h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* フォームラッパー */
.content_form_wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--pure-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
@media (min-width: 768px) {
  .content_form_wrapper {
    padding: 40px;
  }
}

/* 各入力項目 */
.input_unit {
  margin-bottom: 25px;
}

/* ラベル */
.form_input_label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

/* 必須マーク */
.form_input_label.required::after {
  content: "*";
  color: #555;
  margin-left: 5px;
}

/* 入力フィールド共通 */
.content_form_wrapper input[type="text"],
.content_form_wrapper input[type="email"],
.content_form_wrapper input[type="tel"],
.content_form_wrapper select,
.content_form_wrapper textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: var(--pure-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.content_form_wrapper input:focus,
.content_form_wrapper select:focus,
.content_form_wrapper textarea:focus {
  border-color: #6db36d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(109, 179, 109, 0.1);
}

/* プレースホルダー */
.content_form_wrapper ::placeholder {
  color: #aaa;
  opacity: 1;
}

/* セレクトボックスの矢印 */
.content_form_wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

/* チェックボックス */
.checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.checkbox_wrapper:hover {
  background-color: #f7f7f7;
}

.checkbox_wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #6db36d;
  cursor: pointer;
}

.checkbox_wrapper label {
  font-weight: normal;
  color: #333;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
}

/* 送信ボタン */
.submit input[type="submit"] {
  width: 100%;
  background-color: #6db36d;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, transform 0.2s;
}

.submit input[type="submit"]:hover {
  background-color: #5a9e5a;
  transform: translateY(-2px);
}

.submit input[type="submit"]:active {
  transform: translateY(0);
}

/* MYASPのデフォルトレイアウトをリセット */
.my_column.my_left,
.my_column.my_right {
  width: 100%;
  float: none;
}

.label_frame {
  text-align: left;
}

/* Footer Section */
.l-footer {
  background-color: #4f4f4f;
  padding: 60px 40px;
}

@media (min-width: 768px) {
  .l-footer {
    padding: 40px 60px;
  }
}
@media (min-width: 1000px) {
  .l-footer {
    padding: 40px 80px;
  }
}

.l-footer__inner {
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .l-footer__inner {
    max-width: 1120px;
    padding: 0 20px;
  }
}

.p-footer__container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .p-footer__container {
    justify-content: space-between;
    align-items: flex-start;
    width: 800px;
    height: 171px;
  }
}
@media (min-width: 1200px) {
  .p-footer__container {
    width: 1000px;
  }
}

/* Left Section: Logo and Policy */
.p-footer__topSection {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-footer__topSection {
    flex-direction: column;
    width: clamp(600px, 75vw, 1000px);
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .p-footer__topSection {
    justify-content: space-between;
    padding-top: 0;
  }
}

.p-footer__logoSection {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .p-footer__logoSection {
    gap: 40px;
  }
}

.p-footer__logoRow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-footer__logo {
  width: 200px;
  height: 50px;
}
.p-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .p-footer__logo {
    width: 200px;
    height: 50px;
  }
}

.p-footer__logoImage {
  width: 100%;
  height: 100%;
}
.p-footer__logoImage img {
  width: 200px;
  height: 50px;
}
@media (min-width: 768px) {
  .p-footer__logoImage img {
    width: 200px;
    height: 50px;
  }
}

.p-footer__bottomSection {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .p-footer__bottomSection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: clamp(600px, 75vw, 1000px);
    padding-top: 23px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .p-footer__bottomSection {
    padding-top: 0;
  }
}

.p-footer__policyContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .p-footer__policyContainer {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .p-footer__policyTextContainer {
    margin-bottom: 0px;
    padding-top: 0;
  }
}

.p-footer__policyLink {
  font-size: 12px;
  color: var(--pure-white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__policyLink:hover {
  opacity: 0.7;
}

.p-footer__copyrightContainer {
  display: flex;
  align-items: center;
  gap: 2px;
}

.p-footer__copyrightIcon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__copyrightText {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #bdb9b9;
}

/* Right Section: Navigation Links and Social */
.p-footer__linksSection {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-footer__linksSection {
    gap: 27px;
  }
}

.p-footer__linksRow {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  padding-top: 40px;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .p-footer__linksRow {
    gap: 20px;
    flex-direction: row;
    padding-top: 23px;
    justify-content: flex-start;
  }
}
@media (min-width: 1000px) {
  .p-footer__linksRow {
    gap: 40px;
  }
}

.p-footer__link {
  font-family: var(--ff-ja);
  font-weight: var(--fw-bold);
  font-size: 16px;
  color: var(--pure-white);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.p-footer__link:hover {
  opacity: 0.7;
}

.p-footer__socialContainer {
  display: flex;
  justify-content: center;
  width: 280px;
  height: auto;
}
@media (min-width: 768px) {
  .p-footer__socialContainer {
    width: 300px;
  }
}

.p-footer__socialNetworks {
}

.p-footer__socialNetwork {
  display: flex;
  gap: 18px;
  width: 280px;
}
@media (min-width: 768px) {
  .p-footer__socialNetwork {
    gap: 10px;
    justify-content: flex-start;
    width: 300px;
  }
}
@media (min-width: 1000px) {
  .p-footer__socialNetwork {
    gap: 8px;
  }
}

.p-footer__socialIconContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__socialIconContainer:hover {
  opacity: 0.7;
}

.p-footer__snsLogo {
  width: auto;
  height: 68px;
}

/* Privacy Policy Page Styles */
.privacy {
  min-height: 100vh;
  padding: 100px 0 60px;
  background-color: var(--pure-white);
}
@media (min-width: 768px) {
  .privacy {
    padding: 120px 0 80px;
  }
}

.privacy__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .privacy__inner {
    padding: 0 40px;
  }
}

.privacy__title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--pure-bk);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--main-green);
}
@media (min-width: 768px) {
  .privacy__title {
    font-size: 36px;
    margin-bottom: 60px;
    padding-bottom: 24px;
  }
}

.privacy__content {
  line-height: 1.8;
}

.privacy__intro {
  font-size: 14px;
  color: #202020;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #e5faef;
  border-radius: 8px;
  border-left: 4px solid var(--main-green);
}
@media (min-width: 768px) {
  .privacy__intro {
    font-size: 16px;
    padding: 24px;
    margin-bottom: 50px;
  }
}

.privacy__section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .privacy__section {
    margin-bottom: 50px;
  }
}

.privacy__section-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--main-green);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5faef;
}
@media (min-width: 768px) {
  .privacy__section-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

.privacy__text {
  font-size: 14px;
  color: #202020;
  line-height: 1.8;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .privacy__text {
    font-size: 15px;
    line-height: 1.9;
  }
}

.privacy__list {
  font-size: 14px;
  color: #202020;
  line-height: 1.8;
  padding-left: 0;
  margin-left: 0;
  counter-reset: item;
  list-style: none;
}
@media (min-width: 768px) {
  .privacy__list {
    font-size: 15px;
  }
}

.privacy__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  counter-increment: item;
}
.privacy__list-item::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-green);
  font-weight: var(--fw-bold);
}
@media (min-width: 768px) {
  .privacy__list-item {
    padding-left: 32px;
  }
}

.privacy__list--nested {
  margin-left: 0;
  padding-left: 0;
}

.privacy__list--nested > .privacy__list-item {
  padding-left: 32px;
}
@media (min-width: 768px) {
  .privacy__list--nested > .privacy__list-item {
    padding-left: 36px;
  }
}

.privacy__sublist {
  list-style: none;
  counter-reset: subitem;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 0;
}

.privacy__sublist-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  counter-increment: subitem;
  font-size: 14px;
  color: #202020;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .privacy__sublist-item {
    font-size: 15px;
    padding-left: 32px;
  }
}

.privacy__sublist-item::before {
  content: counter(subitem) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f4f4f;
  font-weight: 500;
}

.privacy__sublist--level3 {
  counter-reset: level3;
  margin-top: 10px;
  margin-left: 0;
  padding-left: 0;
}

.privacy__sublist--level3 > .privacy__sublist-item {
  counter-increment: level3;
}

.privacy__sublist--level3 > .privacy__sublist-item::before {
  content: counter(level3) ".";
}

.privacy__sublist--level4 {
  counter-reset: level4;
  margin-top: 8px;
  margin-left: 0;
  padding-left: 0;
}

.privacy__sublist--level4 > .privacy__sublist-item {
  counter-increment: level4;
  font-size: 13px;
}
@media (min-width: 768px) {
  .privacy__sublist--level4 > .privacy__sublist-item {
    font-size: 14px;
  }
}

.privacy__sublist--level4 > .privacy__sublist-item::before {
  content: counter(level4) ".";
}

.privacy__end {
  text-align: right;
  font-size: 14px;
  color: #202020;
  margin-top: 50px;
  font-weight: var(--fw-bold);
}
@media (min-width: 768px) {
  .privacy__end {
    font-size: 16px;
    margin-top: 60px;
  }
}

.p-privacy__contactForm {
  color: var(--main-green);
}

.p-privacy__contactForm:hover {
  border-bottom: 1px solid var(--main-green);
}

/* page-top */
.page-top {
  position: fixed;
  width: min(calc(50 / 375 * 100%), 50px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 20;
  cursor: pointer;
  transform: translate(-50%, -50%);
  right: 0px;
  bottom: 30px;
}
@media (min-width: 1000px) {
  .page-top {
    width: 50px;
  }
}

.page-top img {
  width: 40px;
  height: 40px;
}
@media (min-width: 1000px) {
  .page-top img {
    width: 60px;
    height: 60px;
  }
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top__bg {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background-color: var(--pure-white);
  box-shadow: 0px 0px 5px 2px #cccccc;
  transform: translate(-50%, -50%);
  bottom: -20px;
  right: -10px;
  width: 40px;
  height: 40px;
}
@media (max-width: 360px) {
  .page-top__bg {
    right: -12px;
  }
}
@media (min-width: 768px) {
  .page-top__bg {
    bottom: -20px;
    right: -10px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1000px) {
  .page-top__bg {
    bottom: -30px;
    right: -34px;
    width: 60px;
    height: 60px;
  }
}
