/* ==========================================================================
   style.css — 宇都宮福祉葬儀 LP
   モダン・シンプルリデザイン版
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS カスタムプロパティ（デザイントークン）
   -------------------------------------------------------------------------- */
:root {
  /* カラー */
  --color-primary:       #0f7a5a;   /* メインブランドグリーン */
  --color-primary-dark:  #0a5e44;   /* ホバー時 */
  --color-primary-light: #e6f4ef;   /* 薄いグリーン背景 */
  --color-accent:        #e63946;   /* CTAレッド */
  --color-accent-dark:   #c1121f;

  --color-text:          #1a1a1a;   /* 本文 */
  --color-text-sub:      #555;      /* 補足テキスト */
  --color-border:        #d8d8d8;
  --color-bg:            #fff;
  --color-bg-gray:       #f6f6f6;
  --color-bg-warm:       #f8f4ee;
  --color-highlight:     #f5d000;   /* 見出しアクセントライン（黄色） */

  /* タイポグラフィ */
  --font-size-xs:   13px;
  --font-size-sm:   15px;
  --font-size-base: 17px;
  --font-size-md:   20px;
  --font-size-lg:   24px;
  --font-size-xl:   30px;
  --font-size-2xl:  38px;
  --font-size-3xl:  48px;

  /* 行間 */
  --line-height-tight:  1.4;
  --line-height-normal: 1.7;
  --line-height-loose:  1.9;

  /* 余白 */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  100px;

  /* ボーダー半径 */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;

  /* コンテナ幅 */
  --container-width: 900px;

  /* トランジション */
  --transition: 0.2s ease;
}


/* --------------------------------------------------------------------------
   ユーティリティ
   -------------------------------------------------------------------------- */
.sp  { display: none; }
.pc  { display: block; }

/* drawer-hamburger の PC/SP 表示制御は drawer.css 末尾で定義 */
.humtex {
  white-space: nowrap;
  font-size: 10px;
  color: #fff;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.align_left   { text-align: left; }
.align_right  { text-align: right; }
.align_center { margin: 0 auto; text-align: center; }


/* --------------------------------------------------------------------------
   カスタムフォント
   -------------------------------------------------------------------------- */
@font-face {
  font-family: w3;
  src: url(../font/hirakakupro-w3.woff);
  font-display: swap;
}
@font-face {
  font-family: w6;
  src: url(../font/hirakakupro-w6.woff);
  font-display: swap;
}
@font-face {
  font-family: maru8;
  src: url(../font/HeiseiMaruGoStd-W8.woff);
  font-display: swap;
}
.w3    { font-family: w3; }
.w6    { font-family: w6; }
.maru8 { font-family: maru8; }


/* --------------------------------------------------------------------------
   セクション見出し
   -------------------------------------------------------------------------- */
h2.subtit {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: var(--line-height-tight);
  border-left: 10px solid var(--color-highlight);
  padding: 4px 0 6px 16px;
  margin-bottom: var(--space-md);
  text-align: left;
  color: var(--color-text);
}

h3.subtit02 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--line-height-tight);
  padding: 10px 0 10px 0;
  margin-bottom: var(--space-md);
  border-bottom: 4px solid var(--color-border);
  position: relative;
}
h3.subtit02::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20%;
  border-bottom: 4px solid var(--color-highlight);
}

h3.subtit03 {
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
  padding: 10px 0;
  margin-bottom: var(--space-md);
  border-bottom: 4px solid var(--color-border);
  position: relative;
}
h3.subtit03::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20%;
  border-bottom: 4px solid var(--color-highlight);
}

h3.subtit04 {
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-tight);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 4px solid var(--color-border);
  position: relative;
}
h3.subtit04::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20%;
  border-bottom: 4px solid var(--color-highlight);
}

.subtit05 { font-size: var(--font-size-xs); }

#point .lead + .subtit02 { margin-top: 80px; }


/* --------------------------------------------------------------------------
   テキストアニメーション
   -------------------------------------------------------------------------- */
.Text-Span {
  position: relative;
  z-index: 1;
}
.Text-Span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 4px;
  background: var(--color-highlight);
  z-index: -1;
  transition: width 1.1s ease;
}
.Text-Span.isActive::after { width: 100%; }


/* --------------------------------------------------------------------------
   オーバーレイ
   -------------------------------------------------------------------------- */
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: fixed;
  z-index: 1;
}
.btn_area {
  width: 400px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  z-index: 2;
  border-radius: var(--radius-sm);
}
.btn_area .ttl { font-weight: bold; }
.btn_area p { padding: 15px; }
.btn_area button {
  display: block;
  margin: 0 auto;
  background: #333;
  color: #fff;
  padding: 20px 40px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.btn_area button:hover { background: #666; }


/* --------------------------------------------------------------------------
   ポップアップ
   -------------------------------------------------------------------------- */
.bg_onetime_popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.bg_onetime_popup.js_active {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  min-width: 800px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.onetime_popup_close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  z-index: 1;
  padding: 4px 8px;
}
.onetime_popup_close:hover {
  color: #333;
}

.onetime_popup_title {
  padding: 28px var(--space-lg);
  background: var(--color-bg-gray);
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

.onetime_popup_content {
  padding: 48px var(--space-md);
  text-align: center;
}

.popup_reception {
  width: 560px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  border: none;
  display: flex;
  flex-direction: column;
  margin: 40px auto 0;
  cursor: inherit;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  padding: 22px 0 26px;
  background-image: url(../images/icon_contactmod_arrow.png?v2);
  background-position: right 20px center;
  background-repeat: no-repeat;
  transition: background-color var(--transition);
}
.popup_reception:hover { background-color: var(--color-primary-dark); }

.popup_reception .tx01 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-align: center;
  padding-bottom: 16px;
}
.popup_reception .tx02 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-align: center;
}


/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */
header {
  width: var(--container-width);
  height: 90px;
  margin: 0 auto;
}
header h1 { margin: 20px 0 0 14px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 10px 12px;
}

.site-logo { margin: 0; }
.site-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.header-company-link {
  font-size: var(--font-size-sm);
  text-decoration: underline;
  white-space: nowrap;
  color: var(--color-text-sub);
  transition: color var(--transition);
}
.header-company-link:hover { color: var(--color-primary); }


/* --------------------------------------------------------------------------
   アドバー（施設名バー）
   -------------------------------------------------------------------------- */
#addbar {
  width: 100%;
  min-width: 1000px;
  height: 80px;
  display: flex;
  flex-direction: row;
}
#addbar .left {
  width: 50%;
  height: 100%;
  background: var(--color-primary);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#addbar .left h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 3px;
}
#addbar .left h2 b {
  font-size: 52px;
  font-weight: 700;
  margin: 0 10px 0 20px;
}
#addbar .left h2 span {
  font-size: 22px;
  margin: 0 70px 0 0;
  font-weight: 600;
}

#addbar .right {
  width: 50%;
  height: 100%;
  background: var(--color-primary-dark);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#addbar .right p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  margin-left: 36px;
}


/* --------------------------------------------------------------------------
   メインビジュアル
   -------------------------------------------------------------------------- */
#mainv {
  width: 100%;
  height: 430px;
  display: flex;
  background-image: url(../images/mainv.jpg?v2);
  background-position: center center;
  background-size: cover;
  align-items: flex-end;
}
#mainv img { width: 100%; height: auto; }

#mainv_uji {
  width: 100%;
  height: 400px;
  display: flex;
  background-image: url(../images/img_main_uji.jpg);
  background-position: center center;
  background-size: cover;
  align-items: flex-end;
}
#mainv_uji img { width: 100%; height: auto; }

#main_bottom {
  width: 100%;
  background: var(--color-bg-gray);
  padding: 0;
}
#main_bottom .pc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#main_bottom .pc .reception02 { margin-top: -330px; }
#main_bottom .sp a { margin-top: -234px; }


/* --------------------------------------------------------------------------
   受付ボタン群（reception02 / reception02b）
   -------------------------------------------------------------------------- */

/* --- 共通ベース --- */
.reception02,
.reception02b {
  background-color: var(--color-accent);
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  cursor: inherit;
}

/* MV右オーバーラップ型 */
.reception02 {
  width: 40%;
  padding: 22px 0 10px;
  background-image: url(../images/icon_mv.png);
  background-position: left 20px top 22px;
  background-repeat: no-repeat;
}

/* ポップアップ型 */
.reception02b {
  width: 560px;
  margin: 0 auto;
  padding: 22px 0 10px;
  background-image: url(../images/icon_mv.png);
  background-position: left 20px top 22px;
  background-repeat: no-repeat;
}

/* 共通：上部テキスト */
.reception02 .up,
.reception02b .up {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.reception02 .up .tx01,
.reception02b .up .tx01 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  padding-bottom: 22px;
}
.reception02 .up .tx01 b,
.reception02b .up .tx01 b {
  font-weight: 700;
  margin-right: 6px;
}
.reception02 .up .tx02 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  padding: 0 0 22px 110px;
}
.reception02b .up .tx02 {
  font-size: 26px;
  color: #fff;
  text-align: center;
  padding: 0 0 22px 110px;
}
.reception02 .up .tx02 b,
.reception02b .up .tx02 b {
  font-size: 28px;
  font-weight: 700;
  margin-right: 6px;
}

/* 共通：電話番号エリア */
.reception02 .bottom,
.reception02b .bottom {
  background: #fff;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: row;
  color: var(--color-text);
  width: 94%;
  height: 80px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-weight: 700;
}
.reception02 .bottom .dial,
.reception02b .bottom .dial {
  font-size: 16px;
  line-height: 1.5;
  margin-right: 32px;
  font-weight: 700;
}
.reception02 .bottom .tel {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
}
.reception02b .bottom .tel {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 2px;
}


/* --------------------------------------------------------------------------
   通常の受付ボタン（.reception）
   -------------------------------------------------------------------------- */
.reception {
  width: 560px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  margin: 48px auto 56px;
  border: 3px solid var(--color-accent);
  text-decoration: none;
  line-height: 1;
}
.reception .up {
  height: 140px;
  width: 100%;
  background: #fff;
  border-radius: 14px 14px 0 0;
  background-image: url(../images/icon_24_top.png);
  background-repeat: no-repeat;
  background-position: left 32px center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reception .up .tx01 {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  padding: 0 0 12px 20px;
}
.reception .up .tel {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 10px;
  text-align: center;
  display: flex;
  align-items: center;
}
.reception .up .tel::before {
  content: url(../images/icon_phone_top.png);
  margin: 0 14px 0 0;
}
.reception p.bottom {
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
}


/* --------------------------------------------------------------------------
   受付ボタン・中段（reception03）
   -------------------------------------------------------------------------- */
.reception03 {
  width: 600px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  margin: 0 auto 28px;
  text-decoration: none;
  line-height: 1;
  padding: 20px 0 28px;
}
.reception03 time {
  background: #fff;
  font-size: 24px;
  color: var(--color-text);
  padding: 10px 0;
  width: 94%;
  margin: 0 auto 30px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.reception03 time div { margin-right: 14px; }
.reception03 .tx01 {
  color: #fff;
  font-size: 36px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 28px;
}
.reception03 .tel {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 34px;
  justify-content: center;
}
.reception03 .tel::before {
  content: url(../images/icon_24.png);
  margin: 0 18px 0 0;
}


/* --------------------------------------------------------------------------
   受付ボタン・フロー内（reception_flow）
   -------------------------------------------------------------------------- */
.reception_flow {
  width: 520px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  margin: 10px auto 18px;
  text-decoration: none;
  line-height: 1;
  padding: 18px 0;
  color: #fff;
  text-align: center;
}
.reception_flow div {
  background: #fff;
  font-size: 20px;
  color: var(--color-text);
  padding: 12px 0;
  width: 94%;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.reception_flow .tx01 { font-size: 24px; padding-bottom: 18px; }
.reception_flow .tx01 b { font-size: 32px; font-weight: 700; }
.reception_flow .tel {
  font-size: 34px;
  font-weight: 700;
  display: flex;
  margin: 0 auto;
  align-items: center;
}
.reception_flow .tel::before {
  content: url(../images/icon_24.png);
  margin: 0 18px 0 0;
}


/* --------------------------------------------------------------------------
   受付ボタン（reception04）
   -------------------------------------------------------------------------- */
.reception04 {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  text-decoration: none;
  line-height: 1;
  padding: 28px 0;
}
.reception04 .tx01 { font-size: 24px; padding-bottom: 28px; letter-spacing: 2px; }
.reception04 .tx01 b { font-size: 32px; font-weight: 700; }
.reception04 .tx02 {
  font-size: 34px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}
.reception04 .tx02::before { content: url(../images/icon_24.png); margin: 0 18px 0 0; }
.reception04 .tx03 { font-size: 22px; font-weight: 700; padding-bottom: 18px; letter-spacing: 2px; }
.reception04 .tx04 { font-size: 32px; padding-bottom: 22px; font-weight: 700; }


/* --------------------------------------------------------------------------
   受付ボタン（reception05）メール系
   -------------------------------------------------------------------------- */
.reception05 {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 56px auto 18px;
  text-decoration: none;
  line-height: 1;
  padding: 42px 0;
  background-image: url(../images/icon_contactmod_mail.png), url(../images/icon_contactmod_arrow.png?v2);
  background-position: left 46px center, right 36px center;
  background-repeat: no-repeat, no-repeat;
  transition: background-color var(--transition);
}
.reception05:hover { background-color: var(--color-primary-dark); }
.reception05 .tx01 { font-size: 24px; padding-bottom: 18px; letter-spacing: 2px; font-weight: 700; }
.reception05 .tx02 { font-size: 32px; font-weight: 700; }
.reception05 .tx03 { font-size: 32px; font-weight: 700; padding-bottom: 18px; }
.reception05 .tx04 { font-size: 24px; letter-spacing: 2px; font-weight: 700; }


/* --------------------------------------------------------------------------
   他斎場受付ボタン（reception_others）
   -------------------------------------------------------------------------- */
.reception_others {
  width: 400px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  margin: 10px auto 36px;
  text-decoration: none;
  line-height: 1;
  padding: 14px 0 22px;
  color: #fff;
  text-align: center;
}
.reception_others div {
  background: #fff;
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--color-text);
  padding: 6px 0;
  width: 94%;
  margin: 0 auto 22px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.reception_others div p { display: flex; align-items: center; }
.reception_others div p::before { content: url(../images/icon_24_other.png); margin: 0 14px 0 0; }
.reception_others .tx01 { font-size: 30px; padding-bottom: 18px; font-weight: 700; }
.reception_others .tel {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  margin: 0 auto;
  align-items: center;
}
.reception_others .tel::before { content: url(../images/icon_24_phone.png); margin: 0 18px 0 0; }


/* --------------------------------------------------------------------------
   リードセクション
   -------------------------------------------------------------------------- */
#lead {
  width: 100%;
  background: var(--color-bg);
  padding: var(--space-xl) 0;
}
#lead .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#lead .inner p {
  width: 880px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
  font-size: var(--font-size-lg);
}

/* リード文スタイル */
.lead {
  font-size: var(--font-size-md);
  line-height: var(--line-height-loose);
  margin: 14px 0 0;
  letter-spacing: 0.02em;
}
.lead-media {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.lead-media__img {
  width: 30%;
  height: auto;
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
  display: block;
}
.lead-media__text {
  display: block;
  flex: 1 1 auto;
}


/* --------------------------------------------------------------------------
   お問い合わせモジュール（#contactmod_01）
   -------------------------------------------------------------------------- */
#contactmod_01 {
  width: 100%;
  background: var(--color-bg-gray);
  padding: 40px 0 64px;
}


/* --------------------------------------------------------------------------
   スタッフ吹き出し
   -------------------------------------------------------------------------- */
.staff_fukidashi,
.staff_fukidashi2 {
  width: 440px;
  height: 125px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: left center;
}
.staff_fukidashi  { background-image: url(../images/staff_fukidashi.png?v2); }
.staff_fukidashi2 { background-image: url(../images/staff_fukidashi2.png?v2); }

.staff_fukidashi .tx01,
.staff_fukidashi2 .tx01 {
  font-size: 20px;
  padding-bottom: 28px;
  margin-left: 150px;
  padding-top: 10px;
}
.staff_fukidashi .tx02,
.staff_fukidashi2 .tx02 {
  font-size: 20px;
  margin-left: 150px;
}
.staff_fukidashi .tx02 b,
.staff_fukidashi2 .tx02 b {
  font-weight: 700;
  font-size: 120%;
  padding: 0 4px;
}

.staff_caution {
  width: 580px;
  height: 135px;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url(../images/staff_fukidashi.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.staff_caution p {
  width: 380px;
  padding-top: 28px;
  margin-left: 150px;
  line-height: var(--line-height-normal);
  font-size: var(--font-size-md);
}


/* --------------------------------------------------------------------------
   ポイントセクション
   -------------------------------------------------------------------------- */
#point {
  width: 100%;
  background: var(--color-bg);
  padding: var(--space-xl) 0;
}
#point .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#point .inner ul {
  margin: 10px 0 80px 36px;
  list-style: none;
}
#point .inner ul li {
  font-size: 20px;
  line-height: var(--line-height-normal);
  padding: 4px 0 6px;
  position: relative;
}
#point .inner ul li::after {
  content: '';
  display: block;
  position: absolute;
  top: 0.8em;
  left: -1em;
  width: 10px;
  height: 5px;
  border-left: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  transform: rotate(-45deg);
}


/* --------------------------------------------------------------------------
   プランセクション
   -------------------------------------------------------------------------- */
#plan { width: 100%; }
#plan .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#plan .block {
  width: 880px;
  margin: 0 auto 80px;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#plan .block .left {
  background: var(--color-bg-warm);
  width: 420px;
  padding-top: 28px;
}
#plan .block .left .int { width: 80%; margin: 0 auto; }
#plan .block .left h4 {
  font-size: 22px;
  letter-spacing: 3px;
  text-align: center;
  margin-left: -3px;
  padding-bottom: 36px;
}
#plan .block .left h4 b { font-size: 46px; font-weight: 700; }
#plan .block .left .int .price { font-size: 17px; padding-bottom: 18px; }
#plan .block .left .int .price b { font-size: 55px; font-weight: 700; margin-right: 4px; }
#plan .block .left .int .tax { font-size: 17px; padding-bottom: 28px; }
#plan .block .left .int .tax b { font-size: 18px; font-weight: 700; margin-right: 4px; }
#plan .block .left .int .detail { font-size: 18px; line-height: var(--line-height-normal); margin-bottom: 10px; }
#plan .block .mainimg { width: 430px; }
#plan .block .mainimg img { width: 100%; }

/* アコーディオンパネル */
.panel5 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.panel5 > dt { cursor: pointer; }
.panel5 > dd {
  margin: 28px auto;
  padding: 0;
  text-align: center;
  background: var(--color-bg);
}
.panel5 dt {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  width: 320px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: background-color var(--transition);
}
.panel5 dt.active { background: var(--color-primary-dark); }
.panel5 .icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  margin: 28px auto 0;
}
.panel5 .icons .thum { padding-top: 10px; }
.panel5 .icons figure { width: 110px; }
.panel5 .icons figure img { width: 60px; }
.panel5 .icons p {
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0 18px;
  text-align: center;
  width: 100%;
}


/* --------------------------------------------------------------------------
   お問い合わせモジュール（.contact_mod）
   -------------------------------------------------------------------------- */
.contact_mod {
  width: 100%;
  background: var(--color-bg-gray);
  padding: 72px 0 60px;
}
.contact_mod .inner {
  width: 600px;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   フロー
   -------------------------------------------------------------------------- */
#flow {
  width: 100%;
  background: var(--color-bg);
  padding: var(--space-xl) 0 56px;
  line-height: 1;
}
#flow .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#flow .inner .int {
  width: 700px;
  border-left: 16px solid var(--color-border);
  margin: 80px auto 0;
  padding: 10px 0 36px;
  line-height: 1;
}
#flow .inner .int h3 {
  font-size: 30px;
  margin: 0 0 36px -10px;
  display: flex;
  align-items: center;
}
#flow .inner .int h3::before {
  content: url(../images/flow_line.png);
  margin: 0 28px 14px 0;
}
#flow .inner .int h3 i {
  margin: 0 28px 0 0;
  font-size: 56px;
  font-family: 游明朝, YuMincho, "Hiragino Mincho ProN W3", serif;
}
#flow .inner .int .thum {
  background: var(--color-bg-warm);
  width: 640px;
  margin: 0 0 80px 26px;
  padding: 28px 0 10px;
}
#flow .inner .int .thum:last-child { margin-bottom: 0; }
#flow .inner .int .flow_caution { margin: -28px 0 36px 46px; }
#flow .inner .int .thum figure { width: 90%; margin: 0 auto 28px; }
#flow .inner .int .thum figure img { width: 100%; height: auto; }
#flow .inner .int .thum .lead {
  font-size: 19px;
  line-height: 2;
  width: 82%;
  margin: 0 auto 36px;
}
#flow .inner .int .thum .caution_bottom {
  text-align: center;
  font-size: 17px;
  padding-bottom: 36px;
}
#flow .inner .int .thum .caution_bottom b { font-weight: 700; font-size: 22px; }


/* --------------------------------------------------------------------------
   アクセス
   -------------------------------------------------------------------------- */
#access {
  width: 100%;
  background: var(--color-bg);
  padding: var(--space-xl) 0 64px;
}
#access .inner,
#hojo .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#access .inner .int,
#hojo .inner .int { width: 840px; margin: 0 auto; }
#access .inner .int .lead,
#hojo .inner .int .lead { font-size: var(--font-size-lg); line-height: 2; padding-bottom: 56px; }
#access .inner .int .block,
#hojo .inner .int .block {
  background: var(--color-bg-warm);
  padding: 24px 0 36px;
  margin: 0 0 72px;
}
#access .inner .int .block .blockint,
#hojo .inner .int .block .blockint { width: 90%; margin: 0 auto; }
#access .inner .int .block .blockint p,
#hojo .inner .int .block .blockint p { font-size: var(--font-size-lg); width: 90%; margin: 0 auto; }
#access .inner .int .block .blockint p b,
#hojo .inner .int .block .blockint p b { font-size: 40px; font-weight: 700; }

#access .googlemap {
  width: 940px;
  height: 560px;
  padding-top: 18px;
  margin: 0 auto 100px;
}
#access .googlemap iframe { width: 100%; height: 100%; }


/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
#faq {
  width: 100%;
  padding: var(--space-xl) 0;
}
#faq .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#faq .inner .block {
  width: 700px;
  margin: 0 auto;
  padding-top: 18px;
}

.faq_q {
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: var(--line-height-tight);
  padding: 10px 0 10px 16px;
  margin-bottom: 18px;
  border-bottom: 4px solid var(--color-border);
  position: relative;
}
.faq_q::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20%;
  border-bottom: 4px solid var(--color-highlight);
}
.faq_q i { margin-right: 18px; }

.faq_a {
  font-size: var(--font-size-md);
  width: 88%;
  margin: 0 auto 64px;
  display: flex;
  line-height: var(--line-height-normal);
}
.faq_a i { margin-right: 28px; }


/* --------------------------------------------------------------------------
   葬祭費・補助金エリア
   -------------------------------------------------------------------------- */
#foot_caution {
  background: var(--color-bg-gray);
  padding: 380px 0 0;
}
.foot_caution_tx {
  text-align: center;
  font-size: var(--font-size-sm);
  padding: 10px 0 4px;
  margin-bottom: -8px;
}
.foot_caution_tx b { font-weight: 700; padding: 0 3px; }

.foot_caution_tx2 {
  text-align: center;
  font-size: var(--font-size-sm);
  padding: 10px 0 4px;
  margin-bottom: -8px;
}
.foot_caution_tx2 b { font-weight: 700; padding: 0 3px; }

#foot_caution .staff_fukidashi { margin-top: 36px; }


/* --------------------------------------------------------------------------
   他斎場（#others）
   -------------------------------------------------------------------------- */
#others {
  width: 100%;
  padding: var(--space-xl) 0 48px;
}
#others .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#others .inner .block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 18px;
}


/* --------------------------------------------------------------------------
   会社概要
   -------------------------------------------------------------------------- */
#company {
  background: var(--color-bg);
  text-align: center;
  padding: var(--space-xl) 0;
  width: 100%;
}
#company .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#company .toppart {
  margin: 46px auto 0;
  text-align: left;
}
#company .toppart .cellmargin { margin-top: 18px; }
#company .toppart tr th {
  width: 200px;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 0;
  line-height: var(--line-height-normal);
  letter-spacing: 2px;
}
#company .toppart tr td {
  line-height: var(--line-height-normal);
  padding: 10px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  width: 540px;
}
#company .toppart tr td b { font-weight: 700; }
#company .toppart a { text-decoration: none; color: var(--color-text); }
#company .thanks {
  line-height: var(--line-height-normal);
  font-size: 28px;
  font-weight: 500;
}

/* パネル（#measures） */
.panel {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.panel > dt { cursor: pointer; }
.panel > dd { margin: 0 auto; text-align: center; }

#measures dt { transition: background-color var(--transition); }
#measures dt.active { background: #fab2a6; color: #aa2125; }
#measures dl dt {
  font-weight: 700;
  font-size: 20px;
  color: #333;
  background: #fad1bf;
  border-radius: var(--radius-full);
  display: flex;
  width: 310px;
  height: 60px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#measures dl dd { width: 900px; margin: 28px auto; }
#measures dl dd h5 {
  color: #168fcb;
  font-size: 17px;
  text-align: left;
  font-family: w6;
  padding-bottom: 22px;
}
#measures dl dd p { text-align: left; font-size: 17px; padding-bottom: 28px; }
#measures dl dd .base {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 56px;
}
#measures dl dd .base:last-child { margin-bottom: 0; }
#measures dl dd .base .thum { width: 218px; }
#measures dl dd .base .thum figure { width: 100%; }
#measures dl dd .base .thum figure img { width: 100%; }
#measures dl dd .base .thum p { width: 90%; margin: 8px auto 0; line-height: 1.5; }


/* --------------------------------------------------------------------------
   フッターナビ
   -------------------------------------------------------------------------- */
#footnav {
  width: 100%;
  padding: 56px 0 36px;
  background: var(--color-bg-gray);
}
#footnav .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#footnav .inner ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#footnav .inner ul li {
  width: 200px;
  margin-bottom: 22px;
}
#footnav .inner ul li a {
  font-size: 17px;
  color: var(--color-text);
  padding: 5px;
  text-decoration: none;
  transition: color var(--transition);
}
#footnav .inner ul li a:hover { color: var(--color-primary); }


/* --------------------------------------------------------------------------
   コピーライト
   -------------------------------------------------------------------------- */
#copy {
  width: 100%;
  background: var(--color-bg);
  padding: 28px 0;
  margin-bottom: 160px;
  text-align: center;
}


/* --------------------------------------------------------------------------
   ページトップボタン
   -------------------------------------------------------------------------- */
#page-top {
  z-index: 420;
  position: fixed;
  bottom: 18px;
  right: 10px;
  opacity: 1;
}
#page-top a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity var(--transition);
}
#page-top a:hover { opacity: 0.85; }
#page-top a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}


/* --------------------------------------------------------------------------
   固定フッター（#fixfoot）
   -------------------------------------------------------------------------- */
#fixfoot {
  text-align: center;
  padding: 14px 0;
  width: 100%;
  min-width: 880px;
  height: auto;
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: #ddf0eb;
}
#fixfoot .inner {
  width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
#fixfoot .inner .left {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 10px 0;
  width: 520px;
  text-decoration: none;
  color: #fff;
  cursor: inherit;
  overflow: hidden;
}
#fixfoot .inner .left div {
  background: #fff;
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--color-text);
  padding: 6px 0;
  width: 94%;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
#fixfoot .inner .left .fixfoot-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: #0f7a5a;
  color: #fff;
  margin: 0 auto;
}
#fixfoot .inner .left .fixfoot-mid-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#fixfoot .inner .left .fixfoot-mid .tx01 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 6px;
}
#fixfoot .inner .left .fixfoot-mid .qr-code-img {
  width: 90px;
  height: 90px;
  margin-left: 0;
  flex-shrink: 0;
}
#fixfoot .inner .left .tx02 {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 4px;
}
#fixfoot .inner .left .tx02::before {
  content: url(../images/icon_24_bottom.png);
  margin: 0 5px 0 0;
}
#fixfoot .inner .right {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 18px 0;
  width: 330px;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: background-color var(--transition);
}
#fixfoot .inner .right:hover { background: var(--color-primary-dark); }
#fixfoot .inner .right .tx01 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fixfoot .inner .right .tx01::before { content: url(../images/mail_bottom.png); margin: 0 10px 0 0; }
#fixfoot .inner .right .tx02 { font-size: 24px; font-weight: 700; }


/* --------------------------------------------------------------------------
   スタッフ紹介セクション（#staff）
   -------------------------------------------------------------------------- */
#staff {
  width: 100%;
  padding: 72px 0;
}
#staff .inner {
  width: var(--container-width);
  margin: 0 auto;
}
#staff .staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  text-align: left;
}
#staff .staff-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: var(--color-bg);
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
#staff .staff-card--compact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#staff .staff-photo { margin: 0; flex: 0 0 auto; }
#staff .staff-photo--small { width: 160px; }
#staff .staff-photo--small img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
#staff .staff-body { min-width: 0; }
#staff .staff-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.2;
}
#staff .staff-role {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #555;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  margin: 8px 0 10px;
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#staff .staff-msg {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.06);
  border-left: 4px solid rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 10px 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}


/* --------------------------------------------------------------------------
   運営団体テーブル
   -------------------------------------------------------------------------- */
#operator-info {
  width: 100%;
  background: var(--color-bg);
  padding: var(--space-xl) 0 56px;
  line-height: 1;
}
#operator-info .inner {
  width: var(--container-width);
  margin: 0 auto;
}

.operator-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #888;
  background: var(--color-bg);
  color: #333;
  table-layout: fixed;
}
.operator-table th,
.operator-table td {
  border: 1px solid #888;
  padding: 24px 26px;
  vertical-align: top;
  font-size: 17px;
  line-height: var(--line-height-normal);
}
.operator-table th {
  width: 22%;
  background: #ededed;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
}
.operator-list { list-style: none; margin: 0; padding: 0; }
.operator-list li { position: relative; padding-left: 24px; margin: 6px 0; }
.operator-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-primary);
}


/* --------------------------------------------------------------------------
   料金表
   -------------------------------------------------------------------------- */
.terms-fee {
  width: var(--container-width);
  margin: 0 auto 56px;
}
.terms-fee .fee_table_wrap {
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.terms-fee__lead { font-size: var(--font-size-sm); margin-top: -18px; }

.terms-fee table.fee_table {
  display: table !important;
  width: 100% !important;
  min-width: 860px;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: auto !important;
  font-size: 17px;
  line-height: var(--line-height-normal);
}
.terms-fee .fee_table thead { display: table-header-group !important; }
.terms-fee .fee_table tbody { display: table-row-group !important; }
.terms-fee .fee_table tr    { display: table-row !important; }
.terms-fee .fee_table th,
.terms-fee .fee_table td {
  display: table-cell !important;
  padding: 12px 14px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid rgba(0,0,0,.10) !important;
  white-space: normal;
}
.terms-fee .fee_table thead th {
  background: #f7f2eb !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 14px !important;
  line-height: var(--line-height-tight) !important;
}
.terms-fee .fee_table thead th + th {
  border-left: 1px solid rgba(255,255,255,.14) !important;
}
.terms-fee .fee_table tbody tr:nth-child(even) { background: #f6f8fb !important; }
.terms-fee .fee_table tbody tr.fee_group { background: #eef3fb !important; }
.terms-fee .fee_table tbody tr.fee_group th,
.terms-fee .fee_table tbody tr.fee_group td {
  border-top: 2px solid rgba(43,47,58,.18) !important;
}
.terms-fee .fee_table--terms th.fee_type {
  text-align: left !important;
  font-weight: 800 !important;
  background: rgba(43,47,58,.06) !important;
  vertical-align: middle !important;
}
.terms-fee .fee_table--terms td.fee_price.is-free {
  text-align: center !important;
  white-space: nowrap !important;
  font-weight: 800 !important;
}
.terms-fee .fee_table--terms td.fee_price {
  text-align: right !important;
  white-space: nowrap !important;
  font-weight: 800 !important;
}


/* ==========================================================================
   レスポンシブ（max-width: 800px）
   ========================================================================== */
@media screen and (max-width: 800px) {

  /* --- 横スクロール防止・全幅化 --- */
  html {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  /* --- コンテンツ内幅を全幅化 --- */
  .inner {
    width: 96% !important;
    box-sizing: border-box;
  }

  /* --- 表示切替 --- */
  .pc { display: none; }
  .sp { display: block; }

  /* --- ハンバーガーメニューテキスト --- */
  .humtex {
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* --- ドロワーメニュー：SP は全幅 --- */
  .drawer-nav {
    width: 100vw !important;
  }
  .drawer--right .drawer-nav {
    right: -100vw !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0 !important;
  }

  /* --- ハンバーガー スクロール後に表示 --- */
  .drawer-hamburger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .drawer-hamburger.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* --- ポップアップ --- */
  .onetime_popup {
    min-width: 88%;
    top: 40%;
    border-radius: var(--radius-md);
  }
  .onetime_popup_title {
    padding: 20px;
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
  }
  .onetime_popup_content { padding: 28px 16px; }
  .popup_reception {
    width: 96%;
    margin-top: 18px;
    background-size: 18px;
    background-position: right 10px center;
    padding: 18px 0 22px;
  }
  .popup_reception .tx01 {
    font-size: 23px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    justify-content: center;
    letter-spacing: 0;
  }
  .popup_reception .tx02 { font-size: 18px; }

  /* --- 見出し --- */
  h2.subtit {
    font-size: 22px;
    border-left: 8px solid var(--color-highlight);
  }
  h3.subtit02 { font-size: 22px; }
  h3.subtit03 {
    font-size: 17px;
    margin-bottom: 18px;
    font-weight: 700;
    padding: 0 0 10px;
  }

  /* --- ヘッダー --- */
  header {
    width: 94%;
    height: auto;
    padding: 14px 0 10px;
  }
  header h1 { width: 60%; margin: 0; }
  header h1 img { width: 100%; }
  header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }
  header .site-logo { margin: 0; flex: 1 1 auto; min-width: 0; }
  header .site-logo img { max-width: 100%; height: auto; display: block; }
  header .header-company-link {
    position: static !important;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    text-decoration: none;
  }

  /* --- アドバー --- */
  #addbar { min-width: 100%; height: 60px; }
  #addbar .left { justify-content: center; }
  #addbar .left h2 { font-size: 15px; letter-spacing: 2px; line-height: 1.2; }
  #addbar .left h2 b { font-size: 22px; margin: 0 0 0 5px; }
  #addbar .left h2 span { font-size: 15px; margin: 0 7px 0 6px; font-weight: 600; }
  #addbar .right { justify-content: center; }
  #addbar .right p { font-size: 14px; margin-left: 0; }

  /* --- メインビジュアル --- */
  #mainv { height: auto; background-image: none; }
  #mainv img { width: 100%; }
  #mainv_uji { height: auto; background-image: none; }
  #mainv_uji img { width: 100%; }

  /* --- main_bottom --- */
  #main_bottom { padding: 0; }
  #main_bottom .pc { display: none; }
  #main_bottom .sp { display: flex; justify-content: center; }
  #main_bottom .sp a { margin-top: -234px; }

  /* --- reception --- */
  .reception { border-radius: 14px; width: 82%; margin: 28px auto 36px; cursor: pointer; }
  .reception .up { height: auto; border-radius: 11px 11px 0 0; background-size: 50px; background-position: left 4% center; }
  .reception .up .tel { display: none; }
  .reception .up .tx01 { font-size: 28px; padding: 18px 10px; }
  .reception p.bottom { font-size: 16px; letter-spacing: 0; }

  /* --- reception02 / reception02b（メインビジュアルCTA） --- */
  .reception02b {
    width: 100%;
    background-size: 50px;
    padding: 15px 0 0 !important;
    background-position: left 4% top 8px;
    cursor: pointer;
  }
  .reception02b .up .tx01 { font-size: 16px; padding-left: 73px; padding-bottom: 4px; text-align: left; }
  .reception02b .up .tx02 { font-size: 18px; padding: 0 0 14px 73px; text-align: left; }
  .reception02b .up .tx02 b { font-size: 20px; }
  .reception02b .bottom { border-radius: 12px; height: auto; padding: 8px 0; margin-bottom:15px;}
  .reception02b .bottom .tel { display: none; }
  .reception02b .bottom .dial { margin-right: 0; letter-spacing: 2px; font-size: 20px; font-weight: bold; text-align: center; }
  .reception02 {
    width: 86%;
    border-radius: 14px;
    background-size: 50px;
    padding: 15px 0 0 !important;
    background-position: left 4% top 8px;
    cursor: pointer;
    align-self: flex-start !important;
  }
  .reception02 .foot_caution_tx {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
  }
  .reception02 .up .tx01 { font-size: 16px; text-align: left; padding-left: 73px; padding-bottom: 4px; }
  .reception02 .up .tx02 { font-size: 18px; padding: 0 0 14px 73px; text-align: left; }
  .reception02 .up .tx02 b { font-size: 20px; }
  .reception02 .bottom { border-radius: 12px; height: auto; padding: 8px 0; }
  .reception02 .bottom .tel { display: none; }
  .reception02 .bottom .dial { margin-right: 0; letter-spacing: 2px; font-size: 20px; font-weight: bold; text-align: center; }

  /* --- リード --- */
  #lead { padding: 48px 0; }
  #lead .inner { width: 90%; }
  #lead .inner p { width: 100%; font-size: 18px; }

  /* --- contactmod_01 --- */
  #contactmod_01 { padding: 36px 0; }

  /* --- foot_caution --- */
  #foot_caution { padding: 240px 0 0; }
  .foot_caution_tx {
    text-align: center;
    font-size: var(--font-size-sm);
    padding: 10px 0 4px;
    margin-bottom: 3px;
    color: #fff;
    line-height: var(--line-height-normal);
  }
  .foot_caution_tx2 {
    text-align: center;
    font-size: var(--font-size-sm);
    padding: 10px 0 4px;
    margin-bottom: 3px;
    color: #000;
    line-height: var(--line-height-normal);
    font-size: 16px;
  }

  /* --- reception03 --- */
  .reception03 { width: 85%; border-radius: 15px; padding: 10px 0 0; }
  .reception03 time { font-size: 16px; border-radius: 14px; padding: 8px 0; margin-bottom: 18px; }
  .reception03 time div { font-size: 20px; margin-right: 6px; }
  .reception03 .tx01 { font-size: 22px; padding-bottom: 5px; background-image: url(../images/icon_contactmod_arrow.png); background-repeat: no-repeat; background-position: right 10px top 0; background-size: 22px; letter-spacing: 1px; }
  .reception03 .tel { display: none; }

  /* --- スタッフ吹き出し --- */
  .staff_fukidashi,
  .staff_fukidashi2 {
    width: 80%;
    height: auto;
    background-size: 110px;
    padding: 10px 0;
    justify-content: center;
    align-items: flex-start;
  }
  .staff_fukidashi .tx01,
  .staff_fukidashi2 .tx01 { margin-left: 39%; padding-bottom: 0; padding-top: 0; line-height: 1.2; font-size: 24px; }
  .staff_fukidashi .tx02,
  .staff_fukidashi2 .tx02 { margin-left: 42%; line-height: 1.4; font-size: 18px; }

  /* --- ポイント --- */
  #point { padding: 56px 0 36px; }
  #point .inner { width: 90%; padding-left: 16px; padding-right: 16px; }
  #point .inner ul { width: 90%; margin: 10px auto 56px; }
  #point .inner ul li { font-size: 18px; }
  #point .subtit02 { line-height: 1.35; word-break: break-word; }
  #point .lead.lead-media { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
  #point .lead-media__img { width: 100%; max-width: 220px; height: auto; border-radius: 12px; display: block; margin: 0 auto; }
  #point .lead-media__text { display: block; font-size: 15px; line-height: var(--line-height-normal); }

  /* --- プラン --- */
  #plan .inner { width: 90%; }
  #plan .block { flex-direction: column; width: 100%; margin-bottom: 48px; }
  #plan .block .left { width: 100%; margin: 0 auto; }
  #plan .block .left .int { width: 88%; }
  #plan .block .left h4 { letter-spacing: 1px; font-size: 19px; font-weight: 700; padding-bottom: 18px; }
  #plan .block .left h4 b { font-size: 38px; }
  #plan .block .left .int .price { text-align: center; }
  #plan .block .left .int .price b { font-size: 38px; margin-right: 8px; }
  #plan .block .left .int .tax { text-align: center; }
  #plan .block .left .int .detail { font-size: 16px; margin-bottom: 28px; }
  .panel5 { margin-bottom: 18px; }
  .panel5 dt { width: 100%; border-radius: 13px; }
  .panel5 dd .icons .thum { width: 33%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .panel5 dd .icons .thum figure { width: 50%; margin: 0 auto; display: block; }
  .panel5 dd .icons .thum figure img { width: 100%; margin: 0 auto; }
  #plan .block .mainimg { width: 100%; }
  #plan .block .mainimg img { width: 100%; }

  /* --- フロー --- */
  #flow { padding: 56px 0 48px; }
  #flow .inner { width: 91%; }
  #flow .inner .int { width: 100%; padding: 10px 0 22px; margin-top: 48px; border-left: 14px solid var(--color-border); }
  #flow .inner .int h3 { font-size: 20px; margin: 0 0 14px -10px; }
  #flow .inner .int .flow_caution { margin-left: 0; }
  #flow .inner .int .thum { width: 100%; margin: 0 0 36px 0; }
  .reception_flow { width: 90%; }
  .reception_flow .tel { font-size: 22px; }
  .staff_caution { width: 90%; height: auto; background-size: 80px auto; padding: 12px 12px 12px 88px; box-sizing: border-box; }
  .staff_caution p { width: 100%; margin-left: 0; padding-top: 0; }

  /* --- アクセス --- */
  #access { padding: 48px 0 40px; }
  #access .inner { width: 90%; }
  #access .inner .int { width: 100%; }
  #access .inner .int .lead { font-size: 18px; padding-bottom: 36px; }
  #access .googlemap { width: 95%; height: 280px; margin: 0 auto 60px; }

  /* --- FAQ --- */
  #faq { padding: 36px 0 18px; }
  #faq .inner { width: 90%; }
  #faq .inner .block { width: 100%; padding-top: 0; }
  .faq_q i { margin-right: 4px; }
  .faq_a { margin-bottom: 32px; }
  .faq_a i { margin-right: 4px; }

  /* --- 他斎場 --- */
  #others { padding: 56px 0 28px; }
  #others .inner { width: 90%; }
  #others .inner .block { padding-top: 0; }
  .reception_others {
    width: 90%;
    border-radius: 14px;
    padding: 12px 0 10px;
    margin: 10px auto 28px;
    background-image: url(../images/icon_contactmod_arrow.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 14px bottom 22px;
    cursor: pointer;
  }
  .reception_others div { font-size: 24px; padding: 14px 0; border-radius: 12px; margin: 0 auto 18px; letter-spacing: 0; background-image: url(../images/icon_24_other_sp.png); background-repeat: no-repeat; background-size: 44px; background-position: left 14px center; }
  .reception_others div p { padding-left: 8px; }
  .reception_others div p::before { content: none; }
  .reception_others .tx01 { font-size: 22px; padding-bottom: 10px; }
  .reception_others .tel { display: none; }

  /* --- 会社概要 --- */
  #company { padding: 48px 0 56px; }
  #company .inner { width: 85%; margin: 0 auto; }
  #company .toppart { margin: 0 0 36px; width: 100%; }
  #company .toppart tr th { width: 100%; display: block; font-size: 15px; padding: 10px 0 0; letter-spacing: 0; }
  #company .toppart tr td { width: 94%; padding: 5px 0 14px; letter-spacing: 0; margin: 0 auto; display: block; font-size: 15px; }
  #company .thanks { line-height: var(--line-height-normal); font-size: 23px; font-weight: 500; }

  /* --- フッターナビ --- */
  #footnav { padding: 28px 0 22px; }
  #footnav .inner { width: 93%; margin: 0 auto; }
  #footnav .inner ul li { width: 50%; }

  /* --- コピーライト --- */
  #copy { padding: 28px 0; }
  #copy p { font-size: 15px; }

  /* --- ページトップ --- */
  #page-top { bottom: 160px; right: 5px; }
  #page-top a { width: 44px; height: 44px; }

  /* --- 固定フッター（SP） --- */
  #fixfoot-sp {
    text-align: center;
    padding: 14px 0;
    width: 100%;
    min-width: 100%;
    height: auto;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 400;
    background: #ddf0eb;
  }
  #fixfoot-sp .inner { width: 100% !important; }
  #fixfoot-sp .inner .left {
    display: block;
    width: 80%;
    padding: 14px 0 18px;
    margin: 0 auto;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: #fff;
    text-decoration: none;
    background-image: url(../images/icon_contactmod_arrow.png), url(../images/icon_24_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 22px, 40px;
    background-position: right 14px bottom 32px, left 12px bottom 22px;
  }
  #fixfoot-sp .inner .left div {
    background: #fff;
    font-size: 19px;
    letter-spacing: 2px;
    color: var(--color-text);
    padding: 6px 0;
    width: 94%;
    margin: 0 auto 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
  }
  #fixfoot-sp .inner .left .tx02 { font-size: 23px; letter-spacing: 0; font-weight: 700; }
  #fixfoot-sp .inner .left .tx03 { font-size: 15px; letter-spacing: 0; font-weight: 700; margin-top: 10px; }

  /* --- スタッフ紹介 --- */
  #staff .inner { width: auto; margin: 0 16px; }
  #staff .staff-grid { grid-template-columns: 1fr; }
  #staff .staff-card { padding: 12px; }
  #staff .staff-name { font-size: 16px; }
  #staff .staff-msg { -webkit-line-clamp: 4; font-size: 13px; }

  /* --- 運営団体 --- */
  #operator-info { padding: 48px 0; }
  #operator-info .inner { width: 90%; }
  .operator-table th,
  .operator-table td { padding: 16px 13px; font-size: 14px; line-height: 1.7; }
  .operator-table th { width: 30%; }
  .operator-list li { padding-left: 20px; }
  .operator-list li::before { width: 10px; height: 10px; top: 0.6em; }

  /* --- 料金表 --- */
  .terms-fee { width: 90%; }
  .terms-fee table.fee_table { font-size: 14px !important; }
  .terms-fee .fee_table thead th { font-size: 13px !important; }

  /* --- contact_mod（費用確認・見積請求エリア） --- */
  .contact_mod { padding: 40px 0 20px; }
  .contact_mod .inner { width: 90%; }

  /* --- reception04（費用について電話で確認するボタン） --- */
  .reception04 {
    width: 90%;
    border-radius: 14px;
    padding: 20px 16px;
    cursor: pointer;
  }
  .reception04 .tx01 { font-size: 18px; padding-bottom: 14px; }
  .reception04 .tx01 b { font-size: 22px; }
  .reception04 .tx02 { font-size: 20px; letter-spacing: 0; }
  .reception04 .tx02::before { display: none; }
  .reception04 .tx03 { text-align: center; }
  .reception04 .tx04 { text-align: center; }

  /* --- reception05（メールで見積請求ボタン） --- */
  .reception05 {
    width: 90%;
    border-radius: 14px;
    margin: 28px auto 16px;
    background-size: 30px, 20px;
    background-position: left 16px center, right 14px center;
    padding: 24px 0;
  }
  .reception05 .tx01 { font-size: 18px; padding-bottom: 10px; }
  .reception05 .tx02 { font-size: 24px; }

  /* QRコード：SP では非表示 */
  .qr-code-img { display: none !important; }

  /* SP: tel リンクのクリックを有効化 */
  a.reception02b,
  a.reception_flow {
    pointer-events: auto;
    cursor: pointer;
  }

} /* end @media 800px */


/* --------------------------------------------------------------------------
   フッターCTAエリア（#foot_cta）
   id="main_bottom" 重複解消のため独立したセクションとして定義
   -------------------------------------------------------------------------- */
#foot_cta {
  background: var(--color-bg-gray);
  padding: 48px var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#foot_cta .reception02 {
  width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  #foot_cta { padding: 32px var(--space-sm); }
  #foot_cta .reception02 { width: 100%; }
}

/* --------------------------------------------------------------------------
   PCでの電話番号 クリックコピー ツールチップ
   -------------------------------------------------------------------------- */
[title="クリックで番号をコピー"] {
  position: relative;
  transition: opacity var(--transition);
}
[title="クリックで番号をコピー"]:hover { opacity: 0.75; }
[title="クリックで番号をコピー"]:hover::after {
  content: "クリックでコピー";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 10;
}

/* --------------------------------------------------------------------------
   PC CTA QRコード
   -------------------------------------------------------------------------- */
.reception03 .tel::before,
.reception04 .tx02::before,
#fixfoot .inner .left .tx02::before {
  content: none;
}
.qr-code-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  margin-left: 16px;
}

/* reception02 .bottom：QRコード追加によるレイアウト崩れ修正 */
.pc .reception02 .bottom {
  height: auto;
  padding: 8px 12px;
}
.pc .reception02 .bottom .dial {
  margin-right: 12px;
  flex-shrink: 0;
}
.pc .reception02 .bottom .tel {
  font-size: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
  cursor: default;
}
.pc .reception02 .bottom .qr-code-img {
  width: 72px;
  height: 72px;
  margin-left: 12px;
}

/* PC・タブレット: tel リンクのクリック無効化 */
a.reception02b,
a.reception_flow {
  pointer-events: none;
  cursor: default;
}

/* reception02b .bottom（ポップアップPC）：QRコード追加レイアウト調整 */
.reception02b .bottom .dial {
  margin-right: 0px;
  flex-shrink: 0;
}
.reception02b .bottom .tel {
  white-space: nowrap;
  flex-shrink: 0;
}
.reception02b .bottom .qr-code-img {
  width: 84px;
  height: 84px;
  margin-left: 12px;
}

/* 施設写真ギャラリー（横スクロール） */
#gallery {
  padding: 60px 0 40px;
}
#gallery .inner {
  width: var(--container-width);
  margin: 0 auto;
}
.gallery-hint {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.gallery-hint-arrow {
  display: inline-block;
  animation: gallery-hint-bounce 1.5s ease-in-out infinite;
  font-size: 15px;
}
@keyframes gallery-hint-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.gallery-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 16px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #c5a882 #f0ebe4;
}
.gallery-scroll-wrapper::after {
  content: "";
  position: sticky;
  right: 0;
  top: 0;
  flex-shrink: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
}
.gallery-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-track {
  background: #f0ebe4;
  border-radius: 3px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #c5a882;
  border-radius: 3px;
}
.gallery-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 0 4px;
}
.gallery-item {
  flex: 0 0 auto;
  width: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  text-align: center;
  padding: 10px 8px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #gallery {
    padding: 40px 0 30px;
  }
  #gallery .inner {
    width: 90%;
  }
  .gallery-item {
    width: 260px;
  }
  .gallery-item img {
    height: 180px;
  }
}
