@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-dark-brown: #624753;
    --lp-color-light-brown: #89707b;
	--lp-color-gray: #c7c7c7;
	--lp-color-white: #fff;
    --lp-color-bg: #f8fbff;

    /* メインカラー */
    --lp-color-off-white: #f5f2f2;
    --lp-color-pink-soft: #e4ced1;
    --lp-color-pink-hard: #f55198;

    --lp-color-blue-dark: #2c5591;
    --lp-color-blue-soft: #b4c8e5;
    --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未満）
*************************/

#LP {
	color: var(--lp-color-dark-brown);
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
    letter-spacing: -.05em;
    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: var(--lp-color-white);
	border-radius: 5px;
	color: var(--lp-color-dark-brown);
	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-blue-dark);
    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;
}
#LP .common__headerRibbon.niziu { display: none; }

#LP .common__region { border-radius: 15px; }
#LP .common__region:not(:last-of-type) { margin-bottom: 10%; }

#LP .common__inner {
    margin: 0 auto;
    /* padding: 6% 3vw; */
    width: 100%;
    max-width: 1060px;
}

#LP .common__infoList > li { font-size: 4.2vw; }
#LP .common__infoList > li:not(:last-of-type) { margin-bottom: .5em; }

#LP .common__discription__header {
    font-weight: 900;
    margin-bottom: 1em;
}

#LP .common__discription__text,
#LP .common__shipping { padding: 0 .5em; }

#LP .common__discription__text,
#LP .common__shipping > li {
    font-size: .9em;
    font-weight: 700;
    line-height: 1.5;
}

#LP .common__shipping > li:not(:last-of-type) { margin-bottom: .25em; }

#LP .common__notes {
    font-size: 2.2vw;
    line-height: 1.6;
    margin-top: 1.5em;
    padding: 0 1em;
}

#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-dark-brown);
    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;
}
#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-blue-primary); }

#LP .common__button > a.event {
    background-color: var(--lp-color-yellow-bright);
    color: var(--lp-color-dark-brown);
}
#LP .common__button > a.event::after {
    border-top-color: var(--lp-color-dark-brown);
    border-right-color: var(--lp-color-dark-brown);
}

#LP .common__button > a.members { width: 100%; }

#LP .kv {
    background-color: var(--lp-color-pink-soft);
    width: 100%;
    height: auto;
}

#LP .kv__h1 {
    margin: 0 auto;
    width: 100%;
}

#LP .contents { background-color: var(--lp-color-blue-pale); }

#LP .contents__inner {
    margin: 0 auto;
    padding: 2em 0;
    width: calc(100% - 3vw * 2);
    max-width: 1100px;
}

#LP .contents__header {
    text-align: center;
    line-height: 1.4;
    letter-spacing: .05em;
    margin-bottom: 10%;
}

#LP .contents__header__h2,
#LP .contents__header__h3 {
    font-weight: 900;
    margin-bottom: 1em;
}
#LP .contents__header__h2 .textBlock.device_pc,
#LP .contents__header__h3 .textBlock.device_pc { display: block; }

#LP .contents__header__h2 {
    color: var(--lp-color-pink-hard);
    font-size: 6.4vw;
}

#LP .contents__header__block:not(:last-of-type) { margin-bottom: 5%; }

#LP .contents__header__h3 {
    color: var(--lp-color-light-brown);
    font-size: 4vw;
}

#LP .contents__header__declaration {
    font-size: 2.6vw;
    line-height: 1.4;
}

#LP .contents__header__h4 {
    color: var(--lp-color-light-brown);
    font-size: 3.8vw;
    font-weight: 800;
    letter-spacing: -.05em;
    margin: 0 auto;
    padding-bottom: .5em;
    width: fit-content;
}

#LP.is_end .contents__block { filter: grayscale(1); }

#LP .product__seasonList > li:not(:last-of-type) { margin-bottom: 2em; }

#LP .product__seasonList__h4 {
    color: var(--lp-color-blue-primary);
    text-indent: -.5em;
}

#LP .product__seasonList__accordion:not(:last-of-type) { padding-bottom: .75em; }

#LP .product__seasonList__h5 {
    background-color: var(--lp-color-blue-soft);
    color: var(--lp-color-blue-dark);
    cursor: pointer;
    font-size: 4vw;
    font-weight: 900;
    display: flex;
    align-items: center;
    user-select: none;
    position: relative;
    padding: .5em 1em;
}
#LP .product__seasonList__h5::before {
    background-color: var(--lp-color-bg);
    border-radius: 9999px;
    content: "";
    display: inline-block;
    position: absolute;
    top: .5em;
    right: 1em;
    width: 1.25em;
    height: 1.25em;
}
#LP .product__seasonList__h5 > .textBlock {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 1.75em;
    width: 100%;
    height: 1.25em;
}

#LP .product__seasonList__h5 > .textBlock::before,
#LP .product__seasonList__h5 > .textBlock::after {
    background-color: var(--lp-color-blue-dark);
    border-radius: 3px;
    content: "";
    position: absolute;
    transition: transform .4s;
    top: calc(50% - (3px / 2));
    right: .25em;
    width: .75em;
    height: 3px;
}
#LP .product__seasonList__h5 > .textBlock::after { transform: rotate(90deg); }

#LP .is_show .product__seasonList__h5 > .textBlock::before { transform: rotate(180deg); }
#LP .is_show .product__seasonList__h5 > .textBlock::after { transform: rotate(0deg); }

#LP .product__seasonList__shipping {
    overflow: hidden;
    opacity: 0;
    transition: opacity .3s,max-height .3s ease, margin .3s;
    max-height: 0;
}
#LP .is_show .product__seasonList__shipping {
    opacity: 1;
    margin: .75em 0;
}

#LP .product__seasonList__shipping > li { font-weight: 900; }

#LP .salesInfo.common__region {
    background-color: var(--lp-color-white);
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 var(--lp-color-shadow);
}

#LP .salesInfo__inner {
    margin: 0 auto;
    width: 100%;
}

#LP .salesInfo__block:not(:last-of-type) { margin-bottom: 3.5em; }

#LP .salesInfo__box { position: relative; }
#LP .salesInfo__box:not(:last-of-type) { margin-bottom: 2.5em; }

#LP .salesInfo__h3 {
    color: var(--lp-color-blue-primary);
    font-size: 5vw;
    text-indent: -.5em;
}

#LP .salesInfo__seasonList > li {
    font-size: 3.6vw;
    display: flex;
    align-items: center;
}

#LP .salesInfo__h4 {
    display: inline-flex;
    margin: 0;
}
#LP .salesInfo__h4::after {
    content: "：";
    display: inline-block;
}

#LP .salesInfo__button { margin-top: 8%; }
#LP .salesInfo__button > a::after { transform: rotate(135deg); }

#LP .seasonList__text { padding: 0; }

/* フィルター */
#LP .filter { margin-bottom: 1.5em; }

#LP .filter > div:not(:last-of-type) { margin-bottom: 8%; }

#LP .filter__group { text-align: center; }

#LP .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;
}

#LP .filter__operation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    width: 100%;
}

/* ダミー要素 */
#LP .filter__operation__dummy {
    position: relative;
    z-index: 2;
}

#LP .filter__operation__dummy__text {
    color: var(--lp-color-white);
    font-size: 3vw;
    font-weight: 800;
    text-shadow: 0 0 6px var(--lp-color-blue-dark);
    text-align: center;
    letter-spacing: .075em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    gap: 1em;
    position: absolute;
    width: 100%;
    height: 100%;
}
#LP .filter__operation__dummy__text::before {
    background-color: rgba(44, 85, 145, .5);
    backdrop-filter: blur(2px);
    content: "";
    position: absolute;
    top: -.5em;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: calc(100% + 1em);
}
#LP .filter__operation__dummy__text > * { z-index: 3; }

#LP .filter__operation__dummy__header { text-decoration: underline; }

#LP .filter__operation__dummy__info {
    font-size: .7em;
    margin-top: 1em;
}

#LP .filter__operation__dummy__text .common__notes {
    font-size: .55em;
    text-align: left;
    margin: 0 auto;
    margin-top: .5em;
    padding: 0 .5em;
    width: fit-content;
}
#LP .filter__operation__dummy__text .common__notes > li { margin: 0; }
#LP .common__notes > li::before { content: "・"; }

#LP .filter__operation__dummy__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    user-select: none;
    position: relative;
    z-index: 0;
    margin-bottom: 3vw;
    width: 100%;
}

#LP .filter__input__check { display: none; }

#LP .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%;
}
#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: 3px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: .5em;
    width: 1em;
    height: 1em;
}

#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 { position: relative; }

#LP .output__block {
    background-color: var(--lp-color-white);
    /* box-shadow: 0 3px 6px 0 var(--lp-color-shadow); */
    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: 1.5em; }

#LP .output__product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 0 2.5vw; */
    align-items: stretch;
    position: relative;
}
#LP .output__product:not(:only-child) { margin-bottom: 8%; }

#LP .output__product:empty {
    display: block;
    text-align: center;
    margin-bottom: 0;
    padding: 3.5em 0 5em 0;
}
#LP .output__product:empty::before {
    content: "対象のアイテムがありません";
    color: var(--lp-color-gray);
    font-size: 4vw;
    font-style: italic;
}

#LP .output__product > li {
    /* border: 1px solid var(--lp-color-pink-soft); */
    box-sizing: border-box;
    transition:
        opacity .4s ease,
        max-height .4s ease,
        min-height .4s ease,
        margin .4s;
    opacity: 1;
    overflow: hidden;
    /* padding: .5em; */
    height: auto;
}

#LP .output__product > li.is_visible {
    border: none;
    pointer-events: none;
    opacity: 0;
    margin-top: 0;
}

#LP .output__product > li:not(:nth-of-type(-n+2)) { margin-top: 4vw; }
#LP .output__product > li.is_visible:not(:nth-of-type(-n+2)) { margin-top: 0; }

#LP .output__product a {
    background-color: var(--lp-color-white);
    border-radius: 6px;
    color: var(--lp-color-dark-brown);
    cursor: pointer;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    /* gap: .5em; */
    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: auto; */
    height: 100%;
}
#LP .output__product .is_visible a {
    border: none;
    opacity: 0;
    padding: 0;
}

#LP .output__product__block { width: 100%; }

#LP .output__product__image {
    background-color: var(--lp-color-white);
    border: 2px solid var(--lp-color-dark-brown);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    /* margin-bottom: .5em; */
    width: 100%;
}
#LP .output__product__image > img {
    aspect-ratio: 5 / 6;
    background-color: var(--lp-color-pink-soft);
    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;
    width: 100%;
    height: 100%;
}
#LP .output__product > li:hover img { scale: 1.1; }

@keyframes loading__spin {
    to { transform: rotate(360deg); }
}

#LP .output__product__spinner {
    animation: loading__spin 1s linear infinite;
    border: 4px solid var(--lp-color-pink-soft);
    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;
}

#LP .output__product__text {
    text-align: left;
    padding: .5em;
}

#LP .output__product__tag {
    background-color: var(--lp-color-blue-pale);
    border-radius: 100px;
    color: var(--lp-color-blue-dark);
    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__name { font-weight: 700; }

#LP .output__product__discount,
#LP .output__product__price {
    color: var(--lp-color-pink-hard);
    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.15em;
    font-weight: 600;
    padding: .25em;
}

#LP .output__product__price > span {
    border-bottom: 2px solid var(--lp-color-pink-hard);
    display: inline-block;
    padding: 0 .25em;
}
#LP .output__product__price > span::first-letter {
    font-size: .75em;
    padding-right: .1em;
}

#LP .output__product__random {
    background-color: var(--lp-color-blue-primary);
    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;
    text-shadow: 0 0 6px var(--lp-color-dark-brown);
    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-dark-brown);
    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::before,
#LP .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;
}
#LP .output__toggleButton::after { transform: rotate(90deg); }

#LP .output__toggleButton:hover::before { transform: rotate(90deg); }
#LP .output__toggleButton:hover::after { transform: rotate(180deg); }

#LP .output__toggleButton.is_show::before { transform: rotate(180deg); }
#LP .output__toggleButton.is_show::after { transform: rotate(0deg); }

#LP .salesNotes.common__region {
    background-color: var(--lp-color-white);
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 var(--lp-color-shadow);
}

#LP .salesNotes__h3 {
    font-size: 4vw;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1em;
}

#LP .salesNotes__list {
    margin: 0 auto;
    padding: 0 0 0 1em;
    max-width: 980px;
}
#LP .salesNotes__list > li:not(:last-of-type) { margin-bottom: .25em; }

#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__speechBubble {
    font-size: 3.6vw;
    text-align: center;
    position: relative;
    margin: 0 auto;
    padding: 0 2em 1em 2em;
    width: fit-content;
}
#LP .shopDetail__speechBubble::before,
#LP .shopDetail__speechBubble::after {
    background-image: url("../images/common/wh_icon_speedLines.svg");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    top: 1em;
    width: 2em;
    height: 100%;
}
#LP .shopDetail__speechBubble::before { left: -1em; }

#LP .shopDetail__speechBubble::after {
    right: -1em;
    transform: scaleX(-1);
}

#LP .shopDetail__block {
    background-color: var(--lp-color-white);
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 var(--lp-color-shadow);
}

#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-dark-brown);
    display: inline-block;
    text-decoration: underline;
    transition: color .4s;
}
#LP .shopDetail__infoList__access .gmap:hover { color: var(--lp-color-blue-dark); }

#LP .shopDetail__text {
    color: var(--lp-color-red-deep);
    font-size: 5vw;
    font-weight: 800;
    text-align: center;
    line-height: 1.5;
}

#LP .shopDetail__box {
    text-align: center;
    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-blue-dark);
    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; }

/* フローティングボタン */
@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_show {
    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-off-white);
    border-radius: 1000px;
    border: 2px solid var(--lp-color-dark-brown);
    color: var(--lp-color-dark-brown);
    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_show a { pointer-events: auto; }

#LP .floating a:hover {
    background-color: var(--lp-color-pink-soft);
    color: var(--lp-color-dark-brown);
}
#LP .floating a::before {
    border-top: 3px solid var(--lp-color-dark-brown);
    border-right: 3px solid var(--lp-color-dark-brown);
    border-radius: 0 3px 0 0;
    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-dark-brown);
    border-right-color: var(--lp-color-dark-brown);
    transform: rotate(-45deg) translate(5px, -5px);
}

/*************************
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: 676px;
	}

    #LP .common__headerDotted {
		font-size: 42px;
		gap: 1em;
		margin-bottom: 25px;
	}

    #LP .common__region:not(:last-of-type) { margin-bottom: 60px; }

    /* #LP .common__inner { padding: 40px 40px 60px 40px; } */

    #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: 18px; }

    #LP .common__discription__text,
    #LP .common__shipping > li { font-size: 24px; }

    #LP .common__shipping > li .textBlock { display: inline; }

    #LP .common__button:not(:last-of-type) { margin-bottom: 45px; }

    #LP .common__button > a {
        font-size: 23px;
        max-width: 450px;
        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 .common__button > a.members { max-width: 676px; }

    #LP .kv__h1 { max-width: fit-content; }

    #LP .contents__inner {
        padding: 40px 20px 80px 20px;
        width: 100%;
    }

    #LP .contents__header { margin-bottom: 60px; }

    #LP .contents__header__h2 { font-size: 32px; }
    #LP .contents__header__h3 { font-size: 20px; }

    #LP .contents__header__h2 .textBlock.device_pc,
    #LP .contents__header__h3 .textBlock.device_pc { display: inline; }

    #LP .contents__header__h4 {
        font-size: 20px;
        letter-spacing: 0;
    }

    #LP .contents__header__block:not(:last-of-type) { margin-bottom: 50px; }

    #LP .contents__header__declaration { font-size: 22px; }
    #LP .contents__header__declaration > .textBlock { display: inline; }

    #LP .product__seasonList__h5 { font-size: 24px; }

    #LP .salesInfo__h3 {
        font-size: 32px;
        margin-bottom: .5em;
    }

    #LP .salesInfo__seasonList > li { font-size: 24px; }

    #LP .salesInfo__notes { font-size: 14px; }

    #LP .salesInfo__button { margin-top: 60px; }

    /* フィルター */
    #LP .filter { margin-bottom: 40px; }

    #LP .filter > div:not(:last-of-type) { margin-bottom: 50px; }

    #LP .filter__label { font-size: 34px; }

    #LP .filter__operation {
        gap: 25px;
        margin: 0 auto;
        max-width: 768px;
    }

    /* ダミー要素 */
    #LP .filter__operation__dummy__text { font-size: 22px; }

    #LP .filter__operation__dummy__body {
        gap: 25px;
        margin: 0 auto;
        margin-bottom: 25px;
        max-width: 768px;
    }

    #LP .filter__input__box { width: 100%; }

    #LP .filter__input__label {
        font-size: 24px;
        min-height: 3em;
    }

    #LP .output__block:not(:last-of-type) { margin-bottom: 40px; }

    #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 24px; */
    }

    #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 a {
        font-size: 16px;
        /* padding: 12px; */
    }

    #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: 450px;
        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: 15px; }

    #LP .salesNotes__text { font-size: 32px; }
    #LP .salesNotes__text .textBlock.device_pc { display: inline; }

    #LP .shopDetail__inner { padding: 40px 0; }

    #LP .shopDetail__infoList { font-size: 34px; }
    #LP .shopDetail__infoList > li:not(:last-of-type) { margin-bottom: .5em; }

    #LP .shopDetail__text { font-size: 33px; }
    #LP .shopDetail__text > .textBlock { display: inline; }

    #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 { 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;
    }
}