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


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

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

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

/* 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__logo {
	display: block;
	width: 290px;
	height: auto;
}

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

.scrollDown {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	width: 100px;
	margin: auto;
}

.scrollDown__frame {
	width: 30px;
	height: 55px;
	border: 1px solid #FFF;
	border-radius: 15px;
	margin: 0 auto;
}

.scrollDown span {
	position: absolute;
	left: 0;
	text-align: center;
	width: 100px;
	top: -25px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
}

.scrollDown__frame::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
	right: 0;
	margin: auto;
	width: 1px;
	height: 12px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

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

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



/* overview */
.overview {
	background: linear-gradient(#0e3c95,#003366 80%);
}

.overview__h1 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
	color: #FFF;
}

.overview__txt {
	font-size: 20px;
	color: #FFF;
	text-align: center;
	margin-bottom: 100px;
}

.overview__bg {
	width: 100%;
	height: 200px;
	background-image: url("/img/index/img_overview.png");
	background-size: 1758px 200px; /* image size */
	animation: overview_bg 40s infinite linear;
}

@keyframes overview_bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1758px 0;
  }
}



/* 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: 60px;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 10px #CCC;
	overflow: hidden;
}

.news__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
}

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

.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: #D90000;
	color: #FFF;
	font-weight: bold;
	font-size: 15px;
	padding: 5px 12px;
	border-radius: 0 0 5px 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__content {
	padding: 15px 15px 20px 15px;
}

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

.news__link:hover .news__h3 {
	color: #0e3c95;
}

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

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



/* about */
.about__wrapper {
	width: calc(100% - 140px);
	margin: 0 auto 160px auto;
	border-radius: 30px;
	position: relative;
	padding-left: 6.25%;
	background-image: url("/img/about/mv.jpg");
	background-size: cover;
	background-position: center center;
	text-align: left;
	overflow: hidden;
}

.about__bg {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg,#F7F7F7,transparent);
	z-index: 0;
}

.about__h2 {
	text-align: left;
	margin-bottom: 40px;
	position: relative;
	z-index: 10;
}

.about__txt {
	margin-bottom: 40px;
	position: relative;
	z-index: 10;
}

.about__box {
	width: 400px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 60px;
	position: relative;
	z-index: 10;
}

.about__item {
	width: 180px;
	border-bottom: 1px solid #222;
	height: 50px;
	line-height: 50px;
	margin-bottom: 15px;
}

.about__link {
	font-size: 18px;
	font-weight: 600;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
}

.about__link::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("/img/common/icon_btn.png");
	background-size: cover;
	background-position: center center;
	position: absolute;
	right: 0;
	top: 13px;
	transition: .2s;
}

.about__link:hover {
	color: #0e3c95;
}

.about__link:hover::after {
	background-image: url("/img/common/icon_btn_hover.png");
}

.about__btn {
	margin: 0;
}



/* price */
.price {
	background: linear-gradient(#0e3c95,#003366 80%);
}

.price__h2 {
	color: #FFF;
}

.price__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.price__item {
	display: inline-block;
	width: 31%;
	padding: 30px 30px 40px 30px;
	background-color: #FFF;
	border-radius: 10px;
	transition: .2s;
	margin-bottom: 40px;
}

.price__item:hover {
	background-color: #F1F1F1;
}

.price__item-thumbnail {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
}

.price__item-img {
	display: block;
	width: 100%;
	height: auto;
	transition: .2s;
}

.price__item:hover .price__item-img {
	transform: scale(1.05);
}

.price__item-h3 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 10px;
}

.price__item-h3 span {
	font-size: 16px;
	margin-left: 10px;
}

.price__item-txt {
	margin-bottom: 15px;
}

.price__item-link {
	text-align: right;
	font-weight: 600;
}

.price__item-link::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("/img/common/icon_btn.png");
	background-size: cover;
	background-position: center center;
	transition: .2s;
	vertical-align: -6px;
	margin-left: 10px;
}

.price__item:hover .price__item-link::after {
	background-image: url("/img/common/icon_btn_hover.png");
}



/* guide */
.guide {
	width: 100%;
	background-image: url("/img/index/bg_guide.jpg");
	background-size: cover;
	background-position: center center;
}

.guide__h2 {
	margin-bottom: 50px;
}

.guide__txt {
	text-align: center;
	margin-bottom: 60px;
}



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

.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: 20px;
}

.faq__item-question p::before {
	content: "Q";
	display: inline-block;
	width: 45px;
	height: 45px;
	background-color: #0e3c95;
	border-radius: 30px;
	text-align: center;
	border: 1px solid #0e3c95;
	color: #FFF;
	font-size: 24px;
	line-height: 45px;
	font-weight: bold;
	vertical-align: -2px;
	margin-right: 15px;
}

.faq__item-answer {
	padding: 15px 20px 15px 110px;
	margin-top: 18px;
	display: none;
	position: relative;
}

.faq__item-answer p::before {
	content: "A";
	display: inline-block;
	width: 45px;
	height: 45px;
	background-color: #FFF;
	border-radius: 30px;
	text-align: center;
	border: 1px solid #222;
	background-color: #FFF;
	color: #222;
	font-size: 24px;
	line-height: 45px;
	font-weight: bold;
	vertical-align: -2px;
	margin-right: 15px;
	position: absolute;
	left: 45px;
	top: 7px;
}

.faq__item-answer p span {
	font-size: 14px;
	color: #777777;
	display: block;
	margin-top: 5px;
}

.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: 25px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	content: "";
	display: block;
	width: 19px;
	height: 1px;
	background-color: #0e3c95;
	position: absolute;
	top: 18px;
	left: 9px;
}

.acco__btn::after {
	content: "";
	display: block;
	width: 1px;
	height: 18px;
	background-color: #0e3c95;
	position: absolute;
	top: 9px;
	left: 18px;
	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: 450px;
}

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

.scrollDown {
	bottom: 10px;
}

.scrollDown__frame {
	width: 20px;
	height: 40px;
	border: 1px solid #FFF;
	border-radius: 15px;
	margin: 0 auto;
}

.scrollDown span {
	top: -20px;
	font-size: 12px;
}

.scrollDown__frame::before {
	height: 10px;
}

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

	
	
/* overview */
.overview__h1 {
	font-size: 16px;
	margin-bottom: 20px;
}

.overview__txt {
	font-size: 14px;
	margin-bottom: 40px;
}
	
.overview__bg {
	height: 100px;
	background-size: 879px 100px;
}

@keyframes overview_bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 879px 0;
  }
}
	
	
	
/* news */
.news__item {
	width: 48%;
	margin-bottom: 20px;
	border-radius: 5px;
}

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

.news__h3 {
	font-size: 14px;
}

.news__date {
	font-size: 12px;
}
	
.news__category p {
	margin-right: 3px;
	font-size: 10px;
	padding: 0 3px;
	margin-bottom: 5px;
}
	
	
	
/* about */
.about__wrapper {
	width: calc(100% - 40px);
	margin: 0 auto 60px auto;
	border-radius: 15px;
	padding: 50px 20px;
}

.about__h2 {
	text-align: center;
	margin-bottom: 20px;
}

.about__txt {
	text-align: center;
	margin-bottom: 30px;
}

.about__box {
	width: 100%;
	margin-bottom: 30px;
}

.about__item {
	width: 47%;
	height: 40px;
	line-height: 40px;
	margin-bottom: 10px;
}

.about__link {
	font-size: 14px;
	height: 40px;
	line-height: 40px;
}

.about__link::after {
	width: 20px;
	height: 20px;
	top: 10px;
}

.about__btn {
	margin: 0 auto;
}
	
	
	
/* price */
.price__item {
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	margin-bottom: 20px;
}

.price__item-thumbnail {
	border-radius: 10px;
	margin-bottom: 20px;
}

.price__item-h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.price__item-h3 span {
	font-size: 14px;
}

.price__item-txt {
	margin-bottom: 15px;
}

.price__item-link::after {
	width: 20px;
	height: 20px;
	vertical-align: -5px;
	margin-left: 8px;
}

	
	
/* guide */
.guide__h2 {
	margin-bottom: 30px;
}

.guide__txt {
	margin-bottom: 30px;
}
	
	
	
/* schedule */
.schedule iframe {
	height: 500px;
	margin-bottom: 30px;
}
	
.schedule__btn {
	display: block;
}
	
	
	
/* faq */
.faq__box {
	margin: 0 auto;
}

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

.faq__item-question {
	font-weight: 500;
	font-size: 14px;
	padding-left: 35px;
	position: relative;
	padding-right: 30px;
}
	
.faq__item-question p::before {
	position: absolute;
	left: 0;
	top: -1px;
	width: 25px;
	height: 25px;
	font-size: 14px;
	line-height: 25px;
	margin-right: 0;
}

.faq__item-answer {
	padding: 0 0 0 35px;
	margin-top: 14px;
}

.faq__item-answer p::before {
	width: 25px;
	height: 25px;
	font-size: 14px;
	line-height: 26px;
	margin-right: 0;
	position: absolute;
	left: 0;
	top: -1px;
}
	
.faq__item-answer p span {
	font-size: 13px;
}

.acco__btn {
	background-color: transparent;
	display: inline-block;
	width: 25px;
	height: 25px;
	position: absolute;
	right: 0;
	top: 1px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	width: 15px;
	top: 12px;
	left: 4px;
}
	
.acco__btn::after {
	height: 15px;
	top: 5px;
	left: 11px;
}

	



	
}