/**
 * デザイントークン相当（静的HTMLの共通 <style> から抽出）
 * body のフォントは main 内の見出しに影響しやすいため、必要に応じてページCSSで上書きする。
 */
body { font-family: 'Noto Sans JP', sans-serif; color: #333333; line-height: 1.8; }
.font-serif { font-family: 'Noto Serif JP', serif; }
.font-en { font-family: 'Cormorant', serif; }
.sticky-header { position: sticky; top: 0; z-index: 50; }
.transition-soft { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.search-bar { background: #F9F9F9; border: 1px solid #E5E5E5; border-radius: 4px; }
.nav-link {
    display: inline-block;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #8DA695;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
a:hover .nav-link::after,
a:focus-visible .nav-link::after {
    width: 100%;
}
a:has(.nav-link):focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(141, 166, 149, 0.45);
    border-radius: 2px;
}
.footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.footer-accordion-item.active .footer-accordion-content { max-height: 500px; }
.footer-accordion-item.active .chevron { transform: rotate(180deg); }
