@charset "utf-8";

/*@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf) format('opentype');
}*/

/*-----------------------------------------------
	基本設定
-----------------------------------------------*/
html {
	overflow-y: scroll;
}
body{
	color: #333;
	font-size: 12px;
	font-family: YuGothic, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: 0;
	text-align: left;
	background: #FFF;
	min-width: 1260px;
	width: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
body:not(.index){
	animation: fadeIn 1s ease 0s 1 normal;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
	animation-play-state: running;
}
body.txtBlack{
	color: #000;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
body *, body *::before, body *::after{
	box-sizing:border-box;
}
img{vertical-align: bottom;}
h1,h2,h3,h4,h5,h6{font-weight: normal;}
.fMedium h1,.fMedium h2,.fMedium h3,.fMedium h4,.fMedium h5,.fMedium h6{font-weight: 500;}
th{
	font-weight: normal;
	text-align: left;
}
.fMedium th{
	font-weight: 500;
}
.spOnly,
.brSp,
.imgSp,
.txtSp{
	display: none;
}
@media only screen and (max-width:1023px){
	body{
		min-width: 0;
	}
	.spNone,
	.brPc,
	.imgPc{
		display: none;
	}
	.spOnly{
		display: block;
	}
	.brSp,
	.imgSp,
	.txtSp{
		display: inline;
	}
	.imgR{
		width: 100%;
		height: auto;
	}
}

/* font layout */
.fBold{font-weight: bold;}
.fMedium{font-weight: 500;}
.fMartel{font-family: 'Martel Sans', sans-serif;}
.fRoboto{font-family:'Roboto', sans-serif;}

/* rollover */
.ro a:hover,
a.ro:hover,
a .ro:hover{ filter:alpha(opacity=80);opacity:0.8; }
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.ro a,
a.ro,
a .ro,
.brt a,
a.brt,
a .brt{
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.ro .no_ro a:hover,
.ro a.no_ro:hover{ filter:alpha(opacity=100);opacity:1; }
a:focus{outline:none;}
@media only screen and (max-width:1023px){
	.ro a:hover,
	a.ro:hover,
	a .ro:hover{ filter:alpha(opacity=100);opacity:1.0; }
	.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1);filter: brightness(1); }
}

/* 基本リンク設定 */
a{
	text-decoration: none;
}

/*-----------------------------------------------
	画像を枠いっぱいに表示させる
-----------------------------------------------*/
.imgFill{
	overflow:hidden;
}
.imgFill img{
	width:100%;
	height:auto;
}
.imgFillH img{
	width:auto !important;
	height:100% !important;
	position:absolute !important;
	top:50% !important;
	left:50% !important;
	max-width:none !important;
	max-height:none !important;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index:1;
}
.imgFillV img{
	width:100% !important;
	height:auto !important;
	position:absolute !important;
	top:50% !important;
	left:50% !important;
	max-width:none !important;
	max-height:none !important;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index:1;
}
@media only screen and (max-width:1023px){
	.imgFillSp{
		overflow:hidden;
	}
	.imgFillSp img{
		width:100%;
		height:auto;
	}
}

/*-----------------------------------------------
	画像を枠いっぱいに表示させる
-----------------------------------------------*/
.imgFit img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

/*-----------------------------------------------
	画像を中央揃えにする
-----------------------------------------------*/
.imgCenter{
	overflow: hidden;
}
.imgCenter img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/*-----------------------------------------------
	header
-----------------------------------------------*/
#header{
	width: 70px;
	height: 140px;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
}
.gNavClose #header{
	-webkit-animation: headerAnimationOut 0.4s ease-in-out;
	animation: headerAnimationOut 0.4s ease-in-out;
}
.gNavOpen #header{
	-webkit-animation: headerAnimationIn 0.4s ease-in-out;
	animation: headerAnimationIn 0.4s ease-in-out;
	-webkit-transform:translateX(540px);
	transform:translateX(540px);
}
@keyframes headerAnimationOut {
	from{
		-webkit-transform:translateX(540px);
		transform:translateX(540px);
	}
	to{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
}
@keyframes headerAnimationIn {
	from{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
	to{
		-webkit-transform:translateX(540px);
		transform:translateX(540px);
	}
}
#header .boxBtn{
	background: #FFF;
}
#header .boxBtn .btnHeader{
	width: 70px;
	height: 70px;
	background: #000;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
#header .boxBtn .btnFirstview{
	display: block;
	background: #B9B697;
	position: relative;
}
#header .boxBtn .btnFirstview .img{
	padding: 22px 0 0 20px;
}
#header .boxBtn .btnHeader:hover{
	filter:alpha(opacity=80);
	opacity:0.8;
}
#header .boxBtn .btnHeader .txt{
	font-weight: bold;
	font-size: 10px;
	color: #FFF;
	position: absolute;
	left: 22px;
	top: 45px;
	transform: scale(0.8);
	transform-origin: 0 0;
	-webkit-transform: scale(0.8);
	-webkit-transform-origin: 0 0;
	letter-spacing: 0.5px;
}
#header .boxBtn .btnHeader .txt .txtClose{
	display: none;
}
#header .boxBtn .btnHeader.opened .txt{
	left: 20px;
}
#header .boxBtn .btnHeader.opened .txt .txtOpen{
	display: none;
}
#header .boxBtn .btnHeader.opened .txt .txtClose{
	display: inline;
}
#header .boxBtn .btnFirstview.opened .img{
	display: none;
}
@media only screen and (max-width:1023px){
	#header{
		width: 120px;
		height: 70px;
		top: 0;
	}
	.gNavClose #header{
		-webkit-animation: headerAnimationOutSp 0.4s ease-in-out;
		animation: headerAnimationOutSp 0.4s ease-in-out;
	}
	.gNavOpen #header{
		-webkit-animation: headerAnimationInSp 0.4s ease-in-out;
		animation: headerAnimationInSp 0.4s ease-in-out;
		-webkit-transform:translateX(290px);
		transform:translateX(290px);
	}
	@keyframes headerAnimationOutSp{
		from{
			-webkit-transform:translateX(290px);
			transform:translateX(290px);
		}
		to{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
	}
	@keyframes headerAnimationInSp{
		from{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
		to{
			-webkit-transform:translateX(290px);
			transform:translateX(290px);
		}
	}
	#header .boxBtn{
		background: transparent;
	}
	#header .boxBtn .btnHeader{
		width: 60px;
		height: 60px;
		float: left;
	}
	.gNavClose #header .boxBtn .btnFirstview{
		display: block;
	}
	.gNavOpen #header .boxBtn .btnFirstview{
		display: none;
	}
	#header .boxBtn .btnFirstview .img{
		padding: 19px 0 7px 15px;
	}
	#header .boxBtn .btnFirstview .img img{
		width: auto;
		height: 28px;
	}
	#header .boxBtn .btnHeader .txt{
		left: 30px;
		top: 39px;
		-webkit-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: scale(0.8) translateX(-50%);
		transform: scale(0.8) translateX(-50%);
	}
	#header .boxBtn .btnHeader:hover{
		filter:alpha(opacity=100);
		opacity:1.0;
	}
	#header .boxBtn .btnHeader.opened .txt{
		left: 30px;
	}
}
@media only screen and (max-width:374px){
	.gNavClose #header{
		-webkit-animation: headerAnimationOutSp02 0.4s ease-in-out;
		animation: headerAnimationOutSp02 0.4s ease-in-out;
	}
	.gNavOpen #header{
		-webkit-animation: headerAnimationInSp02 0.4s ease-in-out;
		animation: headerAnimationInSp02 0.4s ease-in-out;
		-webkit-transform:translateX(250px);
		transform:translateX(250px);
	}
	@keyframes headerAnimationOutSp02{
		from{
			-webkit-transform:translateX(250px);
			transform:translateX(250px);
		}
		to{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
	}
	@keyframes headerAnimationInSp02{
		from{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
		to{
			-webkit-transform:translateX(250px);
			transform:translateX(250px);
		}
	}
}

/* btnGnavLine */
.btnGNavLine {
	height: 2px;
	overflow: hidden;
	position: absolute;
	width: 20px;
}
.btnGNavLineIn {
	width: 60px;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.btnGNavLineIn:after, .btnGNavLineIn:before {
	width: 20px;
	height: 2px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	background-color: #FFF;
}
.btnGNavLineIn:before {
	left: -40px;
}
.btnGNavLineIn:after {
	left: 0;
}
.btnGNavLine01 {
	top: 23px;
	left: 25px;
}
.btnGNavLine02 {
	top: 31px;
	left: 25px;
}
.btnGNavLineCross01, .btnGNavLineCross02 {
	top: 26px;
	left: 25px;
}
.btnGNavLineCross01 {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btnGNavLineCross02 {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.btnGNavLine {
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
.btnGNavLineIn {
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}
.btnGNavLineIn:after, .btnGNavLineIn:before {
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.btnGNavLineInCross01, .btnGNavLineInCross02 {
	-webkit-transform: translateX(-33.3%);
	transform: translateX(-33.3%);
}
.btnGNavLineIn01 {
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
}
.btnGNavLineIn02 {
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
}
.btnGNavLineIn02:after, .btnGNavLineIn02:before {
	-webkit-transition-delay: 50ms;
	transition-delay: 50ms;
}
.btnGNavLineInCross01 {
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
.btnGNavLineInCross02 {
	-webkit-transition-delay: 50ms;
	transition-delay: 50ms;
}
.btnGNavLineInCross02:after, .btnGNavLineInCross02:before {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.btnHeader.opened .btnGNavLineIn:after, .btnHeader.opened .btnGNavLineIn:before {
	background-color: #FFF;
}
.btnHeader.opened .btnGNavLineIn01, .btnHeader.opened .btnGNavLineIn02 {
	-webkit-transform: translateX(33.3%);
	transform: translateX(33.3%);
}
.btnHeader.opened .btnGNavLineInCross01, .btnHeader.opened .btnGNavLineInCross02 {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.btnHeader.opened .btnGNavLineIn01 {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.btnHeader.opened .btnGNavLineIn02 {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.btnHeader.opened .btnGNavLineInCross01 {
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
}
.btnHeader.opened .btnGNavLineInCross02 {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.btnHeader:hover .btnGNavLineIn:after, .btnHeader:hover .btnGNavLineIn:before {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}
.btnHeader:hover .btnGNavLineIn01:after, .btnHeader:hover .btnGNavLineIn01:before, .btnHeader:hover .btnGNavLineIn02:after, .btnHeader:hover .btnGNavLineIn02:before{
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}
.btnHeader:hover .btnGNavLineInCross01:after, .btnHeader:hover .btnGNavLineInCross01:before, .btnHeader:hover .btnGNavLineInCross02:after, .btnHeader:hover .btnGNavLineInCross02:before {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.btnHeader.opened:hover .btnGNavLineInCross01:after, .btnHeader.opened:hover .btnGNavLineInCross01:before, .btnHeader.opened:hover .btnGNavLineInCross02:after, .btnHeader.opened:hover .btnGNavLineInCross02:before {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}
.btnHeader.opened:hover .btnGNavLineIn01:after, .btnHeader.opened:hover .btnGNavLineIn01:before, .btnHeader.opened:hover .btnGNavLineIn02:after, .btnHeader.opened:hover .btnGNavLineIn02:before {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
@media only screen and (max-width:1023px){
	.btnGNavLine {
		width: 20px;
	}
	.btnGNavLine01 {
		top: 21px;
		left: 20px;
	}
	.btnGNavLine02 {
		top: 27px;
		left: 20px;
	}
	.btnGNavLineCross01, .btnGNavLineCross02 {
		top: 23px;
		left: 20px;
	}
}

/*-----------------------------------------------
	gNav
-----------------------------------------------*/
#gNav{
	display: none;
	width: 0;
	z-index: 1500;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
}
#gNav .boxTable{
	width: 0;
}
.gNavOpen #gNav,
.gNavClose #gNav{
	display: block;
	width: 540px;
}
.gNavOpen #gNav .boxMenu,
.gNavClose #gNav .boxMenu{
	height: 100%;
	background: #000;
	overflow: auto;
}
.gNavClose #gNav .boxMenu{
	-webkit-animation: menuAnimationOut 0.4s ease-in-out;
	animation:menuAnimationOut 0.4s ease-in-out;
}
.gNavOpen #gNav .boxMenu{
	-webkit-animation: menuAnimationIn 0.4s ease-in-out;
	animation:menuAnimationIn 0.4s ease-in-out;
}
@keyframes menuAnimationOut {
	from{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
	to{
		-webkit-transform:translateX(-540px);
		transform:translateX(-540px);
	}
}
@keyframes menuAnimationIn {
	from{
		-webkit-transform:translateX(-540px);
		transform:translateX(-540px);
	}
	to{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
}
#gNav .boxMenu .wrapper{
	width: 350px;
	margin: 0 auto;
	padding: 110px 0 0 5px;
}
#gNav .boxMenu .gNavRo{
	display: inline-block;
	position: relative;
}
#gNav .boxMenu .gNavRo::before{
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.2s;
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: right top;
	-webkit-transition: -webkit-transform 0.2s;
}
#gNav .boxMenu .boxBnr .gNavRo::before{
	bottom: 0;
}
#gNav .boxMenu .gNavRo:hover::before{
	transform-origin: left top;
	transform: scale(1, 1);
	-webkit-transform-origin: left top;
	-webkit-transform: scale(1, 1);
}
#gNav .boxMenu .boxList{
	padding-bottom: 30px;
}
#gNav .boxMenu .boxList .item{
	margin-bottom: 48px;
}
#gNav .boxMenu .boxList .item .itemIn{
	color: #FFF;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 1px;
}
#gNav .boxMenu .boxList .item .boxSubList{
	font-size: 0;
	padding: 19px 0 4px;
}
#gNav .boxMenu .boxList .item .boxSubList .subItem{
	display: inline-block;
	margin-right: 30px;
}
#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(-n+4){
	margin-bottom: 15px;
}
#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(4),
#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(7){
	margin-right: 0;
}
#gNav .boxMenu .boxList .item .boxSubList .subItem .subItemIn{
	font-size: 13px;
	color: #FFF;
	letter-spacing: 0.25px;
}
#gNav .boxMenu .boxList .item .boxSubList .subItem .subItemIn .num{
	display: inline-block;
	font-size: 11px;
	color: #FFF;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: #E7001B;
	border-radius: 10px;
	position: absolute;
	right: -16px;
	top: -10px;
}
#gNav .boxMenu .boxBnr{
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}
#gNav .boxMenu .boxBnr .txtOfficial{
	/*border-top: 1px solid #666;*/
	border-bottom: 1px solid #666;
	padding: 24px 0 14px;
}
#gNav .boxMenu .boxBnr .txtOfficial a{
	color: #FFF;
	font-size: 13px;
	letter-spacing: 1.25px;
}
#gNav .boxMenu .boxBnr .txtInstagram{
	padding: 21px 0 15px;
}
#gNav .boxMenu .boxBnr .txtInstagram a{
	color: #FFF;
	font-size: 13px;
	letter-spacing: 1.25px;
}
#gNav .boxMenu .boxBnr .txtInstagram a img{
	vertical-align: -2px;
	margin-right: 6px;
}
@media only screen and (max-width:1023px){
	.gNavOpen #gNav{
		width: 100%;
	}
	.gNavOpen #gNav,
	.gNavClose #gNav{
		display: block;
		width: 290px;
	}
	.gNavClose #gNav .boxMenu{
		-webkit-animation: menuAnimationOutSp 0.4s ease-in-out;
		animation:menuAnimationOutSp 0.4s ease-in-out;
	}
	.gNavOpen #gNav .boxMenu{
		-webkit-animation: menuAnimationInSp 0.4s ease-in-out;
		animation:menuAnimationInSp 0.4s ease-in-out;
	}
	@keyframes menuAnimationOutSp{
		from{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
		to{
			-webkit-transform:translateX(-290px);
			transform:translateX(-290px);
		}
	}
	@keyframes menuAnimationInSp{
		from{
			-webkit-transform:translateX(-290px);
			transform:translateX(-290px);
		}
		to{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
	}
	#gNav .boxMenu .wrapper{
		width: 190px;
		margin: 0 auto;
		padding: 87px 0 0 0;
	}
	#gNav .boxMenu .gNavRo::before{
		display: none;
	}
	#gNav .boxMenu .boxList{
		padding-bottom: 0;
	}
	#gNav .boxMenu .boxList .item{
		margin-bottom: 52px;
	}
	#gNav .boxMenu .boxList .item .itemIn{
		font-size: 14px;
		letter-spacing: 0.5px;
	}
	#gNav .boxMenu .boxList .item .itemIn.spNone{
		display: none;
	}
	#gNav .boxMenu .boxList .item .boxSubList{
		display: none;
		font-size: 0;
		padding: 17px 0 4px;
	}
	#gNav .boxMenu .boxList .item .boxSubList.opened{
		display: block;
	}
	#gNav .boxMenu .boxList .item .boxSubList .subItem,
	#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(-n+4),
	#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(4),
	#gNav .boxMenu .boxList .item .boxSubList .subItem:nth-child(7){
		display: block;
		opacity: 0;
		margin: 0 0 21px 0;
	}
	#gNav .boxMenu .boxList .item .boxSubList .subItem:last-child{
		margin-bottom: 0;
	}
	#gNav .boxMenu .boxList .item .boxSubList .subItem .subItemIn{
		font-size: 12px;
		color: #FFF;
		letter-spacing: 0.25px;
	}
	#gNav .boxMenu .boxList .item .boxSubList .subItem .subItemIn .num{
		font-size: 10px;
		width: 15px;
		height: 15px;
		line-height: 15px;
		border-radius: 7.5px;
		position: absolute;
		right: -12px;
		top: -8px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}
	#gNav .boxMenu .boxBnr .txtOfficial{
		padding: 20px 0 14px;
	}
	#gNav .boxMenu .boxBnr .txtOfficial a{
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 1.25px;
	}
	#gNav .boxMenu .boxBnr .txtInstagram{
		padding: 30px 0 26px;
	}
	#gNav .boxMenu .boxBnr .txtInstagram a{
		color: #FFF;
		font-size: 13px;
		letter-spacing: 0.75px;
	}
}
@media only screen and (max-width:374px){
	.gNavOpen #gNav,
	.gNavClose #gNav{
		width: 250px;
		overflow: hidden;
	}
	.gNavClose #gNav .boxMenu{
		-webkit-animation: menuAnimationOutSp02 0.4s ease-in-out;
		animation:menuAnimationOutSp02 0.4s ease-in-out;
	}
	.gNavOpen #gNav .boxMenu{
		-webkit-animation: menuAnimationInSp02 0.4s ease-in-out;
		animation:menuAnimationInSp02 0.4s ease-in-out;
	}
	@keyframes menuAnimationOutSp02{
		from{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
		to{
			-webkit-transform:translateX(-270px);
			transform:translateX(-270px);
		}
	}
	@keyframes menuAnimationInSp02{
		from{
			-webkit-transform:translateX(-270px);
			transform:translateX(-270px);
		}
		to{
			-webkit-transform:translateX(0);
			transform:translateX(0);
		}
	}
	#gNav .boxMenu{
		width: 250px;
		padding-bottom: 30px;
	}
	#gNav .boxMenu .wrapper{
		padding-top: 67px;
	}
}

/*-----------------------------------------------
	lineupNav
-----------------------------------------------*/
#lineupNav{
	background: #EDEDE5;
}
#lineupNav .wrapper{
	width: 1200px;
	margin: 0 auto;
}
#lineupNav .tit{
	color: #000;
	font-size: 22px;
	line-height: 70px;
	font-weight: bold;
	float: left;
	padding-left: 50px;
	letter-spacing: 2px;
}
#lineupNav .boxList{
	width: 670px;
	float: right;
	font-size: 0;
	text-align: right;
}
#lineupNav .boxList .item{
	display: inline-block;
	vertical-align: top;
	padding: 27px 34.5px 32px 0;
}
#lineupNav .boxList .item:last-child{
	padding-right: 0;
}
#lineupNav .boxList .item a{
	color: #000;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 2px;
}

/*-----------------------------------------------
	contents
-----------------------------------------------*/
/* loader */
#loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000;
	z-index: 99999;
}
#loader {
	position: absolute;
	top: calc(50% - 112.5px);
	left: calc(50% - 150px);
	width: 300px;
	height: 225px;
	color: #FFF;
}

/* jsHide */
.jsHide{
	opacity: 0;
	-webkit-transform: translate(0px, 100px);
	transform: translate(0px, 100px);
	-webkit-transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
}
.jsHide.jsShow{
	-webkit-transform: none;
	transform: none;
	opacity: 1;
}
@media only screen and (max-width:1024px){
	.jsHide.jsShowSp{
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

/* jsLink */
.jsLink{
	cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

/*-----------------------------------------------
	pnkz
-----------------------------------------------*/
[id^="pnkz"] .wrapper{
	width:1200px;
	margin:0 auto;
	padding:0 50px;
	color:#666;
}
[id^="pnkz"].pnkzForm .wrapper{
	width:780px;
	padding:0;
}
[id^="pnkz"] li{
	display:inline-block;
	vertical-align:top;
	padding:20px 0 0;
	line-height:1.5;
	letter-spacing:0.06em;
	font-size:12px;
	font-weight:200;
}
[id^="pnkz"] li::before{
	content:">";
	display:inline-block;
	padding:0 3px;
}
[id^="pnkz"] li:first-child::before{
	display:none;
}
[id^="pnkz"] li a{
	color:#666;
}
[id^="pnkz"] .swiper-wrapper{
	white-space:nowrap !important;
}
[id^="pnkz"] .swiper-slide{
	display:inline-block;
	float:none !important;
	cursor:default;
}
@media only screen and (max-width:767px){
	[id^="pnkz"]{
		width:100%;
		overflow:hidden;
	}
	[id^="pnkz"] .wrapper{
		height:auto;
		width:100%;
		padding:0;
	}
	[id^="pnkz"] li{
		max-width:150px;
		overflow:hidden;
		white-space:nowrap;
		text-overflow:ellipsis;
		padding:5px 0;
		letter-spacing:0.5px;
	}
	[id^="pnkz"] li:first-child{
		padding-left:4%;
	}
	[id^="pnkz"] li:last-child{
		max-width:100%;
	}
}

/*-----------------------------------------------
	main
-----------------------------------------------*/
/* wrapper1200 */
.wrapper1200{
	width: 1200px;
	margin: 0 auto;
}
@media only screen and (max-width:1023px){
	.wrapper1200{
		width: 86.67%;
	}
}

/* wrapper1100 */
.wrapper1100{
	width: 1100px;
	margin: 0 auto;
}
@media only screen and (max-width:1023px){
	.wrapper1100{
		width: 100%;
	}
}

/* popup */
#popup{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
}
#popup .overlay{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	position: absolute;
	top: 0;
	left: 0;
}
#popup .popupContainer{
	display: table;
	width: 100%;
	height: 100%;
}
#popup .popupContents{
	display: table-cell;
	vertical-align: middle;
}
#popup .popupWrapper{
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width:1023px){
	#popup .popupWrapper{
		padding: 20px 0;
	}
}


/* secEngTit */
.secEngTit{
	font-size: 32px;
	text-align: center;
	color: #000;
	margin-top: 131px;
	padding-bottom: 26px;
	letter-spacing: 1.5px;
	position: relative;
	font-weight: 500;
}
.secEngTit.fMartel{
	font-weight: bold;
	font-size: 40px;
	padding-bottom: 20px;
	letter-spacing: 2px;
}
.secEngTit::after{
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: calc(50% - 25px);
}
@media only screen and (max-width:1023px){
	.secEngTit{
		font-size: 18px;
		margin-top: 101px;
		padding-bottom: 13px;
		letter-spacing: 1px;
	}
	.secEngTit.fMartel{
		font-size: 20px;
		padding-bottom: 10px;
	}
	.secEngTit::after{
		width: 25px;
		left: calc(50% - 12.5px);
	}
}

/* secCmnTit */
.secCmnTit{
	text-align: center;
	color: #000;
	padding-bottom: 30px;
	position: relative;
	margin: 64px 0 69px;
}
.secCmnTit::after{
	content: "";
	width: 66px;
	height: 1px;
	background: #B2B2B2;
	display: block;
	position: absolute;
	bottom: 0;
	left: calc(50% - 33px);
}
.secCmnTit .eng{
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 5px;
}
.secCmnTit .jpn{
	font-size: 15px;
	font-weight: 500;
	margin-top: 25px;
	letter-spacing: 5px;
}
@media only screen and (max-width:1023px){
	.secCmnTit{
		padding-bottom: 15px;
		margin: 100px 0 35px;
	}
	.secCmnTit::after{
		width: 33px;
		left: calc(50% - 16.5px);
	}
	.secCmnTit .eng{
		font-size: 18px;
		letter-spacing: 2.5px;
	}
	.secCmnTit .jpn{
		font-size: 12px;
		margin-top: 12px;
		letter-spacing: 2.5px;
	}
}

/* secCmnPrivacy */
.secCmnPrivacy{
	border: 1px solid #000;
	background: #FFF;
}
.secCmnPrivacy .boxSlide .boxItem .txt .mt01,
.secCmnPrivacy .boxSlide .boxItem .txt .mt02{
	display: inline-block;
	margin-top: 10px;
}
.secCmnPrivacy .boxSlide .boxItem .txt .indent01{
	display: inline-block;
	margin-left: 22px;
}
.secCmnPrivacy .boxSlide .boxItem .txt .indent02{
	display: inline-block;
	margin-left: 51px;
}
@media only screen and (min-width:1024px){
	.secCmnPrivacy{
		width: 610px;
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 0.5px;
		padding: 8px 8px 8px 19px;
	}
	.secCmnPrivacy .boxScroll{
		height: 182px;
	}
	.secCmnPrivacy .titSlide{
		padding-top: 7px;
	}
	.secCmnPrivacy .txtSlide:last-child{
		margin: 20px 0 28px;
	}
	.secCmnPrivacy .boxSlide{
		padding-right: 26px;
	}
	.secCmnPrivacy .boxSlide .boxItem:last-child{
		padding-bottom: 14px;
	}
	.secCmnPrivacy .boxSlide .boxItem .tit{
		margin-top: 20px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .btmRow{
		display: block;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width:1023px){
	.secCmnPrivacy .titSlide{
		width: 100%;
		height: 45px;
		position: relative;
	}
	.secCmnPrivacy .titSlide .tit{
		line-height: 43px;
		font-size: 13px;
		text-align: center;
		letter-spacing: 1px;
	}
	.secCmnPrivacy .titSlide .ico{
		width: 13px;
		height: 13px;
		position: absolute;
		right: 4.5%;
		top: 15px;
	}
	.secCmnPrivacy .titSlide .ico::before,
	.secCmnPrivacy .titSlide .ico::after{
		content: "";
		position: absolute;
		left: 0;
		background-color: #000;
		transition: all 0.3s;
	}
	.secCmnPrivacy .titSlide .ico::before{
		width: 100%;
		height: 1px;
		left: 0;
		top: 6px;
	}
	.secCmnPrivacy .titSlide .ico::after{
		width: 1px;
		height: 100%;
		left: 6px;
		top: 0;
	}
	.secCmnPrivacy .titSlide.opened .ico::before,
	.secCmnPrivacy .titSlide.opened .ico::after{
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.secCmnPrivacy .titSlide.opened{
		border-bottom: none;
	}
	.secCmnPrivacy .boxSlide{
		display: none;
		padding: 0 5.88%;
	}
	.secCmnPrivacy .boxSlide .txtSlide{
		font-size: 11px;
		line-height: 20px;
		color: #000;
		margin-top: 28px;
		letter-spacing: 0.5px;
		border-bottom: 1px solid #000;
		padding-bottom: 30px;
		text-align: center;
	}
	.secCmnPrivacy .boxSlide .txtSlide:last-child{
		border-bottom: none;
		padding-bottom: 73px;
	}
	.secCmnPrivacy .boxSlide .boxItem{
		border-bottom: 1px solid #000;
		padding-bottom: 30px;
	}
	.secCmnPrivacy .boxSlide .boxItem:last-child{
		border-bottom: none;
		padding-bottom: 44px;
	}
	.secCmnPrivacy .boxSlide .boxItem .tit{
		margin-top: 34px;
		font-size: 11px;
		text-align: center;
		color: #000;
		letter-spacing: 0.5px;
		font-weight: 500;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt{
		font-size: 11px;
		line-height: 20px;
		color: #000;
		margin-top: 21px;
		letter-spacing: 0.5px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt:first-child{
		margin-top: 34px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .btmRow{
		display: block;
		margin-bottom: 20px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .mt01{
		margin-top: 0;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .mt02{
		margin-top: 20px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .indent01{
		margin-left: 11px;
	}
	.secCmnPrivacy .boxSlide .boxItem .txt .indent02{
		margin-left: 27px;
	}
}

/* secCmnPurpose */
.secCmnPurpose{
	padding: 10px 0 0;
}
.secCmnPurpose .boxItem{
	padding: 10px 0 14px;
}
.secCmnPurpose .boxItem dl dt,
.secCmnPurpose .boxItem dl dd{
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.5px;
}
@media only screen and (max-width:1023px){
	.secCmnPurpose{
		border-bottom: 1px solid #000;
	}
	.secCmnPurpose .boxItem{
		padding: 15px 0 28px;
	}
	.secCmnPurpose .boxItem:first-child{
		padding-bottom: 45px;
	}
	.secCmnPurpose .boxItem dl dt,
	.secCmnPurpose .boxItem dl dd{
		font-size: 11px;
		line-height: 20px;
		letter-spacing: 0.25px;
	}
	.secCmnPurpose .boxItem dl dt{
		margin: 14px 0 5px;
	}
	.secCmnPurpose .boxItem dl:first-child dt{
		margin-bottom: 0;
	}
	.secCmnPurpose .boxItem dl.mt01 dt{
		margin-top: 24px;
	}
	.secCmnPurpose .boxItem dl.mt02 dt{
		margin-top: 19px;
	}
}

/*-----------------------------------------------
	footer
-----------------------------------------------*/
#footer{
	background: #C0BEA1;
	padding-bottom: 6px;
}
#footer .wrapper{
	width: 1042px;
	margin: 0 auto;
	padding: 56px 0 101px;
}
#footer .logo{
	width: 165px;
	float: left;
	margin-top: 48px;
}
#footer .boxRight{
	width: 510px;
	float: right;
	position: relative;
	padding-top: 57px;
}
#footer .boxRight .boxMenu01{
	width: 467px;
	font-size: 0;
	border-top: 1px solid #FFF;
	padding-top: 17px;
}
#footer .boxRight .boxMenu01 .item{
	display: inline-block;
	margin-right: 25px;
}
#footer .boxRight .boxMenu01 .item:nth-child(5){
	margin-right: 0;
}
#footer .boxRight .boxMenu01 .item.spOnly{
	display: none;
}
#footer .boxRight .boxMenu01 .item:nth-child(7),
#footer .boxRight .boxMenu01 .item:nth-child(8){
	margin-top: 10px;
}
#footer .boxRight .boxMenu01 .item:nth-child(7){
	margin-right: 20px;
}
#footer .boxRight .boxMenu01 .item.spOnly{
	display: none;
}
#footer .boxRight .boxMenu01 .item a{
	display: inline-block;
	overflow: hidden;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 1.25px;
	padding: 1px 0 2px;
	position: relative;
}
#footer .boxRight .boxMenu01 .item:nth-child(7) a,
#footer .boxRight .boxMenu01 .item:nth-child(8) a{
	font-size: 10px;
	letter-spacing: 0.5px;
}
#footer .boxRight .boxMenu02{
	width: 465px;
	font-size: 0;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin-top: 15px;
	position: relative;
}
#footer .boxRight .boxMenu02 .boxList li{
	display: inline-block;
	padding: 23px 21px 16px 0;
}
#footer .boxRight .boxMenu02 .boxList li a{
	display: inline-block;
	height: 12px;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	letter-spacing: 0.75px;
	position: relative;
	padding-top: 1px;
	overflow: hidden;
}
#footer .boxRight .boxMenu01 .item a::before,
#footer .boxRight .boxMenu02 .boxList li a::before{
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 1px;
	background: #FFF;
	-webkit-transform:translateX(-110%);
	transform:translateX(-110%);
}
#footer .boxRight .boxMenu01 .item a.mouseOver::before,
#footer .boxRight .boxMenu02 .boxList li a.mouseOver::before{
	-webkit-animation: footerItemAnimationIn 0.2s ease-in-out forwards;
	animation:footerItemAnimationIn 0.2s ease-in-out forwards;
}
#footer .boxRight .boxMenu01 .item a.mouseLeave::before,
#footer .boxRight .boxMenu02 .boxList li a.mouseLeave::before{
	-webkit-animation: footerItemAnimationOut 0.2s ease-in-out forwards;
	animation:footerItemAnimationOut 0.2s ease-in-out forwards;
}
@keyframes footerItemAnimationIn {
	from{
		-webkit-transform:translateX(-110%);
		transform:translateX(-110%);
	}
	to{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
}
@keyframes footerItemAnimationOut {
	from{
		-webkit-transform:translateX(0);
		transform:translateX(0);
	}
	to{
		-webkit-transform:translateX(110%);
		transform:translateX(110%);
	}
}
#footer .boxRight .boxMenu03 .tit{
	margin-top: 88px;
	font-weight: bold;
	font-size: 10px;
	color: #FFF;
	letter-spacing: 0.75px;
}
#footer .boxRight .boxMenu03 .boxList{
	font-size: 0;
	margin: 10px 0 0 0;
}
#footer .boxRight .boxMenu03 .boxList li{
	display: inline-block;
	margin-right: 3px;
}
#footer .boxRight .boxMenu03 .boxList li a{
	display: block;
	width: 150px;
	padding: 11px 0 7px;
	border: 1px solid #FFF;
	font-size: 12px;
	color: #FFF;
	border-radius: 15px;
	font-weight: bold;
	text-align: center;
	margin-right: 5px;
	letter-spacing: 0.5px;
}
#footer .boxRight .boxMenu03 .boxList li a:hover{
	background: #FFF;
	color: #B8B597;
}
#footer .boxRight .btnTop{
	display: block;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 57px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 10px;
	letter-spacing: 1px;
	color: #FFF;
	padding-bottom: 50px;
	-webkit-font-smoothing: antialiased;
}
#footer .boxRight .btnTop::before{
	content: "";
	display: block;
	width: 1px;
	height: 28px;
	background: #FFF;
	position: absolute;
	bottom: 0;
	left: calc(50% + 0.5px);
	-webkit-transition: height 0.3s ease-in-out;
	transition: height 0.3s ease-in-out;
}
#footer .boxRight .btnTop::after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	bottom: 23px;
	left: calc(50% - 1.5px);
	-webkit-transition: bottom 0.3s ease-in-out;
	transition: bottom 0.3s ease-in-out;
}
#footer .boxRight .btnTop:hover::before{
	height: 38px;
}
#footer .boxRight .btnTop:hover::after{
	bottom: 33px;
}
#footer .txtCopy{
	width: 1042px;
	margin: 0 auto;
	font-size: 10px;
	color: #FFF;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	letter-spacing: 1px;
}
@media only screen and (max-width:1024px){
	#footer .wrapper,
	#footer .txtCopy{
		width: 88.28%;
	}
	#footer .logo{
		width: 43.89%;
	}
	#footer .boxRight{
		width: 56.11%;
	}
	#footer .boxRight .boxMenu01{
		width: 95%;
	}
	#footer .boxRight .boxMenu02{
		width: 95%;
	}
	#footer .boxRight .boxMenu03 .boxList li{
		width: 30%;
	}
	#footer .boxRight .boxMenu03 .boxList li a{
		width: 100%;
		font-size: 11px;
	}
}
@media only screen and (max-width:1023px){
	#footer{
		padding-bottom: 0;
	}
	#footer .wrapper{
		width: 295px;
		padding: 51px 0 61px;
	}
	#footer .logo{
		width: 56px;
		margin-top: 2px;
	}
	#footer .boxRight{
		width: 187px;
		padding-top: 0;
	}
	#footer .boxRight .boxMenu01{
		width: 100%;
		border-top: none;
		padding-top: 0;
	}
	#footer .boxRight .boxMenu01 .item{
		margin-right: 0;
	}
	#footer .boxRight .boxMenu01 .item:first-child{
		margin-right: 14px;
	}
	#footer .boxRight .boxMenu01 .item a{
		height: auto;
		line-height: 24px;
		letter-spacing: 0;
		padding-top: 0;
	}
	#footer .boxRight .boxMenu01 .item:nth-child(2){
		margin-right: 0;
	}
	#footer .boxRight .boxMenu01 .item:nth-child(4){
		margin-right: 28px;
	}
	#footer .boxRight .boxMenu01 .item:nth-child(7),
	#footer .boxRight .boxMenu01 .item:nth-child(8){
		margin-top: 0;
		-webkit-transform: scale(0.9);
		-webkit-transform-origin: left top;
		transform: scale(0.9);
		transform-origin: left top;
	}
	#footer .boxRight .boxMenu01 .item:nth-child(7){
		margin-right: 5px;
	}
	#footer .boxRight .boxMenu02{
		width: 100%;
		margin-top: 8px;
		border-bottom: none;
	}
	#footer .boxRight .boxMenu02 .boxList li{
		display: inline-block;
		padding: 14px 21px 0 0;
	}
	#footer .boxRight .boxMenu02 .boxList li a{
		height: auto;
		letter-spacing: 0.5px;
		padding-top: 0;
	}
	#footer .boxRight .boxMenu01 .item a::before,
	#footer .boxRight .boxMenu02 .boxList li a::before{
		display: none;
	}
	#footer .boxRight .boxMenu03 .tit{
		margin-top: 88px;
		font-weight: bold;
		font-size: 10px;
		color: #FFF;
		letter-spacing: -0.25px;
	}
	#footer .boxRight .boxMenu03 .boxList{
		font-size: 0;
		margin: 10px 0 0 0;
	}
	#footer .boxRight .btnTop{
		display: none;
	}
	#footer .txtCopy{
		width: 100%;
		margin-top: 3px;
		white-space: nowrap;
		letter-spacing: 0;
		-webkit-transform: scale(0.78);
		transform: scale(0.78);
	}
}
