body{
	margin: 0 auto;
	color:#2d576b;
}


@-webkit-keyframes zoomUp {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}

@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img { /* 12秒かけて拡大させる */
    -webkit-animation: zoomUp 10s linear 0s;
    animation: zoomUp 12s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slide-img {
    background-size: cover; 
    background-position: center center; /* 背景画像は中央を軸に表示させる */
    height: 800px; /* 600pxの高さで表示させる */
}

.slide-text {
      position: absolute;
      z-index: 10;
      width: 100%;
      top: 45%;
      text-align: center;
}



/*共通*/
hr{
	height: 24px;
	margin: 30px 0;
	border: 0;
	background: url("image/hr02.png") repeat-x 0 0 ;
	opacity: 0.7;
	width: 100%;
}

#con1{
    background-image: url("image/bgimg.png");
	background-repeat: repeat;
    padding: 20px 0 50px 0;
    font-family: "Talking";
	padding-top: 70px;
	letter-spacing: 0.1em;
    margin-bottom:-30px;
    overflow: hidden;
    box-sizing: border-box;
	
}

h1{
	font-weight: bold;
    font-family: "Talking";
}

h3{
    text-align: center;
}

#con2{
    background-image: url("image/bgimgy.jpg");
	background-repeat: repeat;
    padding: 20px 0;
}

.reserv_btn{
	text-align: center;
	color: #FFF;
}

.reserv_btn a{
	color: #FFF;
	text-decoration: none;
}

footer{clear: both;
	padding: 20px 0;
	background-color: #123E26;
	margin: 0 auto;
	color: #FFFFFF;
}

footer p{
	width: 980px;
	margin: 0 auto;
}

.sub_con{
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
}

#price_tb{
	margin: 0 auto;
}

#price_tb th{
    font-size: 1.5em;
	width: 450px;
	padding-bottom: 15px;
}

#price_tb td{
	text-align: left;
	font-size: 1.3em;
	}


.price_time{
 	font-size: 1.1em;
}
.prise_a{
	font-size: 1.1em;
}

.price_b{
	font-size: 1em;
}

.reserve_ul li{
	font-size: 1.1em;
	line-height: 1.5em;
}

#acc_1{
    width: 440px;
    padding: 10px 20px;
    display:block;
    box-sizing: border-box;
    margin:19px auto;
    background-color:rgba(255,255,255,0.50);
}

#rule{
    font-family: "Talking";
}

#time{
    margin-top: -54px;
    margin-left: 130px;
    font-family: "Talking";
    font-size:1.3em;
}

.center_price{
	border-collapse: collapse;
	width: 70%;
	margin: 0 auto;
}

.center_price caption{
	 text-align: left;
	 font-weight: bold;
	 font-size:1.5em;
	 padding-bottom:5px;
}
	
	.center_price th{
	background-color:#A4C09E;
	font-size: 1.4em;
}

	.center_price td{
	background-color:#E5F2D5;
	text-align:center; 
	font-size: 1.4em;
}

#topsec{
	font-size: 2.2em;
	text-align:center;
	line-height: 1.2em;
    padding-top: 30px;
}

#topcontent{
	align-content: center;
	width: 100%;
	background: #e4dcc6;
	margin:0 auto;
　　box-sizing:border-box;
}

hexagon a:hover{
    transform: scale(1.05,1.05);
}

.indu{
    width: 864px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
    background:rgba(255,255,255,0.7);
    padding: 30px 5px;
    }

.indup{
    flex-direction: row;
    width: 283px;
    padding:0 1px;
    margin: 0 auto;
    overflow: hidden;
}

.indup img{
    overflow: hidden;
}

/*y予約ページのポップアップ設定*/
.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 380px;
	height: 240px;
	background-color: #ffffff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 18px;
	margin: 0;
}
.close {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
}