@charset "UTF-8";

/* ---------- common style ---------------------------------------- */
* {
	margin: 0;
	padding: 0;
}
header,
main,
article,
section,
nav,
aside,
figure,
footer {
	display: block;
}
body {
	background-color: #fff;
	overflow-x: hidden;
}
body,td,th,h1,h2,h3,h4,h5,h6,p,dt,dd,li,button {
	font-size: 100%;
	font-family: 'Cardo','游明朝','YuMincho',"ヒラギノ明朝 ProN", "Hiragino Mincho ProN","HGS明朝E",serif;
	font-feature-settings: "pkna";
	color: #000000;
	letter-spacing: 0.05em;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: 0.03em;
}
p {
	font-size: 14px;
	line-height: 180%;
	letter-spacing: 0.05em;
}
address {
	font-size: 14px;
	line-height: 200%;
	font-style: 500;
	letter-spacing: 0.05em;
}
dt, dd {
	font-size: 14px;
	line-height: 180%;
	letter-spacing: 0.05em;
}
th, td {
	font-size: 14px;
	line-height: 180%;
	letter-spacing: 0.05em;
}
li {
	font-size: 14px;
	line-height: 180%;
	list-style-type: none;
	letter-spacing: 0.05em;
}
time {
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0.05em;
}
table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
	letter-spacing: 0.05em;
}
th, td {
	line-height: 180%;
	text-align: left;
	vertical-align: top;
	letter-spacing: 0.05em;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}
caption {
	text-align: left;
}
a {
	color: #000;
	outline: none;
	text-decoration: none;
	letter-spacing: 0.05em;
}
a:link    {color: #000; text-decoration: none;}
a:visited {color: #000; text-decoration: none;}
a:hover   {color: #000; text-decoration: none;}
a:active  {color: #000; text-decoration: none;}

button {
	border: none;
	background-color:rgba(0,0,0,0);
}

/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* br */
.pc-br {
	display: block;
}
.sp-br {
	display: none;
}

/* box */
.box {
	margin: 0 6.25%;
}

/* section-title */
.section-title {
	font-size: 18px;
	font-weight: 700;
}


/* btn */
.btn {
	position: relative;
	background-color:rgba(0,0,0,0);
}

.separator {}
.separator:after {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background-color: #757575;
	margin-top: 20px;
	margin-bottom: 24px;
}
.photo img {
	width: 100%;
	height: auto;
}

.en {
	letter-spacing: 0.03em;
}


/* ---------- contents ---------------------------------------- */
#contents {
	position: relative;
	box-sizing: border-box;
	min-width: 1200px;
}

/* ---------- header ---------------------------------------- */
#header {
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	z-index: 10;
}

#header .logo {
	margin: 29px 0 0 45px;
}
#header .logo span {
	padding-left: 16px;
	color: #fff;
	font-size: 10px;
}
#header .nav {
	display: flex;
	margin: 40px 45px 0 0;
}
#header .btn_nav {
	display: none;
}
#header .nav #gnav {
	position: relative;
	margin-right: 60px;
}
#header .nav #gnav::after {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	right: -30px;
	width: 1px;
	height: 16px;
	background-color: #fff;
	opacity: 0.25;
}
#header .nav #gnav ul {
	font-size: 0;
}
#header .nav #gnav li {
	display: inline-block;
	margin-right: 27px;
	padding-top: 6px;
	line-height: 100%;
}
#header .nav #gnav li:last-child {
	margin-right: 0;
}
#header .nav #gnav li a {
	color: #fff;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0.03em;
	transition: 0.3s;
}
#header .nav #gnav li a:hover {
	opacity: 0.5;
}
#header .subnav {
	display: flex;
}
#header .subnav .snsnav {
	margin-right: 21px;
}
#header .subnav .snsnav-sp {
	display: none;
}
#header .subnav .snsnav a {
	transition: 0.3s;
}
#header .subnav .snsnav a:hover {
	opacity: 0.5;
}
#header .subnav .onlinestore {
	position: relative;
	margin-top: 5px;
	height: 19px;
}
#header .subnav .onlinestore a {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 120%;
}
#header .subnav .onlinestore a::after {
	content: "";
	display: block;
	position: absolute;
	top: 17px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	transition-property: right,width;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}
#header .subnav .onlinestore a:hover:after {
	right: 50%;
	width: 0%;
}
#header .nav_fixed {
	display: flex;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	height: 75px;
	background-color: #fff;
	border-bottom: solid 1px #757575;
	z-index: 10000;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
#header .nav_fixed.show {
	visibility: visible;
	opacity: 1;
}
#header .nav_fixed .logo {
	margin: 15px 0 0 45px;
}
#header .nav_fixed .logo span {
	color: #000;
}
#header .nav_fixed .nav {
	margin: 25px 45px 0 0;
}
#header .nav_fixed #gnav::after {
	background-color: #000;
}
#header .nav_fixed #gnav li a {
	color: #000;
}
#header .nav_fixed .subnav .onlinestore a {
	color: #000;
}
#header .nav_fixed .subnav .onlinestore a::after {
	background-color: #000;
}

/* ---------- container ---------------------------------------- */
#container {
	position: relative;
	width: 100%;
	animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* ---------- footer ---------------------------------------- */
#footer {
	padding: 180px 0 90px;
}
#contact {
	position: relative;
	width: 100%;
}
#contact .inner {
	display: flex;
	width: 100%;
}
#contact .btn {
	width: 50%;
}
#contact .btn a {
	display: block;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	width: 100%;
	height: 180px;
	border: solid 1px #616161;
	transition: 0.3s;
}
#contact .btn:first-child a {
	border-right: none;
}
#contact .btn .title {
	margin-top: 52px;
	font-size: 21px;
	line-height: 100%;
}
#contact .btn .link {
	display: inline-block;
	position: relative;
	margin-top: 21px;
	font-size: 14px;
	line-height: 120%;
}
#contact .btn .link::after {
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #616161;
	transition-property: right,width;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}
#contact .btn:hover .link::after {
	right: 50%;
	width: 0%;
}
#footer .text p,
#footer .copyright p {
	margin-top: 10px;
	font-size: 12px;
	line-height: 180%;
}
#footer #pagetop {
	position: fixed;
	right: 36px;
	bottom: 45px;
	z-index: 1000;
}



@media (max-width: 768px) {

	/* ---------- common-style ---------------------------------------- */

	body,td,th,h1,h2,h3,h4,h5,h6,p,dt,dd,li,button {
		font-family: 'Cardo','游明朝','YuMincho',"ヒラギノ明朝 ProN", "Hiragino Mincho ProN","HGS明朝E",serif;
	}

	/* box */
	.box {
		margin: 72px 8%;
	}

	/* section-title */
	.section-title {
		font-size: 21px;
	}


	/* btn */
	.btn a {
		padding-top: 15px;
	}

	/* br */
	.pc-br {
		display: none;
	}
	.sp-br {
		display: block;
	}


	/* ---------- contents ---------------------------------------- */
	#contents {
		overflow: hidden;
		min-width: inherit;
	}

	/* ---------- header ---------------------------------------- */
	#header {
		justify-content: space-between;
	}
	#header .logo {
		margin: 15px 0 0 6%;
	}
	#header .btn_nav {
		display: block;
		position: relative;
		width: 28px;
		height: 14px;
		margin: 27px 6% 0 0;
		z-index: 10000;
		transform: translate3d(0,0,2px);
	}
	#header .btn_nav .bar {
		display: block;
		position: absolute;
		top: 6px;
		left: 0;
		width: 28px;
		height: 1px;
		background: #fff;
	}
	#header .btn_nav .bar::before,
	#header .btn_nav .bar::after {
		position: absolute;
		display: block;
		left: 0;
		width: 28px;
		height: 1px;
		background-color: #fff;
		content: " ";
		-webkit-transition-duration: 0.3s, 0.3s;
		transition-duration: 0.3s, 0.3s;
		-webkit-transition-delay: 0.3s, 0;
		transition-delay: 0.3s, 0;
	}
	#header .btn_nav .bar::before {
		top: -6px;
		transition-property: top, z-index, transform;
	}
	#header .btn_nav .bar::after {
		width: 28px;
		bottom: -6px;
		left: 0;
		transition-property: width, bottom, left, z-index, transform;
		transition-delay: 0, 0.3s;
		transition-timing-function: ease-out;
	}
	#header.open .btn_nav .bar::after {
		width: 28px;
		left: 0;
	}
	#header .btn_nav:hover .bar::after {
		width: 28px;
		left: 0;
	}
	#header.open .btn_nav .bar {
		background: none;
	}
	#header.open .btn_nav .bar::before,
	#header.open .btn_nav .bar::after {
		background-color: #757575;
		transition-delay: 0, 0.4s;
	}
	#header.open .btn_nav .bar::before {
		top: 0;
		transform: rotate(45deg);
	}
	#header.open .btn_nav .bar::after {
		bottom: 0;
		transform: rotate(-45deg);
	}
	#header .nav {
		display: block;
		position: fixed;
		visibility: hidden;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		margin: 0;
		background-color: #fff;
		z-index: -10;
		opacity: 0;
		transition-duration: 0.5s;
		transition-property: visibility, z-index, opacity, transform;
	}
	#header.open .nav {
		visibility: visible;
		opacity: 0.9;
		z-index: 9999;
		transform: translate3d(0,0,0);
	}
	#header .nav #gnav {
		width: 100%;
		margin-right: 0;
	}
	#header .nav #gnav::after {
		display: none;
	}
	#header .nav #gnav ul {
		text-align: center;
		margin: 120px auto 48px;
		font-size: 0;
	}
	#header .nav #gnav li {
		display: block;
		margin: 0 0 30px;
		padding-top: 0;
	}
	#header .nav #gnav li:last-child {
		margin-right: auto;
	}
	#header .nav #gnav li a {
		color: #000;
		font-size: 18px;
	}
	#header .subnav {
		display: block;
		text-align: center;
	}
	#header .subnav .snsnav {
		display: none;
	}
	#header .subnav .snsnav-sp {
		display: block;
		margin-right: 0;
	}
	#header .subnav .onlinestore {
		display: inline-block;
		position: relative;
		margin-top: 18px;
		height: 19px;
	}
	#header .subnav .onlinestore a {
		display: inline-block;
		color: #000;
		font-size: 14px;
	}
	#header .subnav .onlinestore a::after {
		top: 21px;
		background-color: #000;
	}
	#header .subnav .onlinestore a:hover:after {
		right: 50%;
		width: 0%;
	}
	#header .nav_fixed {
		height: 54px;
	}
	#header .nav_fixed .nav {
		display: none;
	}
	#header .nav_fixed .logo {
		margin: 9px 0 0 6%;
	}
	#header .nav_fixed .logo img {
		width: 42px;
		height: auto;
	}
	#header .nav_fixed .logo span {
		padding-left: 12px;
	}
	#header .nav_fixed .btn_nav .bar {
		top: 0px;
		background-color: #757575;
	}
	#header.open .nav_fixed .btn_nav .bar  {
		background: none;
	}
	#header .nav_fixed .btn_nav .bar::before,
	#header .nav_fixed .btn_nav .bar::after {
		background-color: #757575;
	}

	/* ---------- footer ---------------------------------------- */
	#footer {
		padding: 0;
	}
	#contact .inner {
		display: block;
	}
	#contact .btn {
		width: 100%;
	}
	#contact .btn a {
		height: 150px;
	}
	#contact .btn:first-child a {
		border-right: solid 1px #616161;
	}
	#contact .btn:last-child a {
		border-top: none;
	}
	#contact .btn .title {
		margin-top: 33px;
		font-size: 18px;
	}
	#contact .btn .link {
		margin-top: 15px;
		font-size: 13px;
	}
	#contact .btn .link::after {
		top: 17px;
	}
	#footer .text p,
	#footer .copyright p {
		font-size: 11px;
	}

}