@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* header */
.header {
	background-color: transparent;
	box-shadow: none;
}

.header__link {
	background-image: url("/img/common/logo_white.png");
}


.header.scroll {
	background-color: #FFF;
	box-shadow: 0 0 10px #DDD;
}

.header.scroll .header__link {
	background-image: url("/img/common/logo_black.png");
}

.header.scroll .globalNav__link {
	color: #222;
}

.header.scroll .globalNav__item:nth-of-type(7) .globalNav__link {
	background-image: url("/img/common/icon_globalNav_instagram_black.png");
}

.header.scroll .globalNav__item:nth-of-type(8) .globalNav__link,
.header.scroll .globalNav__item:nth-of-type(9) .globalNav__link {
	color: #FFF;
}



/* globalNav */
.globalNav__link {
	color: #FFF;
}

.globalNav__item:nth-of-type(7) .globalNav__link {
	background-image: url("/img/common/icon_globalNav_instagram.png");
}



/* movie */
.movie {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
}

.movie__overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.movie__img {
	display: block;
	width: 300px;
	height: auto;
}

.movie__h1 {
	font-weight: 500;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -15px;
	top: -100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* overview */
.overview__top {
	padding: 160px 0;
	text-align: center;
	background: linear-gradient(#35b0f2 80%,transparent);
}

.overview__center {
	position: relative;
	background-image: url("/img/index/bg_overview.jpg");
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 800px;
	margin-top: -150px;
	z-index: -1;
}

.overview__h1 {
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
	color: #FFF;
	margin-bottom: 50px;
}

.overview__txt {
	color: #FFF;
}

.overview__bottom {
	height: 220px;
	text-align: center;
	background: linear-gradient(transparent 0%,#195d9b 40%);
	margin-top: -100px;
}



/* about */
.about {
	padding: 100px 0 160px 0;
	background-color: #195d9b;
	color: #FFF;
}

.about__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about__item {
	width: 46%;
	margin-bottom: 60px;
	transition: .2s;
}

.about__item:hover {
	opacity: .8;
}

.about__img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.about__h3 {
	font-size: 28px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 15px;
	color: #FFF;
}

.about__txt {
	color: #FFF;
}

.about__btn {
	border: 1px solid #FFF;
	color: #FFF;
}

.about__btn:hover {
	background-color: #FFF;
	color: #195d9b;
}



/* news */
.news__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news__box::before{
	content: "";
	display: block;
	width: 22%;
	order: 1;
}
.news__box::after{
	content: "";
	display: block;
	width: 22%;
}

.news__item {
	width: 22%;
	transition: .2s;
	margin-bottom: 80px;
}

.news__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	margin-bottom: 15px;
}

.news__thumbnail::before {
	display: block;
	content: "";
	padding-top: 100%;
}

.news__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.news__mark {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #e50012;
	color: #FFF;
	font-weight: bold;
	font-size: 15px;
	padding: 3px 12px;
	border-radius: 0 0 3px 0;
}

.news__link:hover .news__thumbnail img {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.news__h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	transition: .2s;
}

.news__link:hover .news__h3 {
	color: #e50012;
}

.news__date {
	font-size: 14px;
	color: #AAA;
	margin-bottom: 10px;
}

.news__category p {
	margin-right: 5px;
	display: inline-block;
	font-size: 12px;
	color: #e50012;
	border: 1px solid #e50012;
	padding: 0 5px;
}



/* charge */
.charge {
	background-color: #F7F7F7;
}

.charge__h2 {
	margin-bottom: 100px;
}

.charge__item {
	transition: .2s;
}

.charge__item:hover {
	opacity: .7;
}

.charge__h3 {
	font-size: 24px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
	margin: 30px 0 10px 0;
	position: relative;
}

.charge__btn {
	margin: 70px auto 0 auto;
}



/* schedule */
.schedule {
	background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url("/img/index/bg_schedule.jpg");
}

.schedule__h2 {
	 color: #FFF;
}

.schedule iframe {
	display: block;
	width: 100%;
	height: 700px;
}

.schedule__btn {
	display: none;
}



/* faq */
.faq__box {
	margin: 50px 0;
	border-top: 1px solid #DDD;
}

.faq__item {
	width: 100%;
	border-bottom: 1px solid #DDD;
	position: relative;
	padding: 25px 70px 25px 20px;
}

.faq__item-question {
	font-weight: 600;
	font-size: 18px;
}

.faq__item-answer {
	padding: 15px 20px;
	margin-top: 18px;
	display: none;
	background-color: #F7F7F7;
}

.faq__item:first-child .faq__item-answer {
	display: block;
}

.acco__btn {
	background-color: transparent;
	display: inline-block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 12px;
	top: 20px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: #e50012;
	position: absolute;
	top: 18px;
	left: 8px;
}

.acco__btn::after {
	content: "";
	display: block;
	width: 2px;
	height: 20px;
	background-color: #e50012;
	position: absolute;
	top: 9px;
	left: 17px;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn--open::after {
	opacity: 1;
}






/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){


	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){


	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* movie */
.movie {
	height: 500px;
	min-height: 500px;
}
	
video {
	width: auto;
	height: 500px;
}

.movie__content {
	margin-top: 50px;
	width: calc(100% - 40px);
}
	
.movie__img {
	width: 120px;
	margin: 0 auto 25px auto;
}

.scrollDown {
	display: none;
}

	
	
/* overview */
.overview__top {
	padding: 80px 0;
	text-align: center;
	background: linear-gradient(#35b0f2 90%,transparent);
}

.overview__center {
	position: relative;
	background-image: url("/img/index/bg_overview.jpg");
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 300px;
	margin-top: -80px;
	z-index: -1;
}

.overview__h1 {
	font-size: 22px;
	margin-bottom: 20px;
}

.overview__txt {
	color: #FFF;
}

.overview__bottom {
	height: 100px;
	text-align: center;
	background: linear-gradient(transparent 0%,#195d9b 40%);
	margin-top: -50px;
}
	
	
	
/* about */
.about {
	padding: 0 0 60px 0;
}

.about__box {
	display: block;
}

.about__item {
	width: 100%;
	margin-bottom: 35px;
	transition: .2s;
	display: block;
}
	
.about__img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.about__h3 {
	font-size: 20px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 10px;
	color: #FFF;
}

.about__txt {
	color: #FFF;
}

.about__btn {
	border: 1px solid #FFF;
	color: #FFF;
}

.about__btn:hover {
	background-color: #FFF;
	color: #195d9b;
}
	
	
	
/* news */
.news__item {
	width: 48%;
	margin-bottom: 50px;
}

.news__thumbnail {
	margin-bottom: 10px;
}

.news__mark {
	font-size: 12px;
	padding: 3px 7px;
}

.news__h3 {
	font-size: 14px;
}

.news__date {
	font-size: 12px;
	margin-bottom: 5px;
}
	
.news__category p {
	margin-right: 3px;
	font-size: 10px;
	padding: 0 3px;
}
	
	
	
/* charge */
.charge__h2 {
	margin-bottom: 40px;
}

.charge__item:hover {
	opacity: .7;
}

.charge__h3 {
	font-size: 20px;
	margin: 20px 0 10px 0;
}

.charge__btn {
	margin: 30px auto 0 auto;
}
	
	
	
/* schedule */
.schedule iframe {
	height: 500px;
}
	
.schedule__btn {
	display: block;
	border: 1px solid #FFF;
	color: #FFF;
	margin-top: 30px;
}
	
.schedule__btn:hover {
	background-color: #FFF;
	color: #333;
}
	

	
/* faq */
.faq__box {
	margin: 30px 0;
}

.faq__item {
	padding: 15px 10px;
}
	
.faq__item-question {
	font-size: 14px;
	padding-right: 25px;
}
	
.faq__item-answer {
	margin-top: 10px;
}

.acco__btn {
	width: 31px;
	height: 31px;
	position: absolute;
	right: 0px;
	top: 12px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	width: 17px;
	height: 1px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.acco__btn::after {
	width: 1px;
	height: 17px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}
	
	
	
}