@charset "UTF-8";
/* ============================================================
   organ.css — 案件「Organ」テーマオーバーライド
   ベース：assets/css/style.css（05-craft 標準）
   方針：
   - メインコンテンツ基調を明色（オフホワイト）に反転
   - ホライゾングリーン #007a88 を「透明度を下げて重ねる」運用
   - 左固定ナビ／フッターは深めの色味（緑寄り）で世界観を保つ
   - クライアント世界観（自然・癒し・上質）に寄せる
   - 和文は明朝寄り（Noto Serif JP）
   - 装飾英文：Italianno（筆記体・優先 fallback Cormorant Garamond）
   ============================================================ */

/* ============================================================
   1. デザイントークン上書き
   ============================================================ */
:root {
  /* === ホライゾングリーン本体・透明度バリエーション === */
  --organ-horizon:        #007a88;
  --organ-horizon-90:     rgba(0, 122, 136, 0.9);
  --organ-horizon-80:     rgba(0, 122, 136, 0.8);
  --organ-horizon-60:     rgba(0, 122, 136, 0.6);
  --organ-horizon-40:     rgba(0, 122, 136, 0.4);
  --organ-horizon-20:     rgba(0, 122, 136, 0.2);
  --organ-horizon-10:     rgba(0, 122, 136, 0.1);
  --organ-horizon-deep:   #00525c;
  --organ-horizon-soft:   #4a9aa3;

  /* === メイン背景（オフホワイト・温かみ） === */
  --organ-bg:             #f7f4ee;
  --organ-bg-alt:         #ffffff;
  --organ-bg-soft:        #efe9df;

  /* === テキスト === */
  --organ-text:           #2d2a26;
  --organ-text-mute:      #6a6259;
  --organ-text-light:     #9a928a;

  /* === craft 変数を organ 用に再マッピング === */
  --craft-dark:           var(--organ-bg);
  --craft-darkBlue:       var(--organ-bg-alt);
  --craft-deepBlack:      #1f2d2e;        /* FV用の濃いベースは残す */
  --craft-olive:          var(--organ-horizon);
  --craft-oliveLight:     var(--organ-horizon-60);
  --craft-oliveMid:       var(--organ-horizon-deep);
  --craft-oliveSoft:      var(--organ-horizon-soft);
  --craft-beige:          var(--organ-bg-soft);
  --craft-grayLight:      #e9e4dc;
  --craft-grayMid:        var(--organ-text-mute);
  --craft-grayBorder:     #d8d2c7;
  --craft-textMute:       var(--organ-text-mute);
  --craft-overlay:        rgba(0, 82, 92, 0.35);

  /* === 役割エイリアス === */
  --color-accent:         var(--organ-horizon);
  --color-sub:            var(--organ-bg-soft);
  --color-body-bg:        var(--organ-bg);
  --color-text:           var(--organ-text);
  --color-text-mute:      var(--organ-text-mute);
  --color-section-alt:    var(--organ-horizon);
  --color-cta-bg:         var(--organ-horizon);
  --color-footer-bg:      #1f3a3d;        /* フッターは暗めの緑寄り */
  --color-footer-text:    #f7f4ee;
  --color-link:           var(--organ-horizon);
  --color-link-hover:     var(--organ-horizon-deep);
}

/* ============================================================
   2. body / 全体タイポグラフィ
   ============================================================ */
body {
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN", serif;
  font-weight: 400;
  color: var(--organ-text);
  background: var(--organ-bg);
  line-height: 1.9;
}

/* リンク基本色：本文中のテキストリンクは緑 */
a {
  color: inherit;
}

/* スクロール出現アニメは継承 */

/* ============================================================
   3. 左固定ナビ（PC）— 緑グラデで「organらしさ」を出す
   ============================================================ */
.bl_navFixed {
  background: linear-gradient(180deg,
    var(--organ-horizon) 0%,
    var(--organ-horizon-deep) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.bl_navFixed_logo img {
  filter: none;
  max-width: 140px;
  width: 100%;
  aspect-ratio: auto;
  height: auto;
}
.bl_navFixed_list a {
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}
.bl_navFixed_list a::after {
  background: #fff;
}
.bl_navFixed_list a:hover,
.bl_navFixed_list a.is-current {
  color: #fff;
  opacity: 0.85;
}
.bl_navFixed_list a:hover::after,
.bl_navFixed_list a.is-current::after {
  width: 100%;
  background: #fff;
}
.bl_navFixed_cta .el_btn--outline {
  background: #fff;
  border-color: #fff;
  color: var(--organ-horizon);
}
.bl_navFixed_cta .el_btn--outline:hover {
  background: #1f3a3d;
  border-color: #1f3a3d;
  color: #fff;
}

/* ============================================================
   4. モバイルナビ（上部ヘッダー）
   - PC（>896px）: 左固定ナビで完結するため、上部ヘッダーは完全に非表示
     ※craft標準の hp_sp-tab は 897-1240px のみ display:none で、
       ワイドPC（>1240px）では表示されてしまうバグを補正
   - TAB/SP（≤896px）: ホライゾングリーンの背景で表示
   ============================================================ */
@media screen and (min-width: 897px) {
  .bl_navMobile,
  .bl_navMobile_panel {
    display: none !important;
  }
}

.bl_navMobile {
  background: var(--organ-horizon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bl_navMobile_logo img {
  filter: none;
  aspect-ratio: auto;
  height: 40px;
  width: auto;
}
.bl_navMobile_burger span {
  background: #fff;
}
.bl_navMobile_panel {
  background: linear-gradient(180deg,
    var(--organ-horizon) 0%,
    var(--organ-horizon-deep) 100%);
}
.bl_navMobile_panel a {
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}
.bl_navMobile_panel a::after {
  background: #fff;
}
.bl_navMobile_panel a:hover,
.bl_navMobile_panel a.is-current {
  color: #fff;
}

/* ============================================================
   5. メインコンテンツ — 明色基調へ反転
   ============================================================ */
.ly_main {
  background: var(--organ-bg);
}

/* 見出し（英文・装飾）— 本文上では緑、暗背景上では白 */
.bl_heading_en {
  color: var(--organ-text);
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
}
.bl_heading_en em {
  font-family: "Italianno", "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 400;
  color: var(--organ-horizon);
  font-size: 1.4em;
  letter-spacing: 0;
}
.bl_heading_sub {
  color: var(--organ-horizon);
}
.bl_heading_sub::before,
.bl_heading_sub::after {
  background: var(--organ-horizon);
}

/* ラベル（Pick Up / Point など） */
.bl_label {
  color: var(--organ-horizon);
  background: #fff;
  border: 1px solid var(--organ-horizon);
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}

/* ============================================================
   6. FV — 写真主体・半透明グリーン帯
   ============================================================ */
.bl_fv-craft {
  background: var(--organ-horizon-deep);
}
.bl_fv-craft_overlay {
  /* 黒オーバーレイ → 緑のソフトオーバーレイ */
  background: linear-gradient(180deg,
    rgba(0, 82, 92, 0.25) 0%,
    rgba(0, 82, 92, 0.5) 100%);
  /* スライドショー画像より前面に */
  z-index: 2;
}

/* ============================================================
   6-B. FV スライドショー(index.html FV専用)
   3枚画像をゆったりクロスフェードで切替。
   合計21秒で1巡 / 各画像7秒（うちフェード約1.7秒）。
   ============================================================ */
.bl_fv-craft_bg--slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: bl_fv-organ_slide 21s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.bl_fv-craft_bg--slider img:nth-of-type(1) { animation-delay:  0s; }
.bl_fv-craft_bg--slider img:nth-of-type(2) { animation-delay:  7s; }
.bl_fv-craft_bg--slider img:nth-of-type(3) { animation-delay: 14s; }

@keyframes bl_fv-organ_slide {
  0%   { opacity: 0; transform: scale(1.06); }
  8%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1); }
  41%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.06); }
}

/* スライドショー使用時は craft 標準の bl_fv-craft_zoom を無効化 */
.bl_fv-craft_bg--slider img {
  animation-name: bl_fv-organ_slide;
}

@media (prefers-reduced-motion: reduce) {
  .bl_fv-craft_bg--slider img {
    animation: none;
    opacity: 1;
  }
  /* 最初の1枚だけ表示 */
  .bl_fv-craft_bg--slider img:not(:first-of-type) {
    opacity: 0;
  }
}
.bl_fv-craft_logo {
  /* PCで適切なサイズに（craft標準の 70% / 480px は仮ロゴの正方形には大きすぎる） */
  max-width: 280px;
  width: 50%;
}
@media screen and (max-width: 896px) {
  .bl_fv-craft_logo {
    max-width: 220px;
    width: 60%;
  }
}
.bl_fv-craft_logo img {
  filter: none;
  aspect-ratio: auto;
  width: 100%;
  height: auto;
}
.bl_fv-craft_catch {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  letter-spacing: 0.18em;
  /* 末尾「。」の右側余白を視覚補正するため、約0.5文字分右へずらす */
  padding-left: 1em;
}
.bl_fv-craft_subcatch {
  margin-top: 1.5rem;
  font-family: "Italianno", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: bl_fv-craft_fadeIn 1.4s ease 1.1s forwards;
}

/* ============================================================
   7. Pick Up / Voice カード — 白カード + 影
   ============================================================ */
.bl_pickup_card,
.bl_customerVoice_card {
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  box-shadow: 0 2px 12px rgba(0, 82, 92, 0.04);
}
.bl_pickup_card:hover,
.bl_customerVoice_card:hover {
  box-shadow: 0 12px 32px rgba(0, 82, 92, 0.12);
}
.bl_pickup_card > a,
.bl_customerVoice_card > a {
  color: var(--organ-text);
}
.bl_pickup_ttl,
.bl_customerVoice_card .bl_pickup_ttl {
  color: var(--organ-text);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
}
.bl_pickup_meta {
  color: var(--organ-text-mute);
  font-family: "Cormorant Garamond", "Playfair Display", serif;
}
.bl_pickup_more,
.bl_customerVoice_more {
  color: var(--organ-horizon);
}
.bl_pickup_more:hover,
.bl_customerVoice_more:hover {
  color: var(--organ-horizon-deep);
}

/* ============================================================
   8. Point（左右カード）— 白カードに影
   ============================================================ */
.bl_point_body {
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  box-shadow: 0 8px 24px rgba(0, 82, 92, 0.08);
}
.bl_point_ttl {
  color: var(--organ-text);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
}
.bl_point_text {
  color: var(--organ-text);
}

/* ============================================================
   9. About セクション — テキスト色を本文色に
   ============================================================ */
.bl_about-craft_lead {
  color: var(--organ-text);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
}
.bl_about-craft_text {
  color: var(--organ-text);
}

/* ============================================================
   10. Quick Links — 緑半透明オーバーレイで世界観統一
   ============================================================ */
.bl_quickLinks_item::before {
  background: var(--organ-horizon-60);
}
.bl_quickLinks_item:hover::before {
  background: var(--organ-horizon-40);
}
.bl_quickLinks_label::after {
  background: #fff;
}

/* ============================================================
   11. Customer Voice セクション全体 — 緑透過背景
   ============================================================ */
.bl_customerVoice {
  background:
    linear-gradient(135deg, var(--organ-horizon-20), var(--organ-horizon-10));
}
.bl_customerVoice .bl_heading_en {
  color: var(--organ-horizon-deep);
}

/* ============================================================
   12. CTA バー — 緑グラデーション（電話表示はLINE誘導に転用）
   ============================================================ */
.bl_cta-craft {
  background: linear-gradient(135deg,
    var(--organ-horizon) 0%,
    var(--organ-horizon-deep) 100%);
  border-top: none;
  border-bottom: none;
}
.bl_cta-craft_label {
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", serif;
}
.bl_cta-craft_number {
  /* LINE誘導サブテキスト用に再利用 */
  font-family: "Italianno", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.bl_cta-craft_hours {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Noto Serif JP", "游明朝", serif;
}
.bl_cta-craft .el_btn--outline {
  border-color: #fff;
  color: var(--organ-horizon-deep);
  background: #fff;
}
.bl_cta-craft .el_btn--outline:hover {
  background: #1f3a3d;
  border-color: #1f3a3d;
  color: #fff;
}

/* ============================================================
   13. KV（下層ページ）— 緑半透明オーバーレイ
   ============================================================ */
.bl_kv-craft {
  background: var(--organ-horizon-deep);
}
.bl_kv-craft_overlay {
  /* メインカラー(#007a88)の半透明をやや濃いめに。
     明るい背景画像でも白文字が読みやすいよう、トップFVより強めに重ねる。 */
  background: linear-gradient(180deg,
    rgba(0, 122, 136, 0.55) 0%,
    rgba(0, 82, 92, 0.75) 100%) !important;
}
.bl_kv-craft_ttl,
.bl_kv-craft h1 {
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 16px rgba(0, 40, 50, 0.35);
}
.bl_kv-craft_sub {
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 40, 50, 0.3);
}

/* ============================================================
   14. ボタン — 緑アウトライン基本
   ============================================================ */
.el_btn--outline {
  border-color: var(--organ-horizon);
  color: var(--organ-horizon);
  background: transparent;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 0.15em;
}
.el_btn--outline:hover {
  background: var(--organ-horizon);
  color: #fff;
}

/* LINE誘導大型ボタン（CONTACT専用） */
.el_btn--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  min-width: 280px;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg,
    var(--organ-horizon) 0%,
    var(--organ-horizon-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(0, 82, 92, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.el_btn--line:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 82, 92, 0.35);
  color: #fff;
}
.el_btn--line i {
  font-size: 1.4em;
}

/* ============================================================
   15. フッター — 暗めの緑寄り
   ============================================================ */
.bl_footer-craft {
  background: var(--color-footer-bg);
  border-top: none;
}
.bl_footer-craft_logo img {
  filter: none;
  aspect-ratio: auto;
  max-width: 100px;
  height: auto;
}
.bl_footer-craft_nav a {
  color: var(--color-footer-text);
}
.bl_footer-craft_nav a:hover {
  color: #fff;
  opacity: 0.85;
}
.bl_footer-craft_social a {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-footer-text);
}
.bl_footer-craft_social a:hover {
  background: var(--organ-horizon);
  border-color: var(--organ-horizon);
  color: #fff;
}
.bl_footer-craft_copyright {
  color: rgba(255, 255, 255, 0.65);
}

/* PC(>896px): 左固定ナビ(220px)の分、視覚的に左寄りに見えるため、
   フッター各要素を画面右端に揃える。
   - max-width を解除して画面いっぱいに広げ、右端 padding(4%) 基準で配置 */
@media screen and (min-width: 897px) {
  .bl_footer-craft_inner {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4%;
    padding-right: 4%;
    align-items: flex-end;
  }
  .bl_footer-craft_logo {
    text-align: right;
  }
  .bl_footer-craft_nav {
    justify-content: flex-end;
  }
  .bl_footer-craft_social {
    justify-content: flex-end;
  }
  .bl_footer-craft_copyright {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4%;
    padding-right: 4%;
    text-align: right;
  }
}

/* ============================================================
   16. 共通テキスト調整
   ============================================================ */
.bl_message,
.bl_text {
  color: var(--organ-text);
}
.bl_message_text {
  color: var(--organ-text);
  font-family: "Noto Serif JP", "游明朝", serif;
}

/* お客様の声・カード詳細用テキスト */
.bl_newsList_item,
.bl_newsList_link {
  color: var(--organ-text);
}

/* ============================================================
   17. organ 固有：For You / Step / Strength セクション
   ============================================================ */
/* For You — おすすめ条件カードグリッド */
.bl_forYou {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 896px) {
  .bl_forYou {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 479px) {
  .bl_forYou {
    grid-template-columns: 1fr;
  }
}
.bl_forYou_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  border-left: 3px solid var(--organ-horizon);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--organ-text);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bl_forYou_item:hover {
  box-shadow: 0 8px 20px rgba(0, 82, 92, 0.1);
  transform: translateY(-2px);
}
.bl_forYou_item::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--organ-horizon);
}

/* Step — 施術の流れ */
.bl_step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 896px) {
  .bl_step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.bl_step_item {
  position: relative;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  box-shadow: 0 4px 16px rgba(0, 82, 92, 0.06);
  text-align: center;
}
.bl_step_num {
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--organ-horizon);
  padding: 0.3em 1em;
  border: 1px solid var(--organ-horizon);
}
.bl_step_time {
  margin-top: 1rem;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--organ-horizon);
  line-height: 1.2;
}
.bl_step_ttl {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--organ-text);
}
.bl_step_text {
  margin-top: 1rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--organ-text);
  text-align: left;
}

/* Price — 料金 */
.bl_price {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  padding: 3rem 3.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--organ-horizon-20);
  box-shadow: 0 12px 30px rgba(0, 82, 92, 0.08);
}
@media screen and (max-width: 896px) {
  .bl_price {
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 479px) {
  .bl_price {
    padding: 2rem 1.5rem;
  }
}
.bl_price_head {
  text-align: center;
}
.bl_price_ttl {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--organ-text);
}
.bl_price_ttl::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 1rem auto 0;
  background: var(--organ-horizon);
}
.bl_price_lead {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--organ-text);
}
.bl_price_list {
  margin-top: 2rem;
}
.bl_price_item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-top: 1px solid var(--organ-horizon-20);
}
.bl_price_item:last-child {
  border-bottom: 1px solid var(--organ-horizon-20);
}
.bl_price_item dt {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--organ-text);
}
.bl_price_item dd {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  color: var(--organ-horizon);
  white-space: nowrap;
}
.bl_price_note {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--organ-text);
  text-align: right;
}
@media screen and (max-width: 479px) {
  .bl_price_item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .bl_price_item dd {
    font-size: 1.45rem;
  }
  .bl_price_note {
    text-align: left;
  }
}

/* Strength — organの強み */
.bl_strength {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .bl_strength {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.bl_strength_item {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  box-shadow: 0 4px 16px rgba(0, 82, 92, 0.06);
}
.bl_strength_num {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--organ-horizon);
}
.bl_strength_ttl {
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--organ-horizon-20);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--organ-text);
}
.bl_strength_text {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--organ-text);
}

/* 代表挨拶 ブロック */
.bl_representative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 896px) {
  .bl_representative {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.bl_representative_img {
  position: relative;
}
.bl_representative_img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.bl_representative_img::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--organ-horizon-40);
  z-index: -1;
}
.bl_representative_catch {
  font-family: "Italianno", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--organ-horizon);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.bl_representative_quote {
  margin-top: 1rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--organ-horizon);
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--organ-text);
}
.bl_representative_name {
  margin-top: 1.25rem;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--organ-text);
}
.bl_representative_name span {
  display: block;
  margin-top: 0.25rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--organ-text-mute);
  letter-spacing: 0.08em;
}
.bl_representative_text {
  margin-top: 2rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--organ-text);
}
.bl_representative_text p + p {
  margin-top: 1.25rem;
}

/* 資格リスト */
.bl_qualifications {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  /* margin-top は mt-XX utility に任せる。左右だけ auto で中央寄せ */
  margin-left: auto;
  margin-right: auto;
}
.bl_qualifications li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  font-family: "Noto Serif JP", "游明朝", serif;
  color: var(--organ-text);
}
.bl_qualifications li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--organ-horizon);
  flex: 0 0 auto;
}

/* 店舗情報 dl */
.bl_storeInfo {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bl_storeInfo_row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--organ-bg-soft);
  font-family: "Noto Serif JP", "游明朝", serif;
  color: var(--organ-text);
}
@media screen and (max-width: 479px) {
  .bl_storeInfo_row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.bl_storeInfo_term {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--organ-horizon-deep);
}
.bl_storeInfo_desc {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
}
.bl_storeInfo_desc a {
  color: var(--organ-horizon);
  border-bottom: 1px solid var(--organ-horizon-40);
}
.bl_storeInfo_desc a:hover {
  color: var(--organ-horizon-deep);
}

/* ============================================================
   18. NEWS / VOICE 一覧（リスト形式）
   ============================================================ */
.bl_newsList {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.bl_newsList_item {
  border-bottom: 1px solid var(--organ-bg-soft);
}
.bl_newsList_link {
  display: grid;
  grid-template-columns: 130px 110px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  color: var(--organ-text);
  transition: background 0.3s ease;
}
@media screen and (max-width: 896px) {
  .bl_newsList_link {
    grid-template-columns: 110px 100px 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .bl_newsList_link {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.25rem 0.5rem;
  }
}
.bl_newsList_link:hover {
  background: rgba(0, 122, 136, 0.04);
  color: var(--organ-text);
}
.bl_newsList_date {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--organ-text-mute);
}
.bl_newsList_label {
  display: inline-block;
  text-align: center;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.3em 0.8em;
  color: var(--organ-horizon);
  border: 1px solid var(--organ-horizon);
  background: #fff;
  width: fit-content;
}
.bl_newsList_ttl {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--organ-text);
}

/* ページネーション */
.bl_pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.bl_pagination a,
.bl_pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--organ-text);
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bl_pagination a:hover,
.bl_pagination .is-current {
  background: var(--organ-horizon);
  color: #fff;
  border-color: var(--organ-horizon);
}

/* ============================================================
   19. NEWS / VOICE 詳細
   ============================================================ */
.bl_article {
  max-width: 800px;
  margin: 0 auto;
}
.bl_article_meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bl_article_date {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--organ-text-mute);
}
.bl_article_ttl {
  margin-top: 1rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.6;
  color: var(--organ-text);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--organ-bg-soft);
}
.bl_article_body {
  margin-top: 2rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--organ-text);
}
.bl_article_body p + p {
  margin-top: 1.5rem;
}
.bl_article_body h3 {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--organ-horizon-deep);
  padding-left: 0.75rem;
  border-left: 3px solid var(--organ-horizon);
}
.bl_article_note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 122, 136, 0.06);
  font-size: 0.85rem;
  color: var(--organ-text-mute);
  line-height: 1.7;
}
.bl_article_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--organ-bg-soft);
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.bl_article_nav a {
  color: var(--organ-horizon);
}
.bl_article_nav a:hover {
  color: var(--organ-horizon-deep);
}
.bl_article_nav .is-disabled {
  color: var(--organ-text-light);
  pointer-events: none;
}

/* ============================================================
   20. CONTACT — LINE誘導専用ブロック
   ============================================================ */
.bl_contactHero {
  text-align: center;
  padding: 4rem 0;
  background:
    linear-gradient(135deg, var(--organ-horizon-10), var(--organ-horizon-20));
  border: 1px solid var(--organ-bg-soft);
}
@media screen and (max-width: 479px) {
  .bl_contactHero {
    padding: 3rem 1.5rem;
  }
}
.bl_contactHero_lead {
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--organ-text);
}
.bl_contactHero_btn {
  margin-top: 2rem;
}
.bl_contactHero_sub {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-size: 0.85rem;
  color: var(--organ-text-mute);
}

.bl_lineFlow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: lineflow;
}
@media screen and (max-width: 896px) {
  .bl_lineFlow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 479px) {
  .bl_lineFlow {
    grid-template-columns: 1fr;
  }
}
.bl_lineFlow_item {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--organ-bg-soft);
}
.bl_lineFlow_num {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--organ-horizon);
}
.bl_lineFlow_ttl {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--organ-text);
}
.bl_lineFlow_text {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--organ-text);
}
.bl_lineFlow_note {
  margin-top: 0.6rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--organ-text-mute);
}

/* ============================================================
   21. privacy 用シンプルテキスト
   ============================================================ */
.bl_privacy {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Serif JP", "游明朝", serif;
  color: var(--organ-text);
  line-height: 2;
}
.bl_privacy h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--organ-bg-soft);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--organ-horizon-deep);
}
.bl_privacy h2:first-child {
  margin-top: 0;
}
.bl_privacy p {
  margin-top: 1.25rem;
}
.bl_privacy ol {
  margin-top: 1.25rem;
  padding-left: 1.5rem;
  list-style: decimal;
}
.bl_privacy ol li {
  margin-top: 0.5rem;
}
.bl_privacy_meta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--organ-text-mute);
  text-align: right;
}

/* ============================================================
   22. Google Map iframe
   ============================================================ */
.bl_map {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--organ-bg-soft);
}
.bl_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   23. セクションのリード見出し（共通）
   ============================================================ */
.bl_sectionHead {
  text-align: center;
}
.bl_sectionHead .bl_heading_en {
  display: block;
}
.bl_sectionHead_jp {
  margin-top: 1rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  letter-spacing: 0.15em;
  color: var(--organ-text);
}

/* ============================================================
   24. リードテキスト（service / about などの大見出し近く）
   ============================================================ */
.bl_lead {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.bl_lead_ttl {
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.9;
  color: var(--organ-text);
}
.bl_lead_text {
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--organ-text);
  text-align: left;
}
.bl_lead_text p + p {
  margin-top: 1.25rem;
}

/* ============================================================
   25. レイアウト微調整
   ============================================================ */
/* KVと最初のセクションの間隔（craft標準はmt-200だが、SP時の最初のセクションは少し詰める） */
@media screen and (max-width: 479px) {
  .ly_main > section:first-of-type ~ section.bl_container.mt-200 {
    margin-top: calc(7rem * var(--spacing-scale));
  }
}

/* About-craft ギャラリーは、ロゴが横長PNGなので調整 */
.bl_about-craft_gallery img {
  aspect-ratio: auto;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bl_fv-craft_bg img,
  .bl_fv-craft_logo,
  .bl_fv-craft_catch,
  .bl_fv-craft_subcatch {
    animation: none !important;
    opacity: 1 !important;
  }
}
