@charset "utf-8";
@import url('./reset.css');
html { scroll-padding-top: 80px; }
body {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	min-width: 320px;
	background-color: #fff;
	color: #000;
	font-family: 'Helvetica','Arial','Yu Gothic Medium','游ゴシック Medium', 'YuGothic','游ゴシック体','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
}

#header {
	position: fixed;
	top: 0;
	left: 0; 
	display: flex;
	width: 100%;
	height: 80px;
	background: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)),#000 url(../img/general/wall.png) repeat-x left top;
	color: #fff;
	z-index: 100;
}
#header .hdTitle {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}
#header .hdTitle::before {
	content:"";
	flex: 0 0 auto;
	display: block;
	width: 80px;
	height: 80px;
	background: url('../img/general/logo.png') no-repeat center center;
}
#header .hdMenu {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	letter-spacing: .04em;
}
#header #hdTog { display: none; }
#header .hdNav a {
	display: flex;
	justify-content: center;
	padding: 10px;
	white-space: nowrap;
}
#header .hdNav a:hover { background-color: rgba(255,255,255, .3); }
@media screen and (min-width: 768px) {
	#header .hdTog { display: none; }
	#header .hdNav { display: flex; }
}/*--pc*/
@media screen and (max-width: 767px) {
	#header .hdTog {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 1000;
	}
	#header .hdTog span,
	#header .hdTog span:before,
	#header .hdTog span:after {
		content: '';
		position: absolute;
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #666;
		transition: 0.5s;
	}
	#header .hdTog span:before { bottom: 8px; }
	#header .hdTog span:after { top: 8px; }
	#header #hdTog:checked +.hdTog span { background: rgba(255, 255, 255, 0); }
	#header #hdTog:checked +.hdTog span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#header #hdTog:checked +.hdTog span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#header .hdNav {
		position: fixed;
		top: 0;
		right: -100vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 300px;
		height: 100%;
		background-color: rgba(0, 0, 0, .9);
		z-index: 999;
		transition: .5s;
	}
	#header #hdTog:checked ~ .hdNav { right: 0; }
}/*--sp*/
/* footer Company */
#footer {
	position: relative;
	flex: 0 0 auto;
	padding: 0 10px;
	background: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)),#000 url(../img/general/wall.png) repeat-x left top;
	color: #fff;
	z-index: 10;
}
#footer #company {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 20px;
	padding: 30px 0;
}
#footer .ftIMA {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	margin: 0 auto;
}
#footer .ftIMA > * { margin: 0 auto; }
#footer .ftInfo {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
}
#footer .ftInfo > li {
	display: flex;
	flex-wrap: wrap;
}
#footer .ftIcon {
	display: flex;
	gap: 5px;
}
#footer .ftIcon.in_tel { padding-right: 1.0em; }
#footer .ftIcon::before {
	content: '';
	display: block;
	width: 1.0em;
	height: auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
#footer .ftIcon.in_add::before { background-image: url(../img/general/ico_add.svg); }
#footer .ftIcon.in_tel::before { background-image: url(../img/general/ico_tel.svg); }
#footer .ftIcon.in_mail::before { background-image: url(../img/general/ico_mail.svg); }

#footer .ftShop { margin: 0 auto; }
#footer .ftTxt {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
}
#footer .ftTxt .inName {
	padding-top: 10px;
	 font-size: 1.25em;
}
#footer .ecMenu {
	display: flex;
	justify-content: center;
	gap: 10px;
}
#footer .ecMenu a {
	display: block;
	width: 100px;
	height: 50px;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-position: center center;
}
#footer .ecMenu a.ec_amazon {
	background-color: #d2ad71;
	background-image: url(../img/ec/amazon.png);
}
#footer .ecMenu a.ec_rakuten {
	background-color: #fff;
	background-image: url(../img/ec/rakuten.png);
}
#footer .ecMenu a.ec_yahoo {
	background-color: #fff;
	background-image: url(../img/ec/yahoo.png);
}

/* main */
#main {
	flex: 1 0 auto;
	background-color: inherit;
}
/*parts*/
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
/*element*/
.e_ad::after { content: attr(data-md); }
.e_ad::before { content: attr(data-mn) "@"; }
.e_wrap {
	max-width: 1200px;
	margin: auto;
}
.e_msg {
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 10px;
	background-color: rgba(255,255,255, .8);
	color: #800000;
	z-index: 1000;
}
.e_ttl {
	margin-bottom: 1.0em;
	padding: 5px 10px;
	background-color: #000;
	letter-spacing: .2rem;
	color: #fff;
}
#contents {
	position: relative;
	z-index: 10;
	background-color: #fff;
}
#concept { background-color: #000; }
#concept .msgArea {
	display: flex;
	justify-content: center;
	padding: 30px;
}
@media screen and (min-width: 768px) {
	#concept .msgArea { padding: 50px; }
}
#product {
	padding: 60px 0;
	background-color: #fff;
}
#product .ttlArea {
	display: flex;
	justify-content: center;
}
#product .txtArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 25px 10px;
}
#product .catArea {
	display: flex;
	flex-wrap: wrap;
}
#product .catArea > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 33.33%;
	padding: 0 10px 40px;
}
@media screen and (max-width: 600px) {
	#product .catArea > a { width: 50%; }
}
#product .catArea > a > figure { position: relative; }
#product .catArea > a > figure.new::after {
	content: "";
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 70px;
	height: 44px;
	background: url(../img/general/new.png) no-repeat center center;
}
#product .catArea > a > span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 10px;
	font-size: 1.4em;
	color: #795a19;
}
