@charset "UTF-8";

/*************************
font_import
*************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/*************************
reset style　＆　CMS unique style
*************************/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}*[hidden]{display:none}body{line-height:1}menu,ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}body.noscroll{overflow:hidden}.iframe{width:100%;height:100%}.overlay{position:fixed;top:0;left:0;height:100vh;width:100%}.overlay.hidden{top:-100vh}#header.fixed{top:0;height:48px;position:sticky;box-shadow:0 2px 10px #2121211a}#header,#footer{overflow:hidden}@media screen and (min-width: 768px){#header.fixed{height:64px}}

*, *::before, *::after { box-sizing: border-box; }

#header {
	position: relative;
	z-index: 100;
}

#drawer.overlay,
#search-modal.overlay { z-index: 101; }

#drawer.overlay.hidden,
#search-modal.overlay.hidden {
	opacity: 0;
	z-index: 0;
}

/* 以下へページ固有のスタイル記述していく */

/*************************
custom properties
*************************/

#LP {
    /* 汎用カラー */
    --lp-color-black: #00020f;
	--lp-color-dark-brown: #624753;
    --lp-color-dark-gray: #89707b;
	--lp-color-gray: #868281;
    --lp-color-dark-gray: #646464;
	--lp-color-white: #fff;
    --lp-color-bg: #f8fbff;

    /* メインカラー */
    --lp-color-kv-black: #201513;
    --lp-color-off-white: #f5f2f2;
    --lp-color-pink-soft: #e4ced1;
    --lp-color-pink-hard: #f55198;

    --lp-color-blue-dark: #2c5591;
    --lp-color-blue-soft: #e4e8f2;
    --lp-color-blue-primary: #2882ff;

    /* アクセントカラー */
    --lp-color-red-deep: #be1d1d;
    --lp-color-yellow-bright: #f5e956;

    /* 陰影カラー */
    --lp-color-shadow: rgba(50, 50, 50, .1);
}

/*************************
main
SP_layout（980px未満）
*************************/

body {
    font-family: 
        -apple-system, BlinkMacSystemFont, 
        "Segoe UI", "Helvetica Neue", Arial, 
        "Hiragino Sans", "Hiragino Kaku Gothic ProN", 
        "BIZ UDPGothic", Roboto, sans-serif;

    &:has(.is_end) { overflow-y: hidden; }
}

@keyframes loadingTextBox {
	0% {
        opacity: 0;
        transform: translateY(20px);
	}
	100% {
        opacity: 1;
        transform: translateY(0);
	}
}

#LP {
	color: var(--lp-color-black);
    font-family:
        'Helvetica','Helvetica Neue', Arial,
        "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Segoe UI", sans-serif;
    text-decoration: none;
    letter-spacing: -.05em;
    position: relative;
    overflow: hidden;
	width: 100%;

    &.is_end {
        pointer-events: none;
        user-select: none;
    }

    .campaiginEnd {
        display: none;

        .is_end & {
            background-color: rgba(0, 0, 0, .4);
            content: "";
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            z-index: 10;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 100vh;

            .campaiginEnd__text {
                animation: loadingTextBox .6s;
                background-color: var(--lp-color-white);
                border-radius: 5px;
                color: var(--lp-color-black);
                font-size: 4vw;
                font-weight: 700;
                line-height: 1.5;
                text-align: center;
                transform: translateY(0);
                padding: 5%;
                width: 90%;
                height: auto;

                > span {
                    font-size: .7em;
                    font-weight: 400;
                }
            }
        }
    }

    img {
        user-select: none;
        vertical-align: bottom;
        width: 100%;
        height: auto;
    }

    time,
    span {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
    }

    a {
        display: block;
        text-decoration: none;
        transition: filter .4s;
        &:hover { filter: brightness(.95); }
    }

    .device_sp { display: block; }
    .device_pc { display: none; }
    .textBlock { display: block; }

    .common__headerRibbon {
        background-color: var(--lp-color-black);
        color: var(--lp-color-white);
        clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 50%);
        font-size: 5vw;
        font-weight: 700;
        line-height: 1.2;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        user-select: none;
        margin: 0 auto;
        margin-bottom: 1.5em;
        padding: .75em 1em;
        min-height: 2.5em;

        .tohji & {
            background:
                linear-gradient(
                    to bottom,
                    #096591,
                    #093191
                );
        }
    }

    .common__region {
        border-radius: 15px;
        &:not(:last-of-type) { margin-bottom: 10%; }
    }

    .common__inner {
        margin: 0 auto;
        width: 100%;
        max-width: 1060px;
    }

    .common__button {
        > a {
            background-color: var(--lp-color-black);
            border-radius: 100px;
            color: var(--lp-color-white);
            font-size: 3.3vw;
            font-weight: 700;
            line-height: 1.4;
            display: flex;
            flex-flow: column wrap;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            user-select: none;
            position: relative;
            margin: 0 auto;
            padding: .5em 1em;
            width: 80%;
            min-height: 3.6em;

            &::after {
                border-top: 2px solid var(--lp-color-white);
                border-right: 2px solid var(--lp-color-white);
                content: "";
                display: block;
                position: absolute;
                top: calc(50% - 1vw);
                right: 1em;
                transform: rotate(45deg);
                transition: border .4s, filter .4s;
                width: 2vw;
                height: 2vw;
            }

            &.event {
                background-color: var(--lp-color-yellow-bright);
                color: var(--lp-color-black);

                &::after {
                    border-top-color: var(--lp-color-black);
                    border-right-color: var(--lp-color-black);
                }
            }

            .tohji &:not(.andmall) {
                background:
                    linear-gradient(
                        to bottom,
                        #096591,
                        #093191
                    );
                }

            &.members { width: 100%; }
            &.andmall { background-color: var(--lp-color-blue-primary); }
        }
    }

    .kv {
        background-color: var(--lp-color-black);
        width: 100%;
        height: auto;
    }

    .kv__h1 {
        margin: 0 auto;
        width: 100%;
    }

    .contents { background-color: var(--lp-color-white); }

    .contents__inner {
        margin: 0 auto;
        padding: 2em 0;
        width: calc(100% - 3vw * 2);
        max-width: 1100px;
    }

    .contents__header {
        text-align: center;
        line-height: 1.4;
        letter-spacing: -.025em;
        margin-bottom: 10%;
    }

    .contents__header__h2 {
        color: var(--lp-color-black);
        font-size: 3.6vw;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 1em;

        .textBlock {
            &.device_pc { display: block; }
            &.device_sp { display: inline; }
        }
    }

    .contents__header__block:not(:last-of-type) { margin-bottom: 8%; }

    .contents__header__dialog,
    .contents__header__text {
        color: var(--lp-color-black);
        font-size: 3.3vw;
        font-weight: 800;
        line-height: 1.4;

        &:not(:last-child) { margin-bottom: 2em; }

        .textBlock {
            &.device_pc { display: block; }
            &.device_sp { display: inline; }
        }
    }

    .contents__header__text {
        line-height: 1.8;
        letter-spacing: .025em;
    }

    .contents__header__dialog {
        background-color: var(--lp-color-blue-soft);
        border-radius: 6px;
        padding: 2.5em 2em;
    }

    .contents__header__dialog--block {
        margin: 0 auto;
        width: 100%;
        max-width: 750px;
    }

    .contents__header__dialog--explanation {
        font-size: 1.15em;
        text-align: left;
        margin-bottom: 1.5em;

        &.textSmall { font-size: 1em; }

        > div:not(:last-of-type) { margin-bottom: .5em; }

        .explanation__block {
            display: flex;
            align-items: center;
            gap: 1em;

            .explanation__header {
                font-size: .9em;
                flex: 1;
                display: flex;
                align-items: center;
                gap: .2em;

                &::before {
                    background-color: var(--lp-color-black);
                    content: "";
                    display: block;
                    flex-shrink: 0;
                    width: .9em;
                    height: .9em;
                }
            }

            .explanation__value {
                font-size: .75em;
                font-weight: 600;
                flex: 3;
            }
        }
    }

    .contents__header__dialog--list {
        font-size: .85em;
        font-weight: 600;
        text-align: left;
        padding-left: 1em;

        > li {
            position: relative;

            &::before {
                content: '・';
                display: inline-block;
                position: absolute;
                margin-left: -1em;
                width: 1.1em;
            }

            &:not(:last-of-type) { margin-bottom: .75em; }
            &.textColor { color: var(--lp-color-red-deep); }
        }
    }

    .contents__header__h4 {
        font-size: 3.8vw;
        font-weight: 800;
        letter-spacing: -.05em;
        margin: 0 auto;
        padding-bottom: .5em;
        width: fit-content;
    }

    .contents__header__box > div:not(:last-of-type) { margin-bottom: 3%; }

    .contents__block {
        .is_end & { filter: grayscale(1); }
    }

    /* フィルター */
    .filter {
        margin-bottom: 1.5em;
        > div:not(:last-of-type) { margin-bottom: 8%; }
    }

    .filter__group { text-align: center; }

    .filter__label {
        background: linear-gradient(transparent 60%, var(--lp-color-yellow-bright) 60%);
        color: var(--lp-color-blue-dark);
        font-size: 5vw;
        font-weight: 900;
        display: inline-block;
        margin-bottom: 1em;
        padding: 0 .25em;
    }

    .filter__operation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        width: 100%;
    }

    .filter__input__check { display: none; }

    .filter__input__label {
        background-color: var(--lp-color-white);
        border: 2px solid var(--lp-color-blue-primary);
        border-radius: 5px;
        color: var(--lp-color-blue-primary);
        cursor: pointer;
        font-size: 3.2vw;
        font-weight: 700;
        letter-spacing: -.05em;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .35em;
        user-select: none;
        position: relative;
        transition: border .4s, color .4s;
        padding: 1em .5em;
        width: 100%;
    }
    .filter__input__label > span {
        position: relative;
        margin-left: auto;
        width: calc(100% - 1em);
    }
    .filter__input__label::before {
        background-color: transparent;
        border: 2px solid currentColor;
        border-radius: 3px;
        content: "";
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        left: .5em;
        width: 1em;
        height: 1em;
    }

    .filter__input__label.is_filtered::after {
        background-color: currentColor;
        content: "";
        position: absolute;
        left: .55em;
        top: calc(50% - (1em / 2));
        mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M6 10.8L3.2 8l-1.4 1.4L6 13.6l8-8L12.6 4l-6.6 6.8z"/></svg>') no-repeat center;
        -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M6 10.8L3.2 8l-1.4 1.4L6 13.6l8-8L12.6 4l-6.6 6.8z"/></svg>') no-repeat center;
        mask-size: contain;
        -webkit-mask-size: contain;
        width: .9em;
        height: .9em;
    }

    .output { position: relative; }

    .output__block {
        border-radius: 15px;
        position: relative;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity .4s ease-out, transform .4s ease-out;
        margin: 0 auto;
        width: 100%;
        max-width: 1240px;
    }

    .output__block.is_visible {
        opacity: 1;
        transform: translateY(0);
    }
    .output__block:not(:last-of-type) { margin-bottom: 1.5em; }

    .output__h2 { display: none; }

    .output__product {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        position: relative;
    }
    .output__product:not(:only-child) { margin-bottom: 8%; }

    .output__product:empty {
        display: block;
        text-align: center;
        margin-bottom: 0;
        padding: 3.5em 0 5em 0;
    }
    .output__product:empty::before {
        content: "対象のアイテムがありません";
        color: var(--lp-color-gray);
        font-size: 4vw;
        font-style: italic;
    }

    .output__product > li {
        box-sizing: border-box;
        transition:
            opacity .4s ease,
            max-height .4s ease,
            min-height .4s ease,
            margin .4s;
        opacity: 1;
        overflow: hidden;
        height: auto;
    }

    .output__product > li.is_visible {
        border: none;
        pointer-events: none;
        opacity: 0;
        margin-top: 0;
    }

    .output__product > li:not(:nth-of-type(-n+2)) { margin-top: 4vw; }
    .output__product > li.is_visible:not(:nth-of-type(-n+2)) { margin-top: 0; }

    .output__product a {
        border-radius: 6px;
        color: var(--lp-color-black);
        cursor: pointer;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        font-size: 4.8vw;
        line-height: 1.4;
        text-decoration: none;
        user-select: none;
        transition: .4s filter, .4s opacity;
        opacity: 1;
        position: relative;
        padding: .5em;
        height: 100%;
    }
    .output__product .is_visible a {
        border: none;
        opacity: 0;
        padding: 0;
    }

    .output__product__block { width: 100%; }

    .output__product__image {
        background-color: var(--lp-color-white);
        border: 2px solid var(--lp-color-black);
        border-radius: 6px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .output__product__image > img {
        aspect-ratio: 5 / 6;
        background-color: var(--lp-color-white);
        block-size: auto;
        clip-path: inset(0% round 0px);
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        object-fit: cover;
        transition: scale .4s ease, clip-path .4s ease, opacity .4s;
        opacity: 0;
        padding: 1em;
        width: 100%;
        height: 100%;
    }
    .output__product > li:hover img { scale: 1.1; }

    @keyframes loading__spin {
        to { transform: rotate(360deg); }
    }

    .output__product__spinner {
        animation: loading__spin 1s linear infinite;
        border: 4px solid var(--lp-color-gray);
        border-top-color: var(--lp-color-blue-dark);
        border-radius: 50%;
        transition: opacity 1s;
        opacity: 1;
        z-index: 1;
        position: absolute;
        top: calc(50% - 2em / 2);
        left: calc(50% - 2em / 2);
        width: 2em;
        height: 2em;
    }

    .output__product__label {
        background: linear-gradient(to bottom, #096591, #093191);
        color: var(--lp-color-white);
        font-size: .8em;
        font-weight: 700;
        text-align: center;
        display: inline-block;
        padding: .25em .75em;
        position: absolute;
        top: .5em;
        left: .5em;
    }

    .output__product__text {
        text-align: left;
        padding: 1em 0;
    }

    .output__product__tag {
        background-color: var(--lp-color-blue-pale);
        border-radius: 100px;
        color: var(--lp-color-blue-dark);
        font-size: 1em;
        font-weight: 700;
        display: inline-block;
        text-align: center;
        margin-bottom: .5em;
        padding: .25em 1em;
        width: fit-content;
    }

    .output__product__tag.booking {
        background-color: var(--lp-color-booking-light);
        color: var(--lp-color-booking-dark);
    }

    .output__product__name {
        font-size: .7em;
        display: inline-block;
        line-height: 1.4;
        font-weight: 700;
    }

    .output__product__discount,
    .output__product__price {
        color: var(--lp-color-black);
        text-align: right;
    }

    .output__product__discount { font-size: .95em; }
    .output__product__discount > span { font-size: .8em; }

    .output__product__price {
        font-size: 1em;
        font-weight: 600;
        padding: .25em;
    }

    .output__product__price > span {
        display: inline-block;
        padding: 0 .25em;
    }
    .output__product__price > span::first-letter {
        font-size: .75em;
        padding-right: .1em;
    }

    .soldOut {
        background-color: rgba(0, 0, 0, .3);
        border-radius: 5px;
        color: var(--lp-color-white);
        font-size: 1.5em;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-shadow: 0 0 6px var(--lp-color-black);
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        vertical-align: baseline;
        pointer-events: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: .35em .65em;
        width: 100%;
        height: 100%;
    }

    .output__toggleButton {
        background-color: var(--lp-color-black);
        border-radius: 100px;
        color: var(--lp-color-white);
        cursor: pointer;
        font-size: 3.3vw;
        font-weight: 700;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        margin: 0 auto;
        padding: .5em 1em;
        width: 80%;
        min-height: 4em;
        .tohji & { background: linear-gradient(to bottom, #096591, #093191); }
    }
    .output__product:empty + .output__toggleButton { display: none; }

    .output__toggleButton::before,
    .output__toggleButton::after {
        background-color: var(--lp-color-white);
        border-radius: 5px;
        content: "";
        transition: .4s transform;
        position: absolute;
        top: calc(50% - 3px);
        right: 1em;
        width: 1em;
        height: 3px;
    }
    .output__toggleButton::after { transform: rotate(90deg); }

    .output__toggleButton:hover::before { transform: rotate(90deg); }
    .output__toggleButton:hover::after { transform: rotate(180deg); }

    .output__toggleButton.is_show::before { transform: rotate(180deg); }
    .output__toggleButton.is_show::after { transform: rotate(0deg); }

    .appeal {
        line-height: 1.4;
        text-align: center;

        &:not(:last-of-type) { margin-bottom: 8%; }
        > div:not(:last-of-type) { margin-bottom: 8%; }
    }

    .appeal__copylight {
        font-size: 2.4vw;
        font-weight: 500;
    }

    /* フローティングボタン */
    @keyframes floatingObject {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .floating {
        transition: .4s opacity, transform .4s ease;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        z-index: 8;
        right: 0;
        bottom: 0;
        transform: translateY(2em);
        width: 100%;

        &.is_show {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .floating__inner {
        margin: 0 auto;
        width: 100%;
        max-width: 1920px;
    
        .is_visible & { pointer-events: none; }
    }

    .floating {
        a {
            animation: floatingObject 4s infinite ease-in-out;
            background-color: var(--lp-color-off-white);
            border-radius: 1000px;
            border: 2px solid var(--lp-color-black);
            color: var(--lp-color-black);
            display: flex;
            flex-flow: column wrap;
            align-items: center;
            justify-content: center;
            gap: .25em;
            font-size: 3.5vw;
            font-weight: 700;
            letter-spacing: .01em;
            transition: bottom 1s ease-in-out, .4s background, .4s color;
            text-align: center;
            pointer-events: none;
            position: relative;
            right: 1.5vw;
            bottom: 1.5vw;
            user-select: none;
            line-height: 1.2;
            margin-left: auto;
            width: 20vw;
            height: 20vw;

            .is_show & { pointer-events: auto; }

            &:hover {
                background-color: var(--lp-color-gray);
                color: var(--lp-color-black);

                &::before {
                    border-top-color: var(--lp-color-black);
                    border-right-color: var(--lp-color-black);
                    transform: rotate(-45deg) translate(5px, -5px);
                }
            }

            &::before {
                border-top: 3px solid var(--lp-color-black);
                border-right: 3px solid var(--lp-color-black);
                border-radius: 0 3px 0 0;
                content: "";
                display: block;
                transform: rotate(-45deg);
                transition: border .4s, transform .4s;
                width: 2vw;
                height: 2vw;
            }
        }
    }
}

/*************************
main
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
    #LP {
        .campaiginEnd {
            .is_end & {
                background-color: rgba(0, 0, 0, .4);
                content: "";
                display: flex;
                align-items: center;
                justify-content: center;
                position: fixed;
                z-index: 10;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100vw;
                height: 100vh;

                .campaiginEnd__text {
                    font-size: 24px;
                    padding: 3em;
                    width: fit-content;
                }
            }
        }

        .device_sp { display: none; }
        .device_pc { display: block; }

        .common__headerRibbon {
            font-size: 32px;
            min-height: 2em;
            max-width: 676px;
        }

        .common__region {
            &:not(:last-of-type) { margin-bottom: 60px; }
        }

        .common__button {
            > a {
                font-size: 23px;
                max-width: 450px;
                width: 100%;

                &::after {
                    border-top-width: 3px;
                    border-right-width: 3px;
                    top: calc(50% - (14px / 2));
                    width: 14px;
                    height: 14px;
                }

                &.members { max-width: 676px; }
            }
        }

        .kv__h1 { max-width: 980px; }

        .contents__inner {
            padding: 40px 20px 50px 20px;
            width: 100%;
        }

        .contents__header { margin-bottom: 50px; }

        .contents__header__h2 { font-size: 32px; }

        .contents__header__text,
        .contents__header__dialog,
        .contents__header__h3 { font-size: 20px; }

        .contents__header__h2 .textBlock.device_pc,
        .contents__header__text .textBlock.device_pc,
        .contents__header__dialog .textBlock.device_pc { display: inline; }

        .contents__header__h2 .textBlock.device_sp,
        .contents__header__text .textBlock.device_sp,
        .contents__header__dialog .textBlock.device_sp { display: block; }

        .contents__header__text:not(:last-child),
        .contents__header__dialog:not(:last-child) { margin-bottom: 50px; }

        .contents__header__text .textSmall { font-size: 16px; }

        .contents__header__h4 {
            font-size: 28px;
            letter-spacing: 0;
        }

        .contents__header__box > div:not(:last-of-type) { margin-bottom: 35px; }

        .contents__header__block:not(:last-of-type) { margin-bottom: 50px; }

        .contents__header__dialog { border-radius: 10px; }

        .contents__header__dialog--explanation {
            font-size: 1.15em;
            text-align: left;

            &.textSmall { font-size: 1em; }

            > div:not(:last-of-type) { margin-bottom: .5em; }

            .explanation__block {
                gap: 1.5em;

                .explanation__header { max-width: fit-content; }
                .explanation__value { font-size: .9em; }
            }
        }

        /* フィルター */
        .filter { margin-bottom: 40px; }

        .filter > div:not(:last-of-type) { margin-bottom: 50px; }

        .filter__label { font-size: 34px; }

        .filter__operation {
            gap: 25px;
            margin: 0 auto;
            max-width: 768px;
        }

        .filter__input__box { width: 100%; }

        .filter__input__label {
            font-size: 24px;
            min-height: 3em;
        }

        .output__block:not(:last-of-type) { margin-bottom: 40px; }

        .output__product:not(:only-child) { margin-bottom: 60px; }
        .output__product:empty::before { font-size: 24px; }

        .output__product { grid-template-columns: repeat(5, 1fr); }

        .output__product > li:not(:nth-of-type(-n+2)),
        .output__product > li.is_visible:not(:nth-of-type(-n+5)) { margin-top: 0; }

        .output__product > li:not(:nth-of-type(-n+5)) { margin-top: 40px; }

        .output__product a { font-size: 16px; }

        .output__product__name { font-size: .9em; }

        .output__product__price { font-size: 1.4em; }

        .output__toggleButton {
            font-size: 20px;
            padding: 1em;
            max-width: 450px;
            width: 100%;
        }
        .output__toggleButton::after,
        .output__toggleButton::before {
            right: 20px;
            width: 20px;
        }

        .appeal:not(:last-of-type) { margin-bottom: 60px; }

        .appeal > div:not(:last-of-type) { margin-bottom: 50px; }

        .appeal__copylight { font-size: 14px; }

        /* フローティングボタン */
        .floating { transform: translateY(25px); }

        .floating a {
            font-size: 18px;
            bottom: 25px;
            right: 25px;
            width: 100px;
            height: 100px;
        }
        .floating a::before {
            width: 14px;
            height: 14px;
        }
    }
}