:root {
  --color-primary: #2E8B6F;
  --color-primary-dark: #1F6B52;
  --color-primary-light: #4AAF8A;
  --color-primary-bg: #E8F5F0;
  --color-accent: #F0A500;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-text: #2C3E50;
  --color-text-muted: #6B7C8F;
  --color-text-light: #9BABB8;
  --color-border: #D9E8E3;
  --color-bg: #F4F7F6;
  --color-bg-card: #FFFFFF;
  --font-sans: Noto Sans JP, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: 0.18s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2C3E50;
  background: #F4F7F6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2E8B6F;
  text-decoration: none;
}

a:hover {
  color: #1F6B52;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2E8B6F, #4AAF8A);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.logo-mark--sm {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text--sm .logo-main {
  font-size: 16px;
}

.logo-main {
  font-size: 20px;
  font-weight: 800;
  color: #2E8B6F;
}

.logo-sub {
  font-size: 10px;
  color: #6B7C8F;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #D9E8E3;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__nav {
  display: flex;
  gap: 24px;
}
.header__nav a {
  font-size: 14px;
  color: #6B7C8F;
  font-weight: 600;
}
.header__nav a:hover {
  color: #2E8B6F;
  text-decoration: none;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  height: 2px;
  background: #2C3E50;
  border-radius: 2px;
  transition: 0.18s ease;
}
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  overflow-y: auto;
}
.header__mobile-nav a {
  font-size: 16px;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 1px solid #EAF2EF;
}
.header__mobile-nav.is-open {
  display: flex;
}
.header .mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.footer {
  background: #1A2E44;
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
.footer__brand .logo-mark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.footer .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 4px;
}
.footer .brand-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.footer__col .col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__col li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer .bottom-links {
  display: flex;
  gap: 16px;
}
.footer .bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer .bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: #2E8B6F;
  color: #fff;
}
.btn--primary:hover {
  background: #1F6B52;
  color: #fff;
  text-decoration: none;
}
.btn--outline {
  background: transparent;
  color: #2E8B6F;
  border-color: #2E8B6F;
}
.btn--outline:hover {
  background: #E8F5F0;
  text-decoration: none;
}
.btn--success {
  background: #28a745;
  color: #fff;
}
.btn--danger {
  background: #dc3545;
  color: #fff;
}
.btn--warning {
  background: #ffc107;
  color: #212529;
}
.btn--sm {
  padding: 0.35rem 0.9rem;
  font-size: 13px;
}
.btn--xs {
  padding: 0.2rem 0.6rem;
  font-size: 12px;
}
.btn.w-100 {
  width: 100%;
  justify-content: center;
}

.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
}
.flash--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.flash--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.flash__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  color: inherit;
  font-size: 18px;
  opacity: 0.6;
}
.flash__close:hover {
  opacity: 1;
}

.breadcrumb-item {
  font-size: 13px;
  color: #6B7C8F;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: " / ";
}
.breadcrumb-item a {
  color: #6B7C8F;
}
.breadcrumb-item a:hover {
  color: #2E8B6F;
}
.breadcrumb-item--current {
  color: #2C3E50;
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spin {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

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

.lh-lg {
  line-height: 1.9;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header__cta .btn:not(:last-child) {
    display: none;
  }
}/*# sourceMappingURL=app.css.map */