/* ---- Reset & Base ---- */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body{
    font-family:'Zen Kaku Gothic New',sans-serif;
    color:#1d1d1f;
    background:#faf9f7;
    line-height:1.9;
    font-size:14px;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

/* WordPress が付与する画像クラスへの対応 */
.wp-post-image,
.article-row-img img,
.town-card-img img,
.hero-bg img,
.single-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

::selection{background:#d4e4d9;color:#1d1d1f}

/* ---- Wrapper ---- */
.wrap{max-width:1100px;margin:0 auto;padding:0 32px}

/* ---- Section Label（共通） ---- */
.sec-label{
    font-size:11px;font-weight:700;letter-spacing:.15em;
    color:#999;margin-top:20px;margin-bottom:40px;
    text-transform:uppercase;
}

/* ---- Reveal ---- */
.rv{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.rv.on{opacity:1;transform:none}
