:root {
  --color-primary: #008632;
  --color-primary-dark: #057331;
  --color-primary-deep: #003f23;
  --color-primary-pale: #f2faf5;
  --color-secondary: #dcefe4;
  --color-accent: #f7a64d;
  --color-text: #17261f;
  --color-text-sub: #59645f;
  --color-bg: #ffffff;
  --color-border: #d5ded9;
  --color-white: #ffffff;
  --font-jp: "Noto Sans JP", "BIZ UDGothic", "Yu Gothic", sans-serif;
  --font-en: "Outfit", sans-serif;
  --second-font-family: 'Inter', sans-serif;
  --container-max: 1180px;
  --container-narrow: 980px;
  --section-space: 110px;
  /* SPフォント用の可変幅。430px（実機の最大幅）で拡大を止める */
  --sp-vw: min(100vw, 430px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}


.br-sp {
  display: none;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 8px 16px;
  color: var(--color-white);
  background: var(--color-primary-deep);
  transform: translateY(-150%);
}

.c-skip-link:focus {
  transform: none;
}

.l-container {
  width: min(calc(100% - 64px), var(--container-max));
  margin-inline: auto;
}

.l-container--narrow {
  max-width: var(--container-narrow);
}

.l-container--wide {
  max-width: 1220px;
}

.c-section-title {
  margin-bottom: 24px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
}

.c-section-lead {
  margin-bottom: 54px;
  color: var(--color-text-sub);
  font-size: 19px;
  line-height: 2;
  text-align: center;
  font-weight: 500;
}

.c-pill {
  display: table;
  margin: 0 auto 24px;
  padding: 5px 22px;
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 999px;
  font-weight: 800;
}

.ff-second {
  font-family: var(--second-font-family);
}
.color-theme {
  color: var(--color-primary);
}

.l-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 96px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #edf2ef;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), 1320px);
  height: 100%;
  margin-inline: auto;
}

.l-header__logo {
  display: block;
  width: 142px;
}

.l-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-header-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}

.c-header-btn:hover {
  opacity: .82;
  transform: translateY(-2px);
}

.c-header-btn--movie {
  color: var(--color-white);
  background: var(--color-primary);
}

.c-btn-icon {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.c-btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-btn-icon--header {
  width: 22px;
  height: 22px;
}

.l-header__menu,
.l-header__mobile-menu,
.l-header__overlay {
  display: none;
}

.p-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  z-index: 1;
}

.p-hero::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68vw;
  width: calc(3060 / 1040 * 100vw);
  height: calc(3060 / 1040 * 100vw);
  content: "";
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), linear-gradient(117deg, var(--green-100, #E6F5EC) 53.25%, #F1F9F4 76.05%, var(--surface-white, #FFF) 98.85%);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding-block: 52px 80px;
}

.p-hero__columns {
  display: grid;
  grid-template-columns: .88fr 1.25fr;
  align-items: center;
  gap: 20px;
}

.p-hero__copy {
  position: relative;
  z-index: 2;
}

.p-hero__proof {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.p-hero__proof li {
  padding: 6px 15px;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.p-hero__title {
  margin-bottom: 24px;
  line-height: 1.25;
}

.p-hero__title span {
  display: block;
  font-size: clamp(35px, 3.3vw, 52px);
  font-weight: 800;
  letter-spacing: .025em;
  white-space: nowrap;
}

.p-hero__title strong {
  display: block;
  width: 356px;
  margin-top: 15px;
}

.p-hero__title strong img {
  width: 100%;
}

.p-hero__lead {
  margin-bottom: 14px;
  color: var(--color-text-sub);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.p-hero__subCopy-lead {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: -12px;
  line-height: calc(34 / 24);
}

.p-hero__stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.p-hero__stats p {
  margin: 0;
  padding-right: 18px;
  border-right: 1px solid #afc8ba;
  color: #2e4037;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.p-hero__stats p:last-child {
  border: 0;
}

.p-hero__stats span,
.p-hero__stats strong {
  margin-inline: 2px;
  color: var(--color-primary);
  font-size: 31px;
  font-weight: 900;
}

.p-hero__stats .p-hero__arrow {
  color: var(--color-accent);
  font-size: 18px;
}

.p-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 67px;
}

.p-hero__subCopy-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-hero__subCopy-stats-before {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 900;
}
.p-hero__subCopy-stats-before .large {
  font-size: calc(40 / 24 * 1em);
}
.p-hero__subCopy-stats-after {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 900;
  position: relative;
}

.p-hero__subCopy-stats-after .large {
  font-size: calc(56 / 24 * 1em);
}

.p-hero__subCopy-stats-after-sub {
  position: absolute;
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
  color: var(--color-primary);
  white-space: nowrap;
  right: 14px;
  top: -9px
}
.p-hero__subCopy-stats-after-sub .large {
  font-size: calc(20 / 14 * 1em);
  font-family: var(--second-font-family);
}

.c-action-btn {
  position: relative;
  display: flex;
  /* min-height: 60px; */
  align-items: center;
  justify-content: center;
  padding: 16px 24px 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.c-action-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,64,35,.12);
}

.c-action-btn small {
  position: absolute;
  top: -24px;
  left: 50%;
  padding: 8px 16px;
  color: var(--color-text);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 18px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.c-action-btn span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 24px;
}

.c-action-btn svg {
  width: 56px;
  height: 56px;
  fill: currentColor;
}

.c-action-btn--primary {
  min-width: 260px;
  color: var(--color-white);
  background: var(--color-primary);
}

.c-action-btn--white {
  min-width: 350px;
  color: var(--color-primary);
  background: var(--color-white);
}

.p-hero__visual {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: -115px;
}

.p-hero__visual img {
  width: 780px;
  filter: drop-shadow(0 20px 22px rgba(0,68,35,.1));
}

.p-hero__scroll {
  position: absolute;
  z-index: 3;
  right: 21px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.p-hero__scroll span {
  display: block;
  width: 1px;
  height: 68px;
  background: var(--color-primary);
}

.p-overview {
  padding-block: 80px var(--section-space);
  text-align: center;
}

.p-overview__image {
  display: block;
  margin-top: 34px;
}

.p-overview__image img {
  width: 100%;
}

.p-overview__points {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.p-overview__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #567063;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.p-overview__point-icon {
  display: block;
  flex: 0 0 28px;
  width: 28px;
}

.p-overview__point-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.p-concern {
  position: relative;
  padding-block: 100px 118px;
  background: var(--color-primary-pale);
}

.p-concern__layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  align-items: center;
  gap: 18px;
}

.p-concern__list {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-concern__list li {
  padding: 20px 15px;
  background: #eaf0ec;
  border-radius: 50%;
  color: #394a41;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.p-concern__image img {
  width: 100%;
}

.p-concern__conclusion {
  margin: 26px 0 0;
  font-size: 19px;
  font-weight: 800;
  text-align: center;
}

.p-concern__arrow {
  position: absolute;
  z-index: 2;
  bottom: -106px;
  left: 50%;
  display: block;
  width: 128px;
  transform: translateX(-50%);
}

.p-resolve {
  padding-block: 120px 110px;
}

.p-resolve__inner {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 30px;
}

.p-resolve__copy h2 {
  margin-bottom: 30px;
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1.45;
}

.p-resolve__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.p-resolve__tags span {
  padding: 7px 17px;
  border-radius: 999px;
  color: #47564C;
  font-weight: 700;
  background-color: #F4F3F1;
}

.p-resolve__copy p {
  color: var(--color-text-sub);
  font-size: 20px;
  font-weight: 500;
}

.p-resolve__image img {
  width: min(100%, 630px);
  margin-left: auto;
}

.p-effects {
  padding-block: 100px;
  background: var(--color-primary-pale);
}

.p-effects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 45px;
  background: var(--color-white);
  border-radius: 18px;
}

.p-effects__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 42px 30px;
}

.p-effects__item:nth-child(odd) {
  border-right: 1px solid #dae6df;
}

.p-effects__item:nth-child(-n+2) {
  border-bottom: 1px solid #dae6df;
}

.p-effects__headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.4;
}

.p-effects__headline span {
  font-weight: 800;
}

.p-effects__headline strong {
  color: var(--color-primary);
  font-size: calc(26 / 20 * 1em);
  font-weight: 900;
}
.p-effects__headline strong .large {
  font-size: calc(38 / 26 * 1em);
}

.p-effects__visual {
  display: block;
  width: 100%;
}

.p-effects__visual img {
  width: 100%;
}

.p-effects__caption {
  margin: 10px 0 0;
  color: var(--color-text-sub);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.p-movie-cta,
.p-compact-cta,
.p-contact {
  color: var(--color-white);
  background: var(--color-primary);
}

.p-movie-cta {
  padding-block: 90px;
}

/* .p-movie-cta__inner {
} */

.p-movie-cta__columns {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 55px;
}

.p-movie-cta__copy h2 {
  margin-bottom: 44px;
  font-size: 31px;
  line-height: 1.55;
  text-align: center;
}

.p-movie-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 51px;
}

.c-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8d8d8;
  border-radius: 6px;
}

.c-video__label {
  position: absolute;
  top: -44px;
  color: var(--color-white);
  font-size: 18px;
}

.c-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.c-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.c-video.is-playing .c-video__play {
  display: none;
}

.c-video i {
  display: block;
  width: 76px;
  height: 76px;
  border: 3px solid var(--color-white);
  border-radius: 50%;
}

.c-video i::after {
  display: block;
  width: 0;
  height: 0;
  margin: 23px 0 0 29px;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--color-white);
}

.p-features {
  padding-block: var(--section-space);
}

.p-features__list {
  margin-top: 42px;
}

.p-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding-block: 68px;
  border-bottom: 1px solid #dfe7e2;
}

.p-feature--reverse .p-feature__copy {
  order: 2;
}

.p-feature__number {
  display: block;
  margin-bottom: 20px;
  color: #dbefe3;
  font-family: var(--font-en);
  font-size: 66px;
  font-weight: 800;
  line-height: 1;
}

.p-feature__copy h3 {
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.5;
}

.p-feature__copy h4 {
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 19px;
}

.p-feature__copy ul {
  margin: 0;
  padding-left: 22px;
  color: var(--color-text-sub);
  font-weight: 500;
}

.p-feature__copy li::marker {
  color: var(--color-primary);
}

.p-feature picture {
  display: block;
  overflow: hidden;
  border: 1px solid #d7e0db;
  border-radius: 8px;
}

.p-features__extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}

.p-features__extras div {
  padding: 30px 24px;
  border: 1px solid #bac7c0;
  border-radius: 10px;
  text-align: center;
}

.p-features__extras span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--color-primary);
  background: #e8f7ee;
  border-radius: 50%;
  font-size: 19px;
  font-weight: 800;
}

.p-features__extras h3 {
  margin-bottom: 4px;
  font-size: 23px;
}

.p-features__extras p {
  margin: 0;
  color: var(--color-text-sub);
}

.p-features__more {
  margin: 28px 0 0;
  color: var(--color-primary);
  font-weight: 800;
  text-align: center;
}

.p-line {
  padding-block: 105px;
  background: var(--color-primary-pale);
  text-align: center;
}

.p-line__image {
  display: block;
  width: 345px;
  margin: 34px auto 0;
}

.p-line > .l-container > p {
  color: var(--color-text-sub);
}

.p-line__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0 38px;
  padding: 0;
  list-style: none;
}

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

.p-line__steps span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
}

.p-line__steps strong {
  font-size: 21px;
}

.p-line__checks {
  display: inline-flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-text-sub);
  font-size: 18px;
  text-align: left;
}

.p-line__checks li {
  position: relative;
  padding-left: 38px;
  font-weight: 500;
}

.p-line__checks li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  content: "";
  background-image: url(../images/line-checkbox.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  font-weight: 800;
}

.p-about {
  padding-block: 105px 120px;
  text-align: center;
}

.p-about__image {
  display: block;
  width: 430px;
  margin: -20px auto 15px;
}

.p-about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.p-about__cards div {
  padding: 26px 18px;
  border: 1px solid #b8c5be;
  border-radius: 9px;
}

.p-about__cards picture {
  display: block;
  width: 68px;
  margin: 0 auto 12px;
}

.p-about__cards p {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.p-about blockquote {
  margin: 68px auto 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.7;
}

.p-about cite {
  display: block;
  margin-top: 16px;
  color: var(--color-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.p-about__profile {
  color: var(--color-text-sub);
  font-weight: 500;
}

.p-price {
  padding-block: 95px;
  background: #fff9f1;
}

.p-price__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.p-price__content {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px 24px 64px;
  position: relative;
  z-index: 1;
}
.p-price__content-sub-copy {
  font-size: 16px;
  color: var(--color-text-sub);
  font-weight: 500;
  line-height: calc(29 / 20);
  margin-bottom: 8px;
}
.p-price__content-main-copy {
  font-size: 56px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: calc(68 / 56);
  font-family: var(--second-font-family);
  margin: 0;
}

.p-price__content-main-copy .small {
  font-size: calc(20 / 56 * 1em);
}

.p-price__content-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(140 / 357 * 100%);
  z-index: -1;
}

.p-price__grid picture img {
  width: 100%;
}

.p-price__grid > span {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 900;
}

.p-price__return {
  margin: 45px 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
}

.p-price__return strong {
  color: var(--color-primary);
  font-size: 1.9em;
  font-family: var(--second-font-family);
}

.p-price__return strong:last-child {
  color: var(--color-accent);
  font-size: calc(56 / 20 * 1em);
}

.p-price__notes {
  display: table;
  margin: 0 auto 8px;
}

.p-price__caption {
  color: var(--color-text-sub);
  font-size: 13px;
  text-align: center;
}

.p-compact-cta {
  padding-block: 58px 65px;
  text-align: center;
}

.p-compact-cta h2 {
  margin-bottom: 40px;
  font-size: 31px;
  line-height: 1.55;
}

.p-compact-cta__actions {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.p-flow {
  padding-block: var(--section-space);
}

.p-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.p-flow__list li {
  position: relative;
  text-align: center;
}

.p-flow__list li:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: -30px;
  width: 68px;
  height: 56px;
  content: "";
  background-image: url(../images/flow-arrow-image.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-flow__list span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--color-primary);
  background: var(--color-white);
  border: 2px solid #8dcba6;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
}

.p-flow__list li:first-child span,
.p-flow__list li:last-child span {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.p-flow__list h3 {
  min-height: 58px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.55;
}

.p-flow__list p {
  min-height: 77px;
  margin-bottom: 10px;
  color: var(--color-text-sub);
  font-size: 13px;
}

.p-flow__list small {
  padding: 5px 11px;
  color: var(--color-primary);
  border: 1px solid #7fb998;
  border-radius: 4px;
  font-weight: 700;
}

.p-faq {
  padding-block: 100px 110px;
  background: var(--color-primary-pale);
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 50px;
}

.p-faq__item summary,
.p-faq__item p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 22px 28px;
  background: var(--color-white);
  border-radius: 7px;
  font-weight: 700;
  list-style: none;
}

.p-faq__item summary {
  position: relative;
  cursor: pointer;
}

.p-faq__item summary::-webkit-details-marker {
  display: none;
}

.p-faq__item summary::after {
  position: absolute;
  right: 28px;
  content: "+";
  color: var(--color-primary);
  font-size: 27px;
  font-weight: 400;
}

.p-faq__item[open] summary::after {
  content: "−";
}

.p-faq__item p {
  margin-top: 10px;
  color: var(--color-text-sub);
  font-weight: 500;
}

.p-faq__item span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
}

.p-faq__item p span {
  color: var(--color-white);
  background: #e98b00;
  border-color: #e98b00;
}

.p-contact {
  padding-block: 88px 100px;
}

.p-contact > .l-container > h2 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 1.5;
  text-align: center;
}

.p-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  margin-top: 70px;
}

.p-contact__media > p {
  margin-bottom: 18px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}

.p-contact__form {
  padding: 38px 42px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 18px;
}

.p-contact__form h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.p-contact__form-lead {
  color: var(--color-text-sub);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}

.p-contact__form label {
  display: block;
  margin-top: 19px;
  font-size: 14px;
  font-weight: 800;
}

.p-contact__form em,
.p-contact__form i {
  margin-left: 8px;
  padding: 2px 6px;
  color: var(--color-white);
  background: #bd3e3e;
  border-radius: 3px;
  font-size: 10px;
  font-style: normal;
}

.p-contact__form i {
  background: #87918c;
}

.p-contact__form input,
.p-contact__form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 15px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #ced6d2;
  border-radius: 7px;
  outline: none;
}

/* FormMailer制御用のhiddenフィールドを描画しない */
.p-contact__form input[type="hidden"] {
  display: none;
}

.p-contact__form input:focus,
.p-contact__form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(7,139,61,.12);
}

.p-contact__form.is-validated input:invalid {
  border-color: #bd3e3e;
}

.p-contact__form > button {
  width: 100%;
  margin-top: 28px;
  padding: 15px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s;
}

.p-contact__form > button:hover {
  opacity: .88;
}

.p-contact__message {
  min-height: 0;
  margin: 12px 0 0;
  color: #bd3e3e;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.p-contact__message:empty {
  display: none;
}

.p-contact__note {
  margin: 10px 0 0;
  color: var(--color-text-sub);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.p-contact__credit {
  margin: 14px 0 0;
  font-size: 10px;
  text-align: center;
}

.p-contact__credit a {
  color: #9aa5a0;
  text-decoration: none;
}

.p-contact__credit a:hover {
  text-decoration: underline;
}

.l-footer {
  padding-block: 58px 40px;
  color: #bcd3c5;
  background: var(--color-primary-deep);
  text-align: center;
}

.l-footer picture {
  display: block;
  width: 170px;
  margin: 0 auto 24px;
}

.l-footer p {
  margin-bottom: 8px;
  font-size: 13px;
}

.l-footer small {
  font-size: 11px;
}

.fix-area {
  position: fixed;
  z-index: 999;
  right: 24px;
  top: 176px;
  width: auto;
  transition: opacity .25s ease, visibility .25s ease;
}
.fix-area__contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fix-area .c-header-btn {
  min-width: auto;
  padding: 6px;
  font-size: 14px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.text-ori-ho {
  text-orientation: mixed !important;
}

@media (prefers-reduced-motion: no-preference) {

  .p-hero__copy {
    animation: reveal .7s ease both;
  }

  .p-hero__visual {
    animation: reveal .8s .12s ease both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media screen and (max-width: 767px) {
  /* ベース */
  :root {
    --section-space: 80px;
  }

  html {
    scroll-padding-top: 64px;
  }

  body {
    font-size: calc(14 / 402 * var(--sp-vw));
    line-height: 1.75;
  }

  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  /* 共通パーツ / ユーティリティ */
  .l-container {
    width: calc(100% - 48px);
  }

  .c-section-title {
    letter-spacing: .02em;
    margin-bottom: 16px;
    font-size: calc(32 / 402 * var(--sp-vw));
    line-height: 1.5;
  }

  .c-section-lead {
    margin-bottom: 24px;
    font-size: calc(16 / 402 * var(--sp-vw));
    line-height: 1.75;
  }

  .c-pill {
    margin-bottom: 18px;
    padding: 4px 15px;
    font-size: calc(12 / 402 * var(--sp-vw));
  }

  /* ヘッダー */
  .l-header {
    height: 48px;
  }

  .l-header__inner {
    gap: 5px;
    width: calc(100% - 48px);
    justify-content: flex-start;
  }

  .l-header__logo {
    flex: 0 0 auto;
    width: 124px;
  }

  .l-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 3px;
    display: none;
  }

  .c-header-btn {
    min-height: 32px;
    gap: 3px;
    padding: 4px 7px;
    font-size: calc(8 / 402 * var(--sp-vw));
    letter-spacing: -.04em;
  }

  .c-btn-icon {
    width: 40px;
    height: 40px;
  }

  .c-btn-icon--header {
    width: 14px;
    height: 14px;
  }

  .l-header__menu {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .l-header__menu span:not(.u-visually-hidden) {
    width: 23px;
    height: 2px;
    background: var(--color-primary);
    transition: transform .2s, opacity .2s;
  }

  .l-header__menu.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .l-header__menu.is-open span:nth-child(2) {
    opacity: 0;
  }

  .l-header__menu.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .l-header__overlay {
    position: fixed;
    z-index: 98;
    top: 48px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(23, 38, 31, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .l-header__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .l-header__mobile-menu {
    position: fixed;
    z-index: 99;
    top: 48px;
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100dvh - 48px);
    padding-bottom: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-white);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .l-header__mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .l-header__mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .l-header__mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    border-bottom: 1px solid #edf2ef;
    font-size: calc(15 / 402 * var(--sp-vw));
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
  }

  .l-header__mobile-nav a::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    content: "";
    transform: rotate(45deg);
  }

  .l-header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 0;
  }

  .l-header__mobile-actions .c-header-btn {
    min-height: 50px;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: calc(15 / 402 * var(--sp-vw));
    letter-spacing: 0;
  }

  .l-header__mobile-actions .c-btn-icon--header {
    width: 20px;
    height: 20px;
  }

  .l-header__mobile-actions .c-header-btn:hover {
    opacity: 1;
    transform: none;
  }

  .c-header-btn--movie--small {
    display: none;
  }

  /* メニュー展開中は下部固定CTAを隠す */
  body.is-menu-open .fix-area {
    opacity: 0;
    visibility: hidden;
  }


  /* ヒーロー */
  .p-hero {
    min-height: 787px;
  }

  .p-hero::after {
    bottom: 0;
    width: calc(1530 / 402 * 100vw);
    height: calc(1530 / 402 * 100vw);
  }

  .p-hero__inner {
    flex-direction: column;
    gap: 10px;
    display: block;
    text-align: center;
    min-height: 787px;
    padding-block: 48px;
  }

  .p-hero__copy {
    display: block;
    width: 100%;
    min-height: 286px;
  }

  .p-hero__copy > * {
    width: auto;
  }

  .p-hero__proof {
    order: 1;
    justify-content: space-between;
    gap: 0;
    height: 45px;
    margin-bottom: 8px;
  }

  .p-hero__title {
    order: 2;
    margin-bottom: 16px;
  }

  .p-hero__title span {
    white-space: normal;
    font-size: calc(32 / 402 * var(--sp-vw));
    line-height: 1.5;
  }

  .p-hero__title strong {
    margin-top: calc(12 / 402 * var(--sp-vw));
    margin-bottom: 0;
    margin-right: auto;
    width: calc(284 / 402 * var(--sp-vw));
    margin-top: calc(8 / 402 * var(--sp-vw));
  }

  .p-hero__lead {
    order: 3;
    font-size: calc(14 / 402 * var(--sp-vw));
  }

  .p-hero__stats {
    order: 4;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .p-hero__stats p {
    padding-right: 12px;
    font-size: calc(10 / 402 * var(--sp-vw));
  }

  .p-hero__stats span,
  .p-hero__stats strong {
    font-size: calc(24 / 402 * var(--sp-vw));
  }

  .p-hero__actions {
    order: 6;
    align-items: center;
    flex-direction: column;
    gap: calc(43 / 402 * var(--sp-vw));
    min-height: 0;
    margin-top: calc(51 / 402 * var(--sp-vw));
  }
  .p-hero__actions .c-action-btn span {
    gap: calc(5 / 402 * var(--sp-vw));
    font-size: calc(20 / 402 * var(--sp-vw)); 
  }
  .p-hero__actions .c-action-btn small {
    width: auto;
    padding: calc(4 / 402 * var(--sp-vw)) calc(8 / 402 * var(--sp-vw));
    top: calc(-27 / 402 * var(--sp-vw));
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .c-action-btn {
    min-height: 56px;
    padding: 12px 18px;
  }

  .c-action-btn small {
    top: -27px;
    padding: 4px 8px;
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .c-action-btn--primary,
  .c-action-btn--white {
    min-width: 0;
    width: min(100%, 316px);
  }

  .p-hero__visual {
    order: initial;
    width: 348px;
    height: 191px;
    margin: 0 auto;
    object-fit: contain;
  }

  .p-hero__visual img {
    width: 100%;
  }

  .p-hero__scroll {
    display: none;
  }

  .p-hero__columns {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 477px;
  }

  .p-hero__subCopy-lead {
    margin-bottom: 0;
    font-size: calc(24 / 402 * var(--sp-vw));
    line-height: calc(34 / 24);
    text-align: left;
  }

  .p-hero__subCopy-stats {
      justify-content: center;
      gap: 7px;
      margin-top: calc(-15 / 402 * var(--sp-vw));
  }

  .p-hero__subCopy-stats-before,
  .p-hero__subCopy-stats-after {
    font-size: calc(24 / 402 * var(--sp-vw));
  }

  .p-hero__subCopy-stats-arrow img {
    width: calc(40 / 402 * var(--sp-vw));
  }

  .p-hero__subCopy-stats-after-sub {
    top: calc(-12 / 402 * var(--sp-vw));
    right: calc(-5 / 402 * var(--sp-vw));
    padding: calc(4 / 402 * var(--sp-vw)) calc(8 / 402 * var(--sp-vw));
    font-size: calc(14 / 402 * var(--sp-vw));
  }
  .p-hero__subCopy-stats-after-sub .large {
    font-size: calc(20 / 14 * 1em);
  }

  .c-action-btn span {
    gap: 5px;
    font-size: calc(20 / 402 * var(--sp-vw));
  }

  .p-hero__proof li {
    box-sizing: border-box;
    height: auto;
    min-height: auto;
    width: auto;
    font-size: calc(20 / 402 * var(--sp-vw));
    padding: calc(8 / 402 * var(--sp-vw)) calc(12 / 402 * var(--sp-vw));
    line-height: 1;
  }

  .p-hero__proof li:nth-child(1),
  .p-hero__proof li:nth-child(2),
  .p-hero__proof li:nth-child(3),
  .p-hero__proof li:nth-child(4) {
    width: auto;
  }

  /* Overview */
  .p-overview {
    min-height: 624px;
    padding-block: 48px;
  }

  .p-overview__image {
    margin-top: 28px;
  }

  .p-overview__points {
    display: grid;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .p-overview__points li {
    justify-content: flex-start;
    gap: 8px;
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-overview__point-icon {
    flex-basis: calc(32 / 402 * var(--sp-vw));
    width: calc(32 / 402 * var(--sp-vw));
  }

  .p-overview .c-section-title {
    font-size: calc(24 / 402 * var(--sp-vw));
    line-height: 34px;
  }

  /* Concern */
  .p-concern {
    min-height: 916px;
    padding-block: 48px;
  }

  .p-concern__layout {
    flex-direction: column;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    position: relative;
    display: block;
    width: 100%;
    height: 550px;
  }

  .p-concern__image {
    order: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }

  .p-concern__list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
  }

  .p-concern__list--left {
    order: 2;
  }

  .p-concern__list--right {
    order: 3;
  }

  .p-concern__list li {
    position: absolute;
    width: 56%;
    min-height: 74px;
    padding: 15px 10px;
    border-radius: 50%;
    font-size: calc(14 / 402 * var(--sp-vw));
    line-height: 1.45;
    box-shadow: 0 8px 18px rgba(30, 43, 34, .1);
  }

  .p-concern__conclusion {
    margin-top: 24px;
    font-size: calc(24 / 402 * var(--sp-vw));
    line-height: 1.42;
  }

  .p-concern__arrow {
    bottom: -64px;
    width: 88px;
  }

  .p-concern__list--left,
  .p-concern__list--right,
  .p-concern__image {
    order: initial;
  }

  .p-concern__list--left li:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-2.5deg);
  }

  .p-concern__list--right li:nth-child(1) {
    top: 35px;
    right: 0;
    transform: rotate(2.5deg);
  }

  .p-concern__list--left li:nth-child(2) {
    top: 90px;
    left: 12%;
    transform: rotate(-2.5deg);
  }

  .p-concern__list--left li:nth-child(3) {
    top: 158px;
    right: 4%;
    transform: rotate(2.5deg);
  }

  .p-concern__list--right li:nth-child(2) {
    top: 205px;
    left: 2%;
    transform: rotate(-2deg);
  }

  .p-concern__list--right li:nth-child(3) {
    top: 255px;
    right: 8%;
    transform: rotate(1deg);
  }

  /* Resolve */
  .p-resolve {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p-resolve__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .p-resolve__copy {
    text-align: center;
  }

  .p-resolve__copy h2 {
    margin-bottom: 32px;
    font-size: calc(32 / 402 * var(--sp-vw));
  }

  .p-resolve__tags {
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .p-resolve__tags span {
    padding: 8px 12px;
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-resolve__copy p {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-resolve__image img {
    width: 100%;
  }

  .p-resolve__image {
    width: min(100%, 340px);
  }

  /* Effects */
  .p-effects {
    min-height: 1754px;
    padding-block: 48px;
  }

  .p-effects__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
    padding: 40px;
    background: var(--color-white);
    border-radius: 16px;
    min-height: 1566px;
  }

  .p-effects__item {
    border-right: 0;
    border-bottom: 1px solid #dae6df;
    padding: 0 0 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
  }

  .p-effects__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .p-effects__item:nth-child(odd) {
    border-right: none;
  }

  .p-effects__headline {
    gap: 9px;
    font-size: calc(20 / 402 * var(--sp-vw));
  }

  .p-effects__caption {
    margin-top: calc(16 / 402 * var(--sp-vw));
    font-size: calc(16 / 402 * var(--sp-vw));
    line-height: 1.75;
    text-align: left;
  }

  .p-effects__item + .p-effects__item {
    padding-top: 40px;
    border-top: 1px solid #cbded1;
  }

  .p-effects .c-section-title {
    font-size: calc(32 / 402 * var(--sp-vw));
    line-height: 1.5;
  }

  /* Movie CTA */
  .p-movie-cta {
    padding-block: 48px;
  }

  .p-movie-cta__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .p-movie-cta__copy {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .p-movie-cta__copy h2 {
    margin-bottom: 0;
    font-size: calc(24 / 402 * var(--sp-vw));
  }
  .p-movie-cta__copy .c-pill {
    padding: 8px 16px;
    font-size: calc(20 / 402 * var(--sp-vw));
    margin-bottom: 0;
  }

  .p-movie-cta__actions {
    gap: 36px;
    order: 2;
  }

  .c-video i {
    width: 58px;
    height: 58px;
  }

  .c-video i::after {
    margin: 16px 0 0 22px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .p-movie-cta__columns {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .c-video__label {
    z-index: 2;
    top: auto;
    left: 50%;
    bottom: calc(100% + 5px);
    width: max-content;
    padding: 0 1em;
    background: transparent;
    border-radius: 999px;
    font-size: calc(16 / 402 * var(--sp-vw));
    transform: translateX(-50%);
  }
  .c-video__label::before,
  .c-video__label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.2em;
    background-color: #fff;
  }
  .c-video__label::before {
    left: 0;
    transform: translateY(-50%) rotate(45deg);
  }
  .c-video__label::after {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
  }

  .p-movie-cta__columns > .c-video {
    order: 1;
  }

  /* Features */
  .p-features {
    min-height: 2642.48px;
    padding-block: 48px;
  }

  .p-features__list {
    margin-top: 10px;
  }

  .p-feature {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-block: 52px;
  }
  .p-feature:last-child {
    border-bottom: 0;
  }

  .p-feature--reverse .p-feature__copy {
    order: 0;
  }

  .p-feature__copy {
    width: 100%;
  }

  .p-feature__number {
    margin-bottom: 9px;
    font-size: calc(38 / 402 * var(--sp-vw));
  }

  .p-feature__copy h3 {
    font-size: calc(24 / 402 * var(--sp-vw));
    line-height: 1.45;
  }

  .p-feature__copy h4 {
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-feature picture {
    order: 2;
  }

  .p-features__extras {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-features__extras div {
    align-items: center;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 2px 14px;
    padding: 16px 16px;
    text-align: left;
  }

  .p-features__extras span {
    display: grid;
    grid-row: 1 / 3;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .p-features__extras h3 {
    font-size: calc(24 / 402 * var(--sp-vw));
  }

  .p-features__extras p {
    line-height: calc(27 / 18);
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-features__more {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-feature__copy ul {
    padding-left: 18px;
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  /* LINE */
  .p-line {
    min-height: auto;
    padding-block: 48px;
  }

  .p-line__image {
    margin-top: 25px;
    width: 235px;
    order: 2;
  }

  .p-line__steps {
    margin-block: 34px 30px;
    grid-template-columns: 1fr;
    gap: 28px;
    width: 300px;
    margin: 36px auto 32px;
    order: 1;
  }

  .p-line__steps li {
    flex-direction: column;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .p-line__steps span {
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: calc(20 / 402 * var(--sp-vw));
  }

  .p-line__steps strong {
    line-height: 1.5;
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-line__checks {
    font-size: calc(16 / 402 * var(--sp-vw));
    order: 4;
  }

  .p-line__checks li {
    padding-left: calc(31 / 402 * var(--sp-vw));
  }

  .p-line__checks li::before {
    width: calc(22 / 402 * var(--sp-vw));
    height: calc(22 / 402 * var(--sp-vw));
    margin-top: calc(3 / 402 * var(--sp-vw));
  }

  .p-line > .l-container {
    display: flex;
    flex-direction: column;
  }

  .p-line .c-section-title {
    order: 0;
  }

  .p-line > .l-container > p {
    order: 3;
  }

  /* About */
  .p-about {
    min-height: 1176px;
    padding-block: 48px;
  }

  .p-about__image {
    width: 270px;
    margin-top: 2px;
  }

  .p-about__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-about__cards div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    text-align: left;
  }

  .p-about__cards picture {
    flex: 0 0 auto;
    width: 48px;
    margin: 0;
  }

  .p-about__cards p {
    line-height: 1.55;
    font-size: calc(18 / 402 * var(--sp-vw));
  }

  .p-about blockquote {
    margin-top: 42px;
    font-size: calc(18 / 402 * var(--sp-vw));
    display: flex;
    gap: 0;
    justify-content: center;
  }
  .p-about__quote {
    color: #D6E5D8;
    font-size: calc(48 / 402 * var(--sp-vw));
    font-family: var(--second-font-family);
  }

  .p-about cite {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-about__profile {
    font-size: calc(14 / 402 * var(--sp-vw));
  }

  /* 料金 */
  .p-price {
    padding-block: 48px;
  }

  .p-price__grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
  }

  .p-price__grid picture {
    width: 82%;
    margin-inline: auto;
  }

  .p-price__grid > span {
    text-align: center;
    align-self: center;
    font-size: calc(26 / 402 * var(--sp-vw));
    line-height: 1;
  }

  .p-price__return {
    margin-top: 24px;
    font-size: calc(18 / 402 * var(--sp-vw));
    /* line-height: calc(22 / 18); */
    line-height: 1.3;
    margin-bottom: calc(32 / 402 * var(--sp-vw));
  }

  .p-price__return .ff-second {
    font-size: calc(26 / 18 * 1em);
  }

  .p-price__return strong {
    font-size: 1.8em;
  }

  .p-price__notes {
    padding-left: 20px;
    margin-top: 16px;
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-price__caption {
    font-size: calc(14 / 402 * var(--sp-vw));
  }

  .p-price .c-section-title {
    font-size: calc(32 / 402 * var(--sp-vw));
    text-align: left;
  }

  .p-price .c-section-title .large {
    font-family: var(--second-font-family);
    font-size: 1.55em;
  }

  .p-price__content {
    min-width: 0;
    min-height: 194px;
    padding: 24px 24px 64px;
    border-radius: 16px;
  }

  .p-price__content-sub-copy {
    line-height: 1.4;
    min-height: 0;
    margin-bottom: 8px;
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-price__content-main-copy {
    line-height: 1.2;
    white-space: nowrap;
    font-size: calc(46 / 402 * var(--sp-vw));
  }

  .p-price__content-main-copy .small {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-price__grid .p-price__content-image {
    margin-inline: 0;
    right: 4px;
    bottom: 0;
    width: 42%;
    z-index: 0;
  }

  .p-price__return strong:last-child {
    font-size: 2.2em;
  }

  .p-price .c-section-title .large:first-of-type {
    font-size: 1.35em;
  }

  .p-price .c-section-title .large:last-of-type {
    font-size: 1.2em;
  }

  .p-price__title-break {
    display: block !important;
  }

  .p-price__content-sub-copy,
  .p-price__content-main-copy {
    position: relative;
    z-index: 1;
  }

  /* Compact CTA */
  .p-compact-cta {
    padding-block: 48px;
  }

  .p-compact-cta h2 {
    margin-bottom: calc(52 / 402 * var(--sp-vw));
    font-size: calc(19 / 402 * var(--sp-vw));
  }

  .p-compact-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }

  /* Flow */
  .p-flow {
    padding-block: 48px;
  }

  .p-flow__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 72px;
    width: 300px;
    margin: 24px auto 0;
  }

  .p-flow__list li {
    grid-template-rows: auto auto auto;
    grid-template-columns: 50px minmax(0, 1fr);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .p-flow__list li:not(:last-child)::after {
    top: 52px;
    right: auto;
    bottom: -28px;
    left: 26px;
    width: 3px;
    height: 31px;
  }

  .p-flow__list li:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -64px;
    left: 126px;
    width: 48px;
    height: 48px;
    transform: rotate(90deg);
  }

  .p-flow__list span {
    grid-row: 1 / 4;
    width: 48px;
    height: 48px;
    font-size: calc(20 / 402 * var(--sp-vw));
    margin: 0 0 4px;
  }

  .p-flow__list h3,
  .p-flow__list p {
    min-height: 0;
    margin: 0;
  }

  .p-flow__list h3 {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-flow__list p {
    font-size: calc(13 / 402 * var(--sp-vw));
  }

  .p-flow__list small {
    justify-self: start;
    padding: 2px 7px;
    margin-top: 4px;
  }

  /* FAQ */
  .p-faq {
    padding-block: 48px;
  }

  .p-faq__list {
    gap: 24px;
    margin-top: 24px;
  }

  .p-faq__item summary,
  .p-faq__item p {
    line-height: 1.65;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 8px;
    font-size: calc(14 / 402 * var(--sp-vw));
  }

  .p-faq__item summary::after {
    right: 24px;
    content: "−";
  }

  .p-faq__item span {
    width: 26px;
    height: 26px;
  }

  .p-faq__item:not([open]) > p {
    display: flex;
  }

  .p-faq__item p {
    margin-top: 10px;
  }

  /* Contact */
  .p-contact {
    padding-block: 48px;
  }

  .p-contact > .l-container > h2 {
    margin-bottom: 16px;
    font-size: calc(24 / 402 * var(--sp-vw));
    line-height: 34px;
  }

  .p-contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
  }

  .p-contact__form {
    padding: 24px;
    border-radius: 16px;
  }

  .p-contact__form h3 {
    margin-bottom: 16px;
    font-size: calc(20 / 402 * var(--sp-vw));
    line-height: 29px;
  }

  .p-contact__form label {
    margin-top: 16px;
    line-height: 20px;
  }

  .p-contact__media > p {
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-contact > .l-container > .c-pill {
    display: grid;
    min-height: 32px;
    place-items: center;
    font-size: calc(16 / 402 * var(--sp-vw));
  }

  .p-contact__form-lead {
    font-size: calc(16 / 402 * var(--sp-vw));
    line-height: 1.5;
    margin-bottom: calc(32 / 402 * var(--sp-vw));
  }

  .p-contact__form input,
  .p-contact__form textarea {
    box-sizing: border-box;
    margin-top: 8px;
    padding: 0 14px;
  }

  .p-contact__form input {
    height: 47px;
  }

  .p-contact__form textarea {
    height: 87px;
    min-height: 87px;
    padding-block: 13px;
  }

  .p-contact__form > button {
    height: 54px;
    margin-top: 16px;
  }

  /* フッター */
  .l-footer {
    min-height: 214px;
    padding-block: 48px;
  }

  .l-footer picture {
    width: 145px;
  }

  .l-footer p {
    font-size: calc(10 / 402 * var(--sp-vw));
  }
  .fix-area {
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: calc(16 / 402 * var(--sp-vw)) calc(16 / 402 * var(--sp-vw)) calc(16 / 402 * var(--sp-vw));
    background-color: rgba(255, 255, 255, 0.7);
  }
  .fix-area__contents {
    flex-direction: row;
    gap: calc(8 / 402 * var(--sp-vw));
    justify-content: center;
  }
  .fix-area .c-header-btn {
    min-width: auto;
    font-size: calc(14 / 402 * var(--sp-vw));
    font-weight: 700;
    padding: calc(12 / 402 * var(--sp-vw)) calc(12 / 402 * var(--sp-vw));
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .fix-area .c-btn-icon--header {
    width: calc(24 / 402 * var(--sp-vw));
    height: calc(24 / 402 * var(--sp-vw));
  }
}
