﻿@charset "utf-8";
/* CSS Document */


.top__hero{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: auto;
	width: 100%;
	min-width: 1000px;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.top__hero__text{
	color: #fff;
	text-align: center;
	font-family: "Pinyon Script";
}

video {
	height: auto;
	width: 100%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}

@media screen and (max-aspect-ratio: 16/9) {
	video {
		height: 100%;
		width: auto;
	}
}
@media print, screen and (max-width: 640px) {	
	video {
		height: auto;
		width: 100%;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: -1;
	}
	@media screen and (max-aspect-ratio: 16/9) {
		video {
			height: 100%;
			width: auto;
		}
	}
}

.sp-title{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sp-title div{
	width: 60%;
	filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.5));
}
.sp-title img{
	width: 100%;
}
@media print, screen and (max-width: 640px) {
	.sp-title div{
		width: 90%;
	}
}

.top__main{
	background: #fff;
	width: 100%;
	max-width: none;
	margin: 100vh auto 0;
	padding: 0 0 100px;
}

.top__youtube{
	padding:  100px 0 0;
}

.top__youtube__wrap{
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
}
.top__youtube__cell{
	width: calc(100% /3 - 40px);
	margin: 0 20px;
}
@media print, screen and (max-width: 640px) {
	.top__youtube__wrap{
		display: block;
	}
	.top__youtube__cell{
		width: 100%;
		margin: 0;
	}
}
.top__youtube__cell__img{
	display: block;
	position: relative;
	width: calc(100% - 20px);
	margin: 0 0 0 20px;
	background-position: center center;
	background-size: cover;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.top__youtube__cell__img:before{
	content: "";
	display: block;
	position: absolute;
	width: 72px;
	height: 72px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url(../common/img/playbutton.png) no-repeat;
	background-size: cover;
}
.top__youtube__cell__img:after{
	content: "";
	display: block;
	padding-top: 50%;
}

.top__youtube__cell__info{
	display: block;
	position: relative;
	top: -50px;
	margin-left: 0;
	background: rgba(255,255,255,0.95);
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
	padding: 20px;
	width: 60%;
}
.top__youtube__cell__info p{
	font-size: 12px;
	line-height: 1.5em;
}

.top__youtube__cell__date{
	font-size: 12px;
	color: #999;
	margin: 0 0 5px;
}

.top__youtube__cell__info a{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #38ACFF;
	margin: 10px 0 0;
}
.top__youtube__cell__info a img{
	width: 20px;
	display: inline-block;
	margin: 0 10px 0 0;
}

.top__youtube__btn{
	width: 260px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: #38ACFF;
	border-radius: 20px;
	margin: 30px auto 0;
	transition: .3s all ease;
}
.top__youtube__btn:hover{
	color: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.top__youtube__btn img{
	width: 20px;
	margin: 0 10px 0 0;
}


.top__about{
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/top/about.jpg);
	background-position: center center;
	background-size: cover;
	padding: 80px 0;
	margin: 110px 0 0;
}
.top__about__inner{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	color: #fff;
	display: flex;
	justify-content: flex-end;
}
@media print, screen and (max-width: 640px) {
	.top__about__inner{ width: 80%}
}
.top__about__text{
	width: 100%;
	max-width: 620px;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.top__about__title{
	font-weight: bold;
	font-size: 30px;
	font-family: Hiragino Mincho Pro , 'Hiragino Mincho Pro' , serif;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #fff;
}
.top__about__title span{
	display: block;
	font-size: 16px;
	letter-spacing: 0.1em;
	text-align: right;
	margin: 10px 0 0;
}
.top__about__text p{
	font-size: 14px;
	line-height: 200%;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.top__about__text a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	font-size: 14px;
	font-weight: bold;
	width: 300px;
	height: 40px;
	text-shadow: none;
	color: #38ACFF;
	border-radius: 20px;
	margin: 40px auto 0;
}
@media print, screen and (max-width: 640px) {
	.top__about__title{ font-size: 18px; line-height: 1.5em;}
	.top__about__title span{ text-align: left; font-size: 12px;  line-height: 1.5em;}
	.top__about__text p{ font-size: 12px;}
	.top__about__text a{width: 100%;}
}

.top__news{
	padding: 150px 0 0;
}
.top__news__inner{
	margin: 0 auto;
	max-width: 1200px;
	width: 90%;
	display: flex;
	justify-content: center;
}
.top__news__block{
	width: 60%;
}
@media print, screen and (max-width: 640px) {
	.top__news__inner{
		display: block;
	}
	.top__news__block{
		width: 100%;
		margin-bottom: 80px;
	}
}

.top__news__title{
	font-family: Hiragino Mincho Pro , 'Hiragino Mincho Pro' , serif;
	font-weight: bold;
	font-size: 26px;
	border-bottom: 1px solid #818181;
	color: #666;
	padding-bottom: 20px;
}
.top__news__title span{
	font-size: 14px;
	font-weight: normal;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif!important;
	color: #38ACFF;
	display: inline-block;
	margin: 0 0 0 10px;
}
.top__news__block ul{
	margin: 30px 0 0;
}
.top__news__block ul li{
	margin: 0 0 40px;
}
.top__news__date{
	font-size: 12px;
	line-height: 1.8em;
	color: #818181;
	margin-bottom: 10px;
}
.top__news__text{
	font-size: 14px;
	line-height: 1.5em;
	color: #333;
	margin-bottom: 10px;
}
.top__news__btn{
/*
	font-size: 14px;
	text-decoration: underline;
*/
}
.top__news__btn{
	font-size: 12px;
	color: #38ACFF;
	border-bottom: 1px solid #38ACFF;
	padding-bottom: 5px;
}
.top__news__more{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 40px;
	font-size: 14px;
	color: #38ACFF;
	border: 1px solid #38ACFF;
	margin: 0 auto;
	border-radius: 20px;
}