/*==================================================
    HERO
==================================================*/

.home-hero {
    padding: 40px 0 80px;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.home-hero-label {
    margin-bottom: 12px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.home-hero-text h1 {
    font-size: 42px;
    line-height: 1.5;
}

.home-hero-lead {
    font-size: 18px;
    line-height: 2;
}

.home-hero-note {
    color: var(--main-color);
    font-weight: bold;
}

.campaign-banner {
    margin: 24px 0;
    padding: 14px 20px;

    background: #fff3cd;
    border: 2px solid #f1c40f;
    border-radius: 6px;

    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #b76e00;
}

.home-hero-buttons {
    margin-top: 26px;
}

.home-hero-image img {
    width: 100%;
    border-radius: 10px;
}

/*==================================================
    SERVICE
==================================================*/

.home-service {
    padding: 70px 0;
    background: var(--white);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item {
    padding: 26px;
    background: var(--bg-color);
    border-radius: 8px;
}

.service-item h2 {
    font-size: 22px;
}

/*==================================================
    WORKS
==================================================*/

.home-works {
    padding: 70px 0;
}

.section-lead {
    text-align: center;
}

.works-preview {
    margin-top: 34px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.works-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;

    border-radius: 8px;

    transition: .2s;
}

.works-preview:hover img {
    opacity: .9;
}

.center-button {
    margin-top: 30px;
    text-align: center;
}

/*==================================================
    NEWS
==================================================*/

.home-news {
    padding: 70px 0;
    background: var(--white);
}

.news-list {
    max-width: 780px;
    margin: 0 auto;

    border-top: 1px solid var(--light-gray);
}

.news-list li {
    border-bottom: 1px solid var(--light-gray);
}

.news-list a {
    display: flex;
    gap: 24px;
    padding: 18px 0;
}

.news-list time {
    min-width: 120px;
    color: var(--main-color);
    font-weight: bold;
}

.news-list a:hover span {
    color: var(--accent-color);
}

/*==================================================
    VOICE
==================================================*/

.home-voice {
    padding: 70px 0;
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.voice-item {
    padding: 26px;
    background: var(--white);

    border: 1px solid var(--light-gray);
    border-radius: 8px;
}

.voice-item span {
    display: block;
    margin-top: 14px;

    color: var(--gray);
    font-size: 14px;

    text-align: right;
}

/*==================================================
    COMMON
==================================================*/

.list-link {
    margin-top: 24px;
    text-align: center;
}

.list-link a {
    color: var(--main-color);
    font-weight: bold;
    border-bottom: 1px solid var(--main-color);
}

.list-link a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width: 768px) {

    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .home-hero-text h1 {
        font-size: 32px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .works-preview {
        grid-template-columns: 1fr;
    }

    .voice-list {
        grid-template-columns: 1fr;
    }

    .news-list a {
        display: block;
    }

    .news-list time {
        display: block;
        margin-bottom: 6px;
    }

}