header{
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
/* FAQ専用アコーディオンのスタイル */
.faq-btn {
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none !important;
    padding-right: 2.5rem !important; /* アイコン用の余白 */
    color: #333 !important;
}

/* 右側の矢印アイコン（擬似要素で作成） */
.faq-btn::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #007bff; /* 宅配クックの青色 */
    border-right: 2px solid #007bff;
    transform: rotate(45deg); /* 下向き矢印 */
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

/* 開いている時（collapsedクラスが外れた時）の動き */
.faq-btn:not(.collapsed)::after {
    transform: rotate(-135deg); /* 上向き矢印に回転 */
    margin-top: 5px;
}

/* ホバー時の背景色を少し明るく（PC用） */
.faq-btn:hover {
    background-color: rgba(0, 123, 255, 0.05);
}
/* --- お問い合わせセクション全体の装飾 --- */
.cta-box {
    background-color: #fffaf0; /* 薄いオレンジ背景 */
    border: 3px solid #ed6c00 !important; /* 宅配クックオレンジ */
    border-radius: 20px;
}

.border-orange {
    border-color: #ed6c00 !important;
}

/* --- 電話ボタン（共通） --- */
.btn-phone {
    background-color: #28a745; /* 安心感のある緑 */
    color: white !important;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.btn-phone:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* --- ボタン内のテキスト調整 --- */
.sub-text {
    font-size: 1.1rem;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
}

.main-tel-no {
    font-size: 2.5rem; /* PCサイズ */
    letter-spacing: 0.05em;
    display: block;
    width: 100%;
    white-space: nowrap; /* 改行禁止 */
    text-align: center;
}

/* --- スマホ用レスポンシブ（はみ出し防止） --- */
@media (max-width: 576px) {
    /* ボタンの内側余白を削って文字スペースを確保 */
    .btn-phone.py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    /* サブテキスト：画面幅に合わせて縮小 */
    .sub-text {
        font-size: 4vw !important; 
    }

    /* 電話番号：画面幅に合わせて自動縮小（絶対にはみ出さない） */
    .main-tel-no {
        font-size: 7.2vw !important; 
    }

    /* 見出しのスマホサイズ */
    .cta-box h2 {
        font-size: 1.5rem;
    }
}

/* 超小型スマホ（iPhone SE等）への最終調整 */
@media (max-width: 320px) {
    .main-tel-no {
        font-size: 22px !important;
    }
}