@charset "utf-8";

@import url('https://fonts.googleapis.com/css2&family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url("https://use.typekit.net/uwf8ujc.css");/* DIN 2014 Adobe Font*/

/*==================================================================
	Common setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
}
body {
	background-color: #FFF;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.7;
	overflow-x:hidden;
	overflow-y: auto;
	position: relative;
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s linear;
}
body.is-loaded {
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 767px){
	body { padding-top: 0;}
}
a { color: #000; text-decoration: none; }
a:hover { text-decoration: none; }
.full { width: 100%; }
.container {
	margin: auto;
	max-width: 1000px;
	width: 92%;
}
.serif { font-family: "Noto Serif JP", serif; }
.noto { font-family: "Noto Sans JP", sans-serif; }
.en_EBG { font-family: 'EB Garamond'; font-weight: 400; }
.en_DIN { font-family: "din-2014", sans-serif; font-weight: 400;}
.fw400 { font-weight: 400!important;}
.fw500 { font-weight: 500!important;}
.fw600 { font-weight: 600!important;}
@media screen and (min-width: 768px){
	.sp-only { display: none!important;}
	a[href^="tel:"] { pointer-events: none; }
}
@media screen and (max-width: 767px){
	.pc-only { display: none!important;}
}
.d-in-block { display: inline-block;}
.pos-rel { position: relative;}
.pic-cap {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 20;
	color: #000;
	font-size: 1rem;
	line-height: 1.0;
	padding: 5px;
}
.pic-cap.has-left {	right: auto; left: 0; }
.pic-cap.has-bg { background: rgba(0, 0, 0, 0.5);	color: #FFF;}
.pic-cap.has-wh { background: rgba(0, 0, 0, 0); color: #FFF;}
.pic-cap.outside { bottom: -20px;}
.caption { font-size: 1rem;}
.white { color: #FFF;}
.green { color: #5FCDB4;}
.blue { color: #336E99;}

/*==================================================================
	Header setting01
===================================================================*/
#header {
	background-color: #383839;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}
#header .htop {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 0;
}
#header #logo img {
	height: clamp(45px, 3.69047619vw, 62px);
	width: auto;
}
#header .hnav ul {
	background: #fff;
	display: flex;
}
#header .hnav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E8E5E5;
	color: #000;
	height: 62px;
	width: 210px;
	transition: all ease-in-out 0.3s;
	text-align: center;
	padding: 5px;
	position: relative;
	z-index: 0;
	overflow: hidden;
	font-size: 1.2rem;
}
#header .hnav ul li a:hover {
	opacity: 0.6;
}
#header .hnav ul li:nth-child(2) a {
	background: #DD5419;
	color: #fff;
}
#header .hnav ul li a:after {
	content: "";
	height: 100%;
	width: 30px;
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #fff;
	opacity: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: reflection 5s ease-in-out infinite;
	animation: reflection 5s ease-in-out infinite;
	z-index: 1;
}
@keyframes reflection {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

@media screen and (max-width: 767px){
	#header { background: #000; }
	.spmenu-btns {
		border-bottom: 1px solid #FFF;
		display: flex;
		justify-content: flex-end;
	}
	.spmenu-btns li {
		padding: 10px 8px;
		text-align: center;
		width: calc(100% / 5);
    	/*width: calc(100% / 6);*/
	}
	.spmenu-btns li img {
		height: 45px;
		width: auto;
	}
	.spmenu-navs {		
		background-color: #333333;
		display: none;
	}
	.spmenu-navs a {
		border-bottom: 1px solid #666666;
		color: #FFF;
		display: block;
		letter-spacing: 0.05em;
		padding: 6px 0;
		position: relative;
		text-align: center;
		width: 100%;
	}
	.spmenu-navs li.new a:before {
		background-color: #F00;
		content: "NEW";
		color: #FFF;
		font-size: 0.8rem;
		font-family: "din-2014", sans-serif;
		font-weight: 400;
		line-height: 1.3;
		margin: 0 auto;
		width: 40px;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}
	.splogo {
		background-color: #000;
		color: #fff;
		padding: 7px 0;
		text-align: center;
		font-weight: 400;
	}
	.splogo img {
		height: 14px;
	}
}

/*==================================================================
	Navigations setting
===================================================================*/
#gnavs {
	background-color: rgba(0, 0, 0, 0);
	display: none;
	padding: 18px;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	width: 100%;
}
#gnavs ul {
	display: flex;
	justify-content: center;
	gap: clamp(15px, 1.488vw, 25px);
}
#gnavs ul li a {
	color: #FFF;
	display: block;
	font-size: clamp(1.2rem, 0.748vw, 1.3rem);
}
@media screen and (max-width: 767px){
	#gnavs {
		display: none;
	}
}

/*==================================================================
	Caption area
===================================================================*/
.caption-area {
	padding: clamp(30px, 3.57142857vw, 60px) 0;
}
.caption-area p {
	font-size: 1rem;
	text-indent: -1em;
	padding-left: 1em;
}
.caption-area p.noindent {
	text-indent: 0;
	padding-left: 0;
}

/*==================================================================
	Footer
===================================================================*/
#footer {
	background-color: #383839;
	padding-bottom: 40px;
}
.f-bnr-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: clamp(25px, 2.97619048vw ,50px) 0;
}
.f-nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(10px, 1.60714286vw, 27px);
	margin-bottom: 30px;
}
.f-nav-list li {
	max-width: 300px;
	width: 35%;
}
.f-nav-list li img {
	transition: all ease-in-out 0.3s;
}
.f-nav-list li:hover img {
	background-color: #464646;
	filter: brightness(150%);
}
.f-nav-sub-list {
	display: flex;
	justify-content: center;
}
.f-nav-sub-list li {
	width: auto;
}
.f-nav-sub-list li img {
	width: auto;
	height: 75px;
	transition: all ease-in-out 0.3s;
}
.f-nav-sub-list li:hover img {
	background-color: #464646;
	filter: brightness(150%);
}
@media screen and (max-width: 767px){
	.f-bnr-list li {
		max-width: 186px;
		width: calc(100% / 2 - 5px);
	}
	.f-nav-list li {
		max-width: 186px;
		width: 100%;
	}
	.f-nav-sub-list li img {
		height: 50px;
	}
}

/* swipe*/
@media screen and (max-width: 767px){
	.swipe-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
		position: relative;
	}
	.swipe-image {
		width: 768px;
	}
	.swipe-icon {
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 30px;
		height: 60px;
		width: 60px;
		padding: 15px;
		position: absolute;
		left: calc(50% - 30px);
		top: calc(50% - 30px);
		z-index: 1;
		animation: swipeicon 1s ease-in-out infinite alternate;
	}
	@keyframes swipeicon {
		0% {
			transform: translate(-20%, -20%);
		}
		100% {
			transform: translate(30%, -20%);
		}
	}
}

#pagetop {
	cursor: pointer;
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 42px;
	z-index: 9;
}
@media screen and (max-width: 767px){
	#pagetop {
		right: 15px;
		bottom: 15px;
	}
}