/* --- 全店一括表示・非表示の制御 --- */
/* 表示したいときはコメントアウトする。非表示したいときはコメントアウトをはずす。 */
#common-notice-target {
    display: none;
}


/* ================================
   アコーディオン用お知らせデザイン
================================ */

/* 全体ボックス */
.c-notice-box {
    margin: clamp(20px, 5vw, 60px) auto 20px;
    /* margin: 30px auto 20px; */
    width: 100%;
    max-width: 900px;
    border: 2px solid #f9b539;
    background-color: #fff;
    text-align: center;
    line-height: 1.6;
}

/* タイトル（ボタン化） */
.c-notice-box__heading {
    font-size: 32px;
    font-weight: normal;
    background-color: #fdb32b;
    color: #fff;
    margin: 0 auto;
    cursor: pointer;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* 開閉アイコン */
.c-notice-box__heading::after {
    content: " ▼";
    font-size: 18px;
}

.c-notice-box__heading[aria-expanded="true"]::after {
    content: " ▲";
}

/* 本文 */
.c-notice-box__body {
    display: none; /* ← 初期は閉じる */
}

.c-notice-box__text {
    margin: 0 auto;
    padding: 15px 10px;
    background: #fff;
    letter-spacing: .04em;
}

/* 強調（赤字・太字） */
.u-text-emphasis {
    color: #e60000;
    font-weight: bold;
}

/* スマホ用改行制御 */
@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .c-notice-box__heading {
        font-size: 20px;
    }
}

@media screen and (max-width: 568px) and (min-width: 450px) {
    .c-notice-box {
        margin-top: clamp(
            80px,
            calc(80px + (190 - 80) * ((100vw - 450px) / (568 - 450))),
            190px
        );
    }
}

@media screen and (max-width: 400px) and (min-width: 390px) {
    .c-notice-box {
        margin-top: 0;
    }
}