@charset "UTF-8";
/* =========================================================
  2026 SCSS 再構成（おすすめ）
  ---------------------------------------------------------
  src/scss/
    foundation/
      _tokens.scss        // CSS変数（色・余白・角・影・zなど）＝設計の核
      _breakpoints.scss   // mq() mixin（min-width only）
      _reset.scss         // グローバル最小限リセット（やりすぎない）
      _base.scss          // body/a/button等の“基礎挙動”
      _typography.scss    // 文字組（ただしグローバルp paddingは禁止）
      _prose.scss         // 記事本文用（.prose / .contents にだけ効かせる）
      _container.scss     // .inner / section / headerスペーサー等
      _index.scss         // @forward まとめ
    layout/
      _header.scss
      _nav.scss
      _footer.scss
      _breadcrumb.scss
      _index.scss
    components/
      _button.scss
      _form.scss
      _accordion.scss
      _details.scss
      _card.scss
      _video.scss
      _index.scss
    utilities/
      _a11y.scss          // sr-only 等
      _helpers.scss       // t-center, lh-tight 等（本当に必要な物だけ）
      _index.scss
    style.scss            // エントリ（@use だけ）
========================================================= */
/* =========================================================
  style.scss
  2026 SCSS Entry Point
  ---------------------------------------------------------
  役割：
  ・このファイルには「設計ロジックを書かない」
  ・@use / @forward で読み込む順番だけを管理
  ・実体のスタイルは各レイヤーに閉じ込める
========================================================= */
/* =========================================================
  foundation
  ・変数 / リセット / タイポ / レイアウト基礎
  ・ここが全体の“物理法則”
========================================================= */
/* =========================================================
  foundation/_index.scss
========================================================= */
/* =========================================================
  foundation/_typography.scss
  グローバルは“余白を持ち込まない”が正義
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* =========================================================
  foundation/_tokens.scss
  色・余白・角・影・z・入力/ボタン等の“設計の核”
========================================================= */
/* project tokens（ここだけ触れば全体が変わる） */
/* ---------- utility functions ---------- */
:root {
  /* color role */
  --c-brand: #dd88d7;
  --c-brand-2: #B13584;
  --c-brand-3: #670B46;
  --c-ink: #111111;
  --c-bg: #ffffff;
  --c-surface: #f7f7f7;
  --c-surface-2: #f2f2f2;
  --c-border: #e5e5e5;
  --c-border-strong: #d0d0d0;
  --c-muted: rgb(183.6, 183.6, 183.6);
  --c-ring: rgba(221, 136, 215, 0.35);
  --c-ring-l: rgba(221, 136, 215, 0.15);
  /* state */
  --c-danger: #940524;
  --c-success: #2fb488;
  --c-warning: #c1bf5d;
  --c-ye-bg: #FFFFD5;
  /* layout */
  --inner-max: 1024px;
  --inner-pad-x: clamp(16px, 4vw, 40px);
  --inner-pad-y: clamp(32px, 6vw, 88px);
  /* spacing scale */
  --s-0: 0px;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 28px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-14: 56px;
  --s-16: 64px;
  /* radius */
  --r-1: 6px;
  --r-2: 10px;
  --r-3: 16px;
  --r-pill: 999px;
  /* shadow */
  --sh-0: 0 0 0 rgba(0,0,0,0);
  --sh-1: 0 10px 24px rgba(0,0,0,.08);
  --sh-2: 0 16px 32px rgba(0,0,0,.12);
  /* z-index（事故防止の“階層”） */
  --z-base: 1;
  --z-header: 900;
  --z-overlay: 950;
  --z-drawer: 1000;
  --z-modal: 1100;
  /* tap / button */
  --tap-min: 44px;
  --btn-radius: var(--r-pill);
  --btn-font: 16px;
  --btn-gap: 10px;
  /* header spacer（JSが上書き） */
  --header-h: 0px;
}

/* =========================================================
  foundation/_breakpoints.scss
  Mobile First / min-width only
========================================================= */
/* =========================================================
  foundation/_reset.scss
  Modern CSS Reset 2026（最小限・壊しにくい）
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--c-bg);
  color: var(--c-ink);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* a は base で設計するので reset では触らない */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
  foundation/_base.scss
  “全ページ共通”の安全な基礎挙動
========================================================= */
html {
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
}
a:hover {
  opacity: 0.85;
}

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
}

::-moz-selection {
  background: rgba(221, 136, 215, 0.25);
}

::selection {
  background: rgba(221, 136, 215, 0.25);
}

/* フォーム要素のズーム事故対策（iOS） */
input,
select,
textarea {
  font-size: 16px;
}

:root {
  --font-sans: "Noto Sans JP";
  --font-serif: "Noto Serif JP";
  --font-en: "Times New Roman";
  --fw-base: 600;
  --fw-bold: 700;
  --fw-black: 900;
}

body {
  font-family: var(--font-sans), system-ui, -apple-system, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--fw-base);
  font-style: normal;
}

/* 見出しは margin のみ（padding は inner / prose 側で管理） */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: var(--fw-bold);
  margin-block: 0 var(--s-5);
}

h1 {
  font-size: clamp(28px, 3.2vw, 40px);
}

h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

h3 {
  font-size: clamp(20px, 2.1vw, 26px);
}

h4 {
  font-size: clamp(18px, 1.8vw, 22px);
}

h5 {
  font-size: clamp(16px, 1.6vw, 18px);
}

h6 {
  font-size: clamp(14px, 1.4vw, 16px);
}

h3.title-pk {
  color: var(--c-brand-2);
}

/* utility fonts */
.font-sans {
  font-family: var(--font-sans), system-ui, sans-serif;
}

.font-serif {
  font-family: var(--font-serif), serif;
}

.font-en {
  font-family: var(--font-en), serif;
}

/* =========================================
  Paragraph → Heading rhythm
  p の直後に見出しが来た場合の上余白
========================================= */
p + h1,
p + h2 {
  margin-top: clamp(32px, 6vw, 56px);
}

p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: clamp(20px, 4vw, 32px);
}

/* =========================================
  Text + Image rhythm
  p に挟まれた画像の余白最適化
========================================= */
/* p の直後に来る画像 */
p + img,
p + picture,
p + figure {
  margin-top: 8px;
  margin-bottom: clamp(20px, 4vw, 32px);
}

/* 画像の直後に p が来る場合 */
img + p,
picture + p,
figure + p {
  margin-top: clamp(16px, 3.5vw, 28px);
}

figure {
  margin: 0;
}

p + figure {
  margin-top: 8px;
  margin-bottom: clamp(24px, 5vw, 40px);
}

figure + p {
  margin-top: clamp(16px, 3.5vw, 28px);
}

figure figcaption {
  margin-top: 8px;
  font-size: 0.85em;
  line-height: 1.5;
  opacity: 0.75;
}

/* =========================================================
  foundation/_prose.scss（置き換え：確定版）
  ・.contents.is-gb は Gutenbergオンリー運用なので対象外
========================================================= */
.prose > *,
.contents:not(.is-gb) > *,
.entry-content:not(.is-gb) > * {
  margin-block: 0 var(--s-5);
}
.prose p,
.contents:not(.is-gb) p,
.entry-content:not(.is-gb) p {
  line-height: 1.7;
}
.prose p + :where(h1, h2, h3, h4, h5, h6),
.contents:not(.is-gb) p + :where(h1, h2, h3, h4, h5, h6),
.entry-content:not(.is-gb) p + :where(h1, h2, h3, h4, h5, h6) {
  margin-top: var(--s-6);
  margin-bottom: clamp(32px, 3.6vw, 50px);
}
.prose ul,
.prose ol,
.contents:not(.is-gb) ul,
.contents:not(.is-gb) ol,
.entry-content:not(.is-gb) ul,
.entry-content:not(.is-gb) ol {
  padding-left: 1.2em;
  list-style: revert;
}
.prose li,
.contents:not(.is-gb) li,
.entry-content:not(.is-gb) li {
  margin-block: 0.4em;
}
.prose img,
.prose picture,
.prose video,
.contents:not(.is-gb) img,
.contents:not(.is-gb) picture,
.contents:not(.is-gb) video,
.entry-content:not(.is-gb) img,
.entry-content:not(.is-gb) picture,
.entry-content:not(.is-gb) video {
  margin-block: var(--s-4);
}
.prose a,
.contents:not(.is-gb) a,
.entry-content:not(.is-gb) a {
  overflow-wrap: anywhere;
}

/* =========================================================
  foundation/_container.scss
  section/inner + fixed header spacer
========================================================= */
body::before {
  content: "";
  display: block;
  height: var(--header-h);
}

body.is-home::before {
  height: 0;
}

section {
  margin: 0;
  padding: 0;
}

.inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding-inline: var(--inner-pad-x);
  padding-block: var(--inner-pad-y);
}

/* =========================================================
  foundation/_list.scss
  リストは “opt-in” に統一（resetでは触らない）
========================================================= */
/* opt-in reset：class/id が付いてる時だけ */
ul[class],
ul[id],
ol[class],
ol[id],
dl[class],
dl[id] {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul[class] li,
ul[id] li,
ol[class] li,
ol[id] li,
dl[class] dt,
dl[class] dd,
dl[id] dt,
dl[id] dd {
  margin: 0;
  padding: 0;
}

/* dl layout（opt-in） */
dl[class] dt, dl[class] dd,
dl[id] dt,
dl[id] dd {
  width: 100%;
}
dl[class] dt,
dl[id] dt {
  margin-bottom: 0;
}
dl[class] dd,
dl[id] dd {
  margin-bottom: var(--s-5);
}
dl[class] dd:last-child,
dl[id] dd:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  dl[class],
  dl[id] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  dl[class] dt,
  dl[class] dd,
  dl[id] dt,
  dl[id] dd {
    margin: 0 0 var(--s-5);
  }
  dl[class] dt,
  dl[id] dt {
    width: 30%;
  }
  dl[class] dd,
  dl[id] dd {
    width: 70%;
  }
  dl[class] dt:last-child,
  dl[class] dd:last-child,
  dl[id] dt:last-child,
  dl[id] dd:last-child {
    margin-bottom: 0;
  }
}
/* =========================================================
  foundation/_flex.scss
  fwrap / con-* / fgrid（ユーティリティ配置）
  ※ 既存思想を維持しつつ tokens に寄せる
========================================================= */
.fwrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* 最終行の margin-bottom を内側で受ける */
  padding-bottom: 2%;
}
.fwrap > [class^=con-],
.fwrap > [class*=" con-"] {
  flex: 0 0 auto;
  margin-bottom: 2%;
}
.fwrap > [class^=con-] img,
.fwrap > [class*=" con-"] img {
  display: block;
  width: 100%;
  height: auto;
}

/* justify */
.start {
  justify-content: flex-start;
}

.center {
  justify-content: center;
}

.end {
  justify-content: flex-end;
}

.between {
  justify-content: space-between;
}

.around {
  justify-content: space-around;
}

.evenly {
  justify-content: space-evenly;
}

/* align */
.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.a-stretch {
  align-items: stretch;
}

.a-baseline {
  align-items: baseline;
}

/* helpers */
.minw0 {
  min-width: 0;
}

.grow {
  flex-grow: 1;
}

.nogrow {
  flex-grow: 0;
}

.shrink0 {
  flex-shrink: 0;
}

/* width: fraction (mobile first) */
.con-1 {
  width: 100%;
  max-width: 100%;
}

.con-2 {
  width: 50%;
  max-width: 50%;
}

.con-3,
.con-4,
.con-5,
.con-6,
.con-7,
.con-8,
.con-12 {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .con-3 {
    width: 33.3333%;
    max-width: 33.3333%;
  }
  .con-4 {
    width: 25%;
    max-width: 25%;
  }
  .con-5 {
    width: 20%;
    max-width: 20%;
  }
  .con-6 {
    width: 16.6667%;
    max-width: 16.6667%;
  }
  .con-7 {
    width: 14.2857%;
    max-width: 14.2857%;
  }
  .con-8 {
    width: 12.5%;
    max-width: 12.5%;
  }
  .con-12 {
    width: 8.3333%;
    max-width: 8.3333%;
  }
}
/* width: percentage (no responsive) */
.con-10 {
  width: 10%;
  max-width: 10%;
}

.con-20 {
  width: 20%;
  max-width: 20%;
}

.con-30 {
  width: 30%;
  max-width: 30%;
}

.con-40 {
  width: 40%;
  max-width: 40%;
}

.con-50 {
  width: 50%;
  max-width: 50%;
}

.con-60 {
  width: 60%;
  max-width: 60%;
}

.con-70 {
  width: 70%;
  max-width: 70%;
}

.con-80 {
  width: 80%;
  max-width: 80%;
}

.con-90 {
  width: 90%;
  max-width: 90%;
}

.con-100 {
  width: 100%;
  max-width: 100%;
}

/* between spacing（fractionのみ / md以上） */
@media (min-width: 768px) {
  .between > .con-1,
  .between > .con-2,
  .between > .con-3,
  .between > .con-4,
  .between > .con-5,
  .between > .con-6,
  .between > .con-7,
  .between > .con-8,
  .between > .con-12 {
    flex-shrink: 0;
  }
  .between > .con-1 {
    width: calc(100% - 2%);
    max-width: calc(100% - 2%);
  }
  .between > .con-2 {
    width: calc(50% - 2%);
    max-width: calc(50% - 2%);
  }
  .between > .con-3 {
    width: calc(33.3333% - 2%);
    max-width: calc(33.3333% - 2%);
  }
  .between > .con-4 {
    width: calc(25% - 2%);
    max-width: calc(25% - 2%);
  }
  .between > .con-5 {
    width: calc(20% - 2%);
    max-width: calc(20% - 2%);
  }
  .between > .con-6 {
    width: calc(16.6667% - 2%);
    max-width: calc(16.6667% - 2%);
  }
  .between > .con-7 {
    width: calc(14.2857% - 2%);
    max-width: calc(14.2857% - 2%);
  }
  .between > .con-8 {
    width: calc(12.5% - 2%);
    max-width: calc(12.5% - 2%);
  }
  .between > .con-12 {
    width: calc(8.3333% - 2%);
    max-width: calc(8.3333% - 2%);
  }
}
/* 縦余白を消す */
.fwrap.nogapv {
  padding-bottom: 0;
}
.fwrap.nogapv > [class^=con-],
.fwrap.nogapv > [class*=" con-"] {
  margin-bottom: 0;
}

/* card list grid（components側にも置けるが、既存運用に合わせてここでも提供） */
.fgrid {
  --cols: 1;
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
}
@media (min-width: 480px) {
  .fgrid {
    --cols: 2;
  }
}
@media (min-width: 768px) {
  .fgrid {
    --cols: 3;
  }
}
.fgrid.is-auto {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.fgrid > * {
  min-width: 0;
}

/* =========================================================
  layout
  ・ページ構造（header / footer / nav / breadcrumb）
  ・大枠の配置のみ
========================================================= */
/* =========================================================
  layout/_index.scss
========================================================= */
/* =========================================================
  layout/_header.scss（後者ベース：不足分は前者から補填）
========================================================= */
/* =========================================================
  Header base
========================================================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  background: transparent;
  transition: background-color 240ms ease, box-shadow 240ms ease;
  /* ロゴだけ左に固定 */
  /* ハンバーガー */
  /* prefers-reduced-motion（前者を入れ子に統合） */
  /* ヘッダー内ボタン色（前者を入れ子に統合） */
}
.header.is-scrolled {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.header .header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--inner-pad-x);
}
.header .site-title {
  margin-right: auto;
  margin-bottom: 0;
  line-height: 1;
}
.header .logo {
  display: inline-flex;
  align-items: center;
  width: 30%;
  margin: 6px 0;
}
.header .logo img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 240ms ease;
}
.header .hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header .hamburger {
    display: none;
  }
}
.header .hamburger-lines {
  width: 26px;
  height: 2px;
  background: #000;
  position: relative;
}
.header .hamburger-lines::before, .header .hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #000;
}
.header .hamburger-lines::before {
  top: -8px;
}
.header .hamburger-lines::after {
  top: 8px;
}
@media (prefers-reduced-motion: reduce) {
  .header {
    transition: none;
  }
  .header .logo img {
    transition: none;
  }
}
.header .btn {
  margin: 0 !important;
}
.header .btn--pink {
  background: var(--c-brand-2);
  color: var(--c-bg);
}
.header .btn--midpink {
  background: var(--c-danger);
  color: var(--c-bg);
}
.header .btn--brack {
  background: var(--c-ink);
  color: var(--c-bg);
}

/* =========================================================
  SP：下固定 contact CTA
========================================================= */
@media (max-width: 1023px) {
  .header {
    /* 文字入りボタン */
    /* アイコン専用ボタン（丸・大きめ） */
  }
  .header .contact.btn-multi {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-header) + 1);
    padding: 10px 5px;
    background: transparent;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    display: grid;
    align-items: center;
    gap: 7px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 48px 48px;
    min-width: 0;
  }
  .header .contact.btn-multi .btn--pink,
  .header .contact.btn-multi .btn--midpink {
    min-height: 48px;
    width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 999px;
  }
  .header .contact.btn-multi .btn--midpink {
    gap: 8px;
  }
  .header .contact.btn-multi .btn--midpink i {
    font-size: 1.05em;
  }
  .header .contact.btn-multi .btn--brack {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .header .contact.btn-multi .btn--brack i {
    font-size: 20px;
    line-height: 1;
  }
  .header .contact.btn-multi .btn--brack:active {
    transform: scale(0.97);
  }
  .header .contact.btn-multi .btn--brack:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--c-ring);
  }
}
/* =========================================================
  PC：通常配置
  ※ 後者の設計を維持しつつ、前者の「ロゴ幅120px」を補填
========================================================= */
@media (min-width: 1024px) {
  .header {
    /* 前者の補填：PCではロゴを固定幅に */
  }
  .header .contact.btn-multi {
    position: static;
    inset: auto;
    z-index: auto;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .header .contact.btn-multi .btn--pink,
  .header .contact.btn-multi .btn--midpink {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
    line-height: 1.1;
    border-radius: 999px;
    white-space: nowrap;
  }
  .header .contact.btn-multi .btn--brack {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
  }
  .header .contact.btn-multi .btn--brack i {
    font-size: 18px;
    line-height: 1;
  }
  .header .contact.btn-multi .btn--brack:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--c-ring);
  }
  .header .logo {
    width: 120px;
  }
}
/* =========================================================
  layout/_nav.scss（前者をSCSS化して補填）
========================================================= */
/* overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
}

/* drawer nav */
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 85vw;
  max-width: 420px;
  background: var(--c-brand-2);
  color: var(--c-bg);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}
.global-nav.is-open {
  transform: translateX(0);
}
.global-nav .global-nav-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}
.global-nav .drawer-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-bottom: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.global-nav .global-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav .global-nav-list a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.global-nav .global-nav-list > li > ul > li > a {
  padding-left: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 90%;
}

/* PC */
@media (min-width: 1024px) {
  .drawer-overlay {
    display: none !important;
  }
  .global-nav {
    position: static;
    transform: none;
    transition: none;
    height: auto;
    width: auto;
    max-width: none;
    background: transparent;
    overflow: visible;
    color: var(--c-ink);
  }
  .global-nav .global-nav-inner {
    padding: 0;
    height: auto;
    overflow: visible;
  }
  .global-nav .drawer-close {
    display: none;
  }
  .global-nav .global-nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .global-nav .global-nav-list > li {
    position: relative;
  }
  .global-nav .global-nav-list > li > a {
    padding: 0;
    line-height: 1.2;
  }
  .global-nav .global-nav-list > li > ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: var(--c-bg);
    border: 1px solid #eee;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: var(--z-drawer);
  }
  .global-nav .global-nav-list > li > ul > li > a {
    padding: 10px 14px;
    font-weight: 600;
    white-space: nowrap;
  }
  .global-nav .global-nav-list > li > ul > li > a:hover, .global-nav .global-nav-list > li > ul > li > a:focus-visible {
    background: rgba(0, 0, 0, 0.05);
    outline: none;
  }
  .global-nav .global-nav-list > li:hover > ul, .global-nav .global-nav-list > li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* =========================================================
  components/_to-top.scss（後者のまま）
========================================================= */
.toppage {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 920;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--c-bg);
  background: var(--c-brand-3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
}
.toppage i {
  font-size: 20px;
  line-height: 1;
}
.toppage.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s;
}
.toppage:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(103, 11, 70, 0.25), 0 10px 24px rgba(0, 0, 0, 0.18);
}
@media (hover: hover) {
  .toppage:hover {
    transform: translateY(-1px);
  }
  .toppage:active {
    transform: translateY(0) scale(0.99);
  }
}

/* =========================================================
  layout/_nav.scss
  drawer overlay + global nav
========================================================= */
/* overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
}

/* drawer nav */
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 85vw;
  max-width: 420px;
  background: var(--c-brand-2);
  color: var(--c-bg);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}
.global-nav.is-open {
  transform: translateX(0);
}
.global-nav .global-nav-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}
.global-nav .drawer-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-bottom: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.global-nav .global-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav .global-nav-list a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.global-nav .global-nav-list > li > ul > li > a {
  padding-left: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 90%;
}

/* PC */
@media (min-width: 1024px) {
  .drawer-overlay {
    display: none !important;
  }
  .global-nav {
    position: static;
    transform: none;
    transition: none;
    height: auto;
    width: auto;
    max-width: none;
    background: transparent;
    overflow: visible;
    color: var(--c-ink);
  }
  .global-nav .global-nav-inner {
    padding: 0;
    height: auto;
    overflow: visible;
  }
  .global-nav .drawer-close {
    display: none;
  }
  .global-nav .global-nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .global-nav .global-nav-list > li {
    position: relative;
  }
  .global-nav .global-nav-list > li > a {
    padding: 0;
    line-height: 1.2;
  }
  .global-nav .global-nav-list > li > ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: var(--c-bg);
    border: 1px solid #eee;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: var(--z-drawer);
  }
  .global-nav .global-nav-list > li:hover > ul, .global-nav .global-nav-list > li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .global-nav .global-nav-list > li > ul > li > a {
    padding: 10px 14px;
    font-weight: 600;
    white-space: nowrap;
  }
  .global-nav .global-nav-list > li > ul > li > a:hover, .global-nav .global-nav-list > li > ul > li > a:focus-visible {
    background: rgba(0, 0, 0, 0.05);
    outline: none;
  }
}
/* =========================================================
  layout/_breadcrumb.scss
  nav[aria-label="breadcrumbs"]
========================================================= */
nav[aria-label=breadcrumbs] ol {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding: 10px 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.5;
}
nav[aria-label=breadcrumbs] li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
nav[aria-label=breadcrumbs] li:not(:last-child) {
  margin-right: 10px;
}
nav[aria-label=breadcrumbs] li:non(:last-child) {
  margin-right: 10px;
}
nav[aria-label=breadcrumbs] a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}
nav[aria-label=breadcrumbs] a:hover {
  opacity: 1;
  text-decoration: underline;
}
nav[aria-label=breadcrumbs] [aria-current=page] {
  font-weight: 700;
  opacity: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav[aria-label=breadcrumbs] li:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

/* =========================================================
  layout/_footer.scss
========================================================= */
.footer {
  background-color: #111;
  color: #f2f2f2;
  font-size: 0.875rem;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.7;
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) var(--inner-pad-x);
  display: grid;
  gap: 48px;
}

.footer-cta {
  text-align: center;
}
.footer-cta p {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.footer-main {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
  }
}
.footer-brand img {
  max-width: 160px;
  margin: 16px auto;
}
@media (min-width: 768px) {
  .footer-brand img {
    margin: 16px auto 16px 0;
  }
}
.footer-brand .map {
  width: 100%;
  height: 250px;
  margin: 20px 0;
}
.footer-brand address {
  font-style: normal;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-brand address {
    text-align: left;
  }
}
.footer-brand a.btn.btn--primary.btn--block:last-child {
  margin-top: 20px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.footer-nav ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-nav > ul > li {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: var(--fw-black);
}
.footer-nav > ul > li > ul > li {
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: var(--fw-base);
  padding-left: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
}

a.btn.btn--primary.btn--block:nth-child(2) {
  margin-top: 20px;
}

/* =========================================================
  layout/_single.scss
  single page main（#main.single）用
========================================================= */
#main.single {
  /* 固定ヘッダー想定：JSで --header-h を入れてるならそれ優先 */
  padding-block-start: calc(var(--header-h, 72px) + clamp(18px, 3vw, 36px));
  padding-block-end: clamp(40px, 6vw, 88px);
  /* section > div（クラス無し想定）を安全にコンテナ化 */
  /* 日付・カテゴリ */
  /* タイトル周りを少しだけ整列させたい場合 */
  /* =========================================================
    Gutenberg content（.contents）
    ここだけ“読みやすい余白”を復活させる
  ========================================================= */
}
#main.single .single-article {
  width: min(100%, 1040px);
  margin-inline: auto;
}
#main.single section {
  padding-inline: var(--inner-pad-x, 16px);
}
#main.single section > div {
  width: min(100%, 1040px);
  margin-inline: auto;
}
#main.single .title {
  margin: 0;
  font-weight: var(--fw-black, 900);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 3.2vw, 40px);
}
#main.single .date {
  margin-block-start: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.62);
}
#main.single .category {
  margin-block-start: 10px;
}
#main.single .category a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.78);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
#main.single .category a:hover {
  background: rgba(0, 0, 0, 0.09);
}
#main.single .category a:active {
  transform: translateY(1px);
}
#main.single .category a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring, rgba(216, 136, 187, 0.35));
}
@media (min-width: 768px) {
  #main.single .date,
  #main.single .category {
    display: inline-flex;
    margin-block-start: 12px;
    vertical-align: middle;
  }
  #main.single .category {
    margin-inline-start: 10px;
  }
}
#main.single .contents {
  margin-block-start: clamp(18px, 3.5vw, 34px);
  /* 画像やブロックがはみ出さない */
  /* 見出し/段落/リストの基本余白（グローバルでmargin消しててもここで復活） */
  /* WPブロックでよく出る“余白の暴れ”を最低限だけ矯正 */
  /* テーブル */
}
#main.single .contents > * {
  min-width: 0;
}
#main.single .contents :where(h2, h3, h4) {
  line-height: 1.25;
  letter-spacing: 0.01em;
}
#main.single .contents :where(p) {
  line-height: 1.9;
}
#main.single .contents :where(ul, ol) {
  padding-inline-start: 1.4em;
  line-height: 1.9;
}
#main.single .contents :where(a) {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: from-font;
}
#main.single .contents :where(a):hover {
  opacity: 0.8;
}
#main.single .contents :where(a):focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring, rgba(216, 136, 187, 0.35));
  border-radius: 6px;
}
#main.single .contents :where(img, video) {
  max-width: 100%;
  height: auto;
  display: block;
}
#main.single .contents :where(figure) {
  margin: 0 0 1.2em;
}
#main.single .contents :where(figcaption) {
  margin-block-start: 0.5em;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
#main.single .contents :where(blockquote) {
  margin: 0 0 1.2em;
  padding: 14px 16px;
  border-inline-start: 4px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
#main.single .contents :where(blockquote) :where(p) {
  margin: 0;
}
#main.single .contents :where(hr) {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin-block: 1.8em;
}
#main.single .contents :where(.wp-block-image, .wp-block-gallery, .wp-block-columns, .wp-block-group) {
  margin-block: 0 1.2em;
}
#main.single .contents :where(table) {
  width: 100%;
  border-collapse: collapse;
  margin-block: 0 1.4em;
  font-size: 15px;
}
#main.single .contents :where(th, td) {
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 10px 12px;
  vertical-align: top;
}
#main.single .contents :where(th) {
  background: rgba(0, 0, 0, 0.04);
  font-weight: var(--fw-bold, 700);
  white-space: nowrap;
}

.pagenation {
  width: 100%;
  margin-block-start: clamp(28px, 4vw, 52px);
  padding-block-start: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.pagenation .inner {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: var(--inner-pad-x, 16px);
}
.pagenation .fwrap {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .pagenation .fwrap {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.pagenation .col {
  min-width: 0;
}
.pagenation .col span {
  display: block;
  margin-block-end: 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.62);
}
.pagenation .col a {
  display: block;
  min-height: var(--tap-min, 44px);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  text-decoration: none;
  color: inherit;
  font-weight: var(--fw-bold, 700);
  line-height: 1.5;
  word-break: break-word;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.pagenation .col a:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.pagenation .col a:active {
  transform: translateY(0);
  box-shadow: none;
}
.pagenation .col a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring, rgba(216, 136, 187, 0.35));
}
.pagenation .col.right {
  text-align: right;
}
.pagenation .con-2.left {
  text-align: left;
}
.pagenation .con-2.left a {
  padding-inline-start: 42px;
  position: relative;
}
.pagenation .con-2.left a::before {
  content: "←";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: var(--fw-bold, 700);
  opacity: 0.8;
}
.pagenation .con-2.right {
  text-align: left;
}
@media (min-width: 768px) {
  .pagenation .con-2.right {
    text-align: right;
  }
}
.pagenation .con-2.right a {
  padding-inline-end: 42px;
  position: relative;
}
.pagenation .con-2.right a::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: var(--fw-bold, 700);
  opacity: 0.8;
}

/* もし .fwrap が display:flex 前提の既存CSSがいる場合の保険 */
.fwrap {
  flex-wrap: wrap;
}

.pagenation {
  margin-block-start: clamp(28px, 4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: var(--inner-pad-x, 16px);
  /* 現在ページ（span） */
  /* 前へ / 次へ */
  /* ドット（…）が出る場合 */
}
.pagenation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: var(--tap-min, 44px);
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.pagenation .page-numbers:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.pagenation .page-numbers:active {
  transform: translateY(0);
  box-shadow: none;
}
.pagenation .page-numbers:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring, rgba(216, 136, 187, 0.35));
}
.pagenation .page-numbers.current,
.pagenation [aria-current=page].page-numbers {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
  font-weight: var(--fw-bold, 700);
  pointer-events: none;
}
.pagenation .page-numbers.prev,
.pagenation .page-numbers.next {
  min-width: 0;
  padding-inline: 16px;
  gap: 8px;
  font-weight: var(--fw-bold, 700);
}
.pagenation .page-numbers.prev::before {
  content: "←";
  opacity: 0.75;
}
.pagenation .page-numbers.next::after {
  content: "→";
  opacity: 0.75;
}
.pagenation .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: 24px;
  padding: 0 6px;
  box-shadow: none;
  pointer-events: none;
  opacity: 0.6;
}

/* =========================================================
  components
  ・再利用可能なUI部品
  ・button / form / card / accordion / details / video
========================================================= */
/* =========================================================
  components/_index.scss
========================================================= */
/* =========================================================
  Button base
========================================================= */
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  min-height: var(--tap-min);
  padding: 0 18px;
  font-size: var(--btn-font);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
  text-decoration: none;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* =========================================================
  Button modifiers
========================================================= */
.btn--arrow::after {
  content: "→";
}

.btn--block {
  width: 100%;
}

/* =========================================================
  Button appearance
========================================================= */
.btn--primary {
  background: var(--c-brand);
  color: #111;
  box-shadow: var(--sh-1);
}
@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--sh-2);
  }
  .btn--primary:active {
    transform: translateY(0) scale(0.99);
  }
}

.btn--outline {
  background: transparent;
  color: inherit;
  border-color: var(--c-border);
}
@media (hover: hover) {
  .btn--outline:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
  }
}

.btn--outline-px {
  background: transparent;
  color: var(--c-brand-3);
  border-color: var(--c-brand-3);
}
@media (hover: hover) {
  .btn--outline-px:hover {
    background: var(--c-brand-3);
    color: var(--c-bg);
    transform: translateY(-1px);
  }
}

/* =========================================================
  Button content alignment
========================================================= */
.btn--center {
  justify-content: center;
}

.btn--left {
  justify-content: flex-start;
  text-align: left;
}

.btn--right {
  justify-content: flex-end;
  text-align: right;
}

/* =========================================================
  Button row
  - SP：縦並び / 自動で余白
  - PC：文字幅（fit-content）
========================================================= */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--btn-gap);
  /* SP */
  flex-direction: column;
  align-items: stretch;
  /* PC */
}
.btn-row > .btn {
  width: 100%;
}
@media (min-width: 1024px) {
  .btn-row {
    flex-direction: row;
    align-items: center;
  }
  .btn-row > .btn {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}

/* =========================================================
  Fixed width variants（必要な時だけ）
========================================================= */
@media (min-width: 1024px) {
  .btn-row--fixed > .btn {
    width: 100%;
    flex: 1 1 0;
  }
}

@media (min-width: 1024px) {
  .btn-row--2col > .btn {
    width: 100%;
    flex: 1 1 calc(50% - var(--btn-gap));
  }
}

/* =========================================================
  Button row spacing
  - 縦並び（SP）のときだけ「行全体の上マージン」を付ける
  - 横並び（PC）では余白なし（位置ズレ防止）
========================================================= */
/* ボタン行（btn-row） */
p + .btn-row,
ul + .btn-row,
ol + .btn-row,
dl + .btn-row,
address + .btn-row,
table + .btn-row,
figure + .btn-row,
details + .btn-row,
h1 + .btn-row,
h2 + .btn-row,
h3 + .btn-row,
h4 + .btn-row,
h5 + .btn-row,
h6 + .btn-row {
  margin-top: clamp(14px, 3vw, 24px);
  /* PC（横並び）では margin-top を消す */
}
@media (min-width: 1024px) {
  p + .btn-row,
  ul + .btn-row,
  ol + .btn-row,
  dl + .btn-row,
  address + .btn-row,
  table + .btn-row,
  figure + .btn-row,
  details + .btn-row,
  h1 + .btn-row,
  h2 + .btn-row,
  h3 + .btn-row,
  h4 + .btn-row,
  h5 + .btn-row,
  h6 + .btn-row {
    margin-top: 0;
  }
}

/* 単体ボタン（.btn）は今まで通りでOKなら触らない。
   もし単体も「横並びの時だけ余白なし」にしたいなら下も同様に。 */
/*
.btn + .btn,
p + .btn,
ul + .btn,
ol + .btn,
dl + .btn,
table + .btn,
figure + .btn,
details + .btn,
h1 + .btn,
h2 + .btn,
h3 + .btn,
h4 + .btn,
h5 + .btn,
h6 + .btn {
  margin-top: clamp(12px, 2.5vw, 20px);

  @include mq(lg) {
    margin-top: 0;
  }
}
*/
/* 見出し直後にボタンが来るパターンもついでに安定 */
h1 + .btn,
h2 + .btn,
h3 + .btn,
h4 + .btn,
h5 + .btn,
h6 + .btn,
h1 + .btn-row,
h2 + .btn-row,
h3 + .btn-row,
h4 + .btn-row,
h5 + .btn-row,
h6 + .btn-row {
  margin-top: clamp(12px, 2.5vw, 20px);
}

/* =========================================================
  Gradient button
  .btn--grad
  左上 → 右下 グラデーション
  #670B46 → #dd88d7
========================================================= */
.btn--grad {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, #670B46 0%, #dd88d7 100%);
  color: #fff;
  border-color: transparent;
  border-radius: var(--r-1);
  box-shadow: var(--sh-1);
  /* ✅ グラデ専用：右側に arrow ">" を付ける */
}
@media (hover: hover) {
  .btn--grad:hover {
    transform: translateY(-1px);
    box-shadow: var(--sh-2);
    filter: brightness(1.05);
  }
  .btn--grad:active {
    transform: translateY(0) scale(0.99);
    filter: brightness(0.98);
  }
}
.btn--grad:focus-visible {
  box-shadow: 0 0 0 4px var(--c-ring), var(--sh-2);
}
.btn--grad::after {
  content: "\f105"; /* f105 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid は 900 */
  display: inline-block;
  margin-left: 0.5em;
  transform: translateY(0.02em);
  opacity: 0.95;
}

/* Contact Form 7 submit button styling
   - CF7は初期状態で disabled を付けることがある（送信中/バリデーション等）
   - .send_btn を優先しつつ、CF7標準classにも効かせる
*/
.wpcf7 .wpcf7-submit,
.wpcf7 input.wpcf7-submit,
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit,
.wpcf7 .send_btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--c-main, #111), var(--c-sub, #444));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background-position 240ms ease, opacity 160ms ease, filter 160ms ease;
}
.wpcf7 .wpcf7-submit:hover,
.wpcf7 input.wpcf7-submit:hover,
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit:hover,
.wpcf7 .send_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
  filter: brightness(1.03);
}
.wpcf7 .wpcf7-submit:active,
.wpcf7 input.wpcf7-submit:active,
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit:active,
.wpcf7 .send_btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  filter: brightness(0.98);
}
.wpcf7 .wpcf7-submit:focus-visible,
.wpcf7 input.wpcf7-submit:focus-visible,
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit:focus-visible,
.wpcf7 .send_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12), 0 10px 22px rgba(0, 0, 0, 0.12);
}
.wpcf7 .wpcf7-submit:disabled, .wpcf7 .wpcf7-submit[disabled],
.wpcf7 input.wpcf7-submit:disabled,
.wpcf7 input.wpcf7-submit[disabled],
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit:disabled,
.wpcf7 input[type=submit].wpcf7-form-control.wpcf7-submit[disabled],
.wpcf7 .send_btn:disabled,
.wpcf7 .send_btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
  filter: grayscale(0.15);
}
.wpcf7.is-block .wpcf7-submit,
.wpcf7.is-block .send_btn {
  width: 100%;
}
.wpcf7 .has-spinner {
  padding-right: 28px;
}

/* =========================================================
  components/_form.scss
========================================================= */
form {
  width: 100%;
}

label {
  display: block;
  width: 100%;
  font-weight: var(--fw-bold);
}

label > input,
label > textarea,
label > select {
  margin-top: var(--s-2);
}

/* Text / Email / Select / Textarea */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: #fff;
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-ink);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
input[type=search]:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.7;
  background: var(--c-surface);
  cursor: not-allowed;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

::-moz-placeholder {
  color: #999;
  opacity: 1;
}

::placeholder {
  color: #999;
  opacity: 1;
}

/* Checkbox / Radio */
input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  vertical-align: middle;
  accent-color: var(--c-ink);
}

/* :has が使える環境は label 内パターンも綺麗に */
@supports selector(label:has(> input)) {
  label:has(> input[type=checkbox]),
  label:has(> input[type=radio]) {
    display: flex;
    align-items: center;
    gap: var(--s-3);
  }
  label:has(> input[type=checkbox]) > input,
  label:has(> input[type=radio]) > input {
    margin-top: 0;
  }
}
/* 隣接パターン（保険） */
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: var(--fw-bold);
}

/* Submit */
button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: var(--r-1);
  min-height: var(--tap-min);
  padding: 0 18px;
  font-size: var(--btn-font);
  font-weight: var(--fw-bold);
  background: var(--c-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}
button[type=submit]:hover {
  opacity: 0.9;
}
button[type=submit]:active {
  transform: scale(0.99);
}
button[type=submit]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}
button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Error state (.is-error) */
.is-error {
  background: #fff5f7;
  border-left: 3px solid #b00020;
  padding: var(--s-4);
}
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=url],
.is-error input[type=search],
.is-error select,
.is-error textarea {
  border-color: #b00020;
}
.is-error .error-msg {
  display: block;
  margin-top: var(--s-2);
  font-size: 14px;
  line-height: 1.4;
  color: #b00020;
}

/* Confirm view (.is-confirm) */
.is-confirm {
  padding: var(--s-4);
  border-bottom: 1px solid var(--c-border);
}
.is-confirm label {
  margin-bottom: var(--s-2);
}
.is-confirm .confirm-value {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: var(--c-surface);
  line-height: 1.5;
}
.is-confirm input,
.is-confirm select,
.is-confirm textarea {
  pointer-events: none;
  background: var(--c-surface);
  border-color: var(--c-border);
}

/* Optional: actions */
.form-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}

/* PC */
@media (min-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=search],
  select,
  textarea {
    padding: 10px 12px;
  }
  button[type=submit] {
    min-height: 42px;
  }
}
/* =========================================================
  components/_accordion.scss
  対象：dl.js-accordion（JS制御前提）
========================================================= */
dl.js-accordion {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: #fff;
  overflow: clip;
}
dl.js-accordion dt {
  width: 100%;
  padding: 14px var(--s-5);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.1em;
  font-weight: var(--fw-black);
  line-height: 1.4;
  position: relative;
}
dl.js-accordion dt::after {
  content: "+";
  position: absolute;
  right: var(--s-5);
  top: 50%;
  transform: translateY(-50%);
  font-weight: var(--fw-bold);
}
dl.js-accordion dt.is-open::after {
  content: "−";
}
dl.js-accordion dt + dd + dt {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
dl.js-accordion dd {
  padding: 0 var(--s-5) var(--s-4);
  display: none;
  line-height: 1.7;
  margin: 0;
}
dl.js-accordion dd.is-open, dt.is-open + dl.js-accordion dd {
  display: block;
}
dl.js-accordion dd p {
  margin: 0;
}
@media (min-width: 1024px) {
  dl.js-accordion dt {
    padding: 12px var(--s-5);
  }
  dl.js-accordion dd {
    padding-bottom: 14px;
  }
}

details {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
details:not(:last-child) {
  margin-bottom: 10px;
}

/* summary */
summary {
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 14px 20px;
  margin: 0;
  font-size: 120%;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

details[open] summary::after {
  content: "−";
}

details[open] summary {
  border-bottom: 1px solid #eee;
}

/* アニメーション本体 */
details > .js-details-panel {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 280ms ease;
  padding: 0 20px;
}

/* 中身の縦余白 */
details > .js-details-panel > * {
  margin-top: 12px;
}

details > .js-details-panel > *:last-child {
  margin-bottom: 16px;
}

/* PC */
@media (min-width: 1024px) {
  summary {
    padding: 12px 20px;
  }
}
/* =========================================================
  components/_card.scss
  ・一覧は .fgrid
  ・中身は .card
========================================================= */
.fgrid {
  --cols: 1;
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
  /* 明示カラム指定（固定） */
  /* レスポンシブ段階指定（上書き） */
  /* pick / サムネ系（auto-fit派生） */
}
@media (min-width: 480px) {
  .fgrid {
    --cols: 2;
  }
}
@media (min-width: 768px) {
  .fgrid {
    --cols: 3;
  }
}
.fgrid.is-auto {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.fgrid > * {
  min-width: 0;
}
.fgrid.is-1col {
  --cols: 1;
}
.fgrid.is-2col {
  --cols: 2;
}
.fgrid.is-3col {
  --cols: 1;
}
.fgrid.is-4col {
  --cols: 4;
}
@media (min-width: 768px) {
  .fgrid.is-2col {
    --cols: 2;
  }
}
@media (min-width: 480px) {
  .fgrid.is-3col {
    --cols: 3;
  }
}
@media (min-width: 768px) {
  .fgrid.is-3col {
    --cols: 3;
  }
}
@media (min-width: 480px) {
  .fgrid.is-4col {
    --cols: 2;
  }
}
@media (min-width: 768px) {
  .fgrid.is-4col {
    --cols: 4;
  }
}
.fgrid.fgrid--pick {
  --gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  border-radius: var(--r-3);
  overflow: clip;
  box-shadow: var(--sh-1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-2);
  }
}

.card-title {
  margin: 0;
  padding: var(--s-2) var(--s-4) 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: var(--fw-bold);
  text-align: left;
}

.card-media {
  margin: var(--s-4) var(--s-4) 0;
  overflow: clip;
}
.card-media img,
.card-media video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-caption {
  padding: 5px var(--sh-2) 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

.card-text {
  padding: 12px var(--s-4) 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.card-action {
  margin-top: auto;
  padding: 0 var(--s-2);
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
}
/* =========================================================
  components/_video.scss
========================================================= */
.video-block {
  max-width: 960px;
  margin-inline: auto;
  padding: 16px;
}
.video-block .video-figure {
  margin: 0;
  position: relative;
}
.video-block .video-figure .video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.video-block .video-figure .video-toggle {
  position: absolute;
  inset: auto 12px 12px auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}
.video-block .video-figure .video-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.video-block .video-caption {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 動きが苦手な人は演出を抑制 */
@media (prefers-reduced-motion: reduce) {
  .video-block * {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
  components/_site-extras.scss
  旧SCSSを“新フルセット”に載せ替え（マークアップ不変）
  - $bp-pc は使わない
  - breakpoints は @include mq() 統一
  - map.get を使うので sass:map を @use
========================================================= */
/* =========================================================
  popup banner
========================================================= */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#popup-banner {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 80%;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  #popup-banner {
    width: 100%;
    right: 120px;
    left: auto;
    bottom: 0;
  }
}
#popup-banner .popup-content {
  width: 100%;
  padding: 10px 40px 20px 20px;
  margin: auto 0 auto auto;
  background: transparent;
  border-radius: 10px 10px 0 0;
  position: relative;
  transform: translateY(100%);
  animation: slideUp 0.45s ease-out forwards;
}
@media (min-width: 1024px) {
  #popup-banner .popup-content {
    width: 320px;
    padding: 20px 40px 20px 20px;
  }
}
#popup-banner .popup-content .popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: var(--c-ink);
  color: var(--c-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
}
#popup-banner .popup-content .popup-close:hover {
  opacity: 1;
}

/* =========================================================
  swiper
========================================================= */
.swiper {
  width: 100%;
}
.swiper.staffList {
  margin-bottom: 30px;
}
.swiper.staffList .swiper-pagination-bullet {
  background: var(--c-primary);
  opacity: 1;
}
.swiper.staffList .swiper-pagination-bullet-active {
  background: var(--c-accent2);
}
.swiper.staffList .swiper-button-next,
.swiper.staffList .swiper-button-prev {
  color: var(--c-accent2);
}
.swiper .swiper-wrapper {
  width: 100%;
}
.swiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: auto;
}
.swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}

/* =========================================================
  h2.title（既存クラス維持）
========================================================= */
h2.title, h1.title {
  background: url(../image/title-line.png) no-repeat center bottom;
  background-size: auto 15px;
  font-size: clamp(18px, 7vw, 44px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0 2.5rem;
}
@media (min-width: 1024px) {
  h2.title, h1.title {
    padding-top: 50px;
    margin-bottom: 40px;
  }
}
h2.title small, h1.title small {
  padding-top: 1rem;
  display: block;
  font-size: 70%;
  color: var(--c-secondary);
}

/* =========================================================
  section 背景タイトル（mapループ）
========================================================= */
section {
  text-align: center;
}
section#first_view {
  width: 100%;
}
section#sec_01 {
  background: url("../image/title-concept-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_01 {
    background: url("../image/title-concept.png") no-repeat center top;
  }
}
section#sec_02 {
  background: url("../image/title-OverallStrength-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_02 {
    background: url("../image/title-OverallStrength.png") no-repeat center top;
  }
}
section#sec_03 {
  background: url("../image/title-Gallery-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_03 {
    background: url("../image/title-Gallery.png") no-repeat center top;
  }
}
section#sec_04 {
  background: url("../image/title-Thecharm-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_04 {
    background: url("../image/title-Thecharm.png") no-repeat center top;
  }
}
section#sec_05 {
  background: url("../image/title-review-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_05 {
    background: url("../image/title-review.png") no-repeat center top;
  }
}
section#sec_06 {
  background: url("../image/title-media-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_06 {
    background: url("../image/title-media.png") no-repeat center top;
  }
}
section#sec_07 {
  background: url("../image/title-Information-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_07 {
    background: url("../image/title-Information.png") no-repeat center top;
  }
}
section#sec_08 {
  background: url("../image/title-In-House-sp.png") no-repeat center top;
}
@media (min-width: 1024px) {
  section#sec_08 {
    background: url("../image/title-In-House.png") no-repeat center top;
  }
}

/* =========================================================
  main ページ別背景（mapループ）
========================================================= */
main.page-news {
  background: url(../image/title-news-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-news {
    background: url(../image/title-news.png) no-repeat center top;
  }
}
main.page-event {
  background: url(../image/title-event-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-event {
    background: url(../image/title-event.png) no-repeat center top;
  }
}
main.page-blog {
  background: url(../image/title-blog-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-blog {
    background: url(../image/title-blog.png) no-repeat center top;
  }
}
main.page-staff {
  background: url(../image/title-staff-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-staff {
    background: url(../image/title-staff.png) no-repeat center top;
  }
}
main.page-comic {
  background: url(../image/title-comic-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-comic {
    background: url(../image/title-comic.png) no-repeat center top;
  }
}
main.page-column {
  background: url(../image/title-column-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-column {
    background: url(../image/title-column.png) no-repeat center top;
  }
}
main.page-aboutme {
  background: url(../image/title-concept-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-aboutme {
    background: url(../image/title-concept.png) no-repeat center top;
  }
}
main.page-case {
  background: url(../image/title-Gallery-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-case {
    background: url(../image/title-Gallery.png) no-repeat center top;
  }
}
main.page-review {
  background: url(../image/title-review-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-review {
    background: url(../image/title-review.png) no-repeat center top;
  }
}
main.page-estate {
  background: url(../image/title-Information-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-estate {
    background: url(../image/title-Information.png) no-repeat center top;
  }
}
main.page-company {
  background: url(../image/title-company-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-company {
    background: url(../image/title-company.png) no-repeat center top;
  }
}
main.page-contact {
  background: url(../image/title-contact-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-contact {
    background: url(../image/title-contact.png) no-repeat center top;
  }
}
main.page-feature {
  background: url(../image/title-feature-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-feature {
    background: url(../image/title-feature.png) no-repeat center top;
  }
}
main.page-house {
  background: url(../image/title-phlox-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-house {
    background: url(../image/title-phlox.png) no-repeat center top;
  }
}
main.page-media {
  background: url(../image/title-media-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-media {
    background: url(../image/title-media.png) no-repeat center top;
  }
}
main.page-pp {
  background: url(../image/title-pp-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-pp {
    background: url(../image/title-pp.png) no-repeat center top;
  }
}
main.page-phlox {
  background: url(../image/title-phlox-sp.png) no-repeat center top;
}
@media (min-width: 1024px) {
  main.page-phlox {
    background: url(../image/title-phlox.png) no-repeat center top;
  }
}

/* =========================================================
  fgrid 追加調整（既存selector維持）
========================================================= */
.fgrid {
  margin-bottom: 50px;
  /* SP 1カラム / PC 2カラム（mq統一） */
}
.fgrid .card {
  padding-bottom: 20px;
}
.fgrid .card .cat {
  display: inline-flex;
  padding: 5px 16px 0;
}
.fgrid .card .cat a {
  font-size: 70%;
  color: var(--c-brand-2);
  border: 1px solid var(--c-brand-2);
  text-decoration: none;
  padding: 0 2px;
}
.fgrid .card .cat a + a {
  margin-left: 5px;
}
.fgrid .card-action a {
  color: var(--c-accent);
}
.fgrid.is-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .fgrid.is-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* =========================================================
  ul.gallery-category
========================================================= */
ul {
  /* =======================================================
    ul.icon-menu
  ======================================================= */
  /* =======================================================
    ul.logo-list
  ======================================================= */
}
ul.gallery-category {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
ul.gallery-category li {
  margin: 0;
}
ul.gallery-category a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 999px;
}
@media (hover: hover) {
  ul.gallery-category a:hover {
    background: #000;
  }
}
ul.gallery-category a:active {
  transform: scale(0.98);
}
ul.gallery-category a:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}
ul.icon-menu {
  list-style: none;
  margin-bottom: 50px;
  padding: 0;
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(auto-fit, 84px);
  justify-content: center;
  justify-items: center;
}
ul.icon-menu li {
  text-align: center;
}
ul.icon-menu a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 4px 0;
}
ul.icon-menu .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
ul.icon-menu .icon i {
  font-size: 35px;
  line-height: 1;
  color: var(--c-primary, #000);
}
ul.icon-menu .label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
@media (hover: hover) {
  ul.icon-menu a:hover .icon {
    background: var(--c-primary, #000);
    transform: translateY(-2px);
  }
  ul.icon-menu a:hover .icon i {
    color: #fff;
  }
}
ul.logo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  justify-items: center;
}
ul.logo-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.logo-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
ul.logo-list img {
  max-width: 100%;
  max-height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  ul.logo-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  ul.logo-list a {
    height: 90px;
  }
}
@media (min-width: 1024px) {
  ul.logo-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* icon-menu：タブレット以上で別指定（元の意図維持） */
@media (min-width: 768px) {
  ul.icon-menu {
    grid-template-columns: repeat(7, 1fr);
    justify-content: stretch;
  }
  ul.icon-menu a {
    width: auto;
  }
}
/* =========================================================
  news-card
========================================================= */
.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  margin-bottom: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.is-home .news-card {
  gap: 20px;
}
.news-card .day-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.news-card .day-cat time {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.news-card .day-cat a {
  font-size: 0.7rem;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--c-bg);
  background-color: var(--c-brand-2);
  text-decoration: none;
  white-space: nowrap;
}
.news-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 900;
}
.news-card h3 a {
  text-decoration: none;
}
.news-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}
.news-card .card-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn--arrow {
  position: relative;
  color: var(--c-brand-2) !important;
  font-size: 80%;
}

/* =========================================================
  table scroll
========================================================= */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px 10px;
}

.data-table {
  border-collapse: collapse;
  min-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.data-table th,
.data-table td {
  padding: 12px 10px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: nowrap;
}
.data-table th {
  background: rgba(0, 0, 0, 0.04);
  font-weight: 700;
}
.data-table td {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.data-table tr + tr th {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
  .table-scroll {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }
  .data-table {
    min-width: 0;
  }
}
/* =========================================================
  Column category buttons (.area-list)
========================================================= */
ul.area-list {
  --btn-bg: #fff;
  --btn-fg: var(--c-primary, #111);
  --btn-border: rgba(0,0,0,0.12);
  --btn-shadow: 0 10px 22px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
ul.area-list li {
  margin: 0;
  padding: 0;
}
ul.area-list a {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 12px 0;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(10px, 3.2vw, 14px);
  letter-spacing: -0.1rem;
  line-height: 1.25;
  text-align: center;
  box-shadow: var(--btn-shadow);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
ul.area-list a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.18);
}
ul.area-list a:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
ul.area-list a:focus-visible {
  outline: 3px solid rgba(216, 136, 215, 0.35);
  outline-offset: 3px;
}
ul.area-list .topBtn a {
  background: var(--c-accent2-ring, #670b46);
  color: #fff;
  border-color: transparent;
}
ul.area-list .topBtn a:hover {
  box-shadow: 0 16px 34px rgba(103, 11, 70, 0.22);
}

@media (min-width: 1024px) {
  .area-list {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .area-list a {
    font-size: 14px;
    padding: 14px 16px;
  }
}
/* max-width が必要な箇所（mqがmin-onlyなのでここだけ素直に書く） */
@media (max-width: 1023px) {
  ul.area-list.li--col > li:first-child {
    grid-column: 1/-1;
  }
  ul.area-list.li--col > li:first-child a {
    width: 100%;
  }
}
.card-btn-column {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .contents.companyPage .fwrap.companyGroup [class^=con] {
    width: 100%;
    max-width: 100%;
  }
}
.contents.companyPage .fwrap.companyGroup [class^=con] p, .contents.companyPage .fwrap.companyGroup [class^=con] address {
  margin: 0;
  padding: 0;
}
.contents.companyPage .fwrap.companyGroup [class^=con] h3 {
  margin: 5px 0;
  padding: 0;
}
.contents.companyPage .fwrap.companyGroup [class^=con] address {
  text-decoration: none;
}

dl.overview {
  text-align: left;
}

main.page-company .map {
  height: 400px;
}
main.page-contact section .inner .contents {
  text-align: left;
}

.p--banner-box {
  margin: 0 0 50px;
}

/* =========================================================
  components/_gutenberg-sandbox.scss（新規）
  ・WP標準CSSは殺さない
  ・崩れやすい事故だけ防ぐ
========================================================= */
.contents.is-gb {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contents.is-gb :where(img, video, iframe) {
  max-width: 100%;
  height: auto;
}

/* =========================================================
  components/_gutenberg-overrides.scss（新規）
  ・装飾はWPブロックの基本セレクタでのみ
  ・全シングルで有効（body.single はWPが必ず付ける）
========================================================= */
body.single .contents.is-gb :where(.wp-block-heading) {
  letter-spacing: 0.01em;
}
body.single .contents.is-gb :where(.wp-block-image figcaption) {
  font-size: 0.85em;
  opacity: 0.75;
}
body.single .contents.is-gb :where(.wp-block-button__link) {
  border-radius: var(--r-pill);
  text-decoration: none;
}
body.single .contents.is-gb :where(.wp-block-quote) {
  border-left: 4px solid rgba(0, 0, 0, 0.18);
  padding-left: 1em;
}
body.single .contents.is-gb :where(.wp-block-table table) {
  width: 100%;
  border-collapse: collapse;
}

/* =========================================================
  utilities
  ・最後に上書きしてOKな小道具
  ・a11y / helpers
========================================================= */
/* utilities/_index.scss */
/* =========================================================
  utilities/_a11y.scss
  アクセシビリティ系ユーティリティ
========================================================= */
/* スクリーンリーダー専用（見た目に出さない） */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* フォーカスリングを視認性強めで出したい時 */
.focus-ring:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}

/* タップハイライト抑制（必要な要素にだけ付ける） */
.no-tap-highlight {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
  utilities/_helpers.scss
  “本当に必要なやつだけ”の汎用ユーティリティ
  ※ 余白系は増やしすぎると設計が崩れるので最小に
========================================================= */
/* text align */
.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

/* font weight */
.t-light {
  font-weight: 300;
}

.t-normal {
  font-weight: 400;
}

.t-bold {
  font-weight: var(--fw-bold);
}

.t-black {
  font-weight: var(--fw-black);
}

/* line-height */
.lh-tight {
  line-height: 1.3;
}

.lh-base {
  line-height: 1.6;
}

.lh-loose {
  line-height: 1.8;
}

/* display helpers */
.d-block {
  display: block;
}

.d-none {
  display: none;
}

@media (min-width: 1024px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
}
/* responsive br */
.br-sp {
  display: inline;
}

.br-pc {
  display: none;
}

@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
}
/* spacing helpers（最小限） */
.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-20 {
  margin-left: 20px;
}

.pl-20 {
  padding-left: 20px;
}

/* overflow */
.minw0 {
  min-width: 0 !important;
}

.oh {
  overflow: hidden !important;
}

/* 画像比率を崩さず中央トリミングしたい時 */
.media-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* クリック領域だけ広げたい時（a/buttonに付与） */
.tap-area {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}

.number {
  font-size: 50px;
  color: var(--c-ring);
}
.number small {
  font-size: 20px;
}

time.date {
  display: block;
}

/* =========================================================
  cats（カテゴリリンク）
========================================================= */
.meta {
  margin-bottom: 30px !important;
}

.cats,
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  /* 余白は親の設計に合わせやすいよう軽め */
  margin: 0;
  padding: 0;
  /* 画面が狭いときの詰まりを軽減 */
}
.cats .cat,
.meta .cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* タップしやすさ */
  min-height: 36px;
  padding: 8px 12px;
  /* 見やすさ */
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  /* 見た目（サイト変数に合わせて調整） */
  color: var(--c-brand-2);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--c-brand-2) 22%, transparent);
  border-radius: 999px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.cats .cat:hover,
.meta .cat:hover {
  background: color-mix(in srgb, var(--c-brand-2) 6%, #fff);
  border-color: color-mix(in srgb, var(--c-brand-2) 35%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.cats .cat:active,
.meta .cat:active {
  transform: translateY(0);
  box-shadow: none;
}
.cats .cat:focus-visible,
.meta .cat:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-brand-2) 20%, transparent);
}
@media (max-width: 480px) {
  .cats,
  .meta {
    gap: 8px;
  }
  .cats .cat,
  .meta .cat {
    padding: 7px 10px;
    font-size: 13px;
    min-height: 34px;
  }
}

/* もし記事一覧カード内で使うなら、上の余白だけ足す例 */
.card .cats {
  margin-top: 8px;
}

.staffcomic {
  margin-top: 50px;
}

ul.profile {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-radius: 20px;
  background: var(--c-ring-l);
  padding: 40px 20px;
}
ul.profile li {
  padding: 20px;
  background: var(--c-bg);
  border-radius: 20px;
}
ul.profile li.profile--full {
  grid-column: 1/3;
}
ul.profile li h3 {
  margin: 0 0 10px;
  padding: 0;
}
ul.profile li p {
  margin: 0;
  padding: 0;
}