/* =========================================================
   Shared inner-page utilities
   Loaded by every page except the homepage.
   ========================================================= */

.innerPage [hidden] {
  display: none !important;
}

/* Fixed booking and LINE consultation actions */
.sideActions {
  position: fixed;
  z-index: 80;
  top: 178px;
  right: 0;
  width: 48px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(66, 54, 40, 0.1);
}

.sideActions a {
  display: flex;
  width: 48px;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
}

.sideBooking {
  height: 130px;
  background: #80633e;
  color: #fff;
  font-size: 14px;
}

.sideLine {
  height: 120px;
  gap: 7px;
  background: #fff;
  color: #6d665d;
  font-size: 12px;
}

.sideLine img {
  display: block;
  width: 27px;
  height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
  writing-mode: horizontal-tb;
}

@media (max-width: 900px) {
  .sideActions {
    display: none;
  }
}
