@charset "utf-8";
/* CSS Document */
html { scroll-behavior: smooth;}
body {
	font-family:"Zen Kaku Gothic New","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック";
	font-size:16px;
	line-height: 1.78;
	font-weight: bold;
	letter-spacing: 0.025em;
	text-align: center;
	color: #004385;
}
*{vertical-align: top; box-sizing: border-box; word-break: break-all;}

a{color: #004385; display: inline-block; text-indent: 0; text-decoration: underline;}
a:hover{opacity: 0.6; text-decoration: none;}

a.honbun{display: none;}

.sp{display: none;}

.animated{opacity: 0;}

@media screen and (max-width: 700px){
	body{font-size: 14px; line-height: 1.5;}
}


/*=====================================================================================
***************************************************************************************

　　背景動画
		
***************************************************************************************
=====================================================================================*/
/* youtube設定 */
#youtube-area{
    position: fixed;
    z-index: 1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
 	opacity: 0;    
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

#youtube {
/*天地中央配置*/
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
	overflow: hidden;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask{
    position: fixed;
    z-index: 2;/*下から2番目に表示*/
    top:0;
    width:100%;
    height: 100%;
	background: #000000;
	opacity: 0.6;
}


@media screen and (max-width: 700px){
	#youtube{display: none;}
	#youtube-mask{display: none;}
}





/*=====================================================================================
***************************************************************************************

　　header
		
***************************************************************************************
=====================================================================================*/
.outer-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  background: #FFFFFF;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
	border-radius: 30px;
	box-shadow: 0px 11px 20px 1px rgba(0, 0, 0, 0.3);
	
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 3px;
  background: #05071b;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: rgba(230, 240, 250, 0.97);
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 10px 0;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #e5e5e5;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  transition: width 0.4s ease;
}


#entry_btn a{
	display: block;
	width: 240px;
	line-height: 60px;
	border-radius: 30px;
	color: #FFFFFF;
	background-color: rgb(208, 17, 27);
	box-shadow: 0px 11px 20px 1px rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 20px;
	right: 100px;
	z-index: 11;
	text-decoration: none;
	font-size: 18px;
}
#entry_btn a:hover{box-shadow:none;}

@media screen and (max-width: 700px){
	body{font-size: 14px; line-height: 1.5;}
	.outer-menu{top: 10px; right: 10px;}
	.outer-menu .menu > div > div > ul > li{margin: 0 ;}
	.outer-menu .menu > div > div > ul > li img{width: 100%;}
	#entry_btn a{
		width: 200px; 
		line-height: 40px; 
		font-size: 16px; 
		right: 80px;
	}
}




/*=====================================================================================
***************************************************************************************

　　mv
		
***************************************************************************************
=====================================================================================*/
#mv img{width: 100%;}
@media screen and (max-width: 700px){
	#mv img.pc{display: none;}
	#mv img.sp{display: block;}
}

/*=====================================================================================
***************************************************************************************

　　メニュー
		
***************************************************************************************
=====================================================================================*/
#wrapper > section#menu {
	position: relative;
	background: url("../img/menu_bg.jpg") center top no-repeat;
	background-size: 100%;
	width: 100%;
	aspect-ratio: 288 / 153;
	/*height: 84vh;*/
}

#menu h2{
	width: 100%;
	padding: 4% 0 2%;
}

#menu ul{width: 65%; margin: 0 auto;}
#menu li{
	margin-bottom: 8px;
	width: 417px;
}
#menu li a{width: 100%;}
#menu li img{width: 100%;}

@media screen and (max-width: 1340px){
	#menu h2 img{width: 60%;}
	#menu li{width: 40%; margin-bottom: 4px;}
}
#menu img.img_sp{display: none;}

@media screen and (max-width: 900px){
	#menu{padding: 60px 0;}
	#menu h2 {padding: 0 0 20px;}
	#menu h2 img{width: 80%;}
	#menu ul{max-width: 450px; width: 80%;}
	#menu li{width: 100%;}
	#wrapper > section#menu {
	height: auto;
	background: url("../img/menu_bg.jpg") center top no-repeat;
	background-size: cover;
	}
}
@media screen and (max-width: 700px){
	#menu h2 img.pc{display: none;}
	#menu h2 img.sp{display: inline;}
	#wrapper > section#menu {
		background: url("../img/menu_bg_sp.jpg") center no-repeat;
		background-size: cover;
		padding:50px 0 0;
	}
	#menu img.img_sp{
		display: block;
		width: 100%;
		margin-top: -50px;
	}
}

/*=====================================================================================
***************************************************************************************

　　共通設定
		
***************************************************************************************
=====================================================================================*/
#wrapper *{vertical-align: middle;}
#wrapper{position: relative; z-index: 3; width: 100%; overflow: hidden;}
#wrapper > section{max-width: 1435px; width: 100%; margin: 0 auto; background: #e6f1f8;}
#wrapper .main img{width: 100%;}
.cont_box{
	background: #e6f1f8;
	padding: 145px 0 130px;
	text-align: center;
	position: relative;
}
.cont_box h3{
	font-size: 30px;
	width: 100%;
	font-weight: bold;
	position: relative;
	margin-bottom: 30px;
	line-height: 1.5;
}
.cont_box h3 p{z-index: 1; position: relative;}
.cont_box h3 span{
	display: block;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-weight: bold;
	font-size: 80px;
	color: #FFFFFF;
	width: 100%;
	z-index: 0;
}

.nam{
	position: absolute;
	top: 50px;
	right: 50px;
}

.flex_box{display: flex;}

@media screen and (max-width: 1435px){
	.cont_box h3 span{font-size: 6vw;}
	.nam{width: 8%;}
}

@media screen and (max-width: 1000px){
	.nam{display: none;}
}

@media screen and (max-width: 700px){
	br.sp{display: block;}
	#wrapper .main img.pc{display: none;}
	#wrapper .main img.sp{display: inline;}
	.cont_box{padding: 50px 0 60px;}
	.cont_box h3{font-size: 23px; line-height: 1.2; margin-bottom: 15px;}
	.cont_box h3 span{display: none;}
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*=====================================================================================
***************************************************************************************

　　contents01
		
***************************************************************************************
=====================================================================================*/
#contents01 ul{
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	width: 90%;
	margin: 50px auto 0;
}

#contents01 ul li{
	width: 30%;
	background: #004385;
	color: #FFFFFF;
	padding: 50px 35px 60px;
	font-size: 15px;
	text-align: justify;
	position: relative;
}

#contents01 ul li h4{
	text-align: center;
	font-size: 20px;
	color: #c1191f;
}

#contents01 ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #c1191f transparent;
    border-width: 0px 0px 51px 51px;
}

@media screen and (max-width: 800px){
	#contents01 ul{display: block; margin: 30px auto 0;}
	#contents01 ul li{width: 100%; margin-bottom: 20px; padding: 20px 20px 30px;}
	#contents01 ul li h4{margin-bottom: 10px;}
}


/*=====================================================================================
***************************************************************************************

　　contents02
		
***************************************************************************************
=====================================================================================*/
#contents02 .flex_box{
	max-width: 800px;
	width: 90%;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	text-align: justify;
}

#contents02 .flex_box div{width: 50%;}
#contents02 .img_box{padding-left: 58px;}
#contents02 .img_box img{width: 100%;}

@media screen and (max-width: 700px){
	#contents02 .flex_box{display: block;}
	#contents02 .flex_box div{width: 100%;}
	#contents02 .flex_box div.img_box{
		padding-left: 0; 
		margin: 30px auto 0; 
		width: 80%; 
		text-align: center;
	}
}

/*=====================================================================================
***************************************************************************************

　　contents03
		
***************************************************************************************
=====================================================================================*/
#contents03 img.txt_img{max-width: 700px; width: 90%;}

/*=====================================================================================
***************************************************************************************

　　contents04
		
***************************************************************************************
=====================================================================================*/
#contents04 h4{
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
	background: #004385;
	color: #FFFFFF;
	font-size: 29px;
	padding: 5px 10px;
	position: relative;
}

#contents04 h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #c1191f transparent;
    border-width: 0px 0px 35px 35px;
	z-index: 1;
}

#contents04 .box01{
	max-width: 720px;
	width: 90%;
	margin: 20px auto 60px;
	text-align: justify;
	align-items: center;
}
#contents04 .box01 p{padding-left: 40px;}

#contents04 .box02{
	max-width: 700px;
	width: 90%;
	margin: 20px auto 0;
	text-align: justify;
	position: relative;
}
#contents04 .box02 .batu{
	position: absolute;
	color: #b9cdda;
	top: 0;
	left: 42%;
	font-size: 135px;
}

#contents04 .box02 ul{justify-content: space-between;}
#contents04 .box02 ul li{width: 40%; font-size: 13px; letter-spacing: normal;}
#contents04 .box02 ul li img{width: 100%;}
#contents04 .box02 ul li h5{font-size: 18px; margin: 10px auto 0; text-align: center;}

@media screen and (max-width: 800px){
	#contents04 .box02 .batu{font-size: 16vw;}
}

@media screen and (max-width: 700px){
	#contents04 h4{font-size: 20px;}
	#contents04 .box01{display: block; margin: 20px auto;}
	#contents04 .img_box{text-align: center;}
	#contents04 .img_box img{width: 120px;}
	#contents04 .box01 p{padding: 20px 0 0;}
	#contents04 .box02 .batu{font-size: 10vw; left: 45%; top: 20px;}
	#contents04 .box02 ul li{width: 44%;}
}



/*=====================================================================================
***************************************************************************************

　　contents05
		
***************************************************************************************
=====================================================================================*/
#contents05 img.map{
	width: 90%;
	max-width: 1000px;
	padding-top: 20px;
}

/*=====================================================================================
***************************************************************************************

　　contents06
		
***************************************************************************************
=====================================================================================*/
#contents06 .flex_box{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	text-align: justify;
	align-items: center;
}
#contents06 .flex_box div{width: 50%;}
#contents06 .flex_box div.txt_box{padding-left: 50px;}

#contents06 .img_box img{width: 100%;}

#contents06 .movie_box{
	max-width: 680px;
	width: 90%;
	aspect-ratio: 16 / 9;
	position: relative;
	margin: 30px auto 0;
}

#contents06 .movie_box img{
	position: absolute;
	top: -40px;
	right: -40px;
}

#contents06 .movie_box video{
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px){
	#contents06 .flex_box{display: block;}
	#contents06 .flex_box div{width: 100%;}
	#contents06 .flex_box div.txt_box{padding-left: 0; padding-top: 20px;}
	#contents06 .movie_box img{right: 0; top: -20px; width: 70px;}
}



/*=====================================================================================
***************************************************************************************

　　contents07
		
***************************************************************************************
=====================================================================================*/
#contents07 h3{margin-bottom: 80px;}

#contents07 h4{font-size: 25px; margin: 60px auto 30px;}

#contents07 ul li{
	display: inline-block;
	line-height: 1.2;
	font-size: 14px;
	margin: 0 18px;
}
#contents07 ul li p{margin-top: 10px;}

#contents07 .txt_img{max-width: 800px; width: 90%;}
@media screen and (max-width: 700px){
	#contents07 h3{margin-bottom: 30px;}
	#contents07 h4{font-size: 23px;margin: 30px auto 10px;}
	#contents07 ul li{width: 150px; margin: 0 8px 30px;}
	#contents07 ul li img{width: 100%;}
}



/*=====================================================================================
***************************************************************************************

　　contents08
		
***************************************************************************************
=====================================================================================*/
#contents08 ul{
	max-width: 750px;
	width: 90%;
	margin: 0 auto;
}
#contents08 li{
	width: 100%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

#contents08 li span{
	background: #004385;
	color: #FFFFFF;
	font-size: 18px;
	display: block;
	padding: 14px 10px 10px 20px;
	position: relative;
	line-height: 1.1;
	margin-right: 40px;
}
#contents08 li span::after{
    content: "";
    position: absolute;
    top: 0;
    right: -22px;
    display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent #004385;
	border-width: 22px 0px 22px 22px;
}

#contents08 .flex_box{
	border: 1px solid #004385;
	background: #FFFFFF;
	max-width: 750px;
	width: 90%;
	margin: 30px auto 0;
	padding: 15px 35px;
	align-items: center;
	position: relative;
}

#contents08 .flex_box .txt_box{
	text-align: justify;
	font-size: 14px;
	padding-left: 25px;
}

#contents08 .flex_box .txt_box h4{font-size: 20px;}

#contents08 .flex_box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #c1191f transparent;
    border-width: 0px 0px 35px 35px;
	z-index: 1;
}
#contents08 .flex_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #c1191f transparent;
    border-width: 35px 35px 0px 0px ;
	z-index: 1;
}
@media screen and (max-width: 700px){
	#contents08 li{text-align: justify; margin-bottom: 10px;}
	#contents08 li span{
		padding: 10px;
		margin-right: 0;
		font-size: 14px;
		width: 70px;
	}
	#contents08 li span::after{display: none;}
	#contents08 li p{width: calc(100% - 70px); line-height: 1; padding:0 10px;}
	
	#contents08 .flex_box{display: block; padding: 15px 20px;}
	#contents08 .img_box img{width: 100px;}
	#contents08 .flex_box .txt_box{padding-left: 0;}
	#contents08 .flex_box .txt_box h4{font-size: 19px; margin: 10px 0 5px;}
}




/*=====================================================================================
***************************************************************************************

　　contents09
		
***************************************************************************************
=====================================================================================*/
#contents09 .cont_box h3{margin-bottom: 5px;}
#contents09 ul{
	display: flex;
	justify-content: space-between;
	max-width: 920px;
	width: 90%;
	margin: 70px auto 0;
}
#contents09 ul li{
	width: 29%;
	text-align: justify;
	font-size: 13px;
	line-height: 1.5;
}

#contents09 ul li p{margin-top: 10px;}

#contents09 ul li img{width: 100%;}
#contents09 .small{
	font-size: 80%;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 700px){
	#contents09 ul{margin: 30px auto 0; display: block;}
	#contents09 ul li{width: 100%; margin-bottom: 40px;}
	#contents09 ul li img{width: 260px; margin: 0 auto; display: block;}

}


/*=====================================================================================
***************************************************************************************

　　contents10
		
***************************************************************************************
=====================================================================================*/
#contents10 p{margin-bottom: 50px;}
#contents10 .cont_box img{max-width: 536px; width: 90%;}
@media screen and (max-width: 700px){
	#contents10 p{margin-bottom: 30px;}
	#contents10 p.txt{width: 90%; text-align: justify; margin: 0 auto 30px;}
}


/*=====================================================================================
***************************************************************************************

　　movieギャラリー
		
***************************************************************************************
=====================================================================================*/
#wrapper > section#gallery{
	background: #FFFFFF;
	padding: 130px 0 100px;
}

#gallery h3{
	font-size: 30px;
	width: 100%;
	font-weight: bold;
	position: relative;
	margin-bottom: 60px;
	line-height: 1.5;
}
#gallery h3 p{z-index: 1; position: relative;}
#gallery h3 span{
	display: block;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-weight: bold;
	font-size: 80px;
	color: #e6f1f8;
	width: 100%;
	z-index: 0;
}

#gallery .flex_box{
	max-width: 1000px;
	width: 90%;
	text-align: justify;
	font-size: 20px;
	margin: 0 auto;
	justify-content: space-between;
}

#gallery .flex_box div{width: 46%;}
#gallery .flex_box div iframe{
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}


footer{
	color: #FFFFFF;
	background: #004385;
	padding: 50px 20px;
	max-width: 1435px;
	width: 100%; 
	margin: 0 auto;
}

footer a{
	background: #d0111b;
	max-width: 480px;
	width: 45%;
	line-height: 90px;
	border-radius: 45px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 25px;
	box-shadow: 0px 11px 20px 1px rgba(0, 0, 0, 0.3);
	margin: 0 20px;
	position: relative;
}
footer a::after{
	content: "";
	background: url("../img/icon.png") center no-repeat;
	background-size: cover;
	width: 14px;
	height: 23px;
	position: absolute;
	z-index: 1;
	top: 30px;
	right: 40px;
}
footer a:hover{box-shadow:none;}

small{
	display: block;
	font-size: 12px;
	margin: 30px auto 0;
}

@media screen and (max-width: 1000px){
	footer a{
		width: 60%; 
		line-height: 72px; 
		font-size: 20px;
		margin:0 0 20px;
	}
	footer a::after{
		top: 23px;
		right: 30px;
	}
}
@media screen and (max-width: 700px){
	#gallery{padding: 50px 0;}
	#gallery h3{margin-bottom: 20px;}
	#gallery h3 span{display: none;}
	#gallery .flex_box{display: block;}
	#gallery .flex_box div{width: 100%; margin-bottom: 50px;}
	
	footer a{width: 100%;}
}

