@charset "utf-8";

/***************************************************
	common.css
	共通レイアウトスタイル定義
***************************************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

/* Base
------------------------------------------------------------ */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	line-height: 1.7;
	color: #472226;
	margin: 0;
	padding: 0;
	min-width: 1020px;
	background: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	word-wrap: break-word;
	position: relative;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
br.pc {
}
br.sp {
	display: none;
}
@media only screen and (max-width: 767px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* Link
------------------------------------------------------------ */
a { outline: none; }
a:link {
	color: #004da0;
	text-decoration: underline;
}
a:visited {
	color: #004da0;
	text-decoration: underline;
}
a:hover {
	color: #004da0;
	text-decoration: none;
}

a img {
	transition: .3s;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* wrapper
-------------------------------------------------------------------*/
.wrapper {
	/*overflow: hidden;*/
}
.innerBox {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
}
@media only screen and (max-width: 767px) {
	.innerBox {
		padding: 0 16px;
	}
}


/* header
-------------------------------------------------------------------*/
.header {
}
.header .headerInner {
}
.header .logo {
	position: fixed;
	top: 15px;
	left: 15px;
	width: 78px;
	margin: 0;
	z-index: 900;
}
.header .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 78px;
	background: #ffffff;
	border-radius: 50%;
}
.header .logo a img {
	width: 47px;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.header .logo {
		top: 10px;
		left: 10px;
		width: 50px;
	}
	.header .logo a {
		height: 50px;
	}
	.header .logo a img {
		width: 30px;
	}
}

.btnMenu {
	display: none;
}
@media only screen and (max-width: 767px) {
	.btnMenu {
		display: block;
		overflow: hidden;
		z-index: 1100;
		width: 44px;
		height: 44px;
		cursor: pointer;
		margin: 0;
		position: fixed;
		top: 0;
		right: 0;
	}
	.btnMenu .line,
	.btnMenu::before,
	.btnMenu::after {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 20px;
		height: 2px;
		margin: auto;
		background: #472226;
		transition: transform 0.2s;
	}
	.btnMenu::before {
		z-index: 2;
		transform: translate(0, -8px);
		content: "";
	}
	.btnMenu::after {
		z-index: 2;
		transform: translate(0, 8px);
		content: "";
	}
	body.open .btnMenu .line {
		opacity: 0;
	}
	body.open .btnMenu::before,
	body.open .btnMenu::after {
		top: 0;
	}
	body.open .btnMenu::before {
		transform: rotate(45deg);
	}
	body.open .btnMenu::after {
		transform: rotate(-45deg);
	}
	.menuBox {
		display: block;
		visibility: hidden;
		opacity: 0;
		height: 0;
		margin: 0;
		padding: 0;
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 1);
		filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#100ffffff', endColorstr='#100ffffff');
		_background-color: #ffffff;
		box-sizing: border-box;
		transition: 0.2s;
		z-index: 1000;
		overflow: auto;
		-webkit-overflow-scrolling:touch;
	}
	body.open .menuBox {
		visibility: visible;
		opacity: 1;
		height: 100vh;
	}
	body #overlay {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 100;
		background: rgba(0, 0, 0, .3);
		visibility: hidden;
		opacity: 0;
		transition: 0.5s;
	}
	body.open #overlay {
		visibility: visible;
		opacity: 1;
	}
}



/* main
-------------------------------------------------------------------*/
.main {
	display: block;
	font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
	.main {
		font-size: 1.4rem;
	}
}


/* footer
-------------------------------------------------------------------*/
.footer {
	padding: 60px 0 30px;
	background: #ffffff;
	position: relative;
}
.footer .siteList {
	display: flex;
	justify-content: center;
}
.footer .siteList > li {
	width: 344px;
	margin: 0;
}
.footer .siteList > li + li {
	margin-left: 40px;
}
.footer .siteList > li a {
	color: #472226;
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 0 15px;
	border: 2px solid #472226;
	position: relative;
	overflow: hidden;
	transition: .3s;
}
/*.footer .siteList > li a::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	background: #472226;
	border-radius: 50%;
	z-index: 2;
}*/
.footer .siteList > li a:hover {
	color: #ffffff;
	background: #472226;
}
/*.footer .siteList > li a:hover::after {
	background: #ffffff;
}*/
.footer .siteList > li .icon {
	display: block;
	z-index: 3;
}
.footer .siteList > li .icon svg {
	fill: currentColor;
}
.footer .siteList > li a:hover .icon svg {
	fill: #ffffff;
}
.footer .siteList > li a:hover .icon svg * {
	fill: #ffffff;
}
.footer .siteList > li .name {
	display: block;
	z-index: 4;
	width: calc(100% - 60px);
	text-align: center;
}
.footer .siteList > li.shop .icon {
	width: 46px;
}
.footer .siteList > li.official .icon {
	width: 51px;
}
.footer .snsList {
	margin: 70px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer .snsList > li {
	margin: 0;
	width: 68px;
}
.footer .snsList > li:nth-child(1) {
	width: 56px;
}
.footer .snsList > li + li {
	margin-left: 55px;
}
.footer .cr {
	font-size: 1.2rem;
	margin: 4em 2em 0;
	text-align: center;
}
.btnProducts {
	position: fixed;
	right: 0;
	bottom: 100px;
	width: 120px;
	margin: 0;
	z-index: 700;
}
.btnPagetop {
	position: fixed;
	right: 0;
	bottom: 60px;
	width: 58px;
	margin: 0;
	z-index: 800;
}
@media only screen and (max-width: 767px) {
	.footer {
		padding: 40px 0 20px;
	}
	.footer .siteList {
		display: block;
	}
	.footer .siteList > li {
		width: auto;
		max-width: 300px;
		margin: 0 auto;
	}
	.footer .siteList > li + li {
		margin-top: 30px;
		margin-left: auto;
	}
	.footer .siteList > li a {
		font-size: 1.4rem;
		height: 70px;
		padding: 0 15px;
	}
	/*.footer .siteList > li a::after {
		width: 4px;
		height: 4px;
	}*/
	.footer .siteList > li .name {
		width: calc(100% - 40px);
	}
	.footer .siteList > li.shop .icon {
		width: 34px;
	}
	.footer .siteList > li.official .icon {
		width: 38px;
	}
	.footer .snsList {
		margin-top: 40px;
	}
	.footer .snsList > li {
		width: 50px;
	}
	.footer .snsList > li:nth-child(1) {
		width: 41px;
	}
	.footer .snsList > li + li {
		margin-left: 40px;
	}
	.footer .cr {
		font-size: 1.0rem;
		margin: 3em 0 0;
	}
	.btnProducts {
		width: 105px;
	}
	.btnPagetop {
		width: 50px;
	}
}

