:root {
	--large-screen-width: 1250px;
}


@font-face {
  font-family: gothamlight;
  src: url(assets/fonts/Gotham-Light.otf);
}
@font-face {
  font-family: ebgaramond;
  src: url(assets/fonts/EBGaramond-VariableFont_wght.ttf);
}


body, html {
	height: 100%;
	width: 100%;
	margin: 0px;
	background: rgb(255, 255, 2555);

	/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: 'Arial', sans-serif;*/
	/*font-family: 'Crimson Text', serif;*/
	/*font-family: 'Roboto', sans-serif;*/
	/*font-family: 'Montserrat', sans-serif;*/
	
	font-family: gothamlight;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	line-height: 14px;

	-webkit-text-size-adjust: none;
}
a {
	color: rgb(128, 128, 128);
	text-decoration: none;
	/*border-bottom: 1px dotted #FFF;*/
}
a:hover {
	color: rgb(128, 128, 128);
	text-decoration: underline;
	/*border-bottom: 1px solid #FFF;*/
}

img {
	width: 100%;
	/*height: 100%;*/
	display: block;
	border-style: none;
	border-width: 0px;
}


/*********************************************************** phone */
	#BottomTextWrapper {
		font-size: 11px;
		line-height: 17px;
	}

	#BottomTextPC {
		display: none;
	}

	#BottomTextMobile {
		display: block;
	}
	
	.MainWrapperInner {
		width: calc(100% - 40px);
	}
	.MainButtonBox {
		width: calc(100% - 40px);
	}
	
	.MainArrowLeftText {
		font-size: 13px;
		line-height: 40px;
	}
	.MainArrowRightText {
		font-size: 13px;
		line-height: 40px;
	}

/*********************************************************** tablet */
@media screen and (min-width: 800px) {
	#BottomTextWrapper {
		font-size: 12px;
		line-height: 18px;
	}

	#BottomTextPC {
		display: none;
	}

	#BottomTextMobile {
		display: block;
	}
	
	.MainWrapperInner {
		width: calc(100% - 100px);
	}
	.MainButtonBox {
		width: calc(100% - 60px);
	}
	
	.MainArrowLeftText {
		font-size: 13px;
		line-height: 40px;
	}
	.MainArrowRightText {
		font-size: 13px;
		line-height: 40px;
	}
}


/*********************************************************** web */
@media screen and (min-width: 1120px) {
	#BottomTextWrapper {
		font-size: 13px;
		line-height: 19px;
	}

	#BottomTextPC {
		display: block;
	}

	#BottomTextMobile {
		display: none;
	}
	
	.MainWrapperInner {
		width: calc(100% - 200px);
	}
	.MainButtonBox {
		width: calc(100% - 100px);
	}
	
	.MainArrowLeftText {
		font-size: 15px;
		line-height: 40px;
	}
	.MainArrowRightText {
		font-size: 15px;
		line-height: 40px;
	}
}


/*********************************************************** web-max */
@media screen and (min-width: var(--large-screen-width)) {
	#BottomTextWrapper {
		font-size: 13px;
		line-height: 19px;
	}

	#BottomTextPC {
		display: block;
	}

	#BottomTextMobile {
		display: none;
	}
	
	.MainWrapperInner {
		width: calc(100% - 200px);
	}
	.MainButtonBox {
		width: calc(100% - 100px);
	}
	
	.MainArrowLeftText {
		font-size: 15px;
		line-height: 40px;
	}
	.MainArrowRightText {
		font-size: 15px;
		line-height: 40px;
	}
}
/********************************************************************************************************************/


/******************************************************************/
/*********************************************************** body */
#ContentWrapper {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	/*max-width: var(--large-screen-width);*/
	min-height: 1000px;
	background: white;
	margin: 80px auto 0px auto;
}

.CenterContent {
	position: absolute;
	top: 50%;
    left: 50%;
	
	-moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.FloatCenter1 {
	position: relative;
	float: left;
	left: 50%;
}

.FloatCenter2 {
	position: relative;
	float: left;
	left: -50%;
}

.MainWrapperInner {
	position: relative;
	max-width: calc(1250px - 200px);
	
	background: transparent;
	margin: auto;
}


/************************************************************************/
/*********************************************************** top banner */
#TopBanner {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: 2000px;
	height: calc(100vw * 400 / 1020);
	min-height: 360px;
	max-height: calc(1250px * (400 / 1020));
	/*max-height: calc(var(--large-screen-width) * 360 / 1020);*/
	margin: auto;
}


/*************************************************************************/
/*********************************************************** Mobile Menu */
#TopMobileMenuButton {
	position: absolute;
	top: 20px;
	right: 0px;
	width: 60px;
	height: 60px;
	cursor: pointer;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/mobile-menu-button.jpg");
}

#TopMobileMenuButtonClose {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	cursor: pointer;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/*background-image: url("assets/images/common/mobile-menu-button-close.jpg");*/
}

#MobileMenuWrapper {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 0%;

	background: white;
}

#MobileMenuWrapperInner {
	position: relative;
	width: 100%;
	display: none;
}


/********************************************************************/
/*********************************************************** Common */
.Spacing5 {
	position:relative;
	width:100%;
	height:5px;
}

.Spacing10 {
	position:relative;
	width:100%;
	height:10px;
}

.Spacing15 {
	position:relative;
	width:100%;
	height:15px;
}

.Spacing20 {
	position:relative;
	width:100%;
	height:20px;
}

.Spacing30 {
	position:relative;
	width:100%;
	height:30px;
}

.Spacing40 {
	position:relative;
	width:100%;
	height:40px;
}

.Spacing50 {
	position:relative;
	width:100%;
	height:50px;
}

.Spacing60 {
	position:relative;
	width:100%;
	height:60px;
}

.Spacing70 {
	position:relative;
	width:100%;
	height:70px;
}

.Spacing80 {
	position:relative;
	width:100%;
	height:80px;
}

.Spacing90 {
	position:relative;
	width:100%;
	height:90px;
}

.Spacing100 {
	position:relative;
	width:100%;
	height:100px;
}


/********************************************************************/
/*********************************************************** Arrows */
.MainArrowBox {
	position: relative;
	width: 100%;
	height: 40px;
}

/*
.MainArrowLeft {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 140px;
	height: 40px;
	
	margin: 0px auto 0px 0px;
	
	background: transparent;
	opacity: 0.6;
	
	-webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}
.MainArrowLeft:hover {
	opacity: 1.0;
}

.MainArrowLeftText {
	position: relative;
	width: calc(140px - 50px);
	height: 40px;
	
	background: transparent;
	margin: 0px 0px 0px auto;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: left;
}

.MainArrowLeftIcon {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 40px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-left.svg");
}

.MainArrowRight {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 140px;
	height: 40px;
	
	margin: 0px 0px 0px auto;
	
	background: transparent;
	opacity: 0.6;
	
	-webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}
.MainArrowRight:hover {
	opacity: 1.0;
}

.MainArrowRightText {
	position: relative;
	width: calc(140px - 50px);
	height: 40px;
	
	background: transparent;
	margin: 0px auto 0px 0px;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: right;
}

.MainArrowRightIcon {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-right.svg");
}

.MainArrowTopIcon {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-top.svg");
}
*/

/*******************************************************************/
/*********************************************************** video */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vidFrame{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/***********************************************************************/
/*********************************************************** DebugFont */
#DebugWrapper {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 20px;
	background-color: rgba(0, 0, 0, 0.8);
	text-align: left;
	line-height: 20px;
	display: none;
}
.DebugFont {
	font-family: "arial", sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	letter-spacing: 1px;
	color: rgb(255, 255, 255);
	text-decoration: none;
	-webkit-text-size-adjust: none;
}
.DebugFont a {
	color: rgb(255, 255, 255);
	text-decoration: none;
}
.DebugFont a:hover {
	color: rgb(255, 255, 255);
	text-decoration: none;
}


/***********************************************************************/
/*********************************************************** TOP ARROW */
.MainArrowTop {
	position: relative;
	width: 90px;
	height: 30px;
	margin: 0px auto;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.6;
}
.MainArrowTop:hover .MainArrowTopText {
	top: -30px;
}
.MainArrowTop:hover .MainArrowTopIcon0 {
	top: -5px;
}
.MainArrowTop:hover .MainArrowTopIcon1 {
	top: 5px;
}

.MainArrowTopText {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50px;
	height: 60px;
	margin: 0px;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}

.MainArrowTopIcon {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 30px;
	margin: 0px;
}

.MainArrowTopIcon0 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 30px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-top-0.svg");
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}
.MainArrowTopIcon1 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 30px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-top-1.svg");
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}


/************************************************************************/
/*********************************************************** PREV ARROW */
.MainArrowPrev {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 30px;
	margin: 0px auto;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.6;
}
.MainArrowPrev:hover .MainArrowPrevText {
	top: -30px;
}
.MainArrowPrev:hover .MainArrowPrevIcon0 {
	left: -40px;
}

.MainArrowPrevText {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	margin: 0px;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}

.MainArrowPrevIcon {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 30px;
	margin: 0px;
	overflow: hidden;
}
.MainArrowPrevIcon0 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 80px;
	height: 30px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-left.svg");
	
	-webkit-transition: left 0.25s;
    transition: left 0.25s;
}


/************************************************************************/
/*********************************************************** NEXT ARROW */
.MainArrowNext {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100px;
	height: 30px;
	margin: 0px auto;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.6;
}
.MainArrowNext:hover .MainArrowNextText {
	top: -30px;
}
.MainArrowNext:hover .MainArrowNextIcon0 {
	left: 0px;
}

.MainArrowNextText {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 60px;
	height: 60px;
	margin: 0px;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}

.MainArrowNextIcon {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 30px;
	margin: 0px;
	overflow: hidden;
}
.MainArrowNextIcon0 {
	position: absolute;
	top: 0px;
	left: -40px;
	width: 80px;
	height: 30px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/arrow-right.svg");
	
	-webkit-transition: left 0.25s;
    transition: left 0.25s;
}


/******************************************************************/
/*********************************************************** SHOW */
.MainButtonBox {
	position: relative;
	margin: 0px auto;
	max-width: calc(1250px - 100px);
	height: 30px;
}

.MainShow {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 145px;
	height: 30px;
	margin: 0px auto;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.6;
}
.MainShow:hover .MainShowText {
	top: -30px;
}
.MainShow:hover #MainShowLine0 {
	width: 16px;
	left: 10px;
}

.MainShowText {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 105px;
	height: 60px;
	margin: 0px;
	
	font-family: gothamlight;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	
	-webkit-transition: top 0.25s;
    transition: top 0.25s;
}

.MainShowIcon {
	position: absolute;
	top: 5px;
	left: 0px;
	width: 36px;
	height: 20px;
	margin: 0px;
}

#MainShowLine0 {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 36px;
	height: 1px;
	background: black;
	
	-webkit-transition: width 0.25s, left 0.25s;
    transition: width 0.25s, left 0.25s;
}
#MainShowLine1 {
	position: absolute;
	top: 0px;
	left: 50%;
	width: 1px;
	height: 20px;
	background: black;
}











.TopMenuButton2 {
	position: absolute;
	top: 0px;
	right: 100px;
	width: 36px;
	height: 36px;
	
	display: block;
	
	cursor: pointer;
}

#TopMenuButton2Line1 {
	position: absolute;
	top: 13px;
	left: 0px;
	width: 36px;
	height: 1px;
	background: black;
}
#TopMenuButton2Line2 {
	position: absolute;
	top: 23px;
	left: 0px;
	width: 36px;
	height: 1px;
	background: black;
}