@charset "utf-8";

/* ============================================================
   石経石材 TOPページ
   style.css  —  変数 / ベース / レイアウト / コンポーネント
   （メディアクエリは responsive.css に分離）
   ============================================================ */

/* ------------------------------------------------------------
   1. デザイントークン（CSS変数）
   ------------------------------------------------------------ */
:root {
  /* --- color --- */
  --navy-900: #034059;
  --navy-800: #07415b;
  --navy-700: #0e2944;
  --red-600: #c12d1c;
  --gradient-green: #44937e;
  --gradient-navy: #0e2944;
  --ink: #222222;
  --body-text: #394049;
  --gray-light: #eeeeee;
  --gray-border: #cccccc;
  --gray-muted: #b4b4b4;
  --gray-wash: #faf8f5;
  --gray-panel: #f1f2f2;
  --white: #ffffff;
  --footer-text: #c8d4da;
  --footer-text-dim: #93a5ae;
  --line-green: #06c755;

  /* --- semantic --- */
  --surface-page: var(--white);
  --surface-section-wash: var(--gray-wash);
  --surface-nav: var(--navy-900);
  --surface-footer: var(--navy-700);
  --text-body: var(--body-text);
  --text-heading: var(--navy-900);
  --text-muted: var(--gray-muted);
  --border-default: var(--gray-border);
  --accent-cta: var(--red-600);

  /* --- typography --- */
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --fs-body: 16px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --lh-body: 2;
  --ls-body: 0.05em;
  --ls-heading: 0.1em;

  /* --- spacing / layout --- */
  --container-max: 1080px;
  --container-pad: 40px;
  --section-py: 100px;

  /* --- effect --- */
  --shadow-button: 0 3px 3px 0 rgba(0, 0, 0, .2);
  --shadow-card: 0 0 5px 0 rgba(0, 0, 0, .5);
  --shadow-soft: 0 0 5px 0 rgba(0, 0, 0, .2);
  --hover-opacity: .7;
  --transition-fast: .2s ease;

  /* --- z-index --- */
  --z-header: 100;   /* ヘッダー（ドロワーを内包） */
  --z-overlay: 99;   /* ドロワー背面のオーバーレイ */
  --z-float: 90;     /* LINE・ページトップ・固定CTA */
}

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

html {
  scroll-behavior: smooth;
  /* 固定ヘッダーに隠れないようにアンカー位置を調整 */
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, p, figure, blockquote, address { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, iframe { max-width: 100%; }
img { height: auto; vertical-align: bottom; }

a {
  color: var(--navy-900);
  transition: opacity var(--transition-fast);
}
a:hover { opacity: var(--hover-opacity); }

button { font-family: inherit; }

address { font-style: normal; }

/* フォーカスリング（キーボード操作時のみ） */
:focus-visible {
  outline: 2px solid var(--navy-900);
  outline-offset: 2px;
}

/* 動きを減らす設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ------------------------------------------------------------
   3. ユーティリティ
   ------------------------------------------------------------ */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.svg-sprite { position: absolute; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 999;
  padding: 10px 16px;
  background: var(--navy-900);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* スクロールで表示するアニメーション（JSで .is-visible を付与） */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   4. レイアウト
   ------------------------------------------------------------ */
.l-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.l-section {
  padding-block: var(--section-py);
  background: var(--surface-page);
}
.l-section--wash { background: var(--surface-section-wash); }

/* ------------------------------------------------------------
   5. ヘッダー / グローバルナビ
   ------------------------------------------------------------ */
.l-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--white);
  border-bottom: 1px solid var(--border-default);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 15px 5%;
}

.header__logo {
  margin-right: auto;
  line-height: 0;
}
.header__logo img { width: 150px; height: 33px; }

.header__tel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy-900);
  text-decoration: none;
  line-height: 1.2;
}
.header__tel-note {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--body-text);
  letter-spacing: 0;
}

/* ハンバーガーボタン（SPのみ表示 / responsive.css） */
.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.header__toggle-bar {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.header__toggle-bar:nth-child(1) { top: 15px; }
.header__toggle-bar:nth-child(2) { top: 21px; }
.header__toggle-bar:nth-child(3) { top: 27px; }
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.gnav { background: var(--surface-nav); }

.gnav__list {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  text-align: center;
  letter-spacing: var(--ls-heading);
}
.gnav__item {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, .25);
}
.gnav__item:last-child { border-right: 1px solid rgba(255, 255, 255, .25); }

.gnav__link {
  display: block;
  padding: 16px 8px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.gnav__link:hover {
  background: var(--navy-700);
  opacity: 1;
}

.gnav__cta { display: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(0, 0, 0, .45);
}

/* ドロワーを開いている間はフローティング要素を隠す */
body.is-nav-open .c-line-btn,
body.is-nav-open .c-pagetop,
body.is-nav-open .p-fixed-cta {
  visibility: hidden;
  opacity: 0;
}

/* ------------------------------------------------------------
   6. 共通パーツ（ボタン・見出し・カード枠 など）
   ------------------------------------------------------------ */
.c-section-head {
  margin-bottom: 48px;
  text-align: center;
}
.c-section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: var(--ls-heading);
  line-height: 1.4;
}
.c-section-lead {
  margin: 20px 0px;
  font-size: 15px;
  color: var(--text-body);
		text-align: center;
}

.c-subsection-title {
  margin: 72px 0 32px;
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
  letter-spacing: 0.05em;
}

.c-icon { display: block; }

/* --- ボタン --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 32px;
  background: #fff;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-button);
  cursor: pointer;
  transition: opacity var(--transition-fast);
}
.c-btn:hover { opacity: var(--hover-opacity); }

.c-btn--outline { border: 1px solid var(--navy-900); }
.c-btn--cta { background: var(--accent-cta); color: #fff; }
.c-btn--navy { background: var(--navy-900); color: #fff; font-weight: 400; letter-spacing: 0.06em; }
.c-btn--tel {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
}
.c-btn--sm { min-height: 46px; padding: 0 24px; }
.c-btn--wide { min-width: 200px; font-weight: 700; }
.c-btn--block { width: 100%; }

.c-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.c-btn-wrap--sm { margin-top: 24px; }

/* --- テキストリンク（＞付き） --- */
.c-link-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--navy-900);
  font-size: 14px;
  text-decoration: none;
}
.c-link-more::before { content: "＞ "; }
.c-link-more--end { align-self: flex-end; display: block;text-align: right;}

/* --- グリッド --- */
.c-grid { display: grid; gap: 24px; }
.c-grid--3 { grid-template-columns: repeat(3, 1fr); }
.c-grid--2 { grid-template-columns: repeat(2, 1fr); }
.c-grid > * { min-width: 0; }

/* --- タグ --- */
.c-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 3px 12px;
  border: 1px solid var(--gradient-green);
  color: var(--gradient-green);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ------------------------------------------------------------
   7. メインビジュアル（スライダー）
   ------------------------------------------------------------ */
.p-hero {
  position: relative;
  padding-top: 32px;
  background: var(--white);
  overflow: hidden;
}

.p-hero__viewport {
  position: relative;
  max-width: var(--container-max);
  height: 480px;
  margin-inline: auto;
}

.p-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.p-hero__slide.is-current {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.p-hero__link {
  display: block;
  height: 100%;
  position: relative;
}
.p-hero__link:hover { opacity: 1; }

.p-hero__img,
.p-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__img { object-fit: cover; }

.p-hero__caption {
  position: absolute;
  left: 40px;
  bottom: 32px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: var(--ls-heading);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.p-hero__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 48px;
  height: 48px;
  margin-block: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--navy-900);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.p-hero__arrow:hover { background: #fff; }
.p-hero__arrow--prev { left: 8px; }
.p-hero__arrow--next { right: 8px; }

.p-hero__dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px 0 32px;
}
.p-hero__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--navy-900);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.p-hero__dot.is-current { background: var(--navy-900); }

/* ------------------------------------------------------------
   8. 事業紹介
   ------------------------------------------------------------ */
.c-service-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border-default);
}
.c-service-card__icon {
  margin-bottom: 18px;
  color: var(--navy-900);
}
.c-service-card__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.c-service-card__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
}

/* ------------------------------------------------------------
   9. 取扱製品
   ------------------------------------------------------------ */
.c-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-default);
}
.c-product-card__img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.c-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px;
}
.c-product-card__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
}
.c-product-card__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
		color: var(--text-body);
}
.c-product-card__price {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}
.c-product-card .c-link-more { margin-top: 14px; font-size: 13px; }

.p-products__bnr {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 36px 40px;
  background: var(--navy-900);
}
.p-products__bnr-text {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.05em;
}
.p-products__bnr-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.p-products__bnr-btns .c-btn { padding-inline: 28px; }
.p-products__bnr .c-btn  img{
 width: 20px;
}
/* ------------------------------------------------------------
   10. 墓地・霊園を探す
   ------------------------------------------------------------ */
.p-search__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-search__tab {
  padding: 16px 8px;
  border: none;
  background: #e9eaea;
  color: var(--gray-muted);
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.p-search__tab.is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.p-search__panel { background: var(--gray-panel); }
.p-search__panel[hidden] { display: none; }

/* --- エリアで探す --- */
.p-area {
  display: grid;
  grid-template-columns: 4fr 6fr;
  min-height: 480px;
}
.p-area > * { min-width: 0; }

.p-area__list { padding: 44px 40px; }
.p-area__title {
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
}
.p-area__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-area__map {
  position: relative;
  background: #fff;
}
.p-area__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-area__pin {
  position: absolute;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}
.p-area__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c8102e;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .55);
}

.p-area__pin--kyoto    { left: 50.5%; top: 26.1%; }
.p-area__pin--hyogo    { left: 33.7%; top: 32.9%; }
.p-area__pin--osaka-n  { left: 56.4%; top: 40.1%; }
.p-area__pin--osaka-e  { left: 56.4%; top: 47.7%; }
.p-area__pin--osaka-c  { left: 53.6%; top: 51.0%; }
.p-area__pin--sakai    { left: 52.2%; top: 55.8%; }
.p-area__pin--osaka-s  { left: 48.2%; top: 60.9%; }
.p-area__pin--nara     { left: 59.0%; top: 71.4%; }
.p-area__pin--wakayama { left: 46.2%; top: 77.9%; }

/* --- 条件で探す --- */
.p-cond { padding: 44px 40px 52px; }
.p-cond__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.p-cond__set {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.p-cond__legend {
  width: 100%;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
}
.p-cond__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  cursor: pointer;
}
.p-cond__check input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy-900);
}
.p-cond__keyword {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}
.p-cond__input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border-default);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
}

/* ------------------------------------------------------------
   11. 石経石材について
   ------------------------------------------------------------ */
.p-about__intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}
.p-about__intro > * { min-width: 0; }

.p-about__subtitle {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
}
.p-about__text p + p { margin-top: 1.2em; }
.p-about__sign {
  margin-top: 24px !important;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy-900);
}
.p-about__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.p-about__caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- 選ばれる理由 --- */
.c-reason {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--navy-900);
}
.c-reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 56px 56px 0 0;
  border-color: var(--navy-900) transparent transparent transparent;
}
.c-reason__num {
  position: absolute;
  left: 8px;
  top: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
}
.c-reason__title {
  margin-bottom: 8px;
  padding-left: 32px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.6;
}
.c-reason__text { font-size: 14px; line-height: 1.9; }

/* --- 会社概要 --- */
.p-about__company {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.p-about__company > * { min-width: 0; }

.c-table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  font-size: 14px;
}
.c-table th,
.c-table td {
  padding: 14px 18px;
  border: 1px solid var(--border-default);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.c-table th {
  width: 34%;
  background: var(--gray-wash);
  font-weight: 700;
  white-space: nowrap;
}
.c-table a { text-decoration: none; }

.p-about__iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-default);
}
.p-about__gaikan {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  object-fit: cover;
}

.p-about__media {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--gray-wash);
  border: 1px solid var(--border-default);
  font-size: 14px;
}
.p-about__media .c-link-more { margin-top: 0; }

/* ------------------------------------------------------------
   12. 施工事例
   ------------------------------------------------------------ */
.c-work {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-work__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.c-work__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   13. お客様の声
   ------------------------------------------------------------ */
.c-voice {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-default);
}
.c-voice__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.c-voice__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px;
}
.c-voice__meta {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.c-voice__quote {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-900);
}
.c-voice__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
}
.c-voice .c-link-more { margin-top: 18px; font-size: 13px; }

/* ------------------------------------------------------------
   14. お役立ち情報
   ------------------------------------------------------------ */
.c-column {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-default);
  color: inherit;
  text-decoration: none;
}
.c-column__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.c-column__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px;
}
.c-column__cat {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.c-column__title {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-900);
}

/* ------------------------------------------------------------
   15. よくある質問
   ------------------------------------------------------------ */
.p-faq {
  max-width: 840px;
  margin-inline: auto;
}
.c-faq {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--border-default);
}
.c-faq__q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}
.c-faq__q::-webkit-details-marker { display: none; }
.c-faq__q::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  margin-left: auto;
  margin-top: 8px;
  border-right: 2px solid var(--navy-900);
  border-bottom: 2px solid var(--navy-900);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}
.c-faq[open] .c-faq__q::after { transform: rotate(-135deg); }

.c-faq__a {
  display: flex;
  gap: 14px;
  padding: 0 22px 24px;
  font-size: 14px;
  line-height: 1.9;
}
.c-faq__mark {
  flex: none;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-900);
  line-height: 1.6;
}
.c-faq__mark--a { color: var(--red-600); }

/* ------------------------------------------------------------
   16. SNS
   ------------------------------------------------------------ */
.p-sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.p-sns__title {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
}
.p-sns__box {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-default);
}
.p-sns__box--fb { min-height: 380px; }
.p-sns__post {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
  font-size: 14px;
  line-height: 1.8;
}
.p-sns__post:last-child { border-bottom: none; }
.p-sns__author {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.p-sns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.p-sns__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ------------------------------------------------------------
   17. お問い合わせ
   ------------------------------------------------------------ */
.p-contact {
  padding-block: 80px;
  background: var(--navy-900);
  color: #fff;
  text-align: center;
}
.p-contact__title {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.4;
}
.p-contact__lead {
  font-size: 15px;
  color: #d8e2e7;
}
.p-contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 40px auto 0;
}
.p-contact__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.p-contact__label {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.p-contact__tel {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-decoration: none;
}
.p-contact__note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.p-contact__card .c-btn { margin-top: 6px; }

/* ------------------------------------------------------------
   18. フッター
   ------------------------------------------------------------ */
.l-footer {
  padding: 64px 0 32px;
  background: var(--surface-footer);
  color: var(--footer-text);
  font-size: 14px;
}
.l-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.l-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.l-footer__logo { margin-bottom: 20px; line-height: 0; }
.l-footer__address { line-height: 1.9; }
.l-footer__sns {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.l-footer__nav-title {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.l-footer__list li { margin-bottom: 8px; line-height: 1.7; }

.l-footer__areas {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.c-area-acc__head {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.c-area-acc__head::-webkit-details-marker { display: none; }
.c-area-acc__head::before {
  content: "＋ ";
  color: var(--footer-text);
}
.c-area-acc[open] > .c-area-acc__head::before { content: "− "; }

.c-area-acc__body {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.c-area-acc__child > summary {
  color: var(--footer-text);
  cursor: pointer;
}
.c-area-acc__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  font-size: 13px;
}

.l-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  color: var(--footer-text-dim);
  line-height: 1.8;
}
.l-footer__bottom a { color: var(--footer-text-dim); }

/* ------------------------------------------------------------
   19. フローティング（LINE / 固定CTA / ページトップ）
   ------------------------------------------------------------ */
.c-line-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: var(--z-float);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  background: var(--line-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
}

/* SPのみ表示（responsive.css） */
.p-fixed-cta { display: none; }

.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: var(--z-float);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--navy-900);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}
.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------
   20. 印刷
   ------------------------------------------------------------ */
@media print {
  .l-header, .gnav, .c-line-btn, .p-fixed-cta, .c-pagetop, .p-hero__arrow, .p-hero__dots { display: none !important; }
  body { color: #000; }
  .l-section { padding-block: 24px; }
}

/* ------------------------------------------------------------
   21. よくある質問
   ------------------------------------------------------------ */
	.faqArea{
	}		
	.faqArea .indexList{
	 margin: 0px;
		padding: 0px;
		display: flex;
		flex-wrap: wrap;
		gap:20px;
	}
	.faqArea .indexList .btn{
	 width : -webkit-calc(20% - 16px) ;
   width : calc(20% - 16px) ;
	}
	.faqArea .indexList .btn a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-size: 2rem;
    background-color: #034059;
    color: white;
    box-shadow: 7px 7px 0px #ccc;
}
			