@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #fff;
	--WHITE_OP90: rgba(255, 255, 255, 0.9);
	--BLACK: #000;

	--GRAY01: #E8E8E8;
	--GRAY02: #D1D1D1;
	--GRAY03: #717171;
	--GRAY04: #f2f2f2;

	--DARK01: #212121;
	--DARK01_OP50: rgba(33, 33, 33, 0.5);
	--DARK02: #3E3E3E;

	--GOLD01: #D1B569;
	--GOLD01_OP25: rgba(209, 181, 105, 0.25);
	--GOLD01_OP30: rgba(209, 181, 105, 0.3);
	--GOLD01_OP70: rgba(209, 181, 105, 0.7);
	--GOLD02: #A7852D;
	--GOLD02_OP30: rgba(167, 133, 45, 0.3);
	--GOLD_BG: #F7F5EE;
	--GOLD03: #DDD8CF;
	--GOLD04: #DECB95;
	--GOLD05: #F6F0E1;

	--ORANGE01: #EB9100;

	--RED01: #A00000;
	--RED02: #9B0000;

	--PINK01: #ce8080;
	
	--BLUE01: #223353;
	--BLUE01_OP10: rgba(34, 51, 83, 0.1);
	--BLUE01_OP30: rgba(34, 51, 83, 0.3);
	--BLUE01_OP90: rgba(34, 51, 83, 0.9);
	--BLUE02: #E8EAED;

	--MUG_COLOR: var(--BLUE01);

	--PURPLE01: #552950;
	--PURPLE02: #F0EAF0;

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

	/* テキストベースカラー */
	--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 #b5b5b5;
	/* ベースフォント */
	--FF_BASE: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	/* 明朝体 */
	--FF_SERIF: "Noto Serif JP", serif;
	/* 英数字フォント */
	--FF_EN: "Noto Sans JP", sans-serif;
	--FF_NUM: "Noto Sans JP", sans-serif;
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out .6s forwards;
	--ANIME_FADEOUT: fadeOut .8s ease-in-out .6s forwards;


	/* フォトサイズ */
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp( 12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_19: clamp(16px, 1.7vw, 19px);
	--FZ_20: clamp(18px, 1.8vw, 20px);
	--FZ_22: clamp(18px, 2vw, 22px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_50: clamp(30px, 4vw, 50px);

	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;


	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);

	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* マージン */
	--MG_5: 5px;
	--MG_10: 10px;
	--MG_15: 15px;
	--MG_20: 20px;
	--MG_30: 30px;
	--MG_40: 40px;
	--MG_50: 50px;
	--MG_60: 60px;
	--MG_80: 80px;


	/* インナー幅 */
	--MAX_WIDTH: 1200px;
	--MAX_WIDTH_SS: 800px;
	--MAX_WIDTH_S: 1000px;
	--MAX_WIDTH_M: 1200px;
	--MAX_WIDTH_L: 1440px;
	--WRAPPER_MAX_WIDTH: 1320px;

	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}


@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: 40px;
	}
}
/* フェードインアニメーション */
@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;
}
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;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR);
}
.sp-menu-area a,
.hd-after-order a,
.g-nav a,
#footerarea a{
	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;
}
.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);
}
time{
	font-family: var(--FF_NUM);
}
/* フォントCSS */
.mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.soure_sans{
	font-family: 'Source Sans 3', sans-serif;
}
/* 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;
}
.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;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
  letter-spacing: 0.1em;
}
/* テキスト行間文字間 */
[class*="txt"],
[class*="excerpt"],
[class*="name"]{
  line-height: 2;
	letter-spacing: 0.1em;
}
/* スクロールバー消す */
.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;
}
/* 改行用 */
.dib{
	display: inline-block;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 80px;
	}
	body{
		font-size: var(--FZ_15);
		line-height: 1.7 !important;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.trp-inner,
	.trp-inner-l,
	.trp-pc-inner-l,
	.trp-pc-inner-m,
	.trp-inner-m,
	.trp-inner-s{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.trp-inner,
	.trp-pc-inner{
		max-width: var(--MAX_WIDTH);
	}
	.trp-pc-inner-l,
	.trp-inner-l{
		max-width: var(--MAX_WIDTH_L);
	}
	.trp-pc-inner-m,
	.trp-inner-m{
		max-width: var(--MAX_WIDTH_M);
	}
	.trp-inner-s{
		max-width: var(--MAX_WIDTH_S);
	}
	.sp{
		display: none !important;
	}
	.hamburger{
		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 (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 (max-width: 767px){
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.trp-inner,
	.trp-sp-inner,
	.trp-inner-l,
	.trp-inner-m,
	.trp-inner-s{
		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-pc-tategaki{
		writing-mode: vertical-rl;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* hd-message */
.hd-message{
	color: var(--WHITE);
	background-color: var(--RED02);
	text-align: center;
}
@media screen and (min-width: 768px){
	.hd-message{
		padding: 5px 0 6px;
	}
}
@media screen and (max-width: 767px){
	.hd-message{
		font-size: var(--FZ_12_CONST);
		padding: 3px 0 4px;
	}
}
/* hd-after-order */
.hd-after-order{
	background-color: var(--DARK01);
}
.hd-after-order__ttl{
	color: var(--WHITE);
}
.hd-after-order__todo li{
	background-color: var(--WHITE);
}
.hd-after-order__todo li a{
	display: block;
	font-weight: 500;
	background-color: var(--WHITE);
	position: relative;
	text-align: center;
}
.hd-after-order__todo li a::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: var(--FZ_10_CONST);
	content: '\f054';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media (hover: hover){
	.hd-after-order__todo li a:hover{
		opacity: 1;
		background-color: var(--GOLD01_OP70);
	}
}
@media screen and (min-width: 768px){
	.hd-after-order{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 10px 0;
	}
	.hd-after-order__ttl{
		font-size: var(--FZ_13);
	}
	.hd-after-order__todo{
		display: flex;
		gap: var(--GAP_15);
	}
	.hd-after-order__todo li a{
		font-size: var(--FZ_14);
		width: clamp( 130px, 14vw, 160px);
		padding: 5px 0;
	}
	.hd-after-order__todo li a::after{
		right: 3px;
	}
}
@media screen and (max-width: 767px){
	.hd-after-order{
		display: grid;
		padding: 3px 0 5px;
		gap: 3px;
	}
	.hd-after-order__ttl{
		text-align: center;
		font-size: var(--FZ_12_CONST);
	}
	.hd-after-order__todo{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_5_CONST);
	}
	.hd-after-order__todo li{
		flex: 1;
	}
	.hd-after-order__todo li a{
		font-size: var(--FZ_12_CONST);
		padding: 4px 0;
	}
	.hd-after-order__todo li a::after{
		right: 2px;
	}
}
/* headerarea */
#headerarea{
	height: auto;
	border: none;
}
.g-search-form{
	position: relative;
}
.g-search-form button[type="submit"]{
	display: inline-block;
	aspect-ratio: 1/1;
	background: url(../images/common/icon_top_search.svg) no-repeat center center / 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.g-search-form input[type="text"]{
	width: 100%;
}
.g-search-form--hd input[type="text"]{
	background-color: var(--WHITE);
	border: 1px solid var(--GRAY03);
	border-radius: 70px;
}
body:has(.g-nav--strap) .hd-link li:has(a[href="/f/beginners"]),
body:has(.g-nav--strap) .hd-link li:has(a[href="/f/for-award-staff"]),
body:has(.g-nav--mug) .hd-link li:has(a[href="/f/beginners"]),
body:has(.g-nav--mug) .hd-link li:has(a[href="/f/for-award-staff"]){
	display: none;
}
@media (hover: hover){
	.hd-link li a{
		position: relative;
	}
	.hd-link li a::after{
		content: "";
		display: inline-block;
		background: var(--TXT_COLOR);
		width: 0;
		height: 1px;
		position: absolute;
		bottom: -3px;
		left: 0;
		transition: .3s;
	}
	.hd-link li a:hover::after{
		width: 100%;
	}
}
@media screen and (min-width: 1351px){
	body.header-fixed .g-nav-area{
		margin-top: 54px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1350px){
	body.header-fixed .g-nav-area{
		margin-top: 112px;
	}
	.hd-wrap{
		/* flex-wrap: wrap; */
	}
	.hd-logo{
		/* order: 1; */
	}
	.g-search-form--hd{
		/* order: 2; */
		margin-left: auto;
	}
	.hd-user{
		/* order: 3; */
	}
	.hd-link{
		/* order: 4; */
		/* width: 100%; */
		justify-content: center;
	}
}
@media screen and (min-width: 768px){
	body.header-fixed #headerarea{
		width: 100%;
		background-color: var(--WHITE);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
	}
	.hd-wrap{
		display: flex;
		align-items: center;
		padding: 15px 0;
		transition: .5s;
	}
	body.scroll .hd-wrap{
		padding: 10px 0;
	}
	.hd-logo{
		width: clamp( 120px, 17vw, 250px);
	}
	.hd-link{
		display: flex;
		/* flex-wrap: wrap; */
		/* align-items: center; */
		margin: 0 15px 0 auto;
		gap: clamp( 10px, 1vw, 20px);
	}
	.hd-link li a{
		font-size: var(--FZ_12);
		color: #212121;
	}
	.g-search-form--hd{
		width: clamp( 220px, 22vw, 240px);
	}
	.g-search-form--hd input[type="text"]{
		padding: 10px 30px 10px 15px;
		height: auto;
		margin: 0;
	}
	.g-search-form--hd input[type="text"]:focus{
		box-shadow: none;
	}
	.g-search-form--hd button[type="submit"]{
		width: 16px;
		right: 13px;
	}
	.hd-user{
		display: flex;
		gap: var(--GAP_20);
		margin-left: 15px;
	}
	.hd-user li a{
		display: block;
		background: no-repeat center center / 100%;
		aspect-ratio: 1/1;
		width: 40px;
		margin-bottom: 20px;
		position: relative;
	}
	.hd-user li a::after{
		display: block;
		content: attr(data-text);
		font-size: var(--FZ_10_CONST);
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -20px;
		white-space: nowrap;
		letter-spacing: 0.05em;
		color: #212121!important;
	}
	.hd-user .fs-client-cart-count{
		top: -3px;
		right: -3px;
	}
	.hd-user li:has(.logout.my-false a[href="/p/logout"]){
		display: none;
	}
}
@media screen and (max-width: 767px){
	.hd-wrap{
		padding: 10px 0;
	}
	.hd-logo{
		width: 150px;
		margin: 0 auto 10px;
	}
	.g-search-form--hd input[type="text"]{
		width: 100%;
		padding: 10px 30px 10px 15px;
	}
	.g-search-form--hd button[type="submit"]{
		width: 16px;
		right: 13px;
	}
}
/* g-nav */
.g-nav{
	display: flex;
}
.g-nav > li{
	flex: 1;
}
.g-nav > li:not(:last-child){
	border-right: 1px solid var(--WHITE);
}
.g-nav > li > a,
.g-nav__item--strapSelf > p{
	height: 100%;
	background-color: var(--GOLD01_OP70);
	position: relative;
	z-index: 0;
}
.g-nav > li.g-nav__item--all > a{
	background-color: var(--RED01);
}
.g-nav > li > a::before,
.g-nav__item--strapSelf > p::before{
	content: "";
	display: inline-block;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(245,244,242,1) 13%, rgba(149,133,107,1) 49%, rgba(255,255,255,0) 55%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.1;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.g-nav__img{
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
	position: relative;
	z-index: 3;
}
.g-nav__ttl{
	font-weight: 500;
	position: relative;
	z-index: 3;
	line-height: 1.3;
}
.g-nav > li.g-nav__item--all > a .g-nav__ttl{
	color: var(--WHITE);
}
.hvr-show{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .3s;
}
.hvr-contents{
	background-color: #fff;
	width: 100%;
	overflow-y: scroll;
	margin: 0 auto;
	box-shadow: var(--COMMON_BXSD);
}
@media (hover: hover){
	.g-nav > li > a:hover,
	.g-nav__item--strapSelf > p:hover{
		opacity: 1;
		background-color: var(--GOLD01);
	}
	.g-nav__img{
		transition: .3s;
	}
	.g-nav > li > a:hover .g-nav__img,
	.g-nav__item--strapSelf > p:hover .g-nav__img{
		transform: scale(1.1);
	}
}
@media screen and (min-width: 1201px){
	.hvr-contents .tp-search-cat,
	.hvr-contents .tp-search-price{
		grid-template-columns: repeat(7,1fr);
	}
}
@media screen and (min-width: 951px) and (max-width: 1200px){
	.hvr-contents .tp-search-cat,
	.hvr-contents .tp-search-price{
		grid-template-columns: repeat(6,1fr);
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.hvr-contents .tp-search-cat,
	.hvr-contents .tp-search-price{
		grid-template-columns: repeat(5,1fr);
	}
}
@media screen and (min-width: 768px){
	.g-nav__item--all{
		position: relative;
	}
	.g-nav > li > a,
	.g-nav__item--strapSelf > p{
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 3px 0;
		gap: 10px;
	}
	.g-nav > li.g-nav__item--all > a{
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(60px, 7vw, 80px);
    border-radius: 0 0 20px 0px;
		z-index: 100;
	}
	.g-nav > li.g-nav__item--all > a::before{
		background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(245, 244, 242, 1) 6%, rgb(14 2 2) 59%, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0) 100%)
	}
	.g-nav__img{
		width: clamp( 40px, 5vw, 60px);
		transition: .5s;
	}
	.g-nav__ttl{
		font-size: var(--FZ_16);
	}
	.g-nav-area{
		position: relative;
	}
	.hvr-show{
		padding-top: 20px;
		width: 100vw;
		left: 0;
		position: absolute;
		top: calc(100% - 20px);
	}
	.g-nav > li[ontouchstart=""]:hover .hvr-show{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hvr-contents{
		max-height: calc(100vh - 250px);
		padding: var(--MG_50) 0;
	}
	.hvr-contents .tp-search-type__ttl{
		font-size: var(--FZ_18);
	}
	.hvr-contents .tp-search-type__ttl{
		margin-top: var(--MG_50);
	}
	.hvr-contents .tp-search-type__ttl:first-child{
		margin-top: 0;
	}
	.hvr-contents .tp-search-cat,
	.hvr-contents .tp-search-price{
		gap: var(--GAP_10);
	}
	.hvr-contents .tp-search-cat li,
	.hvr-contents .tp-search-cat li:nth-of-type(n+5){
		grid-column: unset !important;
	}
	.hvr-contents .tp-search-cat li:nth-of-type(n+8){
		display: none;
	}
	.hvr-contents .tp-search-cat__name,
	.hvr-contents .tp-search-price li a{
		font-size: var(--FZ_12);
	}
	.hvr-contents .tp-search-price li a{
		background-color: var(--GOLD01_OP25);
	}
}
@media screen and (max-width: 767px){
	.g-nav{
		display: flex;
	}
	.g-nav > li{
		flex: 1;
	}
	.g-nav > li > a,
	.g-nav__item--strapSelf > p{
		display: flex;
		flex-direction: column;
		padding: 9px 0;
		gap: 3px;
		font-size: var(--FZ_12_CONST);
	}
	.g-nav > li.g-nav__item--all > a::before{
		background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(245, 244, 242, 1) 13%, rgb(14 2 2) 49%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
	}
	.g-nav__img{
		width: 30px;
		margin: 0 auto;
		transition: .5s;
	}
	.g-nav__ttl{
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: 10px;
		margin-top: 5px;
	}
}
/* g-nav--mug */
.g-nav--mug > li > a{
	background-color: var(--BLUE01_OP90);
}
.g-nav--mug > li > a::before{
	background: linear-gradient(0deg, rgba(14, 21, 34, 0) 0%, rgba(14, 21, 34, 0) 13%, rgb(14, 21, 34) 49%, rgba(14, 21, 34, 0) 55%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.2;
}
.g-nav--mug .g-nav__ttl{
	color: var(--WHITE);
}
@media (hover: hover){
	.g-nav--mug > li > a:hover{
		opacity: 1;
		background-color: var(--BLUE01);
	}
}
/* g-nav--strap */
.g-nav--strap > li > a,
.g-nav__item--strapSelf > p{
	background-color: var(--STRAP_COLOR);
}
.g-nav--strap > li > a::before,
.g-nav__item--strapSelf > p::before{
	background: linear-gradient(0deg, rgba(177,88,0,0) 0%, rgba(177,88,0,0) 13%, rgba(177,88,0,1) 49%, rgba(177,88,0,0) 55%, rgba(255,255,255,1) 100%);
	opacity: 0.2;
}
.g-nav--strap .g-nav__ttl{
	color: var(--WHITE);
}
@media (hover: hover){
	.g-nav--strap > li > a:hover,
	.g-nav__item--strapSelf > p:hover{
		opacity: 1;
		background-color: var(--ORANGE01);
	}
}
/* g-nav__strapSelf__lv2 */
@media screen and (min-width: 768px){
	.g-nav__item--strapSelf{
		position: relative;
	}
	.g-nav__item--strapSelf .hvr-show{
		width: 100%;
	}
	.hvr-contents:has(.g-nav__strapSelf__lv2){
		padding: 0 20px;
	}
	.g-nav__strapSelf__lv2 li:not(:last-child){
		border-bottom: 1px solid var(--GRAY02);
	}
	.g-nav__strapSelf__lv2 li a{
		display: grid;
		grid-template-columns: 50px 1fr;
		padding: 20px;
		align-items: center;
		gap: var(--GAP_20);
	}
	.g-nav__strapSelf__lv2 li a img{
		border-radius: 50%;
	}
}
@media screen and (max-width: 767px){
	.g-nav{
		position: relative;
	}
	.g-nav__item--strapSelf .hvr-show{
		padding-top: 20px;
		width: 50%;
		position: absolute;
		top: calc(100% - 20px);
		right: 0;
	}
	.g-nav__item--strapSelf .hvr-show.is-active{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hvr-contents:has(.g-nav__strapSelf__lv2){
		padding: 0 10px;
	}
	.g-nav__strapSelf__lv2 li:not(:last-child){
		border-bottom: 1px solid var(--GRAY02);
	}
	.g-nav__strapSelf__lv2 li a{
		display: grid;
		grid-template-columns: 30px 1fr;
		padding: 10px;
		align-items: center;
		gap: var(--GAP_10);
	}
	.g-nav__strapSelf__lv2 li a img{
		border-radius: 50%;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------ft-history-------------------- */
.ft-history__ttl{
	color: var(--GOLD02);
	font-family: var(--FF_SERIF);
	font-weight: 700;
	text-align: center;
}
.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-item__imageContainer img{
	border-radius: 50%;
}
.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-item__productName,
.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-item__productPrice{
	display: none;
}
@media screen and (min-width: 1001px){
	.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-productListStatic article:nth-of-type(n+8){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-productListStatic article:nth-of-type(n+7){
		display: none;
	}
}
@media screen and (min-width: 768px){
	.ft-history__ttl{
		font-size: var(--FZ_20);
		margin-bottom: var(--GAP_50);
	}
	.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-productListStatic{
		display: grid;
		grid-template-columns: repeat(7,1fr);
		gap: var(--GAP_20);
	}

}
@media screen and (max-width: 767px){
	.ft-history__ttl{
		font-size: var(--FZ_20);
		margin-bottom: var(--GAP_50);
	}
	.flywheel-recommend__frame[data-frame-id="ft_history"] .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;
		display: flex;
		gap: var(--GAP_10_CONST);
	}
	.flywheel-recommend__frame[data-frame-id="ft_history"] .fr3-productListStatic article{
		min-width: 100px;
		max-width: 100px;
	}
}


.ft-history__ttl{
	color: var(--GOLD02);
	font-family: var(--FF_SERIF);
	font-weight: 700;
	text-align: center;
}
.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-item__imageContainer img{
	border-radius: 50%;
}
.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-item__productName,
.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-item__productPrice{
	display: none;
}
@media screen and (min-width: 1001px){
	.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-productListStatic article:nth-of-type(n+8){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-productListStatic article:nth-of-type(n+7){
		display: none;
	}
}
@media screen and (min-width: 768px){
	.ft-history__ttl{
		font-size: var(--FZ_20);
		margin-bottom: var(--GAP_50);
	}
	.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-productListStatic{
		display: grid;
		grid-template-columns: repeat(7,1fr);
		gap: var(--GAP_20);
	}

}
@media screen and (max-width: 767px){
	.ft-history__ttl{
		font-size: var(--FZ_20);
		margin-bottom: var(--GAP_50);
	}
	.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .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;
		display: flex;
		gap: var(--GAP_10_CONST);
	}
	.ft-history-sec .flywheel-recommend__frame[data-frame-id="rcmd2_tpl"] .fr3-productListStatic article{
		min-width: 100px;
		max-width: 100px;
	}
}


/* -------------------ft-cat-link-area-------------------- */
.ft-cat-link-area{
	background-color: var(--DARK01);
}
.ft-cat-link li a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	background: no-repeat center center / cover;
	position: relative;
	z-index: 0;
}
.ft-cat-link li a::after{
	content: "";
	display: inline-block;
	background: var(--DARK01_OP50);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.ft-cat-link li a span{
	color: var(--WHITE);
	text-shadow:  0px 0px 5px var(--GOLD01);
	font-weight: 700;
	position: relative;
	z-index: 2;
}
.ft-cat-link li{
	aspect-ratio: 206/160	;
}
@media (hover: hover){
	.ft-cat-link li a:hover{
		opacity: 1;
	}
	.ft-cat-link li a::after{
		transition: .3s;
	}
	.ft-cat-link li a:hover::after{
		opacity: 0;
	}
}
@media screen and (min-width: 768px){
	.ft-cat-link{
		display: flex;
	}
	.ft-cat-link li{
		flex: 1;
	}
	.ft-cat-link li:not(:last-child){
		border-right: 1px solid var(--WHITE);
	}
}
@media screen and (max-width: 767px){
	.ft-cat-link{
		display: grid;
		grid-template-columns: repeat(4,1fr);
	}
	.ft-cat-link li a span{
		font-size: var(--FZ_12_CONST);
	}
}

/* ------------------ft-info-------------------- */
.ft-info li{
	text-align: center;
}
.ft-info__ttl{
	font-family: var(--FF_SERIF);
}
.ft-info .more-btn{
	margin-top: 0;
}
@media screen and (min-width: 768px){
	.ft-info{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		padding: var(--MG_80) 0;
	}
	.ft-info li:not(:last-child){
		border-right: 1px solid var(--GRAY02);
	}
	.ft-info__ttl{
		font-size: var(--FZ_28);
		line-height: 1;
	}
	.ft-info__txt{
		margin: var(--MG_30) 0;
	}
}
@media screen and (max-width: 767px){
	.ft-info li{
		padding: var(--GENERALSEC) 0;
	}
	.ft-info li:not(:last-child){
		border-bottom: 1px solid var(--GRAY02);
	}
	.ft-info__ttl{
		font-size: var(--FZ_22);
		line-height: 1;
	}
	.ft-info__txt{
		margin: var(--MG_10) 0;
	}
}
/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
	background-color: var(--WHITE);
	border-radius: 50%;
}
.pagetop a{
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid var(--WHITE);
	mask: url(../images/common/pagetop.svg) no-repeat center center / 100%;
	-webkit-mask: url(../images/common/pagetop.svg) no-repeat center center / 100%;
	background-color: var(--TXT_COLOR);
}
@media screen and (min-width: 768px){
	.pagetop{
		width: 50px;
		bottom: 20px;
		right: 3%;
	}
}
@media screen and (max-width: 767px){
	body{
		--SP_FIX_BTN_SIZE: 35px;
		--SP_FIX_BTN_POSTION_Y: 80px;
		--SP_FIX_BTN_POSTION_X: 10px;
	}
	.pagetop{
		width: var(--SP_FIX_BTN_SIZE);
		bottom: var(--SP_FIX_BTN_POSTION_Y);
		right: var(--SP_FIX_BTN_POSTION_X);
	}
}
/* sp-adsearch-trigger */
@media screen and (max-width: 767px){
	.sp-adsearch-trigger{
		position: fixed;
		width: var(--SP_FIX_BTN_SIZE);
		bottom: var(--SP_FIX_BTN_POSTION_Y);
		left: var(--SP_FIX_BTN_POSTION_X);
		z-index: 99;
	}
	.sp-adsearch-trigger a{
		display: block;
		background: no-repeat center center / 100%;
		aspect-ratio: 1/1;
		border-radius: 50px;
		border: 1px solid var(--WHITE);
	}
}
/* footerarea */
#footerarea{
	border-top: 10px solid var(--GOLD03);
	background: url(../images/common/footer_background.jpg) no-repeat center center / cover;
}
.ft-contact{
	display: grid;
}
[class*="ft-contact__"]:has(small) > *{
	display: block;
}
[class*="ft-contact__"]:has(small){
	font-family: var(--FF_SERIF);
}
[class*="ft-contact__"] strong{
	font-weight: 700;
	color: inherit;
}
.ft-contact__ttl strong{
	background: url(../images/common/tel.svg) no-repeat left center;
}
.g-sns{
	display: flex;
}
.g-sns li a{
	display: block;
	background: var(--WHITE) no-repeat center center / 60%;
	aspect-ratio: 1/1;
	border-radius: 50%;
}
.ft-copy{
	background-color: var(--DARK01);
	color: var(--WHITE);
	text-align: center;
}
@media screen and (min-width: 1401px){
	.ft-wrap{
		grid-template-columns: auto 1fr 300px;
		align-items: flex-start;
	}
}
@media screen and (min-width: 768px) and (max-width: 1400px){
	.ft-wrap{
		grid-template-columns: auto 300px;
	}
	.ft-contact{
		width: fit-content;
		margin: 0 auto;
		grid-column: span 2;
		order: 1;
	}
	.ft-calendar{
		order: 3;
	}
	.ft-link-area{
		order: 2;
	}
}
@media screen and (min-width: 768px){
	.ft-logo{
		width: 360px;
		margin: var(--MG_80) auto;
	}
	.ft-wrap{
		padding-bottom: var(--MG_60);
		display: grid;
		gap: var(--GAP_50);
	}
	.ft-contact{
		gap: var(--GAP_30_CONST);
		padding-right: var(--GAP_30);
	}
	[class*="ft-contact__"] small{
		font-size: var(--FZ_18);
	}
	.ft-contact__ttl strong{
		font-size: var(--FZ_35);
		padding-left: 42px;
		background-size: 33px;
	}
	.ft-contact__mail strong{
		font-size: var(--FZ_28);
	}
	.ft-link-area{
		display: grid;
		grid-template-columns: repeat(3,auto);
		align-items: flex-start;
		gap: var(--MG_30);
	}
	.ft-link:nth-of-type(1),
	.ft-link:nth-of-type(2){
		grid-row: span 2;
	}
	.ft-link{
		border-left: 2px solid var(--GOLD01);
		padding-left: var(--MG_10);
		display: grid;
		gap: var(--GAP_5_CONST);
	}
	.ft-link p a{
		font-size: var(--FZ_14);
	}
	.g-sns{
		gap: var(--GAP_15);
	}
	.g-sns li{
		width: 60px;
	}
	.ft-calendar{
		background-color: var(--WHITE);
	}
	.ft-copy{
		font-size: var(--FZ_14_CONST);
		padding: 15px 0;
	}
}
@media screen and (max-width: 767px){
	.ft-logo{
		width: 200px;
		margin: var(--GENERALSEC) auto;
	}
	.ft-contact{
		gap: var(--GAP_20_CONST);
	}
	[class*="ft-contact__"]:has(small){
		text-align: center;
	}
	[class*="ft-contact__"] small{
		font-size: var(--FZ_18);
	}
	.ft-contact__ttl strong{
		width: fit-content;
		margin: 0 auto;
		font-size: var(--FZ_35);
		padding-left: 42px;
		background-size: 33px;
	}
	.ft-contact__mail strong{
		font-size: var(--FZ_28);
	}
	.g-sns{
		gap: var(--GAP_15);
		justify-content: center;
	}
	.g-sns li{
		width: 50px;
	}
	.ft-calendar{
		background-color: var(--WHITE);
		margin: 30px 0;
	}
	.ft-copy{
		font-size: var(--FZ_12_CONST);
		padding: 10px 0 80px;
	}
}
/* カレンダー */
.ft-calendar{
	width: 100%;
	background-color: var(--WHITE);
	color: var(--GRAY03);
	--SUN_COLOR: #E58A62;
	--SAT_COLOR: #6D98DD;
	padding-bottom: 15px;
}
.monthName{
	text-align: center;
	background-color: var(--GOLD01_OP70);
	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(--GRAY01);
	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){
	.ft-calendar{
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.ft-calendar{
		margin: 30px auto;
	}
}
/* sp-menu */
@media screen and (max-width: 767px){
	.sp-menu-area{
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		z-index: 999;
		transition: .5s;
	}
	.sp-menu{
		display: flex;
		background-color: var(--GOLD04);
	}
	.sp-menu li{
		flex: 1;
	}
	.sp-menu li:not(:last-child){
		border-right: 2px solid var(--WHITE);
	}
	.sp-menu li a{
		display: block;
		background: no-repeat top 15px center / 30px;
		height: 70px;
		position: relative;
	}
	.sp-menu li a .fs-client-cart-count{
		top: 5px;
		right: 20%;
	}
	.sp-menu li a::after{
		content: ""attr(data-text);
		display: block;
		width: 100%;
		text-align: center;
		font-size: var(--FZ_10_CONST);
		position: absolute;
		left: 0;
		bottom: 5px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */
.fs-l-page{
	overflow-x: clip;
}
@media (hover: hover){
	.side-bnr--has-mask li a:hover{
		opacity: 1;
	}
	.side-bnr--has-mask li a:hover::before{
		opacity: 0;
	}
	.side-cat__item:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.side-bnr{
		display: grid;
		gap: 10px;
	}
	.side-bnr li a{
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		aspect-ratio: 260/100;
		background: no-repeat center center / cover;
	}
	.side-bnr--has-mask li a{
		position: relative;
	}
	.side-bnr--has-mask li a::before{
		content: "";
    display: inline-block;
    background: var(--DARK01_OP50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
		transition: .5s;
	}
	.side-bnr li a span{
		color: var(--WHITE);
		font-size: var(--FZ_14_CONST);
		position: relative;
		z-index: 2;
	}
	.side-menu{
		background-color: var(--GOLD05);
		margin: 10px 0;
		padding: 40px 18px;
	}
	.side-menu dt{
		font-size: var(--FZ_14_CONST);
		padding-bottom: 7px;
		border-bottom: 1px solid var(--WHITE);
	}
	.side-menu dd:not(:last-child){
		margin-bottom: 40px;
	}
	.side-cat > li{
		border-bottom: 1px solid var(--WHITE);
	}
	.side-cat__item{
		position: relative;
		display: flex;
		align-items: center;
		height: 62px;
	}
	.side-cat__icon{
		background: no-repeat center center / cover;
		display: inline-block;
		aspect-ratio: 1/1;
		width: 34px;
		border-radius: 50%;
	}
	.side-cat__name{
		flex: 1;
		padding-right: 20px;
		font-size: 12px;
		margin-left: 8px;
		line-height: 1.3;
	}
	.side-cat__trigger{
		display: inline-block;
		position: relative;
		aspect-ratio: 1/1;
		position: absolute;
		width: 10px;
		right: 5px;
		top: 24px;
	}
	.side-cat__trigger::before,
	.side-cat__trigger::after{
		content: "";
		display: inline-block;
		background: var(--TXT_COLOR);
		width: 100%;
		height: 1px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.side-cat__trigger::after{
		transition: .3s;
		transform: translate(-50%, -50%) rotate(90deg);
	}
	.side-cat__item.active span::after{
		transform: translate(-50%, -50%) rotate(180deg);
	}
	.side-cat__contents{
		display: none;
	}
	.side-cat__child{
		display: grid;
		gap: 3px;
		padding: 0 0 20px 10px;
	}
	.side-cat__child li{
		position: relative;
		padding-left: 12px;
	}
	.side-cat__child li::before{
		content: "・";
		line-height: 1;
		position: absolute;
		top: 6px;
		left: 0;
	}
	.side-cat__child li a{
		font-size: var(--FZ_11);
	}
	.side-cat__child li a br{
		display: none;
	}
	.side-price{
		margin-top: 8px;
	}
	.side-price li a{
		display: block;
		padding: 5px 0;
		font-size: var(--FZ_13);
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------dummyImg----------------- */
.dummyImg{
	position: relative;
}
.dummyImg::before{
	content: "ダミー画像";
	display: inline-block;
	background: rgba(33, 33, 33, 0.5);
	color: #e81010;
	text-shadow: 0 0 5px #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
/* -----------------タブ切り替え共通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: var(--RED01);
	--FS_BTN_COLOR_1: var(--GOLD02);
	--FS_BTN_COLOR_2: var(--RED01);
	--REVIEW_COLOR: var(--RED01);
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--WRAPPER_MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
}
@media screen and (min-width: 1100px){
  #sidearea{
    width: 260px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px){
  #sidearea{
    width: 240px;
    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: #000;
	color: var(--WHITE);
	border-radius: 50%;
	position: absolute;
}
/* 商品マークリセット */
.fs-c-productMarks{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	--BDRS: 70px;
}
.fs-c-productMark{
	gap: 10px 8px;
}
.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(--GOLD05);
  border-radius: var(--BDRS);
}
.strap .fs-c-productMark span{
	background-color: var(--STRAP_COLOR);
	color: #fff;
}
.mugcup .fs-c-productMark span{
	background-color: var(--MUG_COLOR);
	color: #fff;
}
.fs-c-productMark__mark,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	display: inline-block;
	padding: 14px 20px 16px;
	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;
	width: var(--INNER_WIDTH);
	max-width: var(--WRAPPER_MAX_WIDTH);
	margin-left: auto;
	margin-right: auto;
}
#wrapper .fs-c-breadcrumb__list {
	width: 100%;
}
.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: 25px 0 10px;
		font-size: 14px;
    margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		padding: 8px 0;
		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__price{
	font-size: unset;
}
.fr3-item__productPrice__addon::before{
	content: "円";
}
.fr3-item__productPrice{
	margin-top: 7px;
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR);
	}
}
@media screen and (min-width: 768px){
	.fr3-item__productName{
		font-size: var(--FZ_14_CONST);
	}
	.fr3-item__productPrice__currencyMark{
		display: none;
	}
	.fr3-item__productPrice__price{
		font-size: var(--FZ_16);
	}
	.fr3-item__productPrice__addon{
		font-size: var(--FZ_12_CONST);
	}
}
@media screen and (max-width: 767px){
	.fr3-item__productName{
		font-size: var(--FZ_14_CONST);
	}
	.fr3-item__productPrice__currencyMark{
		display: none;
	}
	.fr3-item__productPrice__price{
		font-size: var(--FZ_16_CONST);
	}
	.fr3-item__productPrice__addon{
		font-size: var(--FZ_12_CONST);
	}
}
/* -------------------共通スライダー-------------------- */
.g-slide .slick-dots li{
	margin: 0 2px;
}
.g-slide .slick-dots li button:before{
	width: 100%;
	height: 100%;
	background: var(--GRAY03);
	font-size: 0;
	opacity: 1;
}
.g-slide .slick-dots li.slick-active button:before{
	opacity: 1;
	background: var(--GOLD01);
}
.g-slide .slick-dots li{
	height: 2px;
}
@media screen and (min-width: 768px){
	.g-slide.slick-slider{
		margin-bottom: var(--MG_50)!important;
	}
	.g-slide .slick-dots li{
		width: 50px;
		height: 2px;
		margin: 0 10px;
	}
}
@media screen and (max-width: 767px){
	.g-slide.slick-dotted.slick-slider{
		margin-bottom: var(--MG_30);
	}
	.g-slide .slick-list{
		padding: 0 50px;
	}
	.g-slide .slick-dots li{
		width: 30px;
		height: 2px;
		margin: 0 5px;
	}
}
/* -------------------bgimg-------------------- */
.bgimg{
	background: no-repeat center center / cover;
	position: relative;
}
/* .bgimg::before{
	content: "";
	display: inline-block;
	background: url(../images/common/sagasu_background_cover.png) no-repeat center center / 100%;
	width: 100%;
	aspect-ratio: 1800/53;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
} */
.bgimg--type1{
	background: url(../images/common/sagasu_background.jpg) no-repeat top center / cover;
}
.bgimg--type2{
	background: url(../images/mug/bg_lineup.jpg) no-repeat top center / cover;
}
/* -------------------bgcolor--------------------- */
.bgcolor--gold{
	background-color: var(--GOLD_BG);
}
.bgcolor--mug{
	background-color: var(--BLUE01_OP10);
}
.bgcolor--gold-100vw{
	position: relative;
	z-index: 0;
}
.bgcolor--gold-100vw::before{
	content: "";
	display: inline-block;
	background-color: var(--GOLD_BG);
	width: 200vw;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
@media screen and (min-width: 768px){
	.bgcolor{
		padding: var(--GENERALSEC_HALF) 0;
	}
}
@media screen and (max-width: 767px){
	.bgcolor{
		padding: var(--GENERALSEC) 0;
	}
}
/* -------------------sec-ttl-------------------- */
.sec-ttl{
	text-align: center;
}
.sec-ttl span{
	display: inline-block;
}
.sec-ttl [class*="ja"]{
	text-align: center;
	color: var(--GOLD02);
	font-family: var(--FF_SERIF);
	font-weight: 700;
}
span[class*="sec-ttl__ja"]{
	border-bottom: 1px solid var(--GOLD02);
}
.sec-ttl span[class*="sec-ttl__ja--black"]{
	color: var(--TXT_COLOR);
	border-color: var(--TXT_COLOR);
}
small[class*="sec-ttl__mini-ja"]{
	display: block;
}
@media screen and (min-width: 768px){
	.sec-ttl{
		margin-bottom: var(--MG_60);
	}
  span[class*="sec-ttl__ja"]{
		font-size: var(--FZ_35);
	}
	small[class*="sec-ttl__mini-ja"]{
		font-size: var(--FZ_25);
	}
}
@media screen and (max-width: 767px){
	.sec-ttl{
		margin-bottom: var(--MG_30);
	}
  span[class*="sec-ttl__ja"]{
		font-size: var(--FZ_25);
	}
}
/* sec-ttl--mug */
.sec-ttl--mug [class*="ja"]{
	color: var(--MUG_COLOR);
	border-color: var(--MUG_COLOR);
}
.sec-ttl--strap [class*="ja"]{
	color: var(--STRAP_COLOR);
	border-color: var(--STRAP_COLOR);
}
/* -------------------more-btn-------------------- */
.more-btn a{
	display: block;
	text-align: center;
	background-color: var(--WHITE);
	border: 1px solid var(--GRAY03);
	border-radius: 70px;
}
@media (hover: hover){
	.more-btn a:hover{
		opacity: 1;
		color: var(--WHITE);
		background-color: var(--GOLD01);
	}
}
@media screen and (min-width: 768px){
  .more-btn{
		width: 250px;
		margin: var(--MG_50) auto 0;
	}
	.more-btn a{
		padding: 12px 0;
	}
}
@media screen and (max-width: 767px){
	.more-btn{
		width: 230px;
		margin: var(--MG_30) auto 0;
	}
	.more-btn a{
		padding: 10px 0;
	}
	.more-btn--sp-bgcolor-gold a{
		color: var(--WHITE);
		background-color: var(--GOLD01);
		border: none;
	}
}
/* .more-btn--anchor */
.more-btn--anchor a{
	position: relative;
}
.more-btn--anchor a::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: '\f054';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 768px){
	.more-btn--anchor a::after{
		right: 20px;
		font-size: 12px;
	}
}
/* more-btn--width-auto */
.more-btn--width-auto{
	width: auto;
}
.more-btn--width-auto a{
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	padding: 12px 15px;
}
/* more-btn-pair */
@media screen and (min-width: 768px){
	.more-btn-pair{
		display: flex;
		justify-content: center;
		gap: var(--GAP_10_CONST);
	}
	.more-btn-pair .more-btn{
		width: 100%;
	}
}
/* -------------------g-intro-------------------- */
.g-intro{
	counter-reset: original-counter;
}
.g-intro--numbering li{
	position: relative;
	z-index: 0;
}
.g-intro--numbering li::before{
	content: ''counter(original-counter);
	counter-increment: original-counter;
	font-family: var(--FF_SERIF);
	color: var(--GOLD01_OP25);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	line-height: 1;
}
.g-intro--mug.g-intro--numbering li::before{
	color: var(--WHITE);
}
.g-intro__ttl{
	font-family: var(--FF_SERIF);
	font-weight: 700;
}
@media screen and (min-width: 768px){
  .g-intro{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_50);
	}
	.g-intro__ttl{
		font-size: var(--FZ_18);
		margin: 15px 0 7px;
	}
	.g-intro--numbering li::before{
		font-size: 230px;
		transform: translateY(15%);
	}
}
@media screen and (max-width: 767px){
	.g-intro{
		gap: var(--GAP_30_CONST);
	}
	.g-intro__ttl{
		font-size: var(--FZ_18_CONST);
		text-align: center;
		margin: 10px 0 5px;
	}
	.g-intro__txt{
		font-size: var(--FZ_12_CONST);
	}
	.g-intro--numbering li::before{
		font-size: 150px;

		transform: translateY(10%);
	}
}
/* -------------------g-feature-sec-------------------- */
.g-feature__ttl{
	font-family: var(--FF_SERIF);
	font-weight: 700;
}
.g-feature__ttl--gold{
	color: var(--GOLD02);
}
@media screen and (min-width: 768px){
	.g-feature-sec{
		padding: 60px 0 100px;
	}
  .g-feature{
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: var(--GAP_50) var(--GAP_20);
	}
	.g-feature__ttl{
		font-size: var(--FZ_19);
		margin: 15px 0 7px;
	}
	.g-feature__btn{
		margin-top: var(--MG_30);
	}
}
@media screen and (max-width: 767px){
	.g-feature-sec{
		padding: 20px 0;
	}
	.g-feature{
		gap: var(--GAP_20_CONST);
	}
	.g-feature article:has(>a) a{
		display: grid;
		grid-template-columns: 150px 1fr;
		gap: 0 var(--GAP_10_CONST);
	}
	.g-feature__thumb{
		grid-row: span 2;
	}
	.g-feature__excerpt{
		font-size: var(--FZ_12_CONST);
		line-height: 1.5;
	}
	.g-feature:has(.g-feature__btn){
		gap: var(--GAP_30_CONST);
	}
	.g-feature:has(.g-feature__btn) .g-feature__ttl{
		font-size: var(--FZ_16_CONST);
		margin: var(--MG_15) 0 var(--MG_10);
	}
	.g-feature__ttl{
		line-height: 1.4;
		margin-bottom: 5px;
	}
	.g-feature__btn{
		margin-top: var(--MG_20);
	}
}
/* -------------------product-wrap-------------------- */
.product-wrap .tab-nav{
	display: grid;
}
.product-wrap .tab-btn{
	background-color: var(--GOLD_BG);
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.3;
}
.product-wrap .tab-btn::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	color: var(--GOLD02);
	content: '\f054';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}
.product-wrap .tab-btn.show{
	background-color: var(--GOLD01_OP70);
}
@media screen and (min-width: 768px){
	.product-wrap .tab-nav{
		grid-template-columns: repeat(4,1fr);
		row-gap: var(--GAP_20_CONST);
		margin-bottom: var(--MG_50);
	}
	.product-wrap .tab-btn{
		min-height: 53px;
		padding: 5px 0;
	}
	.product-wrap .tab-btn{
		border: 1px solid var(--GOLD02);
		border-left: none;
	}
	.product-wrap .tab-btn:first-child,
	.product-wrap .tab-btn:nth-child(5){
		border-left: 1px solid var(--GOLD02);
	}
	.product-wrap .tab-btn::after{
		font-size: 10px;
		right: 5px;
	}
	.product-wrap .fr3-productListStatic{
		gap: var(--GAP_50) var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.product-wrap .tab-nav{
		grid-template-columns: repeat(2,1fr);
		margin-bottom: var(--MG_30);
		border-top: 1px solid var(--GOLD02);
		border-right: 1px solid var(--GOLD02);
	}
	.product-wrap .tab-btn{
		border: 1px solid var(--GOLD02);
		border-right: none;
		border-top: none;
	}
	.product-wrap .tab-btn{
		min-height: 48px;
		padding: 5px 0;
		font-size: var(--FZ_12_CONST);
	}
	.product-wrap .tab-btn::after{
		font-size: 10px;
		right: 3px;
	}
	.product-wrap .fr3-productListStatic{
		gap: var(--GAP_30_CONST) var(--GAP_20);
	}
}
/* -------------------g-column-------------------- */
.g-column__date{
	display: block;
}
.g-column__ttl{
	font-weight: 500;
}
@media screen and (min-width: 768px){
  .g-column{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_30);
	}
	.g-column__date{
		margin: 10px 0 5px;
	}
}
@media screen and (max-width: 767px){
	.g-column{
		gap: var(--GAP_20_CONST);
	}
  .g-column a{
		display: grid;
    grid-template: auto 1fr / 150px 1fr;
    gap: 0 var(--GAP_10_CONST);
	}
	.g-column__thumb{
		grid-row: span 2;
	}
	.g-column__date{
		font-size: var(--FZ_12_CONST);
	}
}
/* -------------------g-hotword-------------------- */
.g-hotword-list li a::before{
	content: '#';
}
.g-hotword-list li a::before{
	color: var(--RED01);
}
.g-hotword-area{
	overflow-x: scroll;
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 5px;
}
.g-hotword-area::-webkit-scrollbar{/* Chrome, Safari 対応 */
	height: 5px;
}
.g-hotword-area::-webkit-scrollbar-thumb{
	background-color: var(--GOLD01_OP25);
 }
 .g-hotword-area::-webkit-scrollbar-thumb:hover{
	cursor: grab;
 }
.g-hotword-ttl{
	width: fit-content;
	color: var(--RED01);
	border-bottom: 1px solid var(--RED01);
}
.g-hotword-wrap{
	flex: 1;
}
.g-hotword-list{
	white-space: nowrap;
}
.g-hotword-list li{
	display: inline-block;
}
@media screen and (min-width: 768px){
	.g-hotword-area{
		width: var(--MAX_WIDTH_SS);
		margin: 10px auto;
	}
	.g-hotword-ttl{
		font-size: 16px;
	}
	.g-hotword-list li{
		margin-right: 15px;
	}
	.g-hotword-list li a{
		font-size: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-hotword-area{
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		margin-top: 8px;
	}
	.g-hotword-ttl{
		font-size: 14px;
	}
	.g-hotword-list li{
		margin-right: 10px;
	}
	.g-hotword-list li a{
		font-size: 13px;
	}
}

/* -------------------g-bnr-pair------------------ */
@media screen and (min-width: 768px){
	.g-bnr-pair{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.g-bnr-pair{
		gap: var(--GAP_10_CONST);
	}
}
/* --------------------tp-search-sec------------------- */
.tp-search-sec .sec-ttl{
	margin-bottom: 10px;
}
.g-search-form--tp{
  width: var(--INNER_WIDTH);
  margin: 0 auto;
}
.g-search-form--tp input[type="text"]{
	background-color: var(--WHITE);
  border: 1px solid var(--GRAY03);
	border-radius: 70px;
}
.g-search-form--tp input[type="text"]::placeholder{
  color: var(--GRAY03);
}
.tp-search-type__ttl{
  display: flex;
  align-items: center;
  font-family: var(--FF_SERIF);
  font-weight: 700;
}
.tp-search-type__ttl::before,
.tp-search-type__ttl::after{
  content: "";
  display: inline-block;
  flex: 1;
  flex-grow: 1;
  height: 1px;
  background-color: var(--TXT_COLOR);
}
.tp-search-cat__name{
  font-family: var(--FF_SERIF);
  text-align: center;
}
.tp-search-price li a{
  background-color: var(--WHITE);
  display: block;
  text-align: center;
}
.tp-search-sec .g-hotword-area{
	background-color: rgb(255, 255, 255, .7);
	padding: 10px 20px 5px 40px;
}
@media (hover: hover){
  .tp-search-price li a:hover{
    opacity: 1;
    background-color: var(--GOLD01_OP70);
  }
}
@media screen and (min-width: 1001px){
  .tp-search-cat{
    grid-template-columns: repeat(20,1fr);
    gap: var(--GAP_50) var(--GAP_20);
  }
  .tp-search-cat li{
    grid-column: span 5;
  }
  .tp-search-cat li:nth-of-type(n+5){
    grid-column: span 4;
  }
  .tp-search-price{
    grid-template-columns: repeat(5,1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px){
  .tp-search-cat{
    gap: var(--MG_20);
  }
  .tp-search-price{
    grid-template-columns: repeat(4,1fr);
  }
}
@media screen and (max-width: 1000px){
  .tp-search-cat{
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (max-width: 1200px){
	.tp-search-sec .g-hotword-area{
		width: 95%;
	}
}
@media screen and (min-width: 768px){
	.tp-search-sec.generalmg{
		padding: 30px 0;
	}
  .g-search-form--tp{
    max-width: var(--MAX_WIDTH_SS);
  }
  .g-search-form--tp input[type="text"]{
		padding: 20px 60px 20px 30px;
	}
  .g-search-form--tp input[type="text"]::placeholder,
  .g-search-form--tp input[type="text"]{
    font-size: var(--FZ_18);
  }
	.g-search-form--tp button[type="submit"]{
    width: 24px;
    right: 28px;
	}
  .tp-search-type__ttl{
    font-size: var(--FZ_25);
    gap: var(--GAP_30);
    margin: var(--MG_60) 0 var(--MG_30);
  }
	.tp-search-sec .tp-search-type__ttl{
		margin: var(--MG_20) 0 var(--MG_30);
	}
  .tp-search-cat__name{
    font-size: var(--FZ_18);
    margin-top: 5px;
  }
  .tp-search-price{
    gap: var(--GAP_20);
  }
  .tp-search-price li a{
    font-size: clamp( 10px, 1vw, 16px);
    padding: 15px 0;
  }
	.tp-search-sec .g-hotword-area{
		border-radius: 50px;
	}
}
@media screen and (max-width: 767px){
	.tp-search-sec .g-hotword-area{
		width: 100%;
	}
}
@media screen and (max-width: 767px){
	.tp-search-sec.generalmg{
		padding: 20px 0;
	}
  .g-search-form--tp input[type="text"]{
		padding: 10px 30px 10px 15px;
	}
	.g-search-form--tp button[type="submit"]{
    width: 16px;
    right: 13px;
	}
  .tp-search-cat{
    gap: var(--GAP_15) var(--GAP_5_CONST);
  }
  .tp-search-type__ttl{
    font-size: var(--FZ_22);
    gap: var(--GAP_15);
    margin: var(--MG_30) 0 var(--MG_20);
  }
	.tp-search-sec .tp-search-type__ttl{
		margin: var(--MG_20) 0 var(--MG_20);
	}
  .tp-search-cat__name{
    font-size: var(--FZ_12_CONST);
    line-height: 1.5;
    margin-top: 5px;
  }
  .tp-search-price{
    grid-template-columns: repeat(2,1fr);
    gap: var(--GAP_5_CONST);
  }
  .tp-search-price li a{
    font-size: var(--FZ_12_CONST);
    padding: 10px 0;
  }
}
/* ------------------g-scence-lineup-------------------- */
.g-scence-lineup li a{
	display: flex;
	align-items: center;
	background-color: var(--STRAP_COLOR);
}
.g-scence-lineup__icon{
	display: block;
	background: no-repeat center center / 100%;
	aspect-ratio: 1/1;
}
.g-scence-lineup__name{
	color: var(--WHITE);
}
@media screen and (min-width: 768px){
	.g-scence-lineup{
		grid-template-columns: repeat(4,1fr);
		gap: var(--GAP_10_CONST);
	}
	.g-scence-lineup li a{
		gap: var(--GAP_20);
	}
	.g-scence-lineup__icon{
		width: clamp( 50px, 6vw, 70px);
	}
	.g-scence-lineup__name{
		font-size: var(--FZ_18);
	}
}
@media screen and (max-width: 767px){
	.g-scence-lineup{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_5_CONST);
	}
	.g-scence-lineup li a{
		gap: var(--GAP_10_CONST);
	}
	.g-scence-lineup__icon{
		width: 40px;
	}
	.g-scence-lineup__name{
		font-size: var(--FZ_14_CONST);
	}
}
/* ------------------shippment-guide-------------------- */
.shippment-guide__wrap{
	background-color: var(--WHITE);
	border: 2px solid var(--BLACK);
}
.shippment-guide__wrap--mug{
	border-color: var(--MUG_COLOR);
}
.shippment-guide__wrap--strap{
	border-color: var(--STRAP_COLOR);
}
.shippment-guide__ttl{
	color: var(--WHITE);
	font-weight: 700;
}
.shippment-guide__ttl--mug{
	background-color: var(--MUG_COLOR);
}
.shippment-guide__ttl--strap{
	background-color: var(--STRAP_COLOR);
}
.shippment-guide__ttl--cat{
	background-color: var(--DARK01);
}
.shippment-guide__schedule{
	letter-spacing: 0.1em;
}
.shippment-guide__schedule strong{
	font-weight: 700;
	color: var(--RED01);
}
.shippment-guide__note li{
	position: relative;
}
.shippment-guide__note li::before{
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (min-width: 768px){
	.shippment-guide--cat{
		margin-bottom: var(--MG_50);
	}
	.shippment-guide__wrap{
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: stretch;
	}
	.shippment-guide__ttl{
		display: flex;
		align-items: center;
		font-size: var(--FZ_18);
		padding: 0 30px;
	}
	.shippment-guide__schedule{
		padding: 30px 25px;
		font-size: var(--FZ_22);
	}
	.shippment-guide__schedule--cat{
		padding: 15px 25px;
	}
	.shippment-guide__note{
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 3px 20px;
		margin-top: var(--MG_10);
	}
	.shippment-guide__note-cat{
		display: flex;
		flex-wrap: wrap;
	}
	.shippment-guide__note li{
		padding-left: 15px;
		font-size: var(--FZ_12);
	}
	.shippment-guide__note li:last-child{
		grid-column: span 2;
	}
}
@media screen and (max-width: 767px){
	.shippment-guide--cat{
		margin-bottom: var(--MG_30);
	}
	.shippment-guide__ttl{
		font-size: var(--FZ_14_CONST);
		text-align: center;
		padding: 10px 0;
	}
	.shippment-guide__schedule{
		padding: 10px 0;
		text-align: center;
		font-size: var(--FZ_16_CONST);
	}
	.shippment-guide__schedule--cat{
		padding: 10px;
		font-size: var(--FZ_12_CONST);
	}
	.shippment-guide__note{
		margin-top: var(--MG_10);
	}
	.shippment-guide__note li{
		padding-left: 12px;
		font-size: var(--FZ_10_CONST);
	}
}
/* -------------------g-production-linkContainer-------------------- */
.g-production-linkContainer a{
  display: block;
  background: url(../images/top/bn_seisaku.jpg) no-repeat center center / cover;
}
.g-production-link{
  background-color: var(--WHITE_OP90);
  box-shadow: var(--COMMON_BXSD);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.g-production-link span{
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
}
.g-production-link__sur{
  text-align: center;
  font-family: var(--FF_SERIF);
  font-weight: 700;
  border-bottom: 1px solid var(--GOLD02);
}
.g-production-link__sub{
  line-height: 1;
  display: inline-block;
  background: url(../images/common/arrow-link.svg) no-repeat right center;
}
.g-production-txt{
	margin: var(--GENERALSEC_HALF) auto;
}
@media screen and (min-width: 768px){
  .g-production-linkContainer a{
    padding: var(--MG_80) 0;
  }
  .g-production-link{
    width: 460px;
    padding: 20px 0 30px;
  }
  .g-production-link__sur{
    font-size: var(--FZ_35);
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .g-production-link__sub{
    font-size: var(--FZ_16);
    padding-right: 25px;
    background-size: 16px;
  }
}
@media screen and (max-width: 767px){
  .g-production-linkContainer a{
    padding: var(--MG_30) 0;
  }
  .g-production-link{
    width: 300px;
    padding: 20px 0 30px;
  }
  .g-production-link__sur{
    font-size: var(--FZ_35);
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .g-production-link__sub{
    font-size: var(--FZ_16);
    padding-right: 15px;
    background-size: 12px;
  }
}

/* g-flowImg */
.g-flowImg{
	min-width: 900px;
}
@media screen and (max-width: 767px){
	.g-flowImg{
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
}


/* -------------------g-cta-------------------- */
.js-scrollable{
	overflow-y: hidden !important;
	overflow-x: auto !important;
}

/* ヘッダーに電話番号追加 */
.shopInfo-area {
	margin-left: 10px;
}
.shopInfo__tel {
	text-align: center;
	line-height: 1.4;
	font-size: clamp( 14px, 1.5vw, 25px);
	font-weight: bold;
}
.shopInfo__tel a{
	color: #212121;
	letter-spacing: 0.04em;
}
.shopInfo__time {
	text-align: center;
	font-size: 12px;
	color: #777;
	line-height: 1.4;
}
.shopInfo__tel span{
	font-size:  clamp( 12px, 1.2vw, 16px);
	padding-right: 5px;
}

@media screen and (max-width: 767px){
	.shopInfo-area__sp{
		margin: 0 auto 30px;
	}
}

/* ヘッダー固定後、メニュー切り替え */
ul.scroll-nav.pc {
	display: none;
}
body.header-fixed #headerarea .hd-link.pc{
	display: none;
}
body.header-fixed #headerarea .scroll-nav.pc {
	display: flex;
	margin: 0 15px 0 auto;
	/* flex-wrap: wrap; */
	gap: clamp(10px, 1.7vw, 20px);
}
.nav__itemlist1 a,
.nav__itemlist2 a,
.nav__itemlist3 a,
.nav__itemlist4 a{
	display: block;
	/* padding: 15px 15px; */
}
/* .nav__itemlist1 a{
	background-color: var(--RED01);
	color: #fff;
} */
/* .nav__itemlist2 a,
.nav__itemlist3 a,
.nav__itemlist4 a{
	background-color: var(--GOLD01_OP70);
} */
 @media screen and (max-width: 950px){
	.hd-link li a{
		font-size: 10px;
	}
	.hd-link{
		gap: clamp(3px, 0.5vw, 12px);
	}
	body.header-fixed #headerarea .scroll-nav.pc {
		gap: clamp(5px, 0.8vw, 12px);
		font-size: 13px;
	}
	.hd-user li a{
		width: 30px;
	}
 }
@media screen and (min-width: 768px) and (max-width: 1350px) {
	body.header-fixed #headerarea .scroll-nav {
			justify-content: center;
	}
}


/* ヘッダー固定後、1350pxから検索窓切り替え */
@media screen and (min-width: 768px) and (max-width: 1350px){
	.serch-form {
    position: absolute;
    background-color: var(--GOLD05);
    padding: 20px 60px;
    /* border: 1px solid #000; */
		z-index: 999;
		right: -70px;
		top: 40px;
}
.submit-iconarea {
	position: relative;
margin-right: 22px;
}
p.submit2 {
	display: inline-block;
	aspect-ratio: 1 / 1;
	background: url(https://www.123-trophy.com/asset2024/images/common/icon_top_search.svg) no-repeat center center / 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: #000;
}
.submit-iconarea .serch-form{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}
.submit-iconarea.active .serch-form{
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	z-index: 99;
}
}

@media screen and (max-width: 945px){
	.hd-link{
		margin-right: 5px;
	}
	.shopInfo-area{
		margin: 0;
	}
}
@media screen and (max-width: 767px){
	.submit-iconarea{
		width: 100%;
	}
}

@media (hover: hover){
	.scroll-nav > li[ontouchstart=""]:hover .hvr-show{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
}
.scroll-nav .hvr-show{
	width: 100vw;
	position: fixed;
	top: 37px;
	left: 0;
}

.scroll-nav .hvr-contents{
max-height: calc(100vh - 40px);
}

/* 商品マークのリンクver トロフィー */
/* .fs-c-productMark span.mark-btn{
	background-color: #fff;
	border: 2px solid var(--GOLD05);
	}
.fs-c-productMarks span.mark-btn span{
		background-color: #fff;
}
.fs-c-productMark__item a:hover span{
	background-color: var(--GOLD05);
} */
/* 商品マークのリンクver マグカップ */
/* .mugcup .fs-c-productMark span.mark-btn{
background-color: #fff;
border: 2px solid var(--MUG_COLOR);
color: var(--MUG_COLOR);
}
.mugcup .fs-c-productMark span.mark-btn span{
	background-color: #fff;
	color: var(--MUG_COLOR);
}
.fs-c-productMark__item a:hover{
	opacity: 1;
}
.mugcup .fs-c-productMark__item a:hover span{
	background-color: var(--MUG_COLOR);
	color: #fff;
} */
/* 商品マークのリンクver ストラップ */
/* .strap .fs-c-productMark span.mark-btn{
	background-color: #fff;
	border: 2px solid var(--STRAP_COLOR);
	color: var(--STRAP_COLOR);
}
.strap .fs-c-productMark span.mark-btn span{
	background-color: #fff;
	color: var(--STRAP_COLOR);
}
.strap .fs-c-productMark__item a:hover span{
	background-color: var(--STRAP_COLOR);
	color: #fff;
} */

.fs-c-productMark span.mark-btn{
	position: relative;
}
.fs-c-productMark span.mark-btn:before{
	position: absolute;
	content: "";
	right: 14px;
	top:50%;
	width: 5px;
	height: 5px;
	border-top: 2px solid var(--RED01);
	border-right: 2px solid var(--RED01);
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.fs-c-productMark__mark.mark-btn{
padding: 14px 25px 16px;
}

.mugcup .fs-c-productMark span.mark-btn:before,
.strap .fs-c-productMark span.mark-btn:before{
	border-top:2px solid var(--RED01);
	border-right: 2px solid var(--RED01);
}

.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message{
	top: 42px;
	left: 32px;
}
@media screen and (max-width: 767px){
	.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message{
		width: fit-content;
		left: 28px;
	}
	.fs-c-productQuantityAndWishlist__quantity .fs-c-quantity__number{
		width: 50%;
	}
	.fs-c-productQuantityAndWishlist__quantity{
		flex: 1;
	}
}


/* サイドバー、ホバーに変更 */
@media screen and (min-width: 768px){
	.side-menu__new .side-cat__contents{
		display: block;
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		padding-top: 20px;
		position: absolute;
		top: 0;
		right: -240px;
		background-color: #fff;
    /* overflow-y: scroll; */
    margin: 0 auto;
		width: 240px;
	}
	.side-menu__new .side-cat li{
		position: relative;
	}
	.side-menu__new .side-cat > li[ontouchstart=""]:hover .side-cat__contents{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
}
.side-menu.side-menu__new{
	margin-top: 0;
}

@media screen and (min-width: 768px){
	.shippment-guide{
		padding: 100px 0 0;
	}
}
@media screen and (max-width: 767px){
	.shippment-guide{
		padding: 40px 0 0;
	}
}

/* ヘッダー修正 トップテスト用 */
.g-nav-area-test .g-nav > li.g-nav__item--all > a{
height: auto;
border-radius: 0;
}
@media screen and (min-width: 768px){
	.g-nav-area-test .g-nav > li:first-child{
		width: 16%;
	}
	.g-nav-area-test .g-nav > li:not(:first-child){
		flex: none;
		width: 28%;
	}
}

.g-nav-area-test .g-nav > li.g-nav__item--red > a{
	background-color: var(--RED01);
	color: #fff;
}
