@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* TOPページ
------------------------------------------------------------------------------------------------------------------------------- */

/* mv
===================================================================== */
.mv{
	position: relative;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	padding-left: 23%;
}
@media screen and (max-width:767px) {
	.mv{
		padding-left: 0;
	}
}

/* mv_txt */
.mv .mv_txt{
	position: absolute;
	z-index: 100;
	top: 200px;
	left: 10%;
}
.mv .mv_txt p{
	margin: 0 0 20px;
}
.mv .mv_txt span{
	display: inline-block;
	padding: 0 20px 1px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.5;
	letter-spacing: 0.15em;
	background-color: rgba(122,181,215,0.85);
	color: #FFF;
}
@media screen and (max-width:767px) {
	.mv .mv_txt{
		top: auto;
		left: 0;
		bottom: 120px;
	}
	.mv .mv_txt p{
		margin: 0 0 2.6vw;
	}
	.mv .mv_txt span{
		padding: 0 10px 1px;
		font-size: 5.6vw;
	}
}

/* mv_image */
.mv .mv_image .mv_slider{
	position: relative;
}
.mv .mv_image .mv_slider li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	background-size: cover;
	background-position: center top;
	opacity: 0;
}
.mv .mv_image .mv_slider.start li{
	animation: slideshow 15s linear infinite;
}
.mv .mv_image .mv_slider li:nth-child(1){
	background-image: url("/assets/img/top/mv01.jpg");
}
.mv .mv_image .mv_slider li:nth-child(2){
	background-image: url("/assets/img/top/mv02.jpg");
	animation-delay: 5s;
}
.mv .mv_image .mv_slider li:nth-child(3){
	background-image: url("/assets/img/top/mv03.jpg");
	animation-delay: 10s;
}
@media screen and (max-width:767px) {
	.mv .mv_image .mv_slider li:nth-child(1){
		background-image: url("/assets/img/top/mv01_sp.jpg");
	}
	.mv .mv_image .mv_slider li:nth-child(2){
		background-image: url("/assets/img/top/mv02_sp.jpg");
	}
	.mv .mv_image .mv_slider li:nth-child(3){
		background-image: url("/assets/img/top/mv03_sp.jpg");
	}
}

@keyframes slideshow{
	0%{
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	35% {
		opacity: 1;
	}
	45% {
		opacity: 0;
	}
	100% { 
		opacity: 0; 
	}
}
/*@keyframes slideshow{
  0%{
    opacity: 1;
  }
  10%{
    opacity: 1;
  }
  23%{
    opacity: 1;
  }
  33%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}*/

/* mv_scroll */
.mv_scroll{
	position: absolute;
	bottom: 60px;
	left: 10%;
	width: 30px;
	height: 136px;
}
.mv_scroll a{
	position: relative;
	display: block;
	text-align: center;
}
.mv_scroll a img{
	width: 12px;
}
.mv_scroll a span{
	position: relative;
	display: block;
	top: 12px;
	height: 60px;
}
.mv_scroll a span::after{
	position: absolute;
	top: 0;
	left: 50%;
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: #4AA0C6;
	animation: scroll-bar 1.5s infinite;
}
@media screen and (max-width:767px) {
	.mv_scroll{
		position: absolute;
		bottom: 20px;
		left: 50%;
		width: 30px;
		margin-left: -15px;
		height: 80px;
	}
	.mv_scroll a img{
		width: 8px;
	}
	.mv_scroll a span{
		top: 10px;
		height: 30px;
	}
}

@keyframes scroll-bar {
	0% {
		height: 0;
	}
	10% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}



/* main h2
===================================================================== */
main h2{
	font-family: 'Noto Serif JP', serif;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
main h2.line{
	position: relative;
	text-align: center;
	padding: 0 0 30px;
	margin: 0 0 50px;
}
main h2.line::after{
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -40px;
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background-color: #7AB5D7;
}
@media screen and (max-width:767px) {
	main h2{
		font-size: 24px;
		line-height: 1.34;
	}
	main h2.line{
		padding: 0 0 25px;
		margin: 0 0 30px;
	}
	main h2.line::after{
		margin-left: -20px;
		width: 40px;
		height: 2px;
	}
}




/* more
===================================================================== */
.more{
	width: 240px;
	margin: 30px auto 0;
}
.more a{
	position: relative;
	display: block;
	padding: 6px 35px 6px 0;
	text-align: center;
	border: 1px solid #7AB5D7;
	background-image: url("/assets/img/common/arrow01_r.svg");
	background-repeat: no-repeat;
	background-position: right 30px top 21px;
	background-size: 40px;
	transition: 0.4s;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	font-size: 24px;
	color: #4AA0C6;
}
.more a::before {
	height: 0;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	border-top: 7px solid transparent;
  border-right: 7px solid #7AB5D7;
  border-bottom: 7px solid #7AB5D7;
  border-left: 7px solid transparent;	
}
.more a::after {
	height: 0;
	display: block;
	position: absolute;
	right: -1px;
	bottom: -1px;
	content: "";
	border-top: 7px solid transparent;
  border-right: 7px solid #FFFFFF;
  border-bottom: 7px solid #FFFFFF;
  border-left: 7px solid transparent;	
}
.more a:hover{
	color: #FFF;
	background-color: #7AB5D7;
	background-image: url("/assets/img/common/arrow01_r2.svg");
}
@media screen and (max-width:767px) {
	.more{
		width: 140px;
		margin: 15px auto 0;
	}
	.more a{
		padding: 5px 20px 5px 0;
		background-position: right 15px top 15px;
		background-size: 25px;
		font-size: 16px;
	}
	.more a::before {
		border-top: 4px solid transparent;
		border-right: 4px solid #7AB5D7;
		border-bottom: 4px solid #7AB5D7;
		border-left: 4px solid transparent;	
	}
	.more a::after {
		border-top: 4px solid transparent;
		border-right: 4px solid #FFFFFF;
		border-bottom: 4px solid #FFFFFF;
		border-left: 4px solid transparent;	
	}
}

/* more2 */
.more.more2{
	margin: 40px 0 0 370px;
}
.more.more2 a{
	border: 1px solid #FFF;
	background-image: url("/assets/img/common/arrow01_r2.svg");
	color: #FFF;
}
.more.more2 a::before {
	border-top: 7px solid transparent;
  border-right: 7px solid #FFF;
  border-bottom: 7px solid #FFF;
  border-left: 7px solid transparent;	
}
.more.more2 a::after {
	border-top: 7px solid transparent;
  border-right: 7px solid #7ab5d7;
  border-bottom: 7px solid #7ab5d7;
  border-left: 7px solid transparent;	
}
.more.more2 a:hover{
	color: #4AA0C6;
	background-color: #FFF;
	background-image: url("/assets/img/common/arrow01_r.svg");
}
@media screen and (max-width:767px) {
	.more.more2{
		margin: 30px auto 0;
	}
	.more.more2 a::before {
		border-top: 4px solid transparent;
		border-right: 4px solid #FFF;
		border-bottom: 4px solid #FFF;
		border-left: 4px solid transparent;	
	}
	.more.more2 a::after {
		border-top: 4px solid transparent;
		border-right: 4px solid #7ab5d7;
		border-bottom: 4px solid #7ab5d7;
		border-left: 4px solid transparent;	
	}
}

/* more3 */
.more.more3{
	margin: 50px auto 0;
}
.more.more3 a::after {
	border-top: 7px solid transparent;
  border-right: 7px solid #F1F7FB;
  border-bottom: 7px solid #F1F7FB;
  border-left: 7px solid transparent;	
}
@media screen and (max-width:767px) {
	.more.more3{
		margin: 30px auto 0;
	}
	.more.more3 a::after {
		border-top: 4px solid transparent;
		border-right: 4px solid #F1F7FB;
		border-bottom: 4px solid #F1F7FB;
		border-left: 4px solid transparent;	
	}
}


/* news
===================================================================== */
.news{
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0 90px;
}
.news h2{
	text-align: center;
}
@media screen and (max-width:767px) {
	.news{
		width: 100%;
		padding: 40px 25px 50px;
	}
	.news h2{
		margin: 0 0 10px;
	}
}

/* news_list 一部TOP用 */ 
.news_list ul li .date{
	width: 140px;
	font-size: 16px;
}
.news_list ul li .txt{
	font-size: 18px;
}
@media screen and (max-width:767px) {
	.news_list ul li .date{
		font-size: 14px;
	}
	.news_list ul li .txt{
		font-size: 14px;
	}
}


/* about
===================================================================== */
.about {
	position: relative;
	width: 100%;
	height: 1000px;
	margin: 0 0 130px;
	overflow: hidden;
}
@media screen and (max-width:767px) {
	.about {
		height: auto !important;
		margin: 0 0 60px;
	}
}

/* image */
.about .image{
	position: absolute;
	right: 50%;
	width: 1000px;
	height: 700px;
	margin-right: -300px;
	background-image: url("/assets/img/top/about_img01.jpg");
	background-size: cover;
}
@media screen and (max-width:767px) {
	.about .image{
		position: relative;
		right: 0;
		width: 100%;
		height: 300px;
		margin-right: 0;
		background-image: url("/assets/img/top/about_img01_sp.jpg");
		background-size: cover;
	}
}

/* txt */
.about .txt{
	position: absolute;
	left: 50%;
	top: 410px;
	margin-left: -200px;
	width: 900px;
	height: 590px;
	background-color: rgba(89,163,205,0.8);
	color: #FFF;
	padding: 70px 80px 80px;
}
.about .txt h2{
	position: relative;
	padding: 0 0 30px;
	margin: 0 0 30px;
}
.about .txt h2::after{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background-color: #FFF;
}
.about .txt .lead{
	font-size: 20px;
	line-height: 2.2;
}
@media screen and (max-width:767px) {
	.about .txt{
		position: relative;
		left: 0;
		top: 0;
		margin: -175px auto 0;
		width: calc(100% - 50px);
		height: auto;
		padding: 35px 0 40px;
	}
	.about .txt h2{
		padding: 0 0 25px;
		margin: 0 0 25px;
		text-align: center;
	}
	.about .txt h2::after{
		left: 50%;
		margin-left: -20px;
		width: 40px;
		height: 2px;
	}
	.about .txt .lead{
		font-size: 14px;
		line-height: 2.1;
		text-align: center;
	}
}


/* requirements
===================================================================== */
.requirements .wrapper{
	background: #F1F7FB;
	margin-top: -112px;
	padding: 100px 0;
}
@media screen and (max-width:767px) {
	.requirements .wrapper{
		margin-top: -70px;
		padding: 70px 0 50px;
	}
}

/* txt */
.requirements .txt {
	width: 860px;
	margin: 0 auto;
}
.requirements .txt dl{
	margin: 0 0 0.8em;
	font-size: 20px;
}
.requirements .txt dl dt{
	font-weight: 500;
}
.requirements .txt dl dt::before{
	display: inline-block;
	margin-right: 0.5em;
	content: "●";
	color: #D0E4EF;
}
@media screen and (max-width:767px) {
	.requirements .txt {
		width: 100%;
		padding: 0 25px;
	}
	.requirements .txt dl{
		margin: 0 0 0.8em;
		font-size: 14px;
	}
	.requirements .txt dl dt{
		padding-left: 1.5em;
	}
	.requirements .txt dl dt::before{
		text-indent: -1.5em;
		display: inline-block;
		margin-right: 0;
	}
}

/* btn */
.requirements .btn{
	width: 860px;
	margin: 60px auto 0;
}
.requirements .btn ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.requirements .btn ul li{
	width: 400px;
	margin: 0 0 40px;
}
.requirements .btn ul li:first-child{
	margin-right: 60px;
}
.requirements .btn ul li:last-child{
	margin-bottom: 0;
}
.requirements .btn ul li a{
	display: flex;
	align-items: center;
	background-color: #7AB5D7;
	background-image: url("/assets/img/common/arrow01_r2.svg");
	background-repeat: no-repeat;
	background-size: 40px;
	background-position: right 30px center;
	border-radius: 8px;
	min-height: 120px;
	padding: 20px 30px;
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	line-height: 1.4;
	color: #FFF;
	transition: 0.4s;
}
.requirements .btn ul li a:hover{
	background-position: right 20px center;
}
.requirements .btn ul li a span{
	display: inline-block;
	width: 70px;
	margin-right: 1em;
}
@media screen and (max-width:767px) {
	.requirements .btn{
		width: 100%;
		margin: 40px 0 0;
		padding: 0 25px;
	}
	.requirements .btn ul{
		display: block;
	}
	.requirements .btn ul li{
		width: 100%;
		margin: 0 0 20px;
	}
	.requirements .btn ul li:first-child{
		margin-left: 0;
	}
	.requirements .btn ul li:last-child a{
		padding: 13px 15px;
	}
	.requirements .btn ul li a{
		background-size: 25px;
		background-position: right 20px center;
		border-radius: 4px;
		min-height: 60px;
		padding: 5px 15px;
		font-size: 16px;
	}
	.requirements .btn ul li a span{
		width: 40px;
	}
}


/* member
===================================================================== */
.member{
	margin: 120px 0 0;
}
.member .member_menu{
	width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width:767px) {
	.member{
		margin: 60px 0 0;
	}
	.member .member_menu{
		width: 100%;
		padding: 0 25px;
	}
}

/* member_menu */
.member .member_menu ul{
	display: flex;
	justify-content: space-between;
}
.member .member_menu ul li{
	position: relative;
	width: 300px;
	overflow: hidden;
}
.member .member_menu ul li::before{
	position: absolute;
	z-index: 100;
	right: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: #7AB5D7;
}
.member .member_menu ul li a::after {
	content: '';
	position: absolute;
	bottom: 0%;
	left: 0px;
	width: 100%;
	height: 2px;
	background-color: #7AB5D7;
	display: block;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.5s;
}
.member .member_menu ul li a:hover::after{
	transform-origin: left top;
	transform: scale(1, 1)
}
.member .member_menu ul li a dl{
	border-bottom: 2px solid #E6E6E6;
}
.member .member_menu ul li a dl dd{
	font-size: 20px;
	padding: 15px 0;
}
@media screen and (max-width:767px) {
	.member .member_menu ul{
		display: block;
	}
	.member .member_menu ul li{
		width: 100%;
		border-left: 3px solid #7AB5D7;
		border-top: 1px solid #E6E6E6;
		border-bottom: 1px solid #E6E6E6;
		border-right: 1px solid #E6E6E6;
	}
	.member .member_menu ul li:not(:first-child){
		margin: 20px 0 0;
	}
	.member .member_menu ul li::before{
		display: none;
	}
	.member .member_menu ul li a::after {
		display: none;
	}
	.member .member_menu ul li a dl{
		border-bottom: none;
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}
	.member .member_menu ul li a dl dt{
		width: 40vw;
	}
	.member .member_menu ul li a dl dd{
		flex: 1;
		font-size: 16px;
		line-height: 1.4;
		padding: 0 15px;
	}
}


/* bunka
===================================================================== */
.bunka{
	margin: 130px 0 0;
}
@media screen and (max-width:767px) {
	.bunka{
		margin: 65px 0 0;
	}
}


/* notes
===================================================================== */
.notes{
	width: 1000px;
	margin: 120px auto 100px;
}
.notes p{
	border:1px solid #7AB5D7;
	padding: 30px 10px;
	text-align: center;
	font-size: 18px;
}
@media screen and (max-width:767px) {
	.notes{
		width: 100%;
		margin: 60px auto 70px;
		padding: 0 25px;
	}
	.notes p{
		padding: 15px 10px;
		font-size: 12px;
	}
}
