@charset "UTF-8";

/* *******************************************************************************************
* 
*	Common
*
******************************************************************************************* */

.pc{ display: block;}
.sp{ display: none;}
.pcInline{ display: inline-block;}
.spInline{ display: none;}
.en{
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 500;
}
#al{
	min-width: 1080px;
}

@media screen and (max-width : 768px){
	.pc{ display: none;}
	.sp{ display: block;}
	.pcInline{ display: none;}
	.spInline{ display: inline-block;}
	#al{
		min-width: 0;
	}
}

/* -------------------------------------------------------------------------------------------
*
* ヘッダー 
*
* ----------------------------------------------------------------------------------------- */

.alHeader{
	position: relative;
	width: 100%;
	height: 600px;
}
.alHeader_logo{
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	margin: auto;
	width: 149px;
	z-index: 100;
}
.alHeader_ttl{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	text-align: center;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.alHeader_ttl_en{
	margin-bottom: 40px;
	font-size: 88px;
	line-height: 1em;
	letter-spacing: 0.04em;
	font-weight: 500;
}
.alHeader_ttl_jp{
	font-size: 16px;
	line-height: 1em;
	letter-spacing: 0.06em;
	font-weight: 600;
}
.alHeader_ttl_catch{
	position: absolute;
	top: 40px;
	left: 50%;
}
.alHeader_bar{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 960px;
	height: 64px;
	background: #fff;
	overflow: hidden;
	z-index: 80;
}
.mode-night .alHeader_bar{
	background: #1a1a1a;
}

/* ----------------------------- PC グローバルナビ ----------------------------- */

.pcNav{
	display: flex;
	align-items: center;
	background: #af1930;
}
.pcNav_item{
	position: relative;
	width: 20%;
}
.pcNav_item:after{
	position: absolute;
	content: '';
	top: 50%;
	right: 0;
	width: 1px;
	height: 24px;
	margin-top: -12px;
	background: rgba(0,0,0,.2);
}
.pcNav_item a{
	position: relative;
	display: block;
	width: 100%;
	height: 64px;
	color: #fff;
	font-size: 20px;
	line-height: 64px;
	letter-spacing: 0.04em;
	text-align: center;
	background: #af1930;
	overflow: hidden;
}
.pcNav_item.current a{
	background: #1a1a1a;
	-webkit-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.mode-night .pcNav_item.current a{
	color: #000;
	background: #fff;
}
.pcNav_item a:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	background: #ed1537;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform: translate(-50%, -50%) scale(0.1);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	z-index: 5;
}
.pcNav_item a:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.pcNav_item.current a:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(0.1);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
}
.pcNav_item a span{
	position: relative;
	z-index: 10;
}
#sidr{
	display: none;
}

/* ----------------------------- DAY/NIGHTボタン ----------------------------- */

.alHeader_switch{
	position: fixed;
	top: 50%;
	right: 0;
	width: 39px;
	background: #fff;
	border: 1px solid rgba(128,128,128,.2);
	border-right: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 200;
}
.mode-night .alHeader_switch{
	background: #1a1a1a;
}
.switch_btn{
	position: relative;
	display: block;
	height: 135px;
}
.switch_btn_icon-day{
	position: absolute;
	top: 14px;
	left: 0;
	width: 100%;
	height: 18px;
	background: url(../img/common/icon_day.png) center 0 no-repeat;
	background-size: 18px auto;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.switch_btn_icon-night{
	position: absolute;
	bottom: 18px;
	left: 0;
	width: 100%;
	height: 12px;
	background: url(../img/common/icon_night.png) center 0 no-repeat;
	background-size: 12px auto;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.mode-night .switch_btn_icon-night{
	background: url(../img/common/icon_night_wt.png) center 0 no-repeat;
	background-size: 12px auto;
}
.switch_btn_bar{
	position: absolute;
	top: 43px;
	left: 13px;
	width: 12px;
	height: 48px;
	background: #1a1a1a;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.mode-night .switch_btn_bar{
	background: #fff;
}
.switch_btn_bar:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 2px;
	margin-top: -11px;
	width: 8px;
	height: 22px;
	background: #df1232;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.switch_btn:hover .switch_btn_bar:after{
	left: 0;
	width: 12px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background: #ed1537;
}
.mode-day .switch_btn_bar:after{
	top: 2px;
	margin-top: 0;
}
.mode-night .switch_btn_bar:after{
	top: 24px;
	margin-top: 0;
}
.mode-day .switch_btn:hover .switch_btn_bar:after{
	top: 0;
	height: 30px;
}
.mode-night .switch_btn:hover .switch_btn_bar:after{
	top: 18px;
	height: 30px;
}
.mode-day .switch_btn:hover .switch_btn_icon-day{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}
.mode-day .switch_btn:hover .switch_btn_icon-night{
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.mode-night .switch_btn:hover .switch_btn_icon-night{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}
.mode-night .switch_btn:hover .switch_btn_icon-day{
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

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

	#overlay{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.5);
		z-index: 998;
		cursor: pointer;
	}

	.alHeader_logo{
		top: 24px;
		width: 75px;
	}
	.alHeader{
		height: 375px;
	}
	.alHeader_ttl_en{
		margin-bottom: 33px;
		font-size: 66px;
		line-height: 1em;
	}
	.alHeader_ttl_jp{
		font-size: 12px;
		line-height: 1em;
	}
	.alHeader_bar{
		display: none;
	}

	/* ----------------------------- SP グローバルナビ ----------------------------- */
	
	#spNav{
		position: fixed;
		top: 0;
		right: 48px;
		width: 48px;
		height: 48px;
		background: #af1930;
		z-index: 9999;
	}
	.spNav_top,.spNav_mid,.spNav_btm{
		display: block;
		position: absolute;
		left: 17px;
		width: 14px;
		height: 2px;
		background: #fff;
		-webkit-transition: all .4s ease;
		transition: all .4s ease;
	}
	.spNav_top{
		top: 16px;
	}
	.spNav_mid{
		top: 23px;
	}
	.spNav_btm{
		top: 30px;
	}
	.nav-active .spNav_top{
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin: 7px 0 0 -3px;
		width: 20px;
	}
	.nav-active .spNav_mid{
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: 0 0 0 -3px;
		width: 20px;
	}
	.nav-active .spNav_btm{
		opacity: 0;
		margin: 5px 0 0 0;
	}

	/* ----------------------------- SP DAY/NIGHTボタン ----------------------------- */

	.spSwitch{
		position: fixed;
		top: 0;
		right: 0;
		width: 48px;
		height: 48px;
		overflow: hidden;
		z-index: 9999;
	}
	.switch_btn_sp{
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		width: 48px;
		height: 48px;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	.mode-night .switch_btn_sp{
		top: -48px;
	}
	.switch_btn_sp_icon-day{
		position: absolute;
		top: 0;
		left: 0;
		width: 48px;
		height: 48px;
		background: #fff url(../img/common/icon_day.png) center center no-repeat;
		background-size: 20px auto;
	}
	.switch_btn_sp_icon-night{
		position: absolute;
		top: 48px;
		left: 0;
		width: 48px;
		height: 48px;
		background: #1a1a1a url(../img/common/icon_night_red.png) center center no-repeat;
		background-size: 14px auto;
	}

	/* ----------------------------- SP メニュー ----------------------------- */

	.sidr{
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		width: 295px;
		height: 100%;
		overflow-x: none;
		overflow-y: auto;
		background: #af1930;
		z-index: 999;
	}
	.sidr.right{
		left: auto;
		right: -295px;
	}
	.spMenu{
		padding-top: 48px;
	}
	.spMenu_list{
		border-top: 1px solid rgba(0,0,0,.2);
	}
	.spMenu_list_item{
		border-bottom: 1px solid rgba(0,0,0,.2);
	}
	.spMenu_btn{
		position: relative;
		display: block;
		padding: 17px 0;
	}
	.spMenu_btn:before{
		position: absolute;
		content: '';
		top: 0;
		right: 17px;
		width: 1px;
		height: 100%;
		background: rgba(0,0,0,.2);
		z-index: 4;
	}
	.spMenu_btn_txt{
		display: block;
		padding: 0 30px;
		color: #fff;
		font-size: 24px;
		line-height: 1em;
		letter-spacing: 0.04em;
	}
	.spMenu_btn_arrow{
		position: absolute;
		display: block;
		top: 50%;
		right: 7px;
		width: 20px;
		height: 7px;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		z-index: 10;
		overflow: hidden;
	}
	.spMenu_list_sub{
		position: relative;
	}
	.spMenu_list_sub:before{
		position: absolute;
		content: '';
		top: 0;
		right: 17px;
		width: 1px;
		height: 100%;
		background: rgba(0,0,0,.2);
		z-index: 4;
	}
	.spMenu_sub_btn{
		display: block;
		padding: 14px 40px;
		color: #fff;
		font-size: 12px;
		line-height: 1em;
		letter-spacing: 0.06em;
		font-weight: 600;
	}
	.spMenu_list_sub_item:first-child .spMenu_sub_btn{
		padding-top: 4px;
	}
	.spMenu_list_sub_item:last-child .spMenu_sub_btn{
		padding-bottom: 28px;
	}
}

/* -------------------------------------------------------------------------------------------
*
* メインコンテンツ 
*
* ----------------------------------------------------------------------------------------- */

/*
最小：1040px
最大：1280px
*/

.mode-day{
	background: #fff;
}
.mode-night{
	background: #1a1a1a;
}
.mode-night .alMain{
	color: #fff;
}
.t404{
	padding: 180px 0;
}
.t404_ttl{
	margin-bottom: 40px;
	font-size: 88px;
	line-height: 1em;
	letter-spacing: 0.04em;
	text-align: center;
}
.t404_txt{
	font-size: 16px;
	line-height: 1em;
	letter-spacing: 0.06em;
	text-align: center;
}

@media screen and (max-width : 768px){
	.t404{
		padding: 80px 0;
	}
	.t404_ttl{
		margin-bottom: 33px;
		font-size: 66px;
		line-height: 1em;
	}
	.t404_txt{
		font-size: 12px;
		line-height: 1em;
	}
}

/* ----------------------------- バナーエリア ----------------------------- */

.alBnr{
	padding: 40px 0;
}
.alBnr_list{
	margin: 0 auto;
	width: 800px;
}
.galle_btn{
	position: relative;
	display: block;
	overflow: hidden;
}
.galle_btn:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 880px;
	height: 880px;
	background: rgba(237,21,55,.5);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform: translate(-50%, -50%) scale(0.1);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	z-index: 5;
}
.galle_btn:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.galle_btn:before{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: #8e9094;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 4;
}
.galle_btn:hover:before{
	width: 12px;
}
.galle_btn_txt{
	position: absolute;
	display: block;
	top: 50%;
	right: 106px;
	width: 196px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
}
.galle_btn_arrow{
	position: absolute;
	display: block;
	top: 50%;
	right: 9px;
	width: 26px;
	height: 9px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
	overflow: hidden;
}
.galle_btn_arrow:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background: #fff;
}
.galle_btn:hover .galle_btn_arrow{
	padding-left: 6px;
	-webkit-transform: translate(6px, -50%);
	transform: translate(6px, -50%);
}

@media screen and (max-width : 768px){
	.alBnr{
		padding: 18px 0 30px 0;
	}
	.alBnr_list{
		padding: 0 20px;
		width: 100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.galle_btn{
		background: #ece5df;
	}
	.galle_btn .sp{
		max-width: 336px;
	}
	.galle_btn:hover:after{
		opacity: 0;
	}
	.galle_btn:before{
		width: 18px;
	}
	.galle_btn:hover:before{
		width: 18px;
	}
	.galle_btn_txt{
		right: 34px;
		width: 122px;
	}
	.galle_btn_arrow{
		right: 7px;
		width: 20px;
		height: 7px;
	}
	.galle_btn_arrow:after{
		width: 0;
		height: 0;
	}
	.galle_btn:hover .galle_btn_arrow{
		padding-left: 0;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

/* ----------------------------- セクション ----------------------------- */

.section{
	position: relative;
}
.section:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(128,128,128,.2);
}
.section_ttl{
	position: relative;
	margin-bottom: 48px;
	padding-top: 40px;
	text-align: center;
}
.section_ttl:after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 240px;
	height: 1px;
	background: #af1930;
}
.section_ttl_en{
	margin-bottom: 30px;
	font-size: 64px;
	line-height: 1em;
	letter-spacing: 0.04em;
	font-weight: 500;
}
.section_ttl_jp{
	font-size: 14px;
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.06em;
}
.section_lead{
	margin-bottom: 46px;
	font-size: 20px;
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
}

@media screen and (max-width : 768px){
	.section_ttl{
		margin-bottom: 35px;
		padding-top: 30px;
	}
	.section_ttl:after{
		width: 180px;
	}
	.section_ttl_en{
		margin-bottom: 24px;
		font-size: 48px;
		line-height: 1em;
	}
	.section_ttl_jp{
		font-size: 11px;
		line-height: 1em;
	}
	.section_lead{
		margin-bottom: 36px;
		font-size: 15px;
		line-height: 1em;
	}
}

/* ----------------------------- ボタン ----------------------------- */

.more_btn{
	position: relative;
	display: block;
	height: 48px;
	background: #af1930;
	overflow: hidden;
}
.more_btn:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	background: #ed1537;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0.3;
	z-index: 5;
}
.more_btn:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.more_btn:before{
	position: absolute;
	content: '';
	top: 0;
	right: 23px;
	width: 1px;
	height: 100%;
	background: rgba(0,0,0,.2);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 6;
}
.more_btn:hover:before{
	-webkit-transform: translate(12px, 0);
	transform: translate(12px, 0);
}
.more_btn_txt{
	position: relative;
	display: block;
	top: 50%;
	left: 18px;
	color: #fff;
	font-size: 16px;
	line-height: 1em;
	letter-spacing: 0.04em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
}
.more_btn_arrow{
	position: absolute;
	display: block;
	top: 50%;
	right: 10px;
	width: 26px;
	height: 9px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
	overflow: hidden;
}
.more_btn_arrow:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background: #fff;
}
.more_btn:hover .more_btn_arrow{
	padding-left: 6px;
	-webkit-transform: translate(6px, -50%);
	transform: translate(6px, -50%);
}
.view_btn{
	position: relative;
	display: block;
	height: 79px;
	text-align: center;
	background: rgba(0,0,0,.05);
	overflow: hidden;
}
.mode-night .view_btn{
	background: rgba(0,0,0,.2);
}
.view_btn:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 1600px;
	height: 1600px;
	background: #ed1537;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform: translate(-50%, -50%) scale(0.1);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	z-index: 5;
}
.view_btn:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.view_btn_txt{
	position: relative;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	color: #df1232;
	font-size: 20px;
	line-height: 1em;
	letter-spacing: 0.04em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
}
.view_btn:hover .view_btn_txt{
	color: #fff;
}
.view_btn_txt span{
	display: inline-block;
	padding-left: 30px;
	background: url(../img/common/icon_list.png) 0 5px no-repeat;
	background-size: 13px auto;
}
.view_btn:hover .view_btn_txt span{
	background: url(../img/common/icon_list_wt.png) 0 5px no-repeat;
	background-size: 13px auto;
}

@media screen and (max-width : 768px){
	.more_btn{
		height: 32px;
	}
	.more_btn:after{
		opacity: 0;
	}
	.more_btn:hover:after{
		opacity: 0;
	}
	.more_btn:before{
		right: 17px;
	}
	.more_btn:hover:before{
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.more_btn_txt{
		left: 12px;
		font-size: 12px;
		line-height: 1em;
	}
	.more_btn_arrow{
		right: 7px;
		width: 20px;
		height: 7px;
	}
	.more_btn_arrow:after{
		width: 0;
		height: 0;
	}
	.more_btn:hover .more_btn_arrow{
		padding-left: 0;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.view_btn{
		height: 60px;
	}
	.view_btn:hover:after{
		opacity: 0;
	}
	.view_btn_txt{
		font-size: 15px;
		line-height: 1em;
	}
	.view_btn:hover .view_btn_txt{
		color: #df1232;
	}
	.view_btn_txt span{
		padding-left: 22px;
		background: url(../img/common/icon_list.png) 0 4px no-repeat;
		background-size: 10px auto;
	}
	.view_btn:hover .view_btn_txt span{
		background: url(../img/common/icon_list.png) 0 4px no-repeat;
		background-size: 10px auto;
	}
}

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

.header-fadein{
	opacity: 0;
}
.headerfadeIn {
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes fadeIn{
	from{opacity: 0;}
	to{opacity: 1;}
}
@keyframes fadeIn{
	from{opacity: 0;}
	to{opacity: 1;}
}
@-webkit-keyframes fadeOut{
	from{opacity: 1;}
	to{opacity: 0;}
}
@keyframes fadeOut{
	from{opacity: 1;}
	to{opacity: 0;}
}
.section-fadein{
	opacity: 0;
}
.sectionfadeIn {
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: sectionfadeIn;
	animation-name: sectionfadeIn;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes sectionfadeIn {
	from {
		-webkit-transform: translateY(10px);
		opacity: 0;
	}
	to {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}
@keyframes sectionfadeIn {
	from {
		transform: translateY(10px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.alFooter{

}
.mode-night .alFooter{
	color: #fff;
}

/* ----------------------------- ナビゲーション ----------------------------- */

.alFooter_nav{
	background: #af1930;
}
.alFooter_nav_inner{
	display: flex;
	margin: 0 auto;
	min-width: 1040px;
	max-width: 1280px;
	border-left: 1px solid rgba(0,0,0,.2);
	border-right: 1px solid rgba(0,0,0,.2);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.alFooter_nav_l{
	width: 34%;
	border-right: 1px solid rgba(0,0,0,.2);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.alFooter_nav_r{
	width: 66%;
}
.alFooter_nav_label{
	position: relative;
	height: 320px;
}
.alFooter_nav_label_txt{
	position: relative;
	display: inline-block;
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 14px;
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.06em;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.alFooter_nav_label_txt .en{
	display: inline-block;
	margin-bottom: 32px;
	font-size: 64px;
	line-height: 1em;
	font-weight: 500;
	letter-spacing: 0.04em;
}
.alFooter_nav_label_txt_catch{
	position: absolute;
	top: 70px;
	left: 110px;
	width: 146px;
}
.alFooter_nav_tel{
	position: relative;
	height: 136px;
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.alFooter_nav_tel_inner{
	position: absolute;
	top: 50%;
	left: 40px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 10;
}
.alFooter_nav_tel_num{
	display: inline-block;
	padding-left: 52px;
	padding-right: 28px;
	color: #fff;
	font-size: 40px;
	line-height: 1em;
	letter-spacing: 0.04em;
	vertical-align: top;
	background: url(../img/common/icon_tel_wt_l.png) 0 center no-repeat;
	background-size: 28px auto;
}
.alFooter_nav_tel_option{
	display: inline-block;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	letter-spacing: 0.06em;
	vertical-align: top;
}
.alFooter_nav_contact{
	display: flex;
}
.contact_btn{
	position: relative;
	display: block;
	width: 50%;
	height: 183px;
	border-right: 1px solid rgba(0,0,0,.2);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	overflow: hidden;
}
.contact_btn-faq{
	border-right: 0;
}
.contact_btn:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	background: #ed1537;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform: translate(-50%, -50%) scale(0.1);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	z-index: 5;
}
.contact_btn:hover:after{
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.contact_btn.unable:hover:after{
	opacity: 0;
}
.contact_btn_txt{
	position: relative;
	display: block;
	top: 44px;
	left: 0;
	padding-top: 72px;
	color: #fff;
	font-size: 20px;
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
	background: url(../img/common/icon_contact_wt_l.png) center 5px no-repeat;
	background-size: 53px auto;
	z-index: 10;
}
.contact_btn-faq .contact_btn_txt{
	background: url(../img/common/icon_faq_wt_l.png) center 0 no-repeat;
	background-size: 50px auto;
}
.contact_btn.unable .contact_btn_txt{
	opacity: .3;
}

/* ----------------------------- インフォメーション ----------------------------- */

.alFooter_info{
	background: rgba(0,0,0,.05);
	overflow: hidden;
}
.mode-night .alFooter_info{
	background: rgba(0,0,0,.2);
}
.alFooter_info_bg{
	position: relative;
	background: url(../img/common/footer_light.png) center 0 no-repeat;
	background-size: 1479px auto;
}
.mode-night .alFooter_info_bg:after{
	pointer-events: none;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background: url(../img/common/footer_light-night.png) center 0 no-repeat;
	background-size: 1479px auto;
	opacity: 0;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: footerLightfadeIn;
	animation-name: footerLightfadeIn;
}
@-webkit-keyframes footerLightfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes footerLightfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.alFooter_info_inner{
	position: relative;
	margin: 0 auto;
	padding: 64px 0;
	width: 1040px;
}
.alFooter_info_logo{
	margin-bottom: 36px;
	width: 149px;
}
.alFooter_info_list_item{
	display: block;
	margin-bottom: 16px;
	padding-left: 32px;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.06em;
}
.alFooter_info_list_item:last-child{
	margin-bottom: 0;
}
.alFooter_info_list_item.item-add{
	background: url(../img/common/icon_add_bk_s.png) 3px center no-repeat;
	background-size: 13px auto;
}
.mode-night .alFooter_info_list_item.item-add{
	background: url(../img/common/icon_add_wt_s.png) 3px center no-repeat;
	background-size: 13px auto;
}
.alFooter_info_list_item.item-tel{
	background: url(../img/common/icon_tel_bk_s.png) 3px center no-repeat;
	background-size: 12px auto;
}
.mode-night .alFooter_info_list_item.item-tel{
	background: url(../img/common/icon_tel_wt_s.png) 3px center no-repeat;
	background-size: 12px auto;
}
.alFooter_info_list_item.item-fax{
	background: url(../img/common/icon_fax_bk_s.png) 1px center no-repeat;
	background-size: 15px auto;
}
.mode-night .alFooter_info_list_item.item-fax{
	background: url(../img/common/icon_fax_wt_s.png) 1px center no-repeat;
	background-size: 15px auto;
}
.alFooter_info_pagetop{
	position: absolute;
	top: 54px;
	right: 5px;
	width: 34px;
	height: 33px;
}
.pagetop_btn{
	position: relative;
	display: block;
	padding: 10px;
	width: 14px;
	height: 13px;
}
.pagetop_btn:after{
	position: absolute;
	content: '';
	top: 10px;
	left: 50%;
	width: 2px;
	height: 13px;
	margin-left: -1px;
	background: #df1232;
}
.pagetop_btn:hover{
	padding: 0 10px 20px 10px;
}
.alFooter_info_copy{
	position: absolute;
	bottom: 64px;
	right: 0;
	font-size: 12px;
	line-height: 1em;
	letter-spacing: 0.04em;
}

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

	/* ----------------------------- ナビゲーション ----------------------------- */

	.alFooter_nav{
		padding: 0 20px;
	}
	.alFooter_nav_inner{
		display: block;
		min-width: 0;
	}
	.alFooter_nav_l{
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid rgba(0,0,0,.2);
	}
	.alFooter_nav_r{
		width: 100%;
	}
	.alFooter_nav_label{
		height: 135px;
	}
	.alFooter_nav_label_txt{
		font-size: 10px;
		line-height: 1em;
		text-align: center;
	}
	.alFooter_nav_label_txt .en{
		margin-bottom: 18px;
		font-size: 48px;
		line-height: 1em;
	}
	.alFooter_nav_tel{
		height: 100px;
	}
	.alFooter_nav_tel_inner{
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	.alFooter_nav_tel_num{
		margin-bottom: 13px;
		padding-left: 40px;
		padding-right: 0;
		font-size: 30px;
		line-height: 1em;
		background-size: 21px auto;
	}
	.alFooter_nav_tel_option{
		font-size: 10px;
		line-height: 1em;
	}
	.contact_btn{
		height: 138px;
	}
	.contact_btn:hover:after{
		opacity: 0;
	}
	.contact_btn_txt{
		top: 25px;
		padding-top: 44px;
		font-size: 15px;
		line-height: 24px;
		background: url(../img/common/icon_contact_wt_l.png) center 0 no-repeat;
		background-size: 40px auto;
	}
	.contact_btn-faq .contact_btn_txt{
		padding-top: 58px;
		background: url(../img/common/icon_faq_wt_l.png) center 7px no-repeat;
		background-size: 37px auto;
	}

	/* ----------------------------- インフォメーション ----------------------------- */

	.alFooter_info_bg{
		background: none;
	}
	.mode-night .alFooter_info_bg:after{
		content: none;
	}
	.alFooter_info_inner{
		padding: 47px 20px 50px 20px;
		width: 100%;
		-webkit-box-sizing:border-box;
		box-sizing:border-box;
	}
	.alFooter_info_logo{
		margin-bottom: 27px;
		width: 112px;
	}
	.alFooter_info_list_item{
		margin-bottom: 12px;
		padding-left: 25px;
		font-size: 10px;
		line-height: 12px;
	}
	.alFooter_info_list_item:last-child{
		margin-bottom: 0;
	}
	.alFooter_info_list_item.item-add{
		background: url(../img/common/icon_add_bk_s.png) 2px center no-repeat;
		background-size: 10px auto;
	}
	.mode-night .alFooter_info_list_item.item-add{
		background: url(../img/common/icon_add_wt_s.png) 2px center no-repeat;
		background-size: 10px auto;
	}
	.alFooter_info_list_item.item-tel{
		background: url(../img/common/icon_tel_bk_s.png) 2px center no-repeat;
		background-size: 9px auto;
	}
	.mode-night .alFooter_info_list_item.item-tel{
		background: url(../img/common/icon_tel_wt_s.png) 2px center no-repeat;
		background-size: 9px auto;
	}
	.alFooter_info_list_item.item-fax{
		background: url(../img/common/icon_fax_bk_s.png) 1px center no-repeat;
		background-size: 12px auto;
	}
	.mode-night .alFooter_info_list_item.item-fax{
		background: url(../img/common/icon_fax_wt_s.png) 1px center no-repeat;
		background-size: 12px auto;
	}
	.alFooter_info_pagetop{
		top: 37px;
		right: 10px;
		width: 31px;
		height: 30px;
	}
	.pagetop_btn{
		padding: 10px;
		width: 11px;
		height: 10px;
	}
	.pagetop_btn:after{
		width: 0;
		height: 0;
	}
	.pagetop_btn:hover{
		padding: 10px;
	}
	.alFooter_info_copy{
		bottom: 50px;
		right: 20px;
		font-size: 9px;
		line-height: 12px;
	}
}



