@charset "UTF-8";

/* =========================================
   News Detail Page Styles (Simple)
   ========================================= */

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #111;
    background-color: #fff;
}

.nd-main-wrapper {
    background: #fff;
    padding-bottom: 100px;
}

/* Breadcrumb */
.nd-breadcrumb {
    background: #f9f9f9;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 60px;
}
.nd-breadcrumb a { color: #888; }
.nd-breadcrumb a:hover { color: var(--accent-color); }
.separator { margin: 0 10px; color: #ccc; }

/* Container (Narrow for readability) */
.nd-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Article Header */
.nd-header {
    text-align: center; /* タイトル周りは中央揃え */
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.nd-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.nd-label {
    display: inline-block;
    padding: 4px 12px;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 4px;
}

.nd-meta time {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.nd-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

/* 2. Article Body */
.nd-body {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 80px;
}

.nd-body p {
    margin-bottom: 30px;
}

/* Info Box Style */
.nd-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid #eee;
    text-align: center;
}

.nd-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.nd-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* 3. Footer Nav */
.nd-footer {
    border-top: 1px solid #eee;
    padding-top: 60px;
    margin-bottom: 80px;
}

.nd-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nd-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nd-nav-link:hover {
    color: var(--accent-color);
}

.nd-btn-back {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nd-btn-back:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* -----------------------------------------
   4. Contact Area (Added)
----------------------------------------- */
.contact-area {
    background: #f9f9f9;
    padding: 100px 0;
}

.contact-box {
    background: #f4f8ff;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.btn-contact-tel {
    background: #fff;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact-tel:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-btns { flex-direction: column; }
    .contact-box { padding: 40px 20px; }
}

@media (max-width: 600px) {
    .nd-title { font-size: 1.5rem; text-align: left; }
    .nd-header { text-align: left; }
    .nd-meta { justify-content: flex-start; }
    .nd-nav { flex-direction: column; gap: 30px; }
    .nd-nav-link { order: 2; }
    .nd-btn-back { order: 1; }
}