/*
Theme Name: KabenaviLP
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A minimal WordPress theme for a simple top page and basic pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kabenabilp
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
    --container: 960px;
    --pad: 16px;
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;
    line-height: 1.7;
    color: #111;
    background: #fff;
}

a {
    color: inherit;
}

.site-header,
.site-footer {
    padding: 18px var(--pad);
    border-bottom: 1px solid #eee;
}
.site-footer {
    border-top: 1px solid #eee;
    border-bottom: none;
    margin-top: 40px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.site-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
.site-description {
    margin: 6px 0 0;
    font-size: 13px;
    color: #444;
}

.nav-primary {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.nav-primary a {
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #eee;
    border-radius: 999px;
}

main {
    padding: 24px var(--pad);
}
.page-title {
    margin: 0 0 12px;
    font-size: 28px;
}
.entry-content > :first-child {
    margin-top: 0;
}

.hero {
    padding: 28px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fafafa;
}
.hero h1 {
    margin: 0 0 10px;
    font-size: 34px;
}
.hero p {
    margin: 0;
    color: #333;
}

.wp-block-image img {
    height: auto;
}
