/* ── Reset ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* ── Tokens ───────────────────────────────── */
:root {
  --blue: #0068B6;
  --blue-dark: #004e88;
  --black: #231f20;
  --right-bg: linear-gradient(145deg, #cce4f9 0%, #deeeff 30%, #eef6ff 60%, #d9ecfb 100%);
  --center-w: 400px;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--black);
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.mt-1 {
  margin-top: 60px;
}

/* ════════════════════════════════════════════
   3-Column Layout
   Left/Right sticky → browser scroll only
════════════════════════════════════════════ */
.layout {
  display: flex;
  align-items: flex-start;
}

/* LEFT ─ sticky, stays in place while center scrolls */
.col-left {
  order: 1;
  flex: 1;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 30px 3%;
}

/* CENTER ─ normal document flow, browser scrollbar */
.col-center {
  order: 2;
  width: var(--center-w);
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  overflow-x: clip;
}

/* RIGHT ─ sticky, stays in place while center scrolls */
.col-right {
  order: 3;
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 207px;
  overflow: hidden;
  overflow-y: auto;
}

.nav-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  left: -1px;
  top: -1px;
}

.right-nav,
.right-photos {
  position: relative;
  z-index: 1;
}

.col-right::-webkit-scrollbar {
  display: none;
}

/* ════════════════════════════════════════════
   LEFT COLUMN
════════════════════════════════════════════ */
.lc-top {
  width: 450px;
  margin-left: auto;
}

.lc-text {
  width: 215px;
  margin: 70px 0 100px auto;
}

.lc-bottom {
  width: 450px;
  margin-right: auto;
}

/* ════════════════════════════════════════════
   CENTER COLUMN
════════════════════════════════════════════ */

/* Logo + dot grid (main1.png) */
.logo-section {
  padding: 45px 20px 20px;
}

.logo-section img {
  width: 100%;
}

/* Hero building video/photo */
.hero-image video,
.hero-image img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

/* Tagline area */
.center-tagline {
  background-color: #fff;
  padding: 0 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -60px;
  z-index: 1;
  position: relative;
}

.center-tagline .main3 {
  width: 100%;
  max-width: 360px;
  margin-bottom: 30px;
}

/* Access button */
/* Solid fill button — common */
.solid-btn {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 3px;
  line-height: 1.4;
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

.solid-btn>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  background-color: var(--blue);
  color: #fff;
  transition: background .3s, color .3s;
  width: 100%;
}

.solid-btn:hover>span {
  background-color: var(--blue-dark);
}

/* Access button */
.access-btn {
  align-self: flex-end;
  margin-right: 0;
}

.access-btn img {
  width: 22px;
}

/* Content section */
.content-section {
  padding: 24px 0 0;
}

.section-title {
  font-size: 27px;
  font-weight: 700;
  color: var(--blue);
  padding-bottom: 9px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  line-height: 1.6;
}

/* About section */
.about-section {
  padding-left: 0;
  padding-right: 0;
  overflow-x: clip;
}

.about-section .section-title {
  display: block;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}

.about-hero-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.text-vert {
  writing-mode: vertical-lr;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 900;
  font-size: 50px;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-text-stroke: 0.5px var(--blue);
  flex-shrink: 0;
  text-align: left;
}

.text-vert.ryubo-vert {
  margin-right: -46px;
  margin-top: -80px;
  z-index: 1;
  padding-left: 5px;
}

.text-hor {
  padding-top: 8px;
  writing-mode: unset;
  text-align: center;
}

.about-hero-wrap>img {
  flex: 1;
  min-width: 0;
  display: block;
}

.section-text {
  line-height: 1.9;
  margin-bottom: 32px;
  color: var(--blue);
  text-align: center;
  padding: 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Recommend / PICKS section */
.recommend-section {
  padding: 70px 0 40px;
  overflow-x: clip;
  overflow-y: visible;
  background-color: #e0e8f1;
  position: relative;
}

.section-label {
  display: block;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 0 16px;
  border-radius: 0 100px 100px 0;
  letter-spacing: .04em;
  border-left: 0;
  background-color: #fff;
  width: 60%;
  text-align: center;
  font-size: 27px;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-vert.picks-vert {
  position: absolute;
  top: -43px;
  right: 0;
  z-index: 2;
}

.picks-splide {
  padding: 0 0 20px;
}

.pick-card {
  width: 100%;
}

.pick-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pick-label {
  font-size: 16px;
  color: var(--black);
  margin-top: 10px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

/* Access section */
.access-section {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
}

.access-section .section-title {
  margin-bottom: 0;
}

.access-hero {
  position: relative;
  padding-bottom: 10px;
}

.access-leaf {
  position: absolute;
  top: -47px;
  left: -2px;
  width: 98px;
  pointer-events: none;
  z-index: 2;
}

.access-lion {
  position: absolute;
  right: 12px;
  top: 64px;
  width: 67px;
}

.access-bg {
  background-color: #ECF1F5;
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
  margin-top: 42px;
}

.access-tagline {
  background: var(--blue);
  color: #fff;
  border-radius: 100px 0 0 100px;
  padding: 18px 22px 18px 32px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
  width: calc(100% - 24px);
  margin-top: -50px;
  margin-left: auto;
  margin-bottom: 40px;
  z-index: 1;
}

.access-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 30px;
}

.access-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--black);
  line-height: 1.4;
}

.access-list li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.c-blue {
  color: var(--blue);
}

/* ═══ Q&A section ═══ */
.qa-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 24px 24px 58px;
}

.qa-section .section-title {
  margin-bottom: 0;
  padding-bottom: 14px;
}

.qa-vert {
  position: absolute;
  top: -20px;
  left: -2px;
  z-index: 0;
  pointer-events: none;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.qa-item--hidden {
  display: none;
}

.qa-item--fade {
  display: block;
  opacity: 0;
}

.qa-item--fade-in {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.qa-item {
  border: 1px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
  background-color: #fff;
}

.qa-item.open {
  background-color: #ECF1F5;
}

.qa-item.open .transport-body {
  grid-template-rows: 1fr;
}

.qa-item.open .acc-chevron {
  transform: rotate(180deg);
}

.qa-head {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 14px;
  border: none;
  cursor: pointer;
  color: var(--blue);
  text-align: left;
  background: transparent;
}

.qa-q {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}

.qa-head>span:not(.qa-q) {
  flex: 1;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
}

.qa-answer {
  color: var(--black);
  padding: 0 0 14px 22px;
}

.qa-more-btn {
  width: 100%;
  font-size: 17px;
}

/* ═══ Content section ═══ */
.cnt-section {
  padding: 24px 24px 32px;
  text-align: center;
  background-color: #ECF1F5;
}

.cnt-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.cnt-card a {
  display: block;
  color: inherit;
}

.cnt-card img {
  width: 100%;
  border: 1px solid var(--blue);
  margin-bottom: 12px;
}

.cnt-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.cnt-text {
  font-size: 13px;
  color: var(--black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

/* ═══ Video section ═══ */
.video-section {
  text-align: center;
}

.video-tagline {
  color: var(--blue);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
  padding: 0 20px;
}

.video-tagline-sub {
  font-size: 15px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══ Tax Free section ═══ */
.taxfree-section {
  padding: 28px 0 54px;
  background: #ECF1F5;
}

.taxfree-section .section-label {
  margin-top: 6px;
  margin-bottom: -18px;
  z-index: 1;
  position: relative;
}

.taxfree-bg {
  background-color: #fff;
  max-width: calc(100% - 24px);
  margin-left: auto;
  border-radius: 0 0 0 6px;
  padding: 40px 32px;
}

.taxfree-img {
  margin-bottom: 15px;
}

.taxfree-img img {
  width: 100%;
}

.taxfree-text {
  margin-bottom: 20px;
}

/* ═══ Map & Transport section ═══ */
.map-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 31px;
}

.map-head h2 {
  font-size: 27px;
  font-weight: 700;
  color: var(--blue);
}

.map-content {
  padding: 0 24px;
}

.ma-icon-img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: block;
}

.pin-img {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.btn-arrow {
  width: 7px;
  height: auto;
  display: block;
}

.map-img-wrap {
  border: 1px solid var(--blue);
  overflow: hidden;
  margin-bottom: 20px;
  border-left: 0;
  border-right: 0;
}

.map-img-wrap img {
  width: 100%;
  display: block;
}

.map-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ma-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.ma-outline-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 3px;
  line-height: 1.4;
  max-width: 500px;
}

.ma-outline-btn>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  transition: background .3s, color .3s;
  width: 100%;
}

.ma-outline-btn span:hover {
  background: #eef6ff;
}

.transport-acc {
  border: 1px solid var(--blue);
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.transport-acc .fz1 {
  font-size: 15px;
}

.transport-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  background: #fff;
  border: none;
  cursor: pointer;
  color: var(--blue);
}

.transport-head>span {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
}

.acc-chevron {
  color: var(--blue);
  transition: transform .3s;
  flex-shrink: 0;
  transform: rotate(0deg);
}

.transport-acc.open .acc-chevron {
  transform: rotate(180deg);
}

.transport-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.transport-acc.open .transport-body {
  grid-template-rows: 1fr;
}

.transport-body-inner {
  overflow: hidden;
  padding: 0 18px;
  transition: padding 0.35s ease;
}

.transport-acc.open .transport-body-inner {
  padding: 4px 18px 18px;
}

.acc-info {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--black);
  line-height: 1.6;
}

.acc-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 14px;
}

.transport-body-inner .ma-outline-btn {
  margin-top: 14px;
  width: 100%;
}

.bus-route-box {
  border: 1.5px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  background-color: #ECF1F5;
}

.bus-route-header {
  background: #fff;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding: 10px;
}

.bus-stop-group {
  padding: 18px 14px 12px;
}

.bus-stop-group:last-child {
  border-bottom: none;
}

.bus-stop-name {
  font-size: 17px;
  color: var(--blue);
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 8px;
}

.bus-route-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bus-route-list li {
  display: grid;
  grid-template-columns: 11em 1fr;
  gap: 8px;
  align-items: flex-start;
}

.bus-dir {
  color: var(--black);
}

.bus-num {
  color: var(--black);
  text-align: left;
}

.bus-note {
  margin-top: 8px;
}

.img-full img {
  width: 100%;
  border-radius: 4px;
  margin-top: 14px;
}

.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.img-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.img-grid-2 img,
.img-grid-3 img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
}

/* ════════════════════════════════════════════
   RIGHT COLUMN
════════════════════════════════════════════ */

/* Decorative photo at top */
.right-photos {
  padding: 30px 9% 0;
  margin-bottom: 20px;
}

.right-photos img {
  width: 400px;
  margin: 0 auto;
}

/* Nav list */
.right-nav {
  padding-left: 15%;
  padding-right: 15%;
}

.right-nav ul,
.overlay-nav ul {
  list-style: none;
}

.right-nav li,
.overlay-nav li {
  padding-left: 35px;
  position: relative;
}

.right-nav a,
.overlay-nav a {
  display: inline-block;
  padding: 10px 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  transition: opacity .3s;
}

.overlay-nav a {
  display: block;
}

.right-nav a:hover,
.overlay-nav a:hover {
  opacity: .6;
}

.right-nav .sns-row a {
  display: flex;
  gap: 9px;
  align-items: center;
}

.nav-featured a {
  font-size: 18px;
  font-weight: 700;
  padding: 12px 0;
}

/* Hibiscus icon — CSS only */
.right-nav li,
.overlay-nav li {
  position: relative;
}

.right-nav li::before,
.overlay-nav li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  background: url('../images/tw/flower.svg') center / contain no-repeat;
  opacity: 0;
  transform: translateY(-50%) scale(.3) rotate(-60deg);
  transition: opacity .4s, transform .4s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
}

.right-nav li:has(a:hover)::before,
.overlay-nav li:has(a:hover)::before {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

/* SNS + QR footer row */
.right-footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 10px 0 24px;
  padding-left: 35px;
  max-width: 450px;
}

.right-sns {
  flex: 1;
}

.sns-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.sns-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sns-row a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}

.sns-row a:hover {
  opacity: .75;
}

.sns-row img {
  width: 19px;
  height: 19px;
}

/* QR */
.right-qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.right-qr p {
  font-size: 10px;
  color: var(--blue);
  margin-bottom: 6px;
  white-space: nowrap;
}

.right-qr img {
  width: 122px;
}

/* ════════════════════════════════════════════
   MOBILE: Hamburger button
════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  position: fixed;
  top: -5px;
  right: 10px;
  z-index: 1000;
  background: var(--blue);
  border: none;
  outline: 1px solid #fff;
  padding: 14px 10px 9px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  border-radius: 0;
}

.hamburger-btn .hline {
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.hamburger-btn .hlabel {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* X state */
.hamburger-btn.is-open .hline:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.is-open .hline:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-open .hline:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   MOBILE: Nav overlay
════════════════════════════════════════════ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.nav-overlay.open {
  transform: translateX(0);
}

.close-btn {
  flex-shrink: 0;
  align-self: flex-end;
  background: var(--blue);
  border: none;
  padding: 11px 14px 9px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.close-btn .x-icon {
  color: #fff;
  font-size: 17px;
  line-height: 1;
}

.close-btn .clabel {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.overlay-body {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 36px 60px;
}

.overlay-sns {
  padding: 10px 0 0 35px;
}

@media (max-width: 1600px) {
  .right-footer {
    flex-direction: column;
    gap: 24px;
  }

  .right-nav {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ════════════════════════════════════════════
   Responsive: ≤ 768px → mobile
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .layout {
    display: block;
  }

  .overlay-body {
    padding-left: 9%;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .col-left,
  .col-right {
    display: none;
  }

  .col-center {
    width: 100%;
    border: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-overlay {
    display: flex;
    flex-direction: column;
  }

  .center-tagline {
    padding: 0 18px 30px;
  }

  .center-tagline .main3 {
    max-width: 100%;
  }

  .section-text {
    padding-left: 16px;
    padding-right: 16px;
  }

  .img-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══ Shared light-blue background ═══ */
.footer-bg {
  background: #ECF1F5;
}

/* ═══ Floor Guide section ═══ */
.floor-section {
  padding: 0 24px 26px;
  text-align: center;
}

/* ═══ Official SNS section ═══ */
.sns-section {
  padding: 20px 20px 64px;
  text-align: center;
}

.sns-row-center {
  justify-content: center;
}

/* ═══ Site Footer ═══ */
.site-footer {
  border-top: 1px solid #D3E1EF;
}

/* — White top section — */
.footer-top {
  background: #fff;
  color: var(--blue);
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin: 0 auto;
}

.footer-store-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.footer-store-en {
  font-size: 10px;
  color: var(--blue);
  line-height: 1.3;
}

.footer-hours-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-hours-label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  padding-top: 4px;
  flex-shrink: 0;
  width: 24%;
  text-align: right;
}

.footer-hours-right {
  flex: 1;
  min-width: 0;
  border-left: 2px solid #D3E1EF;
  padding-left: 18px;
}

.footer-hours-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-floor {
  font-size: 11px;
  border: 1px solid var(--blue);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 700;
  flex-shrink: 0;
  width: 75px;
  text-align: center;
}

.hours-row:last-child .hours-floor {
  font-size: 9px;
}

.hours-time {
  font-size: 14px;
  font-weight: 700;
}

.footer-hours-note {
  font-size: 10px;
  margin-top: 6px;
}

.sns-section .sns-row {
  gap: 14px;
}

.sns-section .sns-row a {
  width: 54px;
  height: 54px;
}

.sns-section .sns-row img {
  width: 32px;
  height: 32px;
}

/* — Blue bottom section — */
.footer-bottom {
  background: var(--blue);
  color: #fff;
  padding: 24px 24px 20px;
}

.footer-bottom a {
  transition: opacity .3s ease;
}

.footer-bottom a:hover {
  opacity: .7;
}

.footer-nav {
  margin-bottom: 25px;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.footer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  position: relative;
}

.footer-nav li:nth-child(odd) a {
  padding-left: 0;
}

.footer-nav li:nth-child(even) a {
  padding-right: 0;
}

.footer-nav li:nth-child(odd)::before {
  content: '';
  display: block;
  width: 1px;
  background-color: rgba(255, 255, 255, .25);
  height: 70%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  padding: 11px 12px;
}

.footer-nav a::after {
  content: '›';
  font-size: 16px;
  line-height: 1;
}

.footer-info {
  margin-bottom: 16px;
  text-align: center;
}

.footer-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-addr {
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-contact-head {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-tel,
.footer-mail {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.footer-tel svg,
.footer-mail svg {
  flex-shrink: 0;
}

.footer-info a {
  color: inherit;
}

.footer-copy {
  font-size: 11px;
  text-align: center;
  padding-top: 16px;
}

/* ════════════════════════════════════════════
   Slide-in scroll animations (IntersectionObserver)
════════════════════════════════════════════ */
.slide-left,
.slide-right {
  opacity: 0;
  transition: opacity .75s ease, transform .75s cubic-bezier(.25, .46, .45, .94);
}

.slide-left {
  transform: translateX(-70px);
}

.slide-right {
  transform: translateX(70px);
}

.slide-left.is-visible,
.slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Recommend page ─────────────────────────── */

.rec-list {
  padding: 36px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rec-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dde9f5;
}

.rec-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.content .rec-card-img {
  aspect-ratio: 1.5;
}

.rec-card-body {
  padding: 16px 18px 18px;
}

.rec-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.rec-card-desc {
  font-size: 13px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rec-btn-wrap {
  margin: 0;
}

.detail-hero.page-hero-header {
  padding-bottom: 100px;
}

.detail-hero .page-dots-br {
  bottom: unset;
  top: 130px;
}

.detail-hero .section-title {
  font-size: 16px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-store-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--black);
  width: 100%;
  padding: 40px 0 22px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  text-align: left;
}

.content-detail .detail-store-title {
  font-size: 18px;
}

.detail-img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
}

.detail-section {
  padding: 22px 24px 0;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}

.detail-text {
  margin-bottom: 14px;
}

.detail-list {
  list-style: none;
  margin-bottom: 14px;
}

.detail-list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.7;
  margin-bottom: 6px;
}

.detail-list li::before {
  content: '・';
  color: var(--blue);
}

.detail-wave {
  overflow: hidden;
  line-height: 0;
  padding: 8px 0 4px;
}

.detail-wave-img {
  display: block;
  width: 100%;
}

.detail-guide {
  padding: 20px 20px 32px;
}

/* detail-body: styles the_content() output */
.detail-body p {
  margin-bottom: 14px;
}

.detail-body ul {
  list-style: none;
  margin-bottom: 14px;
}

.detail-body ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.7;
  margin-bottom: 6px;
}

.detail-body ul li::before {
  content: '・';
  color: var(--blue);
}

/* ── Tax-free page ──────────────────────────── */

.page-hero-header {
  background: #E4EBF2;
  position: relative;
  overflow: hidden;
  padding: 36px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-dots {
  position: absolute;
  pointer-events: none;
}

.page-dots-tl {
  top: 0;
  left: 0;
  width: 87px;
}

.page-dots-tr {
  top: 0;
  right: 0;
  width: 64px;
}

.page-dots-br {
  bottom: 0;
  right: 0;
  width: 65px;
}

.page-hero-header .text-hor {
  font-size: 59px;
  line-height: 1.3;
  margin-top: 25px;
}

.page-hero-header .section-title {
  font-size: 23px;
}

.tf-intro {
  padding: 18px 24px 6px;
}

.tf-note {
  margin-bottom: 20px;
}

.tf-fee-box {
  margin: 0 24px 0;
  background: #ECF1F5;
  border-radius: 6px;
  padding: 22px 18px;
}

.tf-fee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tf-fee-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.tf-fee-price {
  font-weight: 700;
  color: var(--blue);
  padding-left: 27px;
  font-size: 19px;
}

.tf-section {
  padding: 0 24px 26px;
}

.tf-section .qa-list {
  margin-top: 30px;
}

.tf-h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.tf-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.85;
  color: #333;
}

.tf-list li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 2px;
}

.tf-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.tf-list li.tri::before {
  content: '▶';
  font-size: 10px;
  top: .3em;
}

.tf-list li.note {
  color: #888;
  font-size: 12px;
}

.tf-list li.note::before {
  content: '※';
  color: #888;
}

.tf-sub-h {
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
}

.tf-sub-h::before {
  content: '○';
  color: var(--blue);
  font-size: 15px;
}

.tf-step-img {
  width: 86%;
  display: block;
  margin: 20px auto;
}

.tf-confirm-item {
  margin-bottom: 16px;
}

.tf-confirm-title {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2px;
}

.tf-cat-box {
  background: #ECF1F5;
  border-radius: 6px;
  padding: 20px 18px;
  margin: 12px 0;
}

.tf-cat-box-title {
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 4px;
  font-size: 19px;
}

.tf-cat-list {
  list-style: none;
  text-align: left;
  padding: 0 54px;
}

.tf-cat-list li::before {
  content: '・';
}

.tf-note-box {
  background: #ECF1F5;
  border-radius: 6px;
  padding: 30px 24px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--blue);
}

.tf-counter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tf-plan-img {
  width: 100%;
}

.tf-table-wrap {
  overflow-x: auto;
  margin-bottom: 4px;
}

.tf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 280px;
}

.tf-table th,
.tf-table td {
  border: 1px solid #cce0f5;
  padding: 9px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.tf-table thead th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.tf-table tbody tr:nth-child(even) td {
  background: #f0f6fd;
}

.tf-table .c-price {
  color: var(--blue);
  font-weight: 700;
}

.tf-table .c-cat {
  color: #555;
}

.tf-qa-card {
  border: 1px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
}

.tf-qa-card .qa-answer {
  padding-right: 24px;
  padding-left: 40px;
}

.tf-qa-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--blue);
  text-align: left;
}

.tf-qa-card-head>span:not(.qa-q) {
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
}

.tf-guide-section {
  padding: 4px 24px 30px;
  text-align: center;
}

.tf-guide-qr {
  width: 80px;
  margin: 0 auto 10px;
}

.tf-guide-note {
  font-size: 11px;
  color: #888;
  margin-bottom: 16px;
}

/* ── Image placeholder ─────────────────────── */

.img-placeholder {
  display: block;
  width: 100%;
  background: #eee;
}

.pick-card .img-placeholder {
  aspect-ratio: 1;
}

.cnt-card .img-placeholder {
  aspect-ratio: 4 / 3;
}

/* ── Pagination ────────────────────────────── */

.rec-pagination {
  padding: 8px 24px 36px;
}

.rec-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rec-pagination .page-numbers li a,
.rec-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--blue);
  border-radius: 50px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
  line-height: 1;
}

.rec-pagination .page-numbers li a:hover {
  background: #eef6ff;
}

.rec-pagination .page-numbers li span.current {
  background: var(--blue);
  color: #fff;
}

.rec-pagination .page-numbers li a.prev,
.rec-pagination .page-numbers li a.next {
  color: var(--blue);
}

/* ── Go to Top Button ───────────────────── */
#goTopBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #1a6ebf;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3), 3px 2px 4px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  transform: translateY(10px);
}
#goTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#goTopBtn:hover {
  background: #155ba0;
}
@media (max-width: 768px) {
  #goTopBtn {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}