:root {
    --color-primary: #003366;
    /* Navy Blue for Trust */
    --color-secondary: #C5A059;
    /* Gold for Premium/Construction */
    --color-accent: #D32F2F;
    /* Alert/CTA */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F5F7FA;
    --color-white: #FFFFFF;
    --color-line: #06C755;
    /* LINE specific green */
    --font-base: "Noto Sans JP", sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.u-mobile-only {
    display: none;
}

.u-desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .u-mobile-only {
        display: block;
    }

    .u-desktop-only {
        display: none;
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 2em;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--cta {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.btn--cta:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
}

.btn--line {
    background-color: var(--color-line);
    color: var(--color-white);
}

.btn--large {
    font-size: 1.1rem;
    padding: 1em 3em;
    min-width: 240px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-sm);
}

.header__logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.header__nav ul {
    display: flex;
    gap: var(--spacing-md);
}

.header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.header__cta {
    display: block;
}

.header__menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.header__menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.header__menu-trigger span:nth-child(1) {
    top: 0;
}

.header__menu-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__menu-trigger span:nth-child(3) {
    bottom: 0;
}

@media (max-width: 768px) {

    .header__nav,
    .header__cta {
        display: none;
    }

    .header__menu-trigger {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    /* Account for fixed header */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F7FA 0%, #E4E9F2 100%);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* You can add a background image here via style attribute or specialized class */
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    /* Subtle overlay */
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-sm);
}

.hero__lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.hero__lead .highlight {
    color: var(--color-primary);
    background: linear-gradient(transparent 60%, rgba(197, 160, 89, 0.3) 60%);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero__features li {
    background: var(--color-white);
    padding: 0.8em 1.5em;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: 900;
}

.hero__cta-group {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero__lead {
        font-size: 1.1rem;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__features {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .hero__features li {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn--large {
        width: 100%;
        max-width: 320px;
    }
}

/* Sections */
.section {
    padding: var(--spacing-lg) 0;
}

.section__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 0.5rem;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: var(--border-radius);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.section__image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 300px;
}

.service-layout--reverse {
    direction: ltr;
    /* Reset if needed */
}

@media (min-width: 769px) {
    .service-layout--reverse .section__image {
        order: 1;
        /* Image first */
    }

    .service-layout--reverse .section__text {
        order: 2;
    }
}

/* Main Utilities - Added for Sections 2-7 */
/* Sub-page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #001f3f 100%);
    color: var(--color-white);
    padding: 160px 0 60px;
    /* Account for fixed header */
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f9f9f9;
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.breadcrumbs li::after {
    content: '>';
    margin-left: 0.5em;
    opacity: 0.5;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Page Content Utilities */
.page-content {
    padding: var(--spacing-lg) 0;
}

/* Requirements Steps */
.requirements-steps {
    counter-reset: req-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.req-card {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.req-card:hover {
    transform: translateY(-5px);
}

.req-card::before {
    counter-increment: req-counter;
    content: "要件 " counter(req-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.2rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 20px;
}

.req-card__title {
    margin-top: var(--spacing-sm);
    font-size: 1.2rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-bg-alt);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Industry List Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: var(--spacing-md);
}

.industry-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.industry-item:hover {
    background: #eef2f7;
    border-color: #d1d8e0;
}

.industry-group-title {
    grid-column: 1 / -1;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--color-text);
    border-left: 4px solid var(--color-secondary);
    padding-left: 10px;
}

/* Table Styles */
.table-bordered {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-md);
    background: #fff;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 0.9rem;
}

.table-bordered th {
    background-color: #f7f7f7;
    white-space: nowrap;
    width: 30%;
    text-align: left;
}

/* Fee & Application List */
.fee-list dt {
    float: left;
    clear: left;
    width: 120px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fee-list dd {
    margin-left: 130px;
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #ddd;
    margin-left: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.timeline-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-primary);
}


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

.u-mb-md {
    margin-bottom: var(--spacing-md);
}

/* Cards & Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
}

.card__title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5em;
}

.list-check {
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.list-check li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Target Audience List */
.problem-list {
    display: grid;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.problem-list li {
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    border: 1px solid #eee;
}

.problem-list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 1rem;
}

/* Service Section */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
}

.heading-tertiary {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: 0.8em;
    border-left: 4px solid var(--color-secondary);
}

.list-disc {
    padding-left: 1.2em;
    list-style-type: disc;
}

.list-disc li {
    margin-bottom: 0.5em;
}

/* Pricing Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-sm);
    background: var(--color-white);
}

.price-table th,
.price-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.price-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    white-space: nowrap;
    width: 30%;
}

.note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Reasons */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.reason-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.reason-item__num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.reason-item__title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.reason-item__desc {
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: var(--color-primary);
}

.badge-required {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7em;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    margin-left: 0.5em;
    vertical-align: middle;
}

.badge-optional {
    display: inline-block;
    background: #999;
    color: var(--color-white);
    font-size: 0.7em;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    margin-left: 0.5em;
    vertical-align: middle;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper {
    position: relative;
}

/* Privacy Check */
.privacy-check {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
}

.privacy-text {
    font-size: 0.95rem;
}

.privacy-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.faq-item__q {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5em;
}

.faq-item__a {
    padding-left: 1.5em;
    color: var(--color-text);
}

/* Contact */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-lead {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.contact-points {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    color: var(--color-secondary);
}

.contact-points li::before {
    content: '★ ';
}

.contact-form-placeholder {
    background: #f9f9f9;
    padding: var(--spacing-md);
    border: 2px dashed #ccc;
    text-align: center;
    border-radius: var(--border-radius);
}

.dummy-form {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* FAQ Page Specific Styles */
.faq-page-list .faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 2rem;
}

.faq-page-list .faq-item:last-child {
    border-bottom: none;
}

.faq-item__q {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.faq-item__q::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-item__a {
    padding-left: 2rem;
    line-height: 1.8;
}

.answer-lead {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.reason-article {
    max-width: 800px;
    margin: 0 auto;
}

.reason-article h2 {
    font-size: 1.6rem;
    color: var(--color-primary);
    border-left: 6px solid var(--color-secondary);
    padding-left: 1rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.reason-article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
}

.reason-intro {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 3rem;
    text-align: center;
}

/* =========================================
   Single Post & Sidebar Styles
   ========================================= */

/* Layout: 2-Column */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    /* Main: auto, Sidebar: 300px */
    gap: var(--spacing-lg);
    align-items: start;
}

@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
        gap: var(--spacing-md);
    }
}

.main-column {
    min-width: 0;
    /* Prevent overflow in grid items */
}

/* Article Header */
.page-header--article {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    text-align: left;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
}

.article-header__meta {
    display: flex;
    gap: 1em;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 0.5em;
    font-size: 0.9rem;
}

.article-header__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .article-header__title {
        font-size: 1.6rem;
    }

    .page-header--article {
        text-align: center;
    }

    .article-header__meta {
        justify-content: center;
    }
}

/* Post Content */
.post-content {
    background: #fff;
    padding: var(--spacing-md);
    /* Add some padding if needed, or keep transparent */
    border-radius: var(--border-radius);
}

.post-thumbnail {
    margin-bottom: var(--spacing-md);
}

/* Typography in Post */
.post-body h2 {
    font-size: 1.6rem;
    color: var(--color-primary);
    background: rgba(0, 51, 102, 0.05);
    padding: 0.8em 1em;
    border-left: 5px solid var(--color-primary);
    margin: 3rem 0 1.5rem;
    border-radius: 0 4px 4px 0;
}

.post-body h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color-secondary);
    margin: 2.5rem 0 1.2rem;
    position: relative;
}

.post-body h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 20%;
    height: 2px;
    background: var(--color-primary);
}

.post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5em;
}

.post-body li {
    margin-bottom: 0.5em;
}

.post-body blockquote {
    background: #f9f9f9;
    border-left: 5px solid #ccc;
    padding: 1.5em;
    margin: 2rem 0;
    color: #666;
    font-style: italic;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
    /* Sticky on scroll */
}

.widget {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
    border: 1px solid #eee;
}

.widget__title {
    font-size: 1.1rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-bg-alt);
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    font-weight: 700;
}

.widget ul li {
    border-bottom: 1px dashed #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    display: block;
    padding: 0.8em 0;
    color: var(--color-text);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget ul li a::after {
    content: '›';
    color: var(--color-secondary);
    font-weight: bold;
}

.widget ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* SNS Share */
.sns-share {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    text-align: center;
}

.sns-share__title {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.sns-share__list {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-sns {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.btn-sns--x {
    background: #000;
}

.btn-sns--fb {
    background: #1877f2;
}

/* News Section */
.section--news {
    padding: var(--spacing-md) 0;
    background-color: var(--color-white);
    border-bottom: 1px solid #eee;
}

.news-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.news-title {
    font-size: 1.2rem;
    color: var(--color-primary);
    white-space: nowrap;
    border-right: 2px solid var(--color-secondary);
    padding-right: var(--spacing-md);
    margin-bottom: 0;
    /* Override default */
}

.news-list {
    flex-grow: 1;
}

.news-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    /* for mobile safty */
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.news-link {
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .news-wrapper {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .news-title {
        border-right: none;
        border-bottom: 2px solid var(--color-secondary);
        padding-right: 0;
        padding-bottom: 0.5rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}