@charset "utf-8";

/*
************************************************************************
* 基本設定
* @copyright Revolme Inc.
*
* サイトの基本設定を行う
************************************************************************
*/

/*
************************************************************************
 基本
************************************************************************
*/
body
{
	/* 最小幅 */
	min-width:1320px;

	font-size:1.6rem;
	font-weight:normal;
	line-height:1.7;
	letter-spacing:0.05em;
}

/*
************************************************************************
 ページラッパー
************************************************************************
*/
#wrapper
{
	z-index:0;
	overflow:hidden;

	min-height:100vh;
}
#wrapper.hidden
{
	visibility:hidden;
}
/*
************************************************************************
 ヘッダー
************************************************************************
*/
#header
{
	z-index:3;

	overflow:hidden;
	position:absolute;
	top:0;
}
#header-contents
{
	z-index:0;
}

/*
************************************************************************
 ボディ（コンテンツ部）
************************************************************************
*/
#body
{
	z-index:1;

}
#body-contents
{
	z-index:0;
}


/*
************************************************************************
 フッター
************************************************************************
*/
#footer
{
	z-index:2;


}
#footer-contents
{
	z-index:0;
}

/*
************************************************************************
 段落
************************************************************************
*/
.section
{
	display:block;
	width:100%;
}
.section.has-bg
{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:rgba(0,0,0,0.3) !important;
	background-blend-mode:color;
}
.section + hr
{
	height:0px;
	margin:0 auto;

	max-width:1000px;
	border:0px solid transparent;
	border-bottom:1px solid  #8E8E8E;
}
.section:before,
.section:after
{
	content: ".";
	display: block;
	clear: both;
	float: none;
	height: 0px;
	width: 100%;
	visibility: hidden;
	overflow:hidden;
}
.section:before
{
	margin-bottom:70px;
}
.section:after
{
	margin-top:70px;
}
.section.no-margin:before,
.section.no-margin:after
{
	margin-bottom:0px;
	margin-top:0px;
}
.row
{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
}
.row.fill
{
	width:100%;
}

/* ################################################################################################ */
/* ## 中型                       ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1320px) {
	body
	{
		/* 最小幅 */
		min-width:1080px;

		font-size:1.6rem;
		font-weight:normal;
		line-height:1.7;
		letter-spacing:0.10em;
	}
	#header
	{
		z-index:3;

		overflow:hidden;
		position:relative;
		top:auto;
		bottom:auto;
		left:auto;

		height:80px;
		width:auto;
	}
	#body
	{
		z-index:1;
		margin-left:0px;
	}
	#footer
	{
		z-index:2;
		margin-left:0px;
	}
	/*
	************************************************************************
	 段落
	************************************************************************
	*/
	.row
	{
	}
	.row.fill
	{
		width:100%;
		padding-left:0vw;
		padding-right:0vw;
	}
}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
	/*
	************************************************************************
	 基本
	************************************************************************
	*/
	body
	{
		min-width:300px;
		font-size:2.2rem;
	}
	#header
	{
		z-index:3;

		overflow:hidden;
		position:relative;
		top:auto;
		bottom:auto;
		left:auto;

		height:15vw;
		width:auto;
	}
	#body
	{
		z-index:1;
		margin-left:0px;
	}
	#footer
	{
		z-index:2;
		margin-left:0px;
	}
	/*
	************************************************************************
	 段落
	************************************************************************
	*/
	.section + hr
	{
		height:0px;
		margin:0 auto;

		width:92.1875vw;
		border:0px solid transparent;
		border-bottom:1px solid  #8E8E8E;
	}
	.section:before
	{
		margin-bottom:8.0vw;
	}
	.section:after
	{
		margin-top:8.0vw;
	}
	.row
	{
		width:100%;
		padding-left:3.90625vw;
		padding-right:3.90625vw;
	}
	.row.fill
	{
		width:100%;
		padding-left:0vw;
		padding-right:0vw;
	}
}
