@charset "UTF-8";
/* ==========================================================================
   Akushu Royal Global — theme.css
   紺 × 金／明朝主体のコーポレートスタイル
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. トークン
   -------------------------------------------------------------------------- */
:root {
  --navy-900: #05122a;
  --navy-800: #0a1c3a;
  --navy-700: #0e2549;
  --navy-600: #14305c;
  --navy-100: #e6ebf3;

  --gold-600: #a8873f;
  --gold-500: #c6a052;
  --gold-400: #d7b877;
  --gold-300: #e7ce96;
  --gold-050: #f3ead6;

  --paper: #f7f5f0;
  --white: #ffffff;
  --ink: #17202f;
  --ink-soft: #4a5567;
  --line: rgba(198, 160, 82, 0.38);
  --line-soft: rgba(23, 32, 47, 0.12);

  --serif: "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --latin: "Cormorant Garamond", "Times New Roman", serif;

  --wrap: 1160px;
  --wrap-narrow: 860px;
  --gutter: 24px;

  --shadow-frame: 0 24px 60px rgba(5, 18, 42, 0.14);
}

/* --------------------------------------------------------------------------
   2. リセット・基本
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; vertical-align: middle; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 0.25em; }
a:hover { color: var(--gold-600); }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1.6em; }
ul, ol { padding-left: 1.4em; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------------------------
   3. レイアウト部品
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); margin-inline: auto; }

.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }

.section--navy {
  background:
    radial-gradient(120% 90% at 50% -10%, var(--navy-700) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: rgba(255, 255, 255, 0.88);
}
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }

.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

/* 金の細罫：セクション境目 */
.section--navy + .section--paper,
.section--navy + .section--white { border-top: 1px solid rgba(198, 160, 82, 0.25); }

/* --------------------------------------------------------------------------
   4. 見出しのユニット（金罫＋菱形）
   -------------------------------------------------------------------------- */
.heading { text-align: center; margin-bottom: 56px; }
.heading--left { text-align: left; }

.heading__brand {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.34em;
  color: var(--gold-600);
  display: block;
  margin-bottom: 14px;
}
.section--navy .heading__brand { color: var(--gold-300); }

.heading__title {
  font-size: clamp(26px, 4.2vw, 40px);
  margin: 0;
}

.heading__lead {
  margin: 18px auto 0;
  max-width: 42em;
  font-size: 15px;
  color: var(--ink-soft);
}
.section--navy .heading__lead { color: rgba(255, 255, 255, 0.72); }
.heading--left .heading__lead { margin-inline: 0; }

/* 菱形付き金罫 */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
  max-width: 320px;
}
.heading--left .rule { justify-content: flex-start; margin-left: 0; }
.rule::before,
.rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.rule__mark {
  width: 7px; height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex: none;
}

/* --------------------------------------------------------------------------
   5. ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}
.site-header.is-solid,
.site-header.is-static {
  background: rgba(10, 28, 58, 0.96);
  box-shadow: 0 1px 0 rgba(198, 160, 82, 0.32);
  backdrop-filter: blur(6px);
}

.header__inner {
  width: min(100% - 40px, 1360px);
  margin-inline: auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__en {
  font-family: var(--latin);
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--gold-300);
}
.brand__ja {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}
.brand img.custom-logo,
.custom-logo-link img { max-height: 52px; width: auto; }
.custom-logo-link { display: inline-flex; align-items: center; }

/* グローバルナビ */
.gnav { display: flex; align-items: center; gap: 28px; }
.gnav > div { display: flex; align-items: center; }
.gnav ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.gnav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  display: block;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gnav a:hover::after,
.gnav .current-menu-item > a::after { transform: scaleX(1); }

/* サブメニュー */
.gnav .sub-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  background: rgba(5, 18, 42, 0.98);
  border: 1px solid rgba(198, 160, 82, 0.3);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.gnav li { position: relative; }
.gnav li:hover > .sub-menu,
.gnav li:focus-within > .sub-menu { opacity: 1; visibility: visible; }
.gnav .sub-menu a { padding: 10px 20px; font-size: 13px; }
.gnav .sub-menu a::after { display: none; }
.gnav .sub-menu a:hover { background: rgba(198, 160, 82, 0.14); color: var(--gold-300); }

.header__cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 26px;
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__cta:hover { background: var(--gold-500); color: var(--navy-900); }

/* ハンバーガー */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid rgba(198, 160, 82, 0.5);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1px;
  background: var(--gold-300);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. ヒーロー
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 0 90px;
  background:
    radial-gradient(75% 60% at 50% 45%, rgba(3, 10, 24, 0.55) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 55%, #030c1c 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 42, 0.35), rgba(5, 18, 42, 0.8));
  z-index: -1;
}

/* 金の二重枠（表紙の意匠） */
.hero__frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(198, 160, 82, 0.55);
  pointer-events: none;
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(198, 160, 82, 0.22);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background:
    linear-gradient(120deg, var(--gold-300), transparent 30%, transparent 70%, var(--gold-300)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.hero__inner { text-align: center; position: relative; padding: 0 32px; }

.hero__crest { width: 92px; margin: 0 auto 26px; display: block; }
.placeholder-crest { width: 72px; height: 72px; opacity: .85; }

.hero__en {
  font-family: var(--latin);
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: 0.42em;
  color: var(--gold-300);
  margin: 0 0 26px;
  padding-left: 0.42em;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(30px, 6.4vw, 62px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(15px, 2.2vw, 21px);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 34px;
}
.hero__lead {
  max-width: 34em;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.74);
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 46px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(231, 206, 150, 0.85);
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 46px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}

/* ページ下層のヒーロー */
.page-hero {
  position: relative;
  padding: 190px 0 76px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.24;
}
.page-hero .wrap { position: relative; }
.page-hero__en {
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--gold-300);
  display: block;
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(24px, 4.6vw, 40px);
  margin: 0;
  color: #fff;
}

/* パンくず */
.breadcrumb {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 18px 0 0;
  letter-spacing: 0.06em;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "／"; margin-left: 8px; color: var(--gold-600); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-600); }

/* --------------------------------------------------------------------------
   7. ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 40px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--gold-500);
  background: transparent;
  color: var(--gold-600);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 60%, var(--gold-600));
  color: var(--navy-900);
  border-color: transparent;
  font-weight: 500;
}
.btn--gold:hover { filter: brightness(1.08); color: var(--navy-900); }

.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

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

/* --------------------------------------------------------------------------
   8. 理念セクション
   -------------------------------------------------------------------------- */
.philosophy { text-align: center; }
.philosophy__word {
  font-family: var(--serif);
  font-size: clamp(28px, 5.4vw, 52px);
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin: 0 0 14px;
}
.philosophy__read {
  font-family: var(--serif);
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 0.2em;
  color: var(--navy-800);
  margin: 0 0 32px;
}
.philosophy__body {
  max-width: 32em;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.2;
}
.philosophy__quote {
  border: 1px solid var(--line);
  padding: 44px 32px;
  margin: 44px auto 0;
  max-width: 42em;
  position: relative;
  background: var(--white);
}
.philosophy__quote p:last-child { margin-bottom: 0; }
.philosophy__quote::before,
.philosophy__quote::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold-500);
}
.philosophy__quote::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.philosophy__quote::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* --------------------------------------------------------------------------
   9. カード・グリッド
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 38px 30px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover { border-color: var(--gold-500); }
.section--navy .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(198, 160, 82, 0.3);
}

.card__num {
  font-family: var(--latin);
  font-size: 34px;
  line-height: 1;
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
}
.card__title {
  font-size: 18px;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}
.card__text { font-size: 14px; line-height: 1.95; margin: 0; color: var(--ink-soft); }
.section--navy .card__text { color: rgba(255, 255, 255, 0.74); }

.card__list { list-style: none; margin: 14px 0 0; padding: 0; font-size: 14px; }
.card__list li { position: relative; padding-left: 18px; margin-bottom: 8px; line-height: 1.8; }
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* 金の円アイコン（サービス機能） */
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature__icon {
  width: 68px; height: 68px;
  flex: none;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--gold-500);
  display: grid;
  place-items: center;
  color: var(--gold-300);
}
.feature__icon svg { width: 32px; height: 32px; }
.section--navy .feature__icon { background: rgba(255, 255, 255, 0.06); }
.feature__body { flex: 1; }
.feature__no {
  font-family: var(--latin);
  font-size: 24px;
  color: var(--gold-500);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.feature__title { font-size: 17px; margin: 0 0 6px; }
.feature__text { font-size: 13.5px; margin: 0; color: var(--ink-soft); line-height: 1.9; }
.section--navy .feature__text { color: rgba(255, 255, 255, 0.72); }

/* 原理原則（人物カード） */
.principle {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px 28px;
  text-align: center;
}
.principle__label {
  display: inline-block;
  background: var(--navy-800);
  color: var(--gold-300);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.principle__name { font-size: 20px; margin: 0 0 8px; }
.principle__rule {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-600);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.principle__quote {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 2;
  margin: 0;
  color: var(--navy-800);
}

.formula {
  margin-top: 44px;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  color: #fff;
  text-align: center;
  padding: 26px 20px;
  font-family: var(--serif);
  font-size: clamp(15px, 2.6vw, 24px);
  letter-spacing: 0.12em;
}
.formula em { font-style: normal; color: var(--gold-300); }

/* 数値・ビジョン */
.vision { text-align: center; }
.vision__statement {
  font-family: var(--serif);
  font-size: clamp(22px, 4.4vw, 40px);
  line-height: 1.7;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
}
.vision__statement em { font-style: normal; color: var(--gold-600); }
.vision__note { max-width: 40em; margin: 0 auto; font-size: 15px; color: var(--ink-soft); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 56px; }
.stat { background: var(--paper); padding: 34px 18px; text-align: center; }
.stat__num {
  font-family: var(--latin);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  color: var(--gold-600);
  display: block;
}
.stat__num small { font-size: 0.45em; letter-spacing: 0.1em; margin-left: 4px; }
.stat__label { font-size: 13px; color: var(--ink-soft); margin-top: 12px; display: block; letter-spacing: 0.1em; }

/* --------------------------------------------------------------------------
   10. ニュース一覧
   -------------------------------------------------------------------------- */
.news-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.news-list li { border-bottom: 1px solid var(--line-soft); }
.news-item {
  display: grid;
  grid-template-columns: 120px 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 6px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease;
}
.news-item:hover { background: rgba(198, 160, 82, 0.07); color: inherit; }
.news-item__date {
  font-family: var(--latin);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--gold-600);
}
.news-item__cat {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid var(--navy-600);
  color: var(--navy-600);
  padding: 4px 8px;
  line-height: 1.4;
}
.news-item__title { font-size: 15.5px; line-height: 1.8; margin: 0; font-family: var(--sans); font-weight: 400; }

.section--navy .news-list,
.section--navy .news-list li { border-color: rgba(255, 255, 255, 0.16); }
.section--navy .news-item:hover { background: rgba(255, 255, 255, 0.06); }
.section--navy .news-item__cat { border-color: var(--gold-500); color: var(--gold-300); }
.section--navy .news-item__date { color: var(--gold-300); }

/* カード型の記事一覧 */
.post-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease;
}
.post-card:hover { border-color: var(--gold-500); color: inherit; }
.post-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__thumb .placeholder { width: 54px; opacity: 0.6; }
.post-card__body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-card__date { font-family: var(--latin); font-size: 14px; color: var(--gold-600); letter-spacing: 0.08em; }
.post-card__cat { font-size: 11px; border: 1px solid var(--navy-600); color: var(--navy-600); padding: 3px 8px; }
.post-card__title { font-size: 16px; line-height: 1.75; margin: 0 0 10px; font-family: var(--serif); }
.post-card__excerpt { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.9; }

/* --------------------------------------------------------------------------
   11. 会社概要テーブル
   -------------------------------------------------------------------------- */
.def-table { width: 100%; border-collapse: collapse; }
.def-table th,
.def-table td {
  text-align: left;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  vertical-align: top;
}
.def-table th {
  width: 200px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-800);
}
.section--navy .def-table th { color: var(--gold-300); }
.section--navy .def-table th,
.section--navy .def-table td { border-color: rgba(255, 255, 255, 0.16); }
.def-table tr:first-child th,
.def-table tr:first-child td { border-top: 1px solid var(--line-soft); }
.section--navy .def-table tr:first-child th,
.section--navy .def-table tr:first-child td { border-top-color: rgba(255, 255, 255, 0.16); }

.map-embed { margin-top: 40px; aspect-ratio: 16 / 7; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* 代表メッセージ */
.message-layout { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.message-portrait { border: 1px solid var(--line); padding: 10px; background: var(--white); }
.message-portrait img { width: 100%; display: block; }
.message-portrait figcaption { text-align: center; padding: 16px 6px 6px; font-size: 13px; color: var(--ink-soft); }
.message-portrait strong { display: block; font-family: var(--serif); font-size: 19px; color: var(--ink); margin-top: 4px; letter-spacing: 0.1em; }
.message-body p { font-size: 15.5px; line-height: 2.2; }
.message-sign { font-family: var(--serif); font-size: 18px; text-align: right; letter-spacing: 0.14em; }

/* --------------------------------------------------------------------------
   12. 記事本文（エディタ出力）
   -------------------------------------------------------------------------- */
.entry {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 64px clamp(20px, 5vw, 72px);
}
.entry__header { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 40px; }
.entry__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.entry__date { font-family: var(--latin); font-size: 16px; color: var(--gold-600); letter-spacing: 0.08em; }
.entry__cat { font-size: 11.5px; border: 1px solid var(--navy-600); color: var(--navy-600); padding: 4px 10px; text-decoration: none; }
.entry__cat:hover { background: var(--navy-600); color: #fff; }
.entry__title { font-size: clamp(22px, 3.6vw, 32px); margin: 0; line-height: 1.6; }

.entry-content { font-size: 16px; line-height: 2.1; }
.entry-content > * + * { margin-top: 1.6em; }
.entry-content h2 {
  font-size: 24px;
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 18px;
  margin-top: 2.6em;
}
.entry-content h3 {
  font-size: 20px;
  margin-top: 2.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.entry-content h4 { font-size: 17px; margin-top: 2em; color: var(--navy-700); }
.entry-content img { display: block; }
.entry-content figure { margin: 2em 0; }
.entry-content figcaption { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 10px; }
.entry-content blockquote {
  border-left: 2px solid var(--gold-500);
  background: var(--paper);
  margin: 2em 0;
  padding: 24px 28px;
  font-family: var(--serif);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content ul, .entry-content ol { padding-left: 1.6em; }
.entry-content li { margin-bottom: 0.6em; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--line-soft); padding: 12px 14px; font-size: 15px; }
.entry-content th { background: var(--paper); font-family: var(--serif); }
.entry-content a { color: var(--navy-600); }
.entry-content code {
  background: var(--navy-100);
  padding: 2px 6px;
  font-size: 0.9em;
}
.entry-content pre {
  background: var(--navy-900);
  color: #e8eefb;
  padding: 22px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.7;
}
.entry-content .wp-block-button__link {
  background: var(--navy-800);
  color: #fff;
  border-radius: 0;
  padding: 14px 34px;
  letter-spacing: 0.1em;
}
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin: 3em 0; }

.entry-footer { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.tag-list a {
  font-size: 12px;
  border: 1px solid var(--line-soft);
  padding: 5px 12px;
  text-decoration: none;
  color: var(--ink-soft);
}
.tag-list a:hover { border-color: var(--gold-500); color: var(--gold-600); }

.post-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-top: 48px; }
.post-nav a { text-decoration: none; font-size: 13.5px; color: var(--ink-soft); }
.post-nav a:hover { color: var(--gold-600); }
.post-nav .next { text-align: right; }

/* --------------------------------------------------------------------------
   13. サイドバー
   -------------------------------------------------------------------------- */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }

.widget-area .widget {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 26px 24px;
  margin-bottom: 24px;
  font-size: 14px;
}
.widget-area .widget-title {
  font-size: 15px;
  letter-spacing: 0.12em;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.widget-area ul { list-style: none; margin: 0; padding: 0; }
.widget-area li { padding: 8px 0; border-bottom: 1px dotted var(--line-soft); }
.widget-area li:last-child { border-bottom: 0; }
.widget-area a { text-decoration: none; color: var(--ink); }
.widget-area a:hover { color: var(--gold-600); }

.search-form { display: flex; }
.search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-soft);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}
.search-form button {
  border: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}
.search-form button:hover { background: var(--gold-600); }

/* --------------------------------------------------------------------------
   14. ページネーション
   -------------------------------------------------------------------------- */
.pagination { margin-top: 56px; display: flex; justify-content: center; }
.pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 44px; height: 44px;
  padding: 0 12px;
  margin: 0 4px;
  border: 1px solid var(--line-soft);
  text-decoration: none;
  font-family: var(--latin);
  font-size: 16px;
  color: var(--ink);
}
.pagination .page-numbers:hover { border-color: var(--gold-500); color: var(--gold-600); }
.pagination .current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* --------------------------------------------------------------------------
   15. お問い合わせフォーム
   -------------------------------------------------------------------------- */
.form-grid { display: grid; gap: 26px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-family: var(--serif); letter-spacing: 0.08em; }
.field .req {
  font-size: 10.5px;
  background: var(--gold-600);
  color: #fff;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: 2px;
  letter-spacing: 0.08em;
}
.field .opt {
  font-size: 10.5px;
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: 2px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: var(--white);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold-500); outline: none; box-shadow: 0 0 0 3px rgba(198, 160, 82, 0.16); }
.field textarea { min-height: 190px; resize: vertical; }

.form-note { font-size: 13px; color: var(--ink-soft); }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.form-consent input { width: 18px; height: 18px; margin-top: 4px; flex: none; }
.form-actions { text-align: center; margin-top: 8px; }
.form-actions .btn { min-width: 260px; }

.form-alert { border: 1px solid var(--gold-500); background: var(--gold-050); padding: 18px 22px; margin-bottom: 32px; font-size: 14.5px; }
.form-alert--error { border-color: #b3443a; background: #fbeeec; color: #8c2f27; }
.honeypot { position: absolute; left: -9999px; }

/* --------------------------------------------------------------------------
   16. CTA・フッター
   -------------------------------------------------------------------------- */
.cta {
  background:
    linear-gradient(180deg, rgba(5, 18, 42, 0.9), rgba(5, 18, 42, 0.95)),
    linear-gradient(120deg, var(--navy-600), var(--navy-900));
  color: #fff;
  text-align: center;
  padding: 90px 0;
  border-top: 1px solid rgba(198, 160, 82, 0.4);
  border-bottom: 1px solid rgba(198, 160, 82, 0.4);
}
.cta__title { font-size: clamp(22px, 3.6vw, 34px); margin: 0 0 16px; color: #fff; }
.cta__text { color: rgba(255, 255, 255, 0.76); max-width: 40em; margin: 0 auto 36px; font-size: 15px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__tel { margin-top: 30px; font-family: var(--latin); font-size: 26px; letter-spacing: 0.1em; color: var(--gold-300); text-decoration: none; display: inline-block; }
.cta__hours { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.7); padding: 72px 0 0; font-size: 13.5px; }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding-bottom: 56px; }
.footer__brand .brand__en { font-size: 22px; }
.footer__brand address { font-style: normal; margin-top: 22px; line-height: 2; letter-spacing: 0.06em; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__nav ul { list-style: none; margin: 0; padding: 0; }
.footer__nav li { margin-bottom: 12px; }
.footer__nav a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer__nav a:hover { color: var(--gold-300); }
.footer__nav .menu-item-has-children > a { color: var(--gold-300); font-family: var(--serif); letter-spacing: 0.1em; }
.footer__nav .sub-menu { margin-top: 12px; padding-left: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer__bottom ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.footer__bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold-300); }

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: rgba(10, 28, 58, 0.9);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }

/* --------------------------------------------------------------------------
   17. レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .message-layout { grid-template-columns: 260px 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .header__cta { display: none; }
  .nav-toggle { display: block; }

  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(5, 18, 42, 0.98);
    display: block;
    padding: 104px 28px 48px;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
  }
  .gnav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s;
  }
  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .gnav a { padding: 18px 4px; font-size: 15px; font-family: var(--serif); letter-spacing: 0.12em; }
  .gnav a::after { display: none; }
  .gnav .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    padding: 0 0 10px 16px;
    min-width: 0;
  }
  .gnav .sub-menu li { border: 0; }
  .gnav .sub-menu a { padding: 10px 4px; font-family: var(--sans); color: rgba(255, 255, 255, 0.7); }

  .content-layout { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 76px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .message-layout { grid-template-columns: 1fr; }
  .message-portrait { max-width: 280px; margin-inline: auto; }
  .hero__frame { inset: 14px; }
  .hero { padding: 104px 0 80px; }
  .page-hero { padding: 150px 0 56px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 4px; }
  .news-item__cat { justify-self: start; padding: 4px 12px; }
  .def-table th, .def-table td { display: block; width: 100%; padding: 14px 4px; }
  .def-table th { border-bottom: 0; padding-bottom: 2px; }
  .def-table tr:first-child td { border-top: 0; }
  .entry { padding: 40px 20px; border-left: 0; border-right: 0; }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav .next { text-align: left; }
}

/* --------------------------------------------------------------------------
   18. ヒーローの初回演出（1回のみ）
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__frame { animation: frame-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .hero__inner > * { animation: rise 0.9s ease both; }
  .hero__inner > *:nth-child(1) { animation-delay: 0.25s; }
  .hero__inner > *:nth-child(2) { animation-delay: 0.4s; }
  .hero__inner > *:nth-child(3) { animation-delay: 0.55s; }
  .hero__inner > *:nth-child(4) { animation-delay: 0.7s; }
  .hero__inner > *:nth-child(5) { animation-delay: 0.85s; }
  .hero__inner > *:nth-child(6) { animation-delay: 1s; }
}
@keyframes frame-in {
  from { clip-path: inset(50% 50% 50% 50%); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* 管理バー分の調整 */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
