/*
Theme Name: Lightning Child Sample
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* =========================================================
   0. GLOBAL SETTINGS (変数・基本フォント)
========================================================= */

:root {
  --warm-title-max: 960px;
  --warm-title-padding-x: clamp(16px, 4vw, 32px);
}

html,
body {
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    'Hiragino Sans',
    'Hiragino Kaku Gothic ProN',
    'Yu Gothic',
    'Meiryo',
    sans-serif;
}

/* =========================================================
   1. LAYOUT & COMMON COMPONENTS (共通レイアウト・パーツ)
========================================================= */

/* 共通タイトルラッパー */
.warm-title-wrap {
  max-width: var(--warm-title-max);
  margin: 0 auto;
  padding-left: var(--warm-title-padding-x);
  padding-right: var(--warm-title-padding-x);
}

/* セクションタイトル（中央配置型） */
.warm-section-title {
  margin: 4rem auto 3rem;
}
.warm-section-title.center {
  text-align: center;
}
.warm-section-en {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8bb754;
}
.warm-section-ja {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 600px) {
  .warm-section-title {
    margin: 3rem auto;
  }
}

/* サブタイトル（中央ライン型） */
.warm-subtitle {
  position: relative;
  text-align: center;
  line-height: 1;
}
.warm-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(139, 183, 84, 0.35);
  transform: translateY(-50%);
}
.warm-subtitle span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background-color: #ffffff;
  color: #8bb754;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* フキダシ見出し */
.warm-balloon {
  margin: 4rem 0;
  text-align: center;
  border: none;
}
.warm-balloon::before,
.warm-balloon::after {
  content: none;
}
.warm-balloon-text {
  position: relative;
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 3px solid #8bb754;
  border-radius: 999px;
  background-color: #ffffff;
  color: #8bb754;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.warm-balloon-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 18px 0 18px;
  border-color: #8bb754 transparent transparent transparent;
}
@media (max-width: 600px) {
  .warm-balloon-text {
    padding: 1rem 2.2rem;
    font-size: 1.35rem;
  }
  .warm-balloon-text::after {
    bottom: -18px;
    border-width: 18px 14px 0 14px;
  }
}

/* シアー（傾き）テキスト */
.warm-shear-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.45;
  color: #8bb754;
  opacity: 0.85;
  transform: skewX(-10deg);
  transform-origin: left bottom;
  letter-spacing: 0.02em;
}

/* アンカーナビゲーション */
.warm-anchor-nav {
  max-width: 1100px;
  margin: 3.5rem auto 4.5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: center;
}
.anchor-item {
  display: block;
  padding: 1.4rem 1rem;
  border: 2px solid #8bb754;
  background-color: transparent;
  color: #8bb754;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.anchor-item:hover {
  background-color: #8bb754;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(139, 183, 84, 0.25);
}
.anchor-item:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(139, 183, 84, 0.2);
}
@media (max-width: 768px) {
  .warm-anchor-nav {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .anchor-item {
    font-size: 1rem;
    padding: 1.2rem 1rem;
  }
}

/* =========================================================
   2. BUTTONS (ボタン各種)
========================================================= */

/* お問い合わせボタン（mail / phone） */
.warm-btn-mail,
.warm-btn-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  margin: 1.5rem auto;
  padding: 1.2rem 1.4rem;
  background-color: #8bb754;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 8px 0 #6fa33f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.warm-btn-mail .line1,
.warm-btn-phone .line1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.warm-btn-mail .line2,
.warm-btn-phone .line2 {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  opacity: 0.95;
}
.warm-btn-mail:hover,
.warm-btn-phone:hover {
  background-color: #7aa94a;
  transform: translateY(3px);
  box-shadow: 0 4px 0 #6fa33f;
}
.warm-btn-mail:active,
.warm-btn-phone:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #6fa33f;
}
.warm-btn-mail:focus-visible,
.warm-btn-phone:focus-visible {
  outline: 3px solid rgba(139, 183, 84, 0.5);
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .warm-btn-mail, .warm-btn-phone {
    width: 100%;
    padding: 1.1rem 1rem;
  }
  .warm-btn-mail .line1, .warm-btn-phone .line1 {
    font-size: 1rem;
  }
}

/* 詳細を見る ボタン (taku-button) */
.taku-button-wrap {
  text-align: center;
  margin: 2.5rem 0;
}
.taku-button {
  position: relative;
  display: inline-block;
  padding: 0.9em 2.6em;
  background-color: #8bb754;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 0 #6fa33f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.taku-button-circle {
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 0.55em;
  height: 0.55em;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}
.taku-button:hover {
  background-color: #7aa94a;
  transform: translateY(3px);
  box-shadow: 0 3px 0 #6fa33f;
}
.taku-button:hover .taku-button-circle {
  transform: translate(6px, -50%);
}
.taku-button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #6fa33f;
}
.taku-button:focus-visible {
  outline: 3px solid rgba(139, 183, 84, 0.5);
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .taku-button {
    font-size: 0.95rem;
    padding: 0.85em 2.2em;
  }
}

/* =========================================================
   3. MESSAGE & CONTENT (メッセージ・挨拶系)
========================================================= */

/* Minimal Message Design (SVG背景対応) */
.warm-minimal-message {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 2;
}
.warm-minimal-message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("http://demo.taikoutatata.com/wp-content/uploads/2026/02/back.svg");
  background-repeat: no-repeat;
  background-position: right 6% center;
  background-size: min(520px, 60vw);
  opacity: 0.12;
  pointer-events: none;
}
.warm-minimal-message > * {
  position: relative;
  z-index: 1;
}
.warm-minimal-message p { margin: 0 0 2rem; font-size: 1rem; }
.warm-minimal-message .lead { font-size: 1.25rem; font-weight: 600; margin-bottom: 3rem; }
.warm-minimal-message strong { color: #8bb754; font-weight: 700; }
.warm-minimal-message .emphasis { font-size: 1.1rem; font-weight: 600; color: #8bb754; margin: 3.5rem 0; }
.warm-minimal-message .closing { font-size: 1.25rem; font-weight: 600; color: #8bb754; margin-top: 3.5rem; margin-bottom: 1rem; }

@media (max-width: 600px) {
  .warm-minimal-message { padding: 3rem 1.2rem; }
  .warm-minimal-message::before { background-position: center; background-size: 120vw; opacity: 0.35; }
  .warm-minimal-message p { font-size: 0.95rem; margin-bottom: 1.8rem; }
  .warm-minimal-message .lead, .warm-minimal-message .closing { font-size: 1.1rem; }
  .warm-minimal-message .emphasis { font-size: 1.05rem; margin: 3rem 0; }
}

/* Representative Message (署名付きメッセージ) */
.warm-message-card.is-challenge {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.9;
}
.warm-message-card.is-challenge p { margin: 0 0 1.8rem; font-size: 1.05rem; }
.warm-message-card.is-challenge .lead { font-size: 1.15rem; font-weight: 500; }
.warm-message-card.is-challenge strong { font-weight: 700; color: #5f8f3a; }
.warm-message-card.is-challenge .emphasis { margin: 3rem 0 1.5rem; font-size: 1.4rem; font-weight: 700; line-height: 1.4; }
.warm-message-card.is-challenge .closing { margin-top: 2.5rem; font-size: 1.05rem; }
.warm-message-card.is-challenge .warm-representative-sign {
  margin-top: 4.5rem;
  margin-bottom: 0;
  text-align: right;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
}
@media (max-width: 600px) {
  .warm-message-card.is-challenge { padding: 0 1.2rem; }
  .warm-message-card.is-challenge p { font-size: 0.95rem; margin-bottom: 1.6rem; }
  .warm-message-card.is-challenge .lead { font-size: 1.05rem; }
  .warm-message-card.is-challenge .emphasis { font-size: 1.25rem; }
  .warm-message-card.is-challenge .warm-representative-sign { margin-top: 4rem; font-size: 1.45rem; }
}

/* Message Card - TRY NEW THINGS & SDGs */
.warm-message-card .highlight { position: relative; font-weight: 600; color: #8bb754; }
.warm-message-card .highlight::after {
  content: ""; position: absolute; left: 0; bottom: -0.15em; width: 100%; height: 0.4em;
  background-color: rgba(139, 183, 84, 0.25); z-index: -1;
}
.warm-message-card .emphasis span { border-bottom: 2px solid #8bb754; padding-bottom: 0.1em; }
.sp-only { display: none; }
@media (max-width: 600px) { .sp-only { display: inline; } }

.warm-message-card.is-sdgs { position: relative; }
.warm-message-card.is-sdgs .sdgs {
  display: inline-block; margin: 0 0.4em 0.4em 0; padding: 0.15em 0.6em;
  font-size: 0.9rem; font-weight: 600; color: #5f8f3a;
  border: 1px solid rgba(139, 183, 84, 0.6); border-radius: 999px; white-space: nowrap;
}
.warm-message-card.is-sdgs .closing { margin-top: 2.2rem; color: #4a4a4a; }

/* =========================================================
   4. PRODUCTS & SERVICE (商品・サービス系)
========================================================= */

/* PRODUCTS セクション (個人/法人/経営者) */
.hara-products { background-color: #8bb754; padding: 4rem 1.5rem; }
.hara-products-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.hara-product-item { border: 2px solid #ffffff; padding: 3rem 2rem; text-align: center; }
.hara-product-item a { display: block; color: #ffffff; text-decoration: none; }
.hara-icon { margin-bottom: 1.5rem; }
.hara-icon img { width: 64px; height: auto; }
.hara-title { margin: 0 0 1.2rem; font-family: "Noto Sans JP", sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em; }
.hara-text { margin: 0; font-size: 0.95rem; line-height: 2; letter-spacing: 0.35em; opacity: 0.95; }
.hara-product-item:hover { background-color: rgba(255, 255, 255, 0.08); }
@media (max-width: 900px) {
  .hara-products-inner { grid-template-columns: 1fr; }
  .hara-product-item { padding: 2.5rem 1.5rem; }
  .hara-text { letter-spacing: 0.25em; }
}

/* Insurance Frame Grid (保険詳細フレーム) */
.warm-insurance-frame-grid {
  max-width: 960px; margin: 0 auto; padding: 4rem 1.5rem;
  display: flex; flex-direction: column; gap: 3rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.insurance-frame { border: 1.5px solid #8bb754; padding: 3.2rem 3rem; background-color: transparent; transition: transform 0.25s ease, border-color 0.25s ease; }
.insurance-frame:hover { transform: translateY(-2px); border-color: #6fa33f; }
.insurance-frame h3 { margin: 0 0 2rem; font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 700; color: #8bb754; line-height: 1.3; }
.insurance-frame p { margin: 0; font-size: 1rem; line-height: 2; color: #000; }
@media (max-width: 600px) {
  .warm-insurance-frame-grid { padding: 3rem 1.2rem; gap: 2.4rem; }
  .insurance-frame { padding: 2.4rem 1.8rem; }
  .insurance-frame h3 { font-size: 1.6rem; }
  .insurance-frame p { font-size: 0.95rem; }
}

/* Products List (枠ボックス形式) */
.warm-products { padding: 4rem 1.5rem; }
.warm-products-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem;
}
.warm-products-box { border: 1px solid #8bb754; padding: 2.5rem 2rem; }
.warm-products-title { margin: 0 0 2rem; font-size: 1.3rem; font-weight: 600; color: #8bb754; letter-spacing: 0.08em; }
.warm-products-group { margin-bottom: 2.2rem; }
.warm-products-group:last-child { margin-bottom: 0; }
.warm-products-group h4 { margin: 0 0 0.8rem; font-size: 0.95rem; font-weight: 600; color: #333; }
.warm-products-group ul { margin: 0; padding-left: 1.2rem; }
.warm-products-group li { margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.7; }
@media (max-width: 800px) { .warm-products-inner { grid-template-columns: 1fr; } .warm-products-box { padding: 2rem 1.5rem; } }

/* Support Menu (ネットワーク一覧) */
.warm-support { padding: 4.5rem 1.5rem; }
.warm-support-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.warm-support-item {
  padding: 2.4rem 2.2rem; border: 1px solid #8bb754; border-radius: 14px;
  background-color: #ffffff; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.warm-support-item:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(139, 183, 84, 0.15); }
.warm-support-item h3 { margin: 0 0 1.2rem; font-size: 1.1rem; font-weight: 600; color: #8bb754; letter-spacing: 0.08em; }
.warm-support-item p { margin: 0; font-size: 0.95rem; line-height: 1.85; color: #333; }
@media (max-width: 900px) { .warm-support-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .warm-support { padding: 3.5rem 1.2rem; }
  .warm-support-inner { grid-template-columns: 1fr; gap: 2rem; }
  .warm-support-item { padding: 2rem 1.6rem; }
}

/* =========================================================
   5. INFORMATION & TITLES (お知らせ・見出し系)
========================================================= */

/* INFORMATION (お知らせリスト) */
.info-section { background: linear-gradient(135deg, #f4f8ef 0%, #ffffff 100%); padding: 3.5rem 1.5rem; font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif; }
.info-inner { max-width: 960px; margin: 0 auto; }
.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.info-item { background-color: #ffffff; border-radius: 16px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.info-item:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1); }
.info-link { display: flex; align-items: center; gap: 1.2rem; padding: 1.4rem 1.6rem; text-decoration: none; color: #333; }
.info-meta { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; flex-shrink: 0; }
.info-date { color: #8bb754; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.info-cat { background-color: #8bb754; color: #ffffff; padding: 0.25em 0.8em; border-radius: 999px; font-size: 0.75rem; font-weight: 500; white-space: nowrap; }
.info-title { flex: 1; font-size: 1rem; font-weight: 600; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #333; }
.info-link:hover .info-title { color: #6fa33f; text-decoration: underline; }
@media (max-width: 600px) { .info-section { padding: 2.5rem 1rem; } .info-link { padding: 1.2rem; gap: 0.8rem; } .info-title { font-size: 0.95rem; } }

/* ABOUT TITLE */
.warm-about-title { margin: 0; padding: 0 2.4rem; }
.warm-about-en { margin: 0; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: #666; }
.warm-about-ja { margin: 4px 0 0; font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: 0.02em; color: #8bb754; line-height: 1.35; }
@media (max-width: 600px) { .warm-about-title { padding: 0 1.5rem; } }

/* INSURANCE TITLE & 保険会社一覧 */
.warm-insurance-title { margin: 0; padding: 0; }
.warm-insurance-en { margin: 0; font-size: 12px; letter-spacing: 0.25em; color: #666; text-transform: uppercase; }
.warm-insurance-ja { margin: 4px 0 0; font-size: clamp(20px, 3vw, 30px); font-weight: 600; color: #8bb754; }

.保険会社一覧 {
  max-width: var(--warm-title-max); margin: 24px auto 0; padding: 0 var(--warm-title-padding-x);
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 768px) { .保険会社一覧 { grid-template-columns: repeat(2, 1fr); gap: 16px 20px; } }
.保険会社一覧 li { background: #8fbb52; color: #fff; padding: 14px 18px; border-radius: 6px; font-size: 1rem; font-weight: 600; text-align: center; display: flex; align-items: center; justify-content: center; }

/* 保険商品バナー セクションタイトル */
.insurance-title-wrap { text-align: center; margin: 3rem 0 2rem; }
.insurance-title {
  display: inline-block; background-color: #8bb754; color: #ffffff; font-size: 1.4rem; font-weight: 700;
  padding: 0.6em 1.6em; border-radius: 8px; letter-spacing: 0.04em; position: relative; box-shadow: 0 6px 0 #e24b4b;
}
.insurance-title::after {
  content: ""; position: absolute; left: 50%; bottom: -0.6rem; transform: translateX(-50%);
  width: 40%; height: 3px; background-color: rgba(139, 183, 84, 0.35); border-radius: 999px;
}
@media (max-width: 600px) { .insurance-title { font-size: 1.15rem; padding: 0.6em 1.3em; } }

/* =========================================================
   6. COMPANY & STAFF (会社案内・スタッフ)
========================================================= */

/* Company Info Block */
.warm-company { padding: 4rem 1.5rem; background-color: #f7faf3; }
.warm-company-inner { max-width: 720px; margin: 0 auto; }
.warm-company-list { margin: 0; padding: 0; }
.warm-company-item { display: grid; grid-template-columns: 110px 1fr; gap: 1.6rem; padding: 1.6rem 0; border-bottom: 1px solid #dfe8d6; }
.warm-company-item dt { font-size: 0.8rem; font-weight: 600; color: #8bb754; letter-spacing: 0.1em; }
.warm-company-item dd { margin: 0; font-size: 0.95rem; line-height: 1.9; color: #333; }
.warm-company-item.accent { background-color: rgba(139, 183, 84, 0.06); padding: 1.8rem 1.2rem; border-radius: 12px; border-bottom: none; }
.warm-company-item .tel { font-weight: 600; }
.warm-company-item .note { display: block; margin-top: 0.6rem; font-size: 0.8rem; font-weight: 400; color: #666; }
@media (max-width: 600px) { .warm-company { padding: 3rem 1.2rem; } .warm-company-item { grid-template-columns: 1fr; gap: 0.6rem; } .warm-company-item dt { font-size: 0.75rem; } }

/* Staff Profile Text */
.staff-profile-text { margin-top: 1.2rem !important; font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important; color: #333 !important; }
.staff-profile-text h3.staff-name { margin: 0 0 0.9rem !important; padding: 0 !important; line-height: 1.25 !important; font-weight: 700 !important; font-size: 1.3rem !important; color: #8bb754 !important; text-align: left !important; }
.staff-profile-text p.staff-text { margin: 0 !important; padding: 0 !important; font-size: 0.95rem !important; line-height: 1.8 !important; color: #444 !important; }
@media (max-width: 600px) { .staff-profile-text { margin-top: 1rem !important; } .staff-profile-text h3.staff-name { font-size: 1.2rem !important; } .staff-profile-text p.staff-text { font-size: 0.9rem !important; } }

/* =========================================================
   7. ACCESS & FAQ (アクセス・よくある質問)
========================================================= */

/* ACCESS セクション */
.warm-access { background: linear-gradient(135deg, #f4f8ef 0%, #ffffff 100%); padding: 4rem 1.5rem; }
.warm-access-inner { max-width: 1100px; margin: 0 auto; }
.warm-access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.warm-access-svg, .warm-access-mapbox { background-color: #ffffff; border-radius: 20px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08); padding: 1.5rem; }
.warm-access-svg { display: flex; justify-content: center; align-items: center; }
.warm-access-svg img { max-width: 100%; height: auto; border-radius: 12px; }
.warm-access-gmap { position: relative; width: 100%; padding-top: 65%; border-radius: 14px; overflow: hidden; }
.warm-access-gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.warm-access-svg::before, .warm-access-mapbox::before { content: ""; display: block; height: 4px; width: 60px; background-color: #8bb754; border-radius: 999px; margin-bottom: 1rem; }
@media (max-width: 768px) { .warm-access { padding: 3rem 1rem; } .warm-access-grid { grid-template-columns: 1fr; gap: 1.5rem; } .warm-access-svg, .warm-access-mapbox { padding: 1.2rem; } }

/* ACCESS TEXT (背景透過・ミニマル) */
.warm-access-text { background-color: transparent; padding: 3.5rem 2rem; font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }
.access-main { margin: 0 0 1.8rem; color: #9cc45a; font-size: clamp(1.2rem, 2.6vw, 1.8rem); font-weight: 800; line-height: 1.7; }
.access-address { margin: 0; color: #9cc45a; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 600px) { .warm-access-text { padding: 3rem 1.5rem; } .access-main { font-size: 1.15rem; line-height: 1.6; } .access-address { font-size: 0.85rem; } }

/* FAQ Section */
.warm-faq { max-width: 880px; margin: 0 auto; padding: 4rem 1.5rem; font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }

/* =========================================================
   8. FOOTER & LIGHTNING SPECIFIC (フッター・テーマ固有)
========================================================= */

/* フッター */
.site-footer { background-color: #8bb754; color: #ffffff; }
.site-footer a { color: inherit; }
.site-footer a:hover { opacity: 0.85; }
.site-footer-copyright p:nth-child(2) { display: none; }

/* Lightning 固定ページタイトル非表示 */
.page-header,
.vk_pageHeader,
.page-header-container,
.page-header-inner {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
}

/* =========================================
   WARM Intro Splash（NO JS / SIMPLE）
========================================= */
.home .warm-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #8bb754;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: warmIntroFadeOut 0.9s ease forwards;
  animation-delay: 2.2s;

  pointer-events: none;
}

.home .warm-intro img {
  width: min(260px, 60vw);
  height: auto;
  animation: warmIntroFadeIn 0.8s ease;
}

@keyframes warmIntroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes warmIntroFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .home .warm-intro img {
    width: 180px;
  }
}


/* ==========================================
   LINE Fixed Button
   TOP PAGE ONLY
========================================== */

.home .warm-line-fixed {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 9000;

  width: 112px;
  height: 112px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background-color: transparent;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    opacity 0.3s ease;
}

/* SVG */
.home .warm-line-fixed img {
  width: 100%;
  height: auto;
  display: block;
}

/* hover */
.home .warm-line-fixed:hover {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
}

/* active */
.home .warm-line-fixed:active {
  transform: translateY(-3px) scale(0.98);
}


/* ==========================================
   Mobile：イントロ完了後に表示
========================================== */

@media (max-width: 600px) {

  .home .warm-line-fixed {
    right: 1.2rem;
    bottom: 1.4rem;
    width: 76px;
    height: 76px;

    opacity: 0;                 /* ← 最初は完全非表示 */
    animation: showLineBtn 0.4s ease forwards;
    animation-delay: 3.1s;      /* ← intro(2.2s + 0.9s) 後 */
  }

  @keyframes showLineBtn {
    to {
      opacity: 1;
    }
  }
}

/* ==========================================
   WARM HISTORY（沿革）
========================================== */

.warm-history {
  position: relative;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  overflow: hidden;
}

/* 背景SVG */
.warm-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("http://demo.taikoutatata.com/wp-content/uploads/2026/02/HISTORY.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 520px auto;
  opacity: 0.15;
  pointer-events: none;
}

/* 内側 */
.warm-history-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* 縦ライン */
.warm-history-inner::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(139, 183, 84, 0.35);
}

/* 各項目 */
.history-item {
  position: relative;
  padding-left: 2.8rem;
}

/* ドット */
.history-item::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background-color: #8bb754;
  border-radius: 50%;
}

/* 年 */
.history-year {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #8bb754;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

/* 説明文 */
.history-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 600px) {

  .warm-history {
    padding: 4rem 1.2rem;
  }

  .warm-history::before {
    background-size: 380px auto;
    background-position: center top;
    opacity: 0.2;
  }

  .warm-history-inner {
    padding-left: 2.2rem;
  }

  .warm-history-inner::before {
    left: 0.8rem;
  }

  .history-item {
    padding-left: 2.4rem;
  }

  .history-year {
    font-size: 0.85rem;
  }

  .history-item p {
    font-size: 0.9rem;
  }
}

/* ==========================================
   FAQ Section
   warm-faq | TRY NEW THINGS
========================================== */

.warm-faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 1.5rem;

  font-family: "Noto Sans JP",
               "Hiragino Kaku Gothic ProN",
               "Yu Gothic",
               sans-serif;
}

/* ==========================================
   FAQ Item
========================================== */

.faq-item {
  position: relative;
  margin-bottom: 1.6rem;

  border: 1px solid rgba(139, 183, 84, 0.35);
  background-color: #ffffff;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* hover（閉じている時だけ少し浮かせる） */
.faq-item:not([open]):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 183, 84, 0.12);
}

/* open 状態 */
.faq-item[open] {
  border-color: #8bb754;
  box-shadow: 0 12px 28px rgba(139, 183, 84, 0.18);
}

/* ==========================================
   summary（質問）
========================================== */

.faq-item summary {
  list-style: none;
  cursor: pointer;

  padding: 1.6rem 4.2rem 1.6rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;

  color: #333;
  position: relative;
}

/* marker 削除 */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Q アイコン */
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 1.2rem;
  top: 1.55rem;

  font-weight: 800;
  font-size: 1rem;
  color: #8bb754;
}

/* + / − アイコン */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 1.45rem;

  font-size: 1.4rem;
  font-weight: 500;
  color: #8bb754;

  transition: transform 0.25s ease;
}

/* open 時は − */
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

/* hover で質問色を少し変える */
.faq-item summary:hover {
  color: #6fa33f;
}

/* ==========================================
   Answer（回答）
========================================== */

.faq-item p {
  margin: 0;
  padding: 0 2.8rem 1.8rem;

  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;

  animation: faqFadeIn 0.35s ease;
}

/* A アイコン */
.faq-item p::before {
  content: "A";
  display: inline-block;
  margin-right: 0.6em;

  font-weight: 800;
  color: #8bb754;
}

/* ==========================================
   Animation
========================================== */

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 600px) {
  .warm-faq {
    padding: 3rem 1.2rem;
  }

  .faq-item summary {
    padding: 1.4rem 3.6rem 1.4rem 2.4rem;
    font-size: 1rem;
  }

  .faq-item summary::before {
    left: 1rem;
  }

  .faq-item summary::after {
    right: 1.1rem;
  }

  .faq-item p {
    padding: 0 2.4rem 1.6rem;
    font-size: 0.9rem;
  }
}
