@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #fff;
	--BLACK: #000000;

	--DARK01: #404040;

	--GREEN01: #F3F5EA;
	--GREEN02: #002C1B;

	--GRAY01: #F0F0F0;
	--GRAY02: #D1D1D1;
	--GRAY03: #A7A7A7;
	--GRAY04: #404040;
	--GRAY05: #f8f8f8;
	--GRAY06: #dddddd;
	--GRAY07: #656565;
	--GRAY08: #ebebeb;
	--GRAY09: #f4f4f4;
	--GRAY10: #DEDEDE;

	--BLUE01: #2A71C3;
	--BLUE01_OP10: rgba(42, 113, 195, 0.1);
	--BLUE02: #103256;
	--BLUE03: #35B4B9;
	--BLUE03_OP10: rgba(53, 180, 185, 0.10);
	--BLUE04: #004E9E;
	--BLUE05: #D9EFFF;
	--BLUE06: #64B4DD;
	--BLUE06_OP30: rgba(100, 180, 221, 0.3);
	--BLUE07: #EDF2F6;
	--BLUE07_OP50: rgba(237, 242, 246, 0.5);
	--BLUE08: #E1EFF7;
	--BLUE09: #5DC3D3;
	--BLUE10: #0874BA;
	--BLUE11: #C6E1E6;
	--BLUE12: #B2BFCE;
	--BLUE13: #F2FCFC;
	--BLUE14: #F7FEFE;
	--BLUE15: #E4F8F9;
	--BLUE16: #C5E5E6;
	--BLUE17: #D8E8F5;
	--BLUE18: #FBFCFE;

	--GREEN01: #72A143;
	--GREEN02: #A3D98E;

	--ORANGE01: #E4A218;
	--ORANGE02: #F47F16;
	--ORANGE03: #F9D117;
	--ORANGE04: #E67C63;

	--YELLOW01: #F6D15C;
	--YELLOW02: #F2CC85;
	--YELLOW03: #F7E59B;
	--YELL0W04: #FCF5D6;
	--YELLOW05: #EDC81B;

	--BROWN01: #BF9D4C;
	--BROWN01_OP25 : rgba(191, 157, 76, 0.25);
	--BROWN02: #412210;
	--BROWN03: #AD9B7E;

	--PINK01: #EDA2A9;

	--RED01: #BD3535;
	--RED02: #D99595;
	--RED02_OP30: rgba(217, 149, 149, 0.3);
	--RED03: #8E0800;

	--BEIGE01: #F4F2EC;

	/* テキストベースカラー */
	--TXT_COLOR: var(--DARK01);

	/* ランキングカラー */
	--RANKING_1ST: #BA9700;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B75400;
	--RANKING_OTHER: #002C1B;
	/* 共通角丸 */
	--COMMON_BDRS: 5px;
	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px #d9d9d9;
	/* ベースフォント */
	--FF_BASE: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	/* 明朝体 */
	--FF_MINCHO: "Noto Serif JP", serif;
	/* 英数字フォント */
	--FF_EN: "Jost", sans-serif;
	--FF_NUM: "Jost", sans-serif;
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out .6s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out .6s forwards;

	/* フォトサイズ */
	--FZ_50: clamp(32px, 4vw, 50px);
	--FZ_36: clamp(24px, 3vw, 36px);
	--FZ_26: clamp(20px, 2.4vw, 26px);
	--FZ_22: clamp(18px, 2.2vw, 22px);
	--FZ_20: clamp(18px, 2vw, 20px);
	--FZ_18: clamp(16px, 1.8vw, 18px);
	--FZ_14: clamp(13px, 1.4vw, 14px);
	--FZ_12_CONST: 12px;
	--FZ_11_CONST: 11px;
	--FZ_BASE: clamp(14px, 1.5vw, 15px);

	/* インナー幅 */
	--MAX_WIDTH: 1200px;
	--MAX_WIDTH_SSS: 800px;
	--MAX_WIDTH_SS: 1000px;
	--MAX_WIDTH_S: 1100px;
	--MAX_WIDTH_L: 1320px;
}
@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 92%;
	--GENERALSEC: 30px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: normal;font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
iframe{
	vertical-align: bottom;
}
time{
	font-family: var(--FF_NUM);
}
body{
	font-family: var(--FF_BASE);
	font-weight: 400;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.06em;
	width:100%;
	color: var(--TXT_COLOR);
	position:relative;
	z-index: 0;
	overflow-x: hidden;
}
.form-reset button,
.form-reset input[type="button"],
.form-reset input[type="submit"],
.form-reset input[type="text"],
.form-reset input[type="image"],
.form-reset input[type="checkbox"],
.form-reset select{
	background-color: unset;
	color: var(--TXT_COLOR);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.form-reset input[type="text"],
.form-reset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
	color: var(--TXT_COLOR);
}
/* フォントCSS */
.mincho{
	font-family: "Noto Serif JP", serif;
}
.en{
	font-family: var(--FF_EN);
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.generalmg{
	margin-bottom: var(--GENERALSEC);
}
.generalpd{
	padding: var(--GENERALSEC) 0;
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.aic{
	align-items: center;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* タイトルの文字間 */
[class*="ttl"]{
  letter-spacing: 0.1em;
}
/* テキスト行間 */
[class*="txt"],
[class*="excerpt"],
[class*="name"]{
  line-height: 2;
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* youtube */
.youtube-area iframe {
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 10000/5625;
}
@media (hover: hover){
	.form-reset button:hover,
	.form-reset input[type="button"]:hover,
	.form-reset input[type="submit"]:hover,
	.form-reset input[type="image"]:hover,
  .form-reset input[type="checkbox"]:hover,
	.form-reset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 150px;
	}
	body{
		font-size: 15px;
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.omk-inner,
	.omk-pc-inner,
	.omk-inner-s,
	.omk-pc-inner-s,
	.omk-inner-l,
	.omk-inner-ss,
	.omk-inner-sss,
	.omk-pc-inner-sss{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.omk-inner,
	.omk-pc-inner{
		max-width: var(--MAX_WIDTH);
	}
	.omk-inner-s{
		max-width: var(--MAX_WIDTH_S);
	}
	.omk-inner-ss{
		max-width: var(--MAX_WIDTH_SS);
	}
	.omk-inner-sss,
	.omk-pc-inner-sss{
		max-width: var(--MAX_WIDTH_SSS);
	}
	.omk-pc-inner-s{
		max-width: var(--MAX_WIDTH_S);
	}

	.omk-inner-l{
		max-width: var(--MAX_WIDTH_L);
	}
	.max-wrapper{
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
	}
	.sp{
		display: none !important;
	}
	.pc-tategaki{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.pc-order-1st { order: 1; }
	.pc-order-2nd { order: 2; }
	.pc-order-3rd { order: 3; }
	.pc-order-4th { order: 4; }
	.pc-order-5th { order: 5; }
	.pc-order-6th { order: 6; }
	.pc-order-7th { order: 7; }
	.pc-order-8th { order: 8; }
	.pc-order-9th { order: 9; }
	.pc-order-10th { order: 10; }
}
@media screen and (max-width: 767px){
	body{
		font-size: 14px;
		line-height: 1.6;
	}
	.omk-inner,
	.omk-sp-inner,
	.omk-inner-s,
	.omk-inner-ss,
	.omk-sp-inner-s,
	.omk-inner-l,
	.omk-inner-sss{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.pc{
		display: none !important;
	}
	.sp-y-scroll{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-x-scroll{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.sp-tategaki{
		writing-mode: vertical-rl;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
.h-logo-area a{
	display: flex;
	align-items: center;
}
.h-logo-area span{
	color: var(--BLUE04);
	font-weight: 500;
}
.g-user{
	display: flex;
}
.g-user li{
	flex: 1;
}
.g-user li > span{
	height: 100%;
}
.g-user li a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
}
.g-user li a::after{
	display: block;
	text-align: center;
	content: attr(data-txt);
}
.g-user .icon{
	display: block;
	aspect-ratio: 1/1;
	mask: no-repeat center center / 100%;
	-webkit-mask: no-repeat center center / 100%;
	margin: 0 auto;
}
.hm-menu li{
	display: grid;
}
.hm-menu-item-second{
	display: grid;
}
.hm-menu-item a{
	font-weight: 700;
	color: var(--BLUE02);
	letter-spacing: 0.1em;
}
.hm-menu-item a:visited{
	color: var(--BLUE02);
}
.hm-menu-item-second{
	display: grid;
}
.hm-menu-item-second li a{
	position: relative;
	color: var(--BLUE02);
}
.hm-menu-item-second li a::before{
	content: "";
	background-color: var(--TXT_COLOR);
	mask: url(../images/common/arrow_down.svg) no-repeat center center / 100%;
	-webkit-mask: url(../images/common/arrow_down.svg) no-repeat center center / 100%;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(270deg);
}
.hm-contact{
	display: grid;
}
.hm-contact li a{
	display: block;
	color: var(--WHITE);
	background-color: var(--BLUE02);
}
.hm-contact li a > span{
	display: block;
}
.hm-contact-tel .tel{
	background: url(../images/common/icon_tel_2.svg) no-repeat left center;
	font-weight: 700;
}
.stop-items-link a{
  display: block;
  border: 1px solid var(--BLUE02);
  background: url(../images/common/arrow_next3.svg) no-repeat;
}
.stop-items-link a strong{
  background: linear-gradient(transparent 70%, var(--YELLOW03) 30%);
  font-weight: 400;
}
@media screen and (min-width: 1401px){
	.h-logo-area a{
		gap: 15px;
	}
	.h-logo-area img{
		width: 120px;
	}
	.h-logo-area span{
		font-size: 13px;
		line-height: 1.6;
	}
	.h-tel-area{
		font-size: 18px;
	}
	.h-tel-area small{
		font-size: 15px;
	}
	.h-tel-area strong{
		font-size: 35px;
	}
	.h-msg-area small{
		font-size: 12px;
	}
	.g-user li a{
		width: 90px;
	}
	.g-user li a::after{
		font-size: 11px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1400px){
	.h-logo-area a{
		gap: 12px;
	}
	.h-logo-area img{
		width: 100px;
	}
	.h-logo-area span{
		font-size: 11px;
		line-height: 1.5;
	}
	.h-tel-area{
		font-size: 13px;
	}
	.h-tel-area small{
		font-size: 11px;
	}
	.h-tel-area strong{
		font-size: 25px;
	}
	.h-msg-area{
		font-size: 12px;
	}
	.h-msg-area small{
		font-size: 10px;
	}
	.g-user li a{
		width: 75px;
	}
	.g-user li a::after{
		font-size: 10px;
	}
}
@media screen and (min-width: 1101px){
	.hvr-column{
		grid-template-columns: repeat(3, 1fr);
	}
	.hvr-menu-area{
		grid-template-columns: 1fr clamp( 300px, 40vw, 500px);
		align-items: flex-start;
		gap: clamp( 30px, 4vw, 50px);
	}
	.hvr-menu-right{
		grid-template-columns: clamp( 180px, 25vw, 280px) 1fr;
		align-items: center;
		gap: 20px 40px;
	}
	.hvr-search-form{
		grid-column: span 2;
	}
	.hm-contact{
		grid-column: span 2;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.h-txt-area{
		display: none;
	}
	.g-user-area{
		margin-left: auto;
	}
	.hvr-column{
		grid-template-columns: repeat(2, 1fr);
	}
	.hvr-column article:first-child{
		grid-column: span 2;
	}
	.hvr-column article:first-child a{
		grid-template-columns: 200px 1fr;
	}
	.hvr-menu-area{
		gap: 30px;
	}
	.hvr-menu-right{
		grid-template-columns: 1.5fr 1fr;
		align-items: flex-start;
		gap: 15px 20px;
	}
	.hm-contact{
		grid-row: span 3;
	}
	.hvr-menu-right .g-sns{
		max-width: 200px;
		justify-content: center;
	}
}
@media screen and (min-width: 768px){
	#headerarea{
		width: 100%;
		position: sticky;
		top: 0;
		left: 0;
		background-color: var(--WHITE);
		z-index: 99;
	}
	.h-top-area{
		display: flex;
		align-items: stretch;
		padding: 15px 0;
	}
	.h-inner{
		width: 98%;
		max-width: 1600px;
		margin: 0 auto;
	}
	.h-logo-area{
		width: fit-content;
	}
	.h-txt-area{
		flex: 1;
		border-left: 1px solid var(--BLUE02);
		padding: 0 10px;
		margin-left: 20px;
	}
	.h-tel-area{
		padding: 0 0 15px 15px;
		border-bottom: 1px solid var(--BLUE02);
		margin-bottom: 8px;
		display: flex;
		align-items: center;
		color: var(--BLUE02);
		line-height: 1;
		font-weight: 500;
	}
	.h-tel-area small{
		font-weight: 700;
	}
	.h-tel-area strong{
		color: var(--BLUE01);
		background: url(../images/common/icon_tel.svg) no-repeat left center / 30px;
		padding-left: 43px;
		display: inline-block;
		margin: 0 10px 0 20px;
		position: relative;
		top: -2px;
	}
	.h-msg-area{
		font-weight: 700;
		padding-left: 15px;
	}
	.h-msg-area small{
		font-weight: 400;
	}
	.g-user-area{
		width: fit-content;
		border-left: 1px solid var(--BLUE02);
		margin-left: auto;
	}
	.g-user{
		height: 100%;
	}
	.g-user li{
		border-right: 1px solid var(--BLUE02);
	}
	.g-user .icon{
		width: 50%;
		background-color: var(--BLUE01);
	}
	.g-user li a::after{
		color: var(--BLUE02);
	}
	.g-user li a[data-txt="カート"]{
		position: relative;
	}
	.g-user .fs-client-cart-count{
		top: 5px;
		right: 15px;
	}
	.g-nav-area{
		background-color: var(--BLUE02);
		position: relative;
	}
	.g-nav{
		display: flex;
	}
	.g-nav > li:not(.hamburger-ps){
		flex: 1;
	}
	.g-nav-ttl{
		position: relative;
	}
	.g-nav > li:first-child .g-nav-ttl::before,
	.g-nav-ttl::after{
		content: "";
		display: inline-block;
		background: var(--WHITE);
		width: 1px;
		height: calc(100% - 18px);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.g-nav > li:first-child .g-nav-ttl::before{
		left: 0;
	}
	.g-nav-ttl::after{
		right: -0.5px;
	}
	.g-nav > li:not(.hamburger-ps) .g-nav-ttl{
		color: var(--WHITE);
		display: block;
		text-align: center;
		padding: 18px 0 29px;
		position: relative;
		font-size: clamp( 11px, 1.2vw, 16px);
	}
	.g-nav > li[ontouchstart=""]:not(.hamburger-ps) .g-nav-ttl span{
		display: block;
		width: 100%;
		height: 100%;
	}
	.g-nav > li[ontouchstart=""]:not(.hamburger-ps) .g-nav-ttl span::after{
		content: "";
		display: inline-block;
		background-color: var(--WHITE);
		aspect-ratio: 2/1;
		mask: url(../images/common/arrow_down.svg) no-repeat center center / 100%;
		-webkit-mask: url(../images/common/arrow_down.svg) no-repeat center center / 100%;
		width: 12px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: .3s;
		bottom: 15px;
	}
	.g-nav > li[ontouchstart=""]:hover .g-nav-ttl{
		opacity: 1;
		color: var(--BLUE02);
		background-color: var(--BLUE05);
	}
	.g-nav > li[ontouchstart=""]:hover .g-nav-ttl span::after{
		background-color: var(--BLUE02);
	}
	.hvr-show{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		padding-top: 20px;
		position: absolute;
		top: calc(100% - 21px);
		left: 0;
		width: 100%;
	}
	.g-nav > li[ontouchstart=""]:hover .hvr-show{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.g-nav__cushion{
		position: relative;
	}
	.hvr-contents{
		background-color: #fff;
		padding: 50px 0;
		box-shadow: var(--COMMON_BXSD);
	}
	.hvr-contents > div{
		width: var(--INNER_WIDTH);
		max-width: 1400px;
		margin: 0 auto;
	}
	.hvr-mattoress-area{
		display: grid;
		grid-template-columns: 1fr 1fr 1.3fr;
		align-items: flex-start;
		gap: clamp( 20px, 4.5vw, 100px);
	}
	.hvr-mattoress-desc dt{
		font-size: clamp( 13px, 1.3vw, 15px);
		font-weight: 700;
		letter-spacing: 0.1em;
		color: var(--BLUE02);
		padding-bottom: 5px;
		border-bottom: 1px solid var(--BLUE02);
		margin-bottom: 8px;
	}
	.hvr-mattoress-menu{
		display: grid;
	}
	.hvr-mattoress-menu li a{
		display: grid;
		grid-template-columns: clamp( 50px, 6vw, 75px) 1fr;
		align-items: center;
		gap: 10px;
	}
	.hvr-mattoress-menu li a .icon{
		display: block;
		background: no-repeat center center / 100%;
		aspect-ratio: 1/1;
	}
	.hvr-mattoress-menu li a .ttl,
	.hvr-cushion-menu li a .ttl{
		font-size: clamp( 13px, 1.3vw, 15px);
		font-weight: 700;
		color: var(--BLUE02);
	}
	.hvr-mattoress-other{
		background-color: var(--BLUE01_OP10);
		display: grid;
		padding: clamp( 15px, 1.6vw, 20px) clamp( 20px, 2.5vw, 30px);
		gap: 13px;
	}
	.hvr-mattoress-other li a{
		font-size: clamp( 13px, 1.3vw, 15px);
		font-weight: 700;
		color: var(--BLUE02);
	}
	.hvr-contents:has(.hvr-cushion-area){
		padding: 10px 15px;
		width: 200px;
	}
	.hvr-cushion-menu li:not(:last-child){
		border-bottom: 1px solid var(--BLUE02);
	}
	.hvr-cushion-menu li a{
		display: block;
		padding: 10px;
	}
	.hvr-column{
		display: grid;
		gap: clamp( 20px, 2.5vw, 35px);
	}
	.hvr-column article a{
		display: grid;
		grid-template-columns: clamp( 80px, 12vw, 140px) 1fr;
		gap: 10px;
		align-items: flex-start;
		background-color: var(--GRAY09);
		padding: clamp( 10px, 1.2vw, 17px);
	}
	.hvr-column article a img{
		border: 1px solid var(--GRAY03);
	}
	.hvr-column article a p{
		font-size: clamp( 13px, 1.3vw, 15px);
		font-weight: 700;
		color: var(--BLUE02);
		line-height: 1.6;
	}
	.hamburger-ps{
		width: 60px;
	}
	.hamburger-ps .g-nav-ttl{
		height: 100%;
		background: url(../images/common/icon_open.svg) no-repeat center center / 40%;
	}
	.hamburger-ps .g-nav-ttl:hover{
		cursor: pointer;
	}
	.hamburger-ps.active .g-nav-ttl{
		background-image: url(../images/common/icon_close.svg);
	}
	.hamburger-ps.active .hvr-show{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hvr-menu-area{
		display: grid;
	}
	.hm-menu{
		display: grid;
		grid-template-columns: repeat(3,1fr);
		align-items: flex-start;
	}
	.hm-menu li{
		gap: 15px;
	}
	.hm-menu-item a{
		font-size: clamp( 13px, 1.3vw, 15px);
	}
	.hm-menu-item-second{
		gap: 10px;
	}
	.hm-menu-item-second li a{
		padding-left: 15px;
		font-size: clamp( 11px, 1.2vw, 13px);
	}
	.hm-menu-item-second li a::before{
		width: 8px;
	}
	.hvr-menu-right{
		display: grid;
	}
	.hm-contact{
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 10px;
		align-items: stretch;
	}
	.hm-contact li a{
		padding: clamp( 10px, 1.2vw, 15px) 10px clamp( 10px, 1.2vw, 15px) 20px;
		height: 100%;
		font-weight: 500;
	}
	.hm-contact .hm-contact-mail a{
		display: flex;
		align-items: center;
		background: var(--BLUE02) url(../images/common/icon_mail.svg) no-repeat left 17px top 23px / 34px;
		padding-left: 60px;
	}
	.hm-contact .ttl{
		font-size: clamp( 10px, 1vw, 12px);
		line-height: 1.6;
	}
	.hm-contact .hm-contact-tel a{
		display: grid;
		gap: 5px 15px;
	}
	.hm-contact-tel .tel{
		font-size: clamp( 20px, 2.3vw, 30px);
		line-height: 1;
		padding-left: 28px;
    background-size: 22px;
	}
	.hm-contact-tel .hours{
		font-size: 12px;
		font-weight: 300;
	}
	.hm-contact-tel a .ttl{
		grid-row: span 2;
	}
	.hvr-search-form input[type="text"]{
		border: 1px solid var(--TXT_COLOR);
	}
	.hvr-search-form{
		width: 100%;
	}
	.hvr-search-form input[type="text"]{
		padding: 10px 40px 10px 20px;
	}
	.hvr-search-form button{
		width: 20px;
	}
	.hvr-menu-right .stop-items-link a{
		font-size: clamp( 13px, 1.3vw, 15px);
		padding: 10px 30px 10px 20px;
		background-size: 15px;
		background-position: right 10px center;
		color: var(--BLUE02);
	}
	.hvr-menu-right .stop-items-link a span{
		display: none;
	}
	.hvr-menu-right .g-sns{
		gap: 20px;
	}
	.hvr-menu-right .g-sns li a{
		background-color: var(--BLUE01);
	}
	body.scroll .h-top-area.h-inner{
		padding: 10px 0;
	}
	body.scroll .h-logo-area img{
		width: 80px;
	}
	body.scroll .h-logo-area span{
    font-size: 11px;
    line-height: 1.3;
	}
	body.scroll .h-tel-area{
		padding: 0 0 10px 15px;
		margin-bottom: 5px;
	}
	body.scroll .h-tel-area strong{
		font-size: 25px;
	}
	body.scroll .g-user li a{
		width: 75px;
	}
	body.scroll .g-user li a::after{
		font-size: 10px;
	}
	body.scroll .g-user .icon{
		width: 35%;
	}
	body.scroll .g-nav > li:not(.hamburger-ps) .g-nav-ttl{
		padding: 15px 0;
		font-size: clamp(10px, 1.1vw, 14px);
	}
	body.scroll .g-nav > li[ontouchstart=""]:not(.hamburger-ps) .g-nav-ttl span::after{
		width: 9px;
		bottom: 5px;
	}
}
@media screen and (max-width: 767px){
	#headerarea{
		border-bottom: 1px solid var(--GRAY03);
	}
	.h-top-area{
		padding: 15px 0;
	}
	.h-inner{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.h-logo-area a{
		gap: 20px;
		justify-content: center;
	}
	.h-logo-area img{
		width: 60px;
	}
	.h-logo-area span{
		font-size: 12px;
	}
	.g-user-area{
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		background-color: var(--BLUE02);
		z-index: 999;
	}
	.g-user .icon{
		width: 28px;
		background-color: var(--WHITE);
	}
	.g-user li a{
		height: 70px;
		padding-bottom: 20px;
		position: relative;
	}
	.g-user li a::after{
		color: var(--WHITE);
		font-size: 10px;
		margin-top: 5px;
		position: absolute;
		width: 100%;
		text-align: center;
		bottom: 10px;
	}
	.g-user li a[data-txt="カート"]{
		position: relative;
	}
	.g-user .fs-client-cart-count{
		top: 10px;
		right: 15px;
	}
}
/* ヘッダー検索 */
.g-search-form{
	position: relative;
}
.g-search-form input[type="text"]{
	width: 100%;
	background-color: var(--WHITE);
	border-radius: 70px;
}
.g-search-form input[type="text"]::placeholder{
	color: var(--GRAY03);
}
.g-search-form button{
	background: url(../images/common/icon_search.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}
.g-keyword-list li a::before{
	content: '#';
}
.h-search-form input[type="text"]{
	border: 1px solid var(--TXT_COLOR);
}
.h-keyword-area{
	overflow-x: scroll;
	display: flex;
	align-items: center;
}
.h-keyword-list li a::before{
	color: var(--ORANGE03);
}
.h-keyword-ttl{
	width: fit-content;
	font-weight: 700;
	background: url(../images/common/arrow_next2.svg) no-repeat left bottom / 100%;
}
.h-keyword-list-area{
	flex: 1;
}
.h-keyword-list{
	white-space: nowrap;
}
.h-keyword-list li{
	display: inline-block;
}
@media screen and (min-width: 768px){
	.h-search-area{
		padding: 13px 0;
	}
	.h-search-form{
		width: clamp( 250px, 30vw, 380px);
	}
	.h-search-form input[type="text"]{
		padding: 10px 40px 10px 20px;
	}
	.h-search-form button{
		width: 20px;
	}
	.h-search-inner{
		display: flex;
		align-items: center;
		gap: 15px;
		width: 95%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.h-keyword-area{
		flex: 1;
		gap: 20px;
		padding-bottom: 5px;
	}
	.h-keyword-area::-webkit-scrollbar{/* Chrome, Safari 対応 */
		height: 5px;
	}
	.h-keyword-area::-webkit-scrollbar:hover{
		cursor: pointer;
	 }
	.h-keyword-area::-webkit-scrollbar-thumb{
		background-color: var(--BLUE01_OP10);
 	}
	.h-keyword-ttl{
		padding: 0 20px 5px 0;
		font-size: 13px;
	}
	.h-keyword-list li{
		margin-right: 15px;
	}
	.h-keyword-list li a{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px){
	.h-search-area{
    padding: 20px 0 40px;
	}
	.sp .h-search-area{
    padding: 20px 0 30px;
    background-color: var(--BLUE01_OP10);
    margin: -5px 0 30px 0;
	}
	.h-search-form input[type="text"]{
		padding: 10px 30px 10px 20px;
	}
	.h-search-form button{
		width: 15px;
	}
	.h-keyword-area{
		gap: 20px;
		padding: 0 calc((100% - var(--INNER_WIDTH)) / 2);
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
		margin-top: 10px;
	}
	.h-keyword-area::-webkit-scrollbar{/* Chrome, Safari 対応 */
		display: none;
	}
	.h-keyword-ttl{
		padding: 0 20px 5px 0;
		font-size: 13px;
	}
	.h-keyword-list li{
		margin-right: 12px;
	}
	.h-keyword-list li a{
		font-size: 13px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
#footerarea{
	background-color: var(--BLUE02);
	color: var(--WHITE);
}
#footerarea a{
	color: var(--WHITE);
}
.pagetop{
	z-index: 990;
}
.pagetop a{
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid var(--WHITE);
	background: url(../images/common/arrow_up.svg) no-repeat center center / 100%;
}
.g-sns{
	display: flex;
}
.g-sns li{
	flex: 1;
}
.g-sns li a{
	display: block;
	background-color: var(--WHITE);
	mask: no-repeat center center / 100%;
	-webkit-mask: no-repeat center center / 100%;
	aspect-ratio: 1/1;
}
.f-copy{
	border-top: 1px solid var(--WHITE);
	text-align: center;
}
@media screen and (min-width: 1001px){
	.f-link-sub.two-column{
		column-gap: clamp( 10px, 2vw, 30px);
	}
	.f-cal-area{
		width: 540px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.f-cal-area{
		width: 260px;
	}
}
@media screen and (min-width: 768px){
	.pagetop{
		width: 50px;
		position: fixed;
		bottom: 20px;
		right: 3%;
	}
	.f-logo{
		width: 145px;
		margin: 0 auto;
		padding: 80px 0;
	}
	.f-flex{
		display: flex;
	}
	.f-link-area{
		flex: 1;
	}

	.f-link-area{
		display: flex;
		align-items: flex-start;
		gap: clamp( 35px, 5vw, 120px);
	}
	.f-link-area > div{
		display: grid !important;
		gap: 10px;
	}
	.f-link-sub{
		display: grid;
		row-gap: 10px;
	}
	.f-link-sur a{
		position: relative;
		padding-left: 15px;
		font-size: clamp( 13px, 1.3vw, 15px);
	}
	.f-link-sur a::before{
		content: "";
		display: inline-block;
		background: var(--YELLOW01);
		border-radius: 50%;
		width: 8px;
		aspect-ratio: 1/1;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.f-link-sub li a{
		position: relative;
		padding-left: 10px;
		font-size: 14px;
	}
	.f-link-sub li a::before{
		content: "";
		display: inline-block;
		background: var(--WHITE);
		border-radius: 50%;
		width: 3px;
		aspect-ratio: 1/1;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.g-sns{
		gap: 30px;
	}
	.f-cal-area .g-sns{
		width: 260px;
		margin-left: auto;
	}
	.f-end-link{
		margin-top: 80px;
		display: flex;
		gap: 80px;
	}
	.f-end-link li a{
		font-size: 14px;
	}
	.f-copy{
		font-size: 14px;
		padding: 10px 0;
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		width: 35px;
		position: fixed;
		bottom: 80px;
		right: 10px;
	}
	.f-logo{
		width: 120px;
		margin: 0 auto;
		padding: 50px 0;
	}
	.g-sns{
		max-width: 200px;
		margin: 0 auto;
		gap: 30px;
	}
	.f-end-link{
		margin-top: 50px;
		display: flex;
		justify-content: center;
		gap: 30px;
	}
	.f-end-link li a{
		font-size: 11px;
	}
	.f-copy{
		font-size: 10px;
		padding: 10px 0 90px;
		margin-top: 10px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------タブ切り替え共通css----------------- */
.tab-nav{
	display: flex;
}
.tab-btn{
	flex: 1;
}
.tab-contents {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-contents.show {
	cursor: auto;
  height: auto;
  overflow: unset;
  opacity: 1;
  transition: .5s opacity;
}
@media screen and (min-width: 768px){
	.tab-btn:hover{
		cursor: pointer;
	}
	.tab-btn.show{
		cursor: auto;
	}
}
/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay {
  display: none; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup-overlay.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-box{
	overflow-y: scroll;
}
.popup-overlay button.closePopup{
	position: absolute;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid #fff;
	background-color: var(--TXT_COLOR);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.popup-overlay button.closePopup::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f00d';
	display: block;
	line-height: 1;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}
@media screen and (min-width: 768px){
	.popup-overlay .popup-content{
		width: 95%;
		max-width: 900px;
	}
	.popup-overlay .popup-box{
		padding: 50px 30px;
		max-height: 90vh;
	}
	.popup-overlay button.closePopup{
		width: 40px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
}
@media (hover: hover){
	.popup-overlay button.closePopup:hover{
		cursor: pointer;
	}
}
@media screen and (max-width: 767px){
	.popup-overlay .popup-content{
		width: 90%;
	}
	.popup-overlay .popup-box{
		padding: 30px 15px;
		max-height: 80vh;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
	.popup-overlay button.closePopup{
		width: 30px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 18px;
	}
}
/* -----------------フューチャー調整CSS----------------- */
/* 内部の色設定 */
:root{
	--WISH_COLOR: #2971c3;
	--FS_BTN_COLOR_1: var(--BLUE01);
	--FS_BTN_COLOR_2: var(--BLUE02);
	--REVIEW_COLOR: #edc622;
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
}
#sidearea{
	background-color: #f2f2f2;
}
@media screen and (min-width: 1100px){
  #sidearea{
    width: 240px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px){
  #sidearea{
    width: 200px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 950px){
  #sidearea{
    display: none;
  }
}
@media screen and (min-width: 768px){
	#wrapper > .flex{
		align-items: flex-start;
	}
}
/* カートカウント */
.fs-client-cart-count{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1/1;
	width: 20px;
	font-size: 11px;
	background-color: var(--ORANGE01);
	color: var(--WHITE);
	border-radius: 50%;
	position: absolute;
}
/* 商品マークリセット */
.fs-c-productMarks{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	--BDRS: 3px;
}
.fs-c-productMark{
	gap: 5px;
}
.fs-c-productMark__mark{
	width: fit-content;
}
.fs-c-productMark li,
.fs-c-productMark span,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	margin: 0;
	font-size: 11px;
  background-color: var(--GRAY03);
	color: var(--WHITE);
  border-radius: var(--BDRS);
}
.fs-c-productMark__mark,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	display: inline-block;
	padding: 4px 8px 6px;
	line-height: 1;
}
.fs-c-productMark img{
	width: auto;
	height: 20px;
}
.fs-c-productMarks > .fs-c-mark{
	line-height: 1;
}
/* 1回のみ・定期 */
.fs-c-mark--normalAndSubscription .fs-c-mark__label{
	background-color: var(--BROWN02);
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 定期販売 */
.fs-c-mark--subscription .fs-c-mark__label{
	background-color: #D21341;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 初回特別価格あり */
.fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label{
	background-color: #FF506F;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* パンくずリセット  */
.fs-c-breadcrumb__list {
  padding: 0;
	max-width: var(--MAX_WIDTH);
	margin-left: auto;
	margin-right: auto;
}
.fs-c-breadcrumb__list > li {
  box-sizing: border-box;
}
.fs-c-breadcrumb__listItem {
  display: inline-block;
  word-break: break-all;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: " > ";
}
.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
	color: var(--TXT_COLOR);
}
.fs-c-breadcrumb li a{
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 0 auto;
		padding: 10px 0;
		font-size: 14px;
    margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		padding: 8px 0 8px 10px;
		font-size: 11px;
		overflow: hidden;
		position: relative;
    margin-bottom: 20px;
	}
	.fs-c-breadcrumb::after{
		content: "";
    right: 0;
    width: 6.25rem;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg,#fff 21.11%,hsla(0,0%,100%,0) 107.22%);
    z-index: 10;
		top: 0;
	}
	.fs-c-breadcrumb__list{
		white-space: nowrap;
    overflow: scroll;
		padding-right: 40px;
	}
}
/* レビュー */
.fs-c-rating__value{
	color: var(--REVIEW_COLOR);
}
.fs-c-reviewStars::before{
	color: var(--REVIEW_COLOR);
}
/* ページャー */
.fs-c-listControl {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 2;
	padding: 6px 15px 4px;
	margin: 10px 0 40px;
}
.wp-pagenavi{
	display: flex;
	justify-content: center;
}
#next > span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
}
.found-postContainer,
.fs-c-listControl__status{
	font-size: 16px;
	text-align: center;
	margin-bottom: 30px;
	padding-top: 1em;
}
.fs-c-pagination > *,
.wp-pagenavi > *{
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: normal;
	border-radius: 50%;
}
.fs-c-pagination__item{
	padding: 0;
}
.fs-c-pagination__item.is-active,
.wp-pagenavi .current{
	background-color:var(--FS_BTN_COLOR_1);
	border: 1px solid var(--FS_BTN_COLOR_1);
	color: var(--WHITE);
}
.fs-c-pagination{
	font-weight: bold;
	align-items: center;
}
a.fs-c-pagination__item.fs-c-pagination__item--prev,
a.fs-c-pagination__item.fs-c-pagination__item--next,
#next a.previouspostslink,
#next a.nextpostslink{
	border: 1px solid var(--FS_BTN_COLOR_1);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding: 0;
	position: relative;
}
#next a.previouspostslink .navi-prev,
#next a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before,
#next a.previouspostslink .navi-prev::before,
#next a.nextpostslink .navi-next::before{
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	display: inline-block;
  color: var(--BLACK);
  font-size: 16px;
  vertical-align: text-bottom;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
#next a.previouspostslink .navi-prev::before{
	content: "\f104";
}
.fs-c-pagination__item--next::before,
#next a.nextpostslink .navi-next::before{
	content: "\f105";
}
@media screen and (min-width: 768px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 18px;
		gap: 10px;
	}
	#next {
		margin: 70px auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 45px;
	}
}
@media (hover: hover){
	.fs-c-pagination__item--next:hover{
		color: var(--WHITE);
	}
}
@media screen and (max-width: 767px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 16px;
		gap: 10px;
	}
	#next {
		margin: 40px auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 34px;
	}
}
/* aiレコメンドリセット */
.fs-p-heading--lv2,
.fr3-item__rankContainer{
	display: none;
}
.fr3-productListStatic{
	padding: 0 !important;
}
.fr3-item__productPrice__currencyMark{
	display: none;
}
.fr3-item__productPrice__price{
	font-weight: 500;
}
.fr3-item__productPrice__value::after{
	display: inline-block;
	margin-left: 3px;
	content: "円";
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR);
	}
}
@media screen and (min-width: 768px){
	.fr3-item__productName{
		font-size: 16px;
	}
	.fr3-item__productPrice__value{
		font-size: 24px;
	}
	.fr3-item__productPrice__value::after{
		font-size: 14px;
	}
	.fr3-item__productPrice__addon{
		font-size: 18px;
	}
}
@media screen and (max-width: 767px){
	.fr3-item__productName{
		font-size: 14px;
		line-height: 1.8;
	}
	.fr3-item__productPrice__value{
		font-size: 18px;
	}
	.fr3-item__productPrice__value::after{
		font-size: 11px;
	}
	.fr3-item__productPrice__addon{
		font-size: 13px;
	}
}

/* -------------------sec-ttl-------------------- */
.sec-ttl{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	color: var(--BLUE02);
	font-weight: 700;
	letter-spacing: 0.1em;
}
.sec-ttl-deco-line{
	width: calc(100% + 12px);
	display: grid;
	grid-template-columns: repeat(2,1fr);
	position: relative;
	gap: 7px;
	overflow: hidden;
	padding-bottom: 22px;
}
.sec-ttl-deco-line span:first-child,
.sec-ttl-deco-line span:last-child,
.sec-ttl-deco-line span:first-child::before{
	height: 3px;
}
.sec-ttl-deco-line span:first-child,
.sec-ttl-deco-line span:last-child{
	display: inline-block;
	content: "";
	background-color: var(--BLUE01);
	width: 100%;
	border-radius: 200px;
}
.sec-ttl-deco-line span:first-child{
	position: relative;
}
.sec-ttl-deco-line span:first-child::before{
	position: absolute;
	top: -5px;
	right: -1px;
	transform-origin:right top;
	transform: rotate(-60deg);
	display: inline-block;
	content: "";
	background-color: var(--BLUE01);
	border-radius: 200px;
}
.has-deco-line.simple .sec-ttl-deco-line{
	grid-template-columns: 1fr;
}
.has-deco-line.simple .sec-ttl-deco-line span:last-child{
	display: none;
}
.has-deco-line.simple .sec-ttl-deco-line span:first-child::before{
	display: none;
}
@media screen and (min-width: 768px){
  .sec-ttl{
		font-size: 40px;
		margin: 0 auto 50px;
		padding: 0 10px;
	}
	.sec-ttl-deco-line span:first-child::before{
		width: 30px;
	}
}
@media screen and (max-width: 767px){
	.sec-ttl{
		font-size: 25px;
		margin: 0 auto 10px;
		padding: 0 5px;
	}
	.sec-ttl-deco-line span:first-child::before{
		width: 20px;
	}
}
/* -------------------背景色-------------------- */
.sec-blue-bg{
	background-color: var(--BLUE01_OP10);
}
.sec-gray-bg{
	background-color: var(--GRAY01);
}
.sec-gradation-bg{
	background: linear-gradient(180deg, rgba(53,180,185,0.1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 70%, rgba(53,180,185,0.1) 100%);
}
/* -------------------閲覧履歴-------------------- */

[data-frame-id="g_history_items"] .fr3-item__image{
	border-radius: 50%;
}
[data-frame-id="g_history_items"] .fr3-item__productName,
[data-frame-id="g_history_items"] .fr3-item__productPrice{
	display: none;
}
[data-frame-id="g_history_items"] .fr3-productListStatic{
	display: flex;
}
@media screen and (min-width: 768px){
	.g-history-sec{
		padding: calc(var(--GENERALSEC) / 2) 0;
	}
  .g-history-sec .sec-ttl{
		font-size: 24px;
		margin-bottom: 20px;
	}

	[data-frame-id="g_history_items"] .fr3-productListStatic article:nth-of-type(n+8){
		display: none;
	}
}
@media screen and (max-width: 767px){
	.g-history-sec{
		padding: var(--GENERALSEC) 0;
	}
	.g-history-sec .sec-ttl{
		font-size: 20px;
		margin-bottom: 10px;
	}
	[data-frame-id="g_history_items"] .fr3-productListStatic{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2) !important;
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2) !important;
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
		gap: 10px;
	}
	[data-frame-id="g_history_items"] .fr3-productListStatic::-webkit-scrollbar{/* Chrome, Safari 対応 */
		display: none;
	}
	[data-frame-id="g_history_items"] .fr3-productListStatic article{
		min-width: 90px;
		max-width: 80px;
	}
}
/* -------------------more-btn-------------------- */
.more-btn{
	width: 100%;
}
.more-btn a{
	display: block;
	background-color: var(--WHITE);
	border: 1px solid var(--TXT_COLOR);
	text-align: center;
	letter-spacing: 0.2em;
	position: relative;
	border-radius: 70px;
	font-weight: 500;
}
.more-btn.dark-blue a{
	color: var(--WHITE);
	background-color: var(--BLUE02);
	border: 1px solid var(--BLUE02);
}
.more-btn.dark-blue-reverse a{
	color: var(--BLUE02);
	background-color: var(--WHITE);
	border: 2px solid var(--BLUE02);
}
.more-btn.blue-green a{
	color: var(--WHITE);
	background-color: var(--BLUE03);
	border: 1px solid var(--BLUE03);
}
.more-btn.blue-green-reverse a{
	color: var(--BLUE03);
	background-color: var(--WHITE);
	border: 1px solid var(--BLUE03);
}
.more-btn a::after{
	content: "";
	display: inline-block;
	background-color: var(--TXT_COLOR);
	mask: url(../images/common/arrow_next.svg) no-repeat center center / 100%;
	-webkit-mask: url(../images/common/arrow_next.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	width: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}
.more-btn.dark-blue a::after{
	background-color: var(--WHITE);
}
.more-btn.blue-green a::after{
	background-color: var(--WHITE);
}
.more-btn.blue-green-reverse a::after{
	background-color: var(--BLUE03);
}
.more-btn.anchor-link a::after{
	transform: translateY(-50%) rotate(180deg);
}
.more-btn-pair{
	display: grid;
}
.more-btn-pair .more-btn{
	margin: 0;
	width: 100%;
}
@media (hover: hover){
	.more-btn a:hover{
		opacity: 1;
		background-color: var(--BLUE02);
		color: var(--WHITE);
	}
	.more-btn.dark-blue a:hover{
		background-color: var(--WHITE);
		color: var(--BLUE02);
	}
	.more-btn.dark-blue-reverse a:hover{
		background-color: var(--BLUE02);
		color: var(--WHITE);
	}
	.more-btn.blue-green a:hover{
		background-color: var(--WHITE);
		color: var(--BLUE03);
	}
	.more-btn.blue-green-reverse a:hover{
		background-color: var(--BLUE03);
		color: var(--WHITE);
	}
	.more-btn a::after{
		transition: 0.5s;
	}
	.more-btn a:hover::after{
		background-color: var(--WHITE);
	}
	.more-btn.dark-blue a:hover::after{
		background-color: var(--BLUE02);
	}
	.more-btn.blue-green a:hover::after{
		background-color: var(--BLUE03);
	}
	.more-btn.blue-green-reverse a:hover::after{
		background-color: var(--WHITE);
	}
}
@media screen and (min-width: 768px){
	.more-btn{
		max-width: 300px;
	}
	.more-btn{
		margin: 50px auto 0;
	}
	.more-btn a{
		padding: 12px 0;
	}
	.more-btn a::after{
		right: 25px;
	}
	.more-btn-pair{
		justify-content: center;
		grid-template-columns: repeat(2, clamp( 250px, 28vw, 300px));
		gap: clamp( 30px, 4vw, 50px);
		margin: 50px auto 0;
	}
}
@media screen and (max-width: 767px){
	.more-btn{
		max-width: 250px;
	}
	.more-btn{
		margin: 40px auto 0;
	}
	.more-btn a{
		padding: 10px 0;
		font-size: 13px;
		letter-spacing: 0.08em;
	}
	.more-btn a::after{
		right: 15px;
		font-size: 12px;
	}
	.more-btn-pair{
		width: 250px;
		gap: 10px;
		margin: 40px auto 0;
	}
}
/* -------------------f-bnr-area-------------------- */
.f-bnr-ttl{
	text-align: center;
}
@media screen and (min-width: 951px){
	.f-bnr-list{
		grid-template-columns: repeat(4,1fr);
		gap: 50px 30px;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.f-bnr-list{
		grid-template-columns: repeat(3,1fr);
		gap: 40px 20px;
	}
}
@media screen and (min-width: 768px){
	.f-bnr-ttl{
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.f-bnr-list{
		grid-template-columns: repeat(2,1fr);
		gap: 30px 10px;
	}
	.f-bnr-ttl{
		font-size: 12px;
		margin-top: 5px;
	}
}
/* -------------------f-guide-area-------------------- */
.f-guide-icon{
	aspect-ratio: 1/1;
	mask: no-repeat center center / 100%;
	-webkit-mask: no-repeat center center / 100%;
	background-color: var(--BLUE04);
}
.f-guide-ttl{
	font-weight: 500;
}
.f-guide-txt a{
	text-decoration: underline;
	color: var(--BLUE01);
}
@media screen and (min-width: 1001px){
	.f-guide-list{
		display: flex;
		flex-wrap: wrap;
	}
	.f-guide-list li:not(:last-child){
		border-right: 1px solid var(--GRAY02);
	}
	.f-guide-list li{
		flex: 1;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.f-guide-list{
		max-width: 700px;
		margin: 0 auto;
		row-gap: 50px;
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
}
@media screen and (min-width: 768px){
	.f-guide-list li{
		padding: 0 40px;
	}
	.f-guide-icon{
		width: 80px;
		margin: 0 auto 15px;
	}
	.f-guide-ttl{
		font-size: clamp( 16px, 1.8vw, 20px);
		text-align: center;
		margin-bottom: 15px;
	}
	.f-guide-txt{
		font-size: clamp( 12px, 1.4vw, 16px);
	}
}
@media screen and (max-width: 767px){
  .f-guide-list{
		display: grid;
		gap: 30px;
	}
	.f-guide-list li{
		display: grid;
		grid-template-columns: 80px 1fr;
		column-gap: 15px;
	}
	.f-guide-icon{
		grid-row: 1 / 3;
		mask-size: 75%;
		mask-position: top center;
	}
	.f-guide-ttl{
		font-size: 18px;
	}
	.f-guide-txt{
		font-size: 12px;
	}
}

.guide-payment-area{
	padding-top: var(--GENERALSEC);
	border-top: 1px solid var(--GRAY02);
	margin-top: var(--GENERALSEC);
}
.guide-payment-ttl{
	text-align: center;
}
.guide-payment-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.guide-payment-list img{
	width: auto;
}
.guide-payment-txt{
	text-align: center;
}
@media screen and (min-width: 768px){
	.guide-payment-list{
		gap: 30px;
		margin: 50px 0;
	}
	.guide-payment-list img{
		height: 40px;
	}
	.guide-payment-txt{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.guide-payment-list{
		gap: 20px;
		margin: 40px 0;
	}
	.guide-payment-list img{
		height: 30px;
	}
	.guide-payment-txt{
		font-size: 12px;
	}
}
/* -------------------カレンダー-------------------- */
.calendar{
	width: 100%;
	color: var(--DARK01);
	--SUN_COLOR: #e91e1e;
	--SAT_COLOR: #1e64d3;

}
.calendar > div{
	padding-bottom: 15px;
	background-color: var(--WHITE);
}
.monthName{
	text-align: center;
	background-color: var(--BLUE01);
	color: var(--WHITE);
	padding: 10px 0;
}
.TableInner{
	padding: 16px;
}
#calendarTable{
	width: 100%;
	border-collapse: collapse;
}
#calendarTable th{
	font-weight: 400;
}
#calendarTable tbody tr{
	display: flex;
}
#calendarTable tbody tr > *{
	flex: 1;
	text-align: center;
	font-size: 14px;
	padding: 3px 0;
}
#calendarTable tbody tr th{
	color: var(--DARK01);
}
#calendarTable tbody tr .youbi_0,
#calendarTable tbody tr td.public_holiday{
	color: var(--SUN_COLOR);
}
#calendarTable tbody tr .youbi_6{
	color: var(--SAT_COLOR);
}
.closed,
.kyugyobi{
	position: relative;
	z-index: 0;
}
.closed::after,
.kyugyobi::after{
	content: "";
	display: inline-block;
	background-color: var(--GRAY02);
	aspect-ratio: 1/1;
	width: 22px;
	position: absolute;
	z-index: -1;
}
.closed::after{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.kyugyobi::after{
	left: -30px;
	top: 2px;
}
.kyugyobi{
	color: var(--DARK01);
	width: fit-content;
	margin: 0 15px 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.calendar > div:last-child{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.calendar{
		margin-bottom: 20px;
		display: flex;
		gap: 20px;
	}
	.calendar > div{
		flex: 1;
		max-width: 260px;
		margin-left: auto;
	}
}
@media screen and (max-width: 767px){
	.calendar{
		margin: 0 auto 20px;
	}
	.calendar.slick-dotted.slick-slider{
		margin-bottom: 50px;
	}
	.calendar .slick-dots{
		bottom: -30px;
	}
	.calendar .slick-dots li{
		margin: 0 2px;
	}
	.calendar .slick-dots li button:before{
		width: 100%;
		height: 100%;
		background: var(--WHITE);
		font-size: 0;
		opacity: 1;
	}
	.calendar .slick-dots li.slick-active button:before{
		opacity: 1;
		background: var(--BLUE01);
	}
	.calendar .slick-dots li{
		width: 40px;
		height: 4px;
	}
}

/* -------------------各ページお知らせ出力-------------------- */
[class*="news-displayTo--"] li a{
	display: flex;
	gap: 10px;
}
[class*="news-displayTo--"] li{
	padding-bottom: 8px;
	border-bottom: 1px solid var(--GRAY02);
	margin-bottom: 8px;
}
[class*="news-displayTo--"] time{
	width: fit-content;
}
[class*="news-displayTo--"] .news-ttl {
	flex: 1;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
/* -------------------contents_pager-------------------- */
.contents_pager ul {
  margin: auto;
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.contents_pager li {
  margin: auto 5px;
}
.contents_pager a {
  padding: 8px 10px;
  display: inline-block;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 100px;
  line-height: 1em;
}
.contents_pager a.current {
  background: #bbb;
  pointer-events: none;
}
/* -------------------cat-sec-------------------- */
.cat-sec .h-search-area{
  padding: 0;
}
.cat-thumb{
  border: 1px solid var(--BLUE02);
}
.cat-name{
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px){
  .cat-sec .h-search-inner{
    display: block;
    max-width: 800px;
    margin: 0 auto 50px;
  }
  .cat-sec .g-search-form{
    width: 100%;
    margin-bottom: 20px;
  }
  .cat-sec .g-search-form input[type="text"]{
    padding: 15px 20px;
    font-size: 20px;
  }
  .cat-list{
    grid-template-columns: repeat(4,1fr);
    gap: 50px 20px;
  }
  .cat-name{
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px){
  .cat-sec .h-search-inner{
    margin-bottom: 30px;
  }
  .cat-sec .g-search-form{
    margin-bottom: 10px;
  }
  .cat-list{
    grid-template-columns: repeat(2,1fr);
    gap: 30px 10px;
  }
  .cat-name{
    margin-top: 5px;
    font-size: 12px;
  }
}
/* ■■■■■■■■■■■■■■■■■■■■■■旧ページ調整■■■■■■■■■■■■■■■■■■■■■■ */
.oldPage-heading{
	background-color: #85C5E1;
	color: var(--WHITE);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
@media screen and (min-width: 768px){
	.oldPage{
		margin: 30px auto var(--GENERALSEC);
	}
	.oldPage-heading{
		font-size: 20px;
		padding: 10px 20px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px){
	.oldPage{
		margin: 20px auto var(--GENERALSEC);
	}
	.oldPage-heading{
		font-size: 16px;
		padding: 10px 20px;
		margin-bottom: 30px;
		text-align: center;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■topと商品ページのお知らせ■■■■■■■■■■■■■■■■■■■■■■ */
.g-topInfo{
	background: var(--ORANGE04);
	padding-block: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.g-topInfo a{
	color: var(--WHITE);
	text-decoration: underline;
	font-weight: 500;
}
.g-topInfo::before{
	content: "";
	display: inline-block;
	background: url(../images/common/header-info.svg) no-repeat center center / 100%;
	aspect-ratio: 133/75;
}
.g-topInfo__arrow{
	font-weight: 600 !important;
	margin-left: 5px !important;
}
@media screen and (min-width: 768px){
	.g-topInfo a{
		font-size: 15px;
	}
	.g-topInfo::before{
		width: 33px;
	}
	.g-topInfo__arrow{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px){
	.g-topInfo a{
		font-size: 12px;
	}
	.g-topInfo::before{
		width: 25px;
	}
	.g-topInfo__arrow{
		font-size: 11px;
	}
}
/* 2025.4.15追記  ヘッダー下部(soukaike2-FP)202504改修パーツ*/
.g-nav-area-renewal .hvr-mattoress-other{
  grid-template-columns: 1fr 1fr;
}
.g-nav-area-renewal .hvr-mattoress-otherWrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* 2025.4.23追記 */
.hamburger-bnr-half{
  width:var(--INNER_WIDTH);
  margin-inline: auto;
  margin-top: 10px;
}
