/* ================================================= */
/* Hero */
/* ================================================= */
section.hero {
    position: relative;
    height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    background: url('/asset/image_kani_1.jfif') center/cover no-repeat;
    padding: 0;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero_container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero_content {
    color: #fff;
}

.hero_title {
    margin-bottom: 1.5rem;
}

.hero_subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


/* ================================================= */
/* News */
/* ================================================= */
.news_list {
    display: grid;
    gap: 24px;
}

/* カード */
.news_card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-left: 4px solid #3b82f6;

    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* 状態 */
.news_card.is_important {
    border-color: var(--color-primary);
}

.news_card.is_product {
    border-color: #3b82f6;
}

.news_card.is_certification {
    border-color: #16a34a;
}

/* 中身 */
.news_meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.news_card.is_important .tag {
    background: var(--color-primary);
}

.news_card.is_product .tag {
    background: #3b82f6;
}

.news_card.is_certification .tag {
    background: #16a34a;
}

.news_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.news_content p {
    color: var(--color-header-text);
}

.news_button:hover {
    background: var(--color-secondary);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .news_card {
        flex-direction: column;
        align-items: flex-start;
    }

    .news_button {
        align-self: flex-start;
    }
}


/* ================================================= */
/* Home Links */
/* ================================================= */

.home_links{
    padding:80px 24px;
    background:#f9fafb;
}

.links_container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.link_card{
    background:white;
    padding:32px;
    border-radius:12px;
    text-align:center;
    text-decoration:none;
    color:#111;

    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:all .25s;
}

.link_card i{
    font-size:32px;
    color:#2563eb;
    margin-bottom:12px;
}

.link_card h3{
    margin-bottom:8px;
}

.link_card p{
    font-size:14px;
    color:#6b7280;
}

.link_card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* レスポンシブ */

@media (max-width:900px){
    .links_container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:600px){
    .links_container{
        grid-template-columns:1fr;
    }
}