/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div#outer {
    max-width: unset;
}

html {
    scroll-behavior: smooth;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #0A3051;
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contents {
    width: 100vw;
    overflow-x: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* セクション共通 */
section {
    width: 100%;
}

/* ヒーローセクション */
.hero {
    width: 100vw;
    height: 46.389vw;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__bg img {
    object-fit: fill;
}

.hero__product {
    position: absolute;
    left: 27.361vw;
    top: 11.25vw;
    width: 82.361vw;
    height: 38.125vw;
    z-index: 1;
    pointer-events: none;
}

.hero__product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.hero__container {
    position: absolute;
    left: 5.556vw;
    top: 7.014vw;
    z-index: 2;
    width: 58.333vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.667vw;
}

.hero__text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.667vw;
}

.hero__title {
    margin: 0;
    padding: 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 3.889vw;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
    color: #DAD6CA;
}

.hero__text {
    width: 47.222vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #CCC9C9;
    margin: 0;
}

.hero__cta {
    width: 37.708vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.556vw;
}

.hero__cta-note {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    text-align: center;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.556vw;
    width: 100%;
    padding: 1.667vw 5.556vw;
    border: 2px solid #DAD6CA;
    border-radius: 0.139vw;
    background-color: #770312;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.16);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    text-decoration: none;
    box-sizing: border-box;
}

.hero__button::after {
    content: '';
    width: 1.667vw;
    height: 1.667vw;
    flex-shrink: 0;
    background-image: url('../images/hero-arrow.svg');
    background-size: 1.667vw 1.667vw;
    background-repeat: no-repeat;
    background-position: center;
}

/* ストーリーセクション */
.story {
    width: 100vw;
    padding: 6.944vw 8.333vw;
    position: relative;
    background-color: #DAD6CA;
    overflow: hidden;
}

.story__deco {
    position: absolute;
    left: -3.819vw;
    top: 1.528vw;
    width: 100.694vw;
    height: 54.583vw;
    z-index: 0;
    pointer-events: none;
}

.story__deco img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
}

.story__container {
    position: relative;
    z-index: 1;
    width: 83.333vw;
    display: flex;
    flex-direction: column;
    gap: 5.556vw;
}

.story__head {
    display: flex;
    align-items: flex-start;
    gap: 6.944vw;
    width: 100%;
}

.story__title-wrap {
    width: 30.833vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.556vw;
}

.story__entitle {
    font-family: 'Taprom', cursive;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #770312;
    margin: 0;
}

.story__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.333vw;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    color: #770312;
    margin: 0;
}

.story__text {
    flex: 1;
    min-width: 0;
}

.story__text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.111vw;
    font-weight: 400;
    line-height: 2;
    color: #770312;
    margin: 0;
}

.story__text p + p {
    margin-top: 2em;
}

.story__image {
    width: 61.875vw;
    height: 18.333vw;
    margin: 0 auto;
    border-radius: 0.278vw;
    overflow: hidden;
}

.story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 0.278vw;
}


/* 追従CTA */
.fixed-cta {
    position: fixed;
    right: 1.667vw;
    bottom: 1.667vw;
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 27.778vw;
    padding-top: 0.972vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fixed-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fixed-cta__note {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin: 0;
    padding: 0 0.833vw 0.1vw;
    background-color: #1C1C1F;
    border: 1px solid #DAD6CA;
    border-radius: 0.278vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.833vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    white-space: nowrap;
}

.fixed-cta__note strong {
    font-size: 1.111vw;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fixed-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.556vw;
    width: 100%;
    height: 4.444vw;
    padding: 1.389vw 1.667vw 0.833vw;
    border: 2px solid #DAD6CA;
    border-radius: 0.139vw;
    background-color: #770312;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.16);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.111vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    text-decoration: none;
    box-sizing: border-box;
}

.fixed-cta__button::after {
    content: '';
    width: 1.667vw;
    height: 1.667vw;
    flex-shrink: 0;
    background-image: url('../images/story-arrow.svg');
    background-size: 1.667vw 1.667vw;
    background-repeat: no-repeat;
    background-position: center;
}

/* ポイントセクション */
.point {
    width: 100vw;
    position: relative;
    background-color: #1E1511;
    overflow: hidden;
}

.point__header {
    padding: 8.333vw 8.333vw 5.556vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.556vw;
}

.point__entitle {
    font-family: 'Taprom', cursive;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    margin: 0;
}

.point__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #DAD6CA;
    margin: 0;
}

.point__panels {
    width: 100%;
}

.point__panel {
    display: flex;
    align-items: stretch;
    height: 36.111vw;
    background-color: #2C1F1A;
    overflow: hidden;
}

.point__panel:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #1E1511;
}

.point__image {
    width: 50vw;
    height: 36.111vw;
    flex-shrink: 0;
    overflow: hidden;
}

.point__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.point__body {
    width: 50vw;
    height: 36.111vw;
    padding: 5.556vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.667vw;
    box-sizing: border-box;
}

.point__num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1;
    color: #DAD6CA;
    opacity: 0.8;
    margin: 0;
}

.point__heading {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    color: #DAD6CA;
    margin: 0;
}

.point__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #CFCFCF;
    margin: 0;
}

/* 想いセクション */
.feeling {
    width: 100vw;
    height: 43.333vw;
    padding: 5.556vw;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.feeling__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.feeling__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.feeling__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.64);
}

.feeling__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.556vw;
}

.feeling__text-wrap {
    width: 59vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.778vw;
}

.feeling__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.24em;
    color: #DAD6CA;
    margin: 0;
}

.feeling__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    margin: 0;
}

.feeling__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.556vw;
    width: 33.889vw;
    padding: 1.667vw 5.556vw;
    border: 1px solid #DAD6CA;
    border-radius: 0.139vw;
    background: transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 4px 8px 0 rgba(0, 0, 0, 0.16);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    text-decoration: none;
    box-sizing: border-box;
}

.feeling__button::after {
    content: '';
    width: 1.667vw;
    height: 1.667vw;
    flex-shrink: 0;
    background-image: url('../images/feeling-arrow.svg');
    background-size: 1.667vw 1.667vw;
    background-repeat: no-repeat;
    background-position: center;
}

.feeling__video {
    width: 47.5vw;
    height: 27.292vw;
    flex-shrink: 0;
    border: 1px solid #ffffff;
    border-radius: 0.556vw;
    overflow: hidden;
    box-sizing: border-box;
}

.feeling__video-play {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.feeling__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.feeling__video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5.556vw;
    height: 5.556vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.feeling__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* お客様の声セクション */
.voice {
    width: 100vw;
    padding: 8.333vw 0;
    position: relative;
    background-color: #5A0808;
    overflow: hidden;
}

.voice__deco {
    position: absolute;
    left: 16.25vw;
    top: 2.569vw;
    width: 100.694vw;
    height: 54.583vw;
    z-index: 0;
    pointer-events: none;
    transform: rotate(180deg) scaleY(-1);
}

.voice__deco img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
}

.voice__container {
    position: relative;
    z-index: 1;
    width: 82.5vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.556vw;
}

.voice__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.556vw;
}

.voice__entitle {
    font-family: 'Taprom', cursive;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    margin: 0;
}

.voice__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #DAD6CA;
    margin: 0;
}

.voice__row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.667vw;
}

.voice__item {
    width: 26.389vw;
    background-color: #DAD6CA;
    border-radius: 1.111vw;
    padding: 1.667vw;
    display: flex;
    flex-direction: column;
    gap: 1.111vw;
    box-sizing: border-box;
}

.voice__stars {
    width: 10.556vw;
    height: 1.667vw;
}

.voice__stars img {
    width: 10.556vw;
    height: 1.667vw;
    object-fit: contain;
}

.voice__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.389vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #333333;
    margin: 0;
}

.voice__meta {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.111vw;
    font-weight: 400;
    line-height: 1.6;
    color: #3A322B;
    margin: 0;
}

/* ラインナップセクション */

/* ラインナップセクション */
.lineup {
    width: 100vw;
    padding: 8.333vw 0;
    position: relative;
    background-color: #6D0B15;
    overflow: hidden;
}

.lineup__deco {
    position: absolute;
    left: 1.319vw;
    top: 4.653vw;
    width: 100.694vw;
    height: 54.583vw;
    z-index: 0;
    pointer-events: none;
}

.lineup__deco img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
}

.lineup__container {
    position: relative;
    z-index: 1;
    width: 83.333vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.556vw;
}

.lineup__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.556vw;
}

.lineup__entitle {
    font-family: 'Taprom', cursive;
    font-size: 1.667vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #DAD6CA;
    margin: 0;
}

.lineup__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #DAD6CA;
    margin: 0;
}

.lineup__row {
    display: flex;
    align-items: flex-start;
}

@media (min-width: 781px) {
    .lineup__row {
        width: 100vw;
        margin-left: calc((83.333vw - 100vw) / 2);
        gap: 1.111vw;
    }

    .lineup__row.slick-initialized {
        display: block;
        width: 100vw;
        max-width: none;
        margin-left: calc((83.333vw - 100vw) / 2);
        margin-right: 0;
        flex-shrink: 0;
    }

    .lineup__row.slick-initialized .slick-list {
        overflow: hidden;
        padding-left: calc((100vw - 83.333vw) / 2);
    }

    .lineup__row.slick-initialized .slick-track {
        display: flex;
        align-items: stretch;
    }

    .lineup__row.slick-slider .slick-slide,
    .lineup__row.slick-initialized .slick-slide {
        height: auto;
        box-sizing: border-box;
        width: 24.722vw !important;
        margin-right: 1.111vw;
    }

    .lineup__row.slick-initialized .slick-slide > div {
        height: 100%;
    }

    .lineup__row.slick-initialized .lineup__item {
        width: 100%;
        max-width: 100%;
        height: 100%;
        width: 24.722vw !important;
        margin: 0 1.111vw;
    }

    
    .lineup__row.slick-initialized {
        position: relative;
    }

    .lineup__arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.333vw;
        height: 3.333vw;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
        border: 1px solid #DAD6CA;
        border-radius: 50%;
        background-color: rgba(109, 11, 21, 0.85);
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity 0.2s ease, background-color 0.2s ease;
    }

    .lineup__arrow:hover {
        background-color: #6D0B15;
    }

    .lineup__arrow.slick-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

    .lineup__arrow img {
        width: 1.389vw;
        height: 1.389vw;
        min-width: 16px;
        min-height: 16px;
        object-fit: contain;
    }

    .lineup__arrow--prev {
        left: calc((100vw - 83.333vw) / 2 / 2);
        transform: translateY(-50%) scaleX(-1);
    }

    .lineup__arrow--next {
        right: 2.083vw;
    }
}

.lineup__item {
    width: 24.722vw;
    background-color: #6D0B15;
    border: 2px solid #DAD6CA;
    border-radius: 0.556vw;
    padding: 2.222vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.667vw;
    position: relative;
    box-sizing: border-box;
}

.lineup__image {
    width: 100%;
    height: 12.5vw;
    overflow: hidden;
    border-radius: 0.556vw;
    position: relative;
}

.lineup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lineup__tag {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0.278vw 0.556vw;
    background-color: #DAD6CA;
    color: #770312;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25vw;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    border-radius: 0 0.556vw 0 0;
}

.lineup__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.lineup__body-inner {
    min-height: 9.236vw;
}

.lineup__name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.667vw;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #DAD6CA;
    margin: 0;
}

.lineup__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.111vw;
    width: 100%;
}

.lineup__price {
    display: flex;
    align-items: flex-end;
    gap: 0.278vw;
    color: #DAD6CA;
    margin: 0;
    margin-top: 0.556vw;
}

.lineup__price-label,
.lineup__price-unit {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25vw;
    font-weight: 600;
    line-height: 1;
}

.lineup__price-value {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.778vw;
    font-weight: 700;
    line-height: 1;
}

.lineup__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.556vw;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lineup__price-row .lineup__toggle {
    width: auto;
    flex-shrink: 0;
}

.lineup__shipping {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.6;
    color: #DAD6CA;
    text-align: left;
    margin-top: 1.111vw;
}

.lineup__chevron {
    width: 2.222vw;
    height: 0.972vw;
    transition: transform 0.2s ease;
}

.lineup__item.is-open .lineup__chevron {
    transform: rotate(180deg);
}

.lineup__detail {
    display: none;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 1.6;
    color: #DAD6CA;
    padding-top: 1.111vw;
}

.lineup__detail p {
    margin: 0;
}

.lineup__detail-note {
    font-size: 0.972vw;
}

.lineup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.556vw;
    width: 100%;
    padding: 1.111vw 5.556vw;
    background-color: #DAD6CA;
    border-radius: 0.139vw;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #6D0B15;
    text-decoration: none;
    box-sizing: border-box;
    margin-top: auto;
    margin-top: 1.667vw;
}

.lineup__button:hover {
    color: #6D0B15;
}

.lineup__button::after {
    content: '';
    width: 1.667vw;
    height: 1.667vw;
    flex-shrink: 0;
    background-image: url('../images/lineup-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* レスポンシブデザイン */
@media (max-width: 780px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .contents {
        width: 100vw;
    }

    /* セクション共通 */
    section {
        width: 100%;
        overflow-x: hidden;
    }

     /* ヒーローセクション SP */
    .hero {
        width: 100%;
        height: 170.667vw; /* 640 / 375 */
    }

    .hero__bg img {
        object-fit: cover;
        object-position: center center;
    }

    .hero__container {
        left: 4.267vw;
        top: 6.4vw;
        width: 91.467vw;
        height: 157.867vw; /* 592 / 375 */
        justify-content: space-between;
        gap: 0;
    }

    .hero__text-wrap {
        gap: 4.267vw;
    }

    .hero__title {
        font-size: 17.067vw; /* 64 / 375 */
        font-weight: 800;
        line-height: 1.4;
    }

    .hero__text {
        width: 100%;
        font-size: 4.8vw; /* 18 / 375 */
        letter-spacing: 0.08em;
    }

    .hero__cta {
        width: 100%;
        gap: 2.133vw;
    }

    .hero__cta-note {
        font-size: 3.733vw; /* 14 / 375 */
    }

    .hero__button {
        gap: 2.133vw;
        padding: 4.267vw 5.333vw;
        border-radius: 0.533vw;
        font-size: 3.733vw; /* 14 / 375 */
    }

    .hero__button::after {
        width: 6.4vw;
        height: 6.4vw;
        background-size: 6.4vw 6.4vw;
    }

    /* ストーリーセクション */
    .story {
        width: 100%;
        padding: 10.667vw 5.333vw;
    }

    .story__deco {
        left: -20%;
        top: 0;
        width: 140%;
        height: 70%;
        opacity: 0.7;
    }

    .story__container {
        width: 100%;
        gap: 10.667vw;
    }

    .story__head {
        flex-direction: column;
        gap: 6.4vw;
    }

    .story__title-wrap {
        width: 100%;
    }

    .story__entitle {
        font-size: 5.333vw;
    }

    .story__title {
        font-size: 6.4vw;
    }

    .story__text p {
        font-size: 3.733vw;
        line-height: 1.8;
    }

    .story__text p + p {
        margin-top: 1.8em;
    }

    .story__image {
        width: 100%;
        height: 42.667vw;
    }
    
    .fixed-cta {
        right: auto;
        left: 50%;
        bottom: 4.267vw;
        width: calc(100% - 8.533vw);
        max-width: 106.667vw;
        padding-top: 3.2vw;
        transform: translateX(-50%);
    }

    .fixed-cta__note {
        font-size: 2.933vw;
        padding: 0 2.667vw;
    }

    .fixed-cta__note strong {
        font-size: 3.733vw;
    }

    .fixed-cta__button {
        height: auto;
        min-height: 13.867vw;
        padding: 5.333vw 5.333vw 3.2vw;
        font-size: 3.733vw;
        gap: 1.6vw;
        height: 17.06vw;
    }

    .fixed-cta__button::after {
        width: 5.333vw;
        height: 5.333vw;
        background-size: 5.333vw 5.333vw;
    }
     
    /* ポイントセクション */
    .point {
        width: 100%;
    }

    .point__header {
        padding: 10.667vw 5.333vw 6.4vw;
    }

    .point__entitle {
        font-size: 5.333vw;
    }

    .point__title {
        font-size: 6.4vw;
        line-height: 1.4;
    }

    .point__panel,
    .point__panel:nth-child(even) {
        flex-direction: column;
        height: auto;
    }

    .point__image {
        width: 100%;
        height: 58.667vw;
    }

    .point__body {
        width: 100%;
        height: auto;
        padding: 8.533vw 5.333vw 10.667vw;
        gap: 4.267vw;
    }

    .point__num {
        font-size: 6.4vw;
    }

    .point__heading {
        font-size: 6.4vw;
        line-height: 1.4;
    }

    .point__text {
        font-size: 3.733vw;
        letter-spacing: 0.04em;
        line-height: 1.8;
    }

    /* 想いセクション */
    .feeling {
        width: 100%;
        height: auto;
        padding: 10.667vw 5.333vw;
    }

    .feeling__container {
        height: auto;
        flex-direction: column;
        gap: 6.4vw;
    }

    .feeling__text-wrap {
        width: 100%;
        gap: 6.4vw;
    }

    .feeling__title {
        font-size: 6.4vw;
        letter-spacing: 0.08em;
    }

    .feeling__text {
        font-size: 3.733vw;
        letter-spacing: 0.04em;
    }

    .feeling__button {
        width: 100%;
        padding: 4.267vw 6.4vw;
        font-size: 4.267vw;
        margin-top: 0;
    }

    .feeling__button::after {
        width: 6.4vw;
        height: 6.4vw;
        background-size: 6.4vw 6.4vw;
    }

    .feeling__video {
         position: absolute;
        top: 70vw;
        left: 0;
        width: 100%;
        height: 53.333vw;
    }

    .feeling__video-icon {
        width: 21.333vw;
        height: 21.333vw;
    }

    /* お客様の声セクション */
  .voice {
        width: 100%;
        padding: 10.667vw 0;
    }

    .voice__deco {
        left: -20%;
        top: 0;
        width: 140%;
        height: 70%;
        opacity: 0.5;
    }

    .voice__header {
        padding-left: 5.333vw;
    }

    .voice__container {
        width: 100%;
        gap: 10.667vw;
    }

    .voice__entitle {
        font-size: 5.333vw;
    }

    .voice__title {
        font-size: 6.4vw;
        line-height: 1.4;
    }
    
    .voice__row {
        display: block;
        width: 100%;
        position: relative;
    }

    .voice__arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 10.667vw;
        height: 10.667vw;
        padding: 0;
        border: 1px solid #DAD6CA;
        border-radius: 50%;
        background-color: rgba(90, 8, 8, 0.85);
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity 0.2s ease, background-color 0.2s ease;
    }

    .voice__arrow:hover {
        background-color: #5A0808;
    }

    .voice__arrow img {
        width: 4.267vw;
        height: 4.267vw;
        object-fit: contain;
    }

    .voice__arrow--prev {
        left: 0;
        transform: translateY(-50%) scaleX(-1);
    }

    .voice__arrow--next {
        right: 0;
    }

    .voice .slick-list {
        overflow: hidden;
    }

    .voice .slick-track {
        display: flex;
        align-items: stretch;
    }

    .voice .slick-initialized .slick-slide {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        min-height: 60vw;
    }

    .voice .slick-slide > div {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .voice__item {
        width: calc(100% - 5.334vw);
        flex: 1 1 auto;
        min-height: 56vw;
        margin: 0 2.667vw;
        padding: 5.333vw;
        gap: 3.2vw;
        justify-content: flex-start;
        align-items: stretch;
    }

    .voice__stars {
        width: 40.533vw;
        height: 6.4vw;
    }

    .voice__stars img {
        width: 40.533vw;
        height: 6.4vw;
        object-fit: contain;
    }

    .voice__text {
        font-size: 3.733vw;
        letter-spacing: 0.04em;
    }

    .voice__meta {
        font-size: 3.733vw;
    }
    /* ラインナップセクション */
    .lineup {
        width: 100%;
        padding: 10.667vw 5.333vw;
    }

    .lineup__deco {
        left: -20%;
        top: 0;
        width: 140%;
        height: 70%;
        opacity: 0.5;
    }

    .lineup__container {
        width: 100%;
        gap: 10.667vw;
    }

    .lineup__entitle {
        font-size: 5.333vw;
    }

    .lineup__title {
        font-size: 6.4vw;
    }

    .lineup__body-inner {
        min-height: unset;
    }

    .lineup__row {
        flex-direction: column;
        align-items: stretch;
        gap: 4.267vw;
        width: 100%;
    }

    .lineup__item {
        width: 100%;
        padding: 6.4vw;
        gap: 4.267vw;
    }

    .lineup__image {
        height: 42.667vw;
    }

    .lineup__tag {
        font-size: 3.733vw;
        padding: 1.067vw 2.133vw;
    }

    .lineup__name {
        font-size: 5.333vw;
        letter-spacing: 0.04em;
    }

    .lineup__price-value {
        font-size: 8.533vw;
    }

    .lineup__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.133vw;
        width: 100%;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }
    
    .lineup__price-row .lineup__toggle {
        width: auto;
        flex-shrink: 0;
    }
    
    .lineup__shipping {
        font-size: 4.8vw;
        margin-top: 4.267vw;
    }
    
    .lineup__chevron {
        width: 8.533vw;
        height: 3.733vw;
    }

    .lineup__price-label,
    .lineup__price-unit,
    .lineup__shipping {
        font-size: 4.267vw;
    }

    .lineup__detail {
        font-size: 3.733vw;
        padding-top: 4.267vw;
    }

    .lineup__detail-note {
        font-size: 3.2vw;
    }

    .lineup__button {
        padding: 3.733vw 6.4vw;
        font-size: 4.267vw;
        margin-top: 5.33vw;
    }

    .lineup__button::after {
        width: 6.4vw;
        height: 6.4vw;
        background-size: 6.4vw 6.4vw;
    }
}
