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%;

        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; /* 画像の間に10pxの隙間を作る */
    img {
        width: calc(50% - 5px); /* 隙間の分を引いて計算 */
        height: auto;
    }
        video {
        width: calc(50% - 5px); /* 隙間の分を引いて計算 */
        height: auto;
    }
}

.line_up{
background-color: #F6F7F4;
padding: 4% 0 0 0;
}

.product_container{
padding: 0 0 0 0;
}

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

.presentcp{
background-color: #F6F7F4;
padding: 0 0 8%;
}

.btn{
margin-top: 4%;
}

.cp_content_inner{
    display: flex;
    flex-direction: column;
    gap: 10%;
    padding: 4% 0 0 0;
    .inner_l{
        padding: 4%;
    }
}


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

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

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

/* アコーディオン全体のコンテナ */
.accordion {
    /* お好みの幅に調整してください */
    margin-bottom: 12%;
}

/* ヘッダー（ボタン）のスタイル */
.accordion-header {
    width: 100%;
    background-color: #2b222a;
    /* 画像に近いダークブラウン */
    color: #fff;
    border: none;
    padding: 16px 20px;
    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.2rem;
}

/* アイコンと区切り線のエリア */
.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 #E0DFDD;
    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% 16%;
    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%;
}

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

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

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