@charset "utf-8";
/* CSS Document */
/*メインイメージ*/
#main_img{
	height: 100vh;
	min-height: 800px;
	overflow: hidden;
	background-image: url(../img/main_img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-attachment: fixed;
}
#main_img h2{
	position: absolute;
	width:30%;
	bottom: 10%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	opacity: 0;
	padding-top: 100px;
}
#main_img #scroll{
	position: absolute;
	width: 40px;
	bottom: 10px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
/*intro*/
#intro{
	width: 80%;
	max-width: 1000px;
	margin: 50px auto 5%;
	position: relative;
	padding: 5%;
	z-index: 1;
}
#intro h2{
	width: 50%;
	margin: 0 auto 50px;
	text-align: center;
}
#intro h2 img{
	width: 100%;
}
#intro p{
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,1.0);
	text-align: center;
	line-height: 2;
	margin-bottom: 50px;
}
#intro .more{
	text-align: center;
}
#intro .more a{
	display: inline-block;
	width: 300px;
	padding: 20px 0;
	box-sizing: border-box;
	color: #fcee21;
	border: 1px solid #fcee21;
	background-color: #08226b;
}
#intro .butterfly1{
	position: absolute;
	z-index: -1;
	width: 370px;
	bottom: 5%;
	right:-5%;
}
#intro .butterfly2{
	position: absolute;
	z-index: -1;
	width: 180px;
	top: 40%;
	left: -5%;
}
/*コンテンツタイトル*/
section .contents_title{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 0;
	margin-bottom: 50px;
}
section .contents_title h2{
	max-width: 1280px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 10px;
	text-align: left;
}
section .contents_title h2 img{
	height: 50px;
	width: auto;
}
/*お知らせ*/
#news {
	margin-bottom: 50px;
}
#news .contents_title{
	background-image: url(../img/news_title_bg.jpg);
}
#news #news_wrap{
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 5%;
	color: #fcee21;
	text-shadow: 0 1px 2px rgba(0,0,0,1.0);
	text-align: center;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
/*#news #news_wrap::before,#news #news_wrap::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width:20%;
	height: 100%;
	background-image: url(../img/news_butterfly.png);
	background-position: left center;
	background-size: 100% auto;
	background-repeat: no-repeat;
}*/
#news #news_wrap::before{
	left: 0;
}
#news #news_wrap::after{
	right: 0;
}
#news #news_wrap .box_wrap{
	display: inline-block;
	text-align: left;
	margin-bottom: 50px;
}
#news #news_wrap .box_wrap .box{
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
#news #news_wrap .box_wrap .box h3,#news #news_wrap .box_wrap .box .date{
}
#news #news_wrap .box_wrap .box .date{
}
#news #news_wrap .box_wrap .box h3{
	margin-left: 20px;
}
#news #news_wrap .more{
	text-align: center;
}
#news #news_wrap .more a{
	display: inline-block;
	width: 300px;
	padding: 20px 0;
	box-sizing: border-box;
	color: #fcee21;
	border: 1px solid #fcee21;
	background-color: #08226b;
}
/*ギャラリー*/
#gallery {
	margin-bottom: 50px;
}
#gallery .contents_title{
	background-image: url(../img/gallery_title_bg.jpg);
}
#gallery #gallery_wrap{
	max-width: 1000px;
	margin: 0 auto;
}
#gallery #gallery_wrap .box_wrap{
	text-align: center;
	margin-bottom: 50px;
}
#gallery #gallery_wrap .box_wrap .box{
	display: inline-block;
	width: 28%;
	margin: 0 2%;
}
#gallery #gallery_wrap .box_wrap .box figure{
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 15px;
}
#gallery #gallery_wrap .box_wrap .box figure img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#gallery #gallery_wrap .box_wrap .box h3{
	color: #fff;
	text-align: left;
	display: inline-block;
}
#gallery #gallery_wrap .more{
	text-align: center;
}
#gallery #gallery_wrap .more a{
	display: inline-block;
	width: 300px;
	padding: 20px 0;
	box-sizing: border-box;
	color: #fcee21;
	border: 1px solid #fcee21;
	background-color: #08226b;
}

/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 780px){
/*メインイメージ*/
#main_img{
	background-attachment: scroll;
	width: 100%;
	overflow: hidden;
}
#main_img h2{
	position: absolute;
	width: 50%;
	max-width: 650px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/*intro*/
#intro{
	width: 90%;
	margin: 50px auto;
	position: relative;
	background-color: #08226b;
	padding: 5% 1%;
	padding-bottom: 100px;
	z-index: 1;
}
#intro p{
	font-size: 14px;
	text-align: center;
}
#intro .butterfly1{
	width: 300px;
	right:-3%;
}
#intro .butterfly2{
	width: 150px;
	left: -3%;
}
/*コンテンツタイトル*/
section .contents_title{
	padding: 80px 0;
	margin-bottom: 50px;
	background-attachment: scroll;
}
section .contents_title h2 img{
	height: 40px;
	width: auto;
}
/*お知らせ*/
#news {
	margin-bottom: 50px;
}
#news #news_wrap{
	width: 90%;
}
#news #news_wrap::before,#news #news_wrap::after{
	display: none;
}
#news #news_wrap .box_wrap .box .date{
	font-size: 14px;
}
#news #news_wrap .box_wrap .box h3{
	font-size: 16px;
}
/*ギャラリー*/
#gallery {
	margin-bottom: 50px;
}
#gallery .contents_title{
	background-image: url(../img/gallery_title_bg.jpg);
}
#gallery #gallery_wrap{
	max-width: 1000px;
	margin: 0 auto;
}
#gallery #gallery_wrap .box_wrap{
	text-align: center;
	margin-bottom: 50px;
}
#gallery #gallery_wrap .box_wrap .box{
	display: inline-block;
	width: 28%;
	margin: 0 2%;
}
#gallery #gallery_wrap .box_wrap .box figure{
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 15px;
}
#gallery #gallery_wrap .box_wrap .box figure img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#gallery #gallery_wrap .box_wrap .box h3{
	color: #fff;
	text-align: left;
	display: inline-block;
}
#gallery #gallery_wrap .more{
	text-align: center;
}
#gallery #gallery_wrap .more a{
	display: inline-block;
	width: 300px;
	padding: 20px 0;
	box-sizing: border-box;
	color: #fcee21;
	border: 1px solid #fcee21;
}
}
/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 700px){
#main_img{
	min-height: 500px;
}
#main_img h2{
	width: 80%;
}
	.more{
		font-size: 14px;
	}
/*intro*/
#intro{
	width: 100%;
	margin: 50px auto;
	position: relative;
	background-color: #08226b;
	padding: 5%;
	box-sizing: border-box;
	padding-bottom: 0;
	z-index: 1;
}
#intro h2{
	width: 70%;
	margin: 0 auto 20px;
}
#intro p{
	font-size: 14px;
}
#intro .butterfly1{
	width: 300px;
	right:0;
}
#intro .butterfly2{
	width: 150px;
	left: 0;
	top: 20%;
}
/*コンテンツタイトル*/
section .contents_title{
	padding: 50px 10px;
	margin-bottom: 50px;
	background-attachment: scroll;
}
section .contents_title h2 img{
	height: 25px;
	width: auto;
}
#news #news_wrap{
	width: 90%;
	background-position: center center;
}
#news #news_wrap .box_wrap .box .date{
	font-size: 12px;
}
#news #news_wrap .box_wrap .box h3{
	font-size: 14px;
}
/*ギャラリー*/
#gallery #gallery_wrap .box_wrap .box{
	display: inline-block;
	width: 80%;
	margin: 0 2% 30px;;
}
#gallery #gallery_wrap .box_wrap .box figure{
	width: 80%;
	margin: 0 auto 10px;
}
#gallery #gallery_wrap .box_wrap .box h3{
	font-size: 14px;
}

}
@media  screen and (max-width: 321px){
}