/* ===========================================
   たかとう福祉タクシー - 共通スタイル
   =========================================== */

/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2c7a4b;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* カラー変数 */
:root {
  --color-primary: #2c7a4b;
  --color-primary-dark: #1f5a37;
  --color-primary-light: #e8f4ed;
  --color-accent: #f08a3e;
  --color-accent-dark: #d97326;
  --color-text: #333;
  --color-text-light: #666;
  --color-bg-light: #f7f5f0;
  --color-border: #e0ddd5;
  --color-white: #fff;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --container: 1100px;
}

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

.section {
  padding: 60px 0;
}

.section--gray {
  background: var(--color-bg-light);
}

.section__title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  position: relative;
  padding-bottom: 16px;
}

.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ヘッダー */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-primary-dark);
}

.header__logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.header__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header__logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}

.header__logo-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: normal;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__tel {
  display: none;
  text-align: right;
  line-height: 1.2;
}

.header__tel small {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
}

.header__tel a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.02em;
}

.header__tel-note {
  display: block;
  font-size: 0.7rem;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* ハンバーガーボタン */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ナビゲーション (モバイル) */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 340px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 80px 0 40px;
  overflow-y: auto;
}

.nav.is-open {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
}

.nav__item {
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}

.nav__link.is-current {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-primary-light);
}

/* サブメニュー(モバイル: アコーディオン式) */
.nav__has-sub > .nav__link::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 8px;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.nav__has-sub.is-open-sub > .nav__link::after {
  transform: rotate(180deg);
}

.nav__sub {
  max-height: 0;
  overflow: hidden;
  background: var(--color-bg-light);
  transition: max-height 0.3s ease;
}

.nav__has-sub.is-open-sub .nav__sub {
  max-height: 600px;
}

.nav__sub-link {
  display: block;
  padding: 12px 24px 12px 40px;
  color: var(--color-text);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.nav__sub-link.is-current {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-primary-light);
}

.nav__sub-link::before {
  content: "›";
  margin-right: 6px;
  color: var(--color-primary);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 998;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   ヒーロー (codex参考 - フルブリード型)
   ========================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/43206_0.jpg");
  background-position: center;
  background-size: cover;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 56, 36, 0.92) 0%, rgba(31, 90, 55, 0.75) 45%, rgba(44, 122, 75, 0.25) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05));
}

/* インナー */
.hero-inner {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 80px 0 70px;
  position: relative;
  z-index: 1;
}

/* 2カラム分割(左テキスト・右ポートレート) */
.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

/* 代表ポートレート */
.hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 0.9s 0.3s ease-out both;
}

.hero-portrait__frame {
  width: min(280px, 70%);
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.hero-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait__caption {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-portrait__role {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.hero-portrait__name {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

@media (min-width: 900px) {
  .hero-inner--split {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }

  .hero-portrait__frame {
    width: min(320px, 100%);
  }
}

/* eyebrow(タグライン) */
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 0;
  color: #f3c66c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-bottom: 2px solid rgba(243, 198, 108, 0.6);
  animation: heroFadeUp 0.8s ease-out both;
}

/* キャッチコピーストリップ (4つの売り) */
.hero-catchstrip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f3c66c;
  letter-spacing: 0.04em;
  animation: heroFadeUp 0.8s ease-out both;
}

.hero-catchstrip span {
  position: relative;
  padding-right: 0;
}

.hero-catchstrip span + span::before {
  content: "・";
  position: absolute;
  left: -12px;
  color: rgba(243, 198, 108, 0.5);
}

/* ヒーロー横長ロゴバナー */
.hero-logo-banner {
  margin: 0 0 24px;
  padding: 0;
  animation: heroFadeUp 0.8s 0.1s ease-out both;
}

.hero-logo-banner img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

/* ヒーローロゴ(本物のロゴ画像) */
.hero-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  animation: heroFadeUp 0.8s 0.1s ease-out both;
}

.hero-logo__image {
  width: clamp(80px, 18vw, 130px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.hero-logo__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-logo__small {
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: #f3c66c;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-logo__main {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #fff 0%, #ffeaba 40%, #f3c66c 70%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* タグライン下部 */
.hero-tagline-bottom {
  margin: 20px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  animation: heroFadeUp 0.8s 0.4s ease-out both;
}

/* メイン見出し */
.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: heroFadeUp 0.8s 0.1s ease-out both;
}

.hero h1 span {
  display: block;
}

.hero h1 .hero-accent {
  background: linear-gradient(120deg, #ffeaba 0%, #f3c66c 50%, #ffeaba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

/* リードコピー */
.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(0.95rem, 2.5vw, 1.12rem);
  line-height: 1.85;
  opacity: 0.96;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: heroFadeUp 0.8s 0.2s ease-out both;
}

/* CTAボタン */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  animation: heroFadeUp 0.8s 0.3s ease-out both;
}

.hero-actions .btn {
  min-width: 0;
  font-size: 0.98rem;
  padding: 16px 26px;
}

.hero-actions .btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(240, 138, 62, 0.45);
}

.hero-actions .btn--primary:hover {
  box-shadow: 0 14px 32px rgba(240, 138, 62, 0.55);
}

.hero-actions .btn--outline {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ファクト(統計) */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 44px 0 0;
  padding: 0;
  animation: heroFadeUp 0.8s 0.4s ease-out both;
}

.hero-facts > div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
}

.hero-facts > div:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.hero-facts dt {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: #ffeaba;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 0.78rem;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

/* スクロールヒント */
.hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  z-index: 2;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  margin: 8px auto 0;
  animation: heroScrollLine 2s ease-in-out infinite;
}

/* trust-band (ヒーロー直下の安心材料バンド) */
.trust-band {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
}

.trust-grid > div {
  min-height: 96px;
  padding: 18px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.trust-grid span {
  color: var(--color-text-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust-grid strong {
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* アニメーション */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScrollLine {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* タブレット以上 */
@media (min-width: 640px) {
  .hero {
    min-height: 640px;
  }

  .hero-inner {
    padding: 100px 0 90px;
  }

  .hero-facts {
    gap: 14px;
  }

  .hero-facts > div {
    padding: 18px 20px;
  }

  .hero-facts dt {
    font-size: 1.6rem;
  }

  .hero-facts dd {
    font-size: 0.85rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid > div {
    min-height: 100px;
    padding: 22px 24px;
  }
}

/* デスクトップ */
@media (min-width: 960px) {
  .hero {
    min-height: calc(100vh - 160px);
    max-height: 800px;
  }

  .hero-inner {
    padding: 120px 0 110px;
  }

  .hero-facts dt {
    font-size: 1.8rem;
  }

  .hero-actions .btn {
    font-size: 1.05rem;
    padding: 18px 30px;
  }
}

/* ページタイトル(下層) */
.page-hero {
  background: linear-gradient(135deg, rgba(31, 90, 55, 0.92) 0%, rgba(44, 122, 75, 0.88) 100%), url("../images/1595164891001482700.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.page-hero__title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.page-hero__en {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.1em;
}

/* パンくず */
.breadcrumb {
  background: var(--color-bg-light);
  padding: 10px 20px;
  font-size: 0.85rem;
}

.breadcrumb__list {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-text-light);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-width: 200px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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

/* カード */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  border-top: 4px solid var(--color-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card__title {
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

/* 特徴ボックス */
.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  background: #fff;
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.feature-item__title {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item__number {
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-item__text {
  margin: 0;
  color: var(--color-text);
}

/* テーブル */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 480px;
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tbody tr:nth-child(even) {
  background: var(--color-bg-light);
}

.table--info th {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  width: 30%;
  vertical-align: top;
}

.table--info td {
  background: #fff;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.cta__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.cta__text {
  margin-bottom: 24px;
  font-size: 1rem;
}

.cta__tel {
  display: inline-block;
  background: #fff;
  color: var(--color-accent-dark);
  padding: 18px 32px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.cta__tel-number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.cta__tel-label {
  font-size: 0.8rem;
  display: block;
}

.cta__hours {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 56px 20px 60px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  color: var(--color-primary-dark);
  font-family: inherit;
}

.faq-question::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.2s;
}

.faq-question.is-open::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  position: relative;
}

.faq-answer.is-open {
  padding: 0 20px 20px 60px;
  max-height: 500px;
}

.faq-answer::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-answer p {
  margin: 0;
}

/* フォーム */
.form {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.form__label .required {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: normal;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 122, 75, 0.15);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__submit {
  text-align: center;
  margin-top: 28px;
}

.form__note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* リスト装飾 */
.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* インフォボックス */
.info-box {
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box__title {
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-box--accent {
  background: #fff5eb;
  border-color: var(--color-accent);
}

.info-box--accent .info-box__title {
  color: var(--color-accent-dark);
}

/* フッター */
.footer {
  background: #1f3a2a;
  color: #d8e5dc;
  padding: 50px 20px 20px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__company-name {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__tel {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer__nav-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  border-bottom: 1px solid #3a5a47;
  padding-bottom: 8px;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer__nav-list a {
  color: #d8e5dc;
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid #3a5a47;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #a8b8ad;
}

/* 電話固定ボタン(モバイル) */
.fixed-tel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 100;
  text-decoration: none;
  transition: transform 0.2s;
}

.fixed-tel:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* 画像関連 */
.image-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.image-feature__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-feature__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-feature__body h3 {
  color: var(--color-primary-dark);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.image-feature--reverse {
  direction: ltr;
}

@media (min-width: 768px) {
  .image-feature {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .image-feature--reverse .image-feature__image {
    order: 2;
  }
}

/* 画像ギャラリー */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 24px 12px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* カードに画像 */
.card--with-image {
  padding: 0;
  overflow: hidden;
  border-top: none;
  display: flex;
  flex-direction: column;
}

.card--with-image .card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card--with-image .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card--with-image:hover .card__image img {
  transform: scale(1.05);
}

.card--with-image .card__body {
  padding: 24px 24px 28px;
  border-top: 4px solid var(--color-primary);
}

.card--with-image .card__body .card__title {
  margin-bottom: 10px;
}

/* プロフィール画像 */
.profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--color-primary);
  margin-bottom: 32px;
}

.profile__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__name {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.profile__role {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .profile {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
  }
}

/* バナー帯画像 */
.banner-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .banner-image {
    height: 280px;
  }
}

/* ライトボックス(画像クリック拡大) */
.gallery__item--zoom {
  cursor: zoom-in;
}

.gallery__item--zoom::after {
  content: "🔍";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.gallery__item--zoom:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox__caption {
  color: #fff;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ブログアーカイブ */
.blog-year-title {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-year-title::before {
  content: "";
  width: 6px;
  height: 28px;
  background: var(--color-accent);
  display: inline-block;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.blog-card {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-card--spring { border-left-color: #f08aaa; }
.blog-card--summer { border-left-color: #4ec1c1; }
.blog-card--autumn { border-left-color: #e07a3a; }
.blog-card--winter { border-left-color: #6b88c4; }

.blog-card__date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.blog-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
}

.blog-card__season {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 50px;
  background: var(--color-bg-light);
  color: var(--color-text-light);
  font-weight: 700;
}

.blog-card--spring .blog-card__season { background: #fde7ee; color: #c14f6c; }
.blog-card--summer .blog-card__season { background: #def4f4; color: #1f7575; }
.blog-card--autumn .blog-card__season { background: #fae7d8; color: #a35225; }
.blog-card--winter .blog-card__season { background: #dde7f5; color: #3e5994; }

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* サイトマップ */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.sitemap-block {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
}

.sitemap-block__title {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.sitemap-block__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-block__list a {
  display: block;
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.sitemap-block__list a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.sitemap-block__list a:hover {
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ユーティリティ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===========================================
   タブレット (640px〜)
   =========================================== */
@media (min-width: 640px) {
  body {
    font-size: 17px;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 2.2rem;
  }

  .page-hero {
    padding: 70px 20px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }

  .cta__title {
    font-size: 1.8rem;
  }

  .cta__tel-number {
    font-size: 2.4rem;
  }
}

/* ===========================================
   デスクトップ (960px〜)
   =========================================== */
@media (min-width: 960px) {
  .header__inner {
    padding: 18px 24px;
  }

  .header__logo-mark {
    width: 64px;
    height: 64px;
  }

  .header__logo-text {
    font-size: 1.2rem;
  }

  .header__tel {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    gap: 4px;
    justify-content: center;
  }

  .nav__item {
    border: none;
    position: relative;
  }

  .nav__link {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 0;
    color: #fff;
    justify-content: center;
  }

  .nav__link:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
  }

  .nav-overlay {
    display: none;
  }

  /* ヘッダー下のメインナビ帯 */
  .header-nav-wrap {
    background: var(--color-primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav-wrap .nav__list {
    max-width: var(--container);
    margin: 0 auto;
    justify-content: center;
    gap: 0;
  }

  .header-nav-wrap .nav__link.is-current {
    background: var(--color-primary);
    color: #fff;
  }

  /* デスクトップ:ドロップダウンサブメニュー */
  .nav__has-sub > .nav__link::after {
    content: "▾";
    margin-left: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transform: none;
  }

  .nav__has-sub.is-open-sub > .nav__link::after {
    transform: none;
  }

  .nav__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 240px;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 3px solid var(--color-accent);
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
  }

  .nav__has-sub:hover .nav__sub,
  .nav__has-sub:focus-within .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav__sub-link {
    padding: 12px 20px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
  }

  .nav__sub-link::before {
    color: var(--color-primary);
  }

  .nav__sub-link:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    opacity: 1;
  }

  .nav__sub-link.is-current {
    background: var(--color-primary-light);
  }

  .nav__sub li:last-child .nav__sub-link {
    border-bottom: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  body {
    padding-top: 0;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__nav-list {
    grid-template-columns: 1fr;
  }

  .fixed-tel {
    display: none;
  }
}

/* 印刷時 */
@media print {
  .header, .footer, .cta, .fixed-tel, .hamburger, .nav { display: none; }
}
