.entry-page {
    margin: 0;
    min-height: 100vh;
    background: #f4e3b8;
    color: #2b2622;
    font-family: 'Noto Sans JP', sans-serif;
}

.entry-header {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 24px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.entry-logo img {
    display: block;
    width: min(260px, 58vw);
    height: auto;
}

.entry-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.entry-header a {
    color: #7a231f;
    font-weight: 900;
    text-decoration: none;
}

.entry-header nav a {
    padding: 8px 12px;
    border: 2px solid #2b2622;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.entry-hero,
.entry-section,
.entry-cta {
    width: min(100% - 32px, 980px);
    margin: 24px auto;
    background: #fffdf7;
    border: 4px solid #2b2622;
    border-radius: 18px;
    box-shadow: 7px 7px 0 rgba(43, 38, 34, 0.14);
}

.entry-hero {
    padding: clamp(28px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    align-items: center;
    gap: 28px;
}

.entry-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 12px;
    color: #fff7e8;
    background: #8f2022;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.entry-hero h1 {
    margin: 0;
    color: #7a231f;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.12;
}

.entry-lead {
    margin: 20px 0 0;
    font-size: 1.08rem;
    line-height: 1.9;
    font-weight: 800;
}

.entry-hero img {
    width: 100%;
    height: auto;
    border: 3px solid #2b2622;
    border-radius: 14px;
    box-shadow: 4px 4px 0 rgba(43, 38, 34, 0.12);
}

.entry-section {
    padding: 30px;
}

.entry-section h2 {
    margin: 0 0 14px;
    color: #7a231f;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.entry-section p,
.entry-section li {
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 750;
}

.entry-list {
    margin: 14px 0 0;
    padding-left: 1.2em;
}

.entry-cta {
    padding: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.entry-cta a {
    min-height: 82px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #982226, #c94c31);
    border: 3px solid #2b2622;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.45;
}

.entry-cta a:nth-child(2) {
    background: #8c5a3b;
}

.entry-cta a:nth-child(3) {
    background: #2b2622;
}

.entry-footer {
    padding: 28px 18px 44px;
    text-align: center;
    line-height: 1.8;
    font-weight: 800;
}

.entry-footer a {
    color: #7a231f;
}

@media (max-width: 760px) {
    .entry-header {
        display: block;
    }
    .entry-header nav {
        justify-content: flex-start;
        margin-top: 14px;
    }
    .entry-hero,
    .entry-cta {
        grid-template-columns: 1fr;
    }
    .entry-section,
    .entry-cta {
        padding: 20px;
    }
}
