* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  background: #faf8f5;
  color: #333;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

header a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 0;
}

header img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* ヒーロー画像: サムネ → data-original オリジナル */
.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 300px;
  margin-top: 80px;
  background: #fff;
  cursor: pointer;
}
.hero-container::before {
  content: "";
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  background: linear-gradient(to bottom right, rgba(255,175,189,0.4), rgba(162,155,254,0.4));
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.hero-nav-button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: rgba(255,255,255,0.5);
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: rgba(0,0,0,0.3);
  z-index: 1100;
}
.hero-nav-button.left {
  left: 0;
}
.hero-nav-button.right {
  right: 0;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  background: #faf8f5;
}

h1, h2, h3 {
  text-align: center;
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  color: #333;
}

.note {
  color: red;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
/* 3カラム: (利用時間, 料金, 概要) */
colgroup col {
  width: 33.3333%;
}
th, td {
  border: 1px solid #eee;
  padding: 0.75rem;
  vertical-align: middle;
  text-align: center; 
}
th {
  background: #f2f2f2; 
}
th.desc-col {
  text-align: center; 
}
td.desc-col {
  text-align: left !important; 
}

.rooms {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
/* お部屋紹介はサムネイル */
.rooms img {
  display: none;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s ease;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.rooms img:nth-child(1),
.rooms img:nth-child(2) {
  display:inline-block;
  width: calc((100% - 1rem) / 2);
}
@media (min-width:600px) {
  .rooms img:nth-child(3) {
    display:inline-block;
    width: calc((100% - 2rem) / 3);
  }
  .rooms img:nth-child(1),
  .rooms img:nth-child(2) {
    width: calc((100% - 2rem) / 3);
  }
}
.rooms.show-all img {
  display: inline-block !important;
}
@media (max-width: 600px) {
  .rooms.show-all img {
    width: calc((100% - 1rem) / 2);
  }
}
@media (min-width: 600px) {
  .rooms.show-all img {
    width: calc((100% - 2rem) / 3);
  }
}

.hotel-info {
  margin-bottom: 2rem;
}
.hotel-info p {
  text-align: center;
}
.hotel-info .map-container {
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 1rem 0;
  color: #666;
  background: #faf8f5;
  font-family: 'Playfair Display', serif;
}

/* モーダル: 大きさは変えず、中身（画像+ボタン）が枠からはみ出さないように調整 */
.modal-overlay {
  position: fixed;
  top:0; left:0;
  width:100vw;
  height:100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  z-index:2000;
  backdrop-filter: blur(5px);
}
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;   /* 画像とボタンを縦に積む */
  align-items: center;      
  justify-content: center;  
  overflow: hidden;         /* はみ出る要素を隠す（スクロール不要の場合） */
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.modal-content img {
  max-width: 100%;
  /* ボタンのスペースをある程度確保するため、縦をやや小さめに */
  max-height: calc(100% - 60px);
  object-fit: contain;
  border-radius: 5px;
}

.modal-close {
  position:absolute;
  top:0.5rem;
  right:0.5rem;
  background:#fff;
  border:none;
  cursor:pointer;
  font-size:1.5rem;
  line-height:1;
  padding:0 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.modal-nav-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 50px;
  flex-shrink: 0;  /* ボタンが縮まないように */
}
.modal-nav-button {
  background: #fff; 
  border: 1px solid #aaa; 
  font-size: 1rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.modal-nav-button:hover {
  transform: scale(1.1);
}

.show-more-btn, .show-less-btn {
  display: block;
  margin: 0 auto 2rem;
  background: linear-gradient(to right, #ffafbd, #ffc3a0);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size:1rem;
  border-radius: 9999px;
  color: #333;
  font-weight: bold;
  transition: box-shadow 0.2s ease;
}
.show-more-btn:hover, .show-less-btn:hover {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.show-less-btn {
  display: none;
}

section + section {
  position: relative;
}
section:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 65%;
  height: 2px;
  background: linear-gradient(to right, transparent, #aaa, transparent);
  margin: 6rem auto;
}
section:first-of-type {
  margin-top: 4rem;
}

/* コラムエリアのスタイル */
.column-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.column-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.column-date {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.column-title {
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.column-title:hover {
  color: #ffafbd;
}

/* コラム関連のボタン用スタイル */
.column-more-btn-wrap {
  text-align: center;
  margin: 2rem 0;
}

.column-more-btn-wrap .show-more-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(to right, #ffafbd, #ffc3a0);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 9999px;
  color: #333;
  font-weight: bold;
  transition: box-shadow 0.2s ease;
}

.column-more-btn-wrap .show-more-btn:hover {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ページ送り */
.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.pagination-pages {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-page,
.pagination-current,
.pagination-ellipsis,
.pagination-prev,
.pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pagination-current {
  background: linear-gradient(to right, #ff6b6b, #ff8e8e);
  color: #fff;
  font-weight: bold;
}

.pagination-page:hover,
.pagination-prev:hover,
.pagination-next:hover {
  background: linear-gradient(to right, #ff8e8e, #ff6b6b);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pagination-ellipsis {
  background: none;
  box-shadow: none;
}

.pagination-arrows {
  display: flex;
  gap: 1rem;
} 