@charset "utf-8";
/* CSS関数設定 */
:root{
	/* カラーパレット */
	--WHITE: #fff;
	--BLACK: #000;
	--GRAY01: #F0F0F0;
	--GRAY02: #D1D1D1;
	--GRAY03: #A7A7A7;
	--GRAY04: #f4f4f4;
	--DARK01: #222222;
	--DARK02: #404040;
	--ORANGE01: #FFCC00;
	--ORANGE01_OP20: #FFF8D9;
	--ORANGE02: #FFA700;
	--ORANGE02_OP09: rgba(255, 167, 0, 0.09);
	--ORANGE03: #FF7F00;
	--YELLOW01: #F4F1E7;
	--BROWN01: #503400;
	--BROWN01_OP10: rgba(80, 52, 0, 0.1);
	--RED01: #FC0019;
	--GREEN01: #367400;
	--GREEN02: #005700;
	--GREEN03: #4EA700;
	/* テキストベースカラー */
	--TXT_COLOR: var(--DARK01);
	/* ランキングカラー */
	--RANKING_1ST: #be9640;
	--RANKING_2ND: #949393;
	--RANKING_3RD: #bf804c;
	--RANKING_OTHER: #4d4c4b;
	/* 共通角丸 */
	--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_MINCHO:  "Noto Serif JP", serif;
	/* 英数字フォント */
	--FF_NUM: 'Noto Sans JP', serif;
	--FF_EN: "Montserrat", sans-serif;;
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out .6s forwards;
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@media screen and (min-width: 768px){
	:root{
		/* フォトサイズ */
		--FZ_SS: 12px;
		--FZ_S: 14px;
		--FZ_M: 16px;
		--FZ_L: 18px;
		/* セクション余白 */
		--GENERALSEC: 100px;
		/* マージン */
		--MG_S: 20px;
		--MG_M: 50px;
		--MG_L: 100px;
		/* インナー幅 */
		--INNER_WIDTH: 95%;
		--MAX_WIDTH: 1200px;
		--MAX_WIDTH_S: 700px;
		--MAX_WIDTH_L: 1440px;
	}
}
@media screen and (max-width: 767px){
	:root{
		/* フォトサイズ */
		--FZ_SS: 12px;
		--FZ_S: 14px;
		--FZ_M: 16px;
		--FZ_L: 18px;
		/* セクション余白 */
		--GENERALSEC: 60px;
		/* マージン */
		--MG_S: 20px;
		--MG_M: 50px;
		--MG_L: 100px;
		/* インナー幅 */
		--INNER_WIDTH: 90%;
	}
}
/* リセット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;}
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);
}
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;
}
/* タイトルの文字間 */
[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;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 145px;
	}
	body{
		font-size: 15px;
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.inner,
	.inner-s,
	.pc-inner-s,
	.inner-l,
	.pc-inner,
	.pc-inner-l{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.inner,
	.pc-inner{
		max-width: var(--MAX_WIDTH);
	}
	.inner-s,
	.pc-inner-s{
		max-width: var(--MAX_WIDTH_S);
	}
	.inner-l,
	.pc-inner-l{
		max-width: var(--MAX_WIDTH_L);
	}
	.max-wrapper{
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
		overflow: hidden;
	}
	.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;
		color: var(--ORANGE03);
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
@media screen and (max-width: 767px){
	body{
		font-size: 14px;
		line-height: 1.6;
	}
	.inner,
	.inner-s,
	.inner-l,
	.sp-inner{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.max-wrapper{
		overflow: hidden;
	}
	.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;
	}
	a:hover{
		color: unset;
		text-decoration: unset;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* ヘッダーお知らせ */
.h-notice{
	background-color: var(--ORANGE01);
	text-align: center;
}
.h-notice a,
.h-notice{
	display: block;
	letter-spacing: 0.05em;
}
@media screen and (min-width: 768px){
	.h-notice a,
	.h-notice{
		text-align: center;
		font-size: 13px;
		padding: 8px 0;
	}
}
@media screen and (max-width: 767px){
	.h-notice a,
	.h-notice {
		overflow: hidden;
		white-space: nowrap;
		font-size: 13px;
		padding: 5px 0;
	}
	.h-notice-inner {
		display: inline-block;
		white-space: nowrap;
		transform: translateX(30%); /* 初期位置を10%分右にずらす */
		animation: scrolling 15s linear infinite;
		animation-delay: -2s; /* アニメーションが1秒先から始まるように設定 */
	}
	@keyframes scrolling {
		0% {
			transform: translateX(100%);
		}
		100% {
			transform: translateX(-100%);
		}
	}
}
/* ヘッダーメイン */
.h-logo-area{
	width: fit-content;
}
.h-logo-area a{
	display: flex;
	align-items: center;
}
.h-logo-area span{
	display: inline-block;
}
.h-logo-area .txt{
	flex: 1;
}
.h-logo-area strong{
	display: block;
	line-height: 1.3;
}
.h-logo-area small{
	line-height: 1.5;
	font-weight: 700;
}
.g-user{
	display: flex;
}
.g-user li{
	flex: 1;
}
.g-user li a{
	display: inline-block;
	position: relative;
	aspect-ratio: 1/1;
}
.g-user li a::after{
	content: attr(data-txt);
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 3px);
}
.g-user li a .icon{
	display: inline-block;
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
}
.h-guide li a{
	display: flex;
	align-items: center;
}
.h-guide li .icon{
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
}
.h-nav{
	width: 100%;
	display: flex;
}
.h-nav li a{
	display: flex;
	align-items: center;
}
.h-nav li .icon{
	display: inline-block;
	aspect-ratio: 1/1;
	background: no-repeat left center / 100%;
}
@media (hover: hover){
	.h-nav li .icon,
	.g-user li a .icon{
		transition: transform .3s;
	}
	.h-nav li a:hover .icon,
	.g-user li a:hover .icon{
		transform: scale(1.2);
	}
}
@media screen and (min-width: 1201px){
	.h-right-top{
		padding: 8px 0 24px 40px;
	}
	.h-point{
		margin-top: 20px;
	}
	.h-point .fs-clientInfo > div > p{
		align-items: center;
		gap: 15px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1200px){
	.h-right-top{
		padding: 8px 0 15px 20px;
	}
	.h-point{
		margin-top: 5px;
	}
	.h-point .fs-clientInfo > div > p{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
@media screen and (min-width: 1101px){
	.h-guide{
		display: flex;
		align-items: center;
		border-left: 1px solid var(--GRAY02);
		padding: 15px clamp( 15px, 2vw, 30px);
		gap: clamp( 20px, 3vw, 40px);
	}
	.h-guide li a{
		gap: 10px;
	}
	.h-guide li .icon{
		width: 30px;
	}
	.h-guide li .txt{
		font-size: 12px;
	}
	.g-nav{
		padding: 0 30px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.h-guide{
		display: none;
	}
	.g-nav{
		padding: 15px 0;
	}
}
@media screen and (min-width: 768px){
	#headerarea{
		position: sticky;
		top: 0;
		left: 0;
		background-color: var(--WHITE);
		overflow: hidden;
		z-index: 100;
	}
	.h-inner{
		display: flex;
		align-items: center;
		gap: clamp( 20px, 3.5vw, 50px);
	}
	.h-logo-area a{
		gap: 18px;
	}
	.h-logo-area .logo{
		width: clamp( 40px, 5vw, 66px);
	}
	.h-logo-area strong{
		font-size: clamp( 16px, 1.8vw, 23px);
	}
	.h-logo-area small{
		font-size: clamp( 10px, 1.1vw, 12px);
	}
	.h-right-area{
		flex: 1;
	}
	.h-right-top{
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	.h-right-top::after{
		content: "";
		display: block;
		background-color: var(--GRAY02);
		width: 100vw;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.h-point{
		width: fit-content;
	}
	.h-point .fs-clientInfo > div > p{
		display: flex;
	}
	.h-point .txt{
		display: inline-block;
		width: fit-content;
		letter-spacing: 0.1em;
		font-size: clamp( 10px, 1.2vw, 14px);
	}
	.h-point strong{
		font-size: clamp( 20px, 2.5vw, 30px);
		line-height: 1;
	}
	.h-point .login .point{
		color: var(--RED01);
	}
	.h-point .logout .point{
		color: var(--ORANGE03);
	}
	.h-point .point::after{
		content: "pt";
		font-size: 16px;
		font-weight: 700;
	}
	.h-point .link{
		border: 1px solid var(--TXT_COLOR);
		border-radius: 70px;
		display: inline-block;
		font-size: clamp( 10px, 1.1vw, 12px);
		padding: 3px 25px 4px 20px;
		position: relative;
	}
	.h-point .logout .link{
		border-color: var(--ORANGE03);
		background-color: var(--ORANGE03);
		color: var(--WHITE);
	}
	.h-point .link::before{
		content: "";
		display: inline-block;
		background: no-repeat center center / 100%;
		aspect-ratio: 1/1;
		width: clamp( 5px, 0.6vw, 8px);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	.h-point .login .link::before{
		background-image: url(http://kamp.design/fs/newsmikan/asset2024/images/common/arrow-bk.svg);
	}
	.h-point .logout .link::before{
		background-image: url(http://kamp.design/fs/newsmikan/asset2024/images/common/arrow-wh.svg);
	}
	.g-user-area{
		width: fit-content;
	}
	.g-user{
		gap: 30px;
	}
	.g-user li a .icon{
		width: clamp( 30px, 3.5vw, 44px);
	}
	.g-user li a::after{
		font-size: clamp( 10px, 1.1vw, 12px);
	}
	.g-user li a .fs-client-cart-count{
		top: -2px;
		right: -2px;
	}
	.h-right-bottom{
		display: flex;
		align-items: stretch;
	}
	.g-nav{
		flex: 1;
		display: flex;
		align-items: center;
	}
	.h-nav{
		justify-content: space-between;
	}
	.h-nav li a{
		gap: 8px;
	}
	.h-nav li .icon{
		width: 30px;
	}
	.h-nav li .txt{
		font-size: clamp( 12px, 1.3vw, 18px);
		font-weight: 700;
	}
}
@media screen and (max-width: 767px){
	.h-inner{
		padding-top: 10px;
		display: grid;
		grid-template-columns: auto auto;
	}
	.h-logo-area{
		order: 1;
		margin-left: 15px;
	}
	.h-logo-area a{
		gap: 10px;
	}
	.h-logo-area .logo{
		width: 50px;
	}
	.h-logo-area strong{
		font-size: 18px;
	}
	.h-logo-area small{
		font-size: 11px;
	}
	.h-right-area,
	.h-right-top,
	.h-right-bottom{
		display: contents;
	}
	.h-guide{
		order: 2;
		display: grid;
		gap: 5px;
		width: fit-content;
		margin-left: auto;
		margin-right: 15px;
	}
	.h-guide li a{
		gap: 10px;
	}
	.h-guide li .icon{
		width: 30px;
	}
	.h-guide li .txt{
		font-size: 11px;
	}
	.g-nav{
		order: 3;
		grid-column: 1 / 3;
		margin-top: 8px;
	}
	.h-nav{
		border-top: 1px solid var(--GRAY02);
		border-bottom: 1px solid var(--GRAY02);
	}
	.h-nav li{
		flex-grow: 1;
	}
	.h-nav li:not(:last-child){
		border-right: 1px solid var(--GRAY02);
	}
	.h-nav li a{
		gap: 2px;
		justify-content: center;
		padding: 3px 0;
	}
	.h-nav li .icon{
		width: 25px;
	}
	.h-nav li .txt{
		font-size: 11px;
	}
	.g-user-area{
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		background-color: var(--GRAY01);
		z-index: 9999;
	}
	.g-user li{
		text-align: center;
		padding: 10px 0 20px;
	}
	.g-user li a .icon{
		width: 30px;
	}
	.g-user li a::after{
		font-size: 10px;
		font-weight: 500;
	}
	.g-user li a .fs-client-cart-count{
		top: -5px;
		right: -5px;
	}
}
/* ヘッダー検索 */
.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(http://kamp.design/fs/newsmikan/asset2024/images/common/search_icon.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.g-keyword-list li a::before{
	content: '#';
}
.h-keyword-list li a::before{
	color: var(--ORANGE03);
}
@media screen and (min-width: 768px){
	.h-search-area{
		background-color: var(--GRAY01);
		padding: 13px 0;
	}
	.h-search-form{
		width: clamp( 250px, 30vw, 380px);
	}
	.h-search-form button{
		width: 20px;
	}
	.h-search-form input[type="text"]{
		padding: 10px 40px 10px 20px;
	}
	.h-search-inner{
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.h-keyword-area{
		flex: 1;
		overflow-x: scroll;
		display: flex;
		align-items: center;
		gap: 20px;
		padding-bottom: 5px;
	}
	.h-keyword-area::-webkit-scrollbar{/* Chrome, Safari 対応 */
		height: 5px;
	}
	.h-keyword-area::-webkit-scrollbar-thumb{
		background-color: var(--BROWN01_OP10);
 	}
	 .h-keyword-area::-webkit-scrollbar-thumb:hover{
		cursor: grab;
	 }
	.h-keyword-ttl{
		width: fit-content;
		color: var(--ORANGE03);
		border-bottom: 1px solid var(--ORANGE03);
		font-size: 13px;
	}
	.h-keyword-list-area{
		flex: 1;
	}
	.h-keyword-list{
		white-space: nowrap;
	}
	.h-keyword-list li{
		display: inline-block;
		margin-right: 15px;
	}
	.h-keyword-list li a{
		font-size: 13px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
.to-top{
	position: fixed;
	z-index: 999;
}
.to-top a{
	background: url(http://kamp.design/fs/newsmikan/asset2024/images/common/top_button.png) no-repeat center center / 100%;
	aspect-ratio: 77/64;
	display: block;
	animation: sway 4s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% {
    transform: translateX(-50%) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) rotate(5deg);
  }
}
@media screen and (min-width: 768px){
	.to-top{
		width: 60px;
		bottom: 30px;
		right: 2%;
	}
}
@media screen and (max-width: 767px){
	.to-top{
		width: 55px;
		bottom: 80px;
		right:-4%;
	}
}

.f-top-area{
	background-color: var(--BROWN01);
}
.f-logo-area a{
	display: flex;
	align-items: center;
	color: var(--WHITE);
}
.f-logo-area a:visited{
	color: var(--WHITE);

}
.f-info{
	color: var(--WHITE);
}
.f-btn a{
	display: block;
	background: var(--ORANGE01) url(http://kamp.design/fs/newsmikan/asset2024/images/common/icon_realshop.svg) no-repeat;
	position: relative;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.f-btn a::after{
	content: "";
	display: inline-block;
	background: url(http://kamp.design/fs/newsmikan/asset2024/images/common/arrow-bk.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.g-sns{
	display: flex;
	justify-content: center;
}
.g-sns li a{
	display: block;
}
.g-sns li a span{
	background: no-repeat center center / 100%;
	aspect-ratio: 1/1;
	display: block;
}
.f-copy{
	text-align: center;
}
.f-end-link{
	display: flex;
}
.f-end-link li{
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
}
.f-end-link li:first-child::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	background-color: var(--TXT_COLOR);
	right: 0;
	width: 1px;
	height: 15px;
}
@media screen and (min-width: 1001px){
	.f-top-inner{
		display: flex;
		align-items: center;
		padding: 80px clamp( 10px, 3.5vw, 50px);
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.f-top-inner{
		display: grid;
		grid-template-columns: auto auto;
		padding: 50px 0;
	}
	.f-logo-area{
		grid-column: 1 / 3;
		margin: 0 auto 30px;
	}
}
@media screen and (min-width: 768px){
	.f-logo-area{
		width: fit-content;
	}
	.f-logo-area a{
		gap: 20px;
	}
	.f-logo-area .logo{
		width: 66px;
	}
	.f-logo-area .txt{
		font-size: 18px;
	}
	.f-info{
		flex: 1;
		padding-left: clamp( 20px, 5vw, 80px);
	}
	.f-btn{
		width: 300px;
	}
	.f-btn a{
		font-size: 20px;
		padding: 30px 10px 30px 70px;
		background-position: left 32px center;
		background-size: 23px;
	}
	.f-btn a::after{
		width: 10px;
		right: 20px;
	}
	.g-sns{
		padding: 80px 0;
		gap: 50px;
	}
	.g-sns li a{
		width: 30px;
	}
	.f-copy-area{
		padding-bottom: 40px;
		display: flex;
		justify-content: space-between;
	}
	.f-copy{
		font-size: 13px;
	}
	.f-end-link li a{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px){
	.f-top-inner{
		display: grid;
		padding: 40px 0;
		gap: 20px;
	}
	.f-logo-area{
		width: fit-content;
		margin: 0 auto;
	}
	.f-logo-area a{
		gap: 15px;
	}
	.f-logo-area .logo{
		width: 66px;
	}
	.f-logo-area .txt{
		font-size: 18px;
	}
	.f-info{
		width: fit-content;
		margin: 0 auto;
	}
	.f-btn a{
		font-size: 18px;
		padding: 25px 10px 25px 70px;
		background-position: left 32px center;
		background-size: 23px;
	}
	.f-btn a::after{
		width: 10px;
		right: 20px;
	}
	.g-sns{
		padding: 40px 0;
		gap: 40px;
	}
	.g-sns li a{
		width: 26px;
	}
	.f-copy-area{
		padding-bottom: 120px;
	}
	.f-copy{
		font-size: 11px;
		margin-bottom: 20px;
	}
	.f-end-link{
		justify-content: center;
	}
	.f-end-link li a{
		font-size: 11px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■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: #d42929;
	--FS_BTN_COLOR_1: var(--ORANGE03);
	--FS_BTN_COLOR_2: var(--GREEN02);
	--REVIEW_COLOR: var(--ORANGE03);
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
}
@media (hover: hover){
	.side-menu li a:hover{
		opacity: 1;
		background-color: var(--ORANGE01_OP20);
	}
}
@media screen and (min-width: 1001px){
  #sidearea{
    width: 240px;
    margin-right: 50px;
  }
	.side-search-area{
		background-color: var(--ORANGE01_OP20);
		padding: 15px;
		margin-bottom: 30px;
	}
	.side-search-form input[type="text"]{
		border: 1px solid var(--GRAY03);
		padding: 10px 35px 10px 10px;
	}
	.side-search-form button{
		width: 20px;
	}
	.side-hotword-ttl{
		font-weight: bold;
		border-bottom: 1px solid var(--TXT_COLOR);
		width: fit-content;
		margin: 15px 0 10px;
	}
	.side-hotword-list{
		display: flex;
		flex-wrap: wrap;
		gap: 2px 10px;
	}
	.side-hotword-list li a{
		font-size: 14px;
	}
	.side-hotword-list li a::before{
		content: "#";
		color: var(--ORANGE03);
	}
	.side-area{
		margin-bottom: 30px;
	}
	.side-ttl__box{
		font-weight: 700;
		font-size: 18px;
		color: var(--ORANGE03);
		padding-bottom: 10px;
		border-bottom: 1px solid var(--ORANGE03);
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.side-ttl .icon{
		background: no-repeat center center / 100%;
		width: 28px;
		aspect-ratio: 12/10;
	}
	.side-menu li a{
		display: block;
		padding: 15px 10px;
		font-size: 14px;
		border-bottom: 1px solid var(--GRAY02);
	}
	.side-bnr{
		display: grid;
		gap: 10px;
		margin: 45px 0 30px;
	}
	.side-end-link{
		display: grid;
		gap: 10px;
	}
}
@media screen and (min-width: 1001px) and (max-width: 1100px){
  #sidearea{
    width: 200px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1000px){
  #sidearea{
    display: none;
  }
}
@media screen and (min-width: 768px){
	#wrapper > .flex{
		align-items: flex-start;
	}
	.side-menu li.side__beforeSale a{
		padding-right: 60px;
		position: relative;
	}
	.side-menu li.side__beforeSale a::after{
		width: 45px;
		content: '販売中';
		display: block;
		text-align: center;
		font-size: 10px;
		padding: 2px 0;
		background-color: var(--ORANGE03);
		color: var(--WHITE);
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
}
/* カートカウント */
.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(--RED01);
	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);
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 30px auto 45px;
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		padding: 15px 0 10px 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__price{
	font-size: unset;
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR);
	}
}

/* -------------------商品リスト-------------------- */
.product-sec-ttl{
	width: fit-content;
	background: no-repeat left center;
	font-weight: 700;
}
[class*="top-"] .fs-c-productListCarousel__list__itemTrack{
	display: grid;
}
[class*="top-"] .fs-c-productListCarousel__ctrl,
[class*="top-"] .fs-c-productListItem__control.fs-c-buttonContainer,
[class*="top-"] .fs-c-price__currencyMark{
	display: none;
}
[class*="top-"] .fs-c-productPrice{
	display: flex;
	align-items: flex-end;
	line-height: 1;
}
[class*="top-"] .fs-c-price__value::after{
	content: '円';
}
[class*="top-"] .fs-c-productPrice__addon:before{
	content: "(";
}
[class*="top-"] .fs-c-productPrice__addon:after{
	content: ")";
}
.fs-c-productListItem__salesPeriod.fs-c-salesPeriod{
	margin-top: 11px;
	border: 1px solid var(--FS_BTN_COLOR_1);
	padding: 3px 9px;
}
.fs-c-salesPeriod__date{
	color: var(--FS_BTN_COLOR_1);
	font-size: 10px;
	line-height: 1.5;
	text-align: center;
	border: none;
}
.top-ranking .fs-c-productListCarousel__list{
	overflow-x: clip;
	overflow-y: visible;
}
.top-ranking .fs-c-productListCarousel__list__itemTrack{
	counter-reset: original-counter;
}
.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item{
	position: relative;
}
.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::before{
	content: "";
	display: inline-block;
	background: var(--ORANGE03) no-repeat center center / 100%;
	clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 91%, 0% 100%);
	aspect-ratio: 100/110;
	position: absolute;
	z-index: 2;
}
.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::after{
	content: ''counter(original-counter);
	counter-increment: original-counter;
	position: absolute;
	color: var(--WHITE);
	display: inline-block;
	text-align: center;
	font-weight: 700;
	z-index: 3;
}
@media screen and (min-width: 768px){
  .product-sec-ttl{
		font-size: 30px;
		margin: 0 auto 50px;
		padding-left: 43px;
		background-size: 40px;
	}
	[class*="top-"] .fs-c-productListCarousel__list__itemTrack{
		column-gap: 20px;
	}
	.top-new-item .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(4,1fr);
		row-gap: 50px;
	}
	.top-ranking .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(5,1fr);
		row-gap: 40px;
	}
	[class*="top-"] .fs-c-productListItem__productName{
		font-size: 14px;
		margin: 10px 0 5px;
	}
	[class*="top-"] .fs-c-price__value{
		font-size: 18px;
	}
	[class*="top-"] .fs-c-price__value::after{
		font-size: 12px;
	}
	[class*="top-"] .fs-c-productPrice__addon{
		font-size: 12px;
	}
	.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::before{
		width: 33px;
		left: 10px;
		top: 0px;
	}
	.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::after{
		width: 34px;
		left: 10px;
		top: 2px;
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){
	.product-sec-ttl{
		font-size: 20px;
		margin: 0 auto 30px;
		padding-left: 33px;
		background-size: 30px;
	}
	[class*="top-"] .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(2,1fr);
		gap: 30px 10px;
	}
	[class*="top-"] .fs-c-productListItem__productName{
		margin: 5px 0 2px;
		font-size: 14px;
	}
	[class*="top-"] .fs-c-price__value{
		font-size: 16px;
	}
	[class*="top-"] .fs-c-price__value::after{
		font-size: 11px;
	}
	[class*="top-"] .fs-c-productPrice__addon{
		font-size: 11px;
	}
	.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::before{
		width: 33px;
		left: 10px;
		top: 0px;
	}
	.top-ranking .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item::after{
		width: 34px;
		left: 10px;
		top: 2px;
		font-size: 16px;
	}
}
/* -------------------more-btn-------------------- */
.more-btn a{
	display: block;
	background-color: var(--GREEN01);
	color: var(--WHITE);
	text-align: center;
}
.more-btn a:visited{
	color: var(--WHITE);

}
@media (hover: hover){
	.more-btn a:hover{
		background-color: var(--GREEN02);
		opacity: 1;
}
}
@media screen and (min-width: 768px){
  .more-btn{
		width: 300px;
		margin: 50px auto 0;
	}
	.more-btn a{
		padding: 12px 0 13px;
		letter-spacing: 0.2em;
	}
}
@media screen and (max-width: 767px){
	.more-btn{
		width: 280px;
		margin: 40px auto 0;
	}
	.more-btn a{
		padding: 10px 0 11px;
		letter-spacing: 0.15em;
	}
}
.more-btn-pair .more-btn{
	margin: 0;
}
@media screen and (min-width: 768px){
	.more-btn-pair{
		display: flex;
		justify-content: center;
		gap: 30px;
		margin: 50px auto 0;
	}
}
@media screen and (max-width: 767px){
	.more-btn-pair{
		display: grid;
		justify-content: center;
		gap: 20px;
		margin: 40px auto 0;
	}
}
/* -------------------sec-ttl-------------------- */
.sec-ttl .ja{
	display: block;
	width: fit-content;
	margin: 0 auto;
	border-bottom: 1px solid var(--ORANGE02);
	font-weight: 700;
}
@media screen and (min-width: 768px){
  .sec-ttl{
		margin: 0 auto 50px;
	}
	.sec-ttl .ja{
		font-size: 30px;
	}
}
@media screen and (max-width: 767px){
	.sec-ttl{
		margin: 0 auto 30px;
	}
	.sec-ttl .ja{
		font-size: 20px;
	}
}
/* -------------------ガイドエリア-------------------- */
.g-guide-list .icon{
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
}
.g-guide-list .ttl{
	font-weight: 500;
}
@media screen and (min-width: 768px){
  .g-guide-list{
		display: flex;
	}
	.g-guide-list li{
		flex: 1;
		padding: 0 40px;
	}
	.g-guide-list li:not(:last-child){
		border-right: 1px solid var(--GRAY02);
	}
	.g-guide-list .icon{
		width: 80px;
		margin: 0 auto 15px;
	}
	.g-guide-list .ttl{
		font-size: clamp( 16px, 1.8vw, 20px);
		text-align: center;
		margin-bottom: 15px;
	}
	.g-guide-list .txt{
		font-size: clamp( 12px, 1.4vw, 16px);
	}
}
@media screen and (max-width: 767px){
  .g-guide-list{
		display: grid;
		gap: 30px;
	}
	.g-guide-list li{
		display: grid;
		grid-template-columns: 60px 1fr;
		align-items: center;
		column-gap: 20px;
		row-gap: 10px;
	}
	.g-guide-list .ttl{
		font-size: 18px;
	}
	.g-guide-list .txt{
		font-size: 13px;
		grid-column: span 2;
	}
}
/* -------------------フッターバナー-------------------- */
.f-bnr-area{
	background-color: var(--ORANGE01_OP20);
}
.f-bnr-list img{
	border-radius: 15px;
	box-shadow: var(--COMMON_BXSD);
}
.f-bnr-area .for-ft{
	display: none !important;
}
@media screen and (min-width: 768px){
	.f-bnr-area{
		padding: calc(var(--GENERALSEC) / 2) 0;
	}
  .f-bnr-list{
		display: grid;
		grid-template-columns: 0.9fr 1fr 1fr;
		gap: 20px;
	}
}
@media screen and (max-width: 767px){
	.f-bnr-area{
		padding: 40px 0;
	}
	.f-bnr-list{
		display: grid;
		gap: 15px;
	}
}
/* -------------------youtube-------------------- */
.youtube-area iframe {
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 10000/5625;
}
/* --------------------scroll-hint-------------------- */
@media screen and (min-width: 768px){
	.scroll-hint-icon-wrap{
		display: none;
	}
}
@media screen and (max-width: 767px){
	.scroll-hint-icon-wrap{
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.scroll-hint-icon{
		background: rgba(0, 0, 0, .5);
		top: 0;
		left: calc((100% - var(--INNER_WIDTH)) / 2);
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
	.scroll-hint-text{
		font-family: var(--FF_EN);
		font-size: 22px;
		position: absolute;
		top: 50%;
		left: 35%;
		font-weight: 500;
		padding-bottom: 15px;
		background: url(https://kamp.design/fs/newsmikan/asset2024/images/common/img_arrow.svg) no-repeat bottom center / 100%;
	}
	.scroll-hint-icon:before{
		background-image: url(https://kamp.design/fs/newsmikan/asset2024/images/common/img_finger.svg);
		position: absolute;
		top: 28%;
		left: 34%;
		aspect-ratio: 200 / 226;
		height: auto;
		width: 100px;
	}
	.scroll-hint-icon:after{
		content: none;
	}
	.scroll-hint-icon-wrap.is-active .scroll-hint-icon{
		opacity: 1;
	}
}
@keyframes scroll-hint-appear {
	0% {
		transform: translateX(40px);
		opacity: 1;
	}
	10% {
		opacity: 1;
	}
	50%,
	100% {
		transform: translateX(-40px);
		opacity: 0;
	}
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
