/* =============================================
   Foundation
   ============================================= */

:root {
  /* カラー */
  --color-primary: #EC77AB;
  --color-primary-light: #F8E0EF;
  --color-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-text-light: #666;
  --color-text-white: #fff;
  --color-bg: #fff;
  --color-bg-pink: #F8E0EF;
  --color-bg-dark: #1A1A1A;
  --color-bg-gray: #f5f5f5;
  --color-accent-purple: #7B5EA7;
  --color-border: #ddd;
  --color-border-pink: #F0B0D0;

  /* フォント */
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-family-mincho: "Yu Mincho", "Shippori Mincho", "游明朝", YuMincho, serif;
  --font-family-accent: "Kapakana", cursive;
  --font-family-number: "Roboto Condensed", sans-serif;

  /* フォントサイズ */
  --fz-hero: clamp(2rem, 8vw, 3.5rem);
  --fz-hero-sub: clamp(1.125rem, 4vw, 1.75rem);
  --fz-heading: clamp(1.5rem, 5.5vw, 2.5rem);
  --fz-subheading: clamp(1.125rem, 4vw, 1.5rem);
  --fz-body: clamp(0.875rem, 3.8vw, 1rem);
  --fz-small: clamp(0.75rem, 3.2vw, 0.875rem);
  --fz-btn: clamp(1.125rem, 5vw, 1.5rem);

  /* レイアウト */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-width: 800px;
  --container-padding: clamp(1rem, 4vw, 2rem);
}

html {
  scroll-behavior: smooth;
  background-color: #FDF5F8;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* =============================================
   Layout
   ============================================= */

/* ----- ヘッダー ----- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.l-header__inner {
  display: flex;
  align-items: center;
  padding: 8px var(--container-padding);
  max-width: 1000px;
  margin: 0 auto;
}

.l-header__logo a {
  display: block;
}

/* =============================================
   Component
   ============================================= */

/* ----- プレースホルダー ----- */
.c-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  width: 100%;
  min-height: 200px;
}

.c-placeholder__icon {
  margin-bottom: 12px;
}

.c-placeholder__text {
  color: #999;
  font-size: 0.875rem;
}

/* ヘッダーロゴ（ピンク文字 on 白背景） */
.c-placeholder--header-logo {
  flex-direction: row;
  gap: 8px;
  min-height: auto;
  padding: 0;
  background-color: transparent;
  width: auto;
  display: inline-flex;
  align-items: center;
}

.c-placeholder--header-logo .c-placeholder__icon {
  margin-bottom: 0;
  width: 28px;
  height: 28px;
}

.c-placeholder--header-logo .c-placeholder__text {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}

.c-placeholder--header-logo .c-placeholder__text small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

/* ヒーロー内ロゴマーク（ピンク四角） */
.c-placeholder--hero-logo {
  width: 120px;
  min-height: 120px;
  padding: 16px;
  background-color: var(--color-primary);
  border-radius: 0;
}

.c-placeholder--hero-logo .c-placeholder__icon {
  margin-bottom: 8px;
  stroke: rgba(255, 255, 255, 0.6);
}

.c-placeholder--hero-logo .c-placeholder__text {
  color: var(--color-text-white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.c-placeholder--hero {
  min-height: 100vh;
}

.c-placeholder--wide {
  min-height: 240px;
}

/* ----- CTAボタン ----- */
.c-btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: var(--fz-btn);
  border-radius: 8px;
  padding: 16px 24px;
  transition: opacity 0.2s ease;
}

.c-btn:hover {
  opacity: 0.85;
}

.c-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

.c-btn__note {
  text-align: center;
  font-weight: 700;
  font-size: var(--fz-body);
  margin-top: 12px;
  color: var(--color-text);
}

/* =============================================
   Project
   ============================================= */

/* ----- ファーストビュー ----- */
.p-hero {
  margin-bottom: 0;
}

.p-hero__visual {
  position: relative;
  overflow: hidden;
  clip-path: none;
  margin-bottom: -1px;
  width: 100%;
  max-width: 100%;
}

.p-hero__visual .c-placeholder {
  position: relative;
  z-index: 1;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--container-padding) 32px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.p-hero__content {
  width: 100%;
  text-align: center;
  color: var(--color-text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  padding-top: 40px;
}

/* ヒーロー内ロゴマーク */
.p-hero__logo-mark {
  margin-bottom: 16px;
}

.p-hero__lead {
  font-size: clamp(0.875rem, 3.6vw, 1.125rem);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.p-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  transform: rotate(-5deg);
}

.p-hero__title-line {
  display: block;
  font-weight: 900;
  font-size: clamp(2.25rem, 10vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.p-hero__title-line--sub {
  font-size: clamp(1.75rem, 8vw, 3.25rem);
}

.p-hero__title-line--large {
  font-size: clamp(2.75rem, 13vw, 5rem);
}

.p-hero__title-cross {
  display: block;
  font-size: clamp(2.5rem, 9vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-primary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 1.5px var(--color-primary);
}

.p-hero__sub {
  font-size: clamp(1rem, 4vw, 1.375rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.p-hero__desc {
  font-size: clamp(0.8125rem, 3.4vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* 口コミバナー */
.p-hero__review {
  padding: clamp(0.75rem, 3vw, 1.25rem);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
}

.p-hero__review-inner {
  display: flex;
  align-items: center;
}

.p-hero__review-icon {
  width: clamp(90px, 34vw, 160px);
  height: auto;
  flex-shrink: 0;
  margin: -40px 0 -40px -16px;
}

.p-hero__review-body {
  text-align: left;
}

.p-hero__review-title {
  font-size: clamp(1.125rem, 5.5vw, 1.875rem);
  font-weight: 900;
  color: var(--color-text-white);
  line-height: 1.3;
  white-space: nowrap;
}

.p-hero__review-text {
  font-size: clamp(0.8125rem, 3.4vw, 1rem);
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.5;
  margin-top: 4px;
}

.p-hero__review-note {
  font-size: clamp(0.625rem, 2.5vw, 0.75rem);
  color: var(--color-text-light);
  text-align: right;
}

/* ヒーロー下部写真 */
.p-hero__photo {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  padding: 0 var(--container-padding);
}


/* === PC版追加ルール === */
.p-hero__img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

@media (min-width: 375px) {
  .p-hero__photo {
    margin-top: -160px;
  }
}

@media (min-width: 480px) {
  .p-hero__photo {
    margin-top: -240px;
  }
}

@media (min-width: 600px) {
  .p-hero__photo {
    margin-top: -320px;
  }
}

@media (min-width: 720px) {
  .p-hero__photo {
    margin-top: -360px;
  }
}

.p-hero__photo .c-placeholder {
  min-height: 220px;
  border-radius: 4px;
}

.p-hero__photo-img {
  margin-top: 16px;
}

/* CTA①エリア */
.p-hero__cta-area {
  padding: 40px var(--container-padding) 24px;
  text-align: center;
}

.p-hero__question {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.5rem, 5.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
}

.p-hero__answer {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.75rem, 7.5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.p-hero__booking {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.125rem, 4.5vw, 1.75rem);
  font-weight: 700;
}

.p-hero__cta {
  max-width: 400px;
  margin: 0 auto;
}


/* ----- 適合条件 ----- */
.p-qualify {
  padding: var(--section-padding) var(--container-padding);
  text-align: center;
}

.p-qualify__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-qualify__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.375rem, 6.5vw, 2.5rem);
  font-weight: 700;
  color: #EC77AB;
  line-height: 1.4;
  margin-bottom: 10px;
}

.p-qualify__list {
  list-style: none;
  text-align: left;
  margin-bottom: 10px;
  display: inline-block;
}

.p-qualify__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(0.9rem, 3.8vw, 1.375rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
  white-space: nowrap;
}

.p-qualify__item em {
  font-style: normal;
}

.p-qualify__check {
  color: var(--color-text);
  font-size: 1.2em;
  flex-shrink: 0;
}

.p-qualify__note {
  font-size: var(--fz-small);
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

/* ----- 症状チェック ----- */
.p-symptoms {
  padding: var(--section-padding) var(--container-padding);
}

.p-symptoms__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-symptoms__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(2.25rem, 9vw, 3.25rem);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}

.p-symptoms__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.p-symptoms__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.p-symptoms__item--reverse {
  flex-direction: row-reverse;
}

.p-symptoms__illust {
  flex-shrink: 0;
  width: clamp(100px, 30vw, 250px);
}

.p-symptoms__illust img {
  width: 100%;
  height: auto;
}

.p-symptoms__text-wrap {
  width: 50%;
}

.c-placeholder--illust {
  min-height: 160px;
  border-radius: 8px;
}

.p-symptoms__text {
  font-size: clamp(1rem, 4.5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}

.p-symptoms__text em {
  font-style: normal;
}

/* 結果メッセージ */
.p-symptoms__result {
  text-align: center;
}

.p-symptoms__result-lead {
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.p-symptoms__result-message {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.5rem, 6.5vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.4;
}

/* ----- 連鎖を止める（統合セクション） ----- */
.p-chain {
  position: relative;
  overflow: hidden;
  background: url('../images/bg_01.webp') center / cover no-repeat;
}

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

.p-chain__block {
  padding: clamp(1.5rem, 4vw, 3rem) var(--container-padding);
  text-align: center;
  color: var(--color-text-white);
}

.p-chain__block:first-child {
  padding-top: clamp(4rem, 12vw, 8rem);
}

.p-chain__block--desc {
  color: var(--color-text-white);
  padding-top: 0;
  padding-bottom: 0;
}

.p-chain__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(2.75rem, 11vw, 4.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  transform: rotate(-5deg);
}

.p-chain__heading em {
  font-style: normal;
  font-size: 1.2em;
}

.p-chain__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.p-chain__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.p-chain__icon-img {
  width: clamp(72px, 22vw, 100px);
  height: auto;
}

.p-chain__icon-label {
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-primary);
}

/* 深層筋の説明 */
.p-chain__desc-text {
  font-family: var(--font-family-mincho);
  font-size: clamp(0.875rem, 6vw, 1.875rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.p-chain__desc-text em {
  font-style: normal;
}

.p-chain__desc-sub {
  font-size: clamp(0.75rem, 4.2vw, 1.5rem);
  line-height: 1.3;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- 3つのアプローチ ----- */
.p-approach__heading {
  font-family: var(--font-family-base);
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.p-approach__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.p-approach__card {
  background-color: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  flex: 1;
  max-width: 140px;
}

.p-approach__number {
  display: block;
  font-family: var(--font-family-accent);
  font-size: clamp(4rem, 16vw, 6.5rem);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 0.8;
  margin-bottom: 0;
  padding-top: 12px;
}

.p-approach__label {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  font-weight: 700;
  color: var(--color-text);
}

.p-approach__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: clamp(0.75rem, 2.5vw, 1rem);
}

/* ----- 8回の処方箋 ----- */
.p-program {
  padding: var(--section-padding) 0;
  background-color: var(--color-bg-gray);
}

.p-program__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-program__photo {
  padding: 0 var(--container-padding);
  margin-bottom: 32px;
}

.p-program__heading-area {
  text-align: center;
  margin-bottom: 12px;
  padding: 0 var(--container-padding);
}

.p-program__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.375rem, 5.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.p-program__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 var(--container-padding);
  margin-bottom: 10px;
}

.p-program__step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-program__step:nth-child(2) {
  margin-left: 24px;
}

.p-program__step:nth-child(3) {
  margin-left: 48px;
}

.p-program__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-weight: 700;
  font-size: clamp(0.9375rem, 3.8vw, 1.125rem);
  padding: 10px 24px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
}

.p-program__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  transform: skewX(-30deg);
  z-index: -1;
}

.p-program__badge--step1::before {
  background-color: #EC77AB;
}

.p-program__badge--step2::before {
  background-color: #D75B92;
}

.p-program__badge--step3::before {
  background-color: #D51F70;
}


.p-program__step-text {
  font-family: var(--font-family-base);
  font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  font-weight: 700;
}

.p-program__note {
  font-size: var(--fz-small);
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  padding: 0 var(--container-padding);
}

/* ----- 利用料金 ----- */
.p-price {
  padding: 0 var(--container-padding) var(--section-padding);
  background-color: var(--color-bg-gray);
}

.p-price__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-price__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.p-price__table {
  width: 100%;
}

.p-price__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 2px dashed var(--color-border);
  padding: 5px 0;
}

.p-price__row:first-child {
  border-top: 2px dashed var(--color-border);
}

.p-price__cell {
  font-weight: 700;
}

.p-price__cell--course {
  font-size: clamp(1rem, 4.5vw, 1.5rem);
}

.p-price__cell--price {
  font-family: var(--font-family-base);
  font-size: clamp(1.875rem, 8.5vw, 2.75rem);
  font-weight: 700;
  color: #EC77AB;
}

.p-price__label {
  font-family: var(--font-family-mincho);
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
  font-weight: 600;
  color: #EC77AB;
}

.p-price__yen {
  font-size: clamp(1rem, 4vw, 1.5rem);
}

/* ----- 比較アンカー ----- */
.p-compare__upper {
  background-color: var(--color-bg-pink);
  padding: 20px 0 10px 0;
  position: relative;
}

.p-compare__upper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 20px solid var(--color-bg-pink);
  z-index: 10;
}

.p-compare__lower {
  position: relative;
  overflow: hidden;
  background: url('../images/bg_03.webp') center / cover no-repeat;
}

.p-compare__lower-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 8vw, 4rem) var(--container-padding);
}

.p-compare__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.p-compare__text {
  font-family: var(--font-family-base);
  font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.p-compare__text--large {
  font-size: clamp(1.375rem, 5.5vw, 2rem);
  margin-top: 8px;
}

.p-compare__em {
  color: #E51F5E;
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.p-compare__price {
  font-family: var(--font-family-mincho);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: #E51F5E;
  line-height: 1.3;
  margin: 8px 0;
  text-decoration: underline;
  text-decoration-color: #E51F5E;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* 下部：画像 + ピンクオーバーレイ */
.p-compare__lower-overlay .p-compare__inner {
  color: var(--color-text-white);
}

.p-compare__program-name {
  font-family: var(--font-family-base);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.p-compare__badge {
  position: relative;
  display: inline-block;
  color: var(--color-text-white);
  font-weight: 700;
  font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  padding: 0px 32px;
  margin-bottom: 20px;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  z-index: 1;
}

.p-compare__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #5F89CC;
  border-radius: 8px;
  transform: skewX(-30deg);
  z-index: -1;
}

.p-compare__main-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.p-compare__main-price-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 4px;
  padding-bottom: 8px;
}

.p-compare__main-price-detail {
  font-family: var(--font-family-number);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.p-compare__main-price-detail--large {
  font-size: clamp(2.25rem, 9vw, 3.5rem);
}

.p-compare__main-price-detail small {
  font-size: 0.5em;
  font-weight: 700;
}

.p-compare__main-price-right {
  display: flex;
}

.p-compare__main-price-amount {
  font-family: var(--font-family-number);
  font-size: clamp(4rem, 18vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-compare__main-price-yen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-left: 2px;
  align-self: flex-end;
  padding-bottom: 18px;
}

.p-compare__main-price-tax {
  font-size: clamp(0.6875rem, 2.5vw, 0.875rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.p-compare__main-price-unit {
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

/* =============================================
   Utility
   ============================================= */

.u-sp-only {
  display: block;
}

.u-pc-only {
  display: none;
}

.u-color-primary {
  color: var(--color-primary);
}

/* ----- 返金保証 ----- */
.p-guarantee {
  background-color: #F5F5F5;
  padding: var(--section-padding) var(--container-padding);
}

.p-guarantee__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.p-guarantee__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.p-guarantee__heading::before,
.p-guarantee__heading::after {
  content: '';
  display: block;
  width: 2px;
  height: 1.2em;
  background-color: currentColor;
}

.p-guarantee__heading::before {
  transform: rotate(-30deg);
}

.p-guarantee__heading::after {
  transform: rotate(30deg);
}

.p-guarantee__text {
  font-family: var(--font-family-base);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.p-guarantee__note {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  font-weight: 700;
}

/* ----- 利用者の変化 ----- */
.p-results {
  background-color: #EC77AB;
  padding: var(--section-padding) var(--container-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
}

.p-results__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-results__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 900;
  color: var(--color-text-white);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 32px;
  transform: rotate(-7deg);
}

.p-results__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-results__card {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}

.p-results__img {
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  .p-results {
    padding-left: 0;
    padding-right: 0;
  }

  .p-results__img {
    width: 100%;
    height: auto;
  }
}

.c-placeholder--result {
  min-height: 240px;
  border-radius: 6px;
}

.p-results__caption {
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%) rotate(-7deg);
  color: var(--color-text-white);
  font-family: var(--font-family-mincho);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  -webkit-text-stroke: 6px #EC77AB;
  paint-order: stroke fill;
}

/* ----- CTA② ----- */
.p-cta2 {
  position: relative;
  overflow: hidden;
  background: url('../images/bg_04.webp') center / cover no-repeat;
}

.p-cta2__overlay {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) var(--container-padding);
}

.p-cta2__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-white);
}

.p-cta2__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.p-cta2__heading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-cta2__deco {
  font-size: clamp(5rem, 18vw, 8rem);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

.p-cta2__deco--left {
  align-self: flex-start;
}

.p-cta2__deco--right {
  align-self: flex-end;
}

.p-cta2 .c-btn--primary {
  max-width: 480px;
  margin: 0 auto;
  background-color: #E91E8C;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* ----- 特典 ----- */
.p-benefits {
  background-color: #fff;
  padding: var(--section-padding) var(--container-padding);
}

.p-benefits__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-benefits__heading {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}

.p-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-benefits__group {
  margin-bottom: 8px;
}

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

.p-benefits__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  text-align: center;
  line-height: 1.2;
}

.p-benefits__badge-label {
  font-size: 2rem;
  font-weight: 700;
}

.p-benefits__badge-num {
  font-size: 1rem;
  font-weight: 700;
}

.p-benefits__body {
  flex: 1;
}

.p-benefits__title {
  font-family: var(--font-family-base);
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.p-benefits__title br {
  display: none;
}

@media (max-width: 480px) {
  .p-benefits__title br {
    display: block;
  }
}

.p-benefits__title em {
  font-style: normal;
}

.p-benefits__desc {
  width: 100%;
  font-size: var(--fz-small);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

/* ----- よくある質問 ----- */
.p-faq {
  background-color: #F5F5F5;
  background-image: url('../images/bg_logo.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 400px auto;
  padding: var(--section-padding) var(--container-padding);
  padding-top: calc(var(--section-padding) + 80px);
  padding-bottom: calc(var(--section-padding) + 80px);
  clip-path: polygon(0 80px, 100% 0, 100% calc(100% - 80px), 0 100%);
}

.p-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-faq__heading {
  text-align: center;
  margin-bottom: 32px;
}


.p-faq__heading span {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 700;
  white-space: nowrap;
}

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

.p-faq__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 3px dashed #999;
}

.p-faq__item:first-child {
  border-top: 3px dashed #999;
}

.p-faq__num {
  font-family: var(--font-family-mincho);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}

.p-faq__content {
  flex: 1;
}

.p-faq__question {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.p-faq__answer {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  line-height: 1.7;
  color: var(--color-text);
}

/* ----- 最終CTA ----- */
.p-final-cta {
  background-color: transparent;
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}

.p-final-cta__border {
  border: 6px solid #E51F5E;
  overflow: hidden;
}

.p-final-cta__visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #E51F5E;
}

.p-final-cta__photo {
  position: absolute;
  bottom: 0;
  width: 35%;
  max-width: 180px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.p-final-cta__photo--left {
  left: 0;
}

.p-final-cta__photo--right {
  right: 0;
  height: 100%;
  width: 30%;
}

.p-final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px var(--container-padding);
}

.p-final-cta__message {
  font-family: var(--font-family-base);
  font-size: clamp(1.375rem, 5.5vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.p-final-cta__em {
  color: #E51F5E;
  font-style: normal;
  font-size: 1.3em;
  text-decoration: underline;
  text-decoration-color: #E51F5E;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.p-final-cta__accent {
  color: #E51F5E;
  font-style: normal;
}

.p-qualify--repeat {
  background-color: var(--color-bg);
}

.p-qualify--repeat .p-qualify__heading {
  color: var(--color-text);
}

.p-final-cta__btn-area {
  position: relative;
  z-index: 3;
  padding: 0 var(--container-padding) 24px;
}

.p-final-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 16px 24px;
  border-radius: 12px;
  background-color: #E51F5E;
  box-shadow: 0 4px 16px rgba(229, 31, 94, 0.3);
  line-height: 1.4;
}

.p-final-cta__btn-sub {
  font-size: var(--fz-btn);
  font-weight: 700;
}

.p-final-cta__btn-main {
  font-size: var(--fz-btn);
  font-weight: 700;
}

/* ----- 店舗情報 ----- */
.p-shop {
  background-color: #F5F5F5;
  padding: var(--section-padding) var(--container-padding);
  padding-top: calc(var(--section-padding) + 120px);
  clip-path: polygon(0 120px, 100% 0, 100% 100%, 0 100%);
  position: relative;
}

.p-shop__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.p-shop__logo {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-bottom: -130px;
  padding-top: 24px;
}

.p-shop__logo .c-placeholder--hero-logo {
  width: 140px;
  min-height: 140px;
}

.p-shop__name {
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.p-shop__info {
  text-align: left;
  margin-bottom: 32px;
}

.p-shop__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
}

.p-shop__row:first-child {
  border-top: 1px dashed var(--color-border);
}

.p-shop__label {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  font-weight: 700;
  color: var(--color-primary);
  min-width: 5em;
  flex-shrink: 0;
}

.p-shop__value {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  font-weight: 700;
  line-height: 1.6;
}

.p-shop__link {
  color: var(--color-primary);
  text-decoration: none;
}

.p-shop-map {
  padding: calc(var(--section-padding) / 2) var(--container-padding);
  background-color: var(--color-bg);
}

.p-shop-map__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.p-shop__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #E51F5E;
  border-radius: 8px;
  color: #E51F5E;
  font-weight: 700;
  font-size: var(--fz-btn);
  transition: opacity 0.2s ease;
}

.p-shop__map-btn:hover {
  opacity: 0.7;
}

/* ----- フッター ----- */
.l-footer__upper {
  padding: var(--section-padding) var(--container-padding);
  border-top: 2px dashed var(--color-primary);
  border-bottom: 2px dashed var(--color-primary);
  background-color: #F5F5F5;
}

.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.l-footer__heading {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.l-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  margin-bottom: 32px;
}

.l-footer__link-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.l-footer__link-item a {
  font-size: var(--fz-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-footer__link-item a::before {
  content: "›";
  font-size: 1.6em;
  color: var(--color-primary);
  margin-right: 4px;
  line-height: 1;
  transform: translateY(-3px);
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bg-gray);
  transition: opacity 0.2s ease;
}

.l-footer__sns-link:hover {
  opacity: 0.7;
}

.l-footer__bottom {
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  text-align: center;
  padding: 24px var(--container-padding) 90px;
}

@media (min-width: 641px) {
  .l-footer__bottom {
    padding: 24px var(--container-padding) 24px;
  }
}

.l-footer__shop-name {
  font-size: var(--fz-body);
  font-weight: 700;
  margin-bottom: 4px;
}

.l-footer__copyright {
  font-size: var(--fz-small);
  margin-bottom: 4px;
  opacity: 0.8;
}

.l-footer__company {
  font-size: var(--fz-small);
  opacity: 0.8;
}

/* =============================================
   PC固定サイドナビ
   ============================================= */
.l-side-nav {
  display: none;
}

@media (min-width: 1100px) {
  .l-side-nav {
    display: block;
  }

  .l-side-nav__left {
    position: fixed;
    left: calc((100vw - 640px) / 4);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
  }

  .l-side-nav__logo {
    width: clamp(200px, 22vw, 350px);
    height: auto;
    filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(600%) hue-rotate(300deg);
  }

  .l-side-nav__right {
    position: fixed;
    right: calc((100vw - 640px) / 4);
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .l-side-nav__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .l-side-nav__heading {
    font-size: clamp(0.875rem, 1.2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
  }

  .l-side-nav__links a {
    font-size: clamp(0.75rem, 1vw, 1.125rem);
    font-weight: 700;
    color: var(--color-text-light);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .l-side-nav__links a::before {
    content: "›";
    font-size: 1.4em;
    color: var(--color-primary);
    line-height: 0;
    transform: translateY(-2px);
  }

  .l-side-nav__links a:hover {
    color: var(--color-primary);
  }

  .l-side-nav__sns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
}

.u-font-mincho {
  font-family: var(--font-family-mincho);
}

/* =============================================
   SP固定バナー
   ============================================= */
.p-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 1000px;
  margin: 0 auto;
}

.p-fixed-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px;
  background-color: #EC77AB;
  color: var(--color-text-white);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 641px) {
  .p-fixed-banner {
    display: none;
  }
}

/* ----- Google Map iframe ----- */
.p-shop-map__iframe {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

/* =============================================
   Responsive — PC (768px+)
   ============================================= */

@media (min-width: 768px) {
  html {
    background-color: #EDEDED;
  }

  body {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
  }

  .l-header {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-fixed-banner {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .l-side-nav {
    display: none !important;
  }
}

/* =============================================
   Animation — Scroll Fade In
   ============================================= */

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ディレイ付きバリエーション */
.js-fade-in[data-delay="1"] { transition-delay: 0.1s; }
.js-fade-in[data-delay="2"] { transition-delay: 0.2s; }
.js-fade-in[data-delay="3"] { transition-delay: 0.3s; }

/* =============================================
   Animation — CTA Pulse
   ============================================= */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 119, 171, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(236, 119, 171, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 119, 171, 0);
  }
}

.c-btn--primary {
  animation: pulse 2s infinite;
}

.c-btn--primary:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 119, 171, 0.4);
  transition: all 0.3s ease;
}

/* =============================================
   Animation — FV Load
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-hero__overlay {
  animation: fadeInUp 0.8s ease both;
}

.p-hero__photo {
  animation: fadeInUp 0.8s ease 0.3s both;
}

.p-hero__cta-area {
  animation: fadeInUp 0.8s ease 0.5s both;
}

.p-hero__review {
  animation: fadeInUp 0.6s ease 0.6s both;
}


/* =============================================
   作業1：ヘッダーズレ修正 — PC中央揃え
   ============================================= */
@media (min-width: 768px) {
  .l-header {
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
  }
}

/* =============================================
   作業2：PC表示 中央寄せ補強
   ============================================= */
@media (min-width: 768px) {
  body {
    background-color: #f0f0f0;
  }
  .l-wrapper,
  #wrapper,
  .wrapper {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
  }
}

/* =============================================
   作業3：PC左右余白に固定CTAボタン
   ============================================= */
.pc-side-cta {
  display: none;
}

@media (min-width: 768px) {
  .pc-side-cta {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: calc(50% - 280px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }
  .pc-side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }
  .pc-side-btn:hover {
    transform: scale(1.1);
  }
  .pc-side-tel {
    background: #fff;
    color: #e85298;
    border: 2px solid #e85298;
  }
  .pc-side-reserve {
    background: linear-gradient(135deg, #e85298, #c0306e);
    color: #fff;
  }
  .pc-side-icon {
    font-size: 20px;
    line-height: 1;
  }
  .pc-side-text {
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    margin-top: 2px;
  }
}

/* =============================================
   作業4：スマホ追従CTAバー スタイル強化
   ============================================= */
.p-fixed-banner,
.p-fixed-sp {
  background: linear-gradient(135deg, #e85298 0%, #c0306e 100%) !important;
  box-shadow: 0 -4px 20px rgba(232, 82, 152, 0.5) !important;
}

.p-fixed-banner a,
.p-fixed-sp a {
  color: #fff !important;
  font-weight: bold !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

@keyframes pulse-pink {
  0%   { box-shadow: 0 -4px 20px rgba(232,82,152,0.5); }
  50%  { box-shadow: 0 -4px 30px rgba(232,82,152,0.9); }
  100% { box-shadow: 0 -4px 20px rgba(232,82,152,0.5); }
}

.p-fixed-banner,
.p-fixed-sp {
  animation: pulse-pink 2s ease-in-out infinite;
}

/* =============================================
   作業5：スクロールフェードインアニメーション
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   作業6：CTAボタン パルスアニメーション拡張
   ============================================= */
@keyframes pulse-btn {
  0%   { box-shadow: 0 0 0 0 rgba(232,82,152,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(232,82,152,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,82,152,0); }
}

.c-btn,
.p-btn,
[data-gtm-click] {
  animation: pulse-btn 2s ease-in-out infinite;
}


/* ========== PC対応修正 ========== */
@media (min-width: 768px) {
  body {
    background-color: #f0f0f0;
  }
  main {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
  }
  .l-header {
  }
  .p-fixed-banner,
  .p-fixed-sp {
  }
  .pc-side-cta {
  }
}
.pc-side-cta {
  display: none;
}
@media (min-width: 768px) {
  .pc-side-cta {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: calc(50% - 290px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }
  .pc-side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }
  .pc-side-btn:hover { transform: scale(1.1); }
  .pc-side-tel {
    background: #fff;
    color: #e85298;
    border: 2px solid #e85298;
  }
  .pc-side-reserve {
    background: linear-gradient(135deg, #e85298, #c0306e);
    color: #fff;
  }
  .pc-side-icon { font-size: 20px; line-height: 1; }
  .pc-side-text { font-size: 10px; line-height: 1.3; text-align: center; margin-top: 2px; }
}

@media (min-width: 768px) {
  body { background-color: #f0f0f0; }
  main { max-width: 480px; margin: 0 auto; background: #fff; box-shadow: 0 0 30px rgba(0,0,0,0.1); }
  .l-header { left: 50% !important; transform: translateX(-50%) !important; width: 480px !important; right: auto !important; }
  .p-fixed-banner, .p-fixed-sp { left: 50% !important; transform: translateX(-50%) !important; width: 480px !important; right: auto !important; }
  .pc-side-cta { position: fixed; top: 50%; transform: translateY(-50%); right: calc(50% - 290px); display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
  .pc-side-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; text-decoration: none; font-weight: bold; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s; }
  .pc-side-btn:hover { transform: scale(1.1); }
  .pc-side-tel { background: #fff; color: #e85298; border: 2px solid #e85298; }
  .pc-side-reserve { background: linear-gradient(135deg, #e85298, #c0306e); color: #fff; }
  .pc-side-icon { font-size: 20px; line-height: 1; }
  .pc-side-text { font-size: 10px; line-height: 1.3; text-align: center; margin-top: 2px; }
}
.pc-side-cta { display: none; }

@media (min-width:768px){body{background:#f0f0f0}main{max-width:480px;margin:0 auto;background:#fff;box-shadow:0 0 30px rgba(0,0,0,.1)}.l-header{position:fixed!important;left:50%!important;transform:translateX(-50%)!important;width:480px!important;right:auto!important}.p-fixed-banner,.p-fixed-sp{left:50%!important;transform:translateX(-50%)!important;width:480px!important;right:auto!important}}
/* =============================================
   最終PC定義（全競合を上書き）
   ============================================= */

/* サイドメニュー非表示（常時） */
.l-side-nav { display: none !important; }

@media (min-width: 768px) {

  /* --- レイアウト 800px中央寄せ --- */
  html, body { width: 100% !important; max-width: 100% !important; background: #f0f0f0 !important; margin: 0 !important; padding: 0 !important; }
  main {
    width: 800px !important;
    max-width: 800px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    background: #fff !important;
    box-shadow: 0 0 40px rgba(0,0,0,0.15) !important;
    overflow-x: hidden !important;
  }
  .l-header {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 800px !important;
    right: auto !important;
  }
  .p-fixed-banner, .p-fixed-sp {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 800px !important;
    right: auto !important;
  }

  /* --- FV画像 800px全幅 --- */
  .p-hero__visual {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .p-hero__img {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    display: block !important;
  }

  /* --- 口コミバッジ配置 --- */
  .p-hero__review {
    position: absolute !important;
    bottom: 20px !important;
    left: 16px !important;
    right: auto !important;
    top: auto !important;
    z-index: 20 !important;
    width: 300px !important;
    display: flex !important;
  }

  /* --- PC右側固定CTA --- */
  .pc-side-cta {
    display: flex !important;
    position: fixed !important;
    right: calc(50% - 460px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 9999 !important;
  }
}
