@charset "UTF-8";
/* ==========================================================================
   Kakitsu株式会社 コーポレートサイト
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン
   -------------------------------------------------------------------------- */
:root {
  /* ブランドカラー（ロゴのシアンを基調） */
  --brand:        #00a0e9;
  --brand-dark:   #0079b1;
  --brand-darker: #005b86;
  --brand-tint:   #e6f6fd;
  --brand-tint-2: #f2fbff;

  /* アクセント（イラストの暖色に合わせた差し色） */
  --accent:       #f7a600;
  --accent-tint:  #fff6e3;

  /* ベース */
  --cream:        #fbf8f2;
  --ink:          #1f2933;
  --ink-soft:     #3f4a55;
  --muted:        #66727e;
  --line:         #e3e8ed;
  --line-soft:    #eef2f6;
  --white:        #ffffff;

  /* タイポグラフィ */
  --font-base: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
               "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium",
               YuGothic, "游ゴシック体", Meiryo, sans-serif;
  --font-en: "Helvetica Neue", Arial, sans-serif;

  /* レイアウト */
  --container: 1120px;
  --container-narrow: 820px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 76px;

  --shadow-sm: 0 1px 3px rgba(31, 41, 51, .08);
  --shadow:    0 4px 16px rgba(31, 41, 51, .09);
  --shadow-lg: 0 12px 32px rgba(31, 41, 51, .13);
}

/* --------------------------------------------------------------------------
   2. リセット / ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--white);
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.5; font-weight: 700; }
p { margin: 0 0 1.4em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.4em; padding-left: 1.4em; }
ul:last-child, ol:last-child { margin-bottom: 0; }
li { margin-bottom: .4em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. レイアウト部品
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--tint { background: var(--brand-tint-2); }

/* セクション見出し */
.section-title {
  margin-bottom: 40px;
  text-align: center;
}
.section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5em;
}
.section-title__ja {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
  letter-spacing: .04em;
}
.section-title__ja::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: .6em auto 0;
  border-radius: 2px;
  background: var(--brand);
}
.section-title--left { text-align: left; }
.section-title--left .section-title__ja::after { margin-inline: 0; }

/* 本文中の見出し */
.heading-lg {
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  margin-bottom: .8em;
  padding-left: .6em;
  border-left: 5px solid var(--brand);
  line-height: 1.6;
}
.heading-md {
  font-size: 1.15rem;
  margin-bottom: .7em;
  color: var(--brand-darker);
}
.lead {
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  line-height: 2;
}
.text-center { text-align: center; }
/* キャッチフレーズ */
.catch {
  margin: 0;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--brand-darker);
}
.catch::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: .5em auto 0;
  border-radius: 2px;
  background: var(--accent);
}
.note {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
/* 準備中などのお知らせボックス */
.notice {
  padding: 22px 24px;
  border: 1px solid var(--accent);
  border-left-width: 5px;
  border-radius: var(--radius);
  background: var(--accent-tint);
  color: var(--ink);
  line-height: 1.9;
  text-align: left;
}

/* 汎用スタック */
.stack > * + * { margin-top: 28px; }
.stack-lg > * + * { margin-top: 56px; }

/* --------------------------------------------------------------------------
   4. ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 52px;
  padding: 12px 32px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn::after { content: "→"; font-size: 1.05em; line-height: 1; }

.btn--outline {
  background: transparent;
  color: var(--brand-dark);
}
.btn--outline:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.btn--ghost {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .92);
  color: var(--brand-darker);
}
.btn--ghost:hover { background: #fff; border-color: #fff; color: var(--brand-darker); }

.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent:hover { background: #dd9500; border-color: #dd9500; }

.btn--sm { min-height: 42px; padding: 8px 22px; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn-row--left { justify-content: flex-start; }

/* --------------------------------------------------------------------------
   5. ヘッダー / グローバルナビ
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.site-logo { margin: 0; font-size: 1rem; line-height: 1; }
.site-logo a { display: inline-block; }
.site-logo img { width: auto; height: 38px; }

/* PCナビ */
.gnav { display: none; }
.gnav__list {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gnav__item { position: relative; margin: 0; }
.gnav__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  height: var(--header-h);
  padding: 0 14px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.gnav__link small {
  display: block;
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  transition: color .2s;
}
.gnav__link:hover,
.gnav__item--current > .gnav__link {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}
.gnav__link:hover small,
.gnav__item--current > .gnav__link small { color: var(--brand); }

/* ドロップダウン */
.gnav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 268px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
}
.gnav__item:hover > .gnav__sub,
.gnav__item:focus-within > .gnav__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.gnav__sub li { margin: 0; }
.gnav__sub a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
.gnav__sub a small {
  display: block;
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 400;
  color: var(--muted);
}
.gnav__sub a:hover { background: var(--brand-tint); color: var(--brand-darker); }
/* 孫階層（嘉橘MWS 配下の 販売／仕入／在庫） */
.gnav__sub-child a {
  padding-left: 30px;
  font-weight: 400;
}
.gnav__sub-child a::before {
  content: "└ ";
  margin-left: -1.1em;
  color: var(--brand);
}

.header-cta { display: none; }

/* ハンバーガー */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルドロワー */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  padding: 24px 20px 64px;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s;
}
.drawer[data-open="true"] { transform: translateX(0); visibility: visible; }
.drawer__list, .drawer__sub { margin: 0; padding: 0; list-style: none; }
.drawer__list > li { border-bottom: 1px solid var(--line-soft); margin: 0; }
.drawer__list a {
  display: block;
  padding: 15px 4px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.drawer__list a small {
  display: block;
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 400;
  color: var(--muted);
}
.drawer__sub { padding-left: 16px; border-top: 1px dashed var(--line); }
.drawer__sub li { margin: 0; border-bottom: 1px dashed var(--line); }
.drawer__sub li:last-child { border-bottom: 0; }
.drawer__sub a { padding: 12px 4px; font-size: .92rem; font-weight: 400; }
.drawer__sub a::before { content: "－ "; color: var(--brand); }
.drawer__sub-child a { padding-left: 18px; }
.drawer__sub-child a::before { content: "└ "; }
.drawer__cta { margin-top: 28px; }

/* --------------------------------------------------------------------------
   6. ヒーロー（トップページ）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero__slides { position: relative; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.hero__slide:first-child { position: relative; }
.hero__slide[data-active="true"] { opacity: 1; pointer-events: auto; }
.hero__img {
  display: block;
  width: 100%;
  /* 元画像は 1900 × 550。同じ比率にして、イラスト全体が切れずに入るようにする */
  aspect-ratio: 38 / 11;
  /* 幅の狭い画面では帯が薄くなりすぎるため、下限の高さを設ける。
     その余白は下側にまとめ、イラストがキャッチコピーと重ならないようにする */
  min-height: 200px;
  object-fit: contain;
  object-position: center top;
  background: var(--cream);
}
.hero__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 20px 28px;
  background: linear-gradient(to top, rgba(0, 60, 88, .78), rgba(0, 60, 88, 0));
  color: #fff;
  text-align: center;
}
/* 幅の狭い画面では、キャッチコピーが明るいクリーム地の上に乗るため、
   白文字が読めるように背景を濃いめにする */
@media (max-width: 700px) {
  .hero__caption {
    background: linear-gradient(to top,
      rgba(0, 60, 88, .88) 0%,
      rgba(0, 60, 88, .74) 60%,
      rgba(0, 60, 88, .34) 100%);
  }
}
.hero__title {
  font-size: clamp(1.15rem, .9rem + 1.5vw, 2.1rem);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 40, 60, .5);
}
.hero__title--en {
  font-family: var(--font-en);
  font-size: clamp(.85rem, .7rem + .8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.6;
}
.hero__sub {
  margin: .4em 0 0;
  font-size: clamp(.85rem, .78rem + .35vw, 1.05rem);
  text-shadow: 0 2px 10px rgba(0, 40, 60, .5);
}
.hero__actions { margin-top: 18px; }
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .2s;
}
.hero__dot[aria-current="true"] { background: #fff; }

/* 外部サイトへのリンクカード（新着情報の本文などで使用） */
.linkcard {
  display: block;
  margin: 2em 0;
  padding: 22px 26px 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.linkcard:hover,
.linkcard:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.linkcard__host {
  display: block;
  font-family: var(--font-en);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--muted);
  word-break: break-all;
}
.linkcard__title {
  display: block;
  margin-top: .5em;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--brand-darker);
}
.linkcard__theme {
  display: block;
  margin-top: .7em;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.linkcard__session {
  display: block;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid var(--line-soft);
}
.linkcard__tag {
  display: inline-block;
  margin-bottom: .5em;
  padding: 3px 11px;
  border-radius: 100px;
  background: var(--brand-tint);
  color: var(--brand-darker);
  font-size: .8rem;
  font-weight: 700;
}
.linkcard__session-name {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
}
.linkcard__action {
  display: block;
  margin-top: 1.1em;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand-dark);
}

/* トップページ：イラストのすぐ下に置く告知バー */
.hero-notice {
  display: block;
  background: var(--brand-darker);
  color: var(--white);
  text-decoration: none;
  transition: background-color .2s;
}
.hero-notice:hover,
.hero-notice:focus-visible { background: var(--brand-dark); }
.hero-notice__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.hero-notice__label {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: #4a3200;
}
.hero-notice__date {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: .82rem;
  opacity: .85;
}
.hero-notice__text {
  flex: 1 1 14em;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.6;
}
.hero-notice__arrow { flex: 0 0 auto; }

/* 下層ページのヘッダービジュアル */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  padding: 32px 20px 36px;
  text-align: center;
}
/* 透過イラストなので、原寸を超えて引き伸ばさず高さで揃える */
.page-hero__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 168px;
  margin: 0 auto 20px;
}
.page-hero__body {
  padding: 0;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  letter-spacing: .05em;
}
.page-hero__en {
  display: block;
  margin-top: .4em;
  font-family: var(--font-en);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
}
.page-hero__lead { margin: 1em auto 0; max-width: 44em; color: var(--ink-soft); }

/* パンくず */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: .5em; color: var(--line); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-dark); text-decoration: underline; }

/* --------------------------------------------------------------------------
   7. カード / グリッド
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { background: var(--cream); }
.card__media img { display: block; width: 100%; }
.card__body { padding: 22px 24px 26px; flex: 1; }
.card__icon {
  display: block;
  width: 76px;
  height: auto;
  margin: 0 auto 14px;
}
.card__title {
  margin-bottom: .6em;
  font-size: 1.05rem;
  color: var(--brand-darker);
  text-align: center;
}
.card__text { font-size: .93rem; line-height: 1.85; color: var(--ink-soft); }

/* サービスカード（トップ） */
.service-card__photo {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* 交互配置ブロック */
.alt-block { display: grid; gap: 24px; align-items: center; }
.alt-block__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.alt-block__body { min-width: 0; }

/* チェックリスト */
.check-list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.9em;
  margin-bottom: .7em;
  line-height: 1.8;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .78em;
  font-weight: 700;
}

/* 丸数字リスト */
.num-list { list-style: none; margin: 0; padding: 0; counter-reset: num; }
.num-list > li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.6em;
  counter-increment: num;
}
.num-list > li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: .1em;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
}

/* STEPカード */
.step {
  position: relative;
  padding: 26px 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--brand);
}
.step__label {
  display: inline-block;
  margin-bottom: .6em;
  padding: .2em 1em;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand-darker);
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.step__title { margin-bottom: .6em; font-size: 1.05rem; color: var(--brand-darker); }
.step__text { font-size: .95rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   8. テーブル
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  background: #fff;
}
.table th, .table td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.table th {
  width: 30%;
  min-width: 8em;
  background: var(--brand-tint-2);
  color: var(--brand-darker);
  font-weight: 700;
  white-space: nowrap;
}
.table td ul { margin: 0; padding-left: 1.2em; }
.table td li { margin-bottom: .2em; }

/* 機能一覧（MWS のメニュー構成） */
.spec-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.spec {
  padding: 20px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.spec__title {
  margin-bottom: .6em;
  padding-bottom: .4em;
  border-bottom: 2px solid var(--brand-tint);
  color: var(--brand-darker);
  font-size: 1rem;
}
.spec__list { margin: 0; padding: 0; list-style: none; }
.spec__list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: .35em;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.spec__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* --------------------------------------------------------------------------
   9. 画面キャプチャ ギャラリー
   -------------------------------------------------------------------------- */
.shots { display: grid; gap: 28px; grid-template-columns: 1fr; }
.shot { margin: 0; }
.shot__caption {
  margin-bottom: .5em;
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-darker);
}
.shot a {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow .2s, transform .2s;
}
.shot a:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.shot img { display: block; width: 100%; }

/* 図版 */
.figure { margin: 0; text-align: center; }
.figure img { border-radius: var(--radius); }
.figure figcaption {
  margin-top: .8em;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
.figure--plain img { border-radius: 0; }
/* 挿絵として添えるイラストは、本文幅いっぱいに置くと大きすぎるため幅を抑える */
.figure--sm img { width: 100%; max-width: 280px; }

/* --------------------------------------------------------------------------
   10. 新着情報
   -------------------------------------------------------------------------- */
.news-list { margin: 0; padding: 0; list-style: none; }
.news-list > li { margin: 0; border-bottom: 1px solid var(--line); }
.news-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color .2s;
}
.news-item:hover { background: var(--brand-tint-2); color: inherit; }
.news-item__thumb {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--cream);
  border: 1px solid var(--line);
}
.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: .35em;
}
.news-item__date {
  font-family: var(--font-en);
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.news-item__cat {
  padding: .1em .9em;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand-darker);
  font-size: .74rem;
  font-weight: 700;
}
.news-item__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}
.news-item:hover .news-item__title { color: var(--brand-dark); }
.news-item__excerpt {
  margin: .4em 0 0;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.8;
}

/* 記事本文 */
.post-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid var(--brand-tint); }
.post-title {
  margin-top: .3em;
  font-size: clamp(1.35rem, 1.15rem + 1vw, 1.9rem);
  line-height: 1.6;
}
.post-body { font-size: 1rem; line-height: 2.05; }
.post-body img { border-radius: var(--radius); margin: 1em 0; }
.post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   11. パートナー / リンクカード
   -------------------------------------------------------------------------- */
.partner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.partner__logo {
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  min-height: 140px;
}
.partner__logo img { max-height: 190px; width: auto; }
.partner__title { margin-bottom: .5em; font-size: 1.15rem; color: var(--brand-darker); }
.partner__text { font-size: .95rem; color: var(--ink-soft); }
.partner__badge { margin-top: 14px; }
.partner__badge img { max-height: 76px; width: auto; }

/* --------------------------------------------------------------------------
   12. 役員プロフィール
   -------------------------------------------------------------------------- */
.profile { display: grid; gap: 28px; align-items: start; }
.profile__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.profile__photo img { display: block; width: 100%; }
.profile__name { font-size: 1.6rem; letter-spacing: .05em; }
.profile__en {
  display: block;
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .3em;
}
.profile__role {
  display: inline-block;
  margin-top: .8em;
  padding: .25em 1.1em;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}
.career { margin-top: 28px; }
.career__title {
  margin-bottom: .7em;
  padding: .35em .9em;
  background: var(--brand-tint);
  border-radius: 6px;
  color: var(--brand-darker);
  font-size: .95rem;
}
.career__list { margin: 0 0 1.8em; padding: 0; list-style: none; }
.career__list > li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: .55em 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  line-height: 1.85;
}
.career__list > li:last-child { border-bottom: 0; }
.career__year {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--brand-dark);
  white-space: nowrap;
}

/* 署名 */
.signature { margin-top: 2em; text-align: right; line-height: 2; }
.signature strong { display: block; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   13. お問い合わせフォーム
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field__label { font-weight: 700; font-size: .95rem; }
.badge-req, .badge-opt {
  display: inline-block;
  margin-left: .6em;
  padding: .1em .7em;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  vertical-align: middle;
}
.badge-req { background: #e8453c; color: #fff; }
.badge-opt { background: var(--line); color: var(--ink-soft); }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #c8d1da;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.field textarea { min-height: 180px; resize: vertical; }

.form__note {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--brand-tint-2);
  border: 1px solid var(--brand-tint);
  font-size: .88rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.form__actions { margin-top: 6px; text-align: center; }

/* ハニーポット：画面にも読み上げにも出さず、bot だけが埋める項目 */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-direct {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
}
.contact-direct dt { font-weight: 700; color: var(--brand-darker); font-size: .9rem; }
.contact-direct dd { margin: .2em 0 0; line-height: 1.9; }

/* --------------------------------------------------------------------------
   14. CTA バンド
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.cta__inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-items: center;
  padding-block: 44px 52px;
  text-align: center;
}
.cta__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 160px;
}
.cta__body { max-width: 34em; }
.cta__text {
  margin-bottom: 1.2em;
  font-size: clamp(1rem, .93rem + .4vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
}

/* 暗色バンド（背景画像は HTML の style 属性で指定する。
   CSS カスタムプロパティ内の相対 URL はスタイルシート基準で解決されるため） */
.band-dark {
  position: relative;
  background-color: #26313a;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(14, 30, 40, .72), rgba(14, 30, 40, .82));
}
.band-dark__inner { padding: 64px 20px; text-align: center; }
.band-dark__lead {
  margin-bottom: .8em;
  font-size: clamp(1.1rem, .98rem + .6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.7;
}
.band-dark__text { color: #d6e4ec; line-height: 1.95; }

/* --------------------------------------------------------------------------
   15. フッター
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0f2b3a;
  color: #cfe3ee;
  font-size: .9rem;
}
.site-footer a { color: #cfe3ee; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer-title {
  margin-bottom: 1.1em;
  padding-bottom: .5em;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1rem;
  letter-spacing: .04em;
}
.footer-logo img { height: 34px; width: auto; margin-bottom: 18px; }
.footer-address { line-height: 1.95; }
.footer-address dt {
  margin-top: 1em;
  font-weight: 700;
  color: #fff;
  font-size: .85rem;
}
.footer-address dt:first-child { margin-top: 0; }
.footer-address dd { margin: 0; color: #b6d1e0; }

.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav > ul > li { margin-bottom: .55em; }
.footer-nav ul ul { margin: .45em 0 .9em; padding-left: 1em; }
.footer-nav ul ul li { margin-bottom: .35em; font-size: .85rem; }
.footer-nav ul ul a { color: #a9c6d8; }
.footer-nav ul ul a::before { content: "－ "; }

.footer-news { margin: 0; padding: 0; list-style: none; }
.footer-news li { margin-bottom: 1em; line-height: 1.7; }
.footer-news time {
  display: block;
  font-family: var(--font-en);
  font-size: .76rem;
  color: #8fb3c7;
  letter-spacing: .04em;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .8rem;
  color: #9fc0d2;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom li { margin: 0; }
.copyright { margin: 0; }

/* ページトップ */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s, background-color .2s;
}
.to-top[data-visible="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-dark); }

/* --------------------------------------------------------------------------
   16. サイトマップページ
   -------------------------------------------------------------------------- */
.sitemap-list { margin: 0; padding: 0; list-style: none; }
.sitemap-list > li { margin-bottom: 1.4em; }
.sitemap-list > li > a {
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-darker);
}
.sitemap-list > li > a:hover { text-decoration: underline; }
.sitemap-list ul { margin: .6em 0 0; padding-left: 1.4em; list-style: none; }
.sitemap-list ul li { margin-bottom: .45em; }
.sitemap-list ul a { text-decoration: none; }
.sitemap-list ul a::before { content: "－ "; color: var(--brand); }
.sitemap-list ul a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   17. 法務ページ
   -------------------------------------------------------------------------- */
.legal h2 {
  margin: 2.4em 0 1em;
  padding-bottom: .4em;
  border-bottom: 2px solid var(--brand);
  font-size: 1.35rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  margin: 2em 0 .7em;
  font-size: 1.05rem;
  color: var(--brand-darker);
}
.legal p { font-size: .95rem; }
.legal ul { font-size: .95rem; }
.legal address {
  margin-top: 1em;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--cream);
  font-style: normal;
  line-height: 1.9;
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   18. 404
   -------------------------------------------------------------------------- */
.error-page { padding: 96px 0; text-align: center; }
.error-page__code {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 2rem + 7vw, 7rem);
  line-height: 1;
  color: var(--brand-tint);
}
.error-page__title { margin: .2em 0 .8em; font-size: 1.5rem; }

/* --------------------------------------------------------------------------
   19. レスポンシブ
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: repeat(2, 1fr); }
  .career__list > li { grid-template-columns: 7.5em 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .news-item { grid-template-columns: 96px 1fr; gap: 22px; }
  .news-item__thumb { width: 96px; height: 96px; }
}

@media (min-width: 782px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .alt-block { grid-template-columns: 1fr 1fr; gap: 40px; }
  .alt-block--reverse .alt-block__media { order: 2; }
  .partner { grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 36px; }
  .profile { grid-template-columns: 300px 1fr; gap: 40px; }
  .contact-direct { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 88px 0; }
  .page-hero__img { max-height: 210px; }
  .cta__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 40px;
    justify-items: start;
    text-align: left;
  }
  .cta__img { max-height: 200px; }
}

@media (min-width: 1024px) {
  .gnav { display: block; }
  .nav-toggle { display: none; }
  .drawer { display: none; }
  .header-cta { display: inline-flex; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.1fr 1.3fr 1.1fr; gap: 48px; }
  .hero__caption { padding: 40px 20px 52px; }
}

/* --------------------------------------------------------------------------
   20. モーションと印刷への配慮
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .drawer, .to-top, .cta, .hero__dots, .btn { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .site-footer { background: none; color: #000; }
  a { color: #000; text-decoration: underline; }
}
