/* =====================================================
   Hotel Espacion Pontocho — Beautiful Style Override
   Drop this into your WordPress theme's CSS
   or enqueue it after your existing styles.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ─── Root Design Tokens ─────────────────────────── */
:root {
  --ivory:    #f8f5f0;
  --cream:    #f0ebe2;
  --ink:      #1a1612;
  --stone:    #6b6560;
  --gold:     #b8975a;
  --gold-lt:  #d4b483;
  --rust:     #c0522e;
  --rust-lt:  #d97a59;
  --white:    #ffffff;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-card: 0 2px 16px rgba(26,22,18,.07);
  --shadow-hover: 0 8px 32px rgba(26,22,18,.14);

  --font-display: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ─── Global Reset Overrides ────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
}

html { scroll-behavior: smooth; }

/* ─── Page Header / FV ───────────────────────────── */
.hotel_fv_section {
  position: relative;
  overflow: hidden;
}

.hotel_fv_title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: .12em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  line-height: 1;
}

.hotel_title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: .08em;
  color: var(--ink);
  text-align: center;
  padding: 2.4rem 1rem 1.6rem;
  position: relative;
}
.hotel_title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: .9rem auto 0;
}

/* ─── Top Navigation Menu ───────────────────────── */
.hotel_menu_section {
  background: var(--ink);
  padding: 0;
}
.hotel_menu_row {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hotel_menu_item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.2rem;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .1em;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition), color var(--transition);
}
.hotel_menu_item:last-child { border-right: none; }
.hotel_menu_item:hover {
  background: rgba(184,151,90,.25);
  color: var(--gold-lt);
}
.hotel_menu_item .arrow {
  font-size: 1.1rem;
  opacity: .8;
}

/* ─── Section Nav Cards ─────────────────────────── */
.section_link { padding: 1.6rem 1rem 2rem; background: var(--cream); }

.link_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 8px;
}

.link_item {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 100px;
  max-width: 150px;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  .link_item { flex: 0 0 calc(50% - 10px); }
}

.link_item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 10px 12px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26,22,18,.06);
}
.link_item > a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.link_item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid var(--cream);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.link_item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1.3;
}

/* Hover submenu */
.hover_menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius-sm);
  min-width: 200px;
  z-index: 9999;
  border: 1px solid rgba(26,22,18,.08);
  overflow: hidden;
}
.link_item:hover .hover_menu { display: block; }
.link_item:first-child .hover_menu { left: 0; transform: none; }



/* ─── Section Headers ───────────────────────────── */
.spot_title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink);
  padding: 2.4rem 0 .6rem;
  margin: 0;
}
.spot_title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: .7rem;
}

.spot-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 2rem 0 .8rem;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

/* ─── Genre Sections ────────────────────────────── */
.genre_section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  margin: 0 12px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,22,18,.05);
}

.genre_section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 20px;
}

/* ─── Accordion ─────────────────────────────────── */
.accordion-item {
  border: 1px solid rgba(26,22,18,.08);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(26,22,18,.04);
  transition: box-shadow var(--transition);
}
.accordion-item:hover {
  box-shadow: 0 4px 18px rgba(26,22,18,.09);
}

.accordion-toggle { display: none; }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--ink);
  border: none;
  transition: background var(--transition);
  user-select: none;
}
.accordion-header:hover { background: linear-gradient(135deg, var(--cream) 0%, #e6dfd4 100%); }

.accordion-header h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  color: var(--ink);
}

.accordion-toggle:checked + .accordion-header,
.accordion-header.active {
  background: linear-gradient(135deg, var(--ink) 0%, #2e2822 100%);
  color: var(--gold-lt);
}

.accordion-toggle:checked + .accordion-header .arrow,
.accordion-header.active .arrow {
  transform: rotate(90deg);
  color: var(--gold);
}

.accordion-header .arrow {
  font-size: 14px;
  transition: transform var(--transition), color var(--transition);
  color: var(--stone);
  flex-shrink: 0;
  margin-left: 8px;
}

.accordion-content {
  display: none;
  padding: 16px 18px 18px;
  background: var(--white);
  border-top: 1px solid rgba(26,22,18,.06);
}
.accordion-toggle:checked + .accordion-header + .accordion-content,
.accordion-content.open {
  display: block;
}

/* ─── Store Links (dl/dt/dd) ────────────────────── */
.store-links dt,
.spot_info dt {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 4px;
}
.store-links .icon,
.spot_info .icon {
  width: 16px;
  height: 16px;
  opacity: .7;
}
.store-links dd,
.spot_info dd {
  margin: 0 0 4px 22px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

/* ─── Map Button ────────────────────────────────── */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: #4285F4;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: filter var(--transition), transform var(--transition);
}
.map-link:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ─── Reservation Banner ────────────────────────── */
.reserve-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-lt) 100%);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(192,82,46,.25);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: .04em;
}
.reserve-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192,82,46,.35);
}
.reserve-banner .banner-text {
  font-size: 15px;
  font-weight: 700;
}
.reserve-banner .banner-subtext {
  font-size: 12px;
  font-weight: 400;
  opacity: .85;
  margin-top: 3px;
  letter-spacing: .06em;
}

/* ─── Coupon Box ────────────────────────────────── */
.coupon_box {
  display: block;
  background: linear-gradient(135deg, #fff8ee 0%, #fff3e0 100%);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #7a5a1a;
  margin: 10px 0;
  letter-spacing: .03em;
}

/* ─── Image Slider ──────────────────────────────── */
.spot_image_slider {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  padding-bottom: 4px;
  /* thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--gold-lt) transparent;
}
.spot_image_slider::-webkit-scrollbar { height: 4px; }
.spot_image_slider::-webkit-scrollbar-track { background: transparent; }
.spot_image_slider::-webkit-scrollbar-thumb { background: var(--gold-lt); border-radius: 99px; }

.spot_image_slider .image_track img {
  display: inline-block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-right: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  transition: transform var(--transition);
}
.spot_image_slider .image_track img:hover {
  transform: scale(1.03);
}

/* ─── Spot Info & Feature Blocks ────────────────── */
.spot_info {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 14px;
}
.spot_info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 10px;
}

.spot_feature {
  background: linear-gradient(135deg, #f7f3ee 0%, var(--cream) 100%);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 12px;
  border-left: 3px solid var(--gold);
}
.spot_feature h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.feature_p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--stone);
  margin: 0;
}

/* ─── Spot Tag (Location Badge) ─────────────────── */
.spot_tag {
  display: inline-block;
  background: var(--ink);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 0;
}

/* ─── Travel Tips Section ───────────────────────── */
#travel_tips {
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 12px 24px;
  box-shadow: var(--shadow-card);
}

#travel_tips h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
  color: var(--ink);
  margin-bottom: 6px;
}
#travel_tips h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: .7rem auto 1.6rem;
}

#travel_tips h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 8px;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  padding-left: 14px;
}
#travel_tips h3::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--gold);
  border-radius: 99px;
}

#travel_tips p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.7;
  margin: 4px 0 10px;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  border-radius: 99px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.btn-small:hover {
  background: var(--rust);
  transform: translateY(-2px);
}

/* ─── Tourist Spot Section ──────────────────────── */
#tourist_spot {
  margin-top: 32px;
}

/* ─── Video ─────────────────────────────────────── */
.spot_video_wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.spot_video_wrap video {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ─── Container ─────────────────────────────────── */
.container_sp {
  padding: 0 16px;
}

/* ─── Klook Widget Polish ───────────────────────── */
.klk-aff-widget {
  display: block;
  margin: 12px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}