body {
	width:100%;
	height:100%;
	background:#000000;
	-webkit-font-smoothing: antialiased;
}
#wrapper {
	width: 100%;
	position: relative;
	height:auto !important; /*IE6対策*/
	height: 100%; /*IE6対策*/
	min-height: 100%;
	margin:0 auto;
	min-width:1280px;
	max-width:2000px;
	font-size:20px;
	line-height:2em;
	color:#CCCCCC;
	font-weight: 700;
	font-family: 'Noto Serif JP', sans-serif;
	font-weight: 500;
}
#contents-wrapper {
	width:100%;
	height: auto;
	position:relative;
	padding-top: 0px;
	padding-bottom:180px;
}
#contents {
	width:100%;
	height: auto;
	position:relative;
	padding-top: 0px;
	padding-bottom:0;
}
.contents-box {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 80px;
}

/*------------------------------------------------------------------------------
								TITLE
------------------------------------------------------------------------------*/
section.content h2 {
	font-family: 'Vollkorn SC', serif;
	font-weight: 500;
	font-size: 48px;
	position: relative;
	line-height: 1em;
	text-align: center;
	color: #c6b582;
}
section.content h2 span {
	display: block;
	font-family: 'Noto Serif JP', sans-serif;
	font-size: 20px;
	line-height: 1em;
	font-weight: 600;
	margin-top: 6px;
}
/*------------------------------------------------------------------------------
								HEAD
------------------------------------------------------------------------------*/
#header {
	width:100%;
	min-width:740px;
	position:relative;
	height:200px;
	overflow: hidden;
	margin-bottom: 100px;
}
#header-area h1 {
	width:100%;
	height:200px;
	position:relative;
	background:url("../../../assets/img/common/header-logo.jpg") no-repeat center top / cover;
}
#header-area h1 a {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	text-indent:-999999px;
}
/*------------------------------------------------------------------------------
								MAIN
------------------------------------------------------------------------------*/
.box {
	position:relative;
	overflow:hidden;
	zoom:1;
	width:100%;
	padding-top: 0px;
}
.floatBox {
	width: 100%;
	margin: 0 auto;
	position:relative;
	overflow:hidden;
}
/*------------------------------------------------------------------------------
								FOOTER
------------------------------------------------------------------------------*/
#footer-area {
	position: absolute;
	bottom:0px;
	width:100%;
	height: 60px;
	box-sizing: border-box;
	background: #1a1a1a;
}
#footer-area #copyright {
	width:100%;
	text-align: center;
	height:auto;
	font-size: 12px;
	line-height: 60px;
	color: #CCCCCC;
}
/*------------------------------------------------------------------------------
								ANIMATION
------------------------------------------------------------------------------*/
.fromBottomOut {
	transform: translate(0,40px);
	opacity: 0.0;
}
.fromBottomIn {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0,0);
	opacity: 1.0;
}
.fromDownOut {
	transform: translate(0,40px);
	opacity: 0.0;
}
.fromDownIn {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0,0);
	opacity: 1.0;
}
.fromDownOut2 {
	transform: translate(0,40px);
	opacity: 0.0;
}
.fromDownIn2 {
	-webkit-transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0,0);
	opacity: 1.0;
}
.slideLeftOut {
	transform: translate(-400%,0px);
	opacity: 1.0;
}
.slideLeftIn {
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transition:         all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translate(3%,0);
	opacity: 1.0;
}
.slideRightOut {
	transform: translate(400%,0px);
	opacity: 1.0;
}
.slideRightIn {
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transition:         all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translate(-3%,0);
	opacity: 1.0;
}
.slideLeftOut2 {
	transform: translate(3%,0px);
	opacity: 1.0;
}
.slideLeftIn2 {
	-webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
	transition:         all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
	transform: translate(0,0);
	opacity: 1.0;
}
.slideRightOut2 {
	transform: translate(-3%,0px);
	opacity: 1.0;
}
.slideRightIn2 {
	-webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
	transition:         all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
	transform: translate(0,0);
	opacity: 1.0;
}
.scaleDownOut {
	transform: translate(0px, 0px) rotate(0deg) scale(1.5);
	opacity: 1.0;
}
.scaleDownIn {
	-webkit-transition: all 2.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 2.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0px, 0px) rotate(0deg) scale(1.0);
	opacity: 1.0;
}
.scaleUpOut {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0px, 0px) rotate(0deg) scale(0.6);
	opacity: 0.0;
}
.scaleUpIn {
	-webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate(0px, 0px) rotate(0deg) scale(1.0);
	opacity: 1.0;
}
.scaleUpOut2 {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(0.9,0.9);
	opacity: 0.0;
}
.scaleUpIn2 {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(1.0,1.0);
	opacity: 1.0;
}
.scaleUpOut3 {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(0.95,0.95);
	opacity: 0.0;
}
.scaleUpIn3 {
	-webkit-transition: all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(1.0,1.0);
	opacity: 1.0;
}
.alphaOut {
	opacity: 0.0;
}
.alphaIn {
	-webkit-transition: all 4s cubic-bezier(0.85, 0, 0.15, 1);
	transition: all 4s cubic-bezier(0.85, 0, 0.15, 1);
	opacity: 1.0;
}
.fix {
	transform: translate(0px, 0px) rotate(0deg) scale(1.0);
	-webkit-transition: all 0.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition:         all 0.0s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 1.0;
}
/*------------------------------------------------------------------------------
								SP
------------------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
#wrapper {
	min-width:740px;
	max-width:1000px;
	font-size:3vw;
	line-height:1.8em;
}
#contents-wrapper {
	padding-bottom:34vw;
}
#contents {
	width:100%;
	margin:0;
	position:relative;
	padding-bottom:0px;
}
.contents-box {
	padding: 0 40px;
}

/*------------------------------------------------------------------------------
								TITLE
------------------------------------------------------------------------------*/
section.content h2 {
	font-size: 6vw;
}
section.content h2 span {
	font-size: 2.5vw;
}
/*------------------------------------------------------------------------------
								MAIN
------------------------------------------------------------------------------*/
.box {
	position:relative;
	overflow:hidden;
	zoom:1;
	width:100%;
}
/*------------------------------------------------------------------------------
								FOOTER
------------------------------------------------------------------------------*/
#footer-area {
	height: 20vw;
}
#footer-area #copyright {
	font-size: 2.5vw;
	line-height: 20vw;
}
}