.fpc5-section {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.2rem) 0;
    box-sizing: border-box;
    background:
        radial-gradient(ellipse at 90% 60%, rgba(200,168,75,0.10), transparent 50%),
        linear-gradient(160deg, #fffef9 0%, #f7f4eb 60%, #f0ead8 100%);
    color: #1f280d;
    border-top: 3px solid #c8a84b;
    border-bottom: 3px solid #c8a84b;
}

.fpc5-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(31,40,13,0.022) 0px,
            rgba(31,40,13,0.022) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.fpc5-wrap {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

.fpc5-head { margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem); text-align: center; }

.fpc5-title {
    all: unset;
    display: block;
    margin-bottom: 0.2rem;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f280d;
    letter-spacing: -0.02em;
}

.fpc5-sub {
    all: unset;
    display: block;
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
    color: rgba(31, 40, 13, 0.65);
    line-height: 1.5;
}

.fpc5-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.6rem, 1.2vw, 0.9rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.fpc5-card {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1vw, 0.85rem);
    min-height: clamp(5rem, 8vw, 7rem);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(200, 168, 75, 0.25);
    border-radius: 0.75rem;
    text-align: center;
    transition:
        background-color 160ms ease,
        border-color     160ms ease,
        box-shadow       160ms ease,
        transform        160ms ease;
}

.fpc5-card:hover,
.fpc5-card:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    border-color: #c8a84b;
    box-shadow: 0 4px 16px rgba(200, 168, 75, 0.22);
    transform: translateY(-2px);
    outline: none;
}

.fpc5-card:active {
    background: #f7f2e4;
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(31, 40, 13, 0.08);
}

.fpc5-emoji {
    display: block;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.fpc5-label {
    display: block;
    font-size: clamp(0.75rem, 1.1vw, 0.875rem);
    font-weight: 600;
    line-height: 1.3;
    color: #253012;
    hyphens: auto;
    overflow-wrap: break-word;
    max-width: 100%;
}

@media screen and (max-width: 900px) {
    .fpc5-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .fpc5-card { min-height: 5.5rem; }
}

@media screen and (max-width: 540px) {
    .fpc5-section { padding: 1.75rem 0; }
    .fpc5-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .fpc5-card { min-height: 5rem; padding: 0.9rem 0.6rem; border-radius: 0.625rem; }
    .fpc5-emoji { font-size: 1.65rem; }
    .fpc5-label { font-size: 0.78rem; }
}

@media screen and (max-width: 390px) {
    .fpc5-section { padding: 1.4rem 0; }
    .fpc5-grid { gap: 0.5rem; }
    .fpc5-card { min-height: 4.6rem; padding: 0.75rem 0.45rem; }
    .fpc5-emoji { font-size: 1.45rem; }
    .fpc5-label { font-size: 0.73rem; }
}