@charset "UTF-8";

/* ==========================================================================
   Variables & Mixins (Intrinsic Design)
   ========================================================================== */
:root {
  /* ==========================================================================
     Design Tokens (Source: design-tokens.json)
     ========================================================================== */

  /* Brand Colors (Aqua Palette) */
  --c-whispering-aqua: #86E1DF;
  --c-cloud-aqua: #D1F7FA;
  --c-breeze-aqua: #C6F0F2;
  --c-faint-aqua: #EBFDFD;
  --c-angel-aqua: #FAFFFF;
  --c-sunbeam: #FFF684;
  --c-text: #546372;
  --c-text-muted: rgba(84, 99, 114, 0.8);
  --c-white: #FFFFFF;

  /* Legacy aliases for compatibility */
  --c-accent: var(--c-whispering-aqua);
  --c-accent-light: var(--c-cloud-aqua);
  --c-accent-dark: #66C0B8;
  /* Keeping for now */
  --c-main: var(--c-white);

  /* Typography */
  --font-sans: "Inter", sans-serif;
  /* 数字・UIパーツ用サンセリフ */
  --font-serif: "SerifNumbers", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  --font-base: var(--font-serif);
  /* 本文を明朝体に統一 */

  /* Fluid Typography (clamp) */
  --fz-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
  --fz-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --fz-base: clamp(1rem, 0.95rem + 0.25vw, 1.05rem);
  --fz-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.4rem);
  --fz-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fz-2xl: clamp(2rem, 1.8rem + 1.5vw, 2.75rem);
  --fz-3xl: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);

  /* Fluid Spacing Scale */
  --sp-2xs: 4px;
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 64px;
  --sp-3xl: clamp(80px, 10vw, 120px);

  /* Layout & Decor */
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 30px rgba(134, 225, 223, 0.15);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);

  /* Officer (Director) Photos - Stabilized Size */
  --officer-circle-size: clamp(280px, 30vw, 380px);
}

/* ==========================================================================
   Global & Common
   ========================================================================== */

/* 固定ヘッダー分のアンカーオフセット */
html {
  scroll-padding-top: clamp(56px, 7vw, 72px);
}

/* アンカー対象セクションのスクロールオフセット */
[id] {
  scroll-margin-top: clamp(56px, 7vw, 72px);
}

body {
  color: var(--c-text);
  font-family: var(--font-serif);
  font-size: var(--fz-base);
  line-height: 1.8;
  background-color: var(--c-main);
}

/* 
   数字のクセ（オールドスタイル）を物理的に回避するための強力な直接指定 
   Georgia は殆どのPCに標準搭載されており、数字が「かっちり」揃います。
*/
/* 
   数字のクセを解消し、かつ「位置（ベースライン）のズレ」を完全に防ぐための指定 
   サイト全体の本文フォントである Inter を数字に優先適用することで、
   かっちりとした印象と、完璧な上下の整列を両立させます。
*/
h1,
h2,
h3,
h4,
h5,
h6,
.c-section-title,
.p-promises-card__num,
.p-history__date,
.p-representative__lead {
  /* 
     数字専用の「SerifNumbers (Interベース)」を最優先に。
     これにより数字だけが Inter で表示され、文字や日本語は Playfair で表示されます。
  */
  font-family: "SerifNumbers", var(--font-serif) !important;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* 数字のみを Inter（サンセリフ）に差し替えるための専用設定 */
@font-face {
  font-family: "SerifNumbers";
  src: local("Inter"), local("sans-serif");
  unicode-range: U+0030-0039;
  /* 0-9の数字のみを対象にする */
}



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

.l-main {
  overflow-x: hidden;
  /* For organic shapes extending outside */
  width: 100%;
}

.c-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-sm);
}

.c-section {
  padding-block: var(--sp-lg);
  position: relative;
}

.c-section-title {
  font-size: var(--fz-xl);
  text-align: center;
  margin-bottom: var(--sp-md);
  color: var(--c-text);
  position: relative;
  display: block;
}

/* 2行にスタックされたカッコいいタイトルデザイン */
.c-section-title.--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  line-height: 1.2;
}

.c-section-title__sub {
  font-size: var(--fz-base);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-accent-dark);
  display: block;
}

.c-section-title__main {
  font-size: var(--fz-xl);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  position: relative;
  padding-bottom: var(--sp-sm);
}

.c-section-title__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--c-accent);
}



.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2.5em;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: var(--fz-base);
}

/* 繋がった美しい一本の線（ダッシュ）を表現する共通クラス */
.c-long-dash {
  display: inline-block;
  vertical-align: middle;
  width: 1.5em;
  height: 1px;
  background-color: currentColor;
  margin-right: 0.4em;
  opacity: 0.8;
}

.c-btn--outline {
  border: 2px solid var(--c-accent);
  color: var(--c-accent-dark);
  background: transparent;
}

.c-btn--outline:hover {
  background: var(--c-accent);
  color: #fff;
}

.c-btn--white {
  background: #fff;
  color: var(--c-accent);
}

/* ホワイトボタン ホバー時：暗くしない */
.c-btn--white:hover {
  background: #fff;
}

/* ==========================================================================
   1. Hero Section (Refined Layout)
   ========================================================================== */
/* ==========================================================================
   1. Hero Section (Refined: Reference Image Layout)
   ========================================================================== */
/* ==========================================================================
   1. Hero Section (Refined: Aqua Depth)
   ========================================================================== */
.p-hero {
  /* 立体感を出すための多層グラデーション */
  background: radial-gradient(circle at 30% 40%,
      var(--c-angel-aqua) 0%,
      var(--c-faint-aqua) 40%,
      var(--c-cloud-aqua) 80%,
      var(--c-breeze-aqua) 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* p-hero__inner determines the full height formatting */
}

/* Background Large Heart (Top Right) */
.p-hero::before {
  content: "";
  position: absolute;
  /* 座標を clamp で定義：PCでは left:-10%, モバイルでは右端付近へ流動的に移動 */
  top: clamp(0%, 2vw, 5%);
  left: clamp(-10%, 10vw - 20%, 5%);
  width: clamp(100vw, 120vw, 1400px);
  height: clamp(100vw, 120vw, 1400px);

  /* 重なりと奥行きを表現 */
  background: linear-gradient(135deg, var(--c-breeze-aqua) 0%, var(--c-whispering-aqua) 100%);
  opacity: 0.6;
  filter: drop-shadow(0 20px 50px rgba(134, 225, 223, 0.2));

  clip-path: url(#bg-heart-clip);
  transform: rotate(5deg);
  pointer-events: none;
  z-index: 0;
}

.p-hero__inner {
  min-height: 100vh;
  /* 画面いっぱいの高さを最低限確保する */
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  /* 右パネルはabsolute配置のため左列のみ */
  gap: clamp(1rem, 4vw, 3rem);
  /* height を確定させることで align-self: end が確実に機能する */
  height: min(100vh, 1000px);
  padding-block-start: clamp(0rem, 10vh, 6rem);
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--layout-max-width, 1280px)。;
  margin-inline: auto;
  box-sizing: border-box;
}

/* Left Column: Visual Area (Container for Catch) */
.p-hero__visual {
  position: absolute;
  /* 背景レイヤーとして固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* 重ね順のベースを低く設定 */
  pointer-events: none;
  /* 背面画像がクリックを邪魔しないように設定 */
}

/* ★ Giant Heart Image (Absolute Positioned) ★ */
.p-hero__image-wrapper {
  position: absolute;
  /* Remove from grid flow */
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(-5deg);

  width: min(120vw, 130vh);
  max-width: 1800px;
  aspect-ratio: 1.1 / 1;

  clip-path: url(#hero-heart-clip);
  background-color: var(--c-cloud-aqua);
  overflow: hidden;
  /* 画像自体にも奥行きのある影を追加 */
  filter: drop-shadow(0 30px 60px rgba(0, 50, 60, 0.15));
  z-index: -1;
  /* Behind text and nav */
  pointer-events: none;
}

@media (max-width: 900px) {
  .p-hero__image-wrapper {
    width: 140vw !important;
    /* 画面幅を突き抜ける巨大なハート */
    max-width: none !important;
    top: 25%;
    /* さらに上へ引き上げ */
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    /* 回転を強めて躍動感をUP */
  }
}

.p-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.p-hero__catch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  margin-top: -15rem;
  margin-inline-start: clamp(0rem, 16vw - 288px, 6rem);
  max-width: clamp(400px, 58%, 720px);
  gap: var(--sp-md);
  z-index: 20;
}


@media (max-width: 900px) {
  .p-hero__catch-wrapper {
    margin-top: clamp(4rem, 15vw, 8rem);
    margin-bottom: var(--sp-md);
  }
}

.p-hero__catch {
  /* vw と vh の小さい方に追従 → 縦が短い画面でも自然に縮小 */
  font-size: clamp(2rem, min(7vw + 0.5rem, 9vh), 5.5rem);
  font-family: var(--font-serif);
  color: var(--c-text);
  line-height: 1.5;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
  /* 改行コード以外での折り返しを禁止 */
  width: auto;
  display: block;
  /* 背景を削除し文字のみの表示に変更 */
  background: transparent;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.6);
  display: block;
}

.p-hero__catch-secondary {
  display: block;
  font-size: clamp(1.1rem, min(3.5vw, 4.5vh), 2.5rem);
  margin-top: var(--sp-sm);
  font-weight: 700;
  opacity: 0.9;
  white-space: nowrap;
  /* 改行コード以外での折り返しを禁止 */
}

.p-hero__sub {
  display: inline-block;
  font-size: clamp(0.875rem, 2vw + 0.5rem, var(--fz-base));
  font-weight: 900 !important;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-faint-aqua);
  box-shadow: 0 15px 35px rgba(134, 225, 223, 0.2);
  line-height: 1.6;
  text-align: left;
  white-space: nowrap;
}

.p-hero__sub-wrapper {
  margin-bottom: var(--sp-xs);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  /* PCでは右寄せ */
  transform: translateY(40px);
}

/* Right Column Panel Container */
.p-hero__right-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-md);
  /* .p-hero__inner (position: relative / height: min(100vh,1000px)) を基準に右下固定 */
  position: absolute;
  bottom: clamp(2rem, 5vh, 80px);
  right: clamp(1rem, 10vw, 10rem);
  width: clamp(220px, 30%, 380px);
  container-type: inline-size;
  container-name: hero-panel;
  pointer-events: none;
}

.p-hero__right-panel>* {
  pointer-events: auto;
  /* Re-enable clicks for actual elements */
}

/* Right Column: Navigation Panel (Fixed Width) */
.p-hero__nav {
  background: linear-gradient(to bottom right, var(--c-white), var(--c-angel-aqua));
  padding: clamp(1.25rem, 3cqw, 2.5rem);
  /* コンテナ幅(cqw)に連動 */
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(134, 225, 223, 0.25);
  border: 1px solid var(--c-faint-aqua);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--sp-xs), 2cqw, var(--sp-sm));

  width: 100%;
  position: relative;
  z-index: 30;
}

/* コンテナが狭い場合の自律的な調整 */
@container hero-panel (max-width: 350px) {
  .p-hero__nav {
    padding: 1rem;
    gap: var(--sp-xs);
  }

  .p-nav-card__icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Inner Navigation Item Style (Reference: Icon + Color Bar + Text) */
.p-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: var(--sp-xs);
  transition: transform 0.3s ease;
  aspect-ratio: auto;
  /* Remove explicit square ratio */
}

.p-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
  /* Layout shift primarily */
  border: none;
}

/* ナビゲーションカードのアイコン設定 */
.p-nav-card__icon {
  color: var(--c-text-muted);
  /* 柔らかいテキストカラーでシンプルなアイコン表示 */
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* タイトルバーの基本設定 */
.p-nav-card__target {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: var(--fz-sm);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  /* 小さな角丸 */
  margin-bottom: 0;
}

/* アイコンバーのカラーバリエーション（優しいパステルカラー） */
/* 一般・個人の方：柔らかいペールイエロー */
.p-nav-card--1 .p-nav-card__target {
  background-color: #FFF9E6;
  color: var(--c-text);
}

.p-nav-card--2 .p-nav-card__target {
  background-color: #E6F4F9;
  /* 柔らかいペールブルー */
  color: var(--c-text);
}

/* 行政・施設・法人の方：柔らかいミントグリーン */
.p-nav-card--3 .p-nav-card__target {
  background-color: #EBF7E3;
  color: var(--c-text);
}

.p-nav-card--4 .p-nav-card__target {
  background-color: #FCEEF0;
  /* 柔らかいペールピンク */
  color: var(--c-text);
}

.p-nav-card__desc {
  font-size: var(--fz-xs);
  color: var(--c-text);
  line-height: 1.4;
  font-weight: 700;
}

/* モバイル：画像ラッパーのみ調整（グリッド上書きなし） */
@media (max-width: 600px) {
  .p-hero__image-wrapper {
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
  }
}

/* ============================================================
   タブレット・小型PC（iPad横〜1300px）
   absolute配置を解除し、2カラムGridに切り替えて重なりを防ぐ
   ============================================================ */
@media (min-width: 769px) and (max-width: 1300px) {

  .p-hero .p-hero__inner {
    grid-template-columns: 1fr clamp(260px, 32%, 340px);
    align-items: center;
    height: min(100vh, 1000px);
    padding-block: clamp(3rem, 6vh, 5rem) clamp(2rem, 4vh, 3rem);
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  /* グリッドアイテムがmin-width:autoで溢れるのを防ぐ */
  .p-hero__catch-wrapper,
  .p-hero__right-panel {
    min-width: 0;
  }

  .p-hero__catch {
    font-size: clamp(1.8rem, min(5.5vw, 7.5vh), 4rem);
    white-space: nowrap;
  }

  .p-hero__catch-secondary {
    white-space: nowrap;
  }

  .p-hero__catch-wrapper {
    margin-top: 0;
    margin-inline-start: 0;
    max-width: 100%;
    align-self: start;
    padding-top: clamp(2rem, 6vh, 5rem);
  }

  /* サブテキストは折り返して右パネル内に収める */
  .p-hero__sub {
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
  }

  .p-hero__right-panel {
    position: static;
    width: 100%;
    align-self: end;
    align-items: stretch;
    gap: var(--sp-sm);
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    overflow: hidden;
  }

  .p-hero__sub-wrapper {
    justify-content: flex-end;
    transform: none;
  }

  /* ナビカードの説明文も折り返して収める */
  .p-nav-card__desc {
    white-space: normal;
    word-break: break-all;
  }
}

/* ============================================================
   縦が短いワイド画面（高さ800px以下 × 幅769px以上）
   ノートPCの低解像度・iPad横などで高さが足りない場合の追加縮小
   ============================================================ */
@media (min-width: 769px) and (max-height: 800px) {

  .p-hero .p-hero__inner {
    height: 100vh;
    padding-block: clamp(2.5rem, 5vh, 4rem) clamp(1rem, 3vh, 2rem);
  }

  .p-hero__sub {
    padding: 0.6rem 1rem;
  }
}

/* ============================================================
   モバイルレイアウト（768px以下）
   PC表示には一切影響しない
   ============================================================ */
@media (max-width: 768px) {

  /* セクション自体のmin-heightを解除 */
  .p-hero {
    min-height: unset;
  }

  /* ヒーロー内コンテナ：固定高さ → コンテンツ高さに追従 */
  .p-hero .p-hero__inner {
    height: auto;
    min-height: unset;
    padding-block: clamp(5rem, 12vw, 7rem) 0;
    gap: 5rem;
  }

  /* メインコピー：折り返し許可・負のmarginリセット */
  .p-hero__catch-wrapper {
    margin-top: 0;
    margin-inline-start: 0;
    max-width: 100%;
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .p-hero__catch,
  .p-hero__catch-secondary {
    white-space: normal;
  }

  /* 右パネル：absoluteを解除してフロー内に戻す */
  .p-hero__right-panel {
    position: static;
    width: 100%;
    align-items: center;
    padding-inline: clamp(1rem, 5vw, 2rem);
    padding-bottom: clamp(2rem, 8vw, 3.5rem);
  }

  /* サブテキスト見出し：中央寄せ */
  .p-hero__sub-wrapper {
    justify-content: center;
    transform: none;
  }
}


/* ==========================================================================
   3. Thoughts Section (Green-Yellow Heart)
   ========================================================================== */
.p-thoughts {
  position: relative;
  background-color: var(--c-white);
  /* Increase padding significantly for impressive look */
  padding-block: clamp(6rem, 15vw, 12rem);
  overflow: hidden;
}

/* Specific Gradient Heart for this section */
.p-thoughts__bg-heart {
  position: absolute;
  top: 50%;
  right: 15%;
  /* Move towards center to overlap text */
  transform: translateY(-50%) rotate(10deg);
  width: 70vw;
  /* Increase size */
  height: 70vw;
  max-width: 900px;
  max-height: 900px;

  /* Green to Yellow Gradient as requested */
  background: linear-gradient(135deg, var(--c-whispering-aqua) 0%, var(--c-sunbeam) 100%);
  opacity: 0.2;
  /* Slightly more visible but still background */

  clip-path: url(#bg-heart-clip);
  pointer-events: none;
  z-index: 0;
}

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

.p-thoughts__content {
  max-width: 600px;
  margin-inline-start: clamp(0px, 10vw, 190px);
}

.p-thoughts__title {
  font-size: var(--fz-xl);
  font-family: var(--font-base);
  margin-bottom: var(--sp-lg);
  color: var(--c-text);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-thoughts__text-box {
  /* Removed background and padding as per request */
  background: transparent;
  padding: 0;
}

.p-thoughts__text {
  font-size: var(--fz-base);
  line-height: 2.2;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
}

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

/* ==========================================================================
   3.1 Promises Section (私たちが約束する「3つの価値」)
   ========================================================================== */
.p-promises {
  background-color: var(--c-faint-aqua);
  padding-block: var(--sp-2xl);
}

.p-promises__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.p-promises__lead {
  font-size: var(--fz-md);
  color: var(--c-text);
  line-height: 1.8;
  margin-top: var(--sp-sm);
}

.p-promises__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
  container-type: inline-size;
  container-name: promises;
}

.p-promises-card {
  background-color: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  margin-top: 24px;
}

.p-promises-card:hover {
  transform: translateY(-5px);
}

.p-promises-card__num {
  position: absolute;
  top: -24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--c-accent);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--fz-xl);
  font-weight: 700;
  font-family: var(--font-serif);
  /* ここで SerifNumbers が適用されます */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  box-shadow: 0 4px 10px rgba(134, 225, 223, 0.4);
}

.p-promises-card__title {
  font-size: var(--fz-lg);
  /* 活動沿革の西暦年（.p-history__date）と同じカラー変数で統一 */
  color: var(--c-accent-dark);
  margin-bottom: var(--sp-sm);
  line-height: 1.5;
}

.p-promises-card__text {
  font-size: var(--fz-sm);
  line-height: 1.8;
  color: var(--c-text);
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   3.5 History Section (活動沿革セクション)
   ========================================================================== */
.p-history {
  padding-block: var(--sp-2xl);
  background: var(--c-white);
}

.p-history__list {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.p-history__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-bottom: 1px dotted var(--c-accent-light);
  align-items: baseline;
}

.p-history__item:last-child {
  border-bottom: none;
}

.p-history__date {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--c-accent-dark);
  font-size: var(--fz-md);
  white-space: nowrap;
  min-width: clamp(80px, 12vw, 120px);
}

.p-history__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.p-history__event {
  font-size: var(--fz-lg);
  color: var(--c-text);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.p-history__desc {
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.8;
  margin: 0;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .p-history__item {
    grid-template-columns: 1fr;
    gap: var(--sp-xs);
    padding: var(--sp-sm) 0;
  }
}

/* ==========================================================================
   2. About Section
   ========================================================================== */
.p-about {
  background: #FCFCFC;
  /* Very subtle grey/white */
  padding-block: var(--sp-xl, 6rem);
}

.p-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.p-about__text {
  padding-right: var(--sp-md);
}

.p-about__emphasis {
  display: block;
  font-family: var(--font-serif) !important;
  font-size: clamp(1.3em, 3vw, 1.5em);
  margin-bottom: 0.5rem;
  color: inherit;
}

.p-about__label {
  display: block;
  font-size: 0.9rem;
  color: var(--c-accent);
  /* Tiffany Blue or reddish as per ref? Sticking to brand for now */
  font-weight: 700;
  margin-bottom: var(--sp-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-about__title {
  font-size: var(--fz-xl);
  font-family: var(--font-base);
  color: var(--c-text);
  line-height: 1.4;
  margin-bottom: var(--sp-md);
  font-weight: 700;
}

.p-about__map {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-faint-aqua);
  box-shadow: 0 20px 40px rgba(134, 225, 223, 0.15);
  display: block;
}

.p-about__lead {
  font-size: var(--fz-xl);
  font-family: var(--font-serif);
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}

.p-about__desc p {
  margin-bottom: var(--sp-sm);
  font-size: var(--fz-base);
  color: #666;
  line-height: 1.8;
}

.p-about__btn {
  margin-top: var(--sp-sm);
}

/* Image Grid (Placeholder Layout) */
.p-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 cols */
  gap: var(--sp-sm);
  height: 100%;
}

.p-about__img-grid-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.p-about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background-color: #eee;
  /* Placeholder bg */
}

/* Specific sizing to match reference:
   Col 1: 2 stacked images. Col 2: 1 tall image.
*/
.p-about__img--1 {
  aspect-ratio: 4/3;
}

.p-about__img--2 {
  aspect-ratio: 1/1;
}

.p-about__img--3 {
  height: 100%;
  aspect-ratio: 3/4;
}

/* Responsive */
@media (max-width: 900px) {
  .p-about__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .p-about__text {
    padding-right: 0;
    text-align: left;
  }
}

/* ==========================================================================
   3. Concept Section (Heart Background w/ Overlap)
   ========================================================================== */
.p-concept {
  padding-block: var(--sp-xl, 8rem);
  position: relative;
  overflow: hidden;
  /* Allows heart to be cut off */
}

/* Large Heart Background - Positioned Right */
.p-concept::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  /* Anchored to right */
  left: auto;
  /* Override previous center/left logic */
  transform: translateY(-50%) rotate(-10deg);
  width: 600px;
  height: 600px;
  background-color: var(--c-accent);
  clip-path: path("M250,500 C50,300 -50,150 50,50 C150,-50 250,100 250,100 C250,100 350,-50 450,50 C550,150 450,300 250,500 Z");
  opacity: 1;
  /* Solid per request/reference implies strong color */
  z-index: 0;
}

@media (min-width: 1000px) {
  .p-concept::before {
    width: 60vw;
    height: 60vw;
    right: -10%;
    max-width: none;
    max-height: none;
  }
}



/* ==========================================================================
   2. Origin Section (New)
   ========================================================================== */
.p-origin {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--c-main) 0%, var(--c-aqua-faint) 100%);
  padding-bottom: var(--sp-lg);
}

.p-origin__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  align-items: center;
}

.p-origin__content {
  padding: var(--sp-md);
}

.p-origin__label {
  display: inline-block;
  color: var(--c-accent);
  font-family: var(--font-serif);
  /* Kiwi Maru */
  margin-bottom: var(--sp-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-origin__title {
  font-family: var(--font-serif);
  font-size: var(--fz-xl);
  line-height: 1.4;
  margin-bottom: var(--sp-md);
  color: var(--c-text);
}

.p-origin__text {
  font-size: var(--fz-lg);
  line-height: 2;
  color: var(--c-text);
}

.p-origin__text strong {
  background: linear-gradient(transparent 60%, var(--c-sunbeam) 60%);
  font-weight: 700;
}

.p-origin__image {
  position: relative;
}

.p-origin__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* Soft rounding */
  box-shadow: 20px 20px 0 var(--c-aqua-cloud);
  /* Offset accent */
}

@media (max-width: 768px) {
  .p-origin__inner {
    grid-template-columns: 1fr;
  }

  .p-origin__image {
    order: -1;
    /* Image first on mobile? Or text first? Let's keep text first for reading flow */
    margin-top: var(--sp-md);
  }
}

/* ==========================================================================
   4. Values Section (Refined Design)
   ========================================================================== */
.p-values {
  background-color: var(--c-faint-aqua);
  padding-top: var(--sp-xl);
  padding-bottom: 6rem;
}

.p-values__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  margin-bottom: var(--sp-2xl);
}

@media (max-width: 900px) {
  .p-values__header {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
}

.p-values__title {
  font-size: var(--fz-xl);
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-text);
}

/* Handwritten style underline */
.p-values__highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}

.p-values__highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-text);
  border-radius: 2px;
  /* Simulate handwritten curve could be added with SVG or clip-path if needed */
  transform: rotate(-0.5deg);
}

.p-values__desc {
  font-size: var(--fz-base);
  line-height: 2.0;
  color: var(--c-text);
  font-weight: 500;
}

.p-values__content {
  position: relative;
  padding-top: 4rem;
  /* Space for the bg shape top interaction */
}



.p-values__cards {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  padding: var(--sp-lg) 0;
}

.p-values-card {
  width: 280px;
  height: 260px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.p-values-card__heart {
  width: 100%;
  height: 100%;
  background-color: var(--c-cloud-aqua);
  /* Use Aqua for brand consistency, or could use faint pink */
  /* To match reference PINK: background-color: #F8D0E0; */
  /* Let's stick to brand: */
  background: radial-gradient(circle at 30% 30%, var(--c-whispering-aqua), var(--c-breeze-aqua));

  clip-path: path("M140,260 C20,-20 -80,80 140,260 M140,260 C260,-20 360,80 140,260");
  /* A simple symmetric heart path. Let's try a standard one scaled to 280x260 */
  /* Improved Path for 280x260 container: */
  clip-path: path("M140,250 C40,160 -40,80 20,30 C70,-15 130,20 140,40 C150,20 210,-15 260,30 C320,80 240,160 140,250 Z");

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--c-text);
  transition: transform 0.3s ease;
}

.p-values-card:hover .p-values-card__heart {
  transform: scale(1.05);
}

.p-values-card__keyword {
  font-size: var(--fz-lg);
  font-weight: 700;
  margin-bottom: var(--sp-text-sm);
}

.p-values-card__divider {
  width: 40px;
  height: 2px;
  background-color: var(--c-text);
  margin-bottom: var(--sp-text-sm);
}

.p-values-card__category {
  font-size: var(--fz-md);
  margin-bottom: var(--sp-sm);
  font-weight: 700;
}

.p-values-card__more {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s;
}

.p-values-card__more:hover {
  background-color: var(--c-white);
}

/* ==========================================================================
   5. Trusted Partners Section
   ========================================================================== */
.p-partners {
  background-color: #FDFCF8;
  /* Continuous Beige */
  padding-bottom: var(--sp-2xl);
}

.p-partners__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.p-partners__subtitle {
  display: block;
  font-size: var(--fz-sm);
  color: #E67A7A;
  /* Coral Pink matching reference */
  font-weight: 700;
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.05em;
}

.p-partners__title {
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--c-text);
}

.p-partners__legend {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.p-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  color: var(--c-text);
  background-color: #fff;
}

.p-tag--green {
  color: #8DBF6A;
}

.p-tag--blue {
  color: #6EA8C2;
}

.p-tag--orange {
  color: #E5A55B;
}

/* Grid Layout */
.p-partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.p-partners__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
}


.p-partner-card__figure {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--sp-sm);
  background-color: #ddd;
}

.p-partner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p-partner-card:hover .p-partner-card__img {
  transform: scale(1.05);
}

.p-partner-card__body {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.p-partner-card__name {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--c-text);
  margin-right: auto;
  /* Push icons to right */
}

.p-partner-card__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #FFE6D0;
  /* Pale orange arrow bg */
  color: #E5A55B;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.p-partner-card__link:hover {
  background-color: #FFD0A0;
}

.p-partner-card__tags {
  display: flex;
  gap: 4px;
}

.p-icon-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff;
  font-size: 1rem;
}

.p-icon-tag--green {
  background-color: #8DBF6A;
  color: #fff;
}

.p-icon-tag--blue {
  background-color: #6EA8C2;
  color: #fff;
}

.p-icon-tag--orange {
  background-color: #E5A55B;
  color: #fff;
}

/* Large Card Specifics */
.p-partner-card--lg .p-partner-card__figure {
  aspect-ratio: 16/9;
}

/* Small Card Specifics (List items) */
.p-partner-card--sm {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.p-partner-card--sm .p-partner-card__figure {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  margin-bottom: 0;
  aspect-ratio: 1/1;
}

.p-partner-card--sm .p-partner-card__body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   4. Service Section (Refined)
   ========================================================================== */
.p-service__card--main {
  桜何してんの
  /* Emphasize the main B2B service card if needed, e.g., larger or distinct border */
  border-color: var(--c-accent);
  background-color: var(--c-aqua-angel);
}

.p-service__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-sm);
}

.c-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   4. Service Section (Container Queries)
   ========================================================================== */
.p-service {
  container-type: inline-size;
  container-name: service;
}

.p-service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.p-service__card {
  background: #fff;
  border: 1px solid var(--c-accent-light);
  border-radius: 16px;
  padding: var(--sp-md);
  text-align: center;
  transition: box-shadow 0.3s;
}

.p-service__card:hover {
  box-shadow: 0 10px 30px rgba(129, 216, 208, 0.2);
}

.c-card__icon-wrapper {
  margin: 0 auto var(--sp-sm);
  /* Center horizontally */
  width: 80px;
  /* Adjust size mostly */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-card__icon-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.c-card__title {
  font-size: var(--fz-lg);
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
}

.c-card__text {
  margin-bottom: var(--sp-md);
  font-size: 0.95rem;
}

/* ==========================================================================
   5. Track Record Section (List)
   ========================================================================== */
.p-track-record__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
  padding: 0;
  list-style: none;
}

.p-track-record__tag {
  background: var(--c-white);
  color: var(--c-accent);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: var(--fz-sm);
  font-weight: 600;
  border: 1px solid var(--c-accent-light);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  box-shadow: 0 4px 12px rgba(134, 225, 223, 0.1);
}

.p-track-record__tag:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(134, 225, 223, 0.3);
  border-color: var(--c-accent);
}

/* 活動実績リスト（ライン区切りシンプル形式） */
.p-track-record__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 400px;
  text-align: left;
}

.p-track-record__item {
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--c-accent);
  font-size: var(--fz-base);
  color: var(--c-text);
}

.p-track-record__item:first-child {
  border-top: 1px solid var(--c-accent);
}

/* ==========================================================================
   6. Certified Salon Section (認定サロンセクション)
   ========================================================================== */
.p-salon {
  position: relative;
  padding-block: var(--sp-3xl) calc(var(--sp-2xl) * 1.5);
  background: var(--c-white);
  /* 白セクションと同等のベース */
  overflow: hidden;
}

/* 背面に浮かぶ発光オーブ（アクア） */
.p-salon::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--c-whispering-aqua) 0%, rgba(134, 225, 223, 0) 70%);
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* 背面に浮かぶ発光オーブ（イエロー） */
.p-salon::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 45vw;
  height: 45vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, var(--c-sunbeam) 0%, rgba(255, 246, 132, 0) 70%);
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

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

.p-salon__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.p-salon__chara {
  width: clamp(120px, 16vw, 200px);
  height: auto;
  margin-top: 0;
}

.p-salon__lead {
  font-size: var(--fz-md);
  color: var(--c-text);
  line-height: 1.8;
  margin-top: 0;
}

.p-salon__cards {
  display: flex;
  justify-content: center;
}

.p-salon-card {
  width: 100%;
  max-width: 440px;
  /* 本格的なグラスモーフィズム（透明感と光沢）の演出 */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* ガラスの縁にハイライトを入れる */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  /* 内側の白い輝きと、外側の影 */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  transition: transform 0.3s ease;
}

.p-salon-card:hover {
  transform: translateY(-5px);
}

.p-salon-card__title {
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--c-accent);
  margin: 0;
  letter-spacing: 0.05em;
}

.p-salon-card__text {
  font-size: var(--fz-md);
  color: var(--c-text);
  margin: 0;
  font-weight: 500;
}

.p-salon-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 3rem;
  background-color: var(--c-sunbeam);
  color: var(--c-text);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 2px solid var(--c-text);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 246, 132, 0.4);
}

.p-salon-card__btn:hover {
  background-color: var(--c-accent-dark);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(84, 99, 114, 0.35);
}

/* レスポンシブ調整（スマホ表示） */
@media (max-width: 600px) {
  .p-salon-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   7. FAQ Section (よくある質問セクション)
   ========================================================================== */
.p-faq {
  position: relative;
  background: var(--c-white);
  padding-block: var(--sp-3xl);
  overflow: hidden;
}

/* 認定協会員セクションと同じ：アクアオーブ（左上） */
.p-faq::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 70vw;
  height: 70vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle, var(--c-whispering-aqua) 0%, rgba(134, 225, 223, 0) 70%);
  filter: blur(60px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

/* 認定協会員セクションと同じ：イエローオーブ（右下） */
.p-faq::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 75vw;
  height: 75vw;
  max-width: 1100px;
  max-height: 1100px;
  background: radial-gradient(circle, var(--c-sunbeam) 0%, rgba(255, 246, 132, 0) 70%);
  filter: blur(60px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.p-faq__list {
  position: relative;
  z-index: 1;
  /* オーブ疑似要素より前面に */
  container-type: inline-size;
  container-name: faq;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 800px;
  margin-inline: auto;
}

.p-faq__item {
  /* すべての質問ボックスに、はっきりと分かる淡いアクア色を適用 */
  background-color: var(--c-faint-aqua) !important;
  border-radius: var(--radius-md);
  border: 1px solid rgba(134, 225, 223, 0.3);
  box-shadow: 0 4px 15px rgba(134, 225, 223, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.p-faq__item[open] {
  box-shadow: 0 10px 30px rgba(134, 225, 223, 0.15);
}

.p-faq__question {
  /* 質問部分のレイアウト */
  list-style: none;
  /* デフォルトの矢印を非表示 */
  cursor: pointer;
  padding: var(--sp-md) var(--sp-lg);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: var(--font-serif);
  /* 明朝体 */
  font-size: var(--fz-lg);
  color: var(--c-text);
  position: relative;
}

/* 質問部分のホバー */
.p-faq__question:hover {
  background-color: rgba(134, 225, 223, 0.1);
}


/* カスタム矢印アイコン */
.p-faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  background-color: var(--c-accent-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* 横線 */
.p-faq__icon::before {
  width: 14px;
  height: 2px;
}

/* 縦線（閉じている時だけ表示） */
.p-faq__icon::after {
  width: 2px;
  height: 14px;
}

/* 開いている時のアイコンアニメーション */
.p-faq__item[open] .p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-faq__answer {
  /* 回答部分のレイアウト */
  padding: var(--sp-lg) var(--sp-lg);
  font-size: 14px;
  /* 詳細文を14pxに固定 */
  line-height: 1.8;
  color: var(--c-text);
  background-color: var(--c-white);
  /* 回答エリアを白にする */
  /* 質問と回答の間に細い区切り線を追加 */
  border-top: 1px solid var(--c-faint-aqua);
  margin-top: 4px;
}

.p-faq__answer strong {
  font-size: var(--fz-base);
  /* 結論部分は元の大きさを維持 */
  color: var(--c-text);
}

.p-faq__answer p {
  margin: 0;
}

/* コンテナクエリを使用したレスポンシブ調整 */
@container faq (min-width: 600px) {
  .p-faq__question {
    padding: var(--sp-lg);
    font-size: var(--fz-lg);
  }

  .p-faq__answer {
    padding: var(--sp-lg) var(--sp-lg);
  }
}

/* ==========================================================================
   8. Representative Section (Aura)
   ========================================================================== */
.p-representative {
  padding-block: var(--sp-3xl) var(--sp-2xl);
  /* 上下の余白を大幅に増加 */
}

.p-representative__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
  align-items: flex-start;
}

.p-representative__image-box {
  width: var(--officer-circle-size);
  min-width: var(--officer-circle-size);
  /* 縮小を許さない */
  max-width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-inline: auto;
  flex-shrink: 0;
  /* 隣のテキストに押されないように固定 */
}

.p-representative__aura {
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--c-accent);
  opacity: 0.2;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s infinite alternate;
}

.p-representative__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* 中身のズームを枠内に留める */
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.3;
  }
}

.p-representative__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
  /* border や shadow は .p-representative__circle へ移動 */
}

.p-representative__image--ishikawa {
  object-position: center top;
  transform: scale(1.0);
}

.p-representative__content {
  text-align: left;
  margin-top: clamp(3rem, 10vw, 6rem);
  /* 左側のリード文「——自分を諦めない人」の高さに合わせるための余白 */
}

.p-representative__title {
  font-size: var(--fz-xl);
  font-family: var(--font-serif);
  margin-bottom: 0;
  color: var(--c-accent);
}

.p-representative__lead {
  font-size: var(--fz-lg);
  font-weight: bold;
  margin-top: 0;
  /* タイトルとの間の余分な余白をカット */
  margin-bottom: var(--sp-md);
}

.p-representative__text {
  line-height: 1.8;
}

.p-representative__text p {
  margin-bottom: var(--sp-sm);
  text-align: justify;
}

.p-representative__inline-image {
  float: right;
  width: clamp(140px, 40%, 220px);
  margin: 0 0 var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.p-representative__name {
  margin-top: var(--sp-md);
  font-weight: bold;
  text-align: right;
  font-family: "SerifNumbers", var(--font-serif) !important;
  font-size: var(--fz-lg);
  color: var(--c-text);
  line-height: 1.4;
}

/* ==========================================================================
   Secondary Directors (理事2名)
   ========================================================================== */
.p-directors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* 画像サイズに合わせて最小幅を拡大 */
  gap: var(--sp-xl);
  margin-top: calc(var(--sp-xl) * 1.5);
  padding-top: var(--sp-xl);
}

.p-director-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-lg);
  background: transparent;
  padding: var(--sp-sm);
  /* 円のサイズを稼ぐためにパディングを縮小 */
  border-radius: var(--radius-md);
  position: relative;
}

/* 背景のドットパターン */
.p-director-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: radial-gradient(var(--c-cloud-aqua) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: 0;
}

.p-director-card__image-box {
  width: var(--officer-circle-size);
  min-width: var(--officer-circle-size);
  /* 完全に同期 */
  max-width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
  flex-shrink: 0;
}

.p-director-card__aura {
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--c-accent);
  opacity: 0.15;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s infinite alternate;
  /* 代表と同じアニメーション */
}

.p-director-card__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* 中身のズームを枠内に留める */
  position: relative;
  z-index: 1;
}

.p-director-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  /* 正丸を保証 */
  object-fit: cover;
  position: relative;
  z-index: 1;
  /* border や shadow は .p-director-card__circle へ移動 */
}

/* 理事個別のお写真調整（顔の大きさと位置） */
.p-director-card__image--takahashi {
  object-position: center top !important;
  transform: scale(1.0) !important;
}

.p-director-card__image--suzuki {
  object-position: center 25% !important;
  /* 位置のバランス調整 */
  transform: scale(1.05) !important;
  /* お顔をさらにコンパクトに調整 */
}

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

.p-director-card__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2xs, 0.25rem);
}

/* 美しいディバイダー（ライン＆ドット） */
.p-director-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block: var(--sp-sm);
  width: 100%;
}

.p-director-card__divider::before,
.p-director-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-faint-aqua), transparent);
  max-width: 60px;
}

.p-director-card__divider-dot {
  width: 5px;
  height: 5px;
  background-color: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-accent);
}

.p-director-card__role {
  font-size: var(--fz-base);
  color: var(--c-text);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

.p-director-card__name {
  font-size: var(--fz-lg);
  color: var(--c-text);
  font-family: "SerifNumbers", var(--font-serif) !important;
  font-weight: bold;
  margin: 0;
}

.p-director-card__text {
  font-size: var(--fz-sm);
  color: var(--c-text);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* 旧 portrait 指定は個別クラスに変更されたため削除可能 */

.p-director-card__greeting {
  margin-bottom: var(--sp-sm);
}

.p-director-card__career {
  border-top: 1px dotted var(--c-cloud-aqua);
  padding-top: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.p-director-card__career-title {
  display: block;
  font-size: var(--fz-xs);
  color: var(--c-accent-dark);
  margin-bottom: var(--sp-xs);
}

.p-director-card__career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fz-xs);
  color: var(--c-text);
  line-height: 1.6;
}

.p-director-card__career-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.25em;
}

.p-director-card__career-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

/* ==========================================================================
   8. CTA Section
   ========================================================================== */
.p-cta {
  position: relative;
  background: linear-gradient(135deg, var(--c-faint-aqua) 0%, var(--c-cloud-aqua) 50%, var(--c-breeze-aqua) 100%);
  color: var(--c-text);
  text-align: center;
  clip-path: ellipse(150% 100% at 50% 100%);
  padding-block: clamp(4rem, 10vh, 7rem) clamp(5rem, 12vh, 9rem);
  overflow: hidden;
}

/* 背景にハート装飾 */
.p-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  clip-path: url(#bg-heart-clip);
  pointer-events: none;
}

.p-cta::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

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

.p-cta__title {
  color: var(--c-text);
  font-size: var(--fz-2xl);
  margin-bottom: var(--sp-sm);
  letter-spacing: 0.1em;
}

.p-cta__text {
  font-size: var(--fz-lg);
  opacity: 0.9;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
  line-height: 1.8;
}

.p-cta__btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.p-cta__btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.p-cta__btn-caption {
  margin: 0;
  font-size: var(--fz-sm);
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: 0.04em;
  text-align: center;
}

.p-cta__btn-caption {
  font-size: var(--fz-base);
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.05em;
  margin: 0;
}

.p-cta__btn {
  font-size: var(--fz-base);
  font-weight: 400;
  padding: 1.1em 2.5em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  min-width: clamp(240px, 28vw, 340px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-cta__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* 個人向けボタン：黄色（サンビーム） */
/* CTAセクション内ボタン上書き */
.p-cta .c-btn--white {
  background: var(--c-sunbeam);
  color: var(--c-text);
  border: none;
}

/* CTAセクション 個人ボタン ホバー時：暗くしない */
.p-cta .c-btn--white:hover {
  background: var(--c-sunbeam);
}

/* 法人・行政向けボタン：グリーン */
.c-btn--outline-white {
  background: #2BBFB8;
  border: none;
  color: #fff;
}

/* 法人ボタン ホバー時：暗くしない */
.c-btn--outline-white:hover {
  background: #2BBFB8;
}


/* ==========================================================================
   Layout: Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(134, 225, 223, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.l-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(84, 99, 114, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.l-header.is-hidden {
  transform: translateY(-100%);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--layout-max-width, 1280px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  height: clamp(56px, 7vw, 72px);
  gap: var(--sp-lg);
}

/* Logo */
.l-header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-sm);
  line-height: 1.25;
  text-decoration: none;
  color: var(--c-text);
  flex-shrink: 0;
}

.l-header__logo-img {
  width: clamp(36px, 5vw, 52px);
  height: auto;
  flex-shrink: 0;
}

.l-header__logo-text {
  display: flex;
  flex-direction: column;
}

.l-header__logo-sub {
  font-size: var(--fz-xs);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  color: var(--c-accent-dark);
}

.l-header__logo-main {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-accent-dark);
}

/* Nav */
.l-header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.l-header__nav-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--fz-sm);
  font-weight: 400;
  color: var(--c-accent-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding-block: 0.25em;
  position: relative;
}

.l-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-whispering-aqua);
  transition: width 0.25s ease;
}

.l-header__nav-link:hover::after {
  width: 100%;
}

.l-header__nav-link--search {
  background: var(--c-sunbeam);
  color: var(--c-accent-dark);
  border: 1.5px solid var(--c-accent-dark);
  padding: 0.5em 1.25em;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.l-header__nav-link--search::after {
  display: none;
}

.l-header__nav-link--search:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.l-header__nav-link--cta {
  background: transparent;
  color: var(--c-accent-dark);
  border: 1.5px solid var(--c-accent-dark);
  padding: 0.5em 1.25em;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.l-header__nav-link--cta::after {
  display: none;
}

.l-header__nav-link--cta:hover {
  background: var(--c-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   Global Nav Submenu (グローバルナビゲーションのサブメニュー設定)
   ========================================================================== */
/* サブメニューを持つナビゲーションの親要素の配置基準 */
.l-header__nav-item {
  position: relative;
}

/* サブメニューのコンテナ（初期状態は非表示、滑らかなフェードとスライドで表示） */
.l-header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--c-white);
  border: 1px solid rgba(134, 225, 223, 0.25);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: var(--sp-2xs) 0;
  list-style: none;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

/* 親メニュー項目にホバーまたはフォーカスされた場合にサブメニューを表示 */
.l-header__nav-item:hover .l-header__submenu,
.l-header__nav-item:focus-within .l-header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* サブメニュー内の個別リンクの文字サイズや余白などの設定 */
.l-header__submenu-link {
  display: block;
  padding: var(--sp-xs) var(--sp-sm);
  font-family: var(--font-serif);
  font-size: var(--fz-xs);
  color: var(--c-accent-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* サブメニュー内のリンクにホバーした際の色や背景の変化 */
.l-header__submenu-link:hover {
  background-color: var(--c-faint-aqua);
  color: var(--c-accent-dark);
}

/* Hamburger */
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile nav */
@media (max-width: 768px) {
  .l-header__hamburger {
    display: flex;
  }

  .l-header__nav {
    position: fixed;
    top: clamp(56px, 7vw, 72px);
    inset-inline: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--sp-lg) var(--sp-md) var(--sp-xl);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(134, 225, 223, 0.25);
  }

  .l-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .l-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .l-header__nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(134, 225, 223, 0.2);
  }

  .l-header__nav-link {
    display: block;
    padding: var(--sp-sm) 0;
    font-size: var(--fz-base);
    width: 100%;
  }

  .l-header__nav-link::after {
    display: none;
  }

  /* モバイルメニュー内：「協会員を探す」ボタンをデスクトップと同様のサイズに整える */
  .l-header__nav-link--search {
    margin-top: var(--sp-sm);
    display: inline-block;
    width: auto;
    padding: 0.6em 1.5em;
  }

  /* モバイルメニュー内：「お問い合わせ」ボタンのサイズ・配置を「協会員を探す」と揃える */
  .l-header__nav-link--cta {
    margin-top: var(--sp-sm);
    display: inline-block;
    width: auto;
    padding: 0.6em 1.5em;
  }

  /* モバイルメニュー内のサブメニュー表示調整（親要素の配置） */
  .l-header__nav-item--has-submenu {
    display: flex;
    flex-direction: column;
  }

  /* モバイルメニュー内でのサブメニューコンテナの初期化と表示設定 */
  .l-header__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 var(--sp-xs) var(--sp-sm);
    min-width: auto;
  }

  /* モバイルメニュー内の個別サブメニューリンクの文字サイズと余白調整 */
  .l-header__submenu-link {
    font-size: var(--fz-sm);
    padding: var(--sp-xs) 0;
    color: var(--c-text);
  }

  /* モバイルメニュー内サブメニューリンクのホバー時背景の初期化 */
  .l-header__submenu-link:hover {
    background-color: transparent;
  }
}


/* ==========================================================================
   Layout: Footer
   ========================================================================== */
.l-footer {
  background: var(--c-white);
  color: var(--c-accent-dark);
  font-family: var(--font-serif);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-xl);
  max-width: var(--layout-max-width, 1280px);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.l-footer__logo {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.l-footer__logo-sub {
  font-size: var(--fz-xs);
  opacity: 0.65;
  letter-spacing: 0.06em;
}

.l-footer__logo-main {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-accent-dark);
}

.l-footer__logo-img {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  margin-top: -4px;
}

.l-footer__tagline {
  margin: 0;
  font-size: var(--fz-sm);
  opacity: 0.6;
  letter-spacing: 0.05em;
  margin-top: var(--sp-xs);
  margin-bottom: 0;
}

.l-footer__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: var(--sp-xs);
  text-align: center;
}

.l-footer__line-lead {
  margin: 0;
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--c-text-muted, #999);
  letter-spacing: 0.04em;
}

.l-footer__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: var(--fz-sm);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
  letter-spacing: 0.04em;
}

.l-footer__line-btn:hover {
  opacity: 0.85;
}

.l-footer__line-sub {
  margin: 0;
  font-size: var(--fz-xs);
  color: var(--c-text-muted, #999);
  line-height: 1.7;
}

.l-footer__nav {
  display: flex;
  justify-content: flex-end;
}

.l-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  align-items: flex-end;
}

.l-footer__nav-list a {
  color: var(--c-accent-dark);
  text-decoration: none;
  font-size: var(--fz-sm);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.l-footer__nav-list a:hover {
  color: var(--c-accent);
}

.l-footer__bottom {
  background-color: var(--c-accent-dark);
  border-top: none;
  padding: var(--sp-md) clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

/* フッターの商標登録に関するテキストのスタイル（文字サイズ、余白、色などの設定） */
.l-footer__trademark {
  margin-bottom: var(--sp-md);
  font-size: var(--fz-xs);
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
}

.l-footer__trademark p {
  margin: 0;
}

.l-footer__copy {
  margin: 0;
  font-size: var(--fz-xs);
  color: var(--c-text);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .l-footer__inner {
    grid-template-columns: 1fr;
  }

  .l-footer__line {
    align-items: flex-start;
    text-align: left;
  }

  .l-footer__nav-list {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }
}