@charset "utf-8";

/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

textarea,
select,
option {
	font: inherit;
}

/* -------------------------------------------------- */
/* WP*/
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright {
	display: block;
	margin: 0 0 10px auto;
}

/* 配置位置 左 */
.alignleft {
	display: block;
	margin: 0 auto 10px 0;
}

/* 配置位置 右 */
.aligncenter {
	display: block;
	margin: 0 auto 10px;
}

/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } */
/* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*/
/* 後続テキスト右回り込み */

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a,
label {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

a:link,
a:visited {
	text-decoration: none;
	color: #fff;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

/* -------------------------------------------------- */
/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;
	/* 10px */
}

body {
	background: #fcf9f9;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
}

#container {
	max-width: 767px;
	margin: 0 auto;
	background: #fcf9f9;
	position: relative;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.inner {
	width: 90%;
	margin: auto;
}

header {
	position: fixed;
	width: 100%;
	max-width: 767px;
	height: 50px;
	padding: 0 4%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0px 5px -2px rgba(84, 52, 43, 0.2);
	z-index: 1111;
}

#headerLogo {
	width: auto;
	height: 30px;
	display: flex;
	align-items: center;
}

#headerLogo img {
	height: 100%;
}

#headerLink {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 0 15px;
}

#cartLink {
	width: auto;
	height: 24px;
	display: flex;
	align-items: center
}

#cartLink img {
	height: 100%;
}

#menuBtn {
	width: 18px;
	height: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	z-index: 333;
	position: relative;
}

#menuBtn span {
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background: #e65142;
}

#menuBtn.isActive span:nth-of-type(1) {
	width: 150%;
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	right: -5px;
}

#menuBtn.isActive span:nth-of-type(2) {
	opacity: 0;
}

#menuBtn.isActive span:nth-of-type(3) {
	width: 150%;
	transform: rotate(45deg);
	position: absolute;
	top: 10px;
	right: -5px;
}


#gnav {
	position: fixed;
	z-index: 100;
	right: 0;
	top: -120%;
	width: 100%;
	height: 100vh;
	transition: all 0.6s;
}

#gnav.isActive {
	top: 0;
}

#gnavList {
	width: 100%;
	height: 100vh;
	padding: 100px 2em;
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	overflow: auto;
	z-index: 222;
}

#gnavList li a {
	padding: 0.5em;
	display: block;
	color: #593a37;
	letter-spacing: 0.1em;
	font-weight: 500;
}

main {
	padding-top: 50px;
}

/* fv */
#fv {
	height: 86vh;
}

#fvImg {
	width: 90%;
	height: 60vh;
	margin: 0 auto;
	background: url(./img/top/fv_top.jpg) bottom center no-repeat;
	background-size: cover;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
}

#fvTit {
	margin: 1em auto 0;
	color: #593a37;
	font-size: 3.0vh;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.1em;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

/* 共通 */
.secPad {
	padding: 40px 0 60px;
}

.commonTit {
	margin-bottom: 1em;
	color: #54342b;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	display: flex;
	flex-direction: column;
}

.commonTit span {
	color: #ec9a86;
	font-size: 1.2rem;
}

.smallTit {
	margin-bottom: 1em;
	color: #54342b;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.commonBtn {
	width: 100%;
	padding: 1em 0;
	background: #e65142;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	position: relative;
}

.commonBtn:after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 10%;
	bottom: 0;
	margin: auto;
}

/* ベストセラー */
#bestSeller {
	background: url(./img/top/bg.jpg) repeat;
}

#bestSeller .inner {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}

.bestSellerBox {
	width: 100%;
	height: 80vh;
	margin: 0 auto;
	padding: 2%;
	background: url(./img/top/img_best01.jpg) center no-repeat;
	background-size: cover;
	border: 2px solid #e65142;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

.bestSellerBox:last-child {
	background: url(./img/top/img_best02.jpg) center no-repeat;
	background-size: cover;
}

.bestSellerBox p {
	color: #54342b;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: absolute;
	top: 20px;
	right: 27%;
}

.bestSellerBox:last-child p {
	top: 100px;
	left: 31%;
	right: auto;
}

/* 検索 */
.searchList {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #c2c6ce;
}

#searchCat {
	margin-bottom: 30px;
}

.searchList li {
	width: 50%;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}

.searchList li a {
	padding: 1em 2em;
	color: #54342b;
	background: #fcf9f9;
	border-top: 1px solid #c2c6ce;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.searchList li:nth-child(2n) {
	border-left: 1px solid #c2c6ce;
}

.searchList li a:before {
	content: "";
	width: 16px;
	height: 16px;
	margin-right: 10px;
	background: url(./img/common/arrow_r.svg) center no-repeat;
	background-size: contain;
}

.searchList li a span {
	margin-right: 0.1em;
	font-family: Futura, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.0;
	letter-spacing: -0.02em;
}

/* バナーエリア */
#bannerArea {
	padding: 60px 0;
	background: #fff;
}

.bannerImg {
	width: 90%;
	min-width: 360px;
	border-radius: 5px;
	overflow: hidden;
}

.bannerImg a {
	display: block;
}

.bannerImg a img {
	width: 100%;
}

/* おすすめ商品 */
.itemsList {
	margin-bottom: 2em;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 20px 0;
}

.itemsList li {
	width: 48%;
}

.itemsList li a {
	width: 100%;
	height: 100%;
	padding: 1.0em;
	background: #fff;
	border-radius: 5px;
	color: #593a37;
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	0px 2px 10px -2px rgba(84, 52, 43, 0.1);
	position: relative;
}

.itemsList li a:after {
	content: "";
	width: 1.2em;
	height: 1.2em;
	background: url(./img/common/arrow_r.svg) center no-repeat;
	background-size: contain;
	position: absolute;
	right: 1em;
	bottom: 1em;
}

.itemsCont {
	margin: 1em 0;
}

.itemsCat {
	color: #7b7b7b;
	font-size: 1.2rem;
}

.tempCat {
	padding: 0 0.5em;
	color: #58bec4;
	border: 1px solid;
	border-radius: 10px;
	font-size: 1.0rem;
}

.century {
	margin-right: 0.1em;
	font-family: Futura, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.0;
	letter-spacing: -0.02em;
}

.tax {
	font-size: 1.0rem;
}

/* ランキング */
#rankingArea {
	padding-bottom: 60px;
}

#rankingList li.sp-slide {
	overflow: visible;
	margin-top: 0.5em;
}

#rankingList li:before {
	content: "";
	width: 36px;
	height: 50px;
	background: url(./img/top/no1.svg) center no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.5em;
	top: -0.5em;
	z-index: 11;
}

#rankingList li:nth-child(2):before {
	background: url(./img/top/no2.svg) center no-repeat;
	background-size: contain;
}

#rankingList li:nth-child(3):before {
	background: url(./img/top/no3.svg) center no-repeat;
	background-size: contain;
}

#rankingList li:nth-child(4):before {
	background: url(./img/top/no4.svg) center no-repeat;
	background-size: contain;
}

#rankingList li:nth-child(5):before {
	background: url(./img/top/no5.svg) center no-repeat;
	background-size: contain;
}

#rankingList li {
	margin-top: 0.5em;
}

/* シーン */
#sceneArea {
	background: #fff;
}

#sceneList li a {
	width: 360px;
	height: 320px;
	background: #ffded2;
	border-radius: 5px;
	color: #593a37;
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0px 5px 8px -2px rgba(84, 52, 43, 0.1);
	position: relative;
}

#sceneList li a:after {
	content: "";
	width: 120px;
	height: 110px;
	background: url(./img/top/img_scene01.png) center no-repeat;
	background-size: contain;
	position: absolute;
	right: 1em;
	bottom: 1em;
}

#sceneList li {
	overflow: visible;
}

.sceneInner {
	padding: 1em 1.5em;
}

/* 店舗情報 */
#shopImg {
	margin-bottom: 2em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	border-radius: 5px;
	overflow: hidden;
	gap: 0.4vh 1%;
}

.shopImgBox {
	width: 49.5%;
}

.shopImgBox img {
	width: 100%;
	height: auto;
}

/* リール */
#reelList li {
	height: 36vh;
	border-radius: 5px;
	overflow: hidden;
}

#reelList li img {
	width: auto;
	height: 100%;
}

/* お知らせ */
#newsList {
	display: flex;
	flex-direction: column;
	gap: 1em 0;
}

#newsList li a {
	padding-bottom: 1em;
	border-bottom: 1px solid #c2c6ce;
	color: #54342b;
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
}

#newsList li a .date {
	color: #ec9a86;
	font-size: 1.0rem;
}

/* instagram */
#instaArea {
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#instaSliderTop {
	margin-bottom: 10px;
}

.slick-initialized .slick-slide.instaImg {
	margin-right: 10px;
	border-radius: 5px;
	overflow: hidden;
}

.slick-initialized .slick-slide.instaImg img {
	width: 100%;
	height: 100%;
}

/* 追従ボタン */
#serchBtn {
	width: 180px;
	height: 60px;
	margin: 0 auto;
	padding: 0 0 0 40px;
	position: fixed;
	bottom: 5vh;
	right: 0;
	left: 0;
	box-shadow: 0px 8px 10px -2px rgba(84, 52, 43, 0.2);
	transition: all 0.3s ease-in-out 0s;
}

#serchBtn:before {
	content: "";
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: url(./img/common/icon_search.svg) center no-repeat #fff;
	background-size: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 5px;
}

#serchBtn:after {
	content: none;
}

.is-hidden {
	visibility: hidden;
	opacity: 0;
}

/* スライダー共通設定 */
#bannerSlider,
#rankingList,#sceneList,
#reelList,
#relatedItems .itemsList {
	width: 90%;
	margin-left: 5%;
/*	padding-right: 5%;*/
	padding-bottom: 1em;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: scroll;
	gap: 0 10px;
	position: relative;
	box-sizing: border-box;
}

.itemsList li,
#sceneList li,
#reelList li {
	flex-shrink: 0;
	position: relative;
}

#bannerSlider::-webkit-scrollbar,
.itemsList::-webkit-scrollbar,
#sceneList::-webkit-scrollbar,
#reelList::-webkit-scrollbar {
	height: 1px; /* スクロールバーの高さ */
}

#bannerSlider::-webkit-scrollbar-thumb,
.itemsList::-webkit-scrollbar-thumb,
#sceneList::-webkit-scrollbar-thumb,
#reelList::-webkit-scrollbar-thumb {
	background: #593a37; /* ツマミの色 */
	border-radius: 1px; /* ツマミ両端の丸み */
}

#bannerSlider::-webkit-scrollbar-track,
.itemsList::-webkit-scrollbar-track,
#sceneList::-webkit-scrollbar-track,
#reelList::-webkit-scrollbar-track {
	background: #c2c6ce; /* トラックの色 */
	border-radius: 1px; /* トラック両端の丸み */
}

/* お買い物ガイド */
#footGuide {
	padding-bottom: 40px;
}

.guideList {
	margin-bottom: 1.25em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid #c2c6ce;
	color: #54342b;
	display: flex;
	flex-direction: column;
	gap: 1em 0;
}

.guideTit {
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0 0.25em;
}

.guideTit:before {
	content: "●";
	color: #f3937e;
	font-size: 1.2rem;
}

.guideBox img,
.guideTxt {
	font-size: 1.3rem;
	margin-top: 0.5em;
}

/* footer */
#footMain {
	padding: 60px 0;
	background: #f1e4e2;
}

#footLinkList {
	margin-bottom: 30px;
	border-bottom: 1px solid;
	transition: all 0.3s ease-in-out 0s;
}

#footLinkList li a,
.Label {
	padding: 1em 1em;
	color: #54342b;
	border-top: 1px solid;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease-in-out 0s;
}

#footLinkList li a:after,
.Label:after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #54342b;
	border-right: 2px solid #54342b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.Label:after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.toggle {
	display: none;
}

.Label,
.footLinkInner {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s ease-in-out;
}

.footLinkInner {
	height: 0;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.footLinkInner li {
	width: 50%;
}

.footLinkInner li:nth-child(odd) {
	border-right: 1px solid;
}

#footLinkList .footLinkInner li a {
	background: rgb(255 255 255 / 50%);
	padding: 1em 2em;
	justify-content: flex-start;
}

#footLinkList .footLinkInner li a:after {
	content: none;
}

.toggle:checked + .Label + .footLinkInner {
	height: auto;
	transition: all 0.3s ease-in-out;
}

.toggle:checked + .Label:after {
	transform: rotate(-45deg) !important;
	transition: all 0.3s ease-in-out;
}


#footInfo {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#footInfoInner {
	width: 80%;
	font-size: 1.2rem;
}

#footInfoInner a {
	display: flex;
	align-items: center;
	color: #54342b;
}

#footInfoInner a:after {
	content: "";
	width: 12px;
	height: 10px;
	margin-left: 0.5em;
	background: url(./img/common/icon_link.svg) center no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

#footLogo {
	margin-bottom: 1em;
}

#footInfoInner a#footLogo:after {
	content: none;
}

#footInfoInner a img {
	width: 70%;
}

#footInsta {
	width: 15%;
}

#footInsta img {
	width: 100%;
	height: auto;
}

#bottomLinkList {
	margin-top: 1em;
	display: flex;
	gap: 0 1em;
}

#bottomLinkList li a,
#copy {
	color: #9c8684;
	font-size: 1.1rem;
}

/* 下層共通 */
#breadList {
	display: flex;
	overflow: hidden;
}

#breadList li {
	margin-right: 1em;
	padding: 1em 0;
	color: #9c8684;
	font-size: 1.2rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 0 0.5em;
}

#breadList li:after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: 2px solid #9c8684;
	border-right: 2px solid #9c8684;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#breadList li:last-child:after {
	content: none;
}

#breadList li a {
	color: #9c8684;
	font-size: 1.2rem;
}


/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {
	.pc {
		display: block
	}

	.sp {
		display: none
	}

	body:before,
	body:after {
		content: "";
		width: calc((100% - 500px) /2);
		height: 100vh;
		background: url(./img/common/bg_left.jpg) center top no-repeat;
		background-size: cover;
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -2;
	}

	body:after {
		background: url(./img/common/bg_right.jpg) center top no-repeat;
		background-size: cover;
		left: auto;
		right: 0;
	}

	#container {
		width: 30%;
		min-width: 500px;
		box-shadow: 0px 10px 12px -2px rgba(84, 52, 43, 0.5);
		z-index: 11;
	}

	header {
		width: 30%;
		min-width: 500px;
		padding: 0 2%;
	}

	.commonBtn:hover {
		transform: scale(1.025);
	}

	#serchBtn:hover {
		transform: scale(1.1);
	}

	.itemsList li a:hover {
		transform: scale(1.025);
		box-shadow: 0px 0px 10px -2px rgba(84, 52, 43, 0.2);
	}


	#pcCont {
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
	}

	#pcCont .inner {
		width: 80%;
	}

	#leftCont {
		width: calc((100% - 500px) /2);
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-end;
	}

	#pcLogo {
		margin-top: 60px;
	}

	#pcLogo a {
		width: 280px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#pcLinkList {
		margin-bottom: 8em;
		display: flex;
		flex-direction: column;
		gap: 1.5em 0;
	}

	#pcLinkList li a {
		color: #fff;
		font-size: 1.6rem;
		font-weight: 600;
		letter-spacing: 0.04em;
		text-shadow: 0px 0px 6px rgba(230, 81, 66, 1.0);
		display: flex;
		align-items: center;
		gap: 0 0.5em;
	}

	#pcLinkList li a:hover {
		color: #e65142;
		text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.0);
	}

	#pcLinkList li a:before {
		content: "";
		width: 20px;
		height: 20px;
		background: url(./img/common/icon_home_w.svg) center no-repeat;
		background-size: contain;
		text-shadow: 0px 0px 6px rgba(230, 81, 66, 1.0);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease-in-out;
	}

	#pcLinkList li a:hover:before {
		background: url(./img/common/icon_home_r.svg) center no-repeat;
		background-size: contain;
		filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 1.0));
	}

	#pcLinkList li:nth-child(2) a:before {
		background: url(./img/common/icon_search_w.svg) center no-repeat;
		background-size: contain;
	}

	#pcLinkList li:nth-child(2) a:hover:before {
		background: url(./img/common/icon_search_r.svg) center no-repeat;
		background-size: contain;
		filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 1.0));
	}

	#pcLinkList li:nth-child(3) a:before {
		background: url(./img/common/icon_shop_w.svg) center no-repeat;
		background-size: contain;
	}

	#pcLinkList li:nth-child(3) a:hover:before {
		background: url(./img/common/icon_shop_r.svg) center no-repeat;
		background-size: contain;
		filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 1.0));
	}

	#pcLinkList li:nth-child(4) a:before {
		background: url(./img/common/icon_info_w.svg) center no-repeat;
		background-size: contain;
	}

	#pcLinkList li:nth-child(4) a:hover:before {
		background: url(./img/common/icon_info_r.svg) center no-repeat;
		background-size: contain;
		filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 1.0));
	}

	.pcSearch .smallTit {
		margin-bottom: 0.5em;
		color: #fcf9f9;
	}

	.pcSearch .searchList {
		margin-bottom: 2em;
	}



}

/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	.sp {
		display: block
	}

	.pc {
		display: none
	}

	#pcCont {
		display: none;
	}
}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}

@media screen and (max-width: 374px) and (max-height: 667px) {
	#serchBtn {
		bottom: 2vh;
	}
}