/* 自然派漢方茶ランディング — PC / モバイル */
:root {
  --bg: #f5f5f0;
  --accent: #2d5a27;
  --accent-hover: #234620;
  --accent-soft: #e8f0e6;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --white: #fff;
  --radius: 8px;
  --card-border: rgba(45, 90, 39, 0.10);
  --max: 920px;
  --section-pad: clamp(3rem, 8vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
    "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* サイト上部バー（ページ地色に馴染む） */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
}

.site-header__topline {
  height: 0;
  border-top: 1px solid rgba(45, 90, 39, 0.1);
}

.site-header__bar {
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3.5rem;
  padding-block: 0.75rem;
}

.site-header__logo {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header__logo:hover {
  color: var(--accent-hover);
}

.site-header__divider {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: var(--radius);
}

a {
  color: var(--accent);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.section--tight {
  padding-block: clamp(2rem, 5vw, 3rem);
}

/* Section card (screenshot-like blocks) */
.section-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.06);
  backdrop-filter: blur(2px);
}

.section-card + .section-card {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.section-card--narrow {
  max-width: 860px;
  margin-inline: auto;
}

h1,
h2,
h3 {
  line-height: 1.35;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 0 0 1.25rem;
  color: var(--accent);
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.65rem auto 0;
  background: var(--accent);
  border-radius: 1px;
}

.section-heading--follow {
  margin-top: 2rem;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--accent);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.05rem;
}

.note {
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #2e5a27;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: inherit;
}

.btn:hover {
  background: #254922;
}

.btn--block {
  width: 100%;
  padding-block: 14px;
  padding-inline: 30px;
  font-size: 1.05rem;
}

/* Hero（見出し → 文案 → 余白 → 商品写真 → ボタン） */
.hero {
  padding-block: clamp(3rem, 8vw, 5.25rem) clamp(3.25rem, 8vw, 5.5rem);
  text-align: center;
  background: var(--bg);
}

.hero__intro {
  margin-inline: auto;
}

.hero h1 {
  margin: 0 auto clamp(1.2rem, 3.2vw, 1.65rem);
  max-width: 22em;
  line-height: 1.45;
}

.hero .lead {
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.85;
  font-size: clamp(0.94rem, 2.2vw, 1.06rem);
  color: var(--text-muted);
}

.hero__tag {
  display: block;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: clamp(1.35rem, 3.5vw, 1.85rem) auto 0;
  max-width: 36rem;
  line-height: 1.65;
}

.hero__cta {
  margin-top: 0.35rem;
}

.hero__visual {
  margin-top: clamp(2.85rem, 8.5vw, 4.85rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 6.5vw, 3.75rem);
  background: var(--bg);
}

/* 白抜き合成 PNG でない場合：白背景をページ地色に馴染ませる */
.hero__img {
  width: min(420px, 90vw);
  max-width: 100%;
  height: auto;
  margin: 0;
  display: block;
  mix-blend-mode: darken;
}

.hero .btn {
  margin-top: 0;
}

/* Split rows */
.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse .split__text {
    order: 2;
  }

  .split--reverse .split__media {
    order: 1;
  }
}

.split__media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Center block + full image */
.center-block {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.center-block + .figure-wide {
  margin-top: 2rem;
}

.figure-wide img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* 老化防止と活力維持：見出し → 写真 → 本文の余白 */
.section--aging-vitality .section-heading {
  margin-bottom: clamp(1.35rem, 3.5vw, 1.85rem);
}

.section--aging-vitality .aging-vitality__photo {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  margin: 0 auto clamp(1.75rem, 4.5vw, 2.85rem);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.12);
}

.section--aging-vitality .center-block {
  margin-top: 0;
  margin-bottom: 0;
}

.aging-vitality-tagline {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  font-size: clamp(1.05rem, 2.9vw, 1.3rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--accent);
  text-align: center;
}

.aging-vitality-figure {
  position: relative;
  width: 100%;
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
  padding: 0;
}

.aging-vitality-figure__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 920 / 520;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.12);
  background: linear-gradient(145deg, #ebe8e0 0%, #ddd9cf 100%);
}

.aging-vitality-figure__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aging-vitality-figure__caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: clamp(0.65rem, 2vw, 1rem) clamp(0.85rem, 3vw, 1.25rem);
  padding-right: 30%;
  font-size: clamp(0.95rem, 2.6vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  text-align: left;
  line-height: 1.35;
  max-width: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 240, 0.92) 0%,
    rgba(245, 245, 240, 0.55) 55%,
    transparent 100%
  );
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.lifestyle-gallery {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.lifestyle-gallery__item {
  margin: 0;
}

/* Lifestyle 2x2 layout (like screenshot) */
.lifestyle-block {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.lifestyle-block__title {
  text-align: center;
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
}

.lifestyle-block__title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.65rem auto 0;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.9;
}

.lifestyle-block__lead {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.25rem);
  font-size: 0.95rem;
}

.lifestyle-grid {
  display: grid;
  gap: clamp(1.25rem, 3.5vw, 2rem);
  align-items: center;
}

@media (min-width: 860px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lifestyle-grid__heading {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--accent);
}

.lifestyle-grid__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 26px rgba(45, 90, 39, 0.08);
}

@media (min-width: 860px) {
  .lifestyle-grid__media--second {
    order: 3;
  }
  .lifestyle-grid__text--second {
    order: 4;
  }
}

/* Yakuzen cards */
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.card-row {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 640px) {
  .card-row {
    grid-template-columns: minmax(0, 200px) 1fr;
  }
}

.card-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

ul.clean,
ol.clean {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

ul.clean li,
ol.clean li {
  margin-bottom: 0.5rem;
}

/* Ingredients grid */
.ingredients {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 520px) {
  .ingredients {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .ingredients {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 90, 39, 0.10);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.06);
  backdrop-filter: blur(2px);
}

.ingredient img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.ingredient__body {
  padding: 0.9rem 1rem 1.05rem;
  text-align: center;
}

.ingredient__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.ingredient__body p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.35);
}

table.compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: transparent;
  font-size: 0.9rem;
}

table.compare th,
table.compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid rgba(45, 90, 39, 0.10);
}

table.compare thead th {
  background: rgba(45, 90, 39, 0.92);
  color: #fff;
  font-weight: 600;
}

table.compare tbody th {
  background: rgba(255, 255, 255, 0.40);
  font-weight: 600;
  color: var(--text);
  width: 28%;
}

table.compare .highlight {
  background: rgba(232, 240, 230, 0.75);
}

/* How to use */
.how-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.how-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.how-notice {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-top: clamp(1rem, 2.5vw, 1.25rem);
  border-top: 1px solid rgba(45, 90, 39, 0.10);
}

.how-notice h3 {
  margin-top: 0;
  text-align: center;
}

/* Health advice split (image + lists) */
.health-grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.75rem);
  align-items: start;
}

@media (min-width: 768px) {
  .health-grid {
    grid-template-columns: minmax(0, 340px) 1fr;
  }
}

.health-grid__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.health-grid__body h3 {
  margin-top: 0;
}

.health-selfcare {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-top: clamp(1rem, 2.5vw, 1.25rem);
  border-top: 1px solid rgba(45, 90, 39, 0.10);
  max-width: 38rem;
  margin-inline: auto;
}

.health-selfcare h3 {
  text-align: center;
  margin-top: 0;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.faq-item[open] summary {
  border-bottom: 1px solid #eee;
}

.faq-item .faq-a {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item .faq-a::before {
  content: "A. ";
  font-weight: 700;
  color: var(--accent);
}

/* FAQ：Q / A 平铺（与折叠样式二选一使用） */
.faq-qa {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem 1.15rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-qa__q {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-qa__a {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-qa__mark {
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* Form */
.order-section {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

.order-title {
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
}

.order-title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.65rem auto 0;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.9;
}

.order-card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 8px 40px rgba(45, 90, 39, 0.1);
  max-width: 560px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label,
.form-label-block {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d8d8d0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .plan-options {
    flex-direction: row;
  }

  .plan-option {
    flex: 1;
    justify-content: center;
  }
}

.plan-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 2px solid #e0e0d8;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.plan-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.plan-option input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.plan-option__main {
  flex: 1;
}

.plan-option__title {
  font-weight: 700;
  color: var(--text);
}

.plan-option__price {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 700;
}

.plan-option__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.total-line {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--accent-soft);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.total-line span {
  color: var(--accent);
}

.order-note {
  font-size: 0.875rem;
  padding: 0.95rem 1.1rem;
  background: #fff6cf;
  border: 1px solid rgba(176, 146, 56, 0.35);
  border-radius: 10px;
  color: #6b5a20;
  margin-top: 1.15rem;
}

.order-card .btn--block {
  width: auto;
  min-width: 220px;
  margin-inline: auto;
  display: flex;
}

/* フッター：ナビ＋法務表示 */
.site-footer {
  margin-top: 0;
  border-top: 1px solid #e0e0d8;
  background: var(--bg);
}

.footer-nav {
  background: var(--white);
  border-bottom: 1px solid #e8e8e2;
}

.footer-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding: 1rem 0;
}

.footer-nav__link {
  color: var(--accent);
  font-size: clamp(0.8rem, 2.8vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 0.35rem 0.25rem;
  line-height: 1.4;
}

.footer-nav__link:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.footer-nav__sep {
  color: #c5c5bd;
  font-weight: 300;
  user-select: none;
}

@media (max-width: 640px) {
  .footer-nav__sep {
    display: none;
  }

  .footer-nav__inner {
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 0 1.15rem;
  }

  .footer-nav__link {
    width: 100%;
    max-width: 22rem;
  }
}

.footer-legal {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.footer-legal__inner {
  max-width: 42rem;
}

.legal-block {
  scroll-margin-top: 5.5rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  border-bottom: 1px solid #e0e0d8;
}

.legal-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block__title {
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
  line-height: 1.45;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
}

.legal-block__h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.35rem 0 0.5rem;
}

.legal-block__lead {
  font-size: 0.9rem;
}

.legal-block p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-list li {
  margin-bottom: 0.45rem;
}

.legal-list--nested {
  margin: 0.4rem 0 0;
  list-style-type: circle;
}

.legal-block__note {
  font-size: 0.8rem !important;
  color: #666 !important;
  margin-top: 1rem !important;
}

.legal-block__address {
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-mini {
  text-align: center;
  padding: 1.25rem 1rem 2rem;
  font-size: 0.8rem;
  color: #888;
  background: var(--bg);
}

/* ページ最下部：ポリシーリンクナビ */
.page-footer {
  margin-top: 0;
  border-top: 1px solid #e0e0d8;
  background: var(--white);
}

.page-footer__nav {
  border-bottom: 1px solid #ebe8e0;
  background: var(--white);
}

.page-footer__list {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0;
}

.page-footer__list > li {
  display: flex;
  align-items: center;
}

.page-footer__list > li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.9em;
  margin: 0 clamp(0.65rem, 2.5vw, 1.1rem);
  background: #d0d0c8;
  flex-shrink: 0;
}

.page-footer__link {
  color: var(--accent);
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.15rem;
  line-height: 1.45;
}

.page-footer__link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-footer__bottom {
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.page-footer__copy {
  text-align: center;
  padding: 1.15rem 1rem 2rem;
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 640px) {
  .page-footer__list {
    flex-direction: column;
    padding: 1rem 0 1.1rem;
    gap: 0.2rem;
  }

  .page-footer__list > li + li::before {
    display: none;
  }

  .page-footer__link {
    display: block;
    width: 100%;
    max-width: 20rem;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
  }

  .page-footer__link:active {
    background: var(--accent-soft);
  }
}

/* 個人情報取扱方針などの静的ページ */
.policy-page {
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2rem, 6vw, 3.5rem);
  background: var(--bg);
  min-height: 50vh;
}

.policy-page__inner {
  max-width: 42rem;
}

.policy-page__kicker {
  margin: 0 0 0.35rem;
  font-size: clamp(0.8rem, 2.2vw, 0.875rem);
  color: #666;
  text-align: center;
  line-height: 1.5;
}

.policy-page__title {
  margin: 0 0 clamp(1.25rem, 4vw, 2rem);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.35;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--accent-soft);
}

.policy-body {
  background: var(--white);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.policy-body__lead {
  font-size: clamp(0.875rem, 2.4vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.policy-section {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.policy-section:last-of-type {
  margin-bottom: 0;
}

.policy-section__h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.policy-section p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.875rem, 2.4vw, 0.9375rem);
  line-height: 1.85;
  color: var(--text-muted);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: clamp(0.875rem, 2.4vw, 0.9375rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.policy-list li {
  margin-bottom: 0.4rem;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list--nested {
  margin: 0.4rem 0 0;
  list-style-type: circle;
}

.policy-list--tight-top {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.policy-page__disclaimer {
  margin: 1rem 0 0;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  line-height: 1.75;
  color: #666;
}

.policy-company-line {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
}

.policy-address {
  margin: 0;
  font-size: clamp(0.9375rem, 2.6vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-muted);
}

.policy-back {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 0;
  text-align: center;
}

.page-footer__link[aria-current="page"] {
  color: var(--text-muted);
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
