@charset "utf-8";
/* CSS Document */

@media screen and (max-width:480px) { 
/* 参考サイト　https://sole-color-blog.com/blog/71/　*/

/* all */
html{
	font-family: "Kiwi Maru", serif;
	}
	* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
		font-size: 16px;
	}
	
/* don't show nav-M */
	header img, .navmenu{
		display: none;
		}
	header{
		background-color: #fff;
		height: 80%;
		width: 100vw;
		}
	h2{
		font-size: 15px;
	}
	p{
		font-size: 13px;
	}
	/* humburger menu */

	/*　ハンバーガーボタン　*/
	.hamburger {
	  display : block;
	  position: fixed;
	  z-index : 99;
	  right : 13px;
	  top   : 12px;
	  width : 42px;
	  height: 42px;
	  cursor: pointer;
	  text-align: center;
	}
	.hamburger span {
	  display : block;
	  position: absolute;
	  width   : 30px;
	  height  : 2px ;
	  left    : 6px;
	  background : #555;
	  -webkit-transition: 0.3s ease-in-out;
	  -moz-transition   : 0.3s ease-in-out;
	  transition        : 0.3s ease-in-out;
	}
	.hamburger span:nth-child(1) {
	  top: 10px;
	}
	.hamburger span:nth-child(2) {
	  top: 20px;
	}
	.hamburger span:nth-child(3) {
	  top: 30px;
	}

	/* ナビ開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
	  top : 16px;
	  left: 6px;
	  -webkit-transform: rotate(-45deg);
	  -moz-transform   : rotate(-45deg);
	  transform        : rotate(-45deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
	  top: 16px;
	  -webkit-transform: rotate(45deg);
	  -moz-transform   : rotate(45deg);
	  transform        : rotate(45deg);
	}
	.rnav_header{
		display: block;
		width: 100%;
		height: 100%;
		background: #F6EDD5;
	}
	.rnav_header p{
		font-size:2em;
		text-indent: 1em;
		padding-top: 10px;
	}
	nav.nav-R {
	  position: fixed;
	  z-index : 77;
	  top  : 0;
	  left : 0;
	  color: #707070;
	  background: #F6EDD5;
	  text-align: center;
	  transform: translateX(100%);
	  transition: all 0.6s;
	  width: 100%;
	  height: 100%;
	  display: block;
	  opacity: 0.9;
		padding-top: 10%;
	}

	nav .nav-R ul {
	  background: #ccc;
	  margin: 0 auto;
	  width: 100%;
	}

	nav .nav-R ul li {
	  list-style-type: none;
	  padding: 5vh;
	  width: 100%;
	  border-bottom: 1px solid #000;
	}
	.nav-R ul li{
	　line-height: 2.5rem;
	
	}
	.nav-R ul li:last-child {
	  padding-top: 25px;
	  border-bottom: none;
		font-size: 23px;
	}
	.nav-R ul li:hover{
	  background : #fff;
	}

	.nav-R ul li a {
	  display: block;
	  color: #707070;
	  padding: 3rem 0;
	  text-decoration :none;
	font-size: 22px;	
	}
	
		nav .nav-R ul li a:link, nav .nav-R ul li a:visited, nav .nav-R ul li a:hover, nav .nav-R ul li a:active{
			font-size: 4em!important; 
		}
	/* このクラスを、jQueryで付与・削除する */
	nav.nav-R.active {
	  transform: translateX(0%);
	}
	
	
	.nav_pc{
		display: none;
	}
	.mv{
	display: none;
	}
	.mv_R{
		display: block;
		width: 100%;
		height: 90%;
	}
	.mv_R img{
		display: block;
		width: 100%;
	}
	
	
	.top_pc{
		display: none;
	}
	.top_sp{
		display: block;
	}
	.sp_room{
		display: block;
		width: 100%;
		background-image: url("../img/r_room1.jpg");
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
	}
	
/*==================================================
footerのためのcss
===================================*/
footer{
    background: rgba(240,226,186,0.5);
	padding-top: 50px;
}

.footer{
	display: flex;
	flex-direction: column;
	width: 100vw;
	margin: 10px auto;
}
.footer_left{
	display: block;
	width: 90%;
	height: 150px;
	position: relative;
	padding-left: 10px;
	}
.footer_left p{
	line-height: 1.6em;
	font-size: 1em;
}
.footer_left .logo{
	font-size: 2em;
	text-indent: 0.8em;
}
#address, #mail{
	font-size: 0.8em;
}
#mail::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/mail.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	vertical-align: middle;
}
.footer_right{
	display: block;
	width: 100%;
	height: 150px;
	position: relative;
}
.snslinks{
	display: flex;
	justify-content: space-around;
	width: 100px;
	height: 50px;
	position: absolute;
	bottom: 50px;
	right: 10px;
}
.snslinks img{
	width: 40px;
}
.checkin_out{
	display: block;
	width: 80%;
	background-image: url("../img/timebg.png");
	background-repeat: no-repeat;
	background-size: contain;
	font-size: 1.2em;
	padding: 30px;
	position: absolute;
	top: 20px;
	left: 20px;
}
#copyright{
	text-align: center;
	padding: 10px 0;
	border-top: #fff 3px solid;
}


#copyright{
	padding: 20px 0;
	text-align: center;
	border-top: #fff solid 3px;
}
.page_top{
	display: none;
	}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 95vw;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border-bottom: 1px solid #ccc;
}
.questions h2{
	font-size: 1.5em;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	}
/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.1em;
    font-weight: normal;
    padding: 3% 3% 3% 15px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::after{
    position: absolute;
    content:'';
	background-image: url("../img/question_btn.png");
	background-size: contain;
	background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    
}
.title::after{    
    top: 40%;
    right: 20px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::after{
    top: 37%;
    right: 20px;
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: rgba(240,226,186,0.5);
	border-radius: 20px;
	margin:0 3% 3% 3%;
    padding: 3%;
	font-size: 1em;
	line-height: 1.4em;
}

	.top_sp{
		width: 100%;
		margin: 100px 0;
	}
	
	.top_sp img{
		width: 100%;
	}
.sp_access{
	display: block;
	width: 100%;
	margin: 30px auto;
}
#sp_access{
	display: block;
	width: 100%;
}
#sp_access h2{
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 30px;
}
#sp_access iframe{
	display: block;
	width: 80%;
	margin: 0 auto;
	}
#rtwalk{
	display: block;
	width: 80%;
	font-size: 1em;
	letter-spacing: 0.12em;
	text-align: center;
	margin: 0 auto;
}
#rtwalk::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/walk.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 15px;
	height: 40px;
	vertical-align: middle;
}
#rtcar{
	display: block;
	width: 80%;
	font-size: 1em;
	letter-spacing: 0.12em;
	text-align: center;
	margin: 0 auto;
}
#rtcar::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/car.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}
.low_tie img{
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 50px 0;
}
	
	

.cantion{
	display: block;
	width: 95%;
	margin: 0 auto 100px;
	padding: 10px;
	border: solid 2px #F0E2BA;
	border-radius: 20px;
}
.cantion h3{
	text-align: center;
	padding-bottom: 10px;
	font-size: 1.5em;
}
.cantion p{
	width: 100%;
	margin: 0 auto;
	font-size: 1em;
}	
	
/* ROOM */
.roomfv{
	background-color: #FEF8F3;
	margin: 0;
	padding: 30px 20px;
}	

	.room_img{
		display: none;
	}
	.rroom_img{		
		display: block;
		width: 90%;
		margin: 0 auto;
		padding: 50px 0;
	}
	.rroom_img img{
		width: 100%;
		margin: 0 auto;
	}
	

/* WAKKA KARAAGE */
.foodfv{
	background-color: #FFF8EC;
	margin: 0;
	padding: 30px 20px;
}	
.wakka_img{
	display: block;
	margin: 80px auto 0;
}	
.food_lead p{
	line-height: 1.3em;
}		
.wakka_img img{
	display: block;
	width: 90%;
	margin: 0 auto;
}
.menu{
		display: none;
	}
	.rmenu{
		display: block;
	}
.sotre_info{
	display: none;
}
.rsotre_info{
	display: block;
	padding-bottom: 80px;
}

	
	
	
/* ACCESS */
	.raccess_information{
		display: block;
		margin: 0 auto;
		padding: 50px 20px;
		background-color: #F7FBF8;
	}
	.access_information{
		display: none;
	}
#acwalk, #accar{
	text-align: center;
	font-size: 15px;
	letter-spacing: 0.12em;
}
#acwalk::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/walk.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 15px;
	height: 40px;
	vertical-align: middle;
}
#accar::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/car.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}
	.access_tie iframe{
		display: block;
		width: 80%;
		height: 80%;
	}
.low_tie #accessmap{
	display: block;
	margin: 0 auto;
	padding: 50px 0;
}
.raccess_img{
	display: block;
	margin: 80px auto 0;
}
.raccess_img img{
	display: block;
	width: 95%;
	margin: 0 auto;
}
.access_img{
	display: none;
	}
.main_ac h2{
	text-align: center;
	margin-top: 100px;
	font-size: 15px;
}
.main_ac h2::before{
	content: " ";
	display: inline-block;
	background-image: url("../img/rdeco01.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 120px;
	height: 20px;
	vertical-align: middle;
}
.main_ac h2::after{
	content: " ";
	display: inline-block;
	background-image: url("../img/rdeco02.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 120px;
	height: 20px;
	vertical-align: middle;
}

/* PHOTO */
	
.main_photo .image_list{
  width: 95%;
  margin: 0 auto;
  padding: 100px 0;
}
	.image_list ul{
		width: 90%;
		margin: 0 auto;
	}
	
.main_photo .image_list ul li{
  width: 150px;
  height: 150px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  margin-top: 10px;
}
.main_photo .image_list ul li:nth-child(2n){
  margin-right: 0;
}
.main_photo .image_list ul li a{
  transition: all 0.2s ease-in;
}

.main_photo .image_list ul li:hover a{
  opacity: 0.5;
}
	.gallery{
		display: block;
		width: 80%;
		margin: 0 auto;
		padding: 50px 0 30px;
	}
.main_photo h2{
		font-size: 25px;
		text-align: center;
	}
#lightgallery{
	display: flex;
	flex-wrap: wrap;
	max-width: 480px; /*最大の幅*/
	margin: 0 auto;
	padding: 5px;
	padding-bottom: 50px;
}

#lightgallery a{
	text-decoration: none;
	flex: 1 1 150px; /*１つの記事の大きさ*/
 	margin-right: 10px;
 	margin-left: 10px;
	margin-top: 10px;
	padding: 0;
}

#lightgallery img{
	width: 100%;

}
	
}