.hotel_info_api {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.hotel_info_header {
  margin: 30px 0 30px;
}

.hotel_info_title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  color: #3f3200;
}

.hotel_info_subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: #8a7a4c;
  margin: 0;
  letter-spacing: 0.08em;
}

.hotel_info_main_image {
  margin: 0 0 35px;
}

.hotel_info_main_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.hotel_info_description {
  font-size: 1.15rem;
  line-height: 2;
  margin: 0 0 40px;
  color: #3b3527;
}

.hotel_info_detail_wrap {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin: 0 0 40px;
}

.hotel_info_map_box {
  background: #faf7ef;
  border: 1px solid #e4dcc8;
  border-radius: 10px;
  padding: 18px;
}

.hotel_info_map_embed {
  margin-bottom: 18px;
}

.hotel_info_map_embed iframe {
  width: 100% !important;
  min-height: 320px;
  border: 0;
  border-radius: 6px;
  display: block;
}

.hotel_info_contact_list,
.hotel_info_section_list,
.hotel_info_service_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hotel_info_contact_list li {
  border-bottom: 1px solid #e6dfcf;
  padding: 14px 0;
  color: #3b3527;
  line-height: 1.8;
}

.hotel_info_contact_list li:first-child {
  padding-top: 0;
}

.hotel_info_contact_list h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #3f3200;
}

.hotel_info_address,
.hotel_info_tel {
  display: inline-block;
  font-size: 1rem;
}

.hotel_info_label {
  display: inline-block;
  min-width: 52px;
  font-weight: 700;
  color: #6e5d2f;
  margin-right: 8px;
}

.hotel_info_map_link {
  margin: 18px 0 0;
}

.hotel_info_map_link a {
  display: inline-block;
  background: #3f3200;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.hotel_info_map_link a:hover {
  opacity: 0.85;
}

.hotel_info_text_sections {
  min-width: 0;
}

.hotel_info_section_list {
  display: grid;
  gap: 24px;
}

.hotel_info_card {
  background: #fff;
  border: 1px solid #ece5d7;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(60, 50, 0, 0.04);
}

.hotel_info_card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #3f3200;
}

.hotel_info_card h3 span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #8a7a4c;
  margin-bottom: 6px;
}

.hotel_info_card h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #6a5a2a;
}

.hotel_info_card_body {
  font-size: 1rem;
  line-height: 2;
  color: #3b3527;
}

.hotel_info_service_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.hotel_info_service_card {
  background: #faf7ef;
  border: 1px solid #e4dcc8;
  border-radius: 10px;
  padding: 22px;
}

.hotel_info_service_card h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #3f3200;
}

.hotel_info_service_card div {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #3b3527;
}

.hotel_info_error {
  background: #fff7f7;
  border: 1px solid #e8caca;
  border-radius: 8px;
  padding: 20px;
  color: #7a2d2d;
  margin: 30px 0 0;
}

@media (max-width: 959px) {
  .hotel_info_detail_wrap {
    grid-template-columns: 1fr;
  }

  .hotel_info_service_list {
    grid-template-columns: 1fr;
  }

  .hotel_info_api {
    padding: 0 16px 60px;
  }

  .hotel_info_description {
    font-size: 1.02rem;
  }
}

.hotel_info_gallery {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
}

.hotel_info_gallery_item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f1e8;
}

.hotel_info_gallery_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1–‡ */
.hotel_info_gallery_count_1 {
  grid-template-columns: 1fr;
}

.hotel_info_gallery_count_1 .hotel_info_gallery_item img {
  max-height: 640px;
}

/* 2–‡ */
.hotel_info_gallery_count_2 {
  grid-template-columns: repeat(2, 1fr);
}

.hotel_info_gallery_count_2 .hotel_info_gallery_item img {
  height: 420px;
}

/* 3–‡ */
.hotel_info_gallery_count_3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 220px);
}

.hotel_info_gallery_count_3 .hotel_info_gallery_item_1 {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.hotel_info_gallery_count_3 .hotel_info_gallery_item_1 img {
  height: 100%;
}

.hotel_info_gallery_count_3 .hotel_info_gallery_item_2,
.hotel_info_gallery_count_3 .hotel_info_gallery_item_3 {
  grid-column: 2 / 3;
}

.hotel_info_gallery_count_3 .hotel_info_gallery_item_2 img,
.hotel_info_gallery_count_3 .hotel_info_gallery_item_3 img {
  height: 220px;
}

/* 4?5–‡ */
.hotel_info_gallery_count_4,
.hotel_info_gallery_count_5 {
  grid-template-columns: repeat(2, 1fr);
}

.hotel_info_gallery_count_4 .hotel_info_gallery_item_1,
.hotel_info_gallery_count_5 .hotel_info_gallery_item_1 {
  grid-column: 1 / 3;
}

.hotel_info_gallery_count_4 .hotel_info_gallery_item_1 img,
.hotel_info_gallery_count_5 .hotel_info_gallery_item_1 img {
  height: 440px;
}

.hotel_info_gallery_count_4 .hotel_info_gallery_item:not(.hotel_info_gallery_item_1) img,
.hotel_info_gallery_count_5 .hotel_info_gallery_item:not(.hotel_info_gallery_item_1) img {
  height: 220px;
}

@media (max-width: 767px) {
  .hotel_info_gallery,
  .hotel_info_gallery_count_2,
  .hotel_info_gallery_count_3,
  .hotel_info_gallery_count_4,
  .hotel_info_gallery_count_5 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hotel_info_gallery_count_3 .hotel_info_gallery_item_1,
  .hotel_info_gallery_count_3 .hotel_info_gallery_item_2,
  .hotel_info_gallery_count_3 .hotel_info_gallery_item_3,
  .hotel_info_gallery_count_4 .hotel_info_gallery_item_1,
  .hotel_info_gallery_count_5 .hotel_info_gallery_item_1 {
    grid-column: auto;
    grid-row: auto;
  }

  .hotel_info_gallery_item img {
    height: auto !important;
    max-height: none;
  }
}