/* ==========================================================================
   MIRISE Sky villa & Sauna - Style System
   ========================================================================== */

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Color Palette */
  --bg-color: #fbf8f4;
  --text-dark: #322d27;
  --text-light: #665f55;
  --accent-beige: #c8c0b6;
  --accent-gold: #bdae9c;
  --white: #ffffff;
  --black: #000000;
  --light-gray: #ece7e0;
  --border-color: #e5dfd8;

  /* Translucent overlays */
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --overlay-light: rgba(255, 255, 255, 0.85);
  --glass-bg: rgba(251, 248, 244, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);

  /* Typography */
  --font-serif-ja: "Shippori Mincho", serif;
  --font-serif-en: "EB Garamond", serif;
  --font-sans-ja: "Shippori Mincho", serif;
  --font-sans-en: "Poppins", sans-serif;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-sans-ja);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

/* --- Common Layout Utility --- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .section-container {
    padding: 80px 24px;
  }
}

/* Section OGP Tags & Labels */
.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-tag {
  font-family: var(--font-sans-en);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--accent-beige);
  text-transform: uppercase;
  font-weight: 300;
  /* Poppins Light 300 */
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.section-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background-color: var(--accent-beige);
}

/* Common Dividers */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin: 32px 0;
}

.divider-center {
  width: 60px;
  height: 1px;
  background-color: var(--border-color);
  margin: 40px auto;
}

/* --- Scroll Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

/* Header state on scroll */
.header.scrolled {
  height: 64px;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }
  .logo-img {
    width: 100px;
    height: auto;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.logo-link:hover {
  opacity: 0.5;
}

.logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Default light on hero video background */
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  filter: none;
  /* Return to dark logo on scroll background */
}

/* Desktop Navigation */
.nav-desktop .nav-list {
  display: flex;
  gap: 32px;
}

.nav-desktop .nav-list a {
  font-family: var(--font-sans-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 200;
  /* Poppins ExtraLight 200 */
  color: var(--white);
  /* White text default on hero */
  position: relative;
  padding: 8px 0;
  transition: opacity var(--transition-fast);
}

.header.scrolled .nav-desktop .nav-list a {
  color: var(--text-dark);
}

.nav-desktop .nav-list a:hover {
  opacity: 0.5;
}

/* Mobile Hamburger Button */
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  /* White default on hero */
  z-index: 1100;
}

.header.scrolled .menu-btn {
  color: var(--text-dark);
}

.menu-btn span {
  font-size: 28px;
  font-weight: 100;
  font-variation-settings: 'wght' 100;
  transition: var(--transition-fast);
}

/* State when menu is open */
body.menu-open .menu-btn {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-btn {
    display: flex;
  }
}

/* Mobile Navigation Overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1010;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.5s;
}

.nav-mobile.open {
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.16);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-mobile.open .nav-mobile-backdrop {
  opacity: 1;
}

.nav-mobile-drawer {
  position: absolute;
  top: 0;
  right: -220px;
  width: 220px;
  height: 100vh;
  background-color: #ece7e0;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 15px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-mobile.open .nav-mobile-drawer {
  right: 0;
}

.nav-mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.nav-mobile-close span {
  font-size: 32px;
  font-weight: 100;
  font-variation-settings: 'wght' 100;
}

.nav-mobile-inner {
  width: 100%;
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.nav-mobile-list a {
  font-family: var(--font-sans-en);
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 3.6px;
  color: var(--text-dark);
  display: block;
  text-align: left;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  text-align: left;
  color: var(--white);
  z-index: 3;
  padding: 0 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 33.6px;
    letter-spacing: 3.6px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: 0.7px;
  }

  .hero-title-en {
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: 2.1px;
  }

  .hero-subtitle-en {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1.5px;
  }
}

.hero-title-group {
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: var(--font-sans-ja);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title-group-en {
  margin-top: 48px;
  opacity: 0.65;
}

.hero-title-en {
  font-family: var(--font-serif-en);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 8px;
}

.hero-subtitle-en {
  font-family: var(--font-serif-en);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-style: normal;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-section {
  background-color: var(--bg-color);
}

.concept-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
}

.concept-text-column {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.concept-japanese h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-align: center;
}

.concept-japanese p {
  font-family: var(--font-sans-ja);
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}

.concept-english p {
  font-family: var(--font-serif-en);
  font-size: 0.95rem;
  /* セリフ体なので少しサイズ調整 */
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

.concept-text-column .divider {
  width: 40px;
  margin: 32px auto;
}

.concept-image-column {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(50, 45, 39, 0.08);
}

.concept-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .concept-layout {
    gap: 40px;
  }

  .concept-img {
    height: auto;
    aspect-ratio: 16/10;
  }
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-section {
  background-color: var(--bg-color);
}

.experience-section .section-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.experience-section .section-header {
  padding: 0 40px;
}

.experience-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 0 40px;
}

.experience-intro h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.experience-intro .intro-ja {
  font-family: var(--font-sans-ja);
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.experience-intro .intro-en {
  font-family: var(--font-serif-en);
  font-size: 0.95rem;
  /* セリフ体用に調整 */
  color: var(--text-light);
  line-height: 1.7;
}

/* Grid of Cards */
.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 120px;
  /* 体験カード同士の隙間を120pxに設定 */
  width: 100%;
}

.experience-card {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0;
}

/* Even/Odd row styling for zigzag grid layout on desktop */
.experience-card:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 960px) {
  .experience-section .section-header {
    padding: 0 24px;
  }

  .experience-intro {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .experience-card,
  .experience-card:nth-child(even) {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .experience-card:last-child {
    margin-bottom: 0;
  }
}

.card-image-container {
  width: 60%;
  flex: 0 0 60%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  /* 縦横比が崩れないようにアスペクト比を設定 */
  object-fit: cover;
}

.card-content {
  width: 40%;
  flex: 0 0 40%;
  box-sizing: border-box;
}

.experience-card:nth-child(odd) .card-content {
  padding-left: 30px;
  padding-right: 80px;
}

.experience-card:nth-child(even) .card-content {
  padding-left: 80px;
  padding-right: 30px;
}

@media (max-width: 960px) {
  .card-image-container {
    width: 100%;
    flex: none;
    padding: 0 24px;
  }

  .card-img {
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 4px;
  }

  .card-content,
  .experience-card:nth-child(odd) .card-content,
  .experience-card:nth-child(even) .card-content {
    width: 100%;
    flex: none;
    padding: 0 24px;
  }
}

.card-tag {
  font-family: var(--font-sans-en);
  font-size: 0.75rem;
  color: var(--accent-beige);
  letter-spacing: 0.2em;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.card-desc-ja {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  text-align: justify;
}

.card-divider {
  width: 40px;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 24px;
}

.card-desc-en {
  font-family: var(--font-serif-en);
  font-size: 0.92rem;
  /* セリフ体用に少し調整 */
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
}

/* ==========================================================================
   Overview Section
   ========================================================================== */
.overview-section {
  background-color: var(--bg-color);
}

.overview-section h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 64px;
}

.overview-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.overview-table-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.overview-table tr {
  border-bottom: 1px solid var(--border-color);
}

.overview-table tr:first-child {
  border-top: 1px solid var(--border-color);
}

.overview-table th {
  padding: 24px 16px;
  width: 25%;
  vertical-align: top;
}

.overview-table th span {
  display: block;
}

.overview-table th .label-en {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-beige);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.overview-table th .label-ja {
  font-family: var(--font-serif-ja);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.overview-table td {
  padding: 24px 16px;
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.overview-table td .val-ja {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.overview-table td .val-en {
  font-family: var(--font-serif-en);
  font-size: 0.95rem;
  /* セリフ体用に少しサイズ調整 */
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {

  .overview-table,
  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100% !important;
  }

  .overview-table th {
    padding: 24px 16px 8px 16px;
  }

  .overview-table td {
    padding: 0 16px 24px 16px;
    display: flex !important;
  }
}

/* Checkin time inline block display */
.check-time-group {
  display: flex;
  gap: 48px;
}

.check-time {
  display: flex;
  flex-direction: column;
}

.check-time .check-label {
  font-family: var(--font-serif-en);
  font-size: 0.85rem;
  /* セリフ体用にサイズ調整 */
  color: var(--text-light);
  margin-bottom: 4px;
}

.check-time .time-val {
  font-family: var(--font-serif-en);
  font-size: 1.5rem;
  font-weight: 400;
}

.overview-map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(50, 45, 39, 0.03);
}

.map-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */
.facilities-section {
  background-color: var(--bg-color);
}

.facilities-section h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 64px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.facility-card {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(50, 45, 39, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}


.facility-img-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #e5dfd8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-sans-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.75;
}

.placeholder-text {
  font-weight: 500;
  opacity: 0.5;
}

.facility-img-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.facility-card:hover .facility-img {
  transform: scale(1.04);
}

.facility-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-tag {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  color: var(--accent-beige);
  letter-spacing: 0.15em;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.facility-title {
  font-family: var(--font-serif-ja);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.facility-desc-ja {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.facility-divider {
  width: 30px;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 16px;
}

.facility-desc-en {
  font-family: var(--font-serif-en);
  font-size: 0.88rem;
  /* セリフ体用に少しサイズ調整 */
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */
.amenities-section {
  background-color: var(--bg-color);
}

.amenities-section h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 64px;
}

/* Responsive grid for columns of amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

.amenity-column {
  display: flex;
  flex-direction: column;
}

.amenity-tag {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  color: var(--accent-beige);
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.amenity-title {
  font-family: var(--font-serif-ja);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.amenity-list,
.amenity-list-en {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amenity-list {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.amenity-list-en {
  font-family: var(--font-serif-en);
  font-size: 0.85rem;
  /* セリフ体用に少しサイズ調整 */
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   Pet Policy Section
   ========================================================================== */
.pets-section {
  background-color: var(--bg-color);
}

.pets-section h2 {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 64px;
}

.pets-layout {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 960px) {
  .pets-layout {
    flex-direction: column;
    gap: 48px;
  }
}

.pets-image-column {
  flex: 1;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(50, 45, 39, 0.05);
}

.pets-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pets-content-column {
  flex: 1.2;
  width: 100%;
}

.pets-content-column .divider {
  width: 40px;
  margin: 32px 0;
}

.pets-intro-ja p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: justify;
}

.pets-intro-en p {
  font-family: var(--font-serif-en);
  font-size: 0.95rem;
  /* セリフ体用に少しサイズ調整 */
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
}

/* Pet Amenities & Notice Block */
.pets-amenities-area {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 80px;
}

@media (max-width: 960px) {
  .pets-amenities-area {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.pets-amenities-list-wrapper {
  background-color: transparent;
  padding: 40px 0;
  /* 左右の枠が無くなるので、余白を左右0にし、上下のみ残す（あるいは0でもよい。ここではモバイルなどの表示も考慮し 40px 0 にする） */
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.pets-tag {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  color: var(--accent-beige);
  letter-spacing: 0.15em;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.pets-title {
  font-family: var(--font-serif-ja);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.pets-list,
.pets-list-en {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pets-list {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.pets-list-en {
  font-family: var(--font-serif-en);
  font-size: 0.88rem;
  /* セリフ体用に少しサイズ調整 */
  color: var(--text-light);
}

.pets-list .note,
.pets-list-en .note {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 12px;
  list-style-type: none;
}

/* Notice Box styling (Premium warning card) */
.pets-notice-box {
  background-color: #f7f3ed;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #dfd8cf;
}

.notice-content-column {
  width: 100%;
}

.notice-tag {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.notice-title {
  font-family: var(--font-serif-ja);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.notice-body p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.notice-body .notice-ja {
  margin-bottom: 16px;
}

.notice-divider {
  width: 40px;
  height: 1px;
  background-color: #dfd8cf;
  margin: 16px 0;
}

.notice-body .notice-en {
  font-family: var(--font-serif-en);
  font-size: 0.88rem;
  /* セリフ体用にサイズ調整 */
  color: var(--text-light);
  line-height: 1.6;
}



/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background-color: #ece7e0;
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 40px 40px;
  position: relative;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 60px 24px 30px 24px;
  }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-top {
    gap: 20px;
    margin-bottom: 40px;
  }
  .footer-nav {
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer-logo {
  width: 200px;
  height: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 120px;
  }
}

.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.address-tag {
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  color: var(--accent-beige);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 4px;
}

.address-text {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Footer links navigation */
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }
}

.footer-links a {
  font-family: var(--font-sans-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

@media (max-width: 768px) {
  .footer-bottom {
    border-top: none;
    padding-top: 0;
    text-align: center;
  }
}

.copyright {
  font-family: var(--font-sans-en);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}

@media (max-width: 768px) {
  .copyright {
    font-size: 8pt;
  }
}

/* Float or Bottom-right PageTop Button */
.pagetop-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  background-color: transparent;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.pagetop-btn:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-4px);
  background-color: rgba(50, 45, 39, 0.02);
}

@media (max-width: 768px) {
  .pagetop-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .pagetop-btn .icon-arrow {
    font-size: 20px;
  }

  .pagetop-text {
    font-size: 0.55rem;
  }
}

.pagetop-btn .icon-arrow {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 2px;
}

.pagetop-text {
  font-family: var(--font-sans-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* ==========================================================================
   Floating Booking Button
   ========================================================================== */
.fixed-booking-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
}

.fixed-booking-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 78px;
  background-color: rgb(50, 45, 39);
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(50, 45, 39, 0.25);
  transition: var(--transition-smooth);
}

.fixed-booking-btn:hover {
  transform: translateY(-4px);
  background-color: var(--accent-beige);
  /* #c8c0b6 */
  color: var(--text-dark);
  /* 暗い文字色 #322d27 */
  box-shadow: 0 8px 30px rgba(50, 45, 39, 0.4);
}

.fixed-booking-btn .btn-ja {
  font-family: var(--font-serif-ja);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.2;
}

.fixed-booking-btn .btn-en {
  font-family: var(--font-sans-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .fixed-booking-btn {
    width: 150px;
    height: 60px;
  }

  .fixed-booking-btn .btn-ja {
    font-size: 0.95rem;
  }

  .fixed-booking-btn .btn-en {
    font-size: 0.65rem;
    margin-top: 2px;
  }
}