:root {
    --haruno-color: #65863e;
    --haruno-green: #65863e;
    --haruno-coral: #f19782;
    --haruno-blue: #a2c5c9;
    --haruno-yellow: #f3ec62;
    --haruno-beige: #f1e0ce;
    --haruno-ink: #252821;
    --haruno-muted: #6d7168;
    --haruno-line: rgba(37, 40, 33, 0.13);
    --haruno-paper: #fffdfa;
    --haruno-base: #fffdfa;
    --haruno-main: #65863e;
    --haruno-accent: #f19782;
    --haruno-text: #252821;
    --haruno-bg-light: #fbf8f2;
    --font-jp: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-serif: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--haruno-ink);
    background: var(--haruno-paper);
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.85;
    padding-top: 82px;
    margin: 0;
}


h2 {
    font-weight: 500;
}

a {
    text-decoration: none;
}

section {
    padding: 120px 0;
}

img {
    max-width: 100%;
    height: auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.bg-light {
    background-color: #fdfdfc;
}

.text-center {
    text-align: center;
}

.sub-title {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.8;
    }

    .container {
        padding: 20px;
    }

    section {
        padding: 80px 0;
    }
}

.font-serif {
    font-family: var(--font-serif);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.haruno {
    color: var(--haruno-color);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: .04em;
    display: inline-block;
}

.agbalumo-regular {
    font-family: "Agbalumo", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 120px;
}

/* =========================================
   Header / Navigation
========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 250, 0.9);
    border-bottom: 1px solid rgba(37, 40, 33, 0.07);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    min-height: 82px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.hr-footer__logo {
    color: var(--haruno-green);
    font-size: 29px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.site-logo-text {
    display: block;
    flex-shrink: 0;
    line-height: 1;
}

.site-logo-figure {
    width: 180px;
    margin: 0;
}

.site-logo-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.menu-trigger {
    position: relative;
    display: none;
    width: 30px;
    height: 24px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 200;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--haruno-green);
    transition: transform 0.35s ease;
}

.menu-trigger span:nth-child(1) {
    top: 0;
}

.menu-trigger span:nth-child(2) {
    bottom: 0;
}

.menu-open .menu-trigger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-open .menu-trigger span:nth-child(2) {
    transform: translateY(-12px) rotate(-45deg);
}

.main-navigation {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    transform: none;
    overflow: visible;
}

.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    margin: 0;
}

.nav-list li a {
    position: relative;
    display: block;
    color: var(--haruno-ink);
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--haruno-green);
    transition: width 0.25s ease;
}

.nav-list li a:hover {
    color: var(--haruno-green);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 13px 22px;
    color: #fff;
    background: var(--haruno-green);
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
}

.nav-contact:hover {
    background: #557333;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    body {
        padding-top: 68px;
    }

    .header-inner {
        min-height: 68px;
        padding: 0 24px;
    }

    .site-logo-text {
        font-size: 25px;
    }

    .menu-trigger {
        display: block;
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 253, 250, 0.98);
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
        overflow-y: auto;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }

    .nav-inner {
        flex-direction: column;
        gap: 34px;
    }

    .nav-list {
        display: grid;
        gap: 20px;
        text-align: center;
    }

    .nav-list li a {
        font-size: 22px;
    }

    .nav-contact {
        padding: 15px 28px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 0 20px;
    }
}

/* =========================
   404 Page
   ========================= */
.not-found {
    padding: 160px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--haruno-base);
    text-align: center;
}

.not-found__code {
    display: block;
    font-size: 80px;
    color: var(--haruno-main);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.not-found__title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--haruno-text);
}

.not-found__text {
    font-size: 15px;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

.not-found__action {
    margin-bottom: 80px;
}

.not-found__action .btn--primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--haruno-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.not-found__action .btn--primary:hover {
    opacity: 0.8;
}

.not-found__nav {
    border-top: 1px solid var(--haruno-gray);
    padding-top: 40px;
    max-width: 400px;
    margin: 0 auto;
}

.not-found__nav p {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.not-found__links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.not-found__links a {
    font-size: 14px;
    color: var(--haruno-text);
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    transition: 0.3s;
}

.not-found__links a:hover {
    color: var(--haruno-color);
    border-color: var(--haruno-color);
}

@media (max-width: 768px) {
    .not-found {
        padding: 100px 0;
    }

    .not-found__code {
        font-size: 60px;
    }

    .not-found__title {
        font-size: 20px;
    }
}

/* =========================
   パンくず
========================= */
.breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
    color: #888;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--haruno-color);
}

.breadcrumb span {
    margin: 0 6px;
}

.rank-math-breadcrumb {
    padding: 0 2rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    section {
        padding: 100px 0;
    }
}

@media (max-width: 1024px) {

    .container--narrow {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
}


/* =========================================
ページネーション
========================================= */

.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: 0.25s;
}

.pagination .page-numbers:not(.prev):not(.next):not(.current) {
    border: none;
    background: transparent;
}

.pagination .page-numbers.current {
    background: var(--haruno-color);
    color: #fff;
}

.pagination .page-numbers:hover {
    color: var(--haruno-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination span.page-numbers:hover {
    background: inherit;
    color: inherit;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    border: 1px solid var(--haruno-gray);
    padding: 0 18px;
}

.pagination .prev::before {
    content: "←";
}

.pagination .next::after {
    content: "→";
}

/* ===============================
汎用CTAブロック
=============================== */
.service-cta-wrap,
.trouble-bottom-cta {
    text-align: center;
    margin-top: 40px;
}


@media (max-width: 768px) {

    .btn--cta {
        text-align: center;
    }

}

/* =========================================
   共通CTAボタン
========================================= */


.btn--cta {
    display: inline-block;
    padding: 1rem 2rem;
    text-wrap: nowrap;
    background: var(--haruno-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    max-width: 200px;
}

.btn--cta:hover {
    background: #4c6664;

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.btn--cta:active {
    transform: translateY(0);
}


/* =========================================
   Footer
========================================= */
.site-footer {
    padding: 86px 0 30px;
    color: #fff;
    background: #262924;
}

.hr-footer__grid {
    display: grid;
    grid-template-columns: 0.95fr 2fr;
    gap: 90px;
}

.hr-footer__logo {
    display: inline-block;
    color: #fff;
    margin-bottom: 24px;
}

.hr-footer__brand p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.9;
}

.hr-footer__instagram {
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hr-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.hr-footer__nav h3 {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    letter-spacing: 0.12em;
}

.hr-footer__nav a,
.hr-footer__nav p {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.7;
}

.hr-footer__nav a:hover {
    color: #fff;
}

.hr-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hr-footer__bottom small,
.hr-footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

@media (max-width: 980px) {
    .hr-footer__grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hr-footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 64px 0 24px;
    }

    .hr-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .hr-footer__nav>div:last-child {
        grid-column: 1 / -1;
    }

    .hr-footer__bottom {
        margin-top: 48px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}