:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b4513;
    --accent-color: #c9a962;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-cream: #faf8f5;
    --bg-dark: #1a252f;
    --white: #ffffff;
    --border-color: #e5e1dc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    margin-bottom: 20px;
}

.loader-book {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.loader-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: var(--text-light);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: auto;
}

.brand-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-accent {
    color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: var(--bg-light);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    background: rgba(139, 69, 19, 0.08);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 10px;
    background: var(--white);
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.offcanvas {
    background: var(--bg-cream);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
}

.offcanvas-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.offcanvas-body {
    padding: 20px;
}

.offcanvas-body .nav-link {
    padding: 12px 16px;
    margin-bottom: 5px;
    display: block;
}

main {
    margin-top: 80px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Yoshida_Hiroshi_-_Fujiyama_from_Okitsu.jpg/1200px-Yoshida_Hiroshi_-_Fujiyama_from_Okitsu.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(26, 37, 47, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-label {
    display: inline-block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
}

.intro-content {
    padding-left: 40px;
}

.intro-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-outline-primary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.featured-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.article-card-featured {
    grid-column: span 1;
}

.article-card .article-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.article-card .article-content {
    padding: 25px;
}

.article-card .article-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-card .article-title a {
    color: var(--primary-color);
}

.article-card .article-title a:hover {
    color: var(--secondary-color);
}

.article-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.article-date {
    font-size: 13px;
    color: var(--text-light);
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.read-more:hover {
    color: var(--accent-color);
}

.features-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-light);
}

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.main-quote p {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.main-quote cite {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--accent-color);
    font-style: normal;
}

.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-hero-about {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Kenrokuen_Kotoji_lantern.jpg/1200px-Kenrokuen_Kotoji_lantern.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-contact {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Kiyomizu-dera_in_Kyoto-r.jpg/1200px-Kiyomizu-dera_in_Kyoto-r.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-policy {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Ryoanji_rock_garden_close_up.jpg/1200px-Ryoanji_rock_garden_close_up.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.about-intro,
.mission-section,
.values-section,
.stats-section,
.team-quote {
    padding: 100px 0;
}

.about-intro {
    background: var(--white);
}

.about-image-wrapper,
.values-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image,
.values-image {
    width: 100%;
    height: auto;
}

.about-content {
    padding-right: 40px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-section {
    background: var(--bg-light);
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-number {
    font-family: 'Shippori Mincho', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.mission-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-text {
    font-size: 15px;
    color: var(--text-light);
}

.values-section {
    background: var(--white);
}

.values-content {
    padding-left: 50px;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.value-icon {
    flex-shrink: 0;
}

.value-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.value-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.value-text p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.team-quote {
    background: var(--bg-light);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-card blockquote p {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.quote-card blockquote cite {
    font-size: 16px;
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.contact-intro {
    padding: 80px 0 40px;
    background: var(--white);
}

.contact-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro-content .lead {
    font-size: 18px;
    color: var(--text-light);
}

.contact-cards-section {
    padding: 40px 0 100px;
    background: var(--white);
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-card-email {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 20px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 25px;
}

.contact-card-email:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.resources-section {
    padding: 100px 0;
    background: var(--white);
}

.resource-card {
    display: block;
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.resource-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.resource-icon i {
    font-size: 24px;
    color: var(--white);
}

.resource-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.policy-content {
    padding: 80px 0;
    background: var(--white);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-update {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.policy-update p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.policy-article {
    line-height: 1.9;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.policy-section p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.policy-section .contact-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.article-page {
    background: var(--white);
}

.article-header {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 60px;
}

.article-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.article-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.article-category-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
}

.article-main-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body {
    padding: 80px 0;
}

.article-content {
    max-width: 100%;
}

.article-lead {
    margin-bottom: 40px;
}

.article-lead p {
    font-size: 19px;
    color: var(--text-color);
    line-height: 1.9;
}

.article-figure {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.article-figure figcaption {
    padding: 15px 20px;
    background: var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
}

.article-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.article-section p {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.article-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-section li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.article-conclusion {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.article-conclusion h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.article-conclusion p {
    margin-bottom: 15px;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}

.article-references {
    border-top: 2px solid var(--border-color);
    padding-top: 30px;
    margin-top: 50px;
}

.article-references h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.article-references ul {
    list-style: none;
    padding: 0;
}

.article-references li {
    margin-bottom: 10px;
}

.article-references a {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.nav-link-article {
    display: block;
    padding: 20px 25px;
    background: var(--bg-light);
    border-radius: 15px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

.nav-link-article:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-link-article.nav-prev {
    text-align: left;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.related-articles,
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li,
.category-list li {
    margin-bottom: 12px;
}

.related-articles a,
.category-list a {
    font-size: 15px;
    color: var(--text-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-articles a:hover,
.category-list a:hover {
    color: var(--secondary-color);
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.update-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    padding: 20px 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h6 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-color);
}

.btn-cookie-reject {
    padding: 12px 28px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--text-color);
}

@media (max-width: 991px) {
    main {
        margin-top: 70px;
    }
    
    .intro-content,
    .about-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }
    
    .values-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .intro-section,
    .featured-section,
    .features-section,
    .cta-section,
    .about-intro,
    .mission-section,
    .values-section,
    .team-quote,
    .contact-cards-section,
    .faq-section,
    .resources-section,
    .policy-content,
    .article-body {
        padding: 60px 0;
    }
    
    .stats-section {
        padding: 50px 0;
    }
    
    .article-header {
        min-height: 350px;
        padding: 80px 0 40px;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    .navbar-brand {
        gap: 8px;
    }
    
    .brand-icon {
        width: 32px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .article-conclusion {
        padding: 25px;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
}
