* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #292923;
    background: #faf9f5;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        "YuGothic",
        "Noto Sans JP",
        sans-serif;
    line-height: 1.8;
}

a {
    color: inherit;
}

.site-header {
    background: rgba(250, 249, 245, 0.96);
    border-bottom: 1px solid #e5e1d7;
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-title {
    color: #26382b;
    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.header-app-link {
    margin-right: auto;
    padding: 8px 14px;
    color: #fff;
    background: #8b3e2f;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.header-app-link:hover {
    background: #713126;
}

.main-nav {
    display: flex;
    gap: 26px;
}

.main-nav a {
    color: #55564f;
    font-size: 14px;
    text-decoration: none;
}

.main-nav a:hover {
    color: #8b3e2f;
}

.hero {
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #23372a 0%,
            #405c45 55%,
            #283c2e 100%
        );
}

.hero-inner {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
    padding: 105px 0 100px;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 20px;
    color: #e2d7b6;
    font-size: 14px;
    letter-spacing: 0.22em;
}

.hero h1 {
    margin: 0;
    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(38px, 7vw, 68px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.hero-description {
    max-width: 720px;
    margin: 30px auto 0;
    color: #eef1eb;
    font-size: 16px;
}

.search-form {
    max-width: 700px;
    margin: 42px auto 0;
    display: flex;
    padding: 7px;
    background: #fff;
    border-radius: 8px;
}

.search-form input {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    color: #222;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
}

.search-form button {
    min-width: 100px;
    padding: 12px 22px;
    color: #fff;
    background: #8b3e2f;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.search-form button:hover {
    background: #713126;
}

.total-count {
    margin: 20px 0 0;
    color: #dfe6dd;
    font-size: 14px;
}

.total-count strong {
    margin: 0 5px;
    color: #fff;
    font-size: 20px;
}

.section {
    padding: 85px 0;
}

.section-alt {
    background: #f0eee7;
}

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 4px 0 8px;
    color: #26382b;
    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: 32px;
    font-weight: 600;
}

.section-heading p {
    margin-top: 8px;
}

.section-kicker {
    margin: 0 !important;
    color: #8b3e2f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.category-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.category-card {
    min-height: 100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e1d7;
    border-radius: 8px;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.category-name {
    color: #303c32;
    font-weight: 700;
}

.category-count {
    margin-top: 5px;
    color: #88877f;
    font-size: 13px;
}

.prefecture-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.prefecture-card {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd9ce;
    border-radius: 5px;
    text-decoration: none;
}

.prefecture-card:hover {
    border-color: #7b927d;
}

.prefecture-card small {
    color: #99968c;
}

.spot-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.spot-card {
    background: #fff;
    border: 1px solid #e3dfd4;
    border-radius: 8px;
    overflow: hidden;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.spot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.spot-card-link {
    height: 100%;
    padding: 25px;
    display: block;
    text-decoration: none;
}

.spot-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #77766e;
    font-size: 12px;
}

.spot-type {
    padding: 1px 8px;
    color: #fff;
    background: #526b56;
    border-radius: 20px;
}

.spot-card h3 {
    margin: 16px 0 10px;
    color: #26382b;
    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: 22px;
    line-height: 1.5;
}

.spot-rumor-title {
    margin: 0;
    color: #484942;
    font-size: 15px;
}

.spot-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.spot-tags span {
    padding: 3px 9px;
    color: #746657;
    background: #f4f0e8;
    border-radius: 4px;
    font-size: 11px;
}

.spot-more {
    margin-top: 22px;
    display: block;
    color: #8b3e2f;
    font-size: 13px;
    font-weight: 700;
}

.site-footer {
    color: #dcded9;
    background: #202b23;
}

.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0;
}

.footer-inner strong {
    color: #fff;
    font-family:
        "Yu Mincho",
        "YuMincho",
        serif;
    font-size: 20px;
}

.footer-inner p {
    max-width: 760px;
    margin: 16px 0;
    color: #bfc5bf;
    font-size: 13px;
}

.footer-nav {
    margin: 20px 0;
}

.footer-nav a {
    color: #e1e4df;
    font-size: 13px;
}

.footer-inner small {
    color: #929b94;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .spot-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .header-inner {
        min-height: 64px;
        gap: 10px;
    }

    .site-title {
        font-size: 16px;
        letter-spacing: 0.04em;
    }

    .header-app-link {
        padding: 7px 10px;
        font-size: 12px;
    }

    .main-nav {
        display: none;
    }

    .hero-inner {
        padding: 75px 0 70px;
    }

    .hero-description {
        font-size: 14px;
    }

    .search-form {
        display: block;
        background: transparent;
        padding: 0;
    }

    .search-form input {
        padding: 16px;
        background: #fff;
        border-radius: 6px;
    }

    .search-form button {
        width: 100%;
        margin-top: 10px;
        padding: 15px;
    }

    .section {
        padding: 60px 0;
    }

    .spot-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 27px;
    }
}
