* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: "Palatino Linotype", "STSong", serif;
    background: #F3E9D2;
    color: #2B2118;
    line-height: 1.7;
}

.tape {
    background: #F7F0DE;
    border-bottom: none;
}

.tape-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 22px 10px;
    border-bottom: 1px solid #2D5A27;
    box-shadow: 0 2px 0 #4A7C43;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2D5A27;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 10px;
}

nav a {
    color: #2B2118;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #4A7C43;
}

nav a:hover,
nav a:focus {
    color: #2D5A27;
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 22px 20px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 28px;
    align-items: start;
}

.hero h1 {
    font-size: 30px;
    line-height: 1.35;
    color: #2D5A27;
    margin-bottom: 14px;
}

.hero-copy p {
    margin-bottom: 10px;
    font-size: 16px;
}

.stamps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.stamp {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    border: 6px solid;
    text-align: center;
    transform: rotate(-8deg);
}

.stamp-yes {
    color: #2D5A27;
    border-color: #2D5A27;
    background: #E4EEDC;
}

.stamp-no {
    color: #5A2D27;
    border-color: #5A2D27;
    background: #EEDCDC;
    transform: rotate(7deg);
}

.band {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 22px;
}

.band h2 {
    font-size: 24px;
    color: #2D5A27;
    margin-bottom: 12px;
}

.band > p {
    margin-bottom: 12px;
    font-size: 16px;
}

.cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 16px;
}

.card {
    background: #F8F1DF;
    border: 1px solid #2D5A27;
    border-radius: 0;
    padding: 20px 22px;
}

.card svg {
    color: #4A7C43;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    margin-bottom: 8px;
    font-size: 15px;
}

.yn {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background: #F8F1DF;
}

.yn th,
.yn td {
    border: 1px solid #2D5A27;
    padding: 10px 12px;
    text-align: left;
    font-size: 15px;
    border-radius: 0;
}

.yn thead th {
    background: #2D5A27;
    color: #F3E9D2;
}

.yn td:nth-child(2) {
    font-weight: 700;
    color: #2D5A27;
    width: 18%;
}

.origami {
    list-style: none;
    margin-top: 16px;
}

.origami li {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    background: #F8F1DF;
    border: 1px solid #4A7C43;
    border-radius: 0;
}

.origami .num {
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2D5A27;
    color: #F3E9D2;
    font-size: 32px;
    font-weight: 700;
}

.origami h3 {
    margin: 12px 12px 6px 0;
    font-size: 17px;
}

.origami p {
    margin: 0 12px 12px 0;
    font-size: 15px;
}

.faq details {
    background: #F8F1DF;
    border: 1px solid #2D5A27;
    border-left: 6px solid #2D5A27;
    border-radius: 0;
    margin-bottom: 10px;
    padding: 10px 14px;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
}

.faq details p {
    margin-top: 8px;
    font-size: 15px;
}

.foot {
    background: #E6D7B4;
    border-top: 3px solid #2D5A27;
    padding: 24px 22px;
}

.foot-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.foot p {
    font-size: 14px;
    margin-bottom: 6px;
}

@media (max-width: 800px) {
    .hero,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .stamps {
        flex-direction: row;
    }

    .stamp {
        width: 120px;
        height: 120px;
        font-size: 22px;
    }
}
