@import url(shared.css);


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1e2d55;

  background-color: #FFF0E6;
  /* fallback */
  background-image: url("../img/BG.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  overflow-x: hidden;
}

/* Header – Mobile Default */
.site-header {
  position: relative;
  text-align: center;
  padding: 40px 20px 30px;
  background: transparent;
  max-width: 100%;
}

/* 左側の画像 */
.header-image {
  margin-bottom: 20px;
}

.header-image img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.header-title h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #1e2d55;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.header-title h2 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #d94b71;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0;
  margin-top: 4px;
}

/* Fade-in animation */
.header-title h1,
.header-title h2,
.header-image {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.header-title h2 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PC表示 */
@media (min-width: 769px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 15px 30px;
    margin-top: 20px;
  }

  .header-image {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .header-image img {
    width: 170px;
    height: 170px;
  }

  .header-title {
    text-align: center;
  }

  .header-title h1 {
    font-size: 3.5rem;
    letter-spacing: 15px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
  }

  .header-title h2 {
    font-size: 2rem;
    letter-spacing: 5px;
    font-weight: bold;
    margin-top: 4px;
  }
}

/* Main Container */
.container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;

}

/* Sidebar */
.sidebar {
  width: 320px;
  background: linear-gradient(135deg,
      rgba(190, 232, 235, 0.55),
      /* light cyan */
      rgba(209, 238, 235, 0.55),
      /* mint */
      rgba(229, 239, 208, 0.55),
      /* soft green */
      rgba(252, 231, 203, 0.55),
      /* soft yellow */
      rgba(251, 240, 225, 0.55)
      /* peach-white */
    );

  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 20px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  box-shadow: 2px 4px 24px rgba(255, 179, 138, 0.28);
}

/* Toggle button */
.menu-toggle {
  display: none;
  background: #ffffff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 0;
  border-bottom: 1.5px solid rgba(30, 45, 85, 0.35);
  /* navy soft */
  padding: 10px 0;
}

.sidebar a {
  display: block;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #1e2d55;
  /* poster navy */
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease, transform 0.2s ease;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #005945;
  /* poster green */
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.sidebar a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0%;
  background: #005945;
  /* poster green */
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s ease;
}

.sidebar a:hover::before,
.sidebar a.active::before {
  opacity: 1;
  height: 100%;
}

.sidebar a.active {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.20);
  color: #005945;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* sidebar  */

/* Poster */
.poster img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* Download Poster */
.download-poster {
  margin-top: 20px;
  text-align: center;
}

.pdf-download-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
}

.poster-thumbnail {
  width: 180px;
  /* Fixed width */
  max-width: 100%;
  /* Responsive fallback */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.pdf-download-label {
  display: inline-block;
  padding: 8px 20px;
  background-color: #1e2d55;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #fff;
  transition: background 0.3s;
}

.pdf-download-label:hover {
  background-color: white;
  cursor: pointer;
  color: #1e2d55;
}

/* Hide thumbnail on small screens */
@media (max-width: 768px) {
  .poster-thumbnail {
    display: none;
  }
}

/* News Section */
.announcements {
  margin-top: 40px;
}

.announcements h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e2d55;
  border-left: 6px solid #d94b71;
  padding-left: 14px;
}

.news-scroll-box {
  max-height: 30vh;
  overflow-y: auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5c6c6;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0e4e4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}

.news-date {
  font-weight: 600;
  color: #d94b71;
  white-space: nowrap;
  min-width: 90px;
}

.news-list a {
  color: #1e2d55;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-list a:hover {
  color: #005945;
  text-decoration: underline;
}


/* Supporters */
.supporters {
  margin-top: 40px;
}

.supporters h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e2d55;
  border-left: 6px solid #d94b71;
  padding-left: 14px;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 per row */
  gap: 20px;
}


.supporter-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* Let it grow naturally */
  min-height: 110px;
  /* Gives it breathing room */
}

.supporter-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.supporter-card:hover {
  transform: translateY(-4px);
}

.supporter-card img {
  max-width: 100%;
  height: auto;
  object-fit: scale-down;
  max-height: 100px;
}

/* Adjust banner size for smaller screens */
@media (max-width: 768px) {
  .supporter-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row for mobile */
  }

  .supporter-card {
    height: 80px;
    /* Reduce height for mobile */
    padding: 8px;
  }

  .supporter-card img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .supporter-grid {
    grid-template-columns: 1fr;
    /* 1 per row on very small screens */
  }

  .supporter-card {
    height: 70px;
  }

  .supporter-card img {
    max-height: 50px;
  }
}


/* Back to Top */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d94b71;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  font-size: 1rem;
}

.back-to-top.show {
  display: block;
}

/* Footer */
/* Footer */
footer {
  padding: 30px 20px;
  margin-top: -15px;

  background: rgba(255, 255, 255, 0.75);
  /* 75% white */
  backdrop-filter: blur(2px);
  font-size: 0.95rem;
  color: #333;
}


.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;

}

.footer-container a {
  text-decoration: none;
  color: #1e2d55;
}

.footer-info-left,
.footer-info-right {
  flex: 1 1 45%;
  min-width: 280px;
  line-height: 1.8;
}

/* Smaller h4 */
.footer-info-left h4,
.footer-info-right h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #00674F;
  /* brand-accent color */
  border-left: 4px solid #00674F;
  padding-left: 10px;
}

/* Footer bottom note */
.footer-rights {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info-left,
  .footer-info-right {
    width: 100%;
    margin-bottom: 20px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .menu-toggle {
    display: inline-block;
    width: 100%;
    background: #fff;
    color: #1e2d55;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .download-poster img {
    display: none;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
    margin-top: 10px;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-info-left,
  .footer-info-right {
    width: 100%;
  }

  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1rem;
  }
}


/* ───────── Footer Top Section ───────── */
.footer-top {
  /* background: #fff9f7; */
  /* soft tone matching footer */
  border-top: 2px solid #f0e0d8;
  padding: 20px 0;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centers the whole block */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
  display: block;
}

.footer-note {
  font-size: 1rem;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footer-top-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    height: 55px;
  }

  .footer-note {
    font-size: 0.95rem;
  }
}

.footer-links {
  margin-top: 4px;
  font-size: 14px;
  margin-left: 0;
}

.footer-links .separator {
  margin: 0 4px;
  color: #ccc;
}

.footer-links a {
  text-decoration: none;
  color: #1e2d55;
}

/* ───────────── Promo Video Section ───────────── */
.promo-video {
  margin-top: 60px;
}

.promovid-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e2d55;
  border-left: 6px solid #d94b71;
  padding-left: 14px;
}

.video-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 60px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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



@media (max-width: 768px) {
  .promovid-title {
    font-size: 1.3rem;
    padding-left: 10px;
    margin-top: 20px;
  }

  .video-center {
    margin-bottom: 40px;
  }
}

/* sposor page  */
/* ───────── Sponsor Page ───────── */
.btn-orange {
  display: inline-block;
  background-color: #d94b71;
  color: #ffffff !important;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #d94b71;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-width: 320px;
  text-align: center;
}

.btn-orange:hover {
  background-color: #ffffff;
  color: #d94b71 !important;
  border-color: #d94b71;
}


/* Base table */
.sponsor-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1rem;
}

.sponsor-table th,
.sponsor-table td {
  border: 1px solid rgba(30, 45, 85, 0.15);
  padding: 0.8rem;
  text-align: center;
  vertical-align: middle;
}

.sponsor-table th {
  background: linear-gradient(135deg, rgba(173, 228, 255, 0.75), rgba(255, 210, 230, 0.75));
  color: #1e2d55;
}


.sponsor-table tr:hover {
  background: rgba(217, 75, 113, 0.05);
}


/* Contact box */
.contact-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(30, 45, 85, 0.15);
  padding: 1rem;
  margin-top: 2rem;
}

/* ───────── Responsive layout ───────── */
@media (max-width: 768px) {

  .sponsor-table,
  .sponsor-table thead,
  .sponsor-table tbody,
  .sponsor-table th,
  .sponsor-table td,
  .sponsor-table tr {
    display: block;
    width: 100%;
  }

  .sponsor-table thead {
    display: none;
    /* Hide header on mobile */
  }

  .sponsor-table tr {
    margin-bottom: 1.2rem;
    border: 2px solid rgba(217, 75, 113, 0.25);
    border-radius: 10px;
    background: #fff;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .sponsor-table td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(30, 45, 85, 0.12);
  }

  .sponsor-table td:last-child {
    border-bottom: none;
  }

  /* Label each cell with header name */
  .sponsor-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 0.6rem;
    left: 0.8rem;
    width: 45%;
    font-weight: bold;
    color: #1e2d55;
  }
}


/* sponsor page  */


/* program page  */
/* ==========================
   Program Page Buttons
   ========================== */
    :root {
      --bg: #fff5ef;
      --panel: #ffffff;
      --text: #17264a;
      --muted: #657089;
      --line: #edf0f5;
      --accent: #e64b75;
      --accent-soft: #fff0f4;
      --subtle: #f8fafc;
      --radius: 6px;
    }
.program-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 3rem 0 1.5rem;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 0.9rem 1.6rem;
  background-color: #1e2d55;
  /* academic navy */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.program-btn:hover {
  background-color: #2f3f75;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.program-note {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-top: 1rem;
  line-height: 1.6;
}

    .section-wrap {
      overflow: hidden;
      margin-bottom: 58px;
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 8px 22px rgba(23, 38, 74, .06);
    }

    .section2 {
      padding: 24px 30px;
      border-top: 1px solid var(--line);
    }

    .section2:first-child { border-top: 0; }

    .section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .02em;
      color: var(--text);
    }

    .section-title::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      flex: 0 0 auto;
    }

    .talk {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 16px 20px;
      padding: 18px 0;
      border-top: 1px solid var(--line);
      background: transparent;
      border-radius: 0;
    }

    .section-title + .talk { border-top: 0; padding-top: 0; }

    .talk__type {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-width: 64px;
      height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      border: 1px solid rgba(230, 75, 117, .22);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .talk__body h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.55;
      color: var(--text);
    }

    .talk.is-featured .talk__body h3 {
      font-size: 21px;
    }

    .meta {
      display: grid;
      gap: 5px;
      margin: 0;
/*      color: var(--muted);*/
      font-size: 15px;
	font-weight: bold;
    }

    .meta div {
      display: grid;
      grid-template-columns: 5em 1fr;
      gap: 10px;
    }

    .meta dt {
      color: var(--text);
      font-weight: 800;
    }

    .meta dd { margin: 0; }
	.gakkoname{font-size:86%;}
    .notice {
      padding: 14px 18px;
      border-radius: 4px;
      background: var(--subtle);
      color: var(--muted);
      border-left: 4px solid var(--line);
    }

    @media (max-width: 720px) {
      .page { width: min(100% - 16px, 960px); }
      .program-header { margin-bottom: 46px; }
      .program-header h1 { font-size: 26px; }
      .day-title__date,
      .day-title__count { font-size: 20px; }
      .section2 { padding: 20px 18px; }
      .talk { grid-template-columns: 1fr; gap: 10px; }
      .meta div { grid-template-columns: 1fr; gap: 0; }
    }

/* pdf view  */
/* ==========================
   Program Image Sections
   ========================== */

.program-images {
  margin-top: 4rem;
}

.program-day {
  margin-bottom: 1.5rem;
}

.program-day-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e2d55;
  margin-bottom: 1.2rem;
  padding-left: 0.8rem;
  border-left: 4px solid #d94b71;
}

.program-day img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


/* program page  */

/* accomodation */
    :root {
      --ivory: #f8f5f0;
      --warm-white: #fdfcfa;
      --charcoal: #2a2a2a;
      --mid-gray: #666;
      --light-gray: #bbb;
      --border: #e0d9d0;
      --accent: #e64b75;
      --accent-light: #fff0f4;
      --note-bg: #fdf6ee;
      --note-border: #d4a96a;
      --note-text: #7a4f1e;
      --link: #5a7a9a;
    }
/* ── Section label ── */
    .area-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      margin-top: 3.5rem;
    }
    .area-label:first-of-type { margin-top: 0; }
    /* .area-label::before, */
    .area-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .area-label span {
      /* font-family: 'Noto Serif JP', serif; */
      font-size: .75rem;
      letter-spacing: .3em;
      color: var(--accent);
      white-space: nowrap;
      font-weight: bold;
    }

    /* ── Card ── */
    .hotel-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 2rem;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      transition: box-shadow .3s;
    }
    .hotel-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,.1); }

    /* Photo */
    .hotel-photo {
      width: 100%;
      aspect-ratio: 16 / 7;
      object-fit: cover;
      display: block;
    }
    .hotel-photo-placeholder {
      width: 100%;
      aspect-ratio: 3 / 4;
      background: linear-gradient(135deg, #e8e0d5 0%, #d5c9bc 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--light-gray);
      font-size: .75rem;
      letter-spacing: .15em;
    }

    /* Body */
    .card-body {
      padding: 1.4rem 2.2rem 1.4rem;
    }

    .hotel-name {
      /* font-family: 'Noto Serif JP', serif; */
      font-size: clamp(1.05rem, 2.5vw, 1.3rem);
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: .4rem;
      letter-spacing: .04em;
    }

    .hotel-url {
      display: inline-block;
      font-size: .72rem;
      color: var(--link);
      text-decoration: none;
      letter-spacing: .03em;
      border-bottom: 1px solid transparent;
      transition: border-color .2s;
      margin-bottom: 1.4rem;
      word-break: break-all;
    }
    .hotel-url:hover { border-color: var(--link); }

    /* Info grid */
    .info-grid {
      display: grid;
      gap: .55rem;
      font-size: .82rem;
    }
    .info-row {
      display: grid;
      grid-template-columns: 4.5rem 1fr;
      gap: .5rem;
    }
    .info-label {
      color: var(--accent);
      font-weight: 500;
      font-size: .7rem;
      letter-spacing: .1em;
      padding-top: .12rem;
      white-space: nowrap;
    }
    .info-value {
      color: var(--mid-gray);
      line-height: 1.7;
    }

    /* Note box */
.note-box {
  margin-top: .8rem;
  padding-top: .7rem;
  border-top: 1px solid var(--border);
}
.note-marker {
  font-size: .68rem;
  color: var(--mid-gray);
  margin-bottom: .2rem;
}
.note-box p {
  font-size: .68rem;
  color: var(--mid-gray);
  line-height: 1.55;
}
.note-box p + p {
  margin-top: .25rem;
}
    /* ── Divider between cards ── */
    .card-divider {
      border: none;
      border-top: 1px dashed var(--border);
      margin: 2rem 0;
    }

    /* ── Responsive ── */
    @media (min-width: 640px) {
      .card-layout {
        display: grid;
        grid-template-columns: 340px 1fr;
      }
.hotel-photo,
.hotel-photo-placeholder {
  aspect-ratio: 4 / 3;
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
      .card-body {
        padding: 1.4rem 2rem 1.4rem 2.2rem;
      }
    }

    @media (max-width: 639px) {
      .card-body { padding: 1.4rem 1.2rem 1.6rem; }
      .info-row { grid-template-columns: 3.8rem 1fr; }
    }
.note-row {
  display: block;
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.note-row .info-value {
  font-size: .78rem;
  line-height: 1.85;
}


    /* ── Footer ── */
    footer {
      text-align: center;
      font-size: .7rem;
      color: var(--light-gray);
      padding: 2rem 1rem;
      letter-spacing: .1em;
      border-top: 1px solid var(--border);
    }
/*ボタン系*/
.is-preparing,
.is-preparing * {
  color: #999 !important;
  opacity: 0.5 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.is-preparing a,
a.is-preparing,
button.is-preparing {
  pointer-events: none !important;
}

.is-preparing {
  cursor: not-allowed !important;
}

/*テキスト*/
.bold{font-weight:bold;}
.text-danger{color:red;}
.text-center{text-align:center;}
.text-right{text-align:right;}
