@charset "utf-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
*{
	box-sizing: border-box
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,figure {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
	font-family: sans-serif;
}
html {
	font-size: 62.5%;
	letter-spacing: 2px;
}
body{
	color: #333;
	background-color: #FFF
}
ol, ul {
	list-style: none;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
input[type=text],
input[type=email],
input[type=tel],
textarea{
	border: 1px solid #ccc;
	padding: 12px;
	border-radius: 4px;
	width: 100%;
	outline: none;
	font-size: 1.6rem
	
}
.sp{display: none}
.pc{display: block}
/*------------------------------------------------------------
	Stracture
------------------------------------------------------------*/
.inner{
	width:1100px;
	border-radius: 12px;

	margin: 0 auto 40px auto;
}
#hdr_inner{
	overflow: hidden;
	width: 1100px;
	height: 140px;
	margin: 0 auto;
	position: relative;
}
.inner2{
	width:1100px;
	padding: 30px 0px;
	background: #FFF;
	margin: 0 auto 40px auto;
}
.bg_yellow{

	padding: 30px 0;

}
/*------------------------------------------------------------
	Header
------------------------------------------------------------*/
header{
	z-index: 1;
	position: fixed;
	width: 100%;
	height: 80px;
}
#hdr_logo{
	position: absolute;
	width: 380px;
	top:30px;
	left:30px;
}
#hdr_logo img{
	width: auto;
	height: 100%;
}
#hdr_description{
	position: fixed;
	width:100%;
	height: 30px;
	font-size: 12px;
	background: #FBFFD0;
	padding: 6px 0 0 40px;
	top:0;
}

#hdr_entry{
	display: block;
	position: fixed;
	width: 170px;
	height: 80px;
	background-color:#FFE000;
	color: #333;
	font-size: 1.9rem;
	line-height: 1;
	text-decoration: none;
	padding-left: 0px;
	right: 15px;
	top:10px;
	border-radius: 5px;
	font-weight: bold;
	padding-top: 29px;
	text-align: center;
	z-index: 100;
}
#hdr_entry img{
	vertical-align: middle;
	width: 27px;
	height: auto;
	margin-right: 3px
}
#hdr_entry:hover{
	opacity: 0.95;
}
#confirm #hdr_entry,#thanks #hdr_entry{
	display: none
}
#confirm main,#thanks main{
	padding-top: 60px;
}
/*------------------------------------------------------------
	Footer
------------------------------------------------------------*/
#contact{
	text-align: center;

}
#contact .inner{
	overflow: hidden;
}
#contact .item{
	width: 50%;
	padding: 50px 0;
}
#contact .item h2{
	font-size: 3rem;
	padding-bottom: 5px;
}

#contact .item h2 div{
	font-size: 1.5rem;
	display: block;
	padding-bottom: 5px;
}
#contact .item:first-child{
	float: left;
	border-right: 3px solid #eee;
}
#contact .item:first-child p{
	padding-top: 12px
}
#contact .item:last-child{
	float: right;
}
#contact .item p{
	font-size: 1.6rem;
	margin-bottom: 20px
}
#contact .bdr{
	width: 80px;
}
.btn_contact{
}
footer{
	text-align: center;
	font-size: 1.6rem;
	padding: 30px 0;

}
#ftr_logo{
	width:320px;
	margin: 0 auto 20px auto
}
#ftr_logo img{
	width:90%;
	height: auto;
}
#ftr_address{
	padding-top: 10px;

}
#copyright{
	padding-top: 30px;

}

	
/*------------------------------------------------------------
	Common
------------------------------------------------------------*/

.btn1{
	display: inline-block;
	background:#A80101;
	border: none;
	border-radius: 7px;
	color: #FFF;
	text-decoration: none;
	line-height: 1;
	text-align: center;
	width: 265px;
	padding: 21px 10px 18px 10px;
	font-size: 1.8rem;
	position: relative;
	font-weight: bold
}
.btn1:hover{
	opacity: 0.9;
}
.btn1 span,.btn2 span{
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
	display: block;
	width: 8px;
	height: 20px;
	position: absolute;
	top:18px;
	right: 15px;
	background-image: url("../img/arrow_wh.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.bdr{
	display: block;
	width: 200px;
	height: 3px;
	background:#91C23C;
	margin: 5px auto 0 auto
}
.h1{
	font-size: 3rem;
	text-align: center;
	line-height: 130%;
	margin-bottom: 30px;
}


.edit_btn{ font-size: 1.6rem; }
.center{ text-align: center }
.txt1{font-size: 1.6rem}
.sp{ display: none; }
.pc{ display: block; }
.mb50{ margin-bottom: 50px; }
.mb40{ margin-bottom: 40px; }
.mb30{ margin-bottom: 30px; }
.mb20{ margin-bottom: 20px; }
.mb10{ margin-bottom: 10px; }
.mb5{ margin-bottom: 5px; }
.error{ color: red; }

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/*------------------------------------------------------------
	MV
------------------------------------------------------------*/
#mv{
	text-align: center;
	background: #91C23C;
	z-index: 0;
	position: relative;
	margin-top: 20px;
}
#mv img{
	width: 100%;
	height: auto
}
.btn_line,.btn_entry{
	background-color: #08BA08;
	background-image: url("../img/line.png");
	background-repeat: no-repeat;
	background-size: auto 80%;
	background-position: left 10% center;
	color: #FFF;
	text-decoration: none;
	border-radius: 100px;
	font-size: 22px;
	text-align: center;
	display: inline-block;
	width: 400px;
	margin: 0 5px;
	padding: 16px 0 16px 1%
}
.btn_entry{
	background-color: #91C23C;
	background-image:url("../img/icon_email_wh.svg");
	background-size: auto 60%;
}
.btn_box{
	text-align: center;
	padding: 50px 0;
}
#nav{
	display: flex;
	justify-content: space-between;
	align-items: center
}
#nav li{
	width:25%;
	text-align: center;
	border-bottom: 1px solid #91C23C;
	border-left: 1px solid #91C23C
}
#nav li a{
	display: block;
	font-size: 17px;
	text-decoration: none;
	padding: 14px;
	color: #91C23C;
}
/*------------------------------------------------------------
	募集要項
------------------------------------------------------------*/
#boshu{
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #ccc;
}
.ta1{
	width: 100%;
	margin-bottom:60px;
}
.ta1 td,.ta1 th{
	font-size: 17px;
	padding: 20px 10px;
	vertical-align: top
}
.ta1 th{
	border-bottom: 2px solid #91C23C;
	width: 25%;
	color:#91C23C
}
.ta1 td{
	background: #FFF;
	border-bottom: 2px solid #ccc;
}
/*------------------------------------------------------------
	スケジュール
------------------------------------------------------------*/
#schedule{
	padding: 40px 0;
	border-bottom:1px solid #ccc;
}
#schedule h3{
	font-size: 22px;
	margin-bottom: 10px;
	color: #91C23C
}
.comment{
	display: flex;
	margin-bottom: 40px;
	justify-content: space-between
}
.comment p{
	font-size: 18px;
	line-height: 180%;
	border-radius: 10px;
	background: #E3FBFB;
	padding: 20px 30px;
}
.staff_img{
	margin-left: 10px;
}
.staff_img figure{
	overflow: hidden;
	width: 130px;
	height: 130px;
	border-radius: 100px;
}
.staff_img img{
	width: 100%;
	height: auto
}
.triangle{
  	background-color: #E3FBFB;
  	width: 76px;
  	height: 30px;
  	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	margin-top: 40px;
}
.sbox{
	border: 2px solid #ccc;
	padding: 40px;
	margin-bottom: 20px;
}
.note{
	text-align: right;
	font-size: 20px;
	padding: 0px;
	border-top:1px solid #ccc;
	padding-top:20px;
}

.schedule_list{
	width: 100%;
	padding-bottom: 30px;
}
.schedule_list li{
	display: flex;
	padding:0px 0;
}
.schedule_list span{
	display: block;
	width: 80px;
	font-size: 18px;

}
.schedule_list div{
	text-align: center;
	font-size: 18px;
	width: 90px;
	color: #91C23C;

}
.schedule_list p{
	display: block;
	font-size: 18px;

	width: calc(100% - 170px);
}
.ta3{
	width: 100%;
	border-top: 1px solid #91C23C;
	border-left: 1px solid #91C23C;
}
.ta3 th{
	background: #E3FBFB;
	width: 20%
}
.ta3 th,.ta3 td{
	padding: 15px 10px;
	font-size: 18px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #91C23C;
}

/*------------------------------------------------------------
	FAQ
------------------------------------------------------------*/
#faq{
	padding: 60px 0;	
}
.faq_list{
	
}
.faq_list .item{
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 2px dashed #ccc;
	font-size: 1.6rem;
}
.faq_list .item:last-child{
	border: none;
}
.faq_list h2{
	font-size: 2.3rem;
	margin-bottom: 15px;
}
.qbox,.abox{
	padding-left: 46px;
	position: relative;
}
.qbox{
	padding-top: 3px;
}
.abox{
	padding-top: 6px;
}
.q,.a{
	font-size: 20px;
	font-family: Arial, Helvetica, "sans-serif";
	color: #FFF;
	border-radius: 100px;
	display: inline-block;
	font-weight: bold;
	padding: 8px 0 0 0;
	width: 3.5rem;
	height: 3.5rem;
	text-align: center;
	line-height: 1;
	position: absolute;
	top:0px;
	left: 0px;
}
.q{
	background: #91C23C;
}
.a{
	background: #86A4D4;
}
/*------------------------------------------------------------
	問合せ
------------------------------------------------------------*/
#form{
	background: #E3FBFB;
	padding: 120px 0;
}
#privacy{
	font-size: 1.4rem;
	height: 300px;
	overflow-y: auto;
	width: 100%;
	padding: 15px;
	border: 1px solid #ccc;
	margin-bottom: 30px
}
#privacy p{
	padding-bottom: 15px;
}

.h3{
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	background: #91C23C;
	color: #FFF;
	line-height: 1;
	border-radius: 4px;
	padding: 12px 8px;
}
/*------------------------------------------------------------
	Access
------------------------------------------------------------*/
#access{

}
#access iframe{
	width: 100%;
}
/*------------------------------------------------------------
	Movie
------------------------------------------------------------*/
#movie{
	background: #002253;
	padding: 20px;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*------------------------------------------------------------
	point
------------------------------------------------------------*/
#point{

}
#point ul{
	overflow: hidden
}
#point li{
	border-bottom: 1px solid #ccc;
	overflow: hidden;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
#point h3{
	font-size: 2.1rem;
	margin:0 0 1rem 0; 
}
#point p{
	font-size: 1.7rem;
	line-height: 200%;
}
#point figure{
	display: block;
	float: left;
	width: 48%;
}
#point figure img{
	width: 92%;
	height: auto
}
.pint_txt{
	float: right;
	width: 52%;
}
.pint_txt div{
	margin: 1rem 0 2rem 0;
}
.pint_txt div img{
	width: 100px;
	height: auto
}
/*------------------------------------------------------------
	FLOW
------------------------------------------------------------*/
#reason{

}
.h1_2{
	text-align: center;
	font-size: 4.1rem;
	border: 2px solid #E68F02;
	padding: 30px 0 28px 0;
	border-radius: 100px;
	line-height: 1;
	color: #E68F02;
	background: #FFF
}
ul.flow_list{

}
ul.flow_list li{
	margin-bottom: 15px;
	background: #FFF;
	border-radius: 8px;
	padding: 20px 40px;
	overflow: hidden;
	border: 1px solid #E68F02
}
ul.flow_list .flow_l{
	width: 7%;
	float: left;
}
ul.flow_list .flow_r{
	width: 93%;
	float: right;
	overflow: hidden
}
ul.flow_list h2{
	font-size: 2.4rem;
	width: 22%;
	padding: 10px 0 0 0px;
	float: left;
	color: #E68F02;
	text-align: center;
	line-height: 120%;
}
ul.flow_list p{
	font-size: 1.8rem;
	width: 78%;
	float: right;
	padding-top: 5px;
	display: table-cell;
	visibility: middle;
	vertical-align: middle;
	border-left: 2px solid #eee;
	padding-left: 20px;
}
ul.flow_list .maru{
	font-size: 3.5rem;
	background:#E68F02;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	width: 72px;
	font-weight: bold;
	height: 72px;
	line-height: 1;
	border-radius: 72px;
}
ul.flow_list span{
	font-size: 1rem;
	display: block;
	padding-top: 15px;
	padding-bottom: 4px
}

#manga{
	text-align: center;
	padding-top: 0rem;
	padding: 10px 0;
}


.dummy{
	background: #FFF;
	text-align: center;
	font-size: 2rem;
	padding: 20rem 0;
}
#manga img{

}
.waku{
	background: #FFF;
	padding: 40px;
	border-radius: 15px;

	box-shadow: 5px 5px 0 #ccc;
}
ul.list2{
	overflow: hidden;
	margin-bottom: 0px;
	background: #FFF;
	padding: 40px;
	border-radius: 15px;
	border: 3px solid #E68F02;
	box-shadow: 5px 5px 0 #ccc;
}
ul.list2 li{
	float: left;
	width: 33%;
	padding: 0 8px 25px 8px;
}
ul.list2 h3{
	font-size: 2.1rem;
	margin-bottom: 6px;
	text-align: center
}
ul.list2 figure{
	padding-bottom: 10px;
}
ul.list2 p{
	font-size: 1.7rem
}

.txt1{
	text-align: center;
	font-size: 1.7rem;
	line-height: 180%;
	margin-bottom: 20px;
}
.mbox{
	display: flex;
	margin-bottom: 40px;
	background: #FFF;
	padding: 2rem;
	border: 3px solid #E68F02;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.mbox figure{
	display: block;
	width: 50%;
}
.mbox_txt {
	width: 50%;
	padding-left: 3%
}
.mbox_txt p{
	font-size: 1.7rem;
	line-height: 200%;
	margin-bottom: 20px;
}



.list3{
	overflow: hidden
}
.list3 li{
	width:33.3%;
	float: left;
	padding: 4px;
	margin-bottom: 15px;
}
.list3 li:nth-child(3n+1){
	clear: both
}
.list3 figure{
	display: block;
	margin: 0 0 1rem 0;
}
.list3 figure img{
	width: 100%;
	height: auto
}
.list3 h3{
	font-size: 2rem;
	border-bottom: 1px solid #333;
	text-align: center;
	padding-bottom: 5px;
	margin-bottom: 5px
}
.list3 p{
	font-size: 1.6rem
}
.gbox{
	font-size: 1.9rem;
	padding: 3rem;
	border-radius: 10px;
	background:#E8F0E3;
	text-align: center;
	margin-bottom: 3rem
}

.biko{
	font-size: 1.3rem;
	padding-top: 0.5rem
}
.swiper {
	margin-bottom: 70px;
}
.swiper-slide{
	width: 25%;
	height: 300px;
}
.swiper img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.exp{

	font-size: 1.7rem;
	margin: 0 0 30px 0;
}
.tbox{
	overflow: hidden;
	margin-bottom: 30px;
}
.tbox li{
	float: left;
	width: 20%;
	text-align: center;
	padding-bottom: 10px;
}
.tbox li:nth-child(5n+1){
	clear: both
}
.tbox li img{
	width: 94%;
	height: auto;
}
.tbox li p{
	font-size: 1.5rem;
	padding-top: 10px;
}
.ybox{
	padding: 2rem;
	background: #FCF9DC;
	font-size: 1.7rem;
	text-align: center
}
.h2-anime {
    font-size: 4.3rem;
    line-height: 1.3;
    text-align: center;
    color: #00c8c8;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 2px;
    background: -webkit-linear-gradient(60deg, #91C23C, #3b7ab1, #58d2da, #6fc8c3);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textAnime 5s infinite;
    margin-bottom: 30px
}
@keyframes textAnime {
  0%, 100% {
    background-position: 0 50%
  }
  50% {
    background-position: 100% 50%
  }
}
.h2-anime {
	-webkit-font-feature-settings: 'pkna';
	-webkit-text-fill-color: transparent
}
@media screen and (max-width: 768px) {
  .h2-anime {
    font-size: 3rem;
    margin-bottom: 30px
  }
}


.box-0{
	margin-bottom: 80px;
}
.box-0 p{
	font-size: 19px;
	text-align: center;
	line-height: 180%;
}
		
.box-1{
	margin-bottom: 40px;
	padding-top: 40px;
}

.box-1 p{
	font-size: 19px;
	margin-bottom:80px;
	text-align: center;
	line-height: 180%;
}
.list-1{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

}
.list-1 li{
	width: 49%;
	background:#F7FEFF;
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 30px 25px;
	margin-bottom: 15px;
	box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}
.list-1 li h3{
	text-align: center;
	font-size: 22px;
	margin-bottom: 8px;
	color: #1FAD51
}
.list-1 li p{
	font-size: 17px;
	line-height: 200%;
	
}
.list-1 li p strong{
  font-weight: 600;
  color: #00c3c7;
  background: linear-gradient(transparent 60%, #edff88 0)
}
.high_light{
  font-weight: 600;
  color: #00c3c7;
  background: linear-gradient(transparent 60%, #edff88 0)
}
.list-2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list-2 li{
	width: 47%;
	margin-bottom: 54px;
}
.list-2 li figure{
	margin-bottom: 12px;
}
.list-2 li img{
	width: 100%;
	height: auto;
}
.list-2 li h3{
	font-size: 16px;
	margin-bottom: 6px;
}
.list-2 li p{
	font-size: 18px;
	line-height: 180%;
}


#shop{
	padding: 40px 0 40px 0;
	border-bottom: 1px solid #ccc;
}	
.shop_info{
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
	padding-bottom: 70px;
	border-bottom: 1px solid #ccc;
}
.shop_info:last-of-type{
	border: none;
	padding-bottom: 0;
}
.shop_info .item1{
	width: 39%
}
.shop_info .item2{
	width: 57%
}
.shop_info .item1 img{
	width: 100%;
	height: auto
}
.shop_info h2{
	font-size: 22px;
	margin-bottom: 10px;
	color: #91C23C
}
.ta2{
	width: 100%;

}

.ta2 th,.ta2 td{
	padding: 15px 10px;
	font-size: 18px;
	border-bottom: 1px solid #91C23C;

}



.imgbox{
	width: 1200px;
	margin: 0 auto;
	text-align: center
}
@media screen and (max-width: 768px) {

.sp{ display: block; }
.pc{ display: none; }


/*------------------------------------------------------------
	Stracture
------------------------------------------------------------*/
.inner{
	width: 98%;
	padding: 20px;
	margin: 0 auto 30px auto;
}
.inner2{
	width: 90%;
	padding: 20px 0;
	margin: 0 auto;
}

/*------------------------------------------------------------
	Header
------------------------------------------------------------*/
header{
	min-width: 100%;
	height: 80px;
}
#confirm main,#thanks main{
	padding-top: 40px;
}
#hdr_entry{
	width: 115px;
	font-size: 1.6rem;
	height: 40px;
	right: 5px;
	top:35px;
	border-radius: 5px;
	padding-top: 12px;
	text-align: center;

}
#hdr_entry img{
	width: 18px;
	height: auto
}
#hdr_description{
	width:100%;
	height: 30px;
	font-size: 12px;
	padding: 6px 0 0 10px;
}
	
.btn_line,.btn_entry{
	font-size: 22px;
	width:100%;
	margin: 0 0 5px 0;
	padding: 12px 0 12px 1%
}

.btn_box{
	padding: 40px 0 0px 0;
}
	

#nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap
}
#nav li{
	width:50%;
	text-align: center;
	border-bottom: 1px solid #91C23C;
	border-left: 1px solid #91C23C
}
#nav li a{
	display: block;
	font-size: 15px;
	text-decoration: none;
	padding: 5px;
	color: #91C23C;
}
.sp-left{
	text-align: left !important
	}
.list-1{

	flex-wrap:wrap;
}
.list-1 li{
	width: 100%;
	padding-bottom: 50px;
}
.list-1 li h3{
	text-align: center;
	font-size: 22px;
	margin-bottom: 5px;
	color: #91C23C;
	line-height: 140%;
}
.list-1 li p{
	font-size: 17px;
	line-height: 200%;
	
}
.list-1 li p strong{
  font-weight: 600;
  color: #00c3c7;
  background: linear-gradient(transparent 60%, #edff88 0)
}
.list-2{
	justify-content: space-between;
	flex-wrap: wrap;
}
.list-2 li{
	width: 100%;
	margin-bottom: 54px;
}
.list-2 li figure{
	margin-bottom: 12px;
}
.list-2 li img{
	width: 100%;
	height: auto;
}
.list-2 li h3{
	font-size: 16px;
	margin-bottom: 6px;
}
.list-2 li p{
	font-size: 18px;
	line-height: 140%;
}
/*------------------------------------------------------------
	Footer
------------------------------------------------------------*/
footer{
	background: #FFF
	}
#contact .inner{
	display: block;
}
#contact .item{
	width: 100%;
	padding: 10px 0;
}
#contact .item:first-child{
	padding: 0px 0 0px 0;
	border: none
}
#contact .item:last-child{
	padding: 0px 0 15px 0;
}
#contact .item h2{
	font-size: 2.3rem;
	padding-bottom: 5px;
}
/*------------------------------------------------------------
	Common
------------------------------------------------------------*/
.h1{
	font-size: 2rem;
	text-align: center;
	padding: 15px;
	margin-bottom: 10px
}

/*------------------------------------------------------------
	MV
------------------------------------------------------------*/
#mv{
	margin-top: 30px;
}
#mv img{
	max-width: 100%;
}

/*------------------------------------------------------------
	スケジュール
------------------------------------------------------------*/
#schedule{
	padding: 20px 0;
}
#schedule h3{
	font-size: 22px;
	margin-bottom: 10px;
}
.comment{
	display: flex;
	margin-bottom: 40px;
	justify-content: space-between
}
.comment p{
	font-size: 18px;
	line-height: 180%;
	border-radius: 10px;
	background: #E3FBFB;
	padding: 10px 20px;
}
.staff_img{
	margin-left: 10px;
}
.staff_img figure{
	overflow: hidden;
	width: 60px;
	height: 60px;
	border-radius: 100px;
}
.staff_img img{
	width: 100%;
	height: auto
}
.triangle{
  	background-color: #E3FBFB;
  	width: 76px;
  	height: 30px;
  	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	margin-top: 40px;
}
.sbox{
	border: 2px solid #ccc;
	padding: 20px;
	margin-bottom: 20px;
}
.note{
	text-align: right;
	font-size: 16px;
	padding: 0px;
	border-top:1px solid #ccc;
	padding-top:20px;
}

.schedule_list{
	width: 100%;
	padding-bottom: 10px;
	display: table
}
.schedule_list li{
	display: table-row;
	padding:0px 0;

}
.schedule_list span{
	display: table-cell;
	width: 70px;
	font-size: 16px;
	vertical-align: top;
}
.schedule_list div{
	display: table-cell;
	font-size: 18px;
	width:40px;
	vertical-align: top;
}
.schedule_list p{
	display: table-cell;
	font-size: 17px;
	vertical-align: top;
	line-height: 130%;
}
.ta3{
	width: 100%;
	border-top: 1px solid #91C23C;
	border-left: 1px solid #91C23C;
}
.ta3 th{
	background: #E3FBFB;
	width: 20%;

}
.ta3 th,.ta3 td{
	padding: 15px 10px;
	font-size: 17px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #91C23C;
}

/*------------------------------------------------------------
	FAQ
------------------------------------------------------------*/

.faq_list h2{
	font-size: 1.8rem;
	margin-bottom: 15px;
}

ul.list2{
	overflow: hidden;
	margin-bottom: 0px;
	padding: 15px
}
ul.list2 li{
	float: left;
	width: 100%;
	padding: 0 0 20px 0;
}
ul.list2 h3{
	font-size: 2.1rem;
	margin-bottom: 6px;
}
ul.list2 figure img{
	width: 100%;
	height: auto
}



#shop{
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #ccc;
}	
.shop_info{
	display: block;
	justify-content: space-between;
	margin-bottom: 70px;
	padding-bottom: 70px;
	border-bottom: 1px solid #ccc;
}
.shop_info:last-of-type{
	border: none;
	padding-bottom: 0;
}
.shop_info .item1{
	width: 100%;
	margin-bottom: 10px;
}
.shop_info .item2{
	width: 100%;

}
.shop_info .item1 img{
	width: 100%;
	height: auto
}
.shop_info h2{
	font-size: 22px;
	margin-bottom: 10px;
	text-align: center;
	line-height: 130%;
}
.ta2{
	width: 100%;

}

.ta2 th,.ta2 td{
	padding: 15px 10px;
	font-size: 18px;
	border-bottom: 1px solid #91C23C;

}

#boshu{
	padding-bottom: 20px;
	margin-bottom: 0px;

}
#form{
	background: #E3FBFB;
	padding: 60px 0 0px 0;
}
.imgbox{
	width: 95%;
}
.box-0{
	margin-bottom: 0px;
}
.ta1{
	width: 100%;
	margin-bottom:60px;
}
.ta1 td,.ta1 th{
	font-size: 16px;
	padding: 20px 10px;
	vertical-align: top;
	display: block;
	width: 100%
}
.ta1 th{
	border-bottom: 2px solid #91C23C;
	padding: 5px 10px;
	color:#91C23C;
	background-color: rgba(246,255,230,1.00)
}
.ta1 td{
	background: #FFF;
	border-bottom: 2px solid #ccc;
}
.bg_yellow{

	padding: 0 0 30px 0;

}
}