@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Modern+Antiqua);

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font: 14px/1.9  游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #333333;
	background: #f9f9f9;
}

a{
	color: #a58f54;
	text-decoration: none;
}

a:hover, .active{
  text-decoration: underline;
}

a:active, a:focus,input:active, input:focus{outline:0;}
.mgl-10{margin-left: 10px;}
.mgl-20{margin-left: 20px;}
.mgl-30{margin-left: 30px;}
.mgl-40{margin-left: 40px;}
.mgr-10{margin-righe: 10px;}
.mgr-20{margin-righe: 20px;}
.mgr-30{margin-righe: 30px;}
.mgr-40{margin-righe: 40px;}

.f12{font-size: 12px;}
.f14{font-size: 14px;}
.f16{font-size: 16px;}
.f18{font-size: 18px;}
.f20{font-size: 20px;}
.f22{font-size: 22px;}
.f24{font-size: 24px;}

/* ヘッダー
------------------------------------------------------------*/
#mainnav a{
	color: #000;
}

/* フッター
------------------------------------------------------------*/
#footer{
	clear: both;
	text-align: center;
	font-size: 12px;
}


/* 共通
------------------------------------------------------------*/
h1, h2{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

img{
	max-width: 100%;
	height: auto;
}

section{
  clear: both;
padding-top: 3rem;
}

section h2{
	width: 60%;
	font-size: 24px;
	font-weight:bold;
	margin: 0 auto;
    text-align: center;
    letter-spacing: 0.2rem;
}

.inner{
	margin: 0 auto;
}


.line img{
	width: 120px;
    margin: 10px auto;
    margin: 10px auto;
    display: block;}
#calendarTitle{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"!important;
}

.googlemaps iframe,
.googlemaps object,
.googlemaps embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all  0.7s ease;
}

.googlemaps iframe:hover,
.googlemaps object:hover,
.googlemaps embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
  position:absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  bottom:10px;
    /*全体の高さ*/
  height:50px;
  z-index: 1;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.5s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}


/* LORDING 
------------------------------------------------------------*/

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#000;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:200px;
}

/* fadeInをするアイコンの動き */
.fadeIn{
/*animation-name: fadeUpAnime;*/
animation-name: fadeInAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* /// slide /// */
	.full a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  text-decoration: none;
}
.full a.img01 {
  background-image: url("../images/mainImg.jpg");
}
.full a.img02 {
  background-image: url("../images/mainImg02.jpg");
}
.full a.img03 {
  background-image: url("../images/mainImg03.jpg");
}
.full .slick-dots {
   display: none!important;
}
/* /// slide /// */

/* slide roop*/
	#imagespace{}
	#imagespace .wrap {
	  display: flex;
	  align-items: center;
	 overflow: hidden;
	}

	#imagespace .slideshow {
	  display: flex;
	}
	#imagespace .slideshow li{
		margin: 0 10px;
	}
	#imagespace .content {
	 width: 360px;
    height: 240px;
	}

	#imagespace .content:nth-child(1) {
	  background-image: url("../images/img_roop01.jpg");
	}

	#imagespace .content:nth-child(2) {
	  background-image: url("../images/img_roop02.jpg");
	}

	#imagespace .content:nth-child(3) {
	 background-image: url("../images/img_roop03.jpg");
	}

	#imagespace .content:nth-child(4) {
	  background-image: url("../images/img_roop04.jpg");
	}
	#imagespace .content:nth-child(5) {
	  background-image: url("../images/img_roop05.jpg");
	}
	#imagespace .content:nth-child(6) {
	 background-image: url("../images/img_roop06.jpg");
	}
	#imagespace .content:nth-child(7) {
	  background-image: url("../images/img_roop07.jpg");
	}
	#imagespace .content:nth-child(8) {
	  background-image: url("../images/img_roop08.jpg");
	}
	#imagespace .content:nth-child(9) {
	  background-image: url("../images/img_roop09.jpg");
	}
	#imagespace .content:nth-child(10) {
	  background-image: url("../images/img_roop10.jpg");
	}
	#imagespace .slideshow {
	  display: flex;
	  animation: loop-slide 100s infinite linear 1s both;
	}

	@keyframes loop-slide {
	  from {
		transform: translateX(0);
	  }
	  to {
		transform: translateX(-100%);
	  }
	} 

/* SEC02 
------------------------------------------------------------*/
#sec02 {
	background: #f1f1f1;
	margin-top: 20px;
}

#sec02 h2{
	margin: 0 auto;
    text-align: center;
	letter-spacing: 0.2rem;
}
#sec02 .inner{
	padding: 40px;
}

/* SEC03 BRAND
------------------------------------------------------------*/
.col4 .img{
	margin: 0 auto;
}





/* SEC04 アクセス
------------------------------------------------------------*/


#sec04{
	margin-top: 20px;
}
#map{
	position: relative;
    height: 240px;
    overflow: hidden;
    z-index: 0;
}
#map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}




/* RESPONSIVE 設定
------------------------------------------------------------*/
/*800px以上*/

@media only screen and (min-width: 800px){
	body{
		font-size:14px;
	}
	
	#wrapper{
		width: 100%;
	}
	.scroll-fade{opacity: 0; transition: all 1s/*処理にかかる時間*/;}
.scroll-up{opacity: 0; transform: translateY(50px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
.scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.load-fade {opacity : 0; transition : all 1s/*処理にかかる時間*/;}
.load-up{opacity: 0; transform: translateY(50px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
.load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}
.load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}
	#content{
    margin-left: 240px;
	}
	h2{font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"}
	#mainnav a{
	display: inline-block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	font-weight: bold;
	}
#mainnav a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

#mainnav a:hover:after {
  transform: translate(0, 0);
}
.sp{display: none;}
/*  /// 生徒募集ボタン /// */
.btn_taiken{
	position: relative;
    width: 120px;
    z-index: 1;
    top: -30px;
	}
	.btn_taiken a{
	display: block;
	transition: .3s;
	}
	.btn_taiken a:hover{
	transform: rotate(-10deg);
	}
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
/*  /// scroll box /// */
.parallax{
  box-sizing: border-box;
  color: #FFF;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5%;
}
.parallax-bg {
  background-image: url("../images/bg_scroll2.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}
	.parallax-bg2 {
  background-image: url(../images/bg_scroll.jpg);
    background-attachment: fixed;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}


	
.catch_copy{
	position: absolute;
    width: 180px;
    z-index: 1;
    right: 140px;
    top: 100px;
}
	
	

	#sidebar{
	width: 180px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    padding-left: 60px;
	z-index: 1;
	}
	#sidebarWrap{
		
	}
  a#menu{
		display:none;
	}	

	.panel{
		display:block !important;
		margin-top: 20px;
	}

	#sidebar .panel .navispace li{}
	#sidebar h1{
		padding: 40px 0;
	}

	#mainnav li{
		font-size: 14px;
    	padding-bottom: 10px;
	}
	
	#sns{
		margin-top: 50px;
	}
	
	#sns li{
		display: inline-block;
		padding-right: 10px;
	}

	#sns a:hover img{
		opacity: .8;
	}
	
	#sidebar .add{
    position: absolute;
    bottom: 30px;
    left: 40px;
	}
	#sidebar .add li{padding: 0;}
	#sidebar .add li p{
		font-size: 11px;
	}
	#sidebar .add li span{}
	#sidebar .add .tel p{
		font-size: 14px;
	}
	#sidebar .add .copy p{font-size: 10px; margin-top: 10px;}
	
	/* SEC01 MESSAGE 
	-----------------*/
	#sec01{
	width: 840px;
	height: 510px;
    margin: 0 auto;
	margin-top: 20px;
	}
	#sec01 h2{
	writing-mode: vertical-rl;
    width: 6%;
    margin-left: 120px;
    text-align: initial;
    display: inline-block;
    letter-spacing: 0.2em;
    margin-top: 80px;
	font-weight: normal;
	}
	#sec01 .innerS{
	width: 60%;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;
    line-height: 3;
    letter-spacing: 2px;
    margin-top: -346px;
	}
	#sec01 .innerS .mame{display: block;}
	#sec01 .innerS .mame img{
	width: 8%;
    position: relative;
    top: -30px;
	}
	#sec01 .cup img{
	width: 126px;
    position: relative;
    z-index: 1;
    top: -1.5rem;
    left: -3rem;
	}
	
	/* SEC02 ご案内 */

#sec02 .col3{
	width: 100%;
    margin: 0 auto;
    position: relative;
    top: -120px;
}
#sec02 .col3 li{
	width: 28%;
    display: inline-block;
    margin: 20px;
    vertical-align: top;
}
#sec02 .col3 li .img img{transition: all 0.3s;}
#sec02 .col3 li .img img:hover{
	border-radius: 0;
}
#sec02 .col3 img{ border-radius: 20px;}
#sec02 .col3 h3{
	font-size: 20px;
	letter-spacing: 0.06rem;
}
#sec02 .col3 p{
	margin-top: 16px;
	height: 130px;
}
#sec02 .col3 .btn{
	float: right;
	color: #333;
	text-decoration: none;
}
#sec02 .col3 .btn:hover{
	color: #333;
	transition:.3s;
}
#sec02 .col3 a span{
	position: relative;
    padding-left: 15px;
    bottom: -12px;
}
#sec02 .col3 span img{
	width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    border: solid 1px #fff;
    padding: 0.5rem;
	transition:.3s;
}
#sec02 .col3 span img:hover{
	background: #fff;
	transform: rotate(-10deg);
}
#sec02 .wara{font-size: 11px; color: #49a780;}
	
	/* SEC03 お知らせ・スケジュール
	-----------------*/
	#sec03{
	    margin-top: 30px;
	    margin-bottom: 100px;
}
	#sec03 .news{
	width: 65%;
    text-align: center;
    margin: 60px auto;
    /* border: 6px solid #fff; */
    padding: 60px 10px;
    letter-spacing: 0.1rem;
    line-height: 2.3;
    background: #fff;
    font-size: 16px;
	}
	#sec03 .schedule{
	margin: 0 auto;
    width: 800px;
	margin-top: 80px;
	}
	.googleCalendar iframe {
	width: 100%;
    height: 600px;
	}
	
	
	/* アクセス
	-----------------*/
	.col2 li{
	display: inline-block;
    width: 47%;
	}
	.col2 li:first-child{
    padding: 5%;
    width: 40%;
	}
	#sec04 .col2 li{
		
	}
	#sec04 .col2 h3{
	margin-bottom: 40px;
	font-size: 18px;
    letter-spacing: 0.1rem;
	}

	#sec04 p{
	margin-bottom: 5px;
}
	
	#map iframe{
		height: 300px !important;
  }
	
  #footer{
	}
}

/* 641px以上 */
@media only screen and (min-width: 641px){
	

}
/* 640pxまで */
@media only screen and (max-width: 640px){
	.innerS{
		width: 94%;
		padding-bottom: 30px;
	}
	#gallery li{
		float: none;
		width: 100%;
	}
	.article img{
		float: none;
		display: block;
		margin: 0 auto 20px;
	}
	#map iframe{
		width: 96% !important;
		left: 2%;
	}
	
	/*  /// 生徒募集ボタン /// */
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    margin-top: 15px;
    position: absolute;
    z-index: 1;
    width: 150px;
    bottom: 50px;
    right: 50px;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }

}
	

	
	
}
/* 799pxまで */
@media only screen and (max-width: 799px){
/* main Image */
.pc{ display: none;}
#sidebar{
		position: fixed;
		width: 100%;
		z-index:500;
	}
.catch_copy{
	position: absolute;
    width: 50%;
    z-index: 1;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}	
/* /main Image */

/* -----SP FOOTE-----*/
/* SEC05*/
	#sec05{
	text-align: center;
    padding: 0;
    background: #fff;
    padding: 10px;
	}
	#sec05 ul{}
	#sec05 ul li{
	margin: 5px;
    border: 1px solid #eee;
    padding: 16px;
    width: 37%;
    display: inline-block;
	}
	
	
/* googleCalendar */
.googleCalendar iframe{
	height: 400px;
    width: 90%;
    margin: 0 auto;
    display: block;
    padding-top: 40px;
	}
/* sec01*/
	#sec01 h2{
	width: 90%;
    margin-left: 120px;
    text-align: center;
    letter-spacing: 0.2em;
    margin: 0 auto;
    font-weight: normal;
    padding-bottom: 40px;
    font-size: 20px;
	font-weight: bold;
	}
#sec01 .innerS .mame{display: block;}
	#sec01 .innerS .mame img{
	width: 30px;
    margin: 0 auto;
    display: block;
    padding-bottom: 40px;
	}
	#sec01 .cup img{
	width: 124px;
    z-index: 1;
    margin: 0 auto;
    display: block;
	padding-bottom: 50px;
	}
	#sec01 .innerS {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 40px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 2px;
	font-size: 15px;
}
	#imagespace .content {
    width: 240px;
    height: 180px;
}
	
	#sidebarWrap{
		position: relative;
		width: 100%;
		height: 60px;
		background: #fff;
	}
	
	#sidebar h1{
		text-align: center;
		padding-top: 10px;
		z-index: 10;
		position: relative;
		width: 50%;
    	margin: 0 auto;
	}
	
	#sidebar h1 img{
		width: auto !important;
		max-height: 40px;
	}
	
  a#menu{
  	display: inline-block;
    position: relative;
    width: 60px;
    height: 40px;
    margin: 10px;
	}

	#menuBtn{
  	display: block;
  	position: absolute;
  	top: 20%;
  	left: 50%;
  	width: 30px;
  	height: 2px;
  	margin: -1px 0 0 -7px;
  	background: #000;
  	transition: .2s;
	}
	
	#menuBtn:before, #menuBtn:after{
  	display: block;
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 0;
  	width: 30px;
  	height: 2px;
  	background: #000;
  	transition: .3s;
	}

	#menuBtn:before{
  	margin-top: -7px;
	}

	#menuBtn:after{
  	margin-top: 5px;
	}

	a#menu .close{
  	background: transparent;
	}

	a#menu .close:before, a#menu .close:after{
  	margin-top: 0;
	}

	a#menu .close:before{
  	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	}

	a#menu .close:after{
  	transform: rotate(-135deg);
  	-webkit-transform: rotate(-135deg);
	}

	.panel{
		width: 100%;
		display: none;
		overflow: hidden;
		position: relative;
		left: 0;
		top: -10px;
	}

	#mainnav{
	position: absolute;
		top: 0;
		width: 100%;
		text-align: right;
		z-index: 1;
	}
	#menuWrap .text{
	display: block;
    font-size: 11px!important;
	font-weight: bold;
    position: absolute;
    right: 10px;
    top: 33px;
    letter-spacing: 1px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"
	}
	#mainnav ul{
		background: #fff;
		text-align: left;
	}

	#mainnav li a{
		position: relative;
		display: block;
		padding: 15px 25px;
		border-bottom: 1px solid #000;
		color: #000;
		font-weight: bold;
	}
	#mainnav li a:before{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 5px;
		width: 6px;
		height: 6px;
		margin: -4px 0 0 0;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#mainnav #sns li{
		display: inline-block;
	}
	#mainnav #sns li a{
		position: relative;
		display: inline-block;
		padding: 15px 10px 0;
		border: 0;
	}
	#mainnav #sns li a:before{
		border: 0;
	}
/* sec02*/
	
#sec02 .col3{
	width: 100%;
}
#sec02 .col3 li{
	width: 100%;
	margin-bottom: 40px;
}
#sec02 .col3 li .img img{transition: all 0.3s; width: 100%;}
#sec02 .col3 li .img img:hover{
	border-radius: 0;
}
#sec02 .col3 img{ border-radius: 20px;}
#sec02 .col3 h3{
	font-size: 20px;
	letter-spacing: 0.06rem;
}
#sec02 .col3 p{
	margin-top: 16px;
}
#sec02 .col3 .btn{
	color: #333;
	text-decoration: none;
}
#sec02 .col3 .btn:hover{
	color: #333;
	transition:.3s;
}
#sec02 .col3 a span{
	position: relative;
    padding-left: 15px;
    bottom: -12px;
}
#sec02 .col3 span img{
	width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    border: solid 1px #fff;
    padding: 0.5rem;
	transition:.3s;
}
#sec02 .col3 span img:hover{
	background: #fff;
	transform: rotate(-10deg);
}
#sec02 .wara{font-size: 11px; color: #49a780;}
	.col4 li{
		margin: 0 auto 50px;
		display: block;
		text-align: center;
	}
/*  /// 生徒募集ボタン /// */
#sec02 .btn_taiken{
	position: relative;
    width: 110px;
    z-index: 1;
    top: 120px;
    left: 20px;
	}
#sec02 .btn_taiken a{
	display: block;
	transition: .3s;
	}
#sec02 .btn_taiken a:hover{
	transform: rotate(-10deg);
	}
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
/* SEC03*/
#sec03 .news{
	width: 60%;
    text-align: left;
    margin: 40px auto;
	margin-bottom: 60px;
    padding: 8%;
    letter-spacing: 0.1rem;
    line-height: 1.8;
	background: #fff;
	}
/* SEC04 */
	.col2 .add h3{
		letter-spacing: 1px;
		font-size: 16px;
	}
	.col2 .add{
		margin: 20px;
	}
	.col2 li img{
    width: 100%;
	margin-top: 40px;
	}
#sec03 .schedule p{
	text-align: center;
    margin-top: 40px;
	}
}

/* 640pxまで */
@media only screen and (max-width: 640px){

/* -----SP FOOTE-----*/
/* SEC05*/
	#sec05{
	text-align: center;
    padding: 0;
    background: #fff;
    padding: 10px;
	}
	#sec05 ul{}
	#sec05 ul li{
	margin: 5px;
    border: 1px solid #eee;
    padding: 16px;
    width: 35%;
    display: inline-block;
	}
	
}