
/* --- 基本設定・リセット --- */
:root {
    --primary-color: #4CAF50; /* メインカラー (緑系) */
    --secondary-color: #FF9800; /* アクセントカラー (オレンジ系) */
    --text-color: #333333; /* 基本テキストカラー */
    --light-text-color: #FFFFFF;
    --bg-light-color: #f4f4f4; /* 明るい背景色 */
    --border-color: #dddddd;
    --font-family-base: 'Noto Sans JP', sans-serif;
    --font-size-base: 16px; /* 基本フォントサイズ (高齢者向けにやや大きめ) */
    --line-height-base: 1.8; /* 行間を広めにとる */
    --header-height-normal: 120px; /* 通常時のヘッダー高さ目安 */
    --header-height-scrolled: 30px; /* スクロール時のヘッダー高さ目安 */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base); /* ルートのフォントサイズ */
}

body {
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height-normal); /* ヘッダー分の余白を確保 (初期値) */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* 画像の角を少し丸める */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: darken(var(--primary-color), 10%);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* 見出しは太めに */
    line-height: 1.4;
    margin-bottom: 0.75em;
}

h1 { font-size: 2.2rem; } /* ロゴなど */
h2 { font-size: 1.8rem; color: var(--primary-color); } /* セクションタイトル */
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1em;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1em;
    padding-left: 1.5em; /* リストのインデント */
}

/* --- ユーティリティクラス --- */
.container {
    width: 90%;
    max-width: 1100px; /* 最大幅 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-light {
    background-color: var(--bg-light-color);
}
.bg-primary-light {
    background-color: #E8F5E9; /* Primary colorの薄い版 */
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem; /* セクションタイトルを大きく */
    position: relative;
    padding-bottom: 10px;
}
.section-title::after { /* 簡単な下線装飾 */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

.sp-only { display: none; } /* スマホでのみ表示 (改行など) */

/* --- ボタン共通スタイル --- */
.btn {
    display: inline-block;
    padding: 12px 28px; /* ボタンを大きく */
    font-size: 1.1rem; /* ボタン内文字も大きく */
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 8px; /* 角を丸く */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn:hover, .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: darken(var(--primary-color), 10%);
    color: var(--light-text-color);
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: darken(var(--secondary-color), 10%);
    color: var(--light-text-color);
}
.btn-lg {
    padding: 15px 35px;
    font-size: 1.25rem;
}

/* --- ヘッダー --- */
.site-header {
    background-color: #FFFFFF;
    padding: 15px 0; /* 通常時のpadding */
    border-bottom: 3px solid var(--primary-color);
    position: fixed; /* 固定表示に変更 */
    top: 0;
    left: 0; /* 左端に固定 */
    width: 100%; /* 幅を100%に */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: padding 0.3s ease, background-color 0.3s ease; /* スムーズな変化 */
}
.site-header.scrolled {
    padding: 8px 0; /* スクロール時のpadding (小さくする) */
    background-color: rgba(255, 255, 255, 0.95); /* 少し透過させるなど */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* bodyのpadding-topをJSで調整するため、CSSでの固定値は削除またはコメントアウト */
/* body { padding-top: var(--header-height-normal); } */
/* .site-header.scrolled + main などで調整する場合もあるが、JSで制御が確実 */


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* スマホ表示で折り返し */
    transition: all 0.3s ease;
}
.logo h1 {
    margin: 0;
    font-size: 1.8rem; /* ロゴの文字サイズ調整 */
    transition: font-size 0.3s ease;
}
.site-header.scrolled .logo h1 {
    font-size: 1.5rem; /* スクロール時のロゴ文字サイズ */
}
.logo h1 a {
    color: var(--text-color);
    text-decoration: none;
}
.logo .tagline {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    transition: opacity 0.3s ease, font-size 0.3s ease;
}
.site-header.scrolled .logo .tagline {
    opacity: 0; /* スクロール時にタグラインを非表示 */
    font-size: 0; /* 非表示にしつつレイアウトへの影響を減らす */
    height: 0;
    overflow: hidden;
}

.header-contact {
    text-align: right;
    transition: all 0.3s ease;
}
.site-header.scrolled .header-contact {
    /* 必要に応じて連絡先情報も縮小 */
}
.header-tel-label {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: #555;
    transition: font-size 0.3s ease;
}
.site-header.scrolled .header-tel-label {
    font-size: 0.8rem;
}
.header-tel-number {
    font-size: 1.6rem; /* 電話番号を大きく */
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: font-size 0.3s ease;
}
.site-header.scrolled .header-tel-number {
    font-size: 1.3rem; /* スクロール時の電話番号 */
}
.header-tel-number:hover {
    color: darken(var(--secondary-color), 10%);
}
.header-reception-time {
    font-size: 0.8rem;
    color: #777;
    margin-top: 2px;
    transition: opacity 0.3s ease, font-size 0.3s ease;
}
.site-header.scrolled .header-reception-time {
    opacity: 0; /* 受付時間も非表示にする例 */
    font-size: 0;
    height: 0;
    overflow: hidden;
}

.global-nav {
    width: 100%; /* スマホでは幅いっぱい */
    margin-top: 10px;
    transition: margin-top 0.3s ease;
}
.site-header.scrolled .global-nav {
    margin-top: 5px; /* スクロール時のマージン調整 */
}
.global-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* 中央揃え */
    flex-wrap: wrap;
}
.global-nav ul li {
    margin: 0 10px;
}
.global-nav ul li a {
    display: block;
    padding: 10px; /* 通常時のpadding */
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem; /* ナビゲーション文字も少し大きく */
    text-decoration: none;
    transition: padding 0.3s ease, font-size 0.3s ease;
}
.site-header.scrolled .global-nav ul li a {
    padding: 8px; /* スクロール時のpadding */
    font-size: 0.9rem; /* スクロール時のフォントサイズ */
}
.global-nav ul li a:hover,
.global-nav ul li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* --- メインビジュアル (Hero) --- */
.hero-section {
    background-image: url('./images/1.webp'); 
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 80px 0; /* 高さを確保 */
    text-align: center;
    position: relative; /* 疑似要素のため */
    /* margin-top: var(--header-height-normal); /* ヘッダー固定によるコンテンツの被りを防ぐ */
    /* JSでbodyのpadding-topを調整するので、ここは不要になることが多い */
}
.hero-section::before { /* 背景を少し暗くして文字を読みやすく */
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-content {
    position: relative; /* 文字を疑似要素より手前に */
    z-index: 2;
}
.hero-section h2 {
    font-size: 2.8rem; /* キャッチコピーを大きく */
    margin-bottom: 20px;
    color: var(--light-text-color); /* h2のデフォルト色を上書き */
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-section p {
    font-size: 1.3rem; /* サブテキストも大きく */
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- こんなお悩みありませんか？ --- */
.problem-list {
    list-style: none;
    padding-left: 0;
    columns: 2; /* 段組み (PC時) */
    column-gap: 40px;
}
.problem-list li {
    font-size: 1.1rem; /* リスト項目を大きく */
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.8em;
}
.problem-list li::before { /* チェックマーク風アイコン */
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.problem-solution {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
}

/* --- サービス内容 --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* レスポンシブなグリッド */
    gap: 30px;
}
.service-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.service-item .service-img {
    width: 100%;
    height: 180px; /* 画像の高さをある程度統一 */
    object-fit: cover; /* アスペクト比を保ちつつコンテナにフィット */
    margin-bottom: 15px;
    border-radius: 6px;
}
.service-item h3 {
    font-size: 1.3rem; /* サービス名を大きく */
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* --- 選ばれる理由 --- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.reason-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
}
.reason-item .reason-icon {
    font-size: 2rem; /* アイコンサイズ (仮) */
    color: var(--secondary-color);
    margin-bottom: 10px;
    /* 実際にはSVGやFont Awesomeなどを使用 */
}
.reason-item h3 {
    font-size: 1.25rem; /* 理由のタイトルを大きく */
    margin-bottom: 8px;
}

/* --- ご利用の流れ --- */
.flow-list {
    list-style: none;
    padding-left: 0;
    counter-reset: flow-counter; /* 番号付け用カウンター */
}
.flow-item {
    display: flex;
    align-items: flex-start; /* 上揃え */
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.flow-item .flow-number {
    counter-increment: flow-counter;
    content: counter(flow-counter);
    display: inline-flex; /* 中央揃えのため */
    align-items: center;
    justify-content: center;
    width: 50px; /* 番号の円のサイズ */
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    font-size: 1.5rem; /* 番号の文字サイズ */
    font-weight: 700;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0; /* 縮まないように */
}
.flow-content h3 {
    font-size: 1.3rem; /* フローのタイトル */
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* --- お客様の声 --- */
.voice-grid { /* .case-grid と共通化しても良い */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.voice-item { /* .case-item と共通化しても良い */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.voice-item .voice-avatar {
    width: 80px; /* アバターサイズ */
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    float: left; /* テキスト回り込み */
}
.voice-item h4 {
    font-size: 1.15rem; /* お客様の名前を大きく */
    margin-bottom: 5px;
}

/* --- 施工事例 --- */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.case-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    /* display: block; を追加して、hiddenクラスが外れたときに正しく表示されるようにする */
    display: block; 
}
.case-item .case-img {
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.case-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.case-item--hidden {
    display: none !important; /* JSでクラスを外すまで確実に非表示 */
}


/* --- 料金案内 --- */
.price-intro {
    font-size: 1.1rem; /* 導入文を大きく */
    margin-bottom: 30px;
}
.price-table-wrapper {
    overflow-x: auto; /* スマホで表がはみ出る場合スクロール可能に */
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 1rem; /* 表内の文字サイズ */
}
.price-table th, .price-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px; /* セル内余白を大きく */
    text-align: left;
}
.price-table th {
    background-color: var(--bg-light-color);
    font-weight: 700;
}
.price-table td:nth-child(2) { /* 料金目安の列 */
    font-weight: 700;
    text-align: right;
    min-width: 150px;
}
.price-note {
    font-size: 0.9rem;
    color: #555;
}

/* --- よくあるご質問 (FAQ) --- */
.faq-list .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
}
.faq-list .faq-item summary {
    padding: 15px 20px; /* summaryの余白を大きく */
    font-weight: 700;
    font-size: 1.15rem; /* 質問文を大きく */
    cursor: pointer;
    position: relative;
    list-style: none; /* デフォルトのマーカーを消す */
}
.faq-list .faq-item summary::-webkit-details-marker { display: none; } /* Chrome/Safari */
.faq-list .faq-item summary::after { /* カスタムマーカー (開閉矢印) */
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
.faq-list .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-list .faq-item p {
    padding: 0 20px 15px;
    margin-bottom: 0; /* pタグのデフォルトマージンをリセット */
    font-size: 1rem; /* 回答文のサイズ */
}

/* --- 会社概要 --- */
.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem; /* 表内の文字サイズ */
}
.company-table th, .company-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px; /* セル内余白を大きく */
    text-align: left;
    vertical-align: top;
}
.company-table th {
    background-color: var(--bg-light-color);
    width: 25%; /* 見出し列の幅 */
    font-weight: 700;
    min-width: 120px;
}

/* --- お問い合わせCTA --- */
.contact-cta-section h2 {
    color: var(--primary-color); /* CTAセクションのタイトル色 */
}
.contact-cta-section p {
    font-size: 1.15rem; /* CTAのテキストを大きく */
    margin-bottom: 30px;
}
.contact-cta-methods {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.contact-cta-tel, .contact-cta-form {
    flex-basis: 45%;
    min-width: 280px; /* スマホでの最小幅 */
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-cta-label {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px !important; /* pのデフォルトマージンを上書き */
}
.contact-cta-tel-number {
    display: block;
    font-size: 2.2rem; /* 電話番号を特に大きく */
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-decoration: none;
}
.contact-cta-tel-number:hover {
    color: darken(var(--secondary-color), 10%);
}
.contact-cta-time, .contact-cta-note {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0 !important;
}

/* --- フッター --- */
.site-footer {
    background-color: #333333;
    color: #cccccc;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 0.9rem;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-info h3 {
    color: var(--light-text-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.footer-info p {
    margin-bottom: 5px;
}
.footer-info a, .footer-nav a {
    color: #cccccc;
}
.footer-info a:hover, .footer-nav a:hover {
    color: var(--light-text-color);
    text-decoration: underline;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    margin-bottom: 8px;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555555;
    font-size: 0.85rem;
}
.copyright p { margin-bottom: 0; }

/* --- レスポンシブ対応 --- */
@media (max-width: 992px) { /* タブレットサイズ程度 */
    .logo h1 { font-size: 1.6rem; }
    .site-header.scrolled .logo h1 { font-size: 1.4rem; }
    .header-tel-number { font-size: 1.4rem; }
    .site-header.scrolled .header-tel-number { font-size: 1.2rem; }

    .hero-section h2 { font-size: 2.2rem; }
    .hero-section p { font-size: 1.1rem; }
    .problem-list { columns: 1; } /* 段組み解除 */
}

@media (max-width: 768px) { /* スマホサイズ */
    html { font-size: 15px; } /* ベースフォントを少し小さく */
    
    body {
      /* スマホではJSでpadding-topを動的に変更する方が確実な場合がある */
      /* --header-height-normal: 100px; /* スマホでの通常時ヘッダー高さ目安 */
      /* --header-height-scrolled: 60px; /* スマホでのスクロール時ヘッダー高さ目安 */
    }

    .site-header {
        padding: 10px 0; /* スマホでの通常時padding */
    }
    .site-header.scrolled {
        padding: 5px 0; /* スマホでのスクロール時padding */
    }
    .header-container {
        flex-direction: column;
        align-items: center; /* ヘッダー内要素を中央揃え */
    }
    .logo, .header-contact {
        text-align: center; /* ロゴと連絡先も中央に */
        margin-bottom: 10px;
    }
    .site-header.scrolled .logo, .site-header.scrolled .header-contact {
        margin-bottom: 5px;
    }

    .logo h1 { font-size: 1.5rem; }
    .site-header.scrolled .logo h1 { font-size: 1.3rem; }
    .logo .tagline, .site-header.scrolled .logo .tagline { /* スマホではタグライン常時非表示も検討 */
        font-size: 0.8rem;
        opacity: 1; height: auto; overflow: visible; /* 表示する場合 */
    }
    .site-header.scrolled .logo .tagline {
         opacity: 0; font-size: 0; height: 0; overflow: hidden; /* やはり非表示にする場合 */
    }


    .header-tel-label { font-size: 0.8rem; }
    .site-header.scrolled .header-tel-label { font-size: 0.7rem; }
    .header-tel-number { font-size: 1.3rem; }
    .site-header.scrolled .header-tel-number { font-size: 1.1rem; }
    .header-reception-time, .site-header.scrolled .header-reception-time { /* スマホでは受付時間常時非表示も検討 */
        font-size: 0.7rem;
        opacity: 1; height: auto; overflow: visible; /* 表示する場合 */
    }
     .site-header.scrolled .header-reception-time {
         opacity: 0; font-size: 0; height: 0; overflow: hidden; /* やはり非表示にする場合 */
    }

.global-nav {
        display: none; /* Hide the navigation on small screens */
    }
/*
    .global-nav { margin-top: 5px; }
    .site-header.scrolled .global-nav { margin-top: 0; }
    .global-nav ul {
        flex-direction: column; /* ナビを縦並び */
/*        align-items: center;
    }
    .global-nav ul li {
        margin: 2px 0; /* 少し詰める */
/*        width: 100%;
        text-align: center;
    }
    .global-nav ul li a {
        padding: 8px; /* スマホでのナビpadding */
/*        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-color);
    }
    .site-header.scrolled .global-nav ul li a {
        padding: 7px;
        font-size: 0.85rem;
    }
    .global-nav ul li a:hover,
    .global-nav ul li a.active {
        border-bottom: 1px solid var(--primary-color); /* ホバー時の下線を細く */
/*    }
*/
    .hero-section { padding: 31px 0; }
    .hero-section h2 { font-size: 1.8rem; }
    .hero-section p { font-size: 1rem; }
    .btn { padding: 10px 20px; font-size: 1rem; }
    .btn-lg { padding: 12px 25px; font-size: 1.1rem; }

    .section-title { font-size: 1.6rem; }

    .service-grid, .reason-grid, .voice-grid, .case-grid {
        grid-template-columns: 1fr; /* 1カラムに */
    }
    .flow-item {
        flex-direction: column; /* フローアイテムも縦並び */
        align-items: center;
        text-align: center;
    }
    .flow-item .flow-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .voice-item .voice-avatar {
        float: none;
        margin: 0 auto 10px;
    }
    .voice-item { text-align: center; }

    .company-table th, .company-table td {
        display: block; /* テーブルをカード型表示に */
        width: 100%;
        text-align: left !important; /* text-alignをリセット */
    }
    .company-table th {
        background-color: transparent;
        font-weight: bold;
        border-bottom: none;
        padding-bottom: 2px;
    }
    .company-table td {
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 10px; /* 各項目の間隔 */
    }
    .company-table tr:last-child td:last-child { border-bottom: none; }


    .contact-cta-methods {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta-tel, .contact-cta-form {
        flex-basis: auto; /* 幅を自動に */
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-cta-tel-number { font-size: 1.8rem; }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav ul {
        align-items: center;
    }
    .sp-only { display: inline; } /* スマホでのみ表示する要素 */
}

