@charset 'utf-8';
/* ----------------------------
reset css
----------------------------*/
/* 焦げ茶：#50453c */
/* 白；#FFF9F7 */
html{
    scroll-behavior: smooth;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
    color: #50453c;
    font-size: 16px;
    background-color: #FFF9F7;
    font-family: sans-serif;
    line-height: 1;
    background-color: rgb(255, 253, 252);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}
main{
    max-width: 530px;
    text-align: center;
    margin: 60px auto 0;
}
h1,h3,h4,p{
    letter-spacing: 0.05em;
}
img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align:bottom;
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
}
p{
    line-height: 1.5;
    letter-spacing: 0.05em;
}
  /*------------------------------------
  ヘッダー spハンバーガーメニュー ↓
  ------------------------------------*/
  header .sp_nav {
    text-align: center;
  }
  .sidemenu {
    height: 100vh;
    padding-top: 100px;
    position: fixed;
    right: -100%; /*メニュー幅*/
    transition: all 0.6s;
    top: 0;
    width: 100%; /*メニュー幅*/
    background-color: #50453c;
    z-index: 100;
  }
  .sidemenu nav ul li {
    padding: 20px;
  }
  .sidemenu nav ul li a{
    color: #FFF9F7;
  }
  .hamburger {
    cursor: pointer;
    height: 60px;
    position: absolute;
    right: 30px;
    top: 0;
    width: 60px;
    z-index: 101;
  }
  .hamburger span {
    background-color: #FFF9F7;
    height: 2px;
    left: 15px;
    position: absolute;
    transition: all 0.6s;
    width: 30px;
  }
  .hamburger_linetop {
    top: 20px;
  }
  .hamburger_linecenter {
    top: 29px;
  }
  .hamburger_linebottom {
    top: 38px;
  }
  /*------------------------------------
  メニュークリックした後 ↓
  ------------------------------------*/
  /* アコーディオンが被る二箇所を修正 */
  .hyouzi summary{
      z-index: -1;
  }
  /* メニューバー表示に関わるところ */
  .nav_open .sidemenu {
    right: 0;
  }
  .nav_open .hamburger_linetop {
    top: 26px;
    transform: rotate(45deg);
  }
  .nav_open .hamburger_linecenter {
    left: 50%;
    width: 0;
  }
  .nav_open .hamburger_linebottom {
    top: 26px;
    transform: rotate(-45deg);
  }
  .nav_open .overlay {
    opacity: 0.8;
    visibility: visible;
  }
  /*------------------------------------
  メニュークリック後メニュー外の背景 ↓
  ------------------------------------*/
  .overlay {
    background-color: #000;
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.6s;
    visibility: hidden;
    width: 100vw;
    z-index: 90;
  }
  .sidemenu {
      right: -60%; /*メニュー幅*/
      width: 60%; /*メニュー幅*/
    }

header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 300;
  background-color: #50453c;
  align-items: center;
  padding: 5px;
  width: 100%;
}
h1{
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
h1 a,.head p {
  color: #FFF9F7;
}

/* keyvis */
.keyvis{
    max-width: 530px;
    height: auto;
    margin: 0 auto 0;
}
/* banner */
.banner{
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: calc(16px + env(safe-area-inset-bottom)); /* iPhoneの安全域対応 */
  z-index: 10; /* 最前面へ */
  width: 250px;
}

/* 共通 */
h2 img{
    max-height: 48px;
    max-width: auto;
    margin-bottom: 10px;
}
h3,h3 img{
    max-height: 30px;
    max-width: auto;
    text-align: left;
    margin-bottom: 8px;
}
section{
    margin-bottom: 30px;
    padding: 8px;
}

/* 各セクション */
/* 宿泊のご案内 */
section.accommodation-wrap p{
    text-align-last: left;
    margin-bottom: 24px;
}

/* 予約について */
section.reservation-wrap p{
    text-align-last: left;
    margin-bottom: 8px;
}
section.reservation-wrap p:nth-child(5){
    margin-bottom: 32px;
}
section.reservation-wrap h3{
    margin-bottom: 16px;
}

/* 予約と公式LINEのボタン */
.btn_group {
  display: flex;
  flex-direction: column; /* 縦に並べる */
  gap: 10px; /* ボタンの間隔 */
  max-width: 200px; /* 必要なら幅を指定 */
  margin: 0 auto;
}
.btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: bold;
  color: #FFF9F7;
  text-decoration: none;
  border-radius: 25px;
}
.btn_reservation {
  background-color: #e2a35c; /* オレンジ系 */
}
.btn_line {
  background-color: #28a745; /* LINEの緑 */
}
.btn:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* 影を強調 */
  transform: translateY(-2px); /* 少し浮かせる */
}

/* 部屋の様子 */
section .room-wrap p{
    margin-bottom: 10px;
}
.room_gallery {
  display: grid;                      
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto); 
  gap: 10px;                           
  max-width: auto;
}
@media screen and (max-width: 590px) {
  .room_gallery{
    display: block;
  }
  .room_list{
    margin-bottom: 5px;
  }
}

.room_list img {
  max-width: 280px;
  max-height: 180px;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 auto; 
}

/* アクセス */
.map iframe {
  display: block;
  margin: 0 auto;
  width: min(100%, 600px);
  height: 450px;
  border: 0;
}

/* 初めての方へ */
section.firsttime-wrap p{
    text-align: left;
}

/* よくある質問 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.faq-wrap {
  max-width: 750px;
  margin: 0 auto;
}
.faq {
  margin: 0;
  padding: 0;
  text-align: left;
}
.faq dt {
  font-weight: 600;
  line-height: 1.9;
  margin-top: 12px;
  position: relative;
  padding-left: 2em;
  color: #50453c;
}
.faq dt::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.faq dd {
  margin: 0 0 10px 0;
  padding-left: 2.8em;
  line-height: 1.9;
  color: #50453c;
}

/* footer */
footer {
  background-color: #50453c; /* 濃い背景 */
  color: #fffcf9;           /* 文字色（明るい色） */
  width: 100%;
  padding: 20px 10px;       /* 上下左右に余白 */
  text-align: center;       /* 中央寄せ */
  line-height: 1.6;
}

/* p要素を横並びにしたい場合 */
footer p {
  margin: 5px 0; /* 上下に少し間隔を空ける */
}

/* フッター内リンクのスタイル */
footer a {
  color: #fffcf9;           /* 背景に映えるリンク色 */
  text-decoration: none;    /* 下線を消す */
  margin: 0 8px;            /* 左右に余白 */
  font-size: 14px;
}

footer a:hover {
  text-decoration: underline; /* ホバー時に下線でアクセント */
}


[id^="scroll-"] {
  scroll-margin-top: 62px; /* 固定ヘッダー高さ + 余白 */
}


/* ===========================
   特商取引法ページ用
=========================== */
.compliance h2{
  margin-bottom: 10px;
}
.compliance dl {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.compliance dt {
  font-weight: bold;
  margin-top: 1em;
}
.compliance dd {
  margin-left: 1em;
  line-height: 1.6;
}
.compliance p{
  text-align: left;
}