/*
Theme Name: TCKW Theme
Theme URI: http://example.com/tckw-theme
Author: maru
Author URI: http://example.com
Description: Custom theme for Tachikawa Animal Hospital
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tckw-theme
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #4a90a4;
  --primary-dark: #357a8c;
  --secondary-color: #81c7d4;
  --accent-color: #f4a259;
  --warm-beige: #f8f6f1;
  --soft-white: #fefefe;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #8b9dab;
  --border-color: #e8edf1;
  --success-color: #6bcf9d;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--warm-beige);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px;
}

.nav-brand h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-menu a:not(.nav-cta):hover {
  color: var(--primary-color);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f6f1 0%, #e8f4f8 100%);
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(129, 199, 212, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-description {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.hero-contact {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-item span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-medium);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: none;
  transition: transform 0.6s ease;
}

.hero-card:hover {
  transform: scale(1.02);
}

.hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hours Section */
.hours-section {
  padding: 80px 0;
  background: white;
}

.hours-card {
  display: flex;
  gap: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  padding: 48px;
  border-radius: 24px;
  color: white;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.hours-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-content h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 24px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.hour-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-item .day {
  font-weight: 700;
  font-size: 18px;
  opacity: 0.9;
}

.hour-item .times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  opacity: 0.85;
}

.notice-card {
  background: #fff8f0;
  border-left: 4px solid var(--accent-color);
  padding: 32px;
  border-radius: 16px;
}

.notice-card h4 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 16px;
}

.notice-card ul {
  list-style: none;
}

.notice-card li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-medium);
}

.notice-card li::before {
  content: "●";
  color: var(--accent-color);
  margin-right: 12px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: var(--warm-beige);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.about-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 48px;
}

.service-card {
  background: var(--warm-beige);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 280px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 40px;
}

.service-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-list li {
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.service-list li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: 700;
  margin-right: 8px;
  font-size: 16px;
}

/* Adoption Section */
.adoption-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4f8 100%);
}

.adoption-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: white;
  padding: 64px;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.adoption-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.adoption-content h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.adoption-content p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Access Section */
.access-section {
  padding: 120px 0;
  background: white;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ... existing styles ... */

.access-map {
  background: var(--warm-beige);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.access-info h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.info-item a {
  color: var(--primary-color);
  font-weight: 600;
}

.qr-code {
  background: var(--warm-beige);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.qr-code img {
  width: 180px;
  height: 180px;
  margin-bottom: 16px;
}

.qr-code p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
}

.access-map {
  background: var(--warm-beige);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 40px;
}

.map-placeholder svg {
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 16px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--secondary-color);
}

.reservation-note {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .adoption-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 24px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 32px;
  }

  .hours-card {
    flex-direction: column;
    padding: 32px;
  }

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

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

  .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-card img {
    height: 300px;
  }
}

/* === Hours Table Display (PC & SP) === */
/* PC Layout: 4-column table */
@media (min-width: 721px) {
  .hours-table-inner {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .hours-table-inner thead {
    display: table-header-group;
  }

  .hours-table-inner tbody {
    display: table-row-group;
  }

  .hours-table-inner tr {
    display: table-row;
  }

  .hours-table-inner thead th {
    text-align: left;
    padding: 16px;
    font-size: 18px;
    color: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
  }

  .hours-table-inner tbody th {
    width: 120px;
    font-weight: 700;
    color: var(--text-medium);
    padding: 16px;
  }

  .hours-table-inner td {
    padding: 16px;
    vertical-align: top;
    border-top: 1px solid var(--border-color);
  }

  .hours-table-inner td.time {
    color: #2f3a45;
  }

  .hours-table-inner td.closed-col {
    display: table-cell;
  }

  .hours-table-inner td.closed-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hours-table-inner td.closed-col li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 15px;
  }

  /* Hide SP layout on PC */
  .hours-table-sp {
    display: none !important;
  }
}

/* SP Layout: Custom structure with clear headers and 2-column times */
@media (max-width: 720px) {
  .hours-table-card {
    padding: 16px;
  }

  /* Hide PC table on SP */
  .hours-table-inner {
    display: none !important;
  }

  /* Show SP layout */
  .hours-table-sp {
    display: block !important;
  }

  .sp-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
  }

  .sp-header-col {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
    padding: 8px 0;
  }

  .sp-time-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .sp-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    grid-column: 1;
  }

  .sp-time {
    font-size: 15px;
    color: #2f3a45;
    text-align: center;
  }

  .sp-closed {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 2px solid var(--border-color);
  }

  .sp-closed .closed-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
  }

  .sp-closed .closed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-medium);
    font-size: 15px;
  }

  .sp-closed .closed-list li::before {
    content: "・";
    margin-right: 8px;
  }
}

/* underline bars */
.hr-underline {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 20px;
}
.hr-underline span {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
}
.hr-underline span:first-child {
  background: var(--primary-color);
}
.hr-underline span:last-child {
  background: var(--accent-color);
  width: 40px;
}

/* Ensure hamburger appears on small screens and toggles nav */
@media (max-width: 880px) {
  .hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-color, #e6ebee);
    background: #fff;
  }
  .nav {
    display: none;
  }
  .nav.open,
  .nav-open .nav {
    display: block;
  }
}
.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #24323f;
  margin: 4px 0;
  border-radius: 2px;
}

/* Accordion Styles */
.accordion-header {
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-header::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.accordion-content {
  display: none;
  padding: 16px 0 32px;
  animation: slideDown 0.3s ease-out;
}

.accordion-content.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Content Map Fix */
.page-content iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
}

/* Temporary Closed Notice */
.temporary-closed-notice {
  background: #fff4f4;
  border: 2px solid #e74c3c;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.temporary-closed-notice .notice-title {
  color: #e74c3c;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.temporary-closed-notice .notice-title::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  font-size: 14px;
}

.temporary-closed-notice .notice-list {
  list-style: none;
  display: inline-block;
  text-align: left;
}

.temporary-closed-notice .notice-list li {
  padding: 4px 0;
  color: #c0392b;
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 768px) {
  .temporary-closed-notice {
    padding: 20px;
  }

  .temporary-closed-notice .notice-list li {
    font-size: 15px;
  }
}

/* All Static Pages Link Styles */
body.page .page-content a {
  text-decoration: underline;
  text-decoration-color: #808080;
}

body.page .page-content a.btn {
  text-decoration: none;
}

/* Fix for ul list indentation on static pages */
.page-content ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.page-content li {
  margin-bottom: 0.5em;
}
