@charset "UTF-8";

/* ==========================================================================
   1. 変数定義（50霊園展開時のカスタマイズ用）
   ========================================================================== */
:root {
    /* カラーパレット（ブランドや霊園の雰囲気に合わせて変更可能） */
    --primary-color: #005caf;     /* メインのアクセントカラー（信頼感のある青など） */
    --primary-light: #f0f6fa;     /* 背景用の薄いアクセントカラー */
    --text-color: #333333;        /* 基本の文字色 */
    --text-muted: #666666;        /* 補足・注記の文字色 */
    --bg-white: #ffffff;          /* コンテンツ背景（白） */
    --bg-light: #f8f9fa;          /* 共通セクションなどの背景（薄いグレー） */
    --border-color: #dddddd;      /* テーブルや区切り線 */
    --notice-color: #de1c24;      /* 注意喚起・警告色 */

    /* フォント・レイアウト */
    --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --max-width: 1024px;           /* コンテンツの最大幅 */
    --space-sm: 24px;
    --space-md: 40px;
    --space-lg: 80px;
}

/* ==========================================================================
   2. ベース・リセット（CLS防止と表示速度最適化）
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-text-size-adjust: 100%;
}


/* 画像のCLS（Layout Shift）防止 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* リンク */
a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}
a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* ==========================================================================
   3. レイアウト・共通セクション
   ========================================================================== */
main {
    display: block;
}
section {
  scroll-margin-top: 80px; /* ヘッダーの高さ + 余裕分(20px) */
}
/* コンテンツの幅を制限する共通クラス */
.cemetery-hero,
.cemetery-pain-points,
.cemetery-procedure,
.cemetery-pricing,
.common-section,
.cemetery-access-wrapper,
.cemetery-works-report,
.features-section,
.step-section,
.service-section,
.contact-section
{
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-md) var(--space-sm);
}

/* 共通セクション（インクルード部分など）の背景色切り替え */
.common-section {
    background-color: var(--bg-light);
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: 8px; /* 好みに応じて */
}

/* パンくずリスト */
nav{
border-top: 0;
}
nav[aria-label="breadcrumb"] {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm);
    font-size: 0.875rem;
}
nav[aria-label="breadcrumb"] ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
nav[aria-label="breadcrumb"] li + li::before {
    content: ">";
    padding: 0 8px;
    color: var(--text-muted);
}
nav[aria-label="breadcrumb"] li[aria-current="page"] {
    color: var(--text-muted);
    font-weight: bold;
}

/* 見出しの共通デザイン */
h2 {
    font-size: 1.5rem;
    position: relative;
    padding-left: 12px;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}
h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

/* ==========================================================================
   4. 独自コンテンツセクション（霊園個別）
   ========================================================================== */

/* ヒーローエリア */
.cemetery-hero {
    text-align: center;
    padding-top: var(--space-md);
}
.cemetery-hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}
.cemetery-hero picture {
    display: block;
    margin: var(--space-sm) auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.hero-info-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.info-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    width: 32%;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}
/* お悩み・背景 */
.cemetery-pain-points strong {
    color: var(--primary-color);
    background: linear-gradient(transparent 70%, #fff3b3 70%);
}

/* 手続きの流れ（ol） */
.cemetery-procedure ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cemetery-procedure li {
    position: relative;
    padding: var(--space-sm) var(--space-sm) var(--space-sm) 50px;
    background-color: var(--bg-light);
    margin-bottom: 12px;
    border-radius: 6px;
    counter-increment: step-counter;
}
.cemetery-procedure li::before {
    content: counter(step-counter);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    font-size: 0.875rem;
}
.cemetery-procedure li strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.notice-text {
    color: var(--notice-color);
    font-size: 0.875rem;
    font-weight: bold;
    margin-top: 12px;
}

/* 費用テーブル（AIO/SEOで最も重要視されるエリア） */
.cemetery-pricing {
    overflow-x: auto; /* モバイルでの横揺れ防止・スクロール対応 */
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-sm);
    margin-bottom: 8px;
    font-size: 1rem;
}
.price-table caption {
    text-align: left;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.price-table th, 
.price-table td {
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    text-align: left;
}
.price-table th {
    background-color: var(--primary-light);
    color: var(--text-color);
    font-weight: bold;
    width: 50%;
}
.price-table td {
    background-color: var(--bg-white);
}
/* 金額や特定のセルを目立たせる場合 */
.price-table td:last-child {
    font-weight: bold;
    color: var(--primary-color);
}
.annotation {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ（dl/dt/dd） */
.faq.common-section{

}
.faq dl {
    margin: 0;
}
.faq dt {
    font-weight: bold;
    padding: 8px 12px;
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--space-sm);
}
.faq dd {
    margin: 0;
    padding: 12px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: none;
}

/* ==========================================================================
   追加：マップ＆施設情報の左右並びレイアウト
   ========================================================================== */
/* 左右並びを制御するコンテナ（デフォルトはスマホ用の縦並び） */
.access-container {
    display: flex;
    flex-direction: column;
    gap: 24px; /* マップと情報の間の余白 */
    margin-top: var(--space-sm);
}

/* マップボックスの基本設定 */
.access-map-box {
    width: 100%;
}

/* Googleマップのレスポンシブ化（アスペクト比4:3を維持して伸縮） */
.iframe-responsive {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3の比率 (450 / 600 = 0.75) */
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.iframe-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 施設情報ボックスの基本設定 */
.access-info-box {
    width: 100%;
}

/* 施設情報の定義リスト（見栄えを整える） */
.info-list {
    margin: 0;
    padding: 0;
}

.info-list dt {
    font-weight: bold;
    color: var(--text-color);
    background-color: var(--primary-light);
    padding: 6px 12px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    margin-top: 16px;
}

.info-list dt:first-child {
    margin-top: 0; /* 最初の項目の上余白を消す */
}

.info-list dd {
    margin: 0;
    padding: 10px 12px 4px 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* アクセス詳細内の箇条書き（ul）のリセット */
.info-list dd ul {
    margin: 0;
    padding-left: 20px;
}

.info-list dd li {
    margin-bottom: 6px;
}
/* ==========================================================================
   5. 施工実績
   ========================================================================== */
.report-card {
display: flex;
    gap: 30px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 30px; /* 事例同士の余白 */
}

.report-visual {
flex: 0 0 50%;
    padding: 20px; /* ★ここを追加：カードの左側と上部に余白を作る */
    display: flex;
    flex-direction: column;
    gap: 15px;     /* バッジと写真の間の余白 */
    box-sizing: border-box; /* パディングを含めてサイズ計算させる */
}

.visual-container {
    display: flex;
    flex-direction: column; /* これが最強の「縦並び」指示 */
    gap: 15px;              /* バッジと写真の間の余白 */
    width: 100%;
}

.report-badge {
    display: inline-block;
    align-self: flex-start; /* 左端に寄せる */
    background: #005caf;
    color: #fff;
    padding: 6px 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
}

.report-data {
	padding: 0px 30px 30px 0px;
	flex: 1;
}
.report-table { margin: 20px 0; border-top: 1px solid #eee; }
.table-row { display: flex; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 1rem; }
.table-row span:first-child { width: 30%; color: #666; }
.price-highlight { font-weight: bold; color: #d32f2f; font-size: 1.1rem; }
.report-voice-inline {
    margin-top: 15px;
    padding: 15px;
    background: #fdfdfd;
    border-left: 3px solid #005caf;
    font-size: 1rem;
}
.voice-text {
    margin: 0 0 8px 0;
    color: #555;
}
/* 写真を並べるコンテナ */
.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

/* 画像の微調整 */
.image-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* キャプションのスタイル */
.caption {
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-top: 5px;
}
.report-staff-note {
    background: #f0f7ff; /* カードと色を変えて区別 */
    border-radius: 0 0 16px 16px; /* カードの角と合わせるなら下だけ丸く */
    padding: 20px;
    margin-top: -10px; /* カードと繋がっているように見せる */
    border: 1px solid #e0e0e0;
    border-top: none;
}
/* スマホ対応 */
@media (max-width: 768px) {
    .report-card { flex-direction: column; }
    .report-visual {
	width: 100%;
	padding: 15px; /* スマホなら少し狭くして調整 */
	}
.hero-info-grid {
    flex-direction: column; /* 縦並びに変える */
    align-items: center;    /* 中央寄せ */
    gap: 15px;              /* 縦の隙間を調整 */
  }

  .info-item {
    width: 100%;            /* 100%に広げる */
    flex: none;             /* これが超重要！Flexの縮小ルールを無効化 */
  }
}

.feature-card {
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    gap: 20px;
    border: 2px solid #005caf; /* 緑色の枠線 */
    border-radius: 8px;
    padding: 20px;
    background: #fff;
margin-bottom: 1em;
}

/* 特徴バッジ */
.feature-badge {
    flex: 0 0 80px; /* バッジの幅を固定 */
    background: #005caf;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* メイン本文 */
.feature-content {
    flex: 1; /* 残りのスペースを埋める */
}

/* 右側画像 */
.feature-image {
    flex: 0 0 160px;
}
.feature-image img {
    border-radius: 50%; /* 丸い写真 */
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.feature-list {
    list-style: none; /* デフォルトの黒丸を消す */
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px; /* アイコンを置く場所 */
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 独自のアイコンを付ける */
.feature-list li::before {
    content: "✔"; /* ここを好きなアイコンや色付きの丸に変更可能 */
    position: absolute;
    left: 0;
    color: #7cb342; /* ブランドカラー */
    font-weight: bold;
}

.feature-list small {
    display: block; /* 改行させる */
    color: #666;
    margin-top: 5px;
    font-size: 0.85rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .feature-card { flex-direction: column; text-align: center; }
    .feature-badge { align-self: center; }
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列配置 */
    gap: 20px;
}

.step-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fafafa;
    position: relative;
}

.step-number {
    display: inline-block;
    background: #005caf; /* 特徴カードと同じブランドカラー */
    color: #fff;
    padding: 2px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 10px;
}
.step-phase {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px dashed #ccc; /* 点線でフェーズを区切る */
    border-radius: 12px;
}
.step-phase h3 {
    margin-top: 0;
    color: #005caf;
    border-bottom: 2px solid #005caf;
    display: inline-block;
    margin-bottom: 15px;
}
/* スマホ対応 */
@media (max-width: 768px) {
.step-card:nth-child(even) { background: #f0f7ff; }
}

/* メインの電話番号を目立たせる */
/* 新しい親コンテナのスタイル */
.contact-section {
    padding: 30px;
    border: 2px solid #005caf; /* 今のデザインに合わせる */
    border-radius: 8px;
	margin-bottom: 1.5em;
}
.contact-main{
text-align: center;
}
/* 電話番号（メイン）を強調 */
a.tel-number {
    font-size: 3.2rem;
    color: #005caf;
    display: block;
    text-align: center;
    margin: 8px 0;
}
.site-header a.tel-number{
    font-size: 1.8rem;
    margin: 0 0;
}

/* フォームボタンは目立たせすぎない */
.contact-sub {
    display: flex;
    gap: 10px; /* ボタン同士の隙間 */
    margin-bottom: 20px;
}

.btn-line, .btn-mail {
    flex: 1; /* 左右均等に広げる */
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-line { background: #06c755; color: #fff; } /* LINEカラー */
.btn-mail { background: #3498db; color: #fff; } /* メールカラー */
.btn-form {
    display: block;
    background: #ff5722; /* 目立つ色 */
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-size: 1.1rem;
}
.service-grid {
    display: grid;
    /* 1つのカードが最低250pxの幅を確保し、自動的に詰め込む */
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s; /* ホバー時に少し浮き上がる動き */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item img {
    width: 100%;
    height: 180px; /* 全ての画像の高さを統一すると美しい */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.price {
    color: #c00;
    font-weight: bold;
    margin: 10px 0;
}

.btn-detail {
    display: inline-block;
    padding: 8px 16px;
    background: #f4f4f4;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}
/* =========================================
   下層ページの共通フッター
========================================= */
.common_footer{
margin: 0 0 57px 0;
background-color: #517d99;
padding: .75em 0;
}
.common_footer .container{
max-width: 1024px;
margin: 0 auto;
}
.common_footer ul.flex_box {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
list-style: none;
margin: 0;
}
.common_footer a{
color: #fff;
}
.common_footer a:hover{
color: #ffff00;
}
#foot_inquiry footer.sp{
display: none;
}
/* ==========================================================================
   5. メディアクエリ（レスポンス対応：タブレット・PC向け）
   ========================================================================== */
@media (min-width: 768px) {
    :root {
        --space-md: 56px; /* PC時はセクション間の余白を少し広げる */
    }

    .cemetery-hero h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* 手続きのリストをPCでは少しゆったりさせる */
    .cemetery-procedure li {
        padding: 20px 20px 20px 60px;
    }
    .cemetery-procedure li::before {
        left: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    .access-container {
        flex-direction: row; /* 横並びに変更 */
        align-items: flex-start; /* 上揃え */
    }

    /* 左側のマップと右側の情報をそれぞれ50%ずつの幅にする（隙間を考慮） */
    .access-map-box,
    .access-info-box {
        width: calc(50% - 12px); /* gap: 24px の半分を引く */
    }

    /* PC時はマップが縦に伸びすぎないよう、高さを固定化するか比率を調整しても良い */
    .iframe-responsive {
        padding-top: 70%; /* 少し横長に調整（5:4〜16:9に近い見栄えに） */
    }
}
/* ==========================================================================
   ヘッダー共通（PC・スマホ両対応 / 追従型）
   ========================================================================== */
/* 1. ヘッダーの背景（site-header）は常に画面幅100%にする */
.site-header {
position: fixed; /* stickyではなくfixedを使い、強制的に表示領域に固定する */
    top: 0;
    left: 0;
    width: 100%;     /* 幅を画面いっぱいにする */
    height: 70px;    /* 高さを固定 */
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

body {
    padding-top: 70px; /* ヘッダーの高さ分、コンテンツを下げる */
}

/* 2. 中身（header-inner）で中央寄せと最大幅を制御 */
.header-inner {
    width: 100%;             /* 常に親要素いっぱい */
    max-width: 1200px;       /* ここで最大幅を決める */
    margin: 0 auto;          /* 左右中央揃え */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-sm, 16px); /* 左右の余白はpaddingで調整 */
    height: 70px;
}
/* ロゴ */
.header-logo img {
    display: block;
    max-height: 40px;
    width: auto;
}

/* ==========================================================================
   PC用ナビゲーション・CTA
   ========================================================================== */
.header-nav {
    display: none; /* デフォルト（スマホ）では非表示。PC領域で上書き */
}

.header-cta {
    display: none; /* スマホでは非表示 */
}

/* PC領域（768px以上）のレイアウト */
@media (min-width: 768px) {
    /* JS不要ハンバーガーのボタンを隠す */
    .nav-toggle-input,
    .nav-toggle-label {
        display: none;
    }

    /* ナビゲーション表示 */
    .header-nav {
        display: block;
        flex-grow: 1;
        margin: 0 24px;
    }

    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .nav-list a {
        text-decoration: none;
        color: var(--text-color, #333);
        font-weight: bold;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    .nav-list a:hover {
        color: var(--primary-color, #005caf);
    }

    /* PC用スマホメニュー内専用CTAを隠す */
    .nav-mobile-cta {
        display: none;
    }

    /* PC用 CTA表示 */
    .header-cta {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .header-tel-box {
        text-align: right;
    }

    .tel-hours {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted, #666);
    }

    .tel-number {
        display: block;
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--text-color, #333);
        text-decoration: none;
        line-height: 1.2;
    }

    .btn-contact {
        background-color: #ff9800; /* コンバージョンカラー（オレンジ等） */
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 4px;
        transition: opacity 0.2s;
    }

    .btn-contact:hover {
        opacity: 0.8;
    }
}

/* ==========================================================================
   スマホ用 JS不要ピュアCSSハンバーガーメニュー（767px以下）
   ========================================================================== */
@media (max-width: 767px) {
    /* チェックボックス本体は隠す */
    .nav-toggle-input {
        display: none;
    }

    /* ハンバーガーアイコン（3本線） */
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--text-color, #333);
        border-radius: 2px;
        transition: all 0.3s;
    }

    /* メニュー本体（デフォルトは画面外に隠す） */
    .header-nav {
display: block;
    position: fixed;
    top: 70px;            /* ここがヘッダーの高さと一致しているか確認 */
    left: -100%;
    width: 100%;
    
    /* 修正①：高さを「画面いっぱい」に固定し、下端を0にする */
    height: calc(100vh - 70px); 
    
    /* 修正②：背景色を確実に指定する（透けないようにする） */
    background-color: #ffffff; 
    
    /* 修正③：ヘッダーの影の下に潜り込まないよう、z-indexを明示 */
    z-index: 999; 
    
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    padding: 24px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color, #ddd);
    }

    .nav-list a {
        display: block;
        padding: 16px 8px;
        text-decoration: none;
        color: var(--text-color, #333);
        font-weight: bold;
    }

    /* スマホメニュー内のCTA */
    .nav-mobile-cta {
        margin-top: 24px;
        text-align: center;
    }

    .mobile-tel {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--text-color, #333);
        text-decoration: none;
        margin-bottom: 16px;
    }

    .mobile-tel small {
        font-size: 0.8rem;
        color: var(--text-muted, #666);
    }

    .mobile-btn {
        display: block;
        background-color: #ff9800;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 16px;
        border-radius: 4px;
    }

    /* ▼▼ チェックボックスがON（タップされた）時の動き ▼▼ */
    .nav-toggle-input:checked ~ .header-nav {
        left: 0; /* メニューを画面内にスライド */
    }

    /* ハンバーガーアイコンを「×」印に変形 */
    .nav-toggle-input:checked + .nav-toggle-label .hamburger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .nav-toggle-input:checked + .nav-toggle-label .hamburger-line:nth-child(2) {
        opacity: 0; /* 真ん中の線を消す */
    }
    .nav-toggle-input:checked + .nav-toggle-label .hamburger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
#foot_inquiry .pc{
display: none;
}
#foot_inquiry .sp{
display: block!important;
width: 100%;
    background-color: #208f65;
    color: #fff;
    text-align: center;
    padding: 0;
    position: fixed;
    bottom: 0;
}
.foot_flexbox{
	display: flex;
	justify-content: space-between;		
}
.foot_flexbox .col_harf {
  width: calc(100% / 3);
  background-color: #00A31E;
  border-right: 1px solid #fff;
}
.foot_flexbox .col_harf:last-of-type {
  border-right: none;
}
.foot_flexbox .col_harf a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 70%;
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
  font-weight: bold;
  background-color: #00A31E;
  padding-top: 5px;
}
.foot_flexbox .col_harf a i {
  font-size: 25px;
}
.contact-section a.tel-number {
  font-size: 1.8rem;
}
}