@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_red: #dc3545;
    --lp-color_orange: #f47900;
    --lp-color_light-orange: #ffb715;
    --lp-color_yellow: #f4da00;
    --lp-color_cream: #fcf3a6;

    --lp-color_tag-mens-light: #d0e8ff;
    --lp-color_tag-mens-dark: #6da2ce;
    --lp-color_tag-ladies-light:#ffe0ef;
    --lp-color_tag-ladies-dark: #d0314f;
}

/*************************
main
SP_layout（980px未満）
*************************/

#LP {
	color: var(--lp-color_black);
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
    position: relative;
	width: 100%;
}

@keyframes loadingTextBox {
	0% {
	opacity: 0;
	transform: translateY(20px);
	}
	100% {
	opacity: 1;
	transform: translateY(0);
	}
}

body:has(.is_end) { overflow-y: hidden; }

#LP.is_end {
	pointer-events: none;
	user-select: none;
}

#LP .campaiginEnd { display: none; }

#LP.is_end .campaiginEnd {
	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;
}

#LP.is_end .campaiginEnd__text {
	animation: loadingTextBox .6s;
	background-color: var(--lp-color_white);
	border-radius: 10px;
	color: #000;
	font-size: 4vw;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	transform: translateY(0);
	padding: 5%;
	width: 90%;
	height: auto;
}
#LP.is_end .campaiginEnd__text > span {
	font-size: .7em;
	font-weight: 400;
}

#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 .kv {
    background-color: var(--lp-color_yellow);
    background-image: url("../images/common/wh_kv_background.png");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}

#LP .kv__h1 {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

#LP .contents { background-color: var(--lp-color_cream); }

#LP .contents__inner {
    margin: 0 auto;
    padding: 1.5em 0 3em 0;
    width: calc(100% - 3vw * 2);
    max-width: 1280px;
}

#LP .contents__h2 {
    font-size: 4.4vw;
    font-weight: 900;
    line-height: 2;
    text-align: center;
    margin-bottom: 10%;
}

#LP .contents__h2 .shopBrand {
    background: linear-gradient(transparent 70%, var(--lp-color_yellow) 70%);
    font-weight: 900;
    padding: 0 .15em;
}

#LP.is_end .contents__block { filter: grayscale(1); }

#LP .contents__block:not(:last-of-type) { margin-bottom: 10%; }

/* アンカーリンク */
#LP .anchorLink {
    text-align: center;
    margin-bottom: 10%;
}

#LP .anchorLink__h3 {
    background: linear-gradient(transparent 70%, var(--lp-color_light-orange) 70%);
    font-size: 5vw;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 1em;
    padding: 0 .25em;
}

#LP .anchorLink a {
    border-radius: 10px;
    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;
    width: 100%;
    min-height: 4em;
}
#LP .anchorLink 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 .anchorLink__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 3vw;
    opacity: 1;
    user-select: none;
    margin: 0 auto;
    padding-bottom: 6vw;
    width: 100%;
}

#LP .anchorLink__list > li {
    text-align: center;
    width: calc(50% - 3vw / 2);
}

#LP .anchorLink__list > li a { background-color: var(--lp-color_orange); }

#LP .anchorLink__notes {
    margin: 0 auto;
    width: 100%;
}
#LP .anchorLink__notes a {
    background-color: var(--lp-color_black);
    border-radius: 0;
    font-size: 3.6vw;
}

/* フローティングボタン */
@keyframes floatingObject {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#LP .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%;
}
#LP .floating.is_visible {
    opacity: 1;
    transform: translateY(0);
}

#LP .floating__inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
}
#LP .is_visible .floating__inner { pointer-events: none; }

#LP .floating a {
    animation: floatingObject 4s infinite ease-in-out;
    background-color: var(--lp-color_black);
    border-radius: 1000px;
    box-shadow: 0 0 2px var(--lp-color_white);
    color: var(--lp-color_white);
    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;
}
#LP .floating.is_visible a { pointer-events: auto; }

#LP .floating a:hover {
    background-color: var(--lp-color_white);
    border: 2px solid var(--lp-color_black);
    color: var(--lp-color_black);
}
#LP .floating a::before {
    border-top: 2px solid var(--lp-color_white);
    border-right: 2px solid var(--lp-color_white);
    content: "";
    display: block;
    transform: rotate(-45deg);
    transition: border .4s, transform .4s;
    width: 2vw;
    height: 2vw;
}
#LP .floating a:hover::before {
    border-top-color: var(--lp-color_black);
    border-right-color: var(--lp-color_black);
    transform: rotate(-45deg) translate(5px, -5px);
}

/* フィルター */
#LP .filter { margin-bottom: 10%; }

#LP .filter > div:not(:last-of-type) { margin-bottom: 8%; }

#LP .filter__group { text-align: center; }

#LP .filter__label {
    background: linear-gradient(transparent 70%, var(--lp-color_light-orange) 70%);
    font-size: 5vw;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 1em;
    padding: 0 .25em;
}

#LP .filter__operation {
    display: flex;
    justify-content: center;
    align-items: 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_black);
    border-radius: 10px;
    color: var(--lp-color_black);
    cursor: pointer;
    font-size: 3.6vw;
    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%;
}
#LP .filter__input__label > span {
    position: relative;
    margin-left: auto;
    width: calc(100% - 1em);
}
#LP .filter__input__label::before {
    background-color: transparent;
    border: 2px solid currentColor;
    border-radius: 5px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: .5em;
    width: 1em;
    height: 1em;
}
#LP .filter__input__label.is_filtered {
    border-color: var(--lp-color_orange);
    color: var(--lp-color_orange);
}
#LP .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;
}

/* 商品リスト出力 */
#LP .output__block {
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .4s ease-out, transform .4s ease-out;
    margin: 0 auto;
    width: 100%;
}
#LP .output__block.is_visible {
    opacity: 1;
    transform: translateY(0);
}

#LP .output__block:not(:last-of-type) { margin-bottom: 2em; }

#LP .output__h2 {
    background-color: var(--lp-color_orange);
    color: var(--lp-color_white);
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    padding: .75em 1em;
}

#LP .output__listBlock {
    background-color: var(--lp-color_white);
    padding: 8% 3vw;
}

#LP .output__product {
    margin: 0 auto;
    width: 100%;
    max-width: 980px;
}

#LP .output__product:not(:only-child) { padding-bottom: 8%; }

#LP .output__product:empty {
    text-align: center;
    padding-bottom: 0;
}
#LP .output__product:empty::before {
    content: "対象のアイテムがありません";
    color: #666;
    font-size: 4vw;
    font-style: italic;
    padding-left: 2vw;
}

#LP .output__product > li {
    text-align: center;
    overflow: hidden;
    transition: opacity .4s ease, height .4s ease, margin .4s;
    height: calc-size(auto, size);
}
#LP .output__product > li:not(:first-of-type) {
    opacity: 0;
    margin-top: 0;
    height: 0;
}
#LP .output__product.show-all > li:not(:first-of-type) {
    opacity: 1;
    margin-top: 12%;
}

#LP .category__header {
    background: linear-gradient(transparent 70%, var(--lp-color_yellow) 70%);
    font-size: 5.5vw;
    font-weight: 900;
    text-align: center;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 5%;
    padding: 0 .15em .15em .15em;
}

#LP .category__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3vw;
    align-items: stretch;
}

#LP .category__list > li {
    border: none;
    border-radius: 0;
    transition: opacity 1s ease, height .4s ease;
}
#LP .category__list > li:not(:nth-of-type(-n+2)) { margin-top: 6vw; }

#LP .output__product:not(.show-all) > li:first-of-type .category__list > li:nth-of-type(n+11) {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin-top: 0;
}
#LP .output__product.show-all > li:first-of-type .category__list > li:nth-of-type(n+11) {
    opacity: 1;
    overflow: visible;
    height: auto;
    height: calc-size(auto, size);
}

#LP .category__list > li a {
    border: 1px solid var(--lp-color_gray);
    border-radius: 5px;
    background-color: var(--lp-color_white);
    color: var(--lp-color_black);
    cursor: pointer;
    font-size: 4vw;
    line-height: 1.4;
    text-decoration: none;
    display: flex;
    user-select: none;
    flex-flow: column wrap;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    padding: 2.5vw;
    height: 100%;
}
#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 {
    margin-bottom: .5em;
    width: 100%;
}
#LP .output__product__image > img {
    aspect-ratio: 5 / 6;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    object-fit: cover;
    object-position: top;
    display: block;
    width: 100%;
    height: 100%;
}

#LP .output__product__text { text-align: left; }

#LP .output__product__tagBox { margin-bottom: .5em; }

#LP .output__product__tag {
    background-color: var(--lp-color_gray);
    border-radius: 100px;
    color: var(--lp-color_black);
    font-weight: 700;
    display: inline-block;
    text-align: center;
    padding: .25em 1em;
    width: fit-content;
}
#LP .output__product__tag.mens {
    background-color: var(--lp-color_tag-mens-light);
    color: var(--lp-color_tag-mens-dark);
}
#LP .output__product__tag.ladies {
    background-color: var(--lp-color_tag-ladies-light);
    color: var(--lp-color_tag-ladies-dark);
}

#LP .output__product__tag { font-size: .7em; }
#LP .output__product__name { font-size: .8em; }

#LP .output__product__block.numbers {
    font-weight: 600;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: .2em;
}

#LP .output__product__discount,
#LP .output__product__price { text-align: right; }

#LP .output__product__discount {
    background-color: var(--lp-color_red);
    color: var(--lp-color_white);
    font-size: .95em;
    text-align: right;
    display: inline-flex;
    align-items: center;
    gap: .25em;
    padding: .15em .5em;
    width: fit-content;
}
#LP .output__product__discount > span { font-size: .8em; }

#LP .output__product__price {
    color: var(--lp-color_red);
    font-size: 1.25em;
}

#LP .soldOut {
    background-color: var(--lp-color_red);
    color: var(--lp-color_white);
    font-size: .9em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    vertical-align: baseline;
    position: absolute;
    top: 0;
    left: 0;
    padding: .35em .65em;
    width: 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;
    margin: 0 auto;
    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__appeal {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}

#LP .contents__appeal__block {
    line-height: 1.4;
    text-align: center;
}
#LP .contents__appeal__block: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;
    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__button > a.mopTop { background-color: var(--lp-color_light-orange); }

#LP .contents__appeal__box:not(:last-of-type) { margin-bottom: 5%; }

#LP .contents__appeal__box.notes {
    background-color: var(--lp-color_white);
    padding: 5%;
    width: 100%;
}

#LP .contents__appeal__h4 {
    font-size: 4.5vw;
    font-weight: 900;
    padding-bottom: 1em;
}

#LP .contents__appeal__h4 > .textBlock {
    background: linear-gradient(transparent 70%, var(--lp-color_yellow) 70%);
    display: inline-block;
    position: relative;
    padding: 0 .15em .15em .15em;
}

#LP .contents__appeal__notes { padding-left: 1em; }
#LP .contents__appeal__notes .textBold { font-weight: 700; }

#LP .contents__appeal__notes > li {
    font-size: 3vw;
    text-align: left;
    position: relative;
}

#LP .contents__appeal__notes > li::before {
	content: '※';
	display: inline-block;
    position: absolute;
	margin-left: -1em;
	width: 1.1em;
}
#LP .contents__appeal__notes > li:not(:last-of-type) { margin-bottom: .5em; }

/*************************
main
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
    #LP .device_sp { display: none; }
	#LP .device_pc { display: block; }

    #LP.is_end .campaiginEnd__text {
        font-size: 24px;
        padding: 3em;
        width: fit-content;
	}

    /* キービジュアル */
    #LP .kv__h1 {
        padding: 30px 0;
        max-width: fit-content;
    }

    #LP .kv__band {
        background-color: var(--lp-color_white);
        width: 100%;
    }
    #LP .kv__band img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: fit-content;
    }

    #LP .contents__inner {
        padding: 40px 0 80px 0;
        width: 100%;
    }

    #LP .contents__h2 {
        font-size: 28px;
        line-height: 1.8;
        margin-bottom: 60px;
    }
    #LP .contents__h2 .shopBrand { font-size: 1.1em; }

    #LP .contents__block:not(:last-of-type) { margin-bottom: 60px; }

    /* フィルター */
    #LP .filter { margin-bottom: 60px; }

    #LP .filter > div:not(:last-of-type) { margin-bottom: 50px; }

    #LP .filter__label { font-size: 34px; }

    #LP .filter__operation { gap: 25px; }

    #LP .filter__input__box {
        width: 100%;
        max-width: 310px;
    }

    #LP .filter__input__label {
        font-size: 26px;
        min-height: 3em;
    }

    /* アンカーリンク */
    #LP .anchorLink { margin-bottom: 75px; }

    #LP .anchorLink a::before {
        border-top-width: 3px;
        border-right-width: 3px;
        top: calc(50% - (12px / 1.5));
        right: 12px;
        width: 12px;
        height: 12px;
    }

    #LP .anchorLink__h3 { font-size: 34px; }

    #LP .anchorLink__list {
        gap: 25px;
        padding-bottom: 50px;
    }

    #LP .anchorLink__list > li {
        width: 100%;
        max-width: 310px;
    }

    #LP .anchorLink__notes { max-width: 500px; }

    #LP .anchorLink__list > li a {
        font-size: 19px;
        line-height: 1.2;
        padding: .5em;
        min-height: 4em;
    }

    #LP .anchorLink__notes a { font-size: 19px; }

    /* フローティングボタン */
    #LP .floating { transform: translateY(25px); }

    #LP .floating a {
        font-size: 18px;
        bottom: 25px;
        right: 25px;
        width: 100px;
        height: 100px;
    }

    #LP .floating a::before {
        width: 14px;
        height: 14px;
    }

    #LP .output__block { padding: 0 20px; }
    #LP .output__block:not(:last-of-type) { margin-bottom: 60px; }

    #LP .output__h2 {
        font-size: 32px;
        padding: .6em 1em;
    }

    #LP .output__listBlock { padding: 60px 15px; }

    #LP .output__product:not(:only-child) { padding-bottom: 60px; }

    #LP .output__product:empty::before { font-size: 20px; }

    #LP .output__product.show-all > li:not(:first-of-type) { margin-top: 75px; }

    #LP .category__header {
        font-size: 34px;
        margin-bottom: 42px;
    }

    #LP .category__list {
        grid-template-columns: repeat(5, 1fr);
        gap: 0 25px;
    }

    #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: 25px; }

    #LP .category__list > li:nth-of-type(n+6):nth-of-type(-n+10) { margin-top: 25px !important; }

    #LP .category__list > li a {
        font-size: 14px;
        padding: 12px;
    }

    #LP .output__product__block:not(:last-of-type) { margin-bottom: 1.25em; }

    #LP .output__product__name { font-size: .9em; }
    #LP .output__product__price { font-size: 1.4em; }

    #LP .output__toggleButton {
        font-size: 20px;
        padding: 1em;
        max-width: 500px;
        width: 100%;
    }

    #LP .output__toggleButton::after,
    #LP .output__toggleButton::before {
        right: 20px;
        width: 20px;
    }

    #LP .contents__appeal { padding: 0 20px; }

    #LP .contents__appeal__block:not(:last-of-type) { margin-bottom: 60px; }

    #LP .contents__appeal__h3 {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 45px;
    }
    #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__box:not(:last-of-type) { margin-bottom: 50px; }

    #LP .contents__appeal__box.notes { padding: 42px 15px 60px 15px; }

    #LP .contents__appeal__box.notes > * {
        margin: 0 auto;
        max-width: 980px;
    }

    #LP .contents__appeal__h4 { font-size: 28px; }

    #LP .contents__appeal__notes > li { font-size: 15px; }
}