/* 2026-06-10 claude-fable-5 セッションターン数：3 */
/* lian-rappor リニューアルテーマ デザインシステム
   コンセプト: 「水彩パステル × 手作りのあたたかさ」 */

:root {
  --c-bg: #fdfbf7;
  --c-bg-sakura: #fbf0f3;
  --c-bg-sky: #f0f6fb;
  --c-ink: #4a4039;
  --c-ink-soft: #8a7d72;
  --c-line: #ecdfd4;
  --c-rose: #e08fa9;
  --c-rose-deep: #c9728f;
  --c-lavender: #9d8fcb;
  --c-sky: #7fb5de;
  --c-lemon: #e5b94e;
  --c-white: #fff;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-maru: 'Zen Maru Gothic', sans-serif;
  --shadow-1: 0 3px 14px rgba(150, 110, 90, .10);
  --shadow-2: 0 16px 38px rgba(150, 110, 90, .16);
  --radius: 20px;
  --header-h: 74px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-base);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.95;
  font-size: 16px;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- 共通 ---------- */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.inner--narrow { max-width: 840px; }
.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.section--sakura { background: var(--c-bg-sakura); }
.section--sky { background: var(--c-bg-sky); }
/* 水玉装飾背景 */
.section--dots {
  background-image: radial-gradient(rgba(224, 143, 169, .12) 3px, transparent 3.5px);
  background-size: 34px 34px;
}

.sec-head { margin-bottom: clamp(34px, 5vw, 56px); text-align: center; }
.sec-head .en {
  display: block;
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 8px;
}
.sec-head .ja {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: clamp(25px, 3.8vw, 36px);
  line-height: 1.5;
}
.sec-head .ja::after {
  content: '';
  display: block;
  width: 64px; height: 5px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--c-rose), var(--c-lemon), var(--c-sky));
}
.sec-head .lead { margin-top: 18px; color: var(--c-ink-soft); max-width: 640px; margin-inline: auto; font-size: 15px; }

/* セクション装飾イラスト（ふわふわ浮遊） */
.deco {
  position: absolute;
  width: clamp(70px, 9vw, 130px);
  opacity: .9;
  pointer-events: none;
  animation: floaty 5.5s ease-in-out infinite;
}
.deco--tl { top: 26px; left: 4%; }
.deco--tr { top: 26px; right: 4%; animation-delay: 1.6s; }
.deco--br { bottom: 20px; right: 5%; animation-delay: .8s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--c-rose);
  color: var(--c-white);
  box-shadow: var(--shadow-1);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform .3s; }
.btn:hover { background: var(--c-rose-deep); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost { background: var(--c-white); color: var(--c-rose-deep); border: 2px solid var(--c-rose); box-shadow: none; }
.btn--ghost:hover { background: var(--c-rose); color: var(--c-white); }
.btn--sky { background: var(--c-sky); }
.btn--sky:hover { background: #5e9ecf; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(253, 251, 247, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px dashed transparent;
  transition: border-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.header-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 50px; width: auto; }
.brand span {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.gnav { display: none; }
.header-cta { display: none; }
@media (min-width: 1060px) {
  .gnav { display: block; }
  .gnav ul { display: flex; gap: clamp(8px, 1.4vw, 22px); }
  .gnav a {
    font-family: var(--font-maru);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 2px;
    position: relative;
    white-space: nowrap;
  }
  .gnav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--c-rose), var(--c-lemon));
    transform: scaleX(0);
    transition: transform .3s;
  }
  .gnav a:hover::after { transform: scaleX(1); }
  .header-cta { display: inline-flex; padding: 11px 22px; font-size: 14px; }
}

/* ハンバーガー / ドロワー */
.menu-btn {
  width: 48px; height: 48px;
  border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center;
  z-index: 120; position: relative;
}
.menu-btn span {
  display: block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--c-rose-deep); margin: 3px 0;
  transition: transform .35s, opacity .25s;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 1060px) { .menu-btn { display: none; } }

.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--c-bg);
  background-image: radial-gradient(rgba(224, 143, 169, .10) 3px, transparent 3.5px);
  background-size: 34px 34px;
  padding: calc(var(--header-h) + 20px) 28px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer ul li { border-bottom: 2px dashed var(--c-line); }
.drawer ul a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px;
  font-family: var(--font-maru);
  font-weight: 700; font-size: 16px;
}
.drawer ul a svg { width: 14px; height: 14px; fill: var(--c-rose); }
.drawer .drawer-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.drawer .drawer-tel { text-align: center; font-family: var(--font-maru); font-weight: 700; font-size: 24px; }
.drawer .drawer-tel small { display: block; font-size: 12px; color: var(--c-ink-soft); letter-spacing: .2em; }

/* ---------- ヒーロー（トップ・イラスト型） ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 80px)) 20px clamp(56px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 143, 169, .14), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(127, 181, 222, .16), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(229, 185, 78, .12), transparent 30%),
    var(--c-bg);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  align-items: center;
}
@media (min-width: 880px) { .hero-grid { grid-template-columns: 11fr 9fr; } }
.hero h1 {
  font-family: var(--font-maru);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.6;
  letter-spacing: .06em;
}
.hero h1 .marker {
  background: linear-gradient(transparent 62%, rgba(229, 185, 78, .45) 62%);
  padding: 0 2px;
}
.hero .hero-sub {
  margin-top: 18px;
  color: var(--c-ink-soft);
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 480px;
}
.hero .hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero .hero-badges span {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: 13px;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 18px;
  box-shadow: var(--shadow-1);
}
.hero .hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { position: relative; text-align: center; }
.hero-art .cats { width: min(82%, 380px); margin: 0 auto; animation: floaty 6s ease-in-out infinite; }
.hero-art .float-item { position: absolute; width: clamp(64px, 8vw, 110px); animation: floaty 5s ease-in-out infinite; }
.hero-art .fi-1 { top: -6%; left: 2%; animation-delay: .4s; }
.hero-art .fi-2 { bottom: -2%; left: 8%; animation-delay: 1.4s; }
.hero-art .fi-3 { top: -10%; right: 6%; animation-delay: .9s; }
.hero-art .fi-4 { bottom: -6%; right: 2%; animation-delay: 2s; }
/* 波形の区切り */
.wave {
  display: block; width: 100%; height: 36px;
  background: radial-gradient(circle at 10px -8px, transparent 16px, var(--c-bg) 17px);
  background-size: 40px 36px;
}

/* ---------- 下層ページヒーロー ---------- */
.page-hero {
  margin-top: var(--header-h);
  padding: clamp(44px, 7vw, 80px) 20px clamp(36px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 30%, rgba(224, 143, 169, .14), transparent 36%),
    radial-gradient(circle at 92% 60%, rgba(127, 181, 222, .16), transparent 38%),
    var(--c-bg-sakura);
}
.page-hero .en {
  display: block;
  font-family: var(--font-maru);
  font-weight: 700;
  letter-spacing: .3em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 6px;
}
.page-hero h1 {
  font-family: var(--font-maru);
  font-weight: 900;
  font-size: clamp(25px, 4vw, 40px);
  letter-spacing: .08em;
  line-height: 1.5;
}
.page-hero .deco { width: clamp(60px, 8vw, 110px); }

/* パンくず */
.breadcrumb { padding: 14px 0; font-size: 12.5px; color: var(--c-ink-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--c-rose); }
.breadcrumb a:hover { color: var(--c-rose-deep); }

/* ---------- お知らせ ---------- */
.news-list { display: grid; gap: 14px; max-width: 840px; margin: 0 auto; }
.news-list a {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: 16px;
  padding: 18px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.news-list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: var(--c-rose); }
.news-list time { font-size: 13px; color: var(--c-ink-soft); font-weight: 600; }
.news-list .badge {
  font-family: var(--font-maru);
  font-size: 11.5px; font-weight: 700;
  background: var(--c-bg-sakura); color: var(--c-rose-deep);
  padding: 3px 14px; border-radius: 999px;
}
.news-list .badge--sky { background: var(--c-bg-sky); color: var(--c-sky); }
.news-list .badge--lavender { background: #f1eef9; color: var(--c-lavender); }
.news-list p { width: 100%; font-weight: 600; font-size: 15px; }
@media (min-width: 768px) { .news-list p { width: auto; flex: 1; } }

/* ---------- カード ---------- */
.card-grid { display: grid; gap: 22px; }
@media (min-width: 700px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.pic-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s, box-shadow .35s;
}
.pic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.pic-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.pic-card .body { padding: 20px 22px 24px; }
.pic-card .step {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-rose);
  color: var(--c-white);
  font-family: var(--font-maru);
  font-weight: 700;
  margin-bottom: 8px;
}
.pic-card h3 { font-family: var(--font-maru); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.pic-card p { font-size: 13.5px; color: var(--c-ink-soft); }

/* 説明パネル（A型とは 等） */
.panel {
  background: var(--c-white);
  border: 3px solid var(--c-bg-sakura);
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}
.panel--flex { display: grid; gap: 26px; align-items: center; }
@media (min-width: 820px) { .panel--flex { grid-template-columns: 1fr clamp(140px, 18vw, 200px); } }
.panel h3 { font-family: var(--font-maru); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); margin-bottom: 12px; color: var(--c-rose-deep); }
.panel p { font-size: 15px; }
.panel .art { width: 100%; animation: floaty 5.5s ease-in-out infinite; }

/* ---------- 1日の流れ タイムライン ---------- */
.day-timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 30px; }
.day-timeline::before {
  content: '';
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 4px; border-radius: 99px;
  background: linear-gradient(180deg, var(--c-rose), var(--c-lavender), var(--c-sky));
  opacity: .35;
}
.day-timeline li { position: relative; padding: 0 0 22px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.day-timeline li::before {
  content: '';
  position: absolute; left: -28px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-white);
  border: 4px solid var(--c-rose);
}
.day-timeline li.is-break::before { border-color: var(--c-lemon); }
.day-timeline .time {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-rose-deep);
  min-width: 92px;
}
.day-timeline li.is-break .time { color: var(--c-lemon); }
.day-timeline .what { font-weight: 600; font-size: 15.5px; }
.day-timeline .what small { display: block; font-weight: 400; color: var(--c-ink-soft); font-size: 13px; }

/* ---------- 声（吹き出し） ---------- */
.voice-grid { display: grid; gap: 26px; }
@media (min-width: 900px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }
.voice-card { display: flex; flex-direction: column; gap: 14px; }
.voice-card .bubble {
  position: relative;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: 20px;
  padding: 22px 24px;
  font-size: 14px;
  color: var(--c-ink);
  flex: 1;
  box-shadow: var(--shadow-1);
}
.voice-card .bubble::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 38px;
  width: 20px; height: 20px;
  background: var(--c-white);
  border-right: 2px solid var(--c-line);
  border-bottom: 2px solid var(--c-line);
  transform: rotate(45deg);
  border-radius: 0 0 6px 0;
}
.voice-card .who { display: flex; align-items: center; gap: 12px; padding-left: 16px; }
.voice-card .who img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-bg-sakura);
}
.voice-card .who p { font-family: var(--font-maru); font-weight: 700; font-size: 14px; }
.voice-card .who small { display: block; color: var(--c-ink-soft); font-weight: 400; font-size: 11.5px; }

/* 長文の声（work ページ） */
.voice-full { display: grid; gap: 26px; }
.voice-full .voice-block {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(22px, 3.5vw, 36px);
  display: grid;
  gap: 20px;
}
@media (min-width: 820px) { .voice-full .voice-block { grid-template-columns: 120px 1fr; align-items: start; } }
.voice-full .face { text-align: center; }
.voice-full .face img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--c-bg-sakura);
  margin: 0 auto 10px;
}
.voice-full .face p { font-family: var(--font-maru); font-weight: 700; font-size: 13px; }
.voice-full .txt p { font-size: 14.5px; margin-bottom: .9em; color: var(--c-ink); }

/* ---------- 雇用条件・施設情報 dl ---------- */
.info-table {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(22px, 3.5vw, 36px);
  max-width: 760px;
  margin: 0 auto;
}
.info-table > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 0;
  font-size: 14.5px;
}
.info-table > div + div { border-top: 2px dashed var(--c-line); }
.info-table dt {
  font-family: var(--font-maru);
  font-weight: 700;
  color: var(--c-rose-deep);
  font-size: 14px;
  padding-top: 1px;
}
.info-table dd a { text-decoration: underline; text-underline-offset: 3px; }
.info-table dd a:hover { color: var(--c-rose-deep); }

/* ---------- Q&A ---------- */
.qa-list { display: grid; gap: 18px; max-width: 800px; margin: 0 auto; }
.qa-item {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 24px 28px;
}
.qa-item .q {
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--font-maru);
  font-weight: 700; font-size: 16px;
  margin-bottom: 10px;
}
.qa-item .q::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-sky);
  color: var(--c-white);
  font-size: 15px;
  transform: translateY(4px);
}
.qa-item .a { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; color: var(--c-ink); }
.qa-item .a::before {
  content: 'A';
  flex-shrink: 0;
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-rose);
  color: var(--c-white);
  font-family: var(--font-maru);
  font-weight: 700; font-size: 15px;
  transform: translateY(4px);
}

/* ---------- スライダー ---------- */
.fade-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
}
.fade-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.fade-slider img.is-active { opacity: 1; }

/* ---------- 資料カード（PDF） ---------- */
.doc-grid { display: grid; gap: 22px; max-width: 900px; margin: 0 auto; }
@media (min-width: 760px) { .doc-grid { grid-template-columns: 1fr 1fr; } }
.doc-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.doc-card img { aspect-ratio: 16 / 11; object-fit: cover; object-position: top; width: 100%; border-bottom: 2px dashed var(--c-line); }
.doc-card .body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.doc-card h3 { font-family: var(--font-maru); font-weight: 700; font-size: 15.5px; flex: 1; }
.doc-card .pdf {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13.5px;
  color: var(--c-rose-deep);
}
.doc-card .pdf svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- ブログハブ ---------- */
.blog-gates { display: grid; gap: 26px; max-width: 880px; margin: 0 auto; }
@media (min-width: 760px) { .blog-gates { grid-template-columns: 1fr 1fr; } }
.gate-card {
  background: var(--c-white);
  border-radius: 26px;
  box-shadow: var(--shadow-1);
  padding: 30px 26px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
  border: 3px solid transparent;
}
.gate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.gate-card.is-staff:hover { border-color: var(--c-sky); }
.gate-card.is-users:hover { border-color: var(--c-rose); }
.gate-card img { width: clamp(120px, 16vw, 170px); margin: 0 auto 14px; animation: floaty 6s ease-in-out infinite; }
.gate-card h3 { font-family: var(--font-maru); font-weight: 700; font-size: 21px; margin-bottom: 6px; }
.gate-card p { font-size: 13.5px; color: var(--c-ink-soft); margin-bottom: 16px; }

/* ---------- 記事 ---------- */
.article {
  max-width: 760px; margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 5vw, 52px);
}
.article .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.article .meta time { color: var(--c-ink-soft); font-weight: 600; font-size: 14px; }
.article .meta .badge {
  font-family: var(--font-maru);
  font-size: 11.5px; font-weight: 700;
  background: var(--c-bg-sakura); color: var(--c-rose-deep);
  padding: 3px 14px; border-radius: 999px;
}
.article h1 {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px dotted var(--c-line);
}
.article .content p { margin-bottom: 1.15em; font-size: 15px; }
.article .content img { border-radius: 14px; margin: 1em 0; }
.postnav { display: flex; justify-content: space-between; gap: 12px; max-width: 760px; margin: 26px auto 0; flex-wrap: wrap; }

/* ---------- フォーム ---------- */
.form-card {
  max-width: 760px; margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 5vw, 52px);
}
.form-row { margin-bottom: 24px; }
.form-row > label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-maru);
  font-weight: 700; font-size: 14.5px;
  margin-bottom: 10px;
}
.req, .opt {
  font-size: 10.5px; font-weight: 700;
  padding: 2px 10px; border-radius: 999px;
  color: var(--c-white); letter-spacing: .1em;
}
.req { background: var(--c-rose); }
.opt { background: #c8bcb0; }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"], .form-row select, .form-row textarea {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 2px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-bg);
  transition: border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-rose);
  box-shadow: 0 0 0 4px rgba(224, 143, 169, .15);
}
.form-row textarea { min-height: 160px; resize: vertical; }
.form-agree { text-align: center; font-size: 14px; margin: 28px 0 20px; }
.form-agree a { text-decoration: underline; text-underline-offset: 3px; color: var(--c-rose-deep); }
.form-agree input { width: 16px; height: 16px; accent-color: var(--c-rose); margin-right: 8px; vertical-align: -2px; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 250px; justify-content: center; border: 0; cursor: pointer; font: inherit; font-family: var(--font-maru); font-weight: 700; }

.contact-aside {
  max-width: 760px; margin: 26px auto 0;
  background: var(--c-bg-sky);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}
.contact-aside .tel { font-family: var(--font-maru); font-weight: 900; font-size: clamp(26px, 4vw, 32px); }
.contact-aside small { color: var(--c-ink-soft); display: block; margin-top: 2px; }

/* ---------- SNS ---------- */
.sns-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.sns-grid a {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-maru);
  font-weight: 700; font-size: 14.5px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.sns-grid a:hover { transform: translateY(-3px); border-color: var(--c-rose); box-shadow: var(--shadow-1); }
.sns-grid svg { width: 20px; height: 20px; fill: var(--c-ink); }

/* ---------- CTA帯 ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f8e3ea, #ece7f6 50%, #e2eef8);
  text-align: center;
  padding: clamp(52px, 8vw, 84px) 20px;
}
.cta-band h2 { font-family: var(--font-maru); font-weight: 900; font-size: clamp(22px, 3.4vw, 30px); margin-bottom: 8px; }
.cta-band p { color: var(--c-ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.cta-band .tel { font-family: var(--font-maru); font-weight: 900; font-size: clamp(28px, 4.6vw, 38px); display: block; margin-bottom: 16px; }
.cta-band .tel a { color: inherit; }
.cta-band .tel small { display: block; font-size: 12px; font-weight: 700; color: var(--c-ink-soft); letter-spacing: .2em; }

/* ---------- フッター ---------- */
.site-footer {
  background: #463c34;
  color: #e8ddd2;
  padding: clamp(46px, 7vw, 72px) 0 0;
  font-size: 14px;
}
.footer-grid { display: grid; gap: 36px; padding-bottom: 44px; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 4fr 3fr 3fr; } }
.site-footer .brand img { height: 52px; background: var(--c-white); border-radius: 12px; padding: 5px; }
.site-footer .brand span { color: var(--c-white); }
.site-footer .f-address { margin-top: 14px; font-size: 13px; color: #c4b6a8; }
.site-footer .f-tel { margin-top: 10px; font-family: var(--font-maru); font-weight: 700; font-size: 24px; color: var(--c-white); }
.site-footer .f-tel small { display: block; font-size: 11px; letter-spacing: .2em; color: #c4b6a8; }
.site-footer h4 {
  font-family: var(--font-maru);
  color: var(--c-white);
  font-size: 13px; letter-spacing: .16em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #6a5d50;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { transition: color .3s; font-size: 13.5px; }
.site-footer ul a:hover { color: var(--c-rose); }
.site-footer ul a .ext { font-size: 10px; color: #c4b6a8; margin-left: 5px; }
.footer-cats { text-align: center; }
.footer-cats img { width: 120px; margin: 0 auto -6px; }
.footer-bottom {
  border-top: 2px dashed #6a5d50;
  padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: #c4b6a8;
}
.footer-bottom a:hover { color: var(--c-rose); }

/* ページトップ */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--c-rose);
  color: var(--c-white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none;
  transition: opacity .35s, background .3s, transform .3s;
}
.to-top.is-show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--c-rose-deep); transform: translateY(-3px); }
.to-top svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- リビール ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .deco, .hero-art .cats, .hero-art .float-item, .gate-card img, .panel .art { animation: none; }
}

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(70px, 12vw, 140px) 20px; }
.notfound img { width: min(60%, 260px); margin: 0 auto 18px; }
.notfound .code { font-family: var(--font-maru); font-weight: 900; font-size: clamp(54px, 9vw, 96px); color: var(--c-rose); line-height: 1.2; }
.notfound p { margin: 12px 0 28px; color: var(--c-ink-soft); }

/* ---------- プライバシー ---------- */
.policy-block {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 22px;
}
.policy-block .num { font-family: var(--font-maru); font-weight: 700; color: var(--c-rose); font-size: 14px; letter-spacing: .2em; }
.policy-block h3 { font-family: var(--font-maru); font-weight: 700; font-size: 19px; margin: 4px 0 12px; }
.policy-block p { font-size: 14.5px; color: var(--c-ink-soft); margin-bottom: .8em; }

/* 2026-06-10 claude-fable-5 セッションターン数：12 */
/* ---------- MW WP Form（WP実環境のフォーム出力）用スタイル ---------- */
.mwform-wrap table { width: 100%; border-collapse: collapse; }
.mwform-wrap tr { display: block; margin-bottom: 22px; }
.mwform-wrap th, .mwform-wrap td { display: block; text-align: left; padding: 0; border: 0; background: none; width: auto; }
.mwform-wrap th { font-family: var(--font-maru); font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.mwform-wrap th span { font-size: 11px; color: var(--c-rose-deep); margin-left: 6px; }
.mwform-wrap input[type="text"], .mwform-wrap input[type="tel"], .mwform-wrap input[type="email"], .mwform-wrap input[type="url"], .mwform-wrap select, .mwform-wrap textarea {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 2px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-bg);
  transition: border-color .3s, box-shadow .3s;
}
.mwform-wrap input:focus, .mwform-wrap select:focus, .mwform-wrap textarea:focus {
  outline: none;
  border-color: var(--c-rose);
  box-shadow: 0 0 0 4px rgba(224, 143, 169, .15);
}
.mwform-wrap textarea { min-height: 160px; resize: vertical; }
.mwform-wrap .error { display: block; color: #c0392b; font-size: 12.5px; margin-top: 5px; }
.mwform-wrap input[type="submit"], .mwform-wrap button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 230px;
  font-family: var(--font-maru); font-weight: 700; font-size: 15px;
  padding: 14px 34px; margin: 8px 6px 0;
  border: 0; border-radius: 999px; cursor: pointer;
  background: var(--c-rose); color: var(--c-white);
  box-shadow: var(--shadow-1);
  transition: background .3s, transform .3s;
}
.mwform-wrap input[type="submit"]:hover { background: var(--c-rose-deep); transform: translateY(-2px); }
.mwform-wrap input[name="submitBack"], .mwform-wrap input[value="戻る"] { background: var(--c-white); color: var(--c-rose-deep); border: 2px solid var(--c-rose); box-shadow: none; }
.mwform-wrap .mw_wp_form { text-align: left; }
.mwform-wrap .mw_wp_form_confirm th { color: var(--c-rose-deep); }

/* 2026-06-10 claude-fable-5 セッションターン数：24 */
/* ---------- アクセスマップ（旧サイトから移植したGoogleマップ埋め込み） ---------- */
.map-card { max-width: 760px; height: 320px; margin: 24px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
