/*

    Template Name   : Seiyukan ASHIBETSU familysummer_LP
    
    *****************************************
    
*/

body {
	background: #fff;
	font-family: 'Sawarabi Gothic', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	padding: 0;
	margin: 0;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}
button {
	-webkit-appearance: none;
}
/*  汎用スタイル  */

.clear { clear: left; }
.color1 { color: #FF0000; }
.color2 { color: #1D2A5A; }
.color3 { color: #BE272D; }
.color4 { color: #687e4d; }

.mb5 { margin-bottom: 5px; }
.mb10 {	margin-bottom: 10px;}
.mb15 {	margin-bottom: 15px;}
.mb20 {	margin-bottom: 20px;}
.mb30 {	margin-bottom: 30px;}
.mb40 {	margin-bottom: 40px;}
.mb50 {	margin-bottom: 50px;}

.pc_on {display: inline;}
.sp_on {display: none;}

#news {
    margin-top: -100px;
    padding-top: 100px;
}

/*  共通  */
.contents_title {
	font-size: 43px;
	color: #1D2A5A;
	font-weight: bold;
	text-align: center;
	margin: 0 auto 50px auto;
}
.contents_title span {
	display: block;
	font-size: 23px;
	color: #000;
	font-weight: normal;
}
.underline {
	text-decoration: underline;
}
.link_btn a {
    border: 1px solid #000;
    padding: 5px 20px;
    color: #000;
    font-size: 18px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}
.link_btn a:hover {
	border: 1px solid #1D2A5A;
	background-color:  #1D2A5A;
	color: #fff;
}



.row{
	max-width: 1200px;
	padding: 0 0px;
	margin-bottom: 30px;
	text-align: center;
}


/*==================================================
block1スライダー
===================================*/
#block1 ul.block1_slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 94%;
    max-width: 1200px;
    margin: 30px auto 50px auto;
    padding: 0;
    list-style: none;
}

#block1 ul.block1_slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

#block1 ul.block1_slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
#block1 .slick-prev, 
#block1 .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 40%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    height: 15px;
    width: 15px;
}

#block1 .slick-prev {/*戻る矢印の位置と形状*/
    left: -5.5%;
    transform: rotate(-135deg);
}

#block1 .slick-next {/*次へ矢印の位置と形状*/
    right: -5.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

#block1 .slick-dots {
	text-align: center;
	margin: 20px auto 0 auto;
	padding: 0;
	display: flex;
	justify-content: center;
}

#block1 .slick-dots li {
	display:inline-block;
	margin:0 5px;
	padding: 0;
	box-sizing: border-box;
}

#block1 .slick-dots button {
    color: transparent;
    outline: none;
    padding: 5px 9px;
    text-align: center;
    /*width: auto;
    height: auto;*/
    display: inline-block;
    /*border-radius: 50%;*/
    border: none;
    /*background: #DFDCD2;/*ドットボタンの色*/
    background: transparent;
    background-image: url(../img/block1/b02.png);
    background-repeat: no-repeat;
    background-position: center;
}

#block1 .slick-dots .slick-active button {
    background-repeat: no-repeat;
}

/*==================================================
block2スライダー
===================================*/
#block2 ul.block2_slider {
    margin: 95px auto 80px auto;
    padding: 0;
}
#block2 ul.block2_slider img {
    /*width:60vw;スライダー内の画像を60vwにしてレスポンシブ化*/
    width: 100vw;
    height: auto;
    margin: 0 auto;
}

#block2 ul.block2_slider .slick-slide {
  /*transform: scale(0.9);   /*左右の画像のサイズを80%に*/
  /*transition: all .5s;   /*拡大や透過のアニメーションを0.5秒で行う*/
  /*opacity: 0.5;   /*透過50%*/
    transform: scale(1);
    transition: all .5s;
    opacity: 1;
    background-color: #fff;
    margin: 0 30px;
    padding: 10px 70px 20px;
    max-width: 740px;
}
#block2 .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}


#block2 ul.block2_slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/

}

#block2 .slick-prev, 
#block2 .slick-next {
    display: none;
}
#block2 .slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

#block2 .slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

#block2 .slick-dots {
    text-align:center;
    margin:20px auto 0 auto;
    padding: 0;
}

#block2 .slick-dots li {
	display:inline-block;
	margin:0 5px;
	padding: 0;
	box-sizing: border-box;
}

#block2 .slick-dots button {
    color: transparent;
    outline: none;
    padding: 5px 9px;
    /*width: 16px;
    height: 16px;*/
    display: inline-block;
    /*border-radius: 50%;*/
    border: none;
}

#block2 .slick-dots .slick-active button {
    background-repeat: no-repeat;
}
/*==================================================
block7スライダー
===================================*/
#block7 ul.block7_slider {
    margin: 40px auto 80px auto;
    padding: 0;
}
#block7 ul.block7_slider img {
    /*width:60vw;スライダー内の画像を60vwにしてレスポンシブ化*/
    width: 100vw;
    height: auto;
    margin: 0 auto;
}

#block7 ul.block7_slider .slick-slide {
  /*transform: scale(0.9);   /*左右の画像のサイズを80%に*/
  /*transition: all .5s;   /*拡大や透過のアニメーションを0.5秒で行う*/
  /*opacity: 0.5;   /*透過50%*/
    transform: scale(1);
    transition: all .5s;
    opacity: 1;
    background-color: #fff;
    margin: 0 30px;
    padding: 10px 70px 20px;
    max-width: 740px;
}
#block7 .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}


#block7 ul.block7_slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/

}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
/*#block7 .slick-prev, 
#block7 .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #808554;
    border-right: 2px solid #808554;
    height: 15px;
    width: 15px;
}*/
#block7 .slick-prev, 
#block7 .slick-next {
    display: none;
}
#block7 .slick-prev {/*戻る矢印の位置と形状*/
    left: 17%;
    transform: rotate(-135deg);
}

#block7 .slick-next {/*次へ矢印の位置と形状*/
    right: 17%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

#block7 .slick-dots {
    text-align: center;
    margin: 20px auto 0 auto;
    padding: 0;
}

#block7 .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    box-sizing: border-box;
}

#block7 .slick-dots button {
    color: transparent;
    outline: none;
    padding: 5px 9px;
    /*width: 16px;/*ドットボタンのサイズ*/
    /*height: 16px;/*ドットボタンのサイズ*/
    display: inline-block;
    /*border-radius: 50%;*/
    border: none;
}

#block7 .slick-dots .slick-active button{
    background-repeat: no-repeat;
}

/*スライダー共通*/
/*.slider_box {
	background-color: #fff;
	padding: 10px 40px 20px 40px;
	max-width: 740px;
	box-sizing: border-box;	
	margin: 0 7%;
	border: 1px solid #f00;
}*/
.slider_box {
    width: 38vw;
    box-sizing: border-box;
}
.slider_box a {
    text-decoration: none;
    color: #000;
}
.slider_box a:hover {
    text-decoration: none;
    opacity: 0.8;
}
.slider_title {
	width: 100%;
	font-size: 18px;
	margin: 20px 0;
	box-sizing:border-box;
}
.slider_description {
	width: 100%;
	margin: 20px 0 10px 0;
	box-sizing:border-box;
}

/* Header ======================================== */


/*  Footer ======================================== */

footer {
	text-align: center;
	padding: 80px 20px 120px 20px;
}
.footer_group_logo {
	max-width: 300px;
	margin: 0 auto 40px;
}
.footer_group_mainbnr {
	margin: 0 auto 40px;
}
.footer_group_cmbnr {
	margin: 0 auto 40px;
}
.footer_group_wrap {
	max-width: 1400px;
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
	  -webkit-flex-wrap: wrap;
	  -ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 30px auto 0px auto;
	row-gap: 20px;
	column-gap: 20px;
}
.footer_group_wrap a {
	display: block;
	width: calc(100% / 4 - 15px);
	margin: 0 0 0 0;
}

.footer_logo {
	margin-bottom: 30px;
}
.footer_tel {
	margin-bottom: 30px;
}
.footer_time {
	margin: 0 0px 0 20px;
}
.footer_reserve_wrap {
	margin: 50px 0;
}
.footer_reserve {
	margin-bottom: 10px;
}
.footer_reserve a {
	border: 1px solid #000;
	padding: 5px 20px;
	color: #000;
	font-size: 18px;
	max-width: 500px;
	margin: 0 auto;
	display: block;
	text-align: left;
	font-weight: bold;
}

.footer_reserve a:hover {
	border: 1px solid #1D2A5A;
	background-color:  #1D2A5A;
	color: #fff;
}
.footer_reserve a span.small{
    font-size: 70%;
    font-weight: normal;
}
footer ul.footer_navi {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	text-align: center;
}
footer ul.footer_navi li {
	display: inline-block;
	margin: 0px;
	text-align: left;
	padding: 5px 30px;
}
footer ul.footer_navi li a {
	color: #000;
}
footer ul.footer_navi li a:hover {
	text-decoration: underline;
}
footer ul.footer_navi li a:before {
    content: '▶';
    color: #969696;
}
#credit {
	background-color: #C9C9C9;
	text-align: center;
	margin: 0 auto;
	color: #000;
	padding: 50px 20px 0 20px;
	font-size: 13px;
}

/* Back To Top button ======================================== */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #ddd;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 35px;
  color: #1D2A5A;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0px;
  bottom: 0;
  right: 0px;
  left: 0;
  margin: auto;
  text-align: center;
}
/*ボタン*/
a.event_btn,
a.plan_btn,
a.breakfast_btn,
a.plan02_btn {
	display: inline-block;
	padding: 0 50px;
}
a.room_btn {
	display: inline-block;
	padding: 0 20px;
}
a.sanchi_btn {
	display: inline-block;
	padding: 0 30px 80px 30px;
}
a.event_btn:hover,
a.plan_btn:hover,
a.room_btn:hover,
a.breakfast_btn:hover,
a.plan02_btn:hover,
a.sanchi_btn:hover {
	opacity: 0.8;
}


/*ファミリー旅行応援の宿======================================== */
#block3 {
    background-image: url("../img/block3_bg03.png"),url("../img/block3_bg02.png");
    background-repeat: no-repeat, repeat-y;
    background-position: bottom, center;
    background-size: contain, contain, contain;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 120px 0px 120px 0;
}
.block3_title {
	box-sizing: border-box;
	width: 100%;
	padding: 0 15px;
}

.block3_main_pc {
	display: block;
	margin: 0 auto 50px auto;
	text-align: center;
}
.block3_main_spwrap {
	display: none;
}
.block3_text {
    margin: 50px auto 75px auto;
}
/*星のラウンジ*/
.block3_lounge_title {
	box-sizing: border-box;
	padding: 10px 15px 0;
}
.block3_lounge_wrap {
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
	max-width: 1200px;
	margin: 40px auto; 	
}
.block3_lounge_wrap div {
	width: 48%;
	margin: 0 1%;
}
.block3_lounge_text {
	text-align: center;
	margin: 0px auto 180px auto;
}
/*アメニティ*/
.block3_amenity_wrap {
	position: relative;
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
	background-color: #ffffd5;
	border-radius: 150px / 154px;
	padding: 50px 50px;
	max-width: 1020px;
	margin: 0 auto 0 auto; 
}
.block3_amenity_wrap div {
	width: 20%;
}
.block3_amenity_wrap div.amenity_text {
	width: 100%;
	padding-top: 15px;
}
.block3_amenity_wrap div.amenity_text br {
    display: none;
}
.block3_amenity_wrap img {
	max-width: 100%;
}
.block3_amenity_wrap div.amenity {
	width: 70%;
    position: absolute;
    bottom: 87%;
    left: 19%;
}
/*サービス紹介 */
.block3_service_wrap {
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
	justify-content: space-between;
		  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
	max-width: 1200px;
	margin: 80px auto 80px auto;
	padding: 0 20px;
}
.block3_service_wrap div {
	width: 49.5%;
	margin: 0 0 40px 0;
}
.block3_service_wrap div p {
	text-align: center;
	padding: 0 15px;
}
/*温泉紹介 */
.block3_spaphoto {
	margin: 40px auto 80px auto;
}
.block3_spa_wrap {
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
	justify-content: space-between;
		  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
	max-width: 1160px;
	margin: 40px auto 40px auto;
	padding: 0 20px;
    background-image: url("../img/block3_spabg.png");
    background-repeat: no-repeat;
    background-position: bottom right 15%;
}
.block3_spa_wrap div:nth-child(1),
.block3_spa_wrap div:nth-child(2) {
	width: 49.5%;
	margin: 0 0 40px 0;
}
.block3_spa_wrap div:nth-child(3) {
	width: 100%;
	text-align: center;
	margin: 0 0 40px 0;
}
/*スターライトおすすめファミリー向け客室======================================== */
#block4 {
	box-sizing: border-box;
    background-image: url("../img/block4_bg_star.png"),url("../img/block4_bg.png");
    background-repeat: no-repeat, repeat-y;
    background-position: bottom, center;
    background-size: contain, contain;
	width: 100%;
	text-align: center;
	padding: 50px 0 0px 0;
	position: relative;
}
.block4_title {
	box-sizing: border-box;
	width: 100%;
	background-image: url("../img/block4_title_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: 0 0 40px 0;
	padding: 0 15px;
}
.block4_text {
	text-align: center;
	padding: 40px 0px 100px 0px;
}
.block4_btn_wrap {
	display: inline-block;
}
.inout {
	max-width: 425px;
    margin: 20px 0 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.inout span {
    display: block;
    background-color: #fff;
    padding: 2px 10px;
    text-align: center;
}
.inout p {
	text-indent: -18px;
    padding-left: 18px;
    text-align: left;
}

/*自慢の夕食======================================== */
#block5 {
	box-sizing: border-box;
	background-image: url("../img/block5_bg01.png"),url("../img/block5_bg02.png");
	background-repeat: no-repeat;
	background-position: top, bottom;
	background-size: contain, contain;
	text-align: center;
	padding: 215px 0 215px 0;
}
.block5_title {
	box-sizing: border-box;
	width: 100%;
	background-image: url("../img/block5_title_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	padding: 10px 15px;
	margin: 0 0 40px 0;
}
.block5_main_photo {
	margin: 40px 0 50px 0;
}
.block5_text {
	text-align: center;
	padding: 0px 0px 60px 0px;
}
.block5_text p {
	text-align: center;
	
}
/*レストラン時間*/
.restaurant_time_wrap {
	max-width: 1050px;
	margin: 0px auto 0px auto;
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
    background-image: url("../img/block4_bg.png");
    background-repeat: repeat-y;
    background-position: center;
    font-size: 20px;
}
.restaurant_time_wrap div {
	padding: 13px 10px 0px 10px;
}
.restaurant_time_wrap div br {
	display: none;
}
.restaurant_time_wrap div img {
	position: relative;
	bottom: 3px;
	margin-right: 10px;
}




/*朝食のこだわり======================================== */
#block6 {
	box-sizing: border-box;
	background-image: url("../img/block6_bg.png");
	background-repeat: no-repeat;
	background-position: bottom;
	text-align: center;
	padding: 90px 0 90px 0;
}
.block6_title {
	box-sizing: border-box;
	width: 100%;
	background-image: url("../img/block6_title_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	padding: 10px 15px;
	margin: 0 0 40px 0;
}
.block6_breakfast_wrap {
	display: flex;
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
	flex-wrap: wrap;
		  -webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
	justify-content: center;
		  -webkit-box-pack: center;
		  -ms-flex-pack: center;
	max-width: 930px;
	margin: 30px auto 50px auto;
}
.block6_breakfast_wrap div {
	width: 33%;
}
.block6_text {
	text-align: center;
	padding: 0px 15px 90px 15px;
}
/*おすすめプランはこちら======================================== */
#block7 {
	box-sizing: border-box;
    background-image: url("../img/block7_bg01.png"),url("../img/block3_bg02.png");
    background-repeat: no-repeat, repeat-y;
    background-position: top, center;
    background-size: contain, contain;
	width: 100%;
	text-align: center;
	padding: 120px 0px 90px 0px;
}
.block7_title {
	box-sizing: border-box;
	width: 100%;
	background-image: url("../img/block7_title_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	padding: 10px 15px;
	margin: 0 0 40px 0;
}

/*  Responsive CSS ======================================== */


@media only screen and (max-width: 1440px) {
	#block1 {
		padding: 8.5vw 0px 30px 0;
	}
	#block4 {
		padding: 15vw 0 23vw 0;
	}
	#block5 {
		padding: 15vw 0 23vw 0;
	}
	#block6 {
		padding: 4vw 0 16vw 0;
	}
	#block7 {
		padding: 13vw 0 12vw 0;
	}
}

@media only screen and (max-width: 1360px){

#block1 .slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
}

#block1 .slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
}
}
@media only screen and (max-width: 1270px){

}
@media only screen and (max-width: 990px){

}
@media only screen and (max-width: 940px){
	.block3_spa_wrap {
	    background-image: none;
	}
	.footer_group_wrap a {
		width: calc(100% / 2 - 15px);
	}
}
@media only screen and (max-width: 890px){

	.slider_box {
	    width: 45vw;
	}
}

@media only screen and (max-width: 750px){
	body {
		font-size: 16px;
	}
	.pc_on {
		display: none;
	}
	.sp_on {
		display: inline;
	}

	.block3_main_pc {
		display: none;
	}
	.block3_main_spwrap {
	      display: -webkit-box;
	      display: -webkit-flex;
	      display: -ms-flexbox;
	    display: flex;
	      -webkit-box-pack: justify;
	      -ms-flex-pack: justify;
	    justify-content: space-between;
	      -webkit-flex-wrap: wrap;
	      -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    position: relative;
	}
	.block3_main_spwrap div {
		width: 49.5%;
	}
	.block3_main_spwrap div:nth-child(6),
	.block3_main_spwrap div:nth-child(7) {
	    margin-top: 1%;
	}
	.block3_main_spwrap div:nth-child(8) {
		width: 65%;
		text-align: center;
	    margin: 20px auto 60px auto;
	}
	.block3_main_spwrap div.block3_main_text {
	    width: 100%;
	    background-color: #fff;
	    padding: 35px 20px 15px;
	}
	.block3_main_spwrap div.block3_main_text .inner {
		width: 100%;
		box-sizing: border-box;
	    padding: 0px;
	    text-align: left;
	}
	.block3_main_spwrap div.block3_main_text .inner img {
	    width: 60%;
	}

	.block3_text {
	    margin: 50px auto 75px auto;
	}
	.block3_lounge_wrap div {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.block3_lounge_text {
	    text-align: left;
	    margin: 0px auto 100px auto;
	    padding: 0 15px;
	}
	.block3_amenity_wrap {
		border-radius: 200px / 40px;
	}
	.block3_amenity_wrap div.amenity {
	    width: 90%;
	    left: 0;
	    right: 0;
	    margin: auto;
	}
	.block3_amenity_wrap div.amenity_text br {
	    display: inline;
	}
	.block3_amenity_wrap {
		padding: 17% 20px 50px 20px;
	}
	.block3_amenity_wrap div {
	    width: 43%;
	}
	.block3_service_wrap {
		padding: 0 10px;
	}
	.block3_service_wrap div {
		width: 100%;
		margin: 0 0 40px 0;
	}
	.block3_service_wrap div p {
		text-align: left;
		padding: 0 20px 0 10px;
	}
	.block3_service_wrap div p .br {
		display: none;
	}
	.block3_spa_wrap div:nth-child(1) {
		width: 100%;
		margin: 0 auto 20px auto;
	}
	.block3_spa_wrap div:nth-child(2) {
		width: 100%;
		margin: 0 auto 40px auto;
	}
	.block3_spa_wrap div:nth-child(3) {
		text-align: left;
	}

	.inout p {
		text-indent: -16px;
	    padding-left: 16px;
	}
	.block5_main_photo img:last-child{
		margin: 10px 0 0px 0;
	}
	.block5_text {
		padding: 0px 15px 60px 15px;
	}
	.block5_renewal_photo_box .renewal_photo {
		width: 100%;
	}
	.block5_renewal_photo_box div.renewal_photo:first-child {
		margin-bottom: 20px;
	}
}



@media only screen and (max-width: 640px){

}
@media only screen and (max-width: 590px){
	body {
		font-size: 14px;
	}
	#block1 .slick-prev, 
	#block1 .slick-next {
	    height: 12px;
	    width: 12px;
	}
	#block1 .slick-dots li {
	    margin: 0 7px;
	}
	#block1 .slick-dots button {
	    padding: 0px 3px;
	    background-size: contain;
	}
	#block2 .slick-dots li {
	    margin: 0 7px;
	}
	#block2 .slick-dots button {
	    padding: 0px 3px;
	    background-size: contain;
	}
	#block3 {
		padding: 15vw 0px 120px 0;
	}
	.block3_text {
		text-align: left;
		padding: 0 15px;
	}
	.block4_text {
		text-align: left;
	    padding: 40px 15px 100px 15px;
	}
	.block5_text,
	.block5_text p,
	.block6_text {
		text-align: left;
	}
	.block4_text br.br,
	.block5_text br.br,
	.block6_text br.br {
		display: none;
	}
	.inout p {
		text-indent: -14px;
	    padding-left: 14px;
	}
	.restaurant_time_wrap {
	    margin: 0px auto 0px auto;
	    background-image: url(../img/block4_bg.png);
	    background-repeat: repeat-y;
	    background-position: center;
	    font-size: 16px;
	    padding: 5px 30px 15px 30px;
	    text-align: left;
	}
	.restaurant_time_wrap div {
		width: 100%;
		padding: 5px 0px 0px 0px;
		margin-bottom: 0px;
	}
	.restaurant_time_wrap div:nth-child(1) {
		padding: 15px 0px 0px 0px;
	}
	.restaurant_time_wrap div:nth-child(1) img {
		padding: 0 20px 0 0;
	}
	.restaurant_time_wrap div:nth-child(2) img {
		padding: 0 35px 0 0;
	}
	.restaurant_time_wrap div:nth-child(3) img {
		padding: 0 14px 0 0;
	}
	.restaurant_time_wrap div br {
		display: inline;
	}
	.restaurant_time_wrap div img {
		height: 25px;
		margin: 0;
		bottom: 0;
	}
	#block7 .slick-dots li {
	    margin: 0 7px;
	}
	#block7 .slick-dots button {
	    padding: 0px 3px;
	    background-size: contain;
	}
	.slider_box {
	    width: 75vw;
	}
	.slider_description {
		text-align: left;
	}
	.slider_description br.br {
		display: none;
	}
	.footer_group_logo {
		width: 200px;
	}
	.footer_group_wrap a {
	    width: calc(100% / 1 - 0px);
	}
}

@media only screen and (max-width: 500px){

}