﻿
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Inter:wght@400;500;700&display=swap');

:root {
  --color-main: #7DA87B;
  --color-main-dark: #5f8a5d;
  --color-main-soft: rgba(125, 168, 123, 0.14);
  --color-bg: #F9F8F3;
  --color-accent: #E69A8B;
  --color-accent-soft: rgba(230, 154, 139, 0.16);
  --color-text: #3a3a3a;
  --color-text-light: #6b6b66;
  --color-white: #ffffff;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(125, 168, 123, 0.12);
  --shadow-hover: 0 10px 32px rgba(125, 168, 123, 0.22);
  --ease-soft: cubic-bezier(0.25, 0.6, 0.3, 1);
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;
  --max-width: 960px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 96px;
  font-family: var(--font-ja);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.lang-en {
  font-family: var(--font-en);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

a {
  color: var(--color-main-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease-soft);
}

a:hover {
  color: var(--color-accent);
}

.container {
  max-width: var(--max-width);
  width: 85%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .container {
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.site-header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-space-div {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-flow: row;
  gap: 16px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.3;
  transition: transform 0.3s var(--ease-soft);
}

.site-logo a:hover {
  transform: translateY(-1px);
  color: var(--color-main-dark);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo .logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: normal;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-menu-wrapper {
  background-color: var(--white);
  justify-content: center;
  align-items: stretch;
  height: 66px;
  display: flex;
  border-radius: 40px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.w-nav-menu {
  float: right;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  height: 100%;
}

.main-nav li {
  display: flex;
  align-items: stretch;
}

.main-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  border-radius: 0;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--color-text);
  position: relative;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.main-nav li:first-child a {
  border-radius: 40px 0px 0px 40px;
  padding-left: 28px;
}

.main-nav li:last-child a {
  border-radius: 0px 40px 40px 0px;
  padding-right: 28px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--color-main);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-soft);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-main-soft);
  color: var(--color-main-dark);
}

.main-nav a.active::after {
  width: 40%;
}

.main-nav li:first-child a.active::after {
  left: calc(50% + 7px);
}

.main-nav li:last-child a.active::after {
  left: calc(50% - 7px);
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: var(--color-white);
  padding: 4px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.lang-switch a {
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-text-light);
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.lang-switch a.active {
  background: var(--color-main);
  color: var(--color-white);
}

.lang-switch a:not(.active):hover {
  background: var(--color-main-soft);
  color: var(--color-main-dark);
}

.nav-toggle {
  display: none;
  background: var(--color-main);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  padding-bottom: 0px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 0;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-soft), transform 0.2s var(--ease-soft);
}

.nav-toggle:hover {
  background: var(--color-main-dark);
}

.nav-toggle:active {
  transform: scale(0.95);
}

@media (max-width: 940px) {
  .nav-space-div {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
  }

  .header-actions {
    display: contents;
  }

  .site-logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .site-logo a {
    font-size: 0.95rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .lang-switch {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
  }

  .nav-toggle.open {
    background: var(--color-main-dark);
  }

  .nav-menu-wrapper {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: var(--radius-md);
    display: none;
    overflow: hidden;
    justify-content: stretch;
    align-items: stretch;
  }

  .nav-menu-wrapper.open {
    display: flex;
    flex-direction: column;
    animation: navDrop 0.35s var(--ease-soft);
  }

  .w-nav-menu {
    float: none;
    width: 100%;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav li + li {
    border-top: 1px solid rgba(125, 168, 123, 0.16);
  }

  .main-nav a {
    padding: 14px 16px;
    height: auto;
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }

  .main-nav li:first-child a,
  .main-nav li:last-child a {
    border-radius: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-nav li:first-child a.active,
  .main-nav li:last-child a.active {
    border-radius: 0;
  }

  .main-nav a::after {
    display: none;
  }

  body {
    padding-top: 80px;
  }

  .nav-space-div {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 64px;
  }

  .nav-space-div {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-fv {
  position: relative;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto 48px;
  animation: heroIn 0.9s var(--ease-soft) both;
}

@media (min-width: 1281px) {
  .hero-fv {
    border-radius: var(--radius-lg);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(0.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fv-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  border-radius: 0 !important;
  display: block;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.38) 40%,
      rgba(0,0,0,0.48) 58%,
      rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

.fv-tagline {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12%;
  pointer-events: none;
}

.fv-tagline-h1 {
  font-size: clamp(1.15rem, 3.5vw, 2.5rem);
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.85), 0 1px 8px rgba(0,0,0,0.7);
  margin: 0 0 0.6em;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: bold;
}

.fv-tagline-p {
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 16px rgba(0,0,0,0.8);
  margin: 0;
  letter-spacing: 0.04em;
}

.fv-float {
  position: absolute;
  object-fit: cover;
  max-width: none;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 28px rgba(0,0,0,0.32), 0 2px 8px rgba(0,0,0,0.2);
  border: 3px solid rgba(255,255,255,0.75);
  z-index: 2;
  pointer-events: none;
}

.fv-float--cabbage {
  width: clamp(90px, 17%, 215px);
  aspect-ratio: 1 / 1;
  bottom: -1%;
  left: 2.5%;
  rotate: 9deg;
  animation: fvFloatDown 8.5s ease-in-out infinite;
}

.fv-float--narisawa {
  width: clamp(80px, 14%, 175px);
  aspect-ratio: 3 / 4;
  bottom: -1%;
  right: 2.5%;
  rotate: 7deg;
  animation: fvFloatUp 10s ease-in-out infinite reverse;
}

.fv-float--pearroot {
  width: clamp(100px, 19%, 240px);
  aspect-ratio: 4 / 3;
  top: -1%;
  left: -0.5%;
  rotate: -7deg;
  animation: fvFloatDown 11s ease-in-out infinite reverse;
}

.fv-float--y34 {
  width: clamp(80px, 15%, 190px);
  aspect-ratio: 4 / 3;
  top: -1%;
  right: 0.5%;
  rotate: 8deg;
  animation: fvFloatUp 12s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes fvFloatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes fvFloatDown {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}

@media (max-width: 768px) {
  .fv-float--y34 {
    display: none; 
  }
}

@media (max-width: 480px) {
  .fv-float {
    display: none;
  }

  .fv-tagline {
    padding: 0 8%;
  }

  .fv-tagline-h1 {
    letter-spacing: 0.05em;
  }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(32px, -46px) scale(1.1); }
}

.hero-fv + .container {
  padding-top: 40px;
}

.page-title {
  margin: 36px 0 28px;
  padding-bottom: 16px;
  border-bottom: 2px dotted var(--color-main);
}

.page-title h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-main-dark);
}

.section {
  margin-bottom: 56px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  color: var(--color-main-dark);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.section-title::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-main);
  box-shadow: 0 0 0 5px var(--color-main-soft);
  flex-shrink: 0;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.news-list {
  list-style: none;
  padding: 8px 20px;
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
}

.news-item {
  padding: 18px 12px;
  border-bottom: 1px dotted rgba(125, 168, 123, 0.5);
}

.news-item:last-child {
  border-bottom: none;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

.news-category {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  padding: 2px 12px;
  border-radius: var(--radius-lg);
}

.news-title {
  font-weight: bold;
  margin: 4px 0 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px dotted rgba(125, 168, 123, 0.5);
}

.schedule-table tr {
  transition: background 0.25s var(--ease-soft);
}

.schedule-table tbody tr:hover {
  background: var(--color-main-soft);
}

.schedule-table th {
  background: rgba(125, 168, 123, 0.1);
  width: 80px;
  font-weight: bold;
  color: var(--color-main-dark);
}

.blog-card {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.blog-thumb {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog-thumb-empty {
  background: linear-gradient(135deg, rgba(125, 168, 123, 0.25), rgba(230, 154, 139, 0.18));
}

.blog-card-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  transition: color 0.25s var(--ease-soft);
}

.blog-card:hover .blog-card-body h3 {
  color: var(--color-main-dark);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

.view-all-link {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.view-all-link:hover {
  background: var(--color-main);
  color: var(--color-white);
  transform: translateY(-2px);
}

.blog-list-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.blog-list-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog-list-thumb-empty {
  background: linear-gradient(135deg, rgba(125, 168, 123, 0.25), rgba(230, 154, 139, 0.18));
}

.blog-list-body {
  min-width: 0;
  flex: 1;
}

.blog-list-excerpt {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.blog-detail-thumb {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 12px 0 20px;
}

.blog-body .blog-figure {
  margin: 1.5em 0;
}

.blog-body .blog-figure-full img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.blog-body .blog-figure-row {
  display: flex;
  gap: 16px;
}

.blog-body .blog-figure-row img {
  width: calc(50% - 8px);
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

@media (max-width: 560px) {
  .blog-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-list-thumb,
  .blog-list-thumb-empty {
    width: 100%;
    height: 160px;
  }

  .blog-body .blog-figure-row {
    flex-direction: column;
  }

  .blog-body .blog-figure-row img {
    width: 100%;
  }
}

.blog-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.blog-list-item h3 {
  margin: 6px 0 0;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.member-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.member-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 168, 123, 0.3), rgba(230, 154, 139, 0.2));
  margin: 0 auto 14px;
  object-fit: cover;
  box-shadow: 0 0 0 4px var(--color-main-soft);
  transition: box-shadow 0.3s var(--ease-soft);
}

.member-card:hover .member-photo {
  box-shadow: 0 0 0 6px var(--color-main-soft);
}

.member-role {
  font-size: 0.85rem;
  color: var(--color-main);
  font-weight: bold;
  letter-spacing: 0.04em;
}

.member-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 4px 0;
}

.member-comment {
  font-size: 0.9rem;
  color: var(--color-text-light);
  text-align: left;
  margin-top: 10px;
}

.accordion {
  border: 1px dotted var(--color-main);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
}

.accordion-header {
  background: rgba(125, 168, 123, 0.15);
  padding: 16px 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s var(--ease-soft);
}

.accordion-header:hover {
  background: rgba(125, 168, 123, 0.24);
}

.accordion-header::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-main);
  transition: transform 0.3s var(--ease-soft);
}

.accordion.open .accordion-header::after {
  content: "\2212";
}

.accordion-body {
  display: none;
  padding: 20px;
  background: var(--color-white);
}

.accordion.open .accordion-body {
  display: block;
  animation: accordionIn 0.4s var(--ease-soft);
}

@keyframes accordionIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.obog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 8px;
}

.obog-list li {
  padding: 4px 0;
  break-inside: avoid;
}

@media (max-width: 600px) {
  .obog-list {
    columns: 1;
  }
}

.obog-table {
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 2rem;
  row-gap: 6px;
  margin: 0;
  padding: 0;
}
.obog-table dt {
  font-weight: 500;
}
.obog-table dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.obog-degree {
  margin-bottom: 2rem;
}
.obog-degree:last-child {
  margin-bottom: 0;
}
.obog-degree > h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-main);
  border-bottom: 2px solid var(--color-main);
  padding-bottom: 4px;
  margin: 0 0 12px;
}
.obog-degree h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-sub, #666);
  margin: 16px 0 4px;
}

.pub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pub-tab {
  padding: 8px 18px;
  border: 2px dotted var(--color-main);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--color-text);
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), transform 0.2s var(--ease-soft);
}

.pub-tab:hover {
  transform: translateY(-2px);
}

.pub-tab:hover,
.pub-tab.active {
  background: var(--color-main);
  color: white;
  border-style: solid;
}

.pub-category {
  margin-bottom: 24px;
}

.pub-category h3 {
  font-size: 1rem;
  color: var(--color-main-dark);
  border-bottom: 1px dotted var(--color-accent);
  padding-bottom: 8px;
}

.pub-entry {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dotted rgba(125, 168, 123, 0.3);
}

.objective-item {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.objective-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.objective-item h3 {
  color: var(--color-main-dark);
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  margin-bottom: 0;
}

.contact-info dt {
  font-weight: bold;
  color: var(--color-main-dark);
  margin-top: 16px;
}

.contact-info dt:first-child {
  margin-top: 0;
}

.contact-info dd {
  margin: 4px 0 0;
}

.access-routes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted rgba(125, 168, 123, 0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.access-route-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.access-route-item strong {
  display: block;
  color: var(--color-main-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.access-route-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.map-card {
  padding: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.map-card .map-embed {
  border-radius: 0;
  box-shadow: none;
  min-height: 320px;
  height: 100%;
}

.map-embed {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  padding: 12px 0;
  border-bottom: 1px dotted var(--color-main);
}

.link-list a {
  font-weight: bold;
}

.cta-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 20px;
  text-align: center;
}

.bg-cta {
  background:
    linear-gradient(135deg, rgba(95, 138, 93, 0.64) 0%, rgba(125, 168, 123, 0.54) 100%),
    url('../images/bg-cta.webp') center / cover no-repeat;
}

.cta-inner {
  max-width: var(--max-width);
  width: 85%;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.6rem;
  color: var(--color-white);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 36px;
  font-size: 1rem;
}

.cta-btn {
  display: inline-block;
  padding: 14px 44px;
  background: var(--color-white);
  color: var(--color-main-dark);
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.cta-btn:hover {
  background: var(--color-main-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
  .cta-section {
    padding: 52px 20px;
  }

  .cta-inner {
    width: 100%;
  }

  .cta-title {
    font-size: 1.3rem;
  }
}

.site-footer {
  background: var(--color-white);
  padding: 32px 0;
  margin-top: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.site-footer p {
  margin: 4px 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }

.loading {
  text-align: center;
  padding: 40px;
  color: var(--color-text-light);
  animation: loadingPulse 1.4s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.error-msg {
  background: #fff0f0;
  color: #c44;
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blobs span {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.bg-blobs span:nth-child(1) {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, rgba(125, 168, 123, 0.36) 0%, transparent 68%);
  top: -60px;
  left: -100px;
  animation: blobFloat 14s ease-in-out infinite;
}

.bg-blobs span:nth-child(2) {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 55% 45%, rgba(230, 154, 139, 0.34) 0%, transparent 68%);
  top: 80px;
  right: -60px;
  animation: blobFloat 11s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.bg-blobs span:nth-child(3) {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 50% 50%, rgba(230, 154, 139, 0.32) 0%, transparent 68%);
  top: 38%;
  left: 5%;
  animation: blobFloat 16s ease-in-out infinite;
  animation-delay: -6s;
}

.bg-blobs span:nth-child(4) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 45% 55%, rgba(125, 168, 123, 0.33) 0%, transparent 68%);
  top: 45%;
  right: -70px;
  animation: blobFloat 18s ease-in-out infinite reverse;
  animation-delay: -9s;
}

.bg-blobs span:nth-child(5) {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 40% 60%, rgba(125, 168, 123, 0.35) 0%, transparent 68%);
  bottom: -80px;
  left: -80px;
  animation: blobFloat 13s ease-in-out infinite;
  animation-delay: -2s;
}

.bg-blobs span:nth-child(6) {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 60% 40%, rgba(230, 154, 139, 0.33) 0%, transparent 68%);
  bottom: 5%;
  right: 8%;
  animation: blobFloat 12s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 800px) and (min-width: 601px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-nav-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
}

.quick-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

.quick-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--color-text);
}

.quick-nav-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-main-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s var(--ease-soft);
}

.quick-nav-card:hover .quick-nav-icon {
  background: var(--color-main);
}

.quick-nav-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-main-dark);
  transition: fill 0.35s var(--ease-soft);
}

.quick-nav-card:hover .quick-nav-icon svg {
  fill: var(--color-white);
}

.quick-nav-card h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-main-dark);
  letter-spacing: 0.02em;
}

.quick-nav-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.body-canvas {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.body-deco-imgs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.body-deco-img {
  position: absolute;
  object-fit: cover;
  max-width: none;
  border-radius: 0 !important;
  -webkit-mask-image: radial-gradient(circle, black 38%, transparent 72%);
  mask-image: radial-gradient(circle, black 38%, transparent 72%);
}

.body-deco-img--1 {
  width: 440px;
  height: 440px;
  top: 2%;
  left: -9%;
}

.body-deco-img--2 {
  width: 300px;
  height: 300px;
  top: 16%;
  right: -1%;
}

.body-deco-img--3 {
  width: 380px;
  height: 380px;
  top: 40%;
  left: -2%;
}

.body-deco-img--4 {
  width: 320px;
  height: 320px;
  top: 56%;
  right: -2%;
}

.body-deco-img--5 {
  width: 250px;
  height: 250px;
  top: 70%;
  left: -2%;
}

.body-canvas .card,
.body-canvas .news-list,
.body-canvas .quick-nav-card {
  background: rgba(255, 255, 255, 0.9);
}

#page-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-bottom: 80px;
}

@media (max-width: 600px) {
  .body-deco-img {
    display: none;
  }
}

