@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lora {
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.sp {
	display: none;
}
.area {
	padding: 180px 40px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media screen and (max-width:1080px) {
	.area {
		padding: 100px 40px;
		box-sizing: border-box;
	}
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
}

/* common
-------------------------------------------------------*/
.sns {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.sns a img {
	max-width: 35px;
}
.sns li:not(:last-child) {
	margin-right: 15px;
}

.breadcrumb {
	max-width: 1280px;
	margin: 60px auto 0;
}
.breadcrumb ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 40px;
}
.breadcrumb ul li {
	position: relative;
}
.breadcrumb ul li:not(:last-child) {
	margin-right: 40px;
}
.breadcrumb ul li:not(:last-child):after {
	position: absolute;
	display: block;
	content: ">";
	right: -25px;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
	.breadcrumb {
		margin: 30px auto 0;
	}
	.breadcrumb ul {
		margin: 0 20px;
	}
}


/* header
-------------------------------------------------------*/
#header {
	padding: 20px 40px 450px;
}
#header .logo {
	text-align: center;
	font-size: 4rem;
	margin-bottom: 50px;
	line-height: 1;
}
#header .sns {
	justify-content: flex-end;
	margin-bottom: 15px;
}

@media screen and (max-width:1080px) {
	#header .logo {
		font-size: 3.4rem;
		margin-bottom: 40px;
	}
}
@media screen and (max-width:768px) {
	#header {
		padding: 0;
		position: relative;
	}
	#header .logo {
		font-size: 2rem;
		margin-bottom: 0;
		position: absolute;
		top: 20px;
		right: 50%;
		transform: translate(50%,0);
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: #0d2325;
	text-align: center;
}
#footer.area {
	padding: 160px 40px 140px;
}
#footer .logo {
	font-size: 2rem;
	margin-bottom: 40px;
}
#footer .footer_nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	font-size: 2rem;
}
#footer .footer_nav li {
	margin: 0 20px;
}
#footer .footer_nav li a:hover {
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
	opacity: 1;
}
#footer .sns {
	margin-bottom: 80px;
}
#footer .copy {
	font-size: 1.4rem;
}
@media screen and (max-width:1080px) {
	#footer.area {
		padding: 100px 40px;
	}
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 70px 40px;
	}
	#footer .logo {
		font-size: 1.6rem;
	}
	#footer .footer_nav {
		flex-flow: column;
		font-size: 1.6rem;
	}
	#footer .footer_nav li {
		margin: 0 0 10px;
	}
	#footer .sns {
		margin-bottom: 60px;
	}
	#footer .copy {
		font-size: 1rem;
	}	
}

/* nav
-------------------------------------------------------*/
#nav_pc ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}
#nav_pc ul li {
	margin: 0 20px;
}
#nav_pc ul li a.on {
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
}
#nav_pc ul li a:hover {
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
	opacity: 1;
}
@media screen and (max-width:1080px) {
	#nav_pc ul {
		font-size: 1.6rem;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #fff;
		width: 25px;
		height: 1px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
		background: #fff;
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		background: rgba(13,35,37,0.9);
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 60px 40px;
		box-sizing: border-box;
		font-size: 1.8rem;
	}
	#nav_sp .nav_cont.active {
		right: 0;
	}
	#nav_sp .nav_cont .nav {
		border-top: 1px solid #fff;
	}
	#nav_sp .nav_cont .nav li a {
		border-bottom: 1px solid #fff;
		padding-bottom: 20px;
		margin-bottom: 20px;
		padding-left: 10px;
		display: block;
	}
	#nav_sp .nav_cont .nav li:first-child a {
		padding-top: 20px;
	}
	#nav_sp .sns {
		justify-content: center;
		margin-top: 30px;
	}
}

/* lower
-------------------------------------------------------*/
.lower_visual {
	background: url("../img/common/visual_lower.png")no-repeat center right/cover;
}
.lower_visual #header {
	padding: 20px 40px 170px;
}
.lower_visual .visual_ttl {
	font-size: 5rem;
	margin-top: 100px;
}
.lower .area01.area {
	padding: 40px 40px 140px;
}
.lower_ttl01 {
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 50px;
}
.lower_ttl02 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.6rem;
	font-weight: 700;
	margin-bottom: 50px;
}
@media screen and (max-width:1080px) {
	.lower_visual #header {
		padding: 20px 40px 140px;
	}
	.lower_visual .visual_ttl {
		font-size: 4rem;
		margin-top: 100px;
	}
}
@media screen and (max-width:768px) {
	.lower_visual .sns.pc {
		display: none;
	}
	.lower_visual #header {
		padding: 20px 20px 60px;
	}
	.lower_visual .visual_ttl {
		font-size: 2.8rem;
		margin-top: 80px;
	}
	.lower .area01.area {
		padding: 20px 20px 100px;
	}
	.lower_ttl01 {
		font-size: 2.2rem;
		margin-bottom: 40px;
	}
	.lower_ttl02 {
		font-size: 2rem;
		margin-bottom: 30px;
	}
}

/* index
-------------------------------------------------------*/
.index_visual {
	background: url("../img/index/visual_bg.png")no-repeat center/cover;
}
.index_visual .name {
	margin-left: 3%;
	margin-top: -150px;
}
.index_visual .name img {
	max-width: 290px;
}
.index .area01 {
	background: url(../img/index/bg01.png)no-repeat center bottom/cover;
}
.page_nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.page_nav.right {
	justify-content: flex-end;
	margin-top: 5%;
}
.page_nav li {
	width: 30%;
}
.page_nav li:not(:last-child) {
	margin-right: 5%;
}
.page_nav li a {
	position: relative;
	display: block;
	width: 100%;
	line-height: 1;
}
.page_nav li a span {
	position: absolute;
	display: block;
}
.page_nav li a .lora {
	font-size: 3rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}
.page_nav li a .roboto {
	font-size: 1.4rem;
	right: 20px;
	bottom: 20px;
}
@media screen and (max-width:1400px) {
	.index_visual .name {
		margin-left: 2%;
		margin-top: -130px;
	}
	.index_visual .name img {
		max-width: 230px;
	}
}
@media screen and (max-width:1190px) {
	.index_visual .name {
		margin-left: 0.3%;
		margin-top: -100px;
	}
	.index_visual .name img {
		max-width: 200px;
	}
}
@media screen and (max-width:1080px) {
	#header.index {
		padding: 20px 40px 500px;
	}
	.page_nav li a .lora {
		font-size: 2.6rem;
	}
	.index_visual {
		position: relative;
	}
	.index_visual .name {
		margin-top: 0;
		position: absolute;
		left: 3%;
		top: 10%;
	}
	.index_visual .name img {
		max-width: 150px;
	}
}
@media screen and (max-width:850px) {
	.index_visual .name {
		top: inherit;
		bottom: 5%;
	}
}
@media screen and (max-width:768px) {
	#header.index {
		padding: 0;
	}
	.index_visual .sns.pc {
		display: none;
	}
	.index_visual {
		background: none;
	}
	.index .area01.area {
		padding: 50px 30px;
	}
	.page_nav.right {
		justify-content: flex-end;
		margin-top: 5%;
	}
	.page_nav.left {
		margin-right: 20%;
	}
	.page_nav.right {
		margin-left: 20%;
	}
	.page_nav li {
		width: 47%;
	}
	.page_nav li:not(:last-child) {
		margin-right: 6%;
	}
	.page_nav li a .lora {
		font-size: 1.8rem;
	}
	.page_nav li a .roboto {
		font-size: 1.2rem;
		right: 15px;
		bottom: 15px;
	}
}


/* photogallery
-------------------------------------------------------*/
.list_gallery {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.list_gallery li {
	width: 31%;
	margin: 0 3.5% 2% 0;
}
.list_gallery li:nth-child(3n) {
	margin: 0 0 2% 0;
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
	.list_gallery li {
		width: 48%;
		margin: 0 4% 2% 0;
	}
	.list_gallery li:nth-child(3n) {
		margin: 0 4% 2% 0;
	}
	.list_gallery li:nth-child(2n) {
		margin: 0 0 2% 0;
	}
}

/* schedule
-------------------------------------------------------*/
.schedule .area01 .inner {
	max-width: 700px;
}
.backnumber {
	text-align: right;
	margin-bottom: 30px;
}
.list_schedule li:not(:last-child) {
	margin-bottom: 30px;
}
.list_schedule li {
	background: #333333;
	border-radius: 20px 0 20px 0;
	padding: 30px;
}
.list_schedule li>* {
	margin-bottom: 10px;
}
.list_schedule li .date {
	font-size: 2.4rem;
}
.list_schedule li .link {
	margin-bottom: 0;
	font-size: 1.2rem;
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
	.backnumber {
		text-align: right;
		margin-bottom: 20px;
	}
	.list_schedule li {
		padding: 25px;
	}
	.list_schedule li .date {
		font-size: 2rem;
	}
	.list_schedule li .link {
		margin-bottom: 0;
		font-size: 1.2rem;
	}
}

/* profile
-------------------------------------------------------*/
.list_profile {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.list_profile li {
	width: 31.3%;
	margin: 0 3% 30px 0;
	border-left: 1px solid #fff;
	padding: 10px 0 10px 20px;
	box-sizing: border-box;
	font-weight: 400;
}
.list_profile li:nth-child(3n) {
	margin: 0 0 30px;
}
.list_profile li .ttl {
	font-size: 2rem;
	margin-bottom: 10px;
}
.list_profile li .txt{
	font-size: 1.4rem;
	line-height: 1.8;
}
.profile .box:not(:last-child) {
	margin-bottom: 130px;
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
	.list_profile li {
		width: 48%;
		margin: 0 4% 30px 0;
	}
	.list_profile li:nth-child(3n) {
		margin: 0 4% 30px 0;
	}
	.list_profile li:nth-child(2n) {
		margin: 0 0 30px 0;
	}
	.list_profile li .ttl {
		font-size: 1.8rem;
	}
	.list_profile li .txt{
		font-size: 1.3rem;
	}
	.profile .box:not(:last-child) {
		margin-bottom: 70px;
	}
}

/* message
-------------------------------------------------------*/
.message .inner {
	max-width: 730px;
}
.message_txt {
	text-align: center;
	font-size: 1.8rem;
	line-height: 2;
	margin: 0 auto 40px;
	font-weight: 300;
}
.message .name {
	text-align: right;
}
.message .name img {
	max-width: 134px;
}
@media screen and (max-width:1080px) {

}
@media screen and (max-width:768px) {
	.message_txt {
		font-size: 1.5rem;
	}
	.message .name {
		text-align: right;
	}
	.message .name img {
		max-width: 100px;
	}
}


