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

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

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

	/*　ハンバーガーボタン　*/
	.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 : #fff;
	  -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: #8D1C1C;
	}
	.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: #fff;
	  background: #fff;
	  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: #fff;
	  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%);
	}
	
	#welcom{
	text-align: center;
	font-size: 18px;
	margin: 0 auto 20px;
	line-height: 30px;
}
	img #hotel_img{
		width: 100vw;
	}
section{
	margin-top: 50px;
}

h2{
	font-size: 25px;
	text-align: center;
}

h2.title span{
  display: block;
  margin-top: 2px;
  font-size: 14px;           /* 小さめ */
  letter-spacing: 0.1em;     /* 字間 */
  font-weight: 400;
  opacity: .8;               /* 少し薄く（不要なら消してOK） */
}

/* 下の赤い横線 */
h2.title::after{
  content: "";
  display: block;
  width: 100%;
  height: 18px;              /* 線の太さ */
  background: #8D1C1C;        /* 赤（色は合わせて調整） */
  margin-top: 14px;           /* 文字と線の間 */
  margin-bottom: 20px;
}
.banner{
	display: flex;
	flex-direction: column;
	margin: 0 auto 30px;
}
	.banner img{
		display: block;
		width: 80%;
		margin: 30px auto 0;
	}
.item{

	flex-direction: column;
	width: 100%;
}
	.item_reverse{
		flex-direction: column-reverse;
	}
.right, .left{
	width: 100%;
}
.item p, .item_reverse p{
	display: block;
	font-size: 14px;
	padding-top: 15px;
	padding-left: 10px;
	line-height: 25px;
	padding-bottom: 20px
}

.room_img{
	display: flex;
	flex-direction: column;
	width: 100vw;
	margin-top: 30px;
}
.room_img img{
	display: block;
	width: 100%;
}
.facilities{
	width: 100vw;
  padding: 50px 20px;
}

/* 950pxで中央寄せ＋Flexで折り返し */
.facilities-inner{
  width: 90%;
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;

  /* gap を flex でも使える（古い環境なら下の代替案） */
  gap: 40px;
}

  .facilities-inner{
    width: 100%;
    gap: 24px;
  }
  .info-card{
    width: 100%;
    padding: 28px 20px;
  }

h3{
	font-size: 20px;
	margin-top: 50px;
}
h3 span{
  display: block;
  margin-top: 2px;
	margin-bottom: 30px;
  font-size: 14px;           /* 小さめ */
  letter-spacing: 0.1em;     /* 字間 */
  font-weight: 400;
  opacity: .8;               /* 少し薄く（不要なら消してOK） */
}

.hotels p{
	text-align: center;
	line-height: 30px;
}
#caution{
	font-size: 12px;
	line-height: 20px;
	margin: 15px auto;
}
.hotel_link{
	display: none;
}
	.rhotel_link{
		display: flex;
		flex-direction: column;
	}
	.rhotel_link img{
		display: block;
		width: 90%;
		margin: 10px auto;
	}
#pets .item, #pets .item_reverse{
	width: 100%;
	margin: 0 auto;
}

#pets h4{
	font-size: 17px;
	text-align: center;
	margin-top: 20px;
	padding-top: 30px;
}
#pet_info{
	display: block;
	width: 60%;
	margin: 20px auto;
}

#accessmap iframe{
	display: block;
	width: 90%;
	height: 200px;
	margin: 20px auto;
}
#access h3{
	text-align: center;
	font-size: 20px;

}
.way{
	display: flex;
	flex-direction: column;
	width: 70%;
	margin: 20px auto;
}
.accessicon{
	display: block;
	width: 200px;
	text-align: center;
	margin: 0 auto 30px;
}
.accessicon img{
	display: block;
	width: 100px;
	margin: 0 auto;
}
#access h4{
	font-size: 18px;
}
#access p{
	font-size: 14px;
}
 .info-table {
    width: 90%;
    max-width: 90%;
    border: none;
	 margin: 30px auto;
  }

  .info-table tr {
    display: block;
    margin-bottom: 16px;   /* 各項目の間隔 */
    border: 1px solid #cfcfcf;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 12px;
  }

  .info-table th {
    background: #f6eaea;   /* 見出し（住所・駐車場など） */
    font-weight: 500;
  }

  .info-table td {
    background: #ffffff;   /* 内容 */
  }
.spots{
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;

}
.spot_list{
	display: flex;
	justify-content: space-around;
	width: 95%;
	margin: 10px auto;
}
.spot_list img{
	display: block;
	width: 45%;
}
}