@charset "UTF-8";


/* header
----------------------------------------*/
.header-logo{
	width: 15%;
}

@media screen and (max-width: 767px){
	.header-logo{
		width: 30%;
	}
}


/* mv-area
----------------------------------------*/
.mv-area{
  padding: 20px 0 30px;
}
.mv-area .inner::before{
	top: 0;
  width: 62%;
}

@media screen and (max-width: 767px){
	.mv-area{
		padding: 20px 0 20px;
	}
	.mv-area .inner::before{
		width: 100%;
	}
}


/* mv
----------------------------------------*/
.mv{
	position: relative;
	max-width: 1000px;
	margin: 30px auto 0;
	z-index: 10;
}
.mv-title{
	font-size: 5.0rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}
.mv-title .sub{
	display: block;
	margin-bottom: 15px;
	font-size: 48%;
}
.mv-image{
	margin-top: 30px;
}
.mv-image-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 800px;
	margin: 0 auto;
}
.mv-image-list li{
	width: 23.75%;
}
.mv-image-list li .name{
	display: block;
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}

@media screen and (max-width: 900px){
	.mv-title{
		font-size: 4.0rem;
	}
}

@media screen and (max-width: 767px){
	.mv{
		margin: 20px auto 0;
	}
	.mv-title{
		font-size: 3.6rem;
	}
	.mv-image{
		margin-top: 20px;
	}
	.mv-image-list{
		width: 86%;
	  margin: 0 auto;
	}
	.mv-image-list li{
		width: 48%;
	}
	.mv-image-list li:nth-child(n+3){
		margin-top: 10px;
	}
	.mv-image-list li .name{
		font-size: 1.3rem;
	}
}


/* lead
----------------------------------------*/
.lead{
	padding: 60px 5% 80px;
}
.lead .inner{
	max-width: 800px;
	margin: 0 auto;
}
.lead p{
	margin-bottom: 1em;
	font-size: 1.6rem;
	line-height: 2;
}
.lead p:last-of-type{
	margin-bottom: 0;
}

@media screen and (max-width: 767px){
	.lead{
		padding: 40px 5% 60px;
	}
	.lead p{
		font-size: 1.5rem;
	}
}


/* photo
----------------------------------------*/
.photo{
	width: 43.75%;
}
.photo-left{
	float: left;
	margin: 5px 40px 50px 0;
}
.photo-right{
	float: right;
	margin: 5px 0 50px 40px;
}
.photo-text{
	padding: 20px;
	background: #fff;
}
.photo-text-name{
	font-size: 1.5rem;
	line-height: 1.6;
}
.photo-text-name span{
	display: block;
	font-size: 150%;
}
.photo-text-profile{
	margin-top: 10px;
	padding-top: 10px;
	border-top: solid 1px #000;
	font-size: 1.5rem;
	line-height: 1.6;
}
.photo-center{
	margin: 50px auto;
}
.photo-wide{
	background-color: #000;
}
.photo-wide .inner{
	max-width: 990px;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	.photo{
		width: 100%;
	}
	.photo-left,.photo-right{
		float: none;
		margin: 30px auto;
	}
	.photo-text-name{
		font-size: 1.4rem;
	}
	.photo-text-profile{
		font-size: 1.4rem;
	}
	.photo-center{
		margin: 30px auto;
	}
}


/* notice
----------------------------------------*/
.overview{
	padding: 80px 5%;
	background: #f7f7f7 url(bg-overview.jpg) no-repeat center;
	background-size: cover;
}
.overview .inner{
	max-width: 800px;
	margin: 0 auto;
}
.overview-heading{
	position: relative;
	margin-bottom: 45px;
	padding-left: 70px;
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.4;
}
.overview-heading::before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 50px;
	height: 1px;
	background-color: #000;
	content: "";
}
.overview-date{
	display: flex;
	flex-wrap: wrap;
}
.overview-date dt,
.overview-date dd{
	display: flex;
  align-items: center;
}
.overview-date dt{
	min-width: 140px;
	padding: 30px;
	background-color: #666;
	color: #fff;
	font-size: 2.0rem;
}
.overview-date dd{
	width: calc(100% - 170px);
  padding: 0 0 0 30px;
	font-size: 1.8rem;
	line-height: 1.4;
}
.overview-date dt:nth-of-type(n+2),
.overview-date dd:nth-of-type(n+2){
	border-top: solid 1px #ccc;
}

@media screen and (max-width: 767px){
	.overview{
		padding: 50px 5%;
	}
	.overview-heading{
		margin-bottom: 35px;
		padding-left: 50px;
		font-size: 2.6rem;
	}
	.overview-heading::before{
		width: 30px;
	}
	.overview-date dt{
		width: 100%;
		padding: 15px;
		font-size: 1.8rem;
	}
	.overview-date dd{
		width: 100%;
		padding: 15px;
		font-size: 1.6rem;
	}
	.overview-date dt:nth-of-type(n+2),
	.overview-date dd:nth-of-type(n+2){
		border-top: none;
	}
}


/* back-btn
----------------------------------------*/
.back-btn{
	display: none;
}