body {
    font-size: 10px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
}

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

.display_wrap {
    background-image: url(../img/bg_display.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    /* 追加: 外側がスクロールしないように固定 */
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

.content_inner {
    margin: 0 auto;
    max-width: 620px;
    box-shadow: -5px 0 12px -2px rgba(0, 0, 0, 0.1), 5px 0 12px -2px rgba(0, 0, 0, 0.1);
    /* 追加: 親要素に合わせて高さを確保し、縦スクロールさせる */
    height: 100vh;
    overflow-y: auto;
}

@media screen and (max-width: 619px) {
    .content_inner {
        box-shadow: none;
    }
}

.full {
    img {
        width: 100%;
    }

    a {
        img {
            width: 100%;
        }
    }
}

.inner_l {
    padding: 0 6%;

    img {
        width: 100%;
    }

    a {
        img {
            width: 100%;
        }
    }

    .movie {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 5%;

        video {
            width: 100%;
            /* 隙間の分を引いて計算 */
            height: auto;
        }

        img {
            margin: 0 auto;
        }
    }
}

.inner_m {
    img {
        width: 100%;
        padding: 0px 12%;
    }

    a {
        img {
            width: 100%;
            padding: 0px 6%;
        }
    }
}

.flex {
    display: flex;
}

.short {
    width: 100%;
    gap: 10px;

    img {
        width: calc(50% - 5px);
        height: auto;
    }

    video {
        width: calc(50% - 5px);
        height: auto;
    }
}

.line_up {
    background-image: url(../img/bg_lineup.jpg);
    padding: 8% 0 16% 0;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.product_container {
    padding: 0 0 0 0;
}

.brand_concept {
    background-color: #F6F7F4;
}

.special_contents {
    background-color: #F6F7F4;
    padding: 10% 0 12%;
}

.presentcp {
    background-color: #ffffff;
    padding: 0;
}

.btn {
    margin-top: 4%;
}

.cp_content_inner {
    display: flex;
    flex-direction: column;
    background-image: url(../img/bg_pic.png);
    gap: 10%;
    padding: 4% 0 8% 0;

    .inner_l {
        padding: 4%;
    }
}


.webcm {
    background: linear-gradient(-20deg, #E36978 0%, #E68B94 100%);
    padding: 0px 0px 4%;
}


.making {
    padding: 6% 0px 0px;
    background-color: #ffffff;
}

.interview {
    padding: 0px 0px 10%;
    background-color: #ffffff;
}


.qa {
    background-color: #FFF7F8;
    padding: 16% 0% 16%;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.qa-container {
    color: #d16b7f;
    padding: 8% 4% 0%;
}

.qa-item {
    border-bottom: 1px solid #EE8798;
}

.qa-item:first-of-type {
    border-top: 1px solid #EE8798;
}

/* ボタンのリセットと装飾 */
.qa-question {
    width: 100%;
    text-align: left;
    font-family: "Shippori Mincho", serif;
    background: none;
    border: none;
    outline: none;
    padding: 24px 40px 24px 16px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    font-size: 17px;
    color: #EE8798;
    line-height: 1.6;
    background-color: #ffffff;
    display: block;
}

/* アイコン (+/-) */
.qa-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #EE8798;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

/* 開いている時のアイコン変化 */
.qa-item.is-open .qa-question::after {
    content: '−';
}

@media screen and (max-width: 619px) {
    .qa-question::after {
        content: '+';
        position: absolute;
        right: 15px;
        font-size: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background-color: #EE8798;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
    }
}


/* 回答の隠れる部分 */
.qa-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    /* ここで滑らかさを制御 */
    background-color: #FCE5EB;
}

/* 内側の余白（高さ計算を正確にするため） */
.qa-answer-inner {
    padding: 20px;
    color: #6B5C5F;
    font-size: 16px;
    line-height: 1.6;
}

.qa-answer-inner small {
    font-size: 10px;
}

/* ====================

=====================
アコーディオン系CSS
=====================

====================*/

/* アコーディオン全体のコンテナ */
.accordion {}

/* ヘッダー（ボタン）のスタイル */
.accordion-header {
    width: 100%;
    background-color: #EE8798;
    color: #fff;
    border: none;
    padding: 20px 20px;
    box-shadow: 0px 1px 3px #F7D9E3;
    display: flex;
    justify-content: center;
    /* タイトルを中央に */
    align-items: center;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    /* 閉じている時は四隅が角丸 */
    transition: border-radius 0.3s ease;
}

.accordion-header:hover {
    opacity: 0.8;
    transition: 0.4s ease;
}

/* 開いている時のヘッダーのスタイル */
.accordion-header.is-open {
    border-radius: 8px 8px 0 0;
    /* 下部の角丸をなくす */
}

/* タイトルテキスト */
.accordion-title {
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
}

/* アイコンと区切り線のエリア */
.accordion-icon-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-left は削除します */
}

/* 区切り線を疑似要素で作成し、上下に余白を持たせる */
.accordion-icon-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    /* 上の余白（数値を変更してお好みの長さに調整してください） */
    bottom: 14px;
    /* 下の余白（数値を変更してお好みの長さに調整してください） */
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    /* 薄い区切り線 */
}

/* ＋/－ アイコンの作成（CSSで描画） */
.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* アイコンの横線 */
.accordion-icon::before {
    width: 100%;
    height: 1px;
}

/* アイコンの縦線 */
.accordion-icon::after {
    width: 1px;
    height: 100%;
}

/* 開いている時は縦線を消して「－」にする */
.accordion-header.is-open .accordion-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* コンテンツ部分の開閉アニメーション設定 */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    /* 閉じている状態 */
    transition: grid-template-rows 0.3s ease;
    box-shadow: 0px 1px 3px #F7D9E3;
    border-radius: 0px 0px 8px 8px;
}

/* 開いている時のコンテンツ部分 */
.accordion-header.is-open+.accordion-content {
    grid-template-rows: 1fr;
    /* 開いた状態 */
}

/* はみ出した要素を隠すためのラッパー */
.accordion-inner {
    overflow: hidden;
}

/* 中身のデザイン */
.accordion-body {
    padding: 8% 0% 8%;
    background-color: #fff;
    text-align: center;
    border-radius: 0px 0px 8px 8px;
    line-height: 1.8;
    /* 開いた時のコンテンツ枠線（必要に応じて） */
    border-top: none;
    display: flex;
    gap: 2.5rem;
    flex-direction: column;
}

.product_acc_inner {
    img {
        width: 90%;
    }

}


.comment {
    padding-top: 4%;
}

@media screen and (max-width: 619px) {
    .accordion-title {
        font-size: 1.2rem;
    }
}

/* ====================

=====================
アコーディオン系CSS END
=====================

====================*/