@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: #252525;
	--lp-color_gray: #c7c7c7;
	--lp-color_white: #fff;

	--lp-color_vivid-red: #dc3545;
    --lp-color_dark-orange: #ffa245;
    --lp-color_yellow: #f4da00;
    --lp-color_cream: #fcf3a6;

    --lp-color_tag-normal: #d9b800;
    --lp-color_tag-conanLand-dark: #39b0a9;
    --lp-color_tag-conanLand-light: #82ebe5;
    --lp-color_tag-memorialScene-dark: #f47900;
    --lp-color_tag-memorialScene-light: #ffc891;
    --lp-color_tag-randomProduct: #00a23e;

    --lp-color_shadow: rgba(0, 0, 0, .2);
}

/*************************
Animation
*************************/

@keyframes loading__spin {
    to { transform: rotate(360deg); }
}

/*************************
main
SP_layout（980px未満）
*************************/

#LP {
	color: var(--lp-color_black);
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
    position: relative;
	width: 100%;
}

#LP img {
	user-select: none;
	vertical-align: bottom;
	width: 100%;
	height: auto;
}

#LP time,
#LP span {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

#LP a {
	display: block;
	text-decoration: none;
	transition: filter .4s;
}
#LP a:hover { filter: brightness(.95); }

#LP .device_sp { display: block; }
#LP .device_pc { display: none; }

#LP .textBlock { display: block; }

#LP .markerText {
    background: linear-gradient(
        transparent 70%,
        var(--lp-color_yellow) 70%
    );
    font-weight: 900;
    display: inline-block;
    padding: 0 .15em;
}

/* ローディング画面 */
#LP .loader {
    background: var(--lp-color_white);
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9;
    width: 100vw;
    height: 100vh;
}
#LP .loader.fade-out {
    opacity: 0;
    transition: opacity .4s ease;
}

#LP .loading__wrapper {
    text-align: center;
    width: 50%;
}

#LP .loading__text {
    color: var(--lp-color_black);
    font-size: 1.5em;
    margin-bottom: 1em;
}

#LP .loading__progress {
    background-color: var(--lp-color_gray);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: 6px;
}

#LP .loading__progress__bar {
    background-color: var(--lp-color_vivid-red);
    transition: width .4s ease;
    width: 0%;
    max-width: 300px;
    height: 100%;
}

/* キービジュアル */
#LP .kv {
    background-color: var(--lp-color_tag-memorialScene-light);
    width: 100%;
    height: auto;
}

#LP .kv__h1,
#LP .kv__band {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

#LP .kv__band {
    background-color: var(--lp-color_dark-orange);

    > img {
        display: block;
        margin: 0 auto;
        width: 21%;
        height: auto;
    }
}

#LP .contents { background-color: var(--lp-color_cream); }

#LP .contents__inner {
    margin: 0 auto;
    padding: 2em 0;
    width: calc(100% - 3vw * 2);
    max-width: 980px;
}

#LP .contents__h2 {
    font-size: 3.6vw;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 5%;

    > .textBlock:not(:last-of-type) { margin-bottom: .75em; }
}

#LP .contents__block:not(:last-of-type) { margin-bottom: 10%; }

/* #CONSOLE */
#LP .contents__console { margin-bottom: 10%; }

#LP .contents__anchorLink {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 3vw;
    opacity: 1;
    user-select: none;
    margin: 0 auto;
    margin-bottom: 10%;
    width: 100%;
}

#LP .contents__anchorLink > li {
    text-align: center;
    width: calc(50% - 3vw / 2);
}

#LP .contents__anchorLink > li a {
    border-radius: 5px;
    color: var(--lp-color_white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    font-size: 2.6vw;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding: .5em 1em;
    min-height: 4.5em;
    width: 100%;
}
#LP .contents__anchorLink > li a::before {
    border-top: 2px solid var(--lp-color_white);
    border-right: 2px solid var(--lp-color_white);
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 2.5vw / 2);
    right: 6%;
    transform: rotate(135deg);
    width: 2vw;
    height: 2vw;
}
#LP .contents__anchorLink > li a.original { background-color: var(--lp-color_tag-conanLand-dark); }
#LP .contents__anchorLink > li a.memorial { background-color: var(--lp-color_tag-memorialScene-dark); }

#LP .contents__floating {
    background-color: var(--lp-color_shadow);
    backdrop-filter: blur(4px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    transform: translateY(2em);
    width: 100%;
}
#LP .contents__floating.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#LP .contents__floating .contents__anchorLink {
    gap: 1.5vw;
    margin: 0 auto;
    margin-bottom: 0;
    padding: 1.5vw 0;
    width: calc(100% - 1.5vw * 2);
    max-width: 980px;
}
#LP .contents__floating .contents__anchorLink > li { width: calc(50% - 1.5vw / 2); }

#LP .contents__floating .contents__anchorLink > li a {
    border-radius: 15px;
    box-shadow: 0 0 4px 0 var(--lp-color_shadow);
}
#LP .contents__floating .contents__anchorLink > li a::before { transform: rotate(45deg); }

#LP .filter > div:not(:last-of-type) { margin-bottom: 4em; }

#LP .filter__group { text-align: center; }

#LP .filter__label {
    background: linear-gradient(transparent 70%, var(--lp-color_yellow) 70%);
    color: #276176;
    font-size: 4vw;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1em;
    padding: 0 .25em;
}

#LP .filter__operation {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 3vw;
    width: 100%;
}

#LP .filter__input__check { display: none; }

#LP .filter__input__box { width: calc(50% - 3vw / 2); }

#LP .filter__input__label {
    background-color: var(--lp-color_white);
    border: 2px solid var(--lp-color_tag-normal);
    border-radius: 5px;
    color: var(--lp-color_tag-normal);
    cursor: pointer;
    font-size: 3vw;
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.25;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: .4s color, .4s background;
    position: relative;
    padding: .25em;
    width: 100%;
    min-height: 4em;
}
#LP .filter__input__label.is_filtered {
    background-color: var(--lp-color_tag-normal);
    color: var(--lp-color_white);
}
#LP .filter__input__label.conanLand {
    border-color: var(--lp-color_tag-conanLand-dark);
    color: var(--lp-color_tag-conanLand-dark);
}
#LP .filter__input__label.memorialScene {
    border-color: var(--lp-color_tag-memorialScene-dark);
    color: var(--lp-color_tag-memorialScene-dark);
}
#LP .filter__input__label > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    position: relative;
}
#LP .filter__input__label > span::before {
    background-color: transparent;
    border: 2px solid currentColor;
    border-radius: 2px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
}
#LP .filter__input__label.is_filtered > span::after {
    background-color: currentColor;
    content: "";
    position: absolute;
    left: .05em;
    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 */
#LP .output__block {
    background-color: var(--lp-color_white);
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}
#LP .output__block.is_visible {
    opacity: 1;
    transform: translateY(0);
}

#LP .output__block:not(:last-of-type) { margin-bottom: 2em; }

#LP .output__h2 {
    color: var(--lp-color_white);
    font-size: 4.5vw;
    font-weight: 900;
    text-align: center;
    padding: .75em 1em;
}
#LP .output__h2.original { background-color: var(--lp-color_tag-conanLand-dark); }
#LP .output__h2.memorial { background-color: var(--lp-color_tag-memorialScene-dark); }

#LP .output__listBlock { padding: 8% 3vw; }

#LP .output__product:empty {
    display: block;
    text-align: center;
    margin-bottom: 0;
}
#LP .output__product:empty::before {
    content: "対象のアイテムがありません";
    font-size: 4vw;
}

#LP .output__product > li {
    border: none;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease, margin .4s;
}

#LP .output__product > li:not(:first-of-type) { margin-top: 10%; }

#LP .output__product:not(.show-all) > li:not(:nth-of-type(-n+3)) {
    max-height: 0;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease;
    margin-top: 0;
    padding: 0;
}

#LP .category__header {
    font-size: 6vw;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5%;
}
#LP .category__header.original {
    background: linear-gradient(
        transparent 70%,
        var(--lp-color_tag-conanLand-light) 70%
    );
}
#LP .category__header.memorial {
    background: linear-gradient(
        transparent 70%,
        var(--lp-color_tag-memorialScene-light) 70%
    );
}

#LP .category__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3vw;
    align-items: stretch;
    position: relative;
    user-select: none;
}

#LP .category__list > li:not(:nth-of-type(-n+2)) { margin-top: 3vw; }

#LP .category__list > li a {
    background-color: var(--lp-color_white);
    border: 1px solid var(--lp-color_gray);
    border-radius: 5px;
    color: var(--lp-color_black);
    cursor: pointer;
    font-size: 4vw;
    line-height: 1.4;
    text-decoration: none;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    position: relative;
    padding: 2.5vw;
    height: 100%;
    min-height: 0;
}
#LP .category__list > li:has(.soldOut) a { pointer-events: none; }

#LP .output__product__block { width: 100%; }
#LP .output__product__block:not(:last-of-type) { margin-bottom: .75em; }

#LP .output__product__image {
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    background-color: var(--lp-color_white);
    position: relative;
    margin-bottom: .5em;
    width: 100%;
}

#LP .output__product__image > img {
    aspect-ratio: 5 / 6;
    object-fit: contain;
    object-position: center;
    transition: opacity 1s;
    opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
}

#LP .output__product__spinner {
    animation: loading__spin 1s linear infinite;
    border: 4px solid var(--lp-color_gray);
    border-top-color: var(--lp-color_black);
    border-radius: 50%;
    transition: opacity 1s;
    opacity: 1;
    z-index: 1;
    position: absolute;
    top: calc(50% - 3em / 2);
    left: calc(50% - 3em / 2);
    width: 3em;
    height: 3em;
}

#LP .output__product__text { text-align: left; }

/* #LP .output__product__tag {
    display: flex;
    flex-flow: column wrap;
    gap: .5em;
    margin-bottom: 1em;
} */

/* #LP .output__product__tag > div {
    border-radius: 100px;
    color: var(--lp-color_white);
    font-weight: 700;
    text-align: center;
    display: inline-block;
    padding: .25em 1em;
    width: fit-content;
} */

#LP .output__product__category {
    border-radius: 100px;
    color: var(--lp-color_white);
    font-size: .7em;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    margin-bottom: 1em;
    padding: .25em 1em;
    width: fit-content;
}

#LP .output__product__category.original { background-color: var(--lp-color_tag-conanLand-dark); }
#LP .output__product__category.memorial { background-color: var(--lp-color_tag-memorialScene-dark); }
#LP .output__product__category.random { background-color: var(--lp-color_tag-randomProduct); }

#LP .output__product__itemType {
    background-color: var(--lp-color_black);
    border-radius: 100px;
    color: var(--lp-color_black);
    display: inline-block;
    text-align: center;
    padding: .25em 1em;
}

#LP .output__product__name {
    font-size: .7em;
    font-weight: 600;
    line-height: 1.6;
}

#LP .output__product__random {
    background-color: var(--lp-color_tag-randomProduct);
    color: var(--lp-color_white);
    font-size: .65em;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    margin-left: .5em;
    padding: .25em .75em;
    width: fit-content;
}

#LP .output__product__notes {
    font-size: .6em;
    position: relative;
    margin-top: 1em;
    padding-left: 1em;
}
#LP .output__product__notes::before {
    content: '※';
	display: inline-block;
	text-align: center;
	margin-left: -1em;
	width: 1em;
}

#LP .output__product__price {
    font-size: 1.25em;
    font-weight: 600;
    color: var(--lp-color_vivid-red);
    text-align: right;
}

#LP .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;
    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%;
}

#LP .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;
    user-select: none;
    margin: 0 auto;
    margin-top: 8%;
    padding: .5em 1em;
    width: 80%;
    min-height: 4em;
}
#LP .output__product:empty + .output__toggleButton { display: none; }

#LP .output__toggleButton::after,
#LP .output__toggleButton::before {
    background-color: var(--lp-color_white);
    border-radius: 5px;
    content: "";
    transition: .4s transform;
    position: absolute;
    top: calc(50% - 2px);
    right: 1em;
    width: 1em;
    height: 2px;
}
#LP .output__toggleButton::after { transform: rotate(90deg); }
#LP .output__toggleButton.is-show::after { transform: rotate(0deg); }
#LP .output__toggleButton.is-show::before { transform: rotate(180deg); }

/* 予告ページ用 */
#LP .contents__teaser {
    text-align: center;
    margin-bottom: 10%;
}

#LP .contents__teaser__box:not(:last-of-type) { margin-bottom: 8%; }

#LP .contents__teaser__h3 {
    font-size: 6vw;
    margin-bottom: 6%;
}

#LP .contents__teaser__text {
    font-size: 3vw;
    font-weight: 900;
    line-height: 1.35;
}

#LP .contents__teaser__h4 {
    margin: 0 auto;
    width: 100%;
}

#LP .contents__teaser__image { margin: 1em 0; }

#LP .contents__teaser__caption { font-size: 2.4vw; }

/* ページ下部のECリンク */
#LP .contents__appeal__box {
    line-height: 1.4;
    text-align: center;
}
#LP .contents__appeal__box:not(:last-of-type) { margin-bottom: 8%; }

#LP .contents__appeal__h3 {
    color: var(--lp-color_black);
    font-size: 5vw;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 6%;
}

#LP .contents__appeal__text {
    font-size: 4vw;
    font-weight: 400;
}

#LP .contents__appeal__button:not(:last-of-type) { margin-bottom: 4.5%; }

#LP .contents__appeal__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;
    position: relative;
    user-select: none;
    margin: 0 auto;
    padding: .5em 1em;
    width: 80%;
    min-height: 4em;
}
#LP .contents__appeal__button > a::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: 6%;
    transform: rotate(45deg);
    transition: border .4s, filter .4s;
    width: 2vw;
    height: 2vw;
}

#LP .contents__appeal__copyright {
    font-size: 3vw;
    text-align: center;
    margin-top: 10%;
}

/*************************
main
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
    #LP .device_sp { display: none; }
	#LP .device_pc { display: block; }

    #LP .kv__h1 { max-width: fit-content; }

    #LP .kv__band > img { width: 158px; }

    #LP .contents__inner {
        padding: 40px 0;
        width: 100%;
    }

    #LP .contents__h2 {
        font-size: 24px;
        margin-bottom: 36px;
    }

    #LP .contents__block:not(:last-of-type) { margin-bottom: 60px; }

    /* #CONSOLE */
    #LP .contents__console,
    #LP .contents__anchorLink { margin-bottom: 60px; }

    #LP .contents__console { margin-bottom: 10%; }

    #LP .contents__anchorLink { gap: 2em; }

    #LP .contents__anchorLink > li { width: calc(50% - 2em / 2); }

    #LP .contents__anchorLink > li a {
        border-radius: 10px;
        font-size: 25px;
        line-height: 1.2;
        padding: .25em;
        min-height: 3.6em;
    }
    #LP .contents__anchorLink > li a::before {
        border-top-width: 3px;
        border-right-width: 3px;
        top: calc(50% - (14px / 1.5));
        right: 21px;
        width: 14px;
        height: 14px;
    }

    #LP .contents__floating .contents__anchorLink {
        gap: 1em;
        padding: 1em 0;
        width: 100%;
    }
    #LP .contents__floating .contents__anchorLink > li { width: calc(50% - 1em / 2); }
    #LP .contents__floating .contents__anchorLink > li a { border-radius: 10px; }

    #LP .filter__label { font-size: 24px; }

    #LP .filter__operation { gap: 2em; }

    #LP .filter__input__box {
        width: 100%;
        max-width: calc((100% / 2) - (2em / 2));
    }
    #LP .filter__second .filter__input__box { max-width: calc((100% / 3) - (2em * 2 / 3)); }

    #LP .filter__input__label { font-size: 18px; }

    /* #OUTPUT */
    #LP .output__block:not(:last-of-type) { margin-bottom: 60px; }

    #LP .output__h2 {
        font-size: 32px;
        padding: .6em 1em;
    }

    #LP .output__product:empty::before { font-size: 24px; }

    #LP .output__product > li:not(:first-of-type) { margin-top: 75px; }

    #LP .output__listBlock { padding: 60px 15px; }

    #LP .category__header {
        font-size: 34px;
        margin-bottom: 42px;
    }

    #LP .category__list {
        grid-template-columns: repeat(5, 1fr);
        gap: 0 15px;
    }

    #LP .category__list > li a {
        font-size: 14px;
        padding: 12px;
    }

    #LP .category__list > li:not(:nth-of-type(-n+2)),
    #LP .category__list > li:not(:nth-of-type(-n+3)),
    #LP .category__list > li:not(:nth-of-type(-n+4)) { margin-top: 0; }

    #LP .category__list > li:not(:nth-of-type(-n+5)) { margin-top: 15px; }

    #LP .output__product:not(.show-all) > li:nth-of-type(n+7) {
        opacity: initial;
        max-height: initial;
    }
    #LP .output__product.show-all > li:nth-of-type(n+7) { opacity: initial; }

    #LP .output__product:not(.show-all) > li:not(:nth-of-type(-n+3)) {
        overflow: hidden;
        transition: opacity .4s ease, max-height .4s ease;
        margin-top: 0;
        max-height: 0;
    }

    #LP .output__product__block:not(:last-of-type) { margin-bottom: 1.25em; }

    #LP .output__product__name { font-size: .9em; }
    #LP .output__product__notes { font-size: .75em; }
    #LP .output__product__price { font-size: 1.4em; }

    #LP .output__toggleButton {
        font-size: 20px;
        margin-top: 60px;
        padding: 1em;
        max-width: 500px;
        width: 100%;
    }

    #LP .output__toggleButton::after,
    #LP .output__toggleButton::before {
        right: 20px;
        width: 20px;
    }

    /* 予告ページ用 */
    #LP .contents__teaser { margin-bottom: 60px; }

    #LP .contents__teaser__box:not(:last-of-type) { margin-bottom: 45px; }

    #LP .contents__teaser__h3 {
        font-size: 36px;
        margin-bottom: 45px;
    }

    #LP .contents__teaser__text { font-size: 20px; }

    #LP .contents__teaser__h4 { max-width: fit-content; }

    #LP .contents__teaser__caption { font-size: 14px; }

    /* ページ下部のECリンク */
    #LP .contents__appeal__box:not(:last-of-type) { margin-bottom: 60px; }

    #LP .contents__appeal__h3 {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 40px;
    }
    #LP .contents__appeal__h3 > .textBlock { display: inline; }

    #LP .contents__appeal__text { font-size: 24px; }

    #LP .contents__appeal__button:not(:last-of-type) { margin-bottom: 45px; }

    #LP .contents__appeal__button > a {
        font-size: 20px;
        max-width: 500px;
        width: 100%;
    }
    #LP .contents__appeal__button > a::after {
        border-top-width: 3px;
        border-right-width: 3px;
        top: calc(50% - (14px / 2));
        right: 21px;
        width: 14px;
        height: 14px;
    }

    #LP .contents__appeal__copyright {
        font-size: 16px;
        margin-top: 60px;
    }
}