@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i);
 

* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #000;
	background-color: #e1e1e1;
	overflow: hidden;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }


.en {
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: bold;
}

@media screen and (max-width: 767px){
	.pcOnly{
		display: none;
	}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none;
	}
}

#wrapper {
	width: 100%;
	position: relative;
	margin: 0 auto;

}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/*	LOADING	*/

#loading {
	width: 100%;
	height: 100%;
	background-color: #474747;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}

#loading .ldgimg {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
	text-align: center;
}
#loading .ldgimg img {
	width: 306px;
	height: auto;
	margin-bottom: 30px;
}
#loading .ldgimg p {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	animation: ldgtxt 1.5s infinite;
}

#loading span {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 5px;
	background-color: #fff;
}

#loading span.loaded {
	width: 0;
	height: 0;
	animation: ldg 1.5s;
}

@keyframes ldg {
	0% {
		width: 0;
		height: 5px;
	}
	50% {
		width: 100%;
		height: 5px;
	}
	80% {
		width: 100%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 0;
	}
}

@keyframes ldgtxt {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 100;
	}
	60% {
		opacity: 100;
	}
	100% {
		width: 100%;
		opacity: 0;
	}
}

@media screen and (max-width: 767px){
	
	#loading .ldgimg {
		width: 100%;
		max-width: 480px;
	}
	
}

/*------ヘッダーメニュー-----*/

.main_img {
	background-color: #e1e1e1;
	padding-bottom: 80px;
}

header {
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
}

header .logo img {
	width: 280px;
	transition: 0.3s opacity ease;
}

header .logo img:hover {
	opacity: 0.65;
}


.g_navi_inner {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 40px;
}
	
.g_navi {
	position: fixed;
	z-index: -9999;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #474747;
	transition: all .5s;
	flex-direction: column;
	display: block;
	opacity: 0;
	overflow: auto; /*追加*/
	-webkit-overflow-scrolling: touch; /*追加*/
}

.g_navi.is-active {
	z-index: 9999;
	opacity: 1;
}
.g_navi a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
	display: block;
	padding: 20px;
	position: relative;
	margin: 20px 0;
	transition: opacity 0.3s ease;
	text-align: center;
}
.g_navi a::before,
.g_navi a::after {
	position: absolute;
	z-index: 2;
	content: '';
	width: 0;
	height: 0;
	border: 1px solid transparent;
}
.g_navi a::before {
	top: -1px;
	left: -1px;
}
.g_navi a::after {
	bottom: -1px;
	right: -1px;
}

.g_navi a:hover::before,
.g_navi a:hover::after {
	width: 100%;
	height: 100%;
}
.g_navi a:hover::before {
	border-bottom-color: #fff;
	border-left-color: #fff;
	transition: height .3s, width .3s .3s;
}
.g_navi a:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
	transition: height .3s, width .3s .3s;
}

.g_navi ul {
}

.menubtn {
	position: fixed;
	right: 0;
	top: 0;
	width: 80px;
	height: 80px;
	display: flex;
	z-index: 99;
}

.btn_spmenu {
	background-color: #474747;
	transition: opacity 0.3s ease;
}
.btn_spmenu:hover {
	opacity: 0.6;
}
.btn_contct {
	background-color: #00a1d8;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	transition: opacity 0.3s ease;
}
.btn_contct:hover {
	opacity: 0.6;
}
.btn_contct img {
	width: 43px;
}
.btn_spmenu, .btn_close {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	color: #d6d6d6;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
	
.btn_close {
	border: none;
	position: absolute;
	right: 0;
	top: 0;
}
	
.btn_spmenu span,
.btn_spmenu::before,
.btn_spmenu::after {
	content: '';
	width: 34px;
	height: 2px;
	position: absolute;
	top: 38px;
	left: 50%;
	margin-left: -17px;
	background: #d6d6d6;
	transition: all 0.3s ease;
}


.btn_close span,
.btn_close::before,
.btn_close::after {
	content: '';
	width: 34px;
	height: 2px;
	position: absolute;
	top: 38px;
	left: 50%;
	margin-left: -17px;
	background: #fff;
	transition: all 0.3s ease;
}

.btn_spmenu::before {
	transform: translateY(-12px);
}

.btn_spmenu::after {
	transform: translateY(12px);
}

.btn_close span {
	opacity: 0;
}

.btn_close::before {
	transform: translateY(0) rotate(45deg);
}

.btn_close::after {
	transform: translateY(0) rotate(-45deg);
}
	

@media screen and (max-width: 767px){

	.main_img {
		padding-bottom: 40px;
	}
	
	header {
		height: 60px;
		padding: 0 10px;
	}

	header .logo img {
		width: 200px;
	}
	.g_navi a {
		font-size: 18px;
		padding: 15px;
		margin: 10px 0;
	}
	
	.menubtn {
		width: 60px;
		height: 60px;
	}
	.btn_contct {
		width: 60px;
		height: 60px;
	}
	.btn_contct img {
		width: 30px;
	}
	.btn_spmenu, .btn_close {
		width: 60px;
		height: 60px;
	}

	.btn_spmenu span,
	.btn_spmenu::before,
	.btn_spmenu::after,
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		width: 26px;
		top: 28px;
		margin-left: -13px;
	}
	
	.btn_spmenu::before {
		transform: translateY(-10px);
	}

	.btn_spmenu::after {
		transform: translateY(10px);
	}
	
}

/*------アニメーション-----*/

.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: all 1.0s ease;
}
.fadeIn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fi_top {
	transform: translateY(30px);
}

.fi_right {
	opacity: 0;
	visibility: hidden;
	transform: translateX(60px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}
.fi_left {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-60px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}

.fadeIn.show .fi_right, .fadeIn.show .fi_left {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.delay {
	transition-delay: 1s;
}

.threecol .first {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}

.threecol .second {
	opacity: 0;
	visibility: hidden;
	transform: translateY(80px);
	transition: all 1.0s ease;
	transition-delay: 1s;
}

.threecol .third {
	opacity: 0;
	visibility: hidden;
	transform: translateY(120px);
	transition: all 1.0s ease;
	transition-delay: 1.5s;
}

.threecol.show > div {
	opacity: 1;
	visibility: visible;
}
/*------イメージ-----*/

.box {
	display: flex;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	background-color: #000;
}
.supreme {
	width: 50%;
	height: 100%;
}
.arbol {
	width: 50%;
	height: 100%;
}
.box div a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.box div a span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
}
.box div span img {
	width: 100%;
	max-width: 326px;
	display: block;
}

.box div a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}
.box div a > img:hover {
	transform: scale(1.1);
	opacity: 0.6;
}


@media screen and (max-width: 479px){
	
.box {
	display: block;
	height: auto;
}
.supreme {
	width: 100%;
}
.arbol {
	width: 100%;
}
.box div span img {
	max-width: 240px;
}
.box div a > img:hover {
	transform: scale(1.1);
	opacity: 0.6;
}
	
}



/*------フッター------*/

footer {
	background-color: #474747;
	color: #c6c6c6;
	text-align: center;
	padding: 50px 40px;
}

footer .txt {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 20px;
	color: #c6c6c6;
}

footer img {
	width: 400px;
	margin-bottom: 30px;
	opacity: 0.7;
}

footer .zoom {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 1em;
}

footer .add {
	line-height: 1.8;
	font-size: 14px;
	margin-bottom: 2em;
}

small {
	font-size: 12px;
}


@media screen and (max-width: 767px){
	
	footer {
		padding: 40px 10px;
	}

	footer .txt {
		font-size: 18px;
		margin-bottom: 15px;
	}

	footer img {
		width: 280px;
		margin-bottom: 25px;
	}

	footer .zoom {
		font-size: 13px;
	}

	footer .add {
		font-size: 13px;
	}

	small {
		font-size: 10px;
	}
	
}
