@charset "UTF-8";
:root {
  --color-primary: #4b92db;
  --color-secondary: #00558f;
  --color-accent: #c5a059;
  --color-text: #111111;
  --color-text-sub: #444444;
  --color-bg-body: #ffffff;
  --color-bg-light: #f4f7f9;
  --font-display: "Shippori Mincho", serif;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
  background-color: #fff;
}

/* --- Components --- */
/* Fade In Animation */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header Styling */
.header_logo {
  width: 90px; /* 少し大きく */
}

/* Header Styling */
.header_logo {
  width: 60px;
}

/* Ensure fixed header stays at top */
header.fixed {
  top: 0;
}

/* Hero Section (Top Page) */
.hero-section {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 249, 255, 0.6) 100%), url(./../images/hero_bgimg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.olive {
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 800px;
  height: 800px;
  background: url(../images/olive.webp) no-repeat center center;
  background-size: contain;
  z-index: 0;
  opacity: 0.3;
}

/* Hamburger Button */
.hamburger-btn {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 100; /* メニューより上に配置 */
  border: none;
  background: transparent;
  padding: 0;
  /* Active State (X shape) */
}
@media (min-width: 1280px) {
  .hamburger-btn { /* xl breakpoint */
    display: none;
  }
}
.hamburger-btn span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: var(--color-text); /* 通常時は黒文字色 */
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}
.hamburger-btn span:nth-child(1) {
  top: 16px;
}
.hamburger-btn span:nth-child(2) {
  top: 23px;
}
.hamburger-btn span:nth-child(3) {
  top: 30px;
}
.hamburger-btn.active span {
  background-color: var(--color-primary); /* 開いた時は青色 */
}
.hamburger-btn.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
  z-index: 90; /* ヘッダーより上、ボタンより下 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Animation: Slide & Fade */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-nav {
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.mobile-menu-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 1rem 0;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
  /* CTA Button in menu */
}
.mobile-menu-link:hover {
  color: var(--color-primary);
}
.mobile-menu-link.cta {
  margin-top: 2rem;
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  padding: 1rem;
}
.mobile-menu-link.cta:hover {
  opacity: 0.9;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Section Title Styling */
.section {
  /* .section-title (Inline style used in some parts) */
  /* .section-heading (Block style used in subpages) */
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-subtitle {
  color: var(--color-primary);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.section-title {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  margin-top: 4rem;
}
.section-heading:first-of-type {
  margin-top: 0;
}

/* Page Header (Subpages) */
.page-header {
  background-color: var(--color-secondary);
  background-image: linear-gradient(135deg, rgba(0, 85, 143, 0.5) 0%, rgba(75, 146, 219, 0.4) 100%), url("../images/UNSingers_HolidayConcert.webp");
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  /* Contact Page Specific */
}
.page-header.contact {
  height: 250px;
  background-image: linear-gradient(135deg, rgba(0, 85, 143, 0.5) 0%, rgba(75, 146, 219, 0.4) 100%), url("../images/contact.jpg");
}
.page-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-subtitle {
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: sans-serif;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 20px;
  border-radius: 50px;
}

/* Purpose Section (About Page) */
.purpose-section {
  padding: 5rem 0;
  background-color: #fff;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  line-height: 2.5;
  height: 450px;
  color: var(--color-secondary);
  border-right: 2px solid var(--color-accent);
  padding-left: 3rem;
  margin: 0 auto;
}

.aboutus-content {
  margin-bottom: 2em;
}

/* Navigation Buttons */
.measure-nav-btn {
  display: block;
  background: white;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.measure-nav-btn .num {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-right: 0.5rem;
}
.measure-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}
.measure-nav-btn.accent .num {
  color: var(--color-accent);
}
.measure-nav-btn.accent:hover {
  border-color: var(--color-accent);
}

/* Measure Section Headers */
.measure-header {
  text-align: center;
  margin-bottom: 4rem;
}
.measure-tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.measure-tag.gold {
  background: var(--color-accent);
}
.measure-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-text);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.measure-lead {
  font-size: 1.1rem;
  color: #555;
}

/* City Box (Measure 1) */
.city-box {
  background: white;
  border: 1px solid #eee;
  padding: 1.5rem 1rem;
  border-radius: 8px;
}
.city-box .city-label {
  display: inline-block;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.city-box .city-label.tokyo {
  background: var(--color-primary);
}
.city-box .city-label.nagasaki {
  background: var(--color-accent);
}
.city-box .city-label.kyoto {
  background: #6a4c93;
}
.city-box .city-label.hiroshima {
  background: #ef476f;
}
.city-box .city-date {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.city-box .city-hall {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Activity Case (Measure 2) */
.activity-case {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
}
.activity-case .case-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Example Section (Past Activities) */
.example-section {
  background: white;
  padding: 4rem 0;
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.example-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 6px solid var(--color-accent);
}

/* Category Filter (Archive) */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  color: #333;
  background: white;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* News List */
.news-list {
  border-top: 1px solid #ddd;
}
.news-item {
  transition: background-color 0.2s;
  /* Link wrapper in archive page */
}
.news-item:hover {
  background-color: #f0f0f0;
}
.news-item-link {
  display: block;
  padding: 1.8rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s;
  text-decoration: none;
}
.news-item-link:hover {
  background-color: #f8fafc;
}
.news-item-link:hover .news-title {
  color: var(--color-primary);
}
.news-item-link:hover .news-arrow {
  transform: translateX(5px);
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .news-content {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .news-meta {
    margin-bottom: 0;
    min-width: 220px;
  }
}
.news-date {
  font-family: "Noto Sans JP", sans-serif;
  color: #555;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.news-tag, .news-cat {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 4px;
  color: white;
  display: inline-block;
  white-space: nowrap;
  /* Single post cat specific style */
}
.news-tag.entry-cat, .news-tag.news-cat, .news-cat.entry-cat, .news-cat.news-cat {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 4px;
}
.news-tag.info, .news-tag.cat-info, .news-cat.info, .news-cat.cat-info {
  background-color: var(--color-primary);
}
.news-tag.report, .news-tag.cat-report, .news-cat.report, .news-cat.cat-report {
  background-color: var(--color-accent);
}
.news-tag.media, .news-tag.cat-media, .news-cat.media, .news-cat.cat-media {
  background-color: #555;
}
.news-tag.cat-event, .news-cat.cat-event {
  background-color: #00558f;
}
.news-title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.1rem;
  flex: 1;
  line-height: 1.6;
  transition: color 0.2s;
}
.news-arrow {
  color: #999;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

/* Entry (Single Post) */
.entry {
  /* Content Typography */
}
.entry-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
.entry-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #555;
}
.entry-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .entry-title {
    font-size: 2.5rem;
  }
}
.entry-content {
  font-size: 1.125rem;
  line-height: 2;
  color: #222;
}
.entry-content p {
  margin-bottom: 2.5rem;
}
.entry-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-primary);
}
.entry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 6px solid var(--color-accent);
}
.entry-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.entry-content ol {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.entry-content li {
  margin-bottom: 0.8rem;
}
.entry-content blockquote {
  background-color: #f4f8fb;
  border-left: 5px solid #888;
  padding: 2rem;
  margin: 3rem 0;
  font-style: italic;
  color: #444;
  font-weight: bold;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 2.5rem 0;
}
.entry-content figure {
  margin: 2.5rem 0;
}
.entry-content figcaption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: bold;
}
.entry-content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.2s;
  font-weight: bold;
}
.entry-content a:hover {
  opacity: 0.7;
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
  padding-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .post-navigation {
    flex-direction: row;
  }
}

.nav-link {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .nav-link {
    max-width: 45%;
  }
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-label {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}
.nav-title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Buttons */
.back-btn-container {
  text-align: center;
  margin-top: 4rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  color: #444;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1rem;
}
.back-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 5rem;
}

.page-num,
.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text);
  transition: all 0.3s;
  text-decoration: none;
}
.page-num:hover, .page-num.current,
.page-numbers:hover,
.page-numbers.current {
  background-color: var(--color-primary);
  color: white;
  font-weight: bold;
}

/* Declaration Section */
.declaration-bg {
  background-color: var(--color-secondary);
  color: white;
  background-image: linear-gradient(135deg, rgb(10, 127, 101) 0%, rgba(0, 72, 147, 0.8) 100% 100%);
}
.declaration-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}
.declaration-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* History Timeline */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  border-left: 3px solid #e2e8f0;
  padding-bottom: 3rem;
}
.timeline-item:last-child {
  border-left: 3px solid transparent;
}
.timeline-dot {
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--color-primary);
}

/* --- Itinerary Schedule Section --- */
.itinerary {
  /* Left Side: City & Date Header */
  /* Right Side: Activities */
}
.itinerary-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.itinerary-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .itinerary-card {
    flex-direction: row;
  }
}
.itinerary-header {
  background-color: #f0f4f8;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .itinerary-header {
    width: 25%;
    border-bottom: none;
    border-right: 1px solid #ddd;
  }
}
.itinerary-body {
  padding: 2rem;
  flex: 1;
}
.itinerary-connector {
  color: #ccc;
  font-size: 1.5rem;
  margin: 1.5rem 0;
}

/* City Badge Styles */
.city-badge {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.city-badge.tokyo {
  background-color: var(--color-primary);
}
.city-badge.nagasaki {
  background-color: var(--color-accent);
}
.city-badge.kyoto {
  background-color: #6a4c93;
}
.city-badge.hiroshima {
  background-color: #ef476f;
}

.city-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.stay-dates {
  font-size: 1.1rem;
  font-weight: bold;
  color: #555;
  background: white;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Activity List Styles */
.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.activity-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px dashed #ddd;
  /* Concert Highlight */
}
@media (min-width: 768px) {
  .activity-item {
    flex-direction: row;
    align-items: center;
  }
}
.activity-item:last-child {
  border-bottom: none;
}
.activity-item.highlight {
  background-color: #fffdf5; /* Light Gold/Yellow bg */
  border-bottom: 1px solid var(--color-accent);
  padding: 1.5rem 1rem; /* More padding */
  margin: 0.5rem -1rem; /* Negative margin to expand */
  border-radius: 8px;
}
@media (min-width: 768px) {
  .activity-item.highlight {
    padding: 1.5rem;
    margin: 0.5rem -1.5rem;
  }
}
.activity-item.highlight .activity-date {
  color: var(--color-accent);
  font-weight: bold;
}
.activity-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #222;
  font-size: 1.1rem;
  min-width: 100px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .activity-date {
    margin-bottom: 0;
  }
}
.activity-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 1rem;
  min-width: 90px;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .activity-label {
    margin-bottom: 0;
  }
}
.activity-label i {
  margin-right: 4px;
}
.activity-label.arrival, .activity-label.departure {
  background-color: #64748b;
}
.activity-label.school, .activity-label.visit {
  background-color: var(--color-secondary);
}
.activity-label.concert {
  background-color: var(--color-accent);
  font-size: 0.9rem;
  padding: 6px 12px;
}
.activity-label.travel {
  background-color: #9ca3af;
}
.activity-content {
  font-size: 1.05rem;
  color: #333;
  flex: 1;
  line-height: 1.5;
}

/* Schedule Card */
/* Sponsorship Box */
.sponsorship-box {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid #ccc;
  border-top: 5px solid var(--color-accent);
}

/* Content Section (General) */
.content-section {
  padding: 6rem 0;
}

/* Plan Cards (Sponsorship) */
.plan-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin: 1.5rem 0;
}
.plan-unit {
  font-size: 1.2rem;
  color: #444;
  font-weight: normal;
}

/* Benefits List */
.benefit-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}
.benefit-icon {
  color: var(--color-accent);
  margin-right: 1.2rem;
  margin-top: 0.3rem;
  font-size: 1.2rem;
}

/* --- CTA Banner Link (Sponsorship Page) --- */
.cta-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta-area {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-banner-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: white;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* 光沢エフェクト */
  /* Sponsorship Style (Blue) */
  /* Donation Style (Gold) */
}
.cta-banner-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.cta-banner-link:hover {
  transform: translateY(-5px);
  background: white;
}
.cta-banner-link:hover::after {
  left: 100%;
}
.cta-banner-link.sponsorship {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  box-shadow: 0 10px 30px rgba(75, 146, 219, 0.25);
}
.cta-banner-link.sponsorship:hover {
  box-shadow: 0 20px 40px rgba(75, 146, 219, 0.35);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cta-banner-link.sponsorship:hover .cta-badge {
  background: rgba(75, 146, 219, 0.1);
  color: var(--color-primary);
}
.cta-banner-link.donation {
  background: linear-gradient(135deg, #d4af37 0%, #a67c00 100%);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.cta-banner-link.donation:hover {
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
  color: #d4af37;
  border-color: #d4af37;
}
.cta-banner-link.donation:hover .cta-badge {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}
.cta-banner-link .cta-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.3s;
}
.cta-banner-link .main-text {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  line-height: 1.3;
}
.cta-banner-link .sub-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  font-family: sans-serif;
  font-weight: bold;
}

/* Tables (Info & Org) */
.info-table,
.org-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.org-table th {
  background-color: #f0f0f0;
  text-align: left;
  padding: 1.2rem;
  border-bottom: 1px solid #ccc;
  width: 30%;
  color: #222;
  font-weight: bold;
  vertical-align: top;
  font-size: 1rem;
}
.info-table td,
.org-table td {
  padding: 1.2rem;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  color: #111;
}
.info-table tr:last-child th, .info-table tr:last-child td,
.org-table tr:last-child th,
.org-table tr:last-child td {
  border-bottom: none;
}

/* Organization Specifics */
.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-item {
  margin-bottom: 1rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1rem;
}
.member-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.member-name {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  color: #000;
}
.member-title {
  font-size: 0.95rem;
  color: #444;
  display: block;
  margin-top: 0.2rem;
}

.committee-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.committee-header {
  background-color: var(--color-primary);
  color: white;
  padding: 1.2rem 1.8rem;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.committee-body {
  padding: 2rem;
}
.committee-role {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: bold;
}

/* Supporter List (Updated: Vertical List) */
.supporter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee; /* リストの一番上にも線を表示 */
}
.supporter-item {
  background-color: transparent; /* 背景色は削除 */
  padding: 1rem 0.5rem; /* 上下の余白を広めに */
  border-bottom: 1px solid #eee; /* 区切り線 */
  font-size: 1rem; /* 文字サイズ確保 */
  color: #111; /* テキスト色を濃く */
  font-weight: 500;
  border-radius: 0;
  width: 100%; /* 横幅いっぱいに */
  transition: background-color 0.2s;
  /* ホバー時に少し色を変えて「行」を意識させる */
}
.supporter-item:hover {
  background-color: #f9fafb;
}

/* --- Contact Form Styles --- */
.contact-form-container {
  background: #fff;
  padding: 3rem 0;
}

.form-group {
  margin-bottom: 2.5rem;
}
.form-label {
  display: block;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #999; /* 枠線を濃く */
  border-radius: 6px;
  font-size: 1.1rem; /* 入力文字も大きく */
  transition: all 0.3s;
  background-color: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(75, 146, 219, 0.2);
}
.form-control::placeholder {
  color: #888;
}

textarea.form-control {
  min-height: 250px;
  resize: vertical;
}

.required-badge {
  background-color: #cc0000; /* より鮮やかな赤 */
  color: white;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 0.8rem;
  vertical-align: middle;
  font-weight: bold;
}

.any-badge {
  background-color: #777; /* 濃いグレー */
  color: white;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 0.8rem;
  vertical-align: middle;
  font-weight: bold;
}

.submit-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 1.2rem 5rem;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.submit-btn-wrapper {
  text-align: center;
  margin-top: 4rem;
}
.submit-btn:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-info-box {
  background-color: #f0f4f8;
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border-left: 6px solid var(--color-accent);
}

/* Policy Specific Styles */
.policy-content {
  font-size: 0.95rem;
  line-height: 1.9;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.policy-heading:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.contact-address {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}/*# sourceMappingURL=style.min.css.map */