@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: #000;
	--lp-color_gray: #c7c7c7;
	--lp-color_white: #fff;

	--lp-color_main-fruitszipper: #e7312d;
    --lp-color_sub-fruitszipper: #f8dedd;
    --lp-color_andmall-blue: #2882ff;

    --lp-color_christmas-green: #257359;
    --lp-color_happy-newYear: #bf9944;
    --lp-color_big-acStand: #e72d83;

    --lp-color_booking-light: #ffe0ef;
    --lp-color_booking-dark: #d0314f;

    --lp-color_shadow: rgba(50, 50, 50, .1);
}

/*************************
main
SP_layout（980px未満）
*************************/

#LP {
	color: var(--lp-color_black);
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
    position: relative;
    overflow: hidden;
	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: #fff;
	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;
}

@media screen and (min-width: 980px) {
	#LP.is_end .campaiginEnd__text {
        font-size: 24px;
        padding: 3em;
        width: fit-content;
	}
}

#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 .common__headerRibbon {
    background-color: var(--lp-color_main-fruitszipper);
    color: var(--lp-color_white);
    clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 50%);
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5em;
    padding: .75em 1em;
    min-height: 3em;
}

#LP .common__headerDotted {
	color: var(--lp-color_black);
	font-size: 4vw;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .12em;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	margin-bottom: 5%;
	position: relative;
}

#LP .common__headerDotted::before,
#LP .common__headerDotted::after {
    background-image: radial-gradient(currentColor 1px, transparent 2px);
    background-size: 12px 12px;
    background-repeat: repeat-x;
    content: '';
    flex-grow: 1;
    height: 1.5em;
}
#LP .common__headerDotted::before { background-position: right; }
#LP .common__headerDotted::after { background-position: left; }

#LP .common__region {
    background-color: var(--lp-color_white);
    border-radius: 10px;
}

#LP .common__inner {
    margin: 0 auto;
    padding: 6% 3vw;
    width: 100%;
    max-width: 1000px;
}

#LP .common__infoList > li { font-size: 4.2vw; }
#LP .common__infoList > li:not(:last-of-type) { margin-bottom: 1em; }

#LP .common__discription__header {
    font-weight: 900;
    margin-bottom: .75em;
}

#LP .common__discription__text,
#LP .common__shipping { padding: 0 .5em 0 1em; }

#LP .common__discription__text,
#LP .common__shipping > li {
    font-size: .75em;
    font-weight: 700;
    line-height: 1.5;
}

#LP .common__shipping > li::before {
	content: '・';
	display: inline-block;
    position: absolute;
	margin-left: -1em;
	width: 1.1em;
}
#LP .common__shipping > li:not(:last-of-type) { margin-bottom: .5em; }

#LP .common__notes {
    font-size: 1.7vw;
    line-height: 1.6;
    margin-top: 2em;
    padding: 0 2em;
}
#LP .common__notes > li::before {
	content: '※';
	display: inline-block;
    position: absolute;
	margin-left: -1em;
	width: 1.1em;
}
#LP .common__notes > li:not(:last-of-type) { margin-bottom: .5em; }

#LP .common__button:not(:last-of-type) { margin-bottom: 4.5%; }

#LP .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;
    position: relative;
    margin: 0 auto;
    padding: .5em 1em;
    width: 80%;
    min-height: 4em;
}
#LP .common__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: 1em;
    transform: rotate(45deg);
    transition: border .4s, filter .4s;
    width: 2vw;
    height: 2vw;
}
#LP .common__button > a.andmall { background-color: var(--lp-color_andmall-blue); }

#LP .common__button > a.members {
    border-radius: 5px;
    width: 100%;
    max-width: 650px;
}

#LP .kv {
    background-color: var(--lp-color_main-fruitszipper);
    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_sub-fruitszipper); }

#LP .contents__inner {
    margin: 0 auto;
    padding: 3em 0;
    width: calc(100% - 3vw * 2);
    max-width: 1240px;
}

#LP .contents__header { margin-bottom: 10%; }

#LP .contents__header__h2 {
    font-size: 4vw;
    font-weight: 900;
    line-height: 2;
    text-align: center;
}
#LP .contents__header__h2 .textBlock.device_pc { display: block; }

#LP .contents__header__declaration {
    color: var(--lp-color_main-fruitszipper);
    font-size: 7vw;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    margin-top: 1em;
}

#LP.is_end .contents__block { filter: grayscale(1); }

#LP .contents__block:not(:last-of-type) { margin-bottom: 10%; }
#LP .shopInfo.contents__block { margin-bottom: 0 !important; }

#LP .salesInfo {
    background-color: var(--lp-color_white);
    border-radius: 15px;
}

#LP .salesInfo__inner {
    margin: 0 auto;
    padding: 8% 3vw;
    width: 100%;
    max-width: 980px;
}

#LP .salesInfo__block:not(:last-of-type) { margin-bottom: 3.5em; }
#LP .salesInfo__box:not(:last-of-type) { margin-bottom: 2.5em; }

#LP .output__block {
    background-color: var(--lp-color_white);
    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;
}
#LP .output__block.is_visible {
    opacity: 1;
    transform: translateY(0);
}
#LP .output__block:not(:last-of-type) { margin-bottom: 2em; }

#LP .output__h2.christmas { background-color: var(--lp-color_christmas-green); }
#LP .output__h2.newYear { background-color: var(--lp-color_happy-newYear); }
#LP .output__h2.bigacStand { background-color: var(--lp-color_big-acStand); }


#LP .output__product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3vw;
    align-items: stretch;
    position: relative;
}
#LP .output__product:not(:only-child) { margin-bottom: 8%; }

#LP .output__product:empty {
    text-align: center;
    margin-bottom: 0;
}
#LP .output__product:empty::before {
    content: "対象のアイテムがありません";
    font-size: 4vw;
    padding-left: 2vw;
}

#LP .output__product > li {
    transition: opacity .4s ease, max-height .4s ease, margin .4s;
    max-height: none;
}

#LP .output__product > li.is_visible {
    border: none;
    pointer-events: none;
    margin-top: 0;
    max-height: 0;
}

#LP .output__product > li:not(:nth-of-type(-n+2)) { margin-top: 3vw; }
#LP .output__product > li.is_visible:not(:nth-of-type(-n+2)) { margin-top: 0; }

#LP .output__product > 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;
    transition: .4s opacity, .4s filter;
    position: relative;
    padding: 2.5vw;
    height: 100%;
}
#LP .output__product > li.is_visible a {
    border: none;
    opacity: 0;
    padding: 0;
    height: 0;
}

#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__tag {
    background-color: var(--lp-color_gray);
    border-radius: 100px;
    color: var(--lp-color_black);
    font-weight: 700;
    display: inline-block;
    text-align: center;
    margin-bottom: .5em;
    padding: .25em 1em;
    width: fit-content;
}

#LP .output__product__tag.booking {
    background-color: var(--lp-color_booking-light);
    color: var(--lp-color_booking-dark);
}

#LP .output__product__tag,
#LP .output__product__name { font-size: .8em; }

#LP .output__product__discount,
#LP .output__product__price {
    color: var(--lp-color_main-fruitszipper);
    text-align: right;
}

#LP .output__product__discount { font-size: .95em; }
#LP .output__product__discount > span { font-size: .8em; }

#LP .output__product__price {
    font-size: 1.25em;
    font-weight: 600;
}

#LP .output__product__random {
    background-color: var(--lp-color_andmall-blue);
    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 .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;
    margin: 0 auto;
    padding: .5em 1em;
    width: 80%;
    min-height: 4em;
}
#LP .output__product:empty + .output__toggleButton { display: none; }

#LP .output__product:empty::before { padding-left: 15px; }

#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 .salesNotes__h3 {
    font-size: 4vw;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1em;
}

#LP .salesNotes__list {
    font-size: 2.4vw;
    margin-top: 0;
    padding: 0 0 0 1em;
}
#LP .salesNotes__list > li:not(:last-of-type) { margin-bottom: .25em; }

#LP .salesNotes__box { padding: 2em 1.5em; }

#LP .salesNotes__text {
    font-size: 4.5vw;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    padding: 1.5em 0;
}

#LP .salesNotes__text .textBlock.device_pc { display: block; }

#LP .shopDetail__baloon { text-align: center; }

#LP .shopDetail__baloon > .textBlock {
    font-size: 5vw;
    font-weight: 900;
    text-align: center;
    line-height: 1.4;
    display: inline-block;
    position: relative;
    margin-bottom: .5em;
}

#LP .shopDetail__baloon > .textBlock::before,
#LP .shopDetail__baloon > .textBlock::after {
    position: absolute;
    top: calc(50% - .5em);
}

#LP .shopDetail__baloon > .textBlock::before {
    content: "\FF3C";
    left: -1em;
    transform: rotate(15deg);
}
#LP .shopDetail__baloon > .textBlock::after {
    content: "\FF0F";
    right: -1em;
    transform: rotate(-15deg);
}

#LP .shopDetail__infoList {
    font-size: 4vw;
    line-height: 1.8;
}

#LP .shopDetail__infoList > li { display: flex; }

#LP .shopDetail__infoList > li:not(:last-of-type) { margin-bottom: 1em; }

#LP .shopDetail__infoList__h3 {
    font-weight: 900;
    text-align: center;
    width: 20%;
}

#LP .shopDetail__infoList__access,
#LP .shopDetail__infoList__text {
    padding-left: 1em;
    width: 80%;
}

#LP .shopDetail__infoList__access .gmap {
    color: var(--lp-color_black);
    display: inline-block;
    text-decoration: underline;
    transition: color .4s;
}
#LP .shopDetail__infoList__access .gmap:hover { color: var(--lp-color_main-fruitszipper); }

#LP .shopDetail__box { margin-top: 6%; }
#LP .shopDetail__button { margin-top: 3%; }

#LP .shopDetail__box > .shopDetail__button:not(:last-of-type) { margin: 0; }

#LP .nextPrev__baloon {
    color: var(--lp-color_main-fruitszipper);
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    margin-bottom: .5em;
}

#LP .nextPrev__baloon > .textBlock {
    display: inline-block;
    position: relative;
}

#LP .nextPrev__baloon > .textBlock::before,
#LP .nextPrev__baloon > .textBlock::after {
    background-image: url("../images/common/wh_main_header-nextPrev_decoration.png");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    top: 0;
    width: 1em;
    height: 100%;
}
#LP .nextPrev__baloon > .textBlock::before { left: -1em; }
#LP .nextPrev__baloon > .textBlock::after {
    right: -1em;
    transform: scaleX(-1);
}

#LP .appeal {
    line-height: 1.4;
    text-align: center;
}
#LP .appeal:not(:last-of-type) { margin-bottom: 8%; }

#LP .appeal__copylight { font-size: 2.4vw; }

#LP .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 .floating.is_visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#LP .floating__anchorLink {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: row wrap;
    gap: 2vw;
    margin: 0 auto;
    padding: 4vw 0;
    width: calc(100% - 2vw);
    max-width: 980px;
}
#LP .floating__anchorLink > li { width: calc((100% / 3) - 2vw); }

#LP .floating__anchorLink > li a {
    border-radius: 5px;
    box-shadow: 0 0 4px 0 var(--lp-color_shadow);
    color: var(--lp-color_white);
    display: block;
    font-size: 2.6vw;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    position: relative;
    padding: 1em .5em;
    min-height: 3em;
}
#LP .floating__anchorLink > li a.christmas { background-color: var(--lp-color_christmas-green); }
#LP .floating__anchorLink > li a.newYear { background-color: var(--lp-color_happy-newYear); }
#LP .floating__anchorLink > li a.bigacStand { background-color: var(--lp-color_big-acStand); }

#LP .floating__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% - 1.5vw / 2);
    right: 1.5vw;
    transform: rotate(135deg);
    width: 1.5vw;
    height: 1.5vw;
}

/*************************
main
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
    #LP .device_sp { display: none; }
	#LP .device_pc { display: block; }

    #LP .common__headerRibbon {
		font-size: 32px;
		min-height: 2em;
		max-width: 650px;
	}

    #LP .common__headerDotted {
		font-size: 42px;
		gap: 1em;
		margin-bottom: 25px;
	}

    #LP .common__region {
        border-radius: 20px;
        margin: 0 auto;
        width: calc(100% - 2em);
    }

    #LP .common__inner { padding: 50px 1em; }

    #LP .common__headerDotted::before,
    #LP .common__headerDotted::after {
		background-image: radial-gradient(currentColor 2px, transparent 3px);
        background-size: 18px 18px;
	}

    #LP .common__infoList > li { font-size: 34px; }

    #LP .common__notes { font-size: 14px; }

    #LP .common__discription__text,
    #LP .common__shipping > li { font-size: 23px; }

    #LP .common__shipping > li .textBlock { display: inline; }

    #LP .common__button:not(:last-of-type) { margin-bottom: 45px; }

    #LP .common__button > a {
        font-size: 20px;
        max-width: 500px;
        width: 100%;
    }
    #LP .common__button > a::after {
        border-top-width: 3px;
        border-right-width: 3px;
        top: calc(50% - (14px / 2));
        width: 14px;
        height: 14px;
    }

    #LP .kv__h1 { max-width: fit-content; }

    #LP .contents__inner {
        padding: 40px 0 80px 0;
        width: 100%;
    }

    #LP .contents__header { margin-bottom: 60px; }

    #LP .contents__header__h2 { font-size: 26px; }
    #LP .contents__header__h2 .textBlock.device_pc { display: inline; }

    #LP .contents__header__declaration { font-size: 42px; }
    #LP .contents__header__declaration > .textBlock { display: inline; }

    #LP .contents__block:not(:last-of-type) { margin-bottom: 60px; }

    #LP .output__block:not(:last-of-type) { margin-bottom: 60px; }

    #LP .output__product:not(:only-child) { margin-bottom: 60px; }
    #LP .output__product:empty::before { font-size: 24px; }

    #LP .output__product {
        grid-template-columns: repeat(5, 1fr);
        gap: 0 28px;
    }

    #LP .output__product > li:not(:nth-of-type(-n+2)),
    #LP .output__product > li.is_visible:not(:nth-of-type(-n+5)) { margin-top: 0; }

    #LP .output__product > li:not(:nth-of-type(-n+5)) { margin-top: 40px; }

    #LP .output__product > 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 .salesNotes__h3 { font-size: 32px; }

    #LP .salesNotes__list { font-size: 14px; }

    #LP .salesNotes__box {
        margin: 0 auto;
        padding: 3em 1em;
        width: 100%;
        max-width: 800px;
    }

    #LP .salesNotes__text { font-size: 32px; }
    #LP .salesNotes__text .textBlock.device_pc { display: inline; }

    #LP .shopDetail__baloon > .textBlock {
        font-size: 34px;
        margin-bottom: 1em;
    }

    #LP .shopDetail__baloon > .textBlock::before,
    #LP .shopDetail__baloon > .textBlock::after { top: 0; }

    #LP .shopDetail__baloon > .textBlock::before,
    #LP .shopDetail__baloon > .textBlock::after { transform: rotate(0deg); }

    #LP .shopDetail__baloon > .textBlock > .textBlock { display: inline; }

    #LP .shopDetail__h2 {
        font-size: 32px;
        margin-bottom: 1.5em;
        padding: .4em 1em;
        max-width: 650px;
    }

    #LP .shopDetail__infoList { font-size: 34px; }
    #LP .shopDetail__infoList > li:not(:last-of-type) { margin-bottom: .5em; }

    #LP .shopDetail__box { margin-top: 4em; }
    #LP .shopDetail__button { margin-top: 2em; }

    #LP .nextPrev__baloon { font-size: 60px; }

    #LP .appeal:not(:last-of-type) { margin-bottom: 60px; }

    #LP .appeal__copylight { font-size: 14px; }

    #LP .floating__anchorLink {
        gap: 1em;
        padding: 1em 0;
        width: 100%;
    }
    #LP .floating__anchorLink > li { width: calc((100% / 3) - (.25em * 3)); }

    #LP .floating__anchorLink > li a {
        border-radius: 10px;
        font-size: 20px;
    }

    #LP .floating__anchorLink > li a::before {
        top: calc(50% - 1em / 3);
        right: 1em;
        width: calc(1em / 2);
        height: calc(1em / 2);
    }
}