@charset "UTF-8";
/* =========================================================================
   REIKO STYLE - main stylesheet
   Black × salmon pink × pale pink / adult, healthy, active, stylish
   ========================================================================= */
/* -------------------------------------------------------------------------
   Variables
   ------------------------------------------------------------------------- */
:root {
  --black: #171717;
  --pink: #e98f98;
  --pink-sub: #f2b8be;
  --pink-deep: #d97f88;
  --pink-pale: #f9e7e9;
  --bg: #fff7f8;
  --text: #333333;
  --white: #ffffff;
  --muted: #8a7d7f;
  --font-jp: Noto Sans JP, -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic ProN, Hiragino Sans, Yu Gothic, Meiryo, sans-serif;
  --font-en: Oswald, Noto Sans JP, sans-serif;
  --container: 1120px;
  --container-narrow: 860px;
  --gutter: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* -------------------------------------------------------------------------
   Breakpoints / mixin
   ------------------------------------------------------------------------- */
/*===
  # common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --header-h: 68px;
  }
}

/* -------------------------------------------------------------------------
   1. Base
   ------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: #fff7f8;
  color: #333333;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
    line-height: 1.95;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover {
  opacity: 0.78;
}

picture {
  display: block;
}

::selection {
  background: #f2b8be;
  color: #171717;
}

/* -------------------------------------------------------------------------
   2. Layout helpers
   ------------------------------------------------------------------------- */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.l-container {
  width: 100%;
  max-width: 1168px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media screen and (max-width: 767px) {
  .l-container {
    padding-inline: 15px;
  }
}

.l-container--narrow {
  max-width: 908px;
}

.l-section {
  padding-block: clamp(72px, 11vw, 128px);
}

.l-section--bg {
  background: #fff7f8;
}

.l-section--pale {
  background: #f9e7e9;
}

.l-section--white {
  background: #ffffff;
}

.l-section--black {
  background: #171717;
  color: #ede4e5;
}

.l-section--feature {
  padding-block: clamp(88px, 14vw, 168px);
}

/* -------------------------------------------------------------------------
   3. Typography components
   ------------------------------------------------------------------------- */
.c-en {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d97f88;
  font-size: 1.4rem;
  display: inline-block;
}

.l-section--black .c-en {
  color: #f2b8be;
}

.c-head {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  color: #171717;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.c-head .accent {
  color: #d97f88;
}

.c-head--lg {
  font-size: clamp(2.8rem, 5.4vw, 4.2rem);
  line-height: 1.4;
}

.l-section--black .c-head {
  color: #ffffff;
}

.l-section--black .c-head .accent {
  color: #e98f98;
}

.c-head-block {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.c-head-block--center {
  text-align: center;
}

.c-head-block .c-en {
  margin-bottom: 12px;
}

.c-lead {
  font-size: 1.7rem;
  line-height: 2.1;
}

.c-lead + .c-lead {
  margin-top: 1.6em;
}

.c-note {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #8a7d7f;
  letter-spacing: 0.02em;
}

.l-section--black .c-note {
  color: #b9adaf;
}

/* 小見出し（本文中） */
.c-subhead {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  color: #171717;
  line-height: 1.6;
  padding-bottom: 6px;
  border-bottom: 3px solid #d97f88;
  margin-bottom: 18px;
}

/* -------------------------------------------------------------------------
   4. Buttons / CTA
   ------------------------------------------------------------------------- */
.c-btn {
  --btn-bg: #e98f98;
  --btn-fg: #171717;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 66px;
  padding: 0 44px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  border: 2px solid var(--btn-bg);
  transition: background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-btn .arrow {
  width: 22px;
  height: 8px;
  flex: none;
}

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

.c-btn--pink:hover {
  background: #171717;
  color: #ffffff;
  border-color: #171717;
}

.c-btn--black {
  --btn-bg: #171717;
  --btn-fg: #ffffff;
}

.c-btn--black:hover {
  background: #e98f98;
  color: #171717;
  border-color: #e98f98;
}

.c-btn--outline {
  --btn-bg: transparent;
  --btn-fg: #171717;
  border-color: #171717;
}

.c-btn--outline:hover {
  background: #171717;
  color: #ffffff;
}

.c-btn--lg {
  min-height: 76px;
  padding: 0 60px;
  font-size: 1.75rem;
  box-shadow: 0 16px 34px -18px rgba(217, 127, 136, 0.7);
}

.c-btn--lg.c-btn--black {
  box-shadow: 0 16px 34px -18px rgba(23, 23, 23, 0.55);
}

@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    padding-inline: 20px;
    letter-spacing: 0.02em;
  }
  .c-btn--lg {
    padding-inline: 20px;
    font-size: 1.6rem;
  }
}

.l-section--black .c-btn--outline {
  --btn-fg: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.l-section--black .c-btn--outline:hover {
  background: #ffffff;
  color: #171717;
  border-color: #ffffff;
}

.c-btn-wrap {
  margin-top: clamp(32px, 5vw, 48px);
}

.c-btn-wrap--center {
  text-align: center;
}

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.p-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: #171717;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.p-header__inner {
  width: 100%;
  max-width: 1328px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.p-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.p-logo img {
  width: 60px;
  height: 60px;
  flex: none;
}

@media screen and (max-width: 767px) {
  .p-logo img {
    width: 40px;
    height: 40px;
  }
}

.p-logo__text {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.16em;
  color: #ffffff;
  line-height: 1;
  padding-top: 2px;
}

@media screen and (max-width: 767px) {
  .p-logo__text {
    font-size: 2.4rem;
  }
}

.p-logo__text b {
  color: #e98f98;
  font-weight: 600;
}

.p-gnav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.p-gnav__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.p-gnav__list a {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.p-gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e98f98;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-gnav__list a:hover {
  opacity: 1;
}

.p-gnav__list a:hover::after {
  transform: scaleX(1);
}

.p-gnav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: #e98f98;
  color: #171717;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

.p-gnav__cta:hover {
  opacity: 1;
  background: #ffffff;
}

@media screen and (max-width: 1200px) {
  .p-gnav__list, .p-gnav__cta {
    display: none;
  }
}

/* hamburger */
.p-drawer-toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: none;
  z-index: 120;
}

.p-drawer-toggle span {
  position: absolute;
  left: 9px;
  width: 30px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-drawer-toggle span:nth-child(1) {
  top: 16px;
}

.p-drawer-toggle span:nth-child(2) {
  top: 23px;
}

.p-drawer-toggle span:nth-child(3) {
  top: 30px;
}

@media screen and (max-width: 1200px) {
  .p-drawer-toggle {
    display: block;
  }
}

.js-drawer.is-open .p-drawer-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.js-drawer.is-open .p-drawer-toggle span:nth-child(2) {
  opacity: 0;
}

.js-drawer.is-open .p-drawer-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.p-drawer__panel {
  position: fixed;
  inset: 0;
  background: #171717;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
  overflow-y: auto;
}

.js-drawer.is-open .p-drawer__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.p-drawer__panel a {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.p-drawer__panel a .en {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: #e98f98;
}

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

.p-drawer__cta a {
  border: 0;
  justify-content: center;
  background: #e98f98;
  color: #171717 !important;
  font-weight: 700;
  min-height: 62px;
}

/* -------------------------------------------------------------------------
   6. Floating CTA (mobile)
   ------------------------------------------------------------------------- */
.p-floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(6px);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-floating.is-visible {
  transform: none;
}

.p-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: #e98f98;
  color: #171717;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-floating {
    display: block;
  }
}

/* -------------------------------------------------------------------------
   7. FV (first view) - full-bleed hero
   ------------------------------------------------------------------------- */
.p-fv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 800px);
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px));
  padding-bottom: clamp(48px, 7vw, 88px);
  background: #f9e7e9;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .p-fv {
    min-height: 0;
    align-items: stretch;
  }
}

@media screen and (max-width: 767px) {
  .p-fv {
    display: block;
    min-height: 0;
    padding: 0 0 clamp(48px, 12vw, 64px);
    background: #fff7f8;
  }
}

.p-fv__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% 32%;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .p-fv__bgimg {
    object-position: 72% 28%;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__bgimg {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 12;
    object-position: 64% 26%;
    margin-top: var(--header-h);
  }
}

.p-fv__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(92deg, rgba(255, 247, 248, 0.98) 0%, rgba(255, 247, 248, 0.97) 38%, rgba(255, 247, 248, 0.82) 50%, rgba(255, 247, 248, 0.38) 62%, rgba(255, 247, 248, 0.08) 74%, rgba(255, 247, 248, 0) 82%);
}

@media screen and (max-width: 900px) {
  .p-fv__scrim {
    background: linear-gradient(100deg, rgba(255, 247, 248, 0.97) 0%, rgba(255, 247, 248, 0.92) 34%, rgba(255, 247, 248, 0.6) 52%, rgba(255, 247, 248, 0.1) 70%, rgba(255, 247, 248, 0) 82%);
  }
}

@media screen and (max-width: 767px) {
  .p-fv__scrim {
    display: none;
  }
}

.p-fv__bgword {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 22vw, 30rem);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-fv__bgword {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding-top: clamp(28px, 8vw, 40px);
  }
}

.p-fv__copy {
  max-width: 540px;
}

.p-fv__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #d97f88;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.p-fv__label .ja {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #171717;
  font-size: 1.4rem;
}

.p-fv__title {
  font-weight: 700;
  color: #171717;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 1.34;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: clamp(3rem, 8.6vw, 3.6rem);
    line-height: 1.38;
  }
}

.p-fv__title .line2 {
  display: block;
  margin-top: 0.12em;
}

.p-fv__title .line2 .mark {
  padding-bottom: 0.05em;
}

.p-fv__title .accent {
  color: #e98f98;
  font-size: 1.08em;
}

.p-fv__title .p-fv__note {
  display: inline-block;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.34em;
  letter-spacing: 0.04em;
  color: #333333;
  margin-left: 0.4em;
  vertical-align: 0.22em;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-fv__title .p-fv__note {
    display: block;
    margin: 6px 0 0;
    font-size: 0.6em;
  }
}

.p-fv__sub {
  margin-top: 24px;
  font-size: clamp(1.65rem, 2.5vw, 1.95rem);
  font-weight: 700;
  line-height: 1.85;
  color: #171717;
}

.p-fv__sub .accent {
  color: #d97f88;
}

.p-fv__lead {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.95;
  color: #333333;
}

.p-fv__lead .accent {
  color: #d97f88;
  font-weight: 700;
}

.p-fv__text {
  margin-top: 26px;
  font-size: 1.55rem;
  line-height: 2.05;
}

.p-fv__text .q {
  color: #d97f88;
  font-weight: 700;
}

.p-fv__cta {
  margin-top: clamp(30px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.p-fv__cta .c-btn--outline {
  background: rgba(255, 247, 248, 0.86);
  backdrop-filter: blur(2px);
}

.p-fv__cta .c-btn--outline:hover {
  background: #171717;
}

@media screen and (max-width: 767px) {
  .p-fv__cta {
    flex-direction: column;
  }
  .p-fv__cta .c-btn {
    width: 100%;
  }
}

.p-fv__service {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-fv__service span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #171717;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #f2b8be;
  padding: 5px 12px;
}

/* -------------------------------------------------------------------------
   8. Worry list / recommend list (checklist)
   ------------------------------------------------------------------------- */
.p-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-block: clamp(28px, 4vw, 44px);
}

@media screen and (max-width: 767px) {
  .p-check {
    grid-template-columns: 1fr;
  }
}

.p-check li {
  position: relative;
  padding: 20px 22px 20px 58px;
  background: #ffffff;
  border-left: 3px solid #d97f88;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  color: #333333;
}

.p-check li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 22px;
  height: 22px;
  background: #d97f88;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.55 17.6 4 12l1.4-1.4 4.15 4.15L18.6 5.3 20 6.7z'/></svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.55 17.6 4 12l1.4-1.4 4.15 4.15L18.6 5.3 20 6.7z'/></svg>") no-repeat center/contain;
}

.worry .l-container--narrow {
  max-width: 100%;
}

.worry .t-big {
  font-size: 2.4rem;
  width: 100%;
  text-align: center;
}

/* -------------------------------------------------------------------------
   9. Feature row (alternating image / text)
   ------------------------------------------------------------------------- */
.p-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.p-feature + .p-feature {
  margin-top: clamp(56px, 9vw, 112px);
}

.p-feature__body {
  max-width: 520px;
}

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

.p-feature--lead .p-feature__body {
  max-width: 560px;
}

.p-feature--lead .c-head {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  line-height: 1.4;
}

.p-feature__media {
  position: relative;
}

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

.p-feature__media--photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.p-feature__media .p-feature__icon,
.p-feature__media img.p-feature__icon {
  width: min(84%, 400px);
  margin-inline: auto;
}

.p-feature__media:has(.p-feature__icon) {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.p-feature__media:has(.p-feature__icon)::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: min(92%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #f9e7e9 0%, rgba(249, 231, 233, 0) 70%);
  z-index: -1;
}

.p-feature__media--framed::before {
  position: absolute;
  inset: auto -16px -16px auto;
  width: 55%;
  height: 55%;
  background: #f9e7e9;
  z-index: 0;
}

.p-feature__media--framed img {
  position: relative;
  z-index: 1;
}

.p-feature--lead .p-feature__media .p-feature__icon {
  width: min(94%, 460px);
}

.p-feature--reverse .p-feature__media--framed::before {
  inset: auto auto -16px -16px;
}

@media screen and (max-width: 940px) {
  .p-feature {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
  }
  .p-feature--reverse .p-feature__media {
    order: 0;
  }
  .p-feature__body {
    max-width: none;
  }
  .p-feature__media .p-feature__icon,
  .p-feature--lead .p-feature__media .p-feature__icon {
    width: min(56%, 300px);
  }
}

@media screen and (max-width: 767px) {
  .p-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-feature--reverse .p-feature__media {
    order: 0;
  }
  .p-feature__media .p-feature__icon {
    width: min(60%, 260px);
  }
}

/* -------------------------------------------------------------------------
   10. Steps (diet 01-04)
   ------------------------------------------------------------------------- */
.p-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}

@media screen and (max-width: 940px) {
  .p-steps {
    gap: 18px;
  }
}

@media screen and (max-width: 767px) {
  .p-steps {
    grid-template-columns: 1fr;
  }
}

.p-step {
  background: #ffffff;
  padding: clamp(28px, 4vw, 40px);
  border-top: 3px solid #d97f88;
}

.p-step__num {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #d97f88;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.p-step__title {
  font-weight: 700;
  font-size: 1.9rem;
  color: #171717;
  line-height: 1.5;
  margin-bottom: 12px;
}

.p-step--pick {
  background: #171717;
  border-top-color: #e98f98;
  position: relative;
}

.p-step--pick .p-step__num {
  color: #e98f98;
}

.p-step--pick .p-step__title {
  color: #ffffff;
}

.p-step--pick .p-step__text {
  color: #d9cdcf;
}

.p-step--pick .q {
  color: #f2b8be !important;
}

.p-step--pick::after {
  content: "POINT";
  position: absolute;
  top: 0;
  right: 0;
  background: #e98f98;
  color: #171717;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

.p-step__text {
  font-size: 1.5rem;
  line-height: 1.95;
}

/* 90日プログラム：STEPバッジ（ブラック×サーモンピンク） */
.p-steps--program .p-step__num {
  display: inline-block;
  background: #171717;
  color: #e98f98;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 7px 14px 6px;
  margin-bottom: 16px;
  white-space: nowrap;
}

/* 3カラム版（REIKO STYLEの特徴） */
.p-steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 940px) {
  .p-steps--3 {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

.p-steps--3 .p-step .q {
  color: #d97f88;
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   10b. Flow steps（足指→足首→股関節→肩→姿勢 など）
   ------------------------------------------------------------------------- */
.p-flow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: clamp(32px, 5vw, 52px) 0;
}

.p-flow__step {
  flex: 1;
  background: #ffffff;
  border-top: 4px solid #d97f88;
  padding: clamp(18px, 2.2vw, 26px) 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.p-flow__step span {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  letter-spacing: 0.06em;
  color: #d97f88;
  line-height: 1;
}

.p-flow__step b {
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  color: #171717;
  line-height: 1.4;
}

.p-flow__arrow {
  flex: none;
  align-self: center;
  width: 18px;
  height: 18px;
  color: #d97f88;
}

@media screen and (max-width: 767px) {
  .p-flow {
    flex-direction: column;
    gap: 6px;
  }
  .p-flow__arrow {
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
  }
  .p-flow__step {
    flex-direction: row;
    gap: 16px;
    padding: 16px 22px;
    justify-content: flex-start;
  }
  .p-flow__step span {
    font-size: 2.2rem;
    min-width: 2.4em;
  }
  .p-flow__step b {
    font-size: 1.8rem;
  }
}

.p-flow-note {
  font-weight: 700;
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  color: #171717;
  line-height: 1.7;
}

.p-flow-note .accent {
  color: #d97f88;
}

/* -------------------------------------------------------------------------
   10c. 90日後の未来（なりたい姿）
   ------------------------------------------------------------------------- */
.p-future__emphasis {
  margin-top: clamp(32px, 5vw, 48px);
  background: #ffffff;
  border-left: 4px solid #d97f88;
  padding: clamp(24px, 4vw, 36px);
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
  color: #171717;
}

.p-future__emphasis span {
  display: block;
  color: #d97f88;
  margin-top: 6px;
}

.l-section--black .p-future__emphasis {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-left-color: #e98f98;
}

.l-section--black .p-future__emphasis span {
  color: #f2b8be;
}

/* -------------------------------------------------------------------------
   11. Concept / message strips
   ------------------------------------------------------------------------- */
.p-message {
  text-align: center;
}

.p-message .c-head {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.p-message__text {
  margin-top: 28px;
  font-size: 1.7rem;
  line-height: 2.15;
}

.p-message__flow {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  font-weight: 700;
  color: #171717;
  font-size: clamp(1.6rem, 2.4vw, 1.9rem);
}

.p-message__flow span {
  padding: 6px 4px;
  border-bottom: 3px solid #f2b8be;
}

.p-message__flow i {
  color: #d97f88;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .p-message__flow i {
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 767px) {
  .p-message__flow {
    flex-direction: column;
  }
}

.l-section--black .p-message__text {
  color: #e5dadc;
}

.l-section--black .p-message__flow {
  color: #ffffff;
}

.l-section--black .p-message__flow i {
  color: #e98f98;
}

/* black message section の英字ウォーターマーク */
.p-blackmsg {
  position: relative;
  overflow: hidden;
}

.p-blackmsg__word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(233, 143, 152, 0.1);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.p-blackmsg__inner {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------
   12. CTA band (単独CTAセクション)
   ------------------------------------------------------------------------- */
.p-cta-band {
  text-align: center;
}

.p-cta-band__title {
  font-weight: 700;
  color: #171717;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.7;
  margin-bottom: 20px;
}

.p-cta-band__title .accent {
  color: #d97f88;
}

.p-cta-band__note {
  margin: 0 auto 24px;
  max-width: 600px;
  font-size: 1.55rem;
  line-height: 2;
  color: #333333;
}

.p-cta-band__note .q {
  color: #d97f88;
  font-weight: 700;
}

.p-cta-band__note strong {
  display: inline-block;
  margin-top: 2px;
  font-weight: 700;
  color: #d97f88;
}

.l-section--black .p-cta-band__title {
  color: #ffffff;
}

.l-section--black .p-cta-band__title .accent {
  color: #e98f98;
}

.l-section--black .p-cta-band__note {
  color: #ded3d4;
}

.l-section--black .p-cta-band__note strong {
  color: #e98f98;
}

.l-section--black .p-cta-band__note .q {
  color: #f2b8be;
}

/* CTAボタン直下の LINE サブ導線 */
.p-cta-sub {
  margin-top: 18px;
}

.p-cta-sub a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d97f88;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-cta-sub a {
    font-size: 1.7rem;
  }
}

.p-cta-sub a:hover {
  opacity: 1;
  color: #171717;
}

.p-cta-sub a svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: #06c755;
}

.l-section--black .p-cta-sub a {
  color: #f2b8be;
}

.l-section--black .p-cta-sub a:hover {
  color: #ffffff;
}

/* -------------------------------------------------------------------------
   13. My Story / before-after
   ------------------------------------------------------------------------- */
.p-story__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

@media screen and (max-width: 940px) {
  .p-story__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
  }
  .p-story__inner > div:last-child {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .p-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media screen and (max-width: 940px) {
  .p-story__photo {
    max-width: 460px;
  }
}

.p-story__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.p-story__result {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 18px;
  color: #171717;
}

.p-story__result .label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-story__result .num {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(4.4rem, 9vw, 7rem);
  line-height: 0.9;
  color: #d97f88;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .p-story__result {
    gap: 4px;
  }
}

.p-story__bridge {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.7;
  color: #171717;
  margin: 22px 0 4px;
  padding-left: 18px;
  border-left: 4px solid #d97f88;
}

.p-story__lead {
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.7;
  color: #171717;
  margin-bottom: 20px;
}

.p-story__lead .accent {
  color: #d97f88;
}

.p-ba {
  margin-top: clamp(40px, 6vw, 64px);
}

.p-ba__img {
  width: 100%;
  border: 1px solid #f2b8be;
}

.p-ba__note {
  margin-top: 14px;
}

/* -------------------------------------------------------------------------
   14. アラカンダイエット ブランドヘッダー
   ------------------------------------------------------------------------- */
.p-diet__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.p-diet__en {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #d97f88;
  display: block;
}

.p-diet__title {
  font-weight: 700;
  color: #171717;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1.3;
  margin: 6px 0 20px;
  letter-spacing: 0.04em;
}

.p-diet__copy {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.7;
  color: #171717;
}

.p-diet__copy .accent {
  color: #d97f88;
}

/* -------------------------------------------------------------------------
   15. Voice cards
   ------------------------------------------------------------------------- */
.p-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.p-voices--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 940px) {
  .p-voices, .p-voices--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-voices, .p-voices--4 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.p-voice {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

a.p-voice:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(23, 23, 23, 0.4);
}

.p-voice__figure {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #f9e7e9;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.p-voice__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice__avatar {
  width: 46%;
  opacity: 0.9;
}

.p-voice__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.p-voice__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-voice__meta span {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  background: #f9e7e9;
  color: #171717;
}

.p-voice__meta span.is-term {
  background: #171717;
  color: #ffffff;
}

.p-voice__title {
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #171717;
}

.p-voice__excerpt {
  font-size: 1.45rem;
  line-height: 1.9;
  flex: 1;
}

.p-voice__more {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #d97f88;
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   16. News list
   ------------------------------------------------------------------------- */
.p-news {
  border-top: 1px solid #f2b8be;
}

.p-news__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid #f2b8be;
}

.p-news__item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .p-news__item {
    grid-template-columns: 88px 1fr;
    gap: 16px;
    padding: 18px 4px;
  }
}

.p-news__thumb {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f9e7e9;
  width: 100%;
}

.p-news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 8px;
}

.p-news__date {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #8a7d7f;
}

.p-news__cat {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 2px 12px;
  background: #171717;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.p-news__ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  color: #171717;
}

.p-news--rich .p-news__item {
  grid-template-columns: 200px 1fr;
  align-items: start;
  padding: 32px 8px;
}

@media screen and (max-width: 767px) {
  .p-news--rich .p-news__item {
    grid-template-columns: 88px 1fr;
    gap: 16px;
    padding: 18px 4px;
  }
}

.p-news--rich .p-news__excerpt {
  font-size: 1.45rem;
  line-height: 1.9;
  margin-top: 8px;
}

/* -------------------------------------------------------------------------
   16b. レッスンスタイル（出張 / Zoom）
   ------------------------------------------------------------------------- */
.p-lesson__notice {
  background: #ffffff;
  border-left: 4px solid #d97f88;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 30px);
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 860px;
}

.p-lesson__notice b {
  display: block;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.1rem);
  color: #171717;
  margin-bottom: 8px;
}

.p-lesson__notice p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333333;
}

.p-lesson__lead {
  max-width: 860px;
}

.p-lesson__lead .q {
  color: #d97f88;
  font-weight: 700;
}

.p-lesson__ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 52px);
}

@media screen and (max-width: 767px) {
  .p-lesson__ways {
    grid-template-columns: 1fr;
  }
}

.p-lesson__way {
  background: #ffffff;
  padding: clamp(28px, 4vw, 40px);
  border-top: 3px solid #d97f88;
}

.p-lesson__way svg {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 16px;
  color: #d97f88;
}

.p-lesson__way h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #171717;
  line-height: 1.5;
  margin-bottom: 12px;
}

.p-lesson__way p {
  font-size: 1.5rem;
  line-height: 1.95;
}

.p-lesson__note {
  margin-top: clamp(24px, 3vw, 32px);
}

/* -------------------------------------------------------------------------
   17. Contact form
   ------------------------------------------------------------------------- */
.p-contact {
  background: linear-gradient(180deg, #f9e7e9 0%, #fff7f8 100%);
}

.p-contact__subcopy {
  margin-top: 14px;
  font-weight: 700;
  color: #d97f88;
  font-size: clamp(1.6rem, 2.2vw, 1.8rem);
  letter-spacing: 0.02em;
}

.p-contact__reassure {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  background: #ffffff;
  border: 1px solid #f2b8be;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
  font-size: 1.55rem;
  line-height: 2;
}

.p-contact__reassure .q {
  color: #d97f88;
  font-weight: 700;
}

.p-contact__reassure strong {
  display: block;
  font-weight: 700;
  color: #171717;
  font-size: 1.65rem;
  margin-top: 12px;
}

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

.p-contact__lead .q {
  display: block;
  color: #d97f88;
  font-weight: 700;
  font-size: 1.65rem;
  margin-bottom: 4px;
}

.p-contact__sub {
  text-align: center;
  font-weight: 700;
  color: #171717;
  font-size: clamp(1.7rem, 2.6vw, 2rem);
  line-height: 1.8;
  margin-top: 32px;
}

.p-contact__prform {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  background: #f9e7e9;
  border: 1px solid #f2b8be;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 4vw, 36px);
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.95;
  color: #333333;
}

.p-contact__prform b {
  color: #171717;
  font-weight: 700;
}

.p-contact__prform .q {
  color: #d97f88;
  font-weight: 700;
}

/* お問い合わせ方法カード（フォーム / 電話 / 公式LINE） */
.p-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 1120px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

@media screen and (max-width: 940px) {
  .p-contact-methods {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

.p-contact-method {
  position: relative;
  background: #ffffff;
  border: 1px solid #f2b8be;
  padding: clamp(24px, 3.5vw, 34px) clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  /* 公式LINE：フォーム・電話より少しだけ強く（派手にはしない） */
}

.p-contact-method__icon {
  width: 46px;
  height: 46px;
  color: #d97f88;
}

.p-contact-method__icon svg {
  width: 100%;
  height: 100%;
}

.p-contact-method__title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #171717;
}

.p-contact-method__desc {
  font-size: 1.4rem;
  line-height: 1.85;
  flex: 1;
}

.p-contact-method .c-btn {
  width: 100%;
  min-height: 58px;
  padding-inline: 16px;
  font-size: 1.5rem;
  margin-top: 4px;
}

.p-contact-method__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #e98f98;
  color: #171717;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

.p-contact-method--line {
  background: #f9e7e9;
  border-color: #e98f98;
  box-shadow: 0 12px 30px -22px rgba(23, 23, 23, 0.45);
}

.p-contact-method--line .p-contact-method__icon {
  color: #06c755;
  width: 52px;
  height: 52px;
}

.p-contact-method--line .p-contact-method__title {
  font-size: 1.95rem;
}

.p-contact-method--line .c-btn {
  min-height: 66px;
  padding-block: 6px;
  font-size: 1.7rem;
  font-weight: 700;
}

.p-form {
  max-width: 720px;
  margin: clamp(36px, 5vw, 52px) auto 0;
  background: #ffffff;
  padding: clamp(28px, 5vw, 56px);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media screen and (max-width: 767px) {
  .p-form {
    padding: 15px;
  }
}

.p-form__head {
  text-align: center;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.p-form__title {
  font-weight: 700;
  font-size: 1.9rem;
  color: #171717;
  margin-bottom: 6px;
}

.p-form__row {
  margin-bottom: 26px;
}

.p-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #171717;
  margin-bottom: 10px;
}

.p-form__req {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  background: #d97f88;
  color: #ffffff;
}

.p-form__req.is-any {
  background: #f9e7e9;
  color: #8a7d7f;
}

.p-form input[type="text"],
.p-form input[type="email"],
.p-form input[type="tel"],
.p-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1.6rem;
  padding: 16px 18px;
  background: #fff7f8;
  border: 1px solid #f2b8be;
  color: #333333;
  line-height: 1.7;
}

.p-form input:focus,
.p-form textarea:focus {
  outline: 2px solid #d97f88;
  outline-offset: 1px;
  background: #ffffff;
}

.p-form textarea {
  min-height: 160px;
  resize: vertical;
}

.p-form__agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.45rem;
  line-height: 1.8;
  background: #fff7f8;
  padding: 18px;
  border: 1px solid #f2b8be;
}

@media screen and (max-width: 767px) {
  .p-form__agree {
    padding: 5px;
  }
}

.p-form__agree input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: #d97f88;
}

.p-form__agree a {
  color: #d97f88;
  text-decoration: underline;
}

.p-form__submit {
  margin-top: 8px;
  text-align: center;
}

.p-form__submit button {
  font: inherit;
  cursor: pointer;
  width: 100%;
  max-width: 460px;
}

/* -------------------------------------------------------------------------
   18. Profile
   ------------------------------------------------------------------------- */
.p-profile__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

@media screen and (max-width: 940px) {
  .p-profile__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
  }
}

@media screen and (max-width: 767px) {
  .p-profile__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media screen and (max-width: 940px) {
  .p-profile__photo {
    max-width: 460px;
  }
}

.p-profile__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.p-profile__name {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.p-profile__name b {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.08em;
}

.p-profile__role {
  font-size: 1.5rem;
  font-weight: 500;
  color: #d97f88;
  margin-bottom: 24px;
}

.p-profile__list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.p-profile__list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.5rem;
  line-height: 1.9;
}

.p-profile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 2px;
  background: #d97f88;
}

/* -------------------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------------------- */
.p-footer {
  background: #171717;
  color: #c8bcbe;
  padding: clamp(56px, 8vw, 84px) 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.p-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    gap: 28px;
  }
}

.p-footer__brand .p-logo__text {
  font-size: 2.2rem;
}

.p-footer__brand p {
  margin-top: 16px;
  font-size: 1.35rem;
  line-height: 1.9;
  max-width: 320px;
}

.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-content: flex-start;
}

.p-footer__nav a {
  font-size: 1.4rem;
}

.p-footer__nav a:hover {
  color: #e98f98;
}

.p-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #9b8f91;
}

/* -------------------------------------------------------------------------
   20. Page header (lower pages) / breadcrumb / pagination / article
   ------------------------------------------------------------------------- */
.p-pagehead {
  padding: calc(var(--header-h) + clamp(48px, 8vw, 88px)) 15px clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, #f9e7e9 0%, #fff7f8 100%);
  text-align: center;
}

.p-pagehead .c-en {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.p-pagehead h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.04em;
}

.p-pagehead p {
  margin-top: 20px;
  font-size: 1.55rem;
  line-height: 2;
  max-width: 680px;
  margin-inline: auto;
}

.p-breadcrumb {
  padding: 16px 0;
  background: #ffffff;
  border-bottom: 1px solid #f9e7e9;
}

.p-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.25rem;
  color: #8a7d7f;
}

@media screen and (max-width: 767px) {
  .p-breadcrumb ol {
    gap: 0 8px;
  }
}

.p-breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: #f2b8be;
}

.p-breadcrumb li:last-child::after {
  content: none;
}

.p-breadcrumb a:hover {
  color: #d97f88;
}

.p-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 6vw, 64px);
}

.p-pager a,
.p-pager span {
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  background: #ffffff;
  border: 1px solid #f2b8be;
  color: #171717;
}

.p-pager .is-current,
.p-pager .current,
.p-pager .page-numbers.current {
  background: #d97f88;
  border-color: #d97f88;
  color: #ffffff;
}

.p-pager .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.p-pager a:hover {
  opacity: 1;
  background: #f9e7e9;
}

.l-article {
  max-width: 908px;
  margin-inline: auto;
  padding-inline: 24px;
}

.l-article__head {
  margin-bottom: 36px;
}

.l-article__head h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.4vw, 3.2rem);
  font-weight: 700;
  color: #171717;
  line-height: 1.55;
}

.l-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.l-article__eyecatch {
  margin-bottom: 40px;
}

.l-article__eyecatch img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.l-article__body > * + * {
  margin-top: 1.7em;
}

.l-article__body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #171717;
  line-height: 1.5;
  padding-left: 16px;
  border-left: 5px solid #d97f88;
  margin-top: 2em;
}

.l-article__body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #171717;
  margin-top: 1.8em;
}

.l-article__body p {
  line-height: 2.1;
}

.l-article__body img {
  width: 100%;
}

.l-article__body ul {
  padding-left: 1.2em;
}

.l-article__body ul li {
  list-style: disc;
  margin-top: 0.5em;
  line-height: 1.9;
}

.l-article__body strong {
  font-weight: 700;
  color: #171717;
  background: linear-gradient(transparent 62%, #f9e7e9 62%);
}

.l-article__foot {
  margin-top: 56px;
  text-align: center;
}

/* voice detail */
.p-voice-detail__spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #f2b8be;
  border: 1px solid #f2b8be;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .p-voice-detail__spec {
    grid-template-columns: 1fr;
  }
}

.p-voice-detail__spec div {
  background: #ffffff;
  padding: 18px 20px;
}

.p-voice-detail__spec dt {
  font-size: 1.2rem;
  color: #8a7d7f;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.p-voice-detail__spec dd {
  font-size: 1.6rem;
  font-weight: 700;
  color: #171717;
}

.p-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

@media screen and (max-width: 767px) {
  .p-ba-grid {
    grid-template-columns: 1fr;
  }
}

.p-ba-grid figure {
  background: #f9e7e9;
}

.p-ba-grid figcaption {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px;
  background: #171717;
  color: #ffffff;
  font-size: 1.3rem;
}

.p-ba-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.p-comment {
  background: #f9e7e9;
  padding: clamp(24px, 4vw, 36px);
  margin-top: 36px;
}

.p-comment__label {
  font-weight: 700;
  color: #d97f88;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.p-related {
  background: #fff7f8;
}

/* -------------------------------------------------------------------------
   21. Scroll animation
   ------------------------------------------------------------------------- */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade.is-in {
  opacity: 1;
  transform: none;
}

.js-fade[data-delay="1"] {
  transition-delay: 0.12s;
}

.js-fade[data-delay="2"] {
  transition-delay: 0.24s;
}

.js-fade[data-delay="3"] {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   22. Contact Form 7（WordPress 用・静的では未使用）
   ------------------------------------------------------------------------- */
.p-form .wpcf7-form-control-wrap {
  display: block;
}

.p-form input.wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.p-form textarea.wpcf7-form-control {
  width: 100%;
  font: inherit;
  font-size: 1.6rem;
  padding: 16px 18px;
  background: #fff7f8;
  border: 1px solid #f2b8be;
  color: #333333;
  line-height: 1.7;
}

.p-form textarea.wpcf7-form-control {
  min-height: 160px;
  resize: vertical;
}

.p-form input.wpcf7-form-control:focus,
.p-form textarea.wpcf7-form-control:focus {
  outline: 2px solid #d97f88;
  outline-offset: 1px;
  background: #ffffff;
}

.p-form .wpcf7-list-item {
  margin: 0;
}

.p-form .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 1.3rem;
  margin-top: 6px;
  display: block;
}

.p-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px;
  border: 1px solid #f2b8be;
  font-size: 1.4rem;
}

.p-form .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}

.single-main {
  padding-top: 78px;
}

@media screen and (max-width: 767px) {
  .single-main {
    padding-top: 68px;
  }
}
