/*
Theme Name:  CA クリアエージェンシー
Theme URI:   https://fukuoka-haken.net/
Author:      Takeshi Arakuta(Artistar)
Description: 中洲ナイトワーク派遣会社CA 専用テーマ。白ベース・ピンク〜紫グラデーション。
Version:     3.0.0
License:     Private
Text Domain: CA
*/

/* ====================================================
   TOKENS
==================================================== */
:root {
  --c-bg:       #FFFFFF;
  --c-bg-soft:  #FAF8FC;
  --c-bg-mid:   #F3EEF9;
  --c-line:     #E8DDEF;

  --grad-main:  linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #818CF8 100%);
  --grad-soft:  linear-gradient(135deg, #FDF2F8 0%, #F5F0FE 50%, #EEF2FF 100%);
  --grad-btn:   linear-gradient(135deg, #EC4899 0%, #A855F7 60%, #6366F1 100%);
  --grad-text:  linear-gradient(135deg, #DB2777 0%, #9333EA 60%, #4F46E5 100%);

  --c-pink:      #EC4899;
  --c-purple:    #A855F7;
  --c-violet:    #6366F1;
  --c-pink-lt:   #FBCFE8;
  --c-purple-lt: #E9D5FF;
  --c-violet-lt: #C7D2FE;

  --c-text:      #1E1128;
  --c-text-mid:  #5B3F74;
  --c-text-dim:  #7C5FA0;
  --c-text-muted:#B89FCE;

  --font-disp:   'Cormorant Garamond', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body:   "Noto Sans JP", "Yu Gothic", YuGothic, "游ゴシック", "游ゴシック体",
                 "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
                 "ＭＳ Ｐゴシック", sans-serif;

  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-in-out:   cubic-bezier(.76,0,.24,1);

  --max-w:  800px;
  --gutter: clamp(20px, 6vw, 48px);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 100px;

  --shadow-sm: 0 2px 12px rgba(168,85,247,.09);
  --shadow-md: 0 8px 32px rgba(168,85,247,.15);
  --shadow-lg: 0 20px 60px rgba(168,85,247,.18);
}

/* ====================================================
   RESET
==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: #603c3c;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: auto;
  min-width: 320px;
  min-height: 100vh;
  height: 100%;
  position: relative;
}

/* PC：コンテンツを640pxで中央固定 */
@media (min-width: 641px) {
  body {
    letter-spacing: 0.04em;
    font-size: 1.6rem;
    max-width: 640px;
    margin: 0 auto !important;
    background-color: white;
    box-shadow: 0 0 10px rgba(96, 60, 60, 0.15);
    z-index: 0;
  }
}
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }


/* ====================================================
   HEADER
==================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 var(--gutter); height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s;
  /* PCでbodyがmax-width:640px固定のため、headerも合わせる */
  max-width: 640px;
  margin: 0 auto;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-line);
}

/* ヘッダーをbody幅に追従させるための外枠調整 */
@media (min-width: 641px) {
  /* body が中央640px固定なので header も同幅・同位置に揃える */
  .site-header {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 640px;
  }
}

.site-logo {
  font-family: var(--font-disp);
  font-size: 1.4rem; font-weight: 600; letter-spacing: .15em; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.site-logo .tagline {
  display: block; font-family: var(--font-body);
  font-size: .55rem; letter-spacing: .25em;
  color: var(--c-text-muted); font-weight: 300; margin-top: 3px;
  -webkit-text-fill-color: var(--c-text-muted);
}

/* ====================================================
   HAMBURGER BUTTON
   ── 開いているときは白い × を明確に表示
==================================================== */
.nav-toggle {
  width: 48px; height: 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  position: relative; z-index: 701;   /* オーバーレイより手前 */
  border-radius: 50%;
  transition: background .3s;
  flex-shrink: 0;
}

/* 通常時：紫の3本線 */
.nav-toggle span {
	font-size:10px;
  display: block; width: 24px; height: 2px;
  background: var(--c-purple);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .4s var(--ease-out-expo),
              opacity   .3s,
              width     .3s,
              background .3s;
}

/* 開いているとき：白地に × を鮮明に → 背景を暗くして視認性UP */
.nav-toggle.open {
  background: rgba(255,255,255,.18);
}
.nav-toggle.open span {
  background: #ffffff;           /* × は白 */
  width: 24px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* 「✕ 閉じる」ラベル（スクリーンリーダー用） */
.nav-toggle__label {
  display: none;
}

/* ====================================================
   DRAWER OVERLAY（タップエリア）
==================================================== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 599;
  background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out-expo), visibility .4s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ====================================================
   DRAWER NAV
   ── 右から60%幅でスライドイン / 黒透過背景 / 白文字
==================================================== */
.site-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 600;
  width: 60%;
  min-width: 240px;
  max-width: 420px;
  background: rgba(20, 10, 30, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out-expo);
  overflow-y: auto;
}
.site-nav.open { transform: translateX(0); }

/* メニューリスト */
.site-nav .nav-menu {
  display: flex; flex-direction: column; gap: 0;
}
.site-nav .nav-menu li {
  border-bottom: 1px solid rgba(255,255,255,.08);
  transform: translateX(20px); opacity: 0;
  transition: transform .45s var(--ease-out-expo), opacity .45s;
}
.site-nav .nav-menu li:first-child { border-top: 1px solid rgba(255,255,255,.08); }

.site-nav.open .nav-menu li { transform: translateX(0); opacity: 1; }
.site-nav.open .nav-menu li:nth-child(1)  { transition-delay: .06s; }
.site-nav.open .nav-menu li:nth-child(2)  { transition-delay: .10s; }
.site-nav.open .nav-menu li:nth-child(3)  { transition-delay: .14s; }
.site-nav.open .nav-menu li:nth-child(4)  { transition-delay: .18s; }
.site-nav.open .nav-menu li:nth-child(5)  { transition-delay: .22s; }
.site-nav.open .nav-menu li:nth-child(6)  { transition-delay: .26s; }
.site-nav.open .nav-menu li:nth-child(7)  { transition-delay: .30s; }
.site-nav.open .nav-menu li:nth-child(8)  { transition-delay: .34s; }
.site-nav.open .nav-menu li:nth-child(9)  { transition-delay: .38s; }
.site-nav.open .nav-menu li:nth-child(10) { transition-delay: .42s; }

.site-nav .nav-menu a {
  display: block; padding: 14px 4px;
  font-family: var(--font-body);
  font-size: clamp(.88rem, 3.5vw, 1rem);
  font-weight: 500; letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  text-align: left;
  transition: color .25s, padding-left .25s;
}
.site-nav .nav-menu a:hover {
  color: #ffffff;
  padding-left: 8px;
  /* グラデーションは白背景前提なので暗背景では使わない */
  background: none;
  -webkit-text-fill-color: #ffffff;
}
.site-nav .nav-menu .current-menu-item > a { color: var(--c-pink-lt); }

/* 応募ボタン */
.site-nav .nav-menu .menu-apply > a {
  display: inline-block;
  margin-top: 16px; padding: 12px 28px;
  background: var(--grad-btn); color: #fff;
  border-radius: var(--radius-xl);
  font-family: var(--font-body); font-size: .88rem;
  font-weight: 700; letter-spacing: .18em;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 4px 16px rgba(168,85,247,.4);
  border-bottom: none;
  transition: opacity .3s, transform .3s;
}
.site-nav .nav-menu .menu-apply > a:hover {
  opacity: .85; transform: translateX(4px);
  padding-left: 28px; /* hover時のpadding-leftリセット */
}

/* ドロワー内の閉じるボタン（明示的に上部に配置） */
.nav-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; line-height: 1;
  cursor: pointer; z-index: 701;
  transition: background .25s, transform .25s;
}
.nav-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }

/* ====================================================
   CONTAINER — 1 COLUMN
==================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ====================================================
   SECTION COMMON
==================================================== */
.section       { padding: clamp(64px, 10vw, 112px) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--mid  { background: var(--c-bg-mid); }

.section-eyebrow {
  display: block;
  font-family: var(--font-script); font-size: clamp(.9rem, 2vw, 1.1rem);
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -.01em;
  color: var(--c-text);
}
.section-title.grad {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub {
  font-size: clamp(.82rem, 1.5vw, .95rem);
  color: var(--c-text-dim); line-height: 2; margin-top: 16px;
}
.section-header { margin-bottom: 52px; }

/* ====================================================
   REVEAL ANIMATIONS
==================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .10s; }
[data-delay="2"] { transition-delay: .20s; }
[data-delay="3"] { transition-delay: .30s; }
[data-delay="4"] { transition-delay: .40s; }
[data-delay="5"] { transition-delay: .50s; }
[data-delay="6"] { transition-delay: .60s; }

.reveal-line { overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(100%); transition: transform .9s var(--ease-out-expo); }
.reveal-line.visible > span { transform: translateY(0); }

/* ====================================================
   HERO
==================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 100px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-in-out);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: 
	  linear-gradient(to top, rgba(255, 255, 255, 1) 0%, 
		  rgb(255 255 255 / 47%) 30%, 
		  rgba(255, 255, 255, .1) 100%)
}
.hero.loaded .hero__bg img { transform: scale(1); }

/* 画像なし時の装飾背景 */
.hero__bg-placeholder {
  position: absolute; inset: 0; background: var(--c-bg); overflow: hidden;
}
.hero__bg-placeholder::before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: clamp(300px, 65vw, 720px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(244,114,182,.22) 0%, rgba(192,132,252,.14) 50%, rgba(129,140,248,.04) 100%);
  filter: blur(70px);
}
.hero__bg-placeholder::after {
  content: '';
  position: absolute; bottom: -10%; left: -10%;
  width: clamp(200px, 45vw, 520px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(192,132,252,.18) 0%, rgba(244,114,182,.07) 100%);
  filter: blur(60px);
}

.hero__badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .28em;
    color: #000000;
    background: #ffffff5c;
    border: 1px solid var(--c-purple-lt);
    border-radius: var(--radius-xl);
    padding: 6px 16px;
	margin-right: 15%;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .8s .4s var(--ease-out-expo), transform .8s .4s var(--ease-out-expo);
}
.hero.loaded .hero__badge { opacity: 1; transform: none; }

.hero__title {
  position: relative; z-index: 2;
  font-family: var(--font-disp);
  font-weight: 600; line-height: 1.05; letter-spacing: -.01em;
  color: var(--c-text);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: block; transform: translateY(110%);
  transition: transform .9s var(--ease-out-expo);
}
.hero__title .line:nth-child(2) span { transition-delay: .10s; }
.hero__title .line:nth-child(3) span { transition-delay: .20s; }
.hero__title .line:nth-child(4) span { transition-delay: .30s; }
.hero.loaded .hero__title .line span { transform: translateY(0); }

.hero__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__sub {
  position: relative; z-index: 2;
  margin-top: 24px; margin-left: 16px; font-size: clamp(.8rem, 1.5vw, .95rem);
  letter-spacing: .28em; color: var(--c-text-dim);
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s .7s var(--ease-out-expo), transform .8s .7s var(--ease-out-expo);
}
.hero.loaded .hero__sub { opacity: 1; transform: none; }

.hero__cta {
  position: relative; z-index: 2;
  margin-top: 0px; margin-bottom: 6px; display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s .85s var(--ease-out-expo), transform .8s .85s var(--ease-out-expo);
}
.hero.loaded .hero__cta { opacity: 1; transform: none; }

.hero__scroll {
  position: absolute; bottom: 40px; right: var(--gutter); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity .8s 1.2s;
}
.hero.loaded .hero__scroll { opacity: 1; }
.hero__scroll span {
  font-size: .6rem; letter-spacing: .4em; writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--c-purple), transparent);
  animation: scrollLine 1.6s var(--ease-in-out) infinite 1.5s;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====================================================
   MARQUEE
==================================================== */
.marquee-wrap {
  display: block !important;
  width: 100% !important;
  overflow: hidden;
  padding: 14px 0;
  background: linear-gradient(135deg, #F472B6, #C084FC, #818CF8);
}
.marquee-track {
  display: inline-flex !important;
  width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.55); flex-shrink: 0;
}

/* ====================================================
   BUTTONS
==================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 36px;
  font-size: .85rem; font-weight: 700; letter-spacing: .15em;
  border-radius: var(--radius-xl);
  transition: opacity .3s, transform .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,.35);
}
.btn--primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(168,85,247,.45); }
.btn--outline {
  background: transparent; color: var(--c-purple);
  border: 1.5px solid var(--c-purple-lt);
  margin-bottom: 25px;
}
.btn--outline:hover { border-color: var(--c-purple); background: rgba(168,85,247,.05); }
.btn--ghost {
  background: transparent; color: var(--c-text-dim);
  border: 1.5px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-purple-lt); color: var(--c-purple); }
.btn--line { background: #06C755; color: #fff; box-shadow: 0 4px 16px rgba(6,199,85,.28); }
.btn--line:hover { opacity: .88; transform: translateY(-2px); }
.btn--lg { padding: 17px 48px; font-size: .9rem; }

/* ====================================================
   VOICE / TESTIMONIAL
==================================================== */
.voice-section {
  background: var(--grad-soft);
}
.voice-header { margin-bottom: 48px; }

/* リスト：縦1列 */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 0;                         /* カード間は区切り線で管理 */
}

/* カード：縦積み（画像上・テキスト下） */
.voice-card {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;         /* 縦積み */
  transition: box-shadow .3s;
}
.voice-card:first-child { border-top: 1px solid var(--c-line); }
.voice-card:hover { box-shadow: var(--shadow-sm); }

/* 画像エリア：アスペクト比4:3、フルwidth */
.voice-card__avatar-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grad-soft);
}
.voice-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;    /* 顔が上に来るよう調整 */
  display: block;
  border: none;                   /* 丸枠を解除 */
  border-radius: 0;
  transition: transform .5s var(--ease-out-expo);
}
.voice-card:hover .voice-card__avatar { transform: scale(1.03); }

/* 画像なし時のプレースホルダー */
.voice-card__avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
}

/* テキストエリア */
.voice-card__meta {
  padding: clamp(20px, 5vw, 32px);
}

/* 名前：グラデーションテキスト＋大きめ */
.voice-card__name {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

/* プロフィール：ラベルタグ風 */
.voice-card__profile {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--c-purple);
  background: var(--c-purple-lt);
  border-radius: var(--radius-xl);
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* 本文 */
.voice-card__text {
  font-size: .875rem;
  line-height: 2;
  color: var(--c-text-dim);
}

.voice-more { text-align: center; margin-top: 40px; }
/* =============================================
   10の理由セクション 追記CSS
   style.css の .reason-card 関連を差し替え
   ============================================= */
p.reason-intro__text.visible {
    font-size: 0.8em;
}
.reason-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(244,114,182,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(192,132,252,.25);
}

/* 透かし数字 */
.reason-card__watermark {
  position: absolute;
  bottom: -10px;
  right: -4px;
  font-family: 'Cormorant Garamond', 'Dancing Script', serif;
  font-size: clamp(5rem, 20vw, 8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(135deg, rgba(244,114,182,.4) 0%, rgba(129,140,248,.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.03em;
  white-space: nowrap;
}
/* カード内コンテンツ */
.reason-card__body {
  position: relative;
  z-index: 1;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  justify-content: flex-end;
}

.reason-card__num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #b8933e;
  margin: 0;
}

.reason-card__title {
  font-size: clamp(.88rem, 2.5vw, 1rem);
  font-weight: 700;
  color: #2d1f5e;
  line-height: 1.4;
  margin: 0;
}

.reason-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  background: linear-gradient(135deg, #F472B6, #818CF8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity .2s;
}

.reason-card__tag:hover {
  opacity: .85;
}

/* 画像なし時のプレースホルダーを削除 */
.reason-card__img-wrap,
.reason-card__img-placeholder {
  display: none;
}
/* ====================================================
   CTA BANNER
==================================================== */
.cta-banner {
  padding: clamp(56px, 8vw, 88px) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
  background: var(--grad-btn);
}
.cta-banner::before {
  content: 'APPLY';
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-disp); font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 600; font-style: italic; color: rgba(255,255,255,.08);
  line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.cta-banner__badge {
  display: inline-block; border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85); font-size: .68rem; letter-spacing: .35em;
  padding: 6px 20px; border-radius: var(--radius-xl); margin-bottom: 20px;
}
.cta-banner__title {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 600;
  color: #fff; margin-bottom: 8px; line-height: 1.25;
}
.cta-banner__note {
  font-size: .72rem; letter-spacing: .18em;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.cta-banner__tel {
  display: block; font-family: var(--font-disp);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600; letter-spacing: .05em; color: #fff; margin-bottom: 32px;
  transition: opacity .3s;
}
.cta-banner__tel:hover { opacity: .8; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn--outline { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-banner .btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.cta-banner__contact { margin-top: 18px; }
.cta-banner__contact a { font-size: .78rem; color: rgba(255,255,255,.65); text-decoration: underline; text-underline-offset: 3px; }
/* LINE（メンテナンスページと同仕様） */
.btn--line-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  width: 90%;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(6,199,85,.30);
  transition: background .18s ease, transform .18s ease;
}
.btn--line-official:hover {
  background: #05b34c;
  transform: translateY(-2px);
}

/* TEL（グラデーションに合わせた白ベース） */
.btn--tel-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
	width: 90%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.6);
  text-decoration: none;
  letter-spacing: .06em;
  backdrop-filter: blur(4px);
  transition: background .18s ease, transform .18s ease;
}
.btn--tel-grad:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
/* ====================================================
   REASON — 1カラム横並びカード（画像+テキスト）
==================================================== */
.reason-section { background: var(--c-bg); }
.reason-header  { margin-bottom: 48px; }

.reason-list { display: flex; flex-direction: column; gap: 14px; }

.reason-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.reason-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.reason-card__img-wrap {
  width: 120px; flex-shrink: 0; overflow: hidden;
}
.reason-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}
.reason-card:hover .reason-card__img { transform: scale(1.06); }

.reason-card__img-placeholder {
  width: 100%; height: 100%; min-height: 90px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
}
.reason-card__body {
  padding: 16px 20px; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.reason-card__num {
  font-family: var(--font-disp); font-size: .7rem; letter-spacing: .28em;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.reason-card__title { font-size: .9rem; font-weight: 700; color: var(--c-text); line-height: 1.5; }
.reason-card__tag {
  display: inline-block; margin-top: 4px;
  font-family: var(--font-script); font-size: .88rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ====================================================
   FAQ — 1カラム
==================================================== */
.faq-section { background: var(--c-bg-soft); }
.faq-header   { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item:first-child { border-top: 1px solid var(--c-line); }

.faq-question {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding: 20px 0;
  font-size: .9rem; font-weight: 500; color: var(--c-text); text-align: left;
  transition: color .3s;
}
.faq-question:hover { color: var(--c-purple); }
.faq-q-mark {
  font-family: var(--font-disp); font-size: 1.3rem; font-weight: 600; font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0; width: 22px;
}
.faq-text { flex: 1; }
.faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; color: var(--c-text-muted); flex-shrink: 0;
  transition: transform .4s var(--ease-out-expo), background .3s, border-color .3s, color .3s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--grad-btn); border-color: transparent; color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out-expo), padding .4s;
  padding-left: 38px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .875rem; color: var(--c-text-dim); line-height: 2; }
.faq-answer a {
  text-decoration: underline;
  text-decoration-color: black;
  text-decoration-style: dotted;
}
/* ====================================================
   BLOG — 1カラム縦スタック
==================================================== */
.blog-section { background: var(--c-bg); }

.blog-list { display: flex; flex-direction: column; gap: 14px; }

.blog-card {
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.blog-card__thumb-wrap { width: 120px; flex-shrink: 0; overflow: hidden; }
.blog-card__thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}
.blog-card:hover .blog-card__thumb { transform: scale(1.06); }

.blog-card__thumb-placeholder {
  width: 100%; height: 100%; min-height: 88px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
}
.blog-card__body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-card__date { font-size: .68rem; letter-spacing: .18em; color: var(--c-text-muted); margin-bottom: 5px; }
.blog-card__title { font-size: .9rem; font-weight: 700; color: var(--c-text); line-height: 1.55; transition: color .3s; }
.blog-card:hover .blog-card__title { color: var(--c-purple); }

/* ── X Timeline ── */
.x-section { background: #f8f7fc; }

.x-embed-wrap {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(129,140,248,.12);
  border: 1px solid #ede9f5;
}

.x-embed-wrap .twitter-timeline {
  display: block;
}
/* ====================================================
   OFFICE — 1カラム縦スタック
==================================================== */
.office-section { background: var(--c-bg-mid); }
.office-header   { margin-bottom: 32px; }

.office-list { display: flex; flex-direction: column; gap: 12px; }

.office-item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; aspect-ratio: 16/7;
  box-shadow: var(--shadow-sm);
}
.office-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}
.office-item:hover img { transform: scale(1.04); }
.office-item-placeholder {
  width: 100%; height: 100%;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.office-item__label {
  position: absolute; bottom: 12px; left: 14px;
  font-size: .67rem; letter-spacing: .18em; color: rgba(255,255,255,.9);
  background: rgba(120,50,180,.45); backdrop-filter: blur(4px);
  padding: 4px 12px; border-radius: var(--radius-xl);
}
/* ====================================================
   X RSS Feed 
 ==================================================== */
.x-feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.x-feed-item {
  background: #ffffff;
  border: 1px solid #ede9f5;
  border-left: 4px solid #000000;
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.x-feed-item__text {
  font-size: .88rem;
  color: #2d1f5e;
  line-height: 1.8;
  margin-bottom: 10px;
}
.x-feed-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
}
.x-feed-item__date { color: #9ca3af; }
.x-feed-item__link {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.x-feed-item__link:hover { opacity: .6; }
/* ====================================================
   PAGE / SINGLE
==================================================== */
.page-header {
 
  border-bottom: 1px solid var(--c-line); background: var(--c-bg-soft);
}
/* サムネイル（16:9） */
.page-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* サムネイル下のh1 */
.page-title {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  padding: clamp(24px, 4vw, 40px) var(--gutter) 0;
  max-width: var(--max-w);
	margin:40px 0 ;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header__title {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 6vw, 5rem); font-weight: 600; line-height: 1.1;
  max-width: var(--max-w); margin: 0 auto;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.page-wrap { max-width: var(--max-w); margin: 0 auto;  }

.post-content p   { font-size: .9375rem; line-height: 2.1; color: var(--c-text-dim); }
.post-content h2  { font-family: var(--font-disp); font-size: 1.5rem; color: var(--c-text); margin: 2.4em 0 .8em; padding-bottom: .4em; border-bottom: 2px solid var(--c-line); }
.post-content img { border-radius: var(--radius-md); margin: 2em 0; }
.post-content a   { color: var(--c-purple); text-decoration: underline; text-underline-offset: 3px; }

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding: clamp(48px, 7vw, 80px) var(--gutter) 0;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
  padding-bottom: clamp(48px, 7vw, 80px);
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: .12em; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline { font-size: .7rem; letter-spacing: .28em; color: var(--c-text-muted); margin-top: 8px; }
.footer-license { font-size: .67rem; color: var(--c-text-muted); margin-top: 10px; }
.footer-note    { font-size: .75rem; color: var(--c-text-muted); line-height: 1.8; margin-top: 16px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.footer-nav a { font-size: .78rem; letter-spacing: .08em; color: var(--c-text-dim); transition: color .3s; }
.footer-nav a:hover { color: var(--c-purple); }

.footer-bottom {
  border-top: 1px solid var(--c-line); padding: 18px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  max-width: var(--max-w); margin: 0 auto;
  font-size: .68rem; color: var(--c-text-muted);
}
.footer-age-warn {
  border-top: 1px solid var(--c-line);
  padding: 14px var(--gutter);
  font-size: .7rem; letter-spacing: .1em; color: var(--c-text-muted);
  text-align: center; background: var(--c-bg-soft);
}
.footer-logo em {
    font-style: normal;
    /* font-style: inherit; */
    font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "游ゴシック", "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 0.5em;
}

/* ====================================================
   FIXED BOTTOM BAR
==================================================== */


/* ── FIXED BAR ── */
.fix-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  height: 72px;
}

/* LINE */
.fix-bottom__line {
  order: 2;
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background .18s ease;
  border-left: 1px solid rgba(255,255,255,.2);
}
.fix-bottom__line:hover { background: #05b34c; }
.fix-bottom__line-icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* TEL */
.fix-bottom__tel {
  order: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(0, 0, 0, .85);
  color: #fff;
  text-decoration: none;
  transition: opacity .18s ease;
  border-right: 1px solid rgba(255,255,255,.1);
}
.fix-bottom__tel:hover { opacity: .85; }

.fix-bottom__tel-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #ffffff;
  opacity: .85;
  line-height: 1;
}

.fix-bottom__tel-num {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
    font-weight: 900;
    transform: scaleY(1.1);
    display: inline-block;
    line-height: 1.5;
    background: linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .15em;
}

/* 共通ラベル */
.fix-bottom__label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .85;
  line-height: 1;
}

/* ページ上部へ */
.page-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #F472B6, #C084FC, #818CF8);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192,132,252,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.page-top.visible { opacity: 1; pointer-events: auto; }
.page-top:hover { transform: translateY(-3px); }
/* フッターの余白（固定バーに隠れないよう） */
.site-footer {
  padding-bottom: 80px;
}



/* ── フッターナビ デザイン強化 ── */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--c-text-dim);
  padding: 8px 10px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
  position: relative;
}

.footer-nav a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, #F472B6, #818CF8);
  flex-shrink: 0;
  transition: width .2s ease;
}

.footer-nav a:hover {
  color: #C084FC;
  background: rgba(192,132,252,.06);
  padding-left: 14px;
}

.footer-nav a:hover::before {
  width: 20px;
}
.footer-inner nav {
    border-top: 1px solid var(--c-line);
    padding-top: 45px;
}
/* =============================================
   会社概要セクション
   ============================================= */
.company-section { background: #f8f7fc; }
 
.company-header {
  text-align: center;
  margin-bottom: 40px;
}
 
.company-wrap {
  max-width: 640px;
  margin: 0 auto;
}
 
/* テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: .9rem;
}
 
.company-table tbody tr {
  border-bottom: 1px solid #ede9f5;
}
 
.company-table tbody tr:first-child {
  border-top: 1px solid #ede9f5;
}
 
.company-table th,
.company-table td {
  padding: 14px 12px;
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
}
 
.company-table th {
  width: 36%;
  font-weight: 700;
  color: #ffffff;
  background: #2d1f5e;
  font-size: .82rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
 
.company-table td {
  color: #3d2f6e;
  background: #ffffff;
}
 
.company-table td a {
  color: #b8933e;
  text-decoration: none;
}
 
.company-table td a:hover {
  text-decoration: underline;
}
 
/* Google MAP */
.company-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ede9f5;
  box-shadow: 0 2px 12px rgba(129,140,248,.1);
}
 
.company-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}
 
/* レスポンシブ */
@media (max-width: 480px) {
  .company-table th { width: 40%; font-size: .76rem; }
  .company-table th,
  .company-table td { padding: 11px 10px; }
}
/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 560px) {
  body { padding-bottom: 70px; }
  .voice-card { flex-direction: column; }
  .reason-card__img-wrap,
  .blog-card__thumb-wrap { width: 90px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal-line > span { transform: none; }
}
/* =============================================
   p-place-archive / page-place.php
   ============================================= */

/* ── ラッパー ── */
.p-place-archive {
  max-width: 640px;
  margin: 20px 0 auto;
  padding: 32px 16px 48px;
}

/* ── 紹介文 ── */
.p-place-archive__introduce {
  font-size: .88rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: #fdf8f0;
  border-left: 4px solid #c9a84c;
  border-radius: 0 8px 8px 0;
}

/* ── グリッド（2列） ── */
.p-place-archive__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ── カード ── */
.p-place-archive__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.p-place-archive__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
}

/* ── サムネイル ── */
.p-place-archive__thumb {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.p-place-archive__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.p-place-archive__item:hover .p-place-archive__thumb img {
  transform: scale(1.05);
}

/* ── テキストエリア ── */
.p-place-archive__detail {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* 店舗名 */
.p-place-archive__name {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a2e;
  letter-spacing: .02em;
}

/* 種類バッジ */
.p-place-archive__category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: .04em;
  align-self: flex-start;
}

/* 時給・時間 */
.p-place-archive__info {
  font-size: .78rem;
  color: #666;
  line-height: 1.8;
  margin-top: 2px;
}

/* 時給の数値を強調 */
.p-place-archive__info br + * ,
.p-place-archive__info {
  /* 時給行のみ色を変えたい場合はJS側で対応推奨 */
}

/* =============================================
   レスポンシブ（360px以下は1列に）
   ============================================= */
@media (max-width: 360px) {
  .p-place-archive__body {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   p-place-detail / single-place.php
   ============================================= */
 
/* ── ラッパー ── */
.p-place-detail {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 16px 0;
}
 
/* ── タイトル ── */
.p-place-detail__title {
	margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a84c;
}
 
.p-place-detail__title-item {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a2e;
  letter-spacing: .04em;
}
 
/* ── サムネイル画像 ── */
.p-place-detail__image {
  margin: 0 0 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}
 
.p-place-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
 
/* ── 紹介文 ── */
.p-place-detail__lead {
  font-size: .85rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #fdf8f0;
  border-left: 4px solid #c9a84c;
  border-radius: 0 8px 8px 0;
}
 
/* ── テーブルラッパー ── */
.p-place-detail__info {
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
 
/* ── テーブル ── */
.p-place-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
}
 
.p-place-detail__table tbody tr {
  border-bottom: 1px solid #ece8e0;
}
 
.p-place-detail__table tbody tr:first-child {
  border-top: 1px solid #ece8e0;
}
 
.p-place-detail__table th,
.p-place-detail__table td {
  padding: 13px 12px;
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
}
 
.p-place-detail__table th {
  width: 38%;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  white-space: nowrap;
  font-size: .82rem;
  letter-spacing: .04em;
}
 
.p-place-detail__table td {
  color: #333;
  background: #fff;
}
 
/* 時給行を強調 */
.p-place-detail__table tr:has(th:contains("時給")) td {
  color: #b8390e;
  font-weight: 700;
  font-size: 1.05rem;
}
 
/* ── 戻るボタン ── */
.p-place-detail__button-conatiner {
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 16px;
  text-align: center;
}
 
.c-button--back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s ease, transform .2s ease;
}
 
.c-button--back:hover {
  background: #c9a84c;
  transform: translateY(-2px);
}
 .p-place-archive__notice,.p-place-detail__notice  {
  font-size: .82rem;
  color: #e8527a;
  background: #fff5f5;
  border: 1px solid #ffcdd2;
  border-left: 4px solid #e8527a;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin: 24px 0 8px;
  line-height: 1.8;
}
/* =============================================
   FAQ共通スタイル
   TOPページ（.faq-*）＋専用ページ（.fp-*）
   ============================================= */

/* ─── TOPページ FAQ ─── */
.faq-section { background: #f8f7fc; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(129,140,248,.07);
  border: 1px solid #ede9f5;
}

.faq-q {
  padding: 14px 16px 14px 44px;
  font-size: .9rem;
  font-weight: 700;
  color: #2d1f5e;
  position: relative;
  line-height: 1.5;
}

.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: .78rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #F472B6, #818CF8);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
}

.faq-a {
  padding: 12px 16px 14px 44px;
  font-size: .84rem;
  color: #6b5b95;
  line-height: 1.9;
  border-top: 1px solid #ede9f5;
  background: #faf8ff;
  position: relative;
}

.faq-a::before {
  content: 'A';
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: .78rem;
  font-weight: 900;
  color: #c9a84c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
}

.faq-more {
  text-align: center;
  margin-top: 8px;
}

/* ─── 専用FAQページ ─── */
.fp-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
.fp-section { padding: 48px 0; }
.fp-section--white { background: #ffffff; }
.fp-section--light { background: #f8f7fc; }

/* HERO */
.fp-hero {
  background: linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #818CF8 100%);
  padding: 56px 16px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,255,255,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.fp-hero__badge {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .1em;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.fp-hero__title {
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.fp-hero__title em { color: #fde68a; font-style: normal; }
.fp-hero__sub {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
  position: relative;
}

/* カテゴリ見出し */
.fp-category {
  font-size: 1rem;
  font-weight: 700;
  color: #2d1f5e;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ede9f5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-category__icon { font-size: 1.2rem; }

/* QAリスト */
.fp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ede9f5;
  box-shadow: 0 2px 6px rgba(129,140,248,.06);
}

.fp-q {
  padding: 14px 16px 14px 44px;
  font-size: .9rem;
  font-weight: 700;
  color: #2d1f5e;
  position: relative;
  line-height: 1.5;
}
.fp-q::before {
  content: 'Q';
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: .78rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #F472B6, #818CF8);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
}

.fp-a {
  padding: 12px 16px 14px 44px;
  font-size: .84rem;
  color: #6b5b95;
  line-height: 1.9;
  border-top: 1px solid #ede9f5;
  background: #faf8ff;
  position: relative;
}
.fp-a::before {
  content: 'A';
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: .78rem;
  font-weight: 900;
  color: #c9a84c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #c9a84c;
  line-height: 18px;
  text-align: center;
}

/* CTA */
.fp-closing {
  background: linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #818CF8 100%);
  padding: 56px 0;
}
.fp-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #b8933e;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fp-title {
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 700;
  color: #2d1f5e;
  line-height: 1.45;
  margin-bottom: 24px;
}
.fp-title em { color: #b8933e; font-style: normal; }

/* レスポンシブ */
@media (max-width: 400px) {
  .faq-q, .fp-q { font-size: .84rem; }
  .faq-a, .fp-a { font-size: .8rem; }
}
/* =============================================
   レスポンシブ（640px以下）
   ============================================= */
@media (max-width: 640px) {
  .p-place-detail {
    padding: 24px 12px 0;
  }
 
  .p-place-detail__title-item {
    font-size: 1.1rem;
  }
 
  .p-place-detail__table th {
    width: 42%;
    font-size: .78rem;
  }
 
  .p-place-detail__table th,
  .p-place-detail__table td {
    padding: 11px 10px;
  }
 
  .p-place-detail__info,
  .p-place-detail__button-conatiner {
    padding: 0 12px;
  }
}
/* data-reveal のアニメーション無効化（固定ページ） */
.page-template-default [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}