/* =====================
   CSS Variables
===================== */
:root {
  --color-main:    #1A3060; /* Plan C Main */
  --color-accent:  #3060A0; /* Plan C Mid Blue */
  --color-sub:     #666660; /* Plan C Gray */
  --color-cream:   #FBF7EE; /* Plan C Cream */
  --color-gold:    #D4A843; /* Plan C Gold */
  --color-gold-light: #A07820; /* Plan C Gold (Dark) */
  --color-base:    #ffffff;
  --font-sans: 'Noto Sans JP', 'Inter', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base and Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--color-main);
  background: var(--color-base);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* =====================
   Animation Utilities
===================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Hover Effects */
.hover-lift { transition: transform var(--transition-normal), box-shadow var(--transition-normal); }
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* =====================
   Navigation
===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-main);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  transition: all var(--transition-normal);
}
.nav.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.nav-logo {
  display: flex; flex-direction: column; justify-content: center;
}
.nav-logo-jp {
  font-size: 1.1rem; font-weight: 600; color: var(--color-main); letter-spacing: 0.1em;
}
.nav-logo-en {
  font-size: 0.65rem; color: var(--color-accent); letter-spacing: 0.15em; font-weight: 500;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--color-main);
  position: relative; transition: color var(--transition-normal);
}
.nav-links a:not(.btn-recruit)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--color-accent); transition: width var(--transition-normal);
}
.nav-links a:hover:not(.btn-recruit)::after,
.nav-links a.current:not(.btn-recruit)::after { width: 100%; }
.nav-links a:hover { color: var(--color-accent); }

.btn-recruit {
  background: linear-gradient(135deg, var(--color-gold), #f59e0b);
  color: white !important; padding: 0.6rem 1.5rem; border-radius: 50px;
  font-weight: 600 !important; letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  transition: all var(--transition-normal);
}
.btn-recruit:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4); filter: brightness(1.1);
}

/* =====================
   Hero Section
===================== */
.hero {
  position: relative; min-height: 90vh; /* dynamic */
  display: flex; align-items: center; padding: 8rem 4rem 4rem;
  background: var(--color-main); overflow: hidden;
}
.hero-bg-wrapper {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0; overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05); /* for parallax effect later */
  transition: transform 10s ease-out;
}
.hero:hover .hero-bg-img { transform: scale(1); }
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}
/* Abstract gradient orbs */
.hero-orb-1 {
  position: absolute; top: -10%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.4; filter: blur(60px); z-index: 1; border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; bottom: -20%; left: 10%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  opacity: 0.2; filter: blur(60px); z-index: 1; border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2; max-width: 800px; margin: 0 auto; width: 100%;
}
.hero-label {
  font-size: 0.8rem; letter-spacing: 0.3em; color: var(--color-gold-light);
  margin-bottom: 2rem; font-weight: 600; text-transform: uppercase;
  display: inline-block; padding: 0.3rem 1rem; border: 1px solid rgba(252, 211, 77, 0.4); border-radius: 50px;
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 500;
  color: var(--color-base); line-height: 1.4; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); line-height: 2; margin-bottom: 3rem; max-width: 600px;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-base); color: var(--color-main);
  font-size: 0.95rem; font-weight: 600; padding: 1rem 2.5rem; border-radius: 50px;
  letter-spacing: 0.05em; transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: var(--color-gold); color: var(--color-base); transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.3);
}

/* =====================
   Sections General
===================== */
.section { padding: 4rem 0; position: relative; }
.bg-cream { background: var(--color-cream); }
.bg-navy { background: var(--color-main); color: var(--color-base); }

.sec-header { margin-bottom: 2.5rem; }
.sec-label {
  font-size: 0.8rem; letter-spacing: 0.25em; color: var(--color-sub);
  margin-bottom: 1rem; font-weight: 600; text-transform: uppercase;
}
.sec-title {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600;
  color: var(--color-main); margin-bottom: 1.5rem; line-height: 1.3;
}
.bg-navy .sec-title, .bg-navy .sec-label { color: var(--color-base); opacity: 0.9; }
.sec-desc {
  font-size: 1.05rem; color: var(--color-sub); line-height: 1.8; max-width: 640px; margin-bottom: 2.5rem;
}
.bg-navy .sec-desc { color: rgba(255, 255, 255, 0.7); }

/* Value Cards Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.value-card {
  background: var(--color-base); border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03);
}
.value-card .icon-box {
  width: 60px; height: 60px; border-radius: 16px; background: rgba(29, 78, 216, 0.05); /* subtle bg */
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.3s;
}
.value-card:hover .icon-box { background: var(--color-accent); transform: rotate(-5deg); }
.value-card .icon-box svg {
  width: 28px; height: 28px; fill: none; stroke: var(--color-accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: all 0.3s;
}
.value-card:hover .icon-box svg { stroke: white; }
.value-card h3 {
  font-size: 1.25rem; font-weight: 600; color: var(--color-main); margin-bottom: 1rem;
}
.value-card p {
  font-size: 0.95rem; color: var(--color-sub); line-height: 1.7;
}

/* About Layout */
.grid-2-about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrapper {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); transform: rotate(-1deg);
  transition: transform var(--transition-slow);
}
.about-image-wrapper:hover { transform: rotate(0) scale(1.02); }
.about-image-wrapper img { width: 100%; height: 400px; object-fit: cover; }
.about-image-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, transparent 50%);
}
.about-text h2 {
  font-family: var(--font-serif); font-size: 2.5rem; line-height: 1.4; color: var(--color-main); margin-bottom: 1.5rem; font-weight: 600;
}
.about-text p {
  font-size: 1.05rem; color: var(--color-sub); line-height: 1.9; margin-bottom: 2rem;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; color: var(--color-accent); position: relative;
}
.link-arrow::after {
  content: '→'; transition: transform 0.2s;
}
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow.light { color: var(--color-gold-light); }

/* News List */
.news-list { border-top: 1px solid rgba(0,0,0,0.08); }
.news-item {
  display: flex; align-items: center; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); transition: background 0.3s;
}
.news-item:hover { background: rgba(0,0,0,0.02); padding-left: 1rem; }
.news-date { font-family: monospace; font-size: 0.9rem; color: var(--color-sub); letter-spacing: 0.05em; min-width: 100px; }
.news-tag {
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.news-tag.tag-blue { background: rgba(29, 78, 216, 0.1); color: var(--color-accent); }
.news-tag.tag-gold { background: rgba(217, 119, 6, 0.1); color: var(--color-gold); }
.news-title { font-size: 1rem; font-weight: 500; color: var(--color-main); transition: color 0.2s; }
.news-item:hover .news-title { color: var(--color-accent); }

/* Voice Cards Grid */
.voice-card {
  background: var(--color-base); border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
}
.bg-navy .voice-card {
  background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border-color: rgba(255,255,255,0.1);
}
.voice-img-wrap { position: relative; height: 240px; overflow: hidden; }
.voice-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.voice-card:hover .voice-img-wrap img { transform: scale(1.05); }
.voice-badge {
  position: absolute; top: 15px; left: 15px; background: var(--color-accent); color: white;
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 50px; z-index: 2;
}
.voice-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.voice-name { font-size: 1.2rem; font-weight: 600; color: var(--color-base); margin-bottom: 0.5rem; }
.voice-farm { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.voice-quote { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; }
.voice-quote::before { content: '“'; font-size: 1.5rem; color: var(--color-gold); line-height: 0; vertical-align: bottom; margin-right: 2px; }
.voice-quote::after { content: '”'; font-size: 1.5rem; color: var(--color-gold); line-height: 0; vertical-align: bottom; margin-left: 2px; }

/* SDGs Banner */
.sdg-banner {
  background: linear-gradient(135deg, var(--color-accent), #2563eb);
  border-radius: 24px; padding: 4rem; display: flex; align-items: center; justify-content: space-between; overflow: hidden; position: relative;
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.2);
}
.sdg-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); border-radius: 50%;
}
.sdg-text { position: relative; z-index: 1; color: white; }
.sdg-text .label { font-size: 0.85rem; letter-spacing: 0.2em; opacity: 0.8; margin-bottom: 0.5rem; text-transform: uppercase; }
.sdg-text h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 1rem; }
.sdg-text p { font-size: 0.95rem; opacity: 0.9; max-width: 400px; line-height: 1.7; }
.sdg-banner .btn-outline {
  position: relative; z-index: 1; border: 2px solid white; color: white; padding: 1rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s;
}
.sdg-banner .btn-outline:hover { background: white; color: var(--color-accent); }


/* =====================
   Footer
===================== */
.footer { background: #0b1120; color: white; padding: 5rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; margin-bottom: 2rem;
}
.footer-brand h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.75rem; color: var(--color-sub); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-address { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-style: normal; }
.footer-contact .label { font-size: 0.8rem; color: var(--color-sub); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-contact .tel { font-size: 2.5rem; font-weight: 300; color: var(--color-gold-light); margin-bottom: 0.5rem; }
.footer-contact .hours { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2-about { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero-title { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; justify-content: center; align-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .sdg-banner { flex-direction: column; gap: 2rem; padding: 2.5rem; text-align: center; }
}

/* Specific page styling additions */
.page-hero {
  background: var(--color-main);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative; z-index: 2;
}
.page-hero .hero-orb-1 { width: 300px; height: 300px; right: 10%; top: 20%; }
.divider-gold { height: 4px; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light)); }

.info-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.info-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.info-table tr:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.info-table th {
  width: 25%; padding: 1.5rem; font-size: 1rem; font-weight: 600;
  color: var(--color-main); background: var(--color-cream); text-align: left; vertical-align: top;
}
.info-table td { padding: 1.5rem; font-size: 1rem; color: var(--color-sub); line-height: 1.8; vertical-align: top; }
@media (max-width: 768px) {
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 0.5rem; border-bottom: none; }
  .info-table td { padding-top: 0; margin-bottom: 1rem; }
}

.timeline { position: relative; padding-left: 2rem; max-width: 800px; margin-top: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 10px; bottom: 10px;
  width: 2px; background: rgba(255,255,255,0.2);
}
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-dot {
  position: absolute; left: -2rem; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--color-main); border: 2px solid var(--color-gold);
}
.tl-item.highlight .tl-dot { background: var(--color-gold); box-shadow: 0 0 10px rgba(217,119,6,0.5); }
.tl-year { font-size: 1.1rem; font-weight: 600; color: var(--color-gold-light); margin-bottom: 0.5rem; }
.tl-text { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.8; }
.tl-item.highlight .tl-text { color: white; font-weight: 500; }

.map-box {
  border-radius: 24px; overflow: hidden; height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 2rem;
}
.map-info { display: flex; gap: 3rem; flex-wrap: wrap; }
.map-info-item { font-size: 1.05rem; color: var(--color-main); display: flex; align-items: center; gap: 10px; font-weight: 500; }
.map-info-item svg { width: 20px; height: 20px; stroke: var(--color-accent); fill: none; stroke-width: 2; }

/* === APPENDED WP CUSTOM TEMPLATE STYLES === */
/* ==========================================================
   CSS Variables (Plan C)
========================================================== */
:root {
  --c-main:   #1A3060;
  --c-mid:    #3060A0;
  --c-light:  #85B0D8;
  --c-cream:  #FBF7EE;
  --c-cream2: #EDE6D4;
  --c-gold:   #D4A843;
  --c-gold-d: #A07820;
  --c-footer: #0F1F40;
  --c-text:   #2C2C2A;
  --c-gray:   #666660;
  --c-lgray:  #E8E4D8;
  --c-border: #DDD4B8;
  --c-blue-l: #E0ECFA;
  
  --font-main: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  
  --radius:   8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-main);
  color: var(--c-text);
  line-height: 1.6;
  background-color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.section { padding: 4rem 0; }

.bg-cream {
  background-color: var(--c-cream);
}
.bg-cream2 {
  background-color: var(--c-cream2);
}
.bg-main {
  background-color: var(--c-main);
  color: white;
}
.bg-blue-l {
  background-color: var(--c-blue-l);
}

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

/* ==========================================================
   Typography
========================================================== */
.sec-title {
  font-family: var(--font-main);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--c-main);
  margin-bottom: 1rem;
}
.sec-title.white {
  color: white;
}
.sec-desc {
  font-size: 14px;
  color: var(--c-text);
}

.sec-label {
  font-size: 12px;
  color: var(--c-gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sec-label::before {
  content: "●";
  color: var(--c-gold);
  display: inline-block;
  margin-right: 6px;
  font-size: 10px;
}

/* ==========================================================
   Navigation (Header)
========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--c-main);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  color: white;
}
.nav-logo-jp {
  font-size: 1.25rem;
  font-weight: 600;
}
.nav-logo-en {
  font-size: 0.75rem;
  color: var(--c-light);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.nav-links a:hover {
  opacity: 0.8;
}
.btn-contact-header {
  background-color: var(--c-gold);
  color: var(--c-main) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

/* ==========================================================
   Footer
========================================================== */
.footer {
  background-color: var(--c-footer);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--c-light);
  margin-bottom: 1.5rem;
}
.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
}
.footer-contact .label {
  font-size: 0.85rem;
  color: var(--c-gold);
}
.footer-contact .tel {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0.5rem 0;
}
.footer-contact .hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: #ccc;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================
   Components & Utility
========================================================== */
.btn-primary {
  display: inline-block;
  background-color: var(--c-main);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--c-main);
  border: 2px solid var(--c-main);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s;
}
.btn-outline:hover {
  background-color: var(--c-main);
  color: white;
}
.btn-gold {
  background-color: var(--c-gold);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
}
.flex-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Hero Sections */
.front-hero {
  background-color: var(--c-cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.front-hero-inner {
  position: relative;
  z-index: 2;
}
.hero-tagline {
  color: var(--c-gold-d);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-tagline::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--c-gold);
}
.front-hero-title {
  color: var(--c-main);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.front-hero-sub {
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 2.5rem;
}
.front-hero-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  background-color: var(--c-cream2);
}
.front-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* School Hero */
.school-hero {
  background-color: var(--c-blue-l);
  padding: 120px 0 60px;
  text-align: center;
}
.school-badge {
  background-color: var(--c-light);
  color: var(--c-main);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
.school-title {
  color: var(--c-main);
  font-size: 28px;
  margin-bottom: 1rem;
}
.school-lead {
  font-size: 16px;
  color: var(--c-text);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Feature/Value Cards */
.card-business {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.card-business-header {
  border-bottom: 1.5px solid var(--c-gold);
}
.card-business-img {
  aspect-ratio: 16/9;
  background-color: var(--c-lgray);
}
.card-business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 32px;
  color: white;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.stat-label {
  font-size: 12px;
  color: var(--c-light);
  margin-top: 0.5rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .stats-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* Add JS toggle logic for real hamburger */
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
}


/* Footer & Header adjustments */
.site-footer, .footer { border-top: none !important; }
.footer-contact .label, .footer-contact .tel { color: #D4A843 !important; }
.footer-address, .footer-copy, .footer-brand p, .footer-links a { color: white !important; }
.nav-links a { color: white !important; }
.nav-logo-jp { color: white !important; }
.sec-label { margin-bottom: 0.2rem !important; }
.sec-title { margin-top: 0 !important; }
