@charset "UTF-8";


/*フルスクリーン動画*/
.hero {
	position: relative;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: -3;
}
.hero video {
	z-index: -1;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline;
}
.hero .hero_img {
	z-index: -1;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline;
	background-image: url(img/hero.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_back_filter {
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 10;
	position: fixed;
	background-position: right;
	background-color: rgba(255,255,255,0.75);
}

.hero .hero_title {
	z-index: 15;
	top: 47%;
	left: 50%;
	position: absolute;
	display: inline;
	width: 90%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
}
.hero .hero_title img {
	width: 165px;
}
.hero .hero_title h2 {
	text-align: center;
	font-size: 27px;
	color: #6C3424;
	margin-top: 10px;
	font-weight: bold;
	text-shadow: 1px 1px 3px #FFFFFF;
}
.hero .hero_title .sub_text {
	color: #2E2E2E;
	font-size: 15px;
	text-shadow: 1px 1px 3px #FFFFFF;
	line-height: 1.8;
	letter-spacing: 0.01em;
	text-align: center;
	margin-top: 10px;
	font-weight: bold;
}
.hero .hero_title .sub_text span {
	font-size: 11px;
	line-height: 1.5;
	display: block;
}
.hero .hero_title .sub_text .mobile_none {
	display: none;
}
.hero .hero_title .logo_text {
	color: #3D3D3D;
	font-size: 12px;
	letter-spacing: 0.01em;
	text-align: center;
	font-weight: normal;
}

.back_color {
	background-color: #FFF;
	display: none;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*スクロールダウン全体の場所*/
.scroll_down{
	/*描画位置*/
	position: absolute;
	left: 50%;
	bottom: 0;
	/*全体の高さ*/
	height: 130px;
	z-index: 15;
}
/*スクロールダウン線の描写*/
.scroll_down::after{
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 2px;
	height: 110px;
	background: #6C3424;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
}
/*スクロールダウン高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:100%;
		opacity: 1;
	}
	100%{
		height:0;
		top:100%;
		opacity: 0;
	}
}

.sub_hero.privacy_hero {
	background-image: url(img/hero.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sub_hero {
	position: relative;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 350px;
	overflow: hidden;
	z-index: -3;
}
.sub_hero .sub_hero_title .logo_text {
	color: #3D3D3D;
	font-size: 15px;
	text-shadow: 1px 1px 3px #FFFFFF;
	line-height: 1.8;
	letter-spacing: 0.01em;
	text-align: center;
	margin-top: 17px;
	font-weight: bold;
	margin-bottom: 10px;
}
.sub_hero .sub_hero_title h1 {
	text-align: center;
	font-size: 30px;
	color: #6C3424;
	margin-top: 15px;
	font-weight: bold;
	text-shadow: 1px 1px 3px #FFFFFF;
}
.sub_hero .sub_hero_title h1.column {
	font-size: 21px;
}
.sub_hero .sub_hero_title .sub_text {
	color: #000000;
	font-size: 15px;
	text-shadow: 1px 1px 3px #FFFFFF;
	line-height: 1.8;
	letter-spacing: 0.01em;
	text-align: center;
	margin-top: 17px;
	/* [disabled]font-weight: bold; */
}
.sub_hero .sub_hero_title {
	z-index: 20;
	top: 51%;
	left: 50%;
	position: absolute;
	display: inline;
	width: 95%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
}










@media (min-width:600px) and (max-width:959px){

/*フルスクリーン動画*/
.hero {
	height: 580px;
}
.hero video {
	/* Make video to at least 100% wide and tall */
	min-width: 100%;
	min-height: 580px;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	/* Center the video */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline;
}

.hero .hero_img {
	/* Make video to at least 100% wide and tall */
	min-width: 100%;
	min-height: 580px;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	/* Center the video */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline;
}

.sub_hero {
	height: 400px;
}
.sub_hero video {
	min-height: 400px;
}





























}







@media (min-width:960px){

/*フルスクリーン動画*/
.hero {
	height: 100vh;
}
.hero video {
	/* Make video to at least 100% wide and tall */
	min-width: 100%;
	min-height: 100%;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	display: inline;
}

.hero .hero_img {
	/* Make video to at least 100% wide and tall */
	min-width: 100%;
	min-height: 100%;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	display: inline;
}
.hero .hero_title {
	top: 46%;
}
.hero .hero_title img {
	width: 180px;
}
.hero .hero_title h2 {
	font-size: 42px;
	margin-top: 15px;
}
/*スクロールダウン全体の場所*/
.scroll_down{
	/*全体の高さ*/
	height: 130px;
}
/*スクロールダウン線の描写*/
.scroll_down::after{
	content: "";
	/*描画位置*/
	
	/*線の形状*/
	height: 110px;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2.2s ease-in-out infinite;
}
.hero .hero_title .sub_text {
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.01em;
	margin-top: 15px;
}
.hero .hero_title .sub_text br {
	display: none;
}
.hero .hero_title .sub_text span {
	font-size: 12px;
}
.hero .hero_title .logo_text {
	font-size: 15px;
}
.hero .hero_title .sub_text .mobile_none {
	display: inline;
}


.sub_hero {
	height: 580px;
}
.sub_hero .sub_hero_title {
	top: 50%;
	max-width: 850px;
}
.sub_hero .sub_hero_title .logo_text {
	font-size: 22px;
	margin-bottom: 15px;
	line-height: 1.8;
	letter-spacing: 0.01em;
}
.sub_hero .sub_hero_title h1 {
	font-size: 53px;
	margin-top: 20px;
	letter-spacing: 0.04em;
}
.sub_hero .sub_hero_title h1.column {
	font-size: 39px;
}
.sub_hero .sub_hero_title .sub_text {
	font-size: 22px;
	line-height: 1.8;
	letter-spacing: 0.01em;
	margin-top: 20px;
}































}
