:root {
    --color-main: #0d4848;
    --color-text: #1f2a2c;
    --color-muted: #6f7779;
    --color-line: #e2e4e5;
    --color-soft: #e4f3ee;
    --color-bg: #f3f4f4;
    --color-white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--color-bg);
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.mobile-lp {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.desktop-home {
    display: none;
}

.lp-header {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px 10px;
    background: var(--color-white);
}

.lp-logo {
    display: block;
    width: min(50vw, 190px);
}

.lp-logo img {
    width: 100%;
    height: auto;
}

.hamburger-button {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    gap: 0;
    padding: 9px;
    border: 1px solid #d7dedc;
    border-radius: 999px;
    background: var(--color-white);
    cursor: pointer;
}

.hamburger-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-main);
}

.sp-category-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(86vw, 360px);
    height: 100vh;
    padding: 18px 16px 22px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 36px rgba(24, 34, 36, 0.16);
    transform: translateX(104%);
    transition: transform 0.22s ease;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(18, 30, 31, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

body.drawer-open {
    overflow: hidden;
}

body.drawer-open .sp-category-drawer {
    transform: translateX(0);
}

body.drawer-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}

.drawer-head p {
    margin: 0;
    color: var(--color-main);
    font-size: 1rem;
    font-weight: 850;
}

.drawer-close {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #d7dedc;
    border-radius: 999px;
    background: #fff;
    color: #4d5859;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.drawer-category-list {
    display: grid;
    gap: 8px;
}

.drawer-category-list a {
    display: grid;
    grid-template-columns: 48px 1fr 16px;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid #e3e0d8;
    border-radius: 8px;
    background: #fff;
    color: #202b2c;
    font-size: 0.92rem;
    font-weight: 850;
}

.drawer-category-list a::after {
    content: "›";
    color: #8da879;
    font-size: 1.35rem;
    line-height: 1;
}

.drawer-category-list img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.drawer-legal-list {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-line);
}

.drawer-legal-list a {
    padding: 9px 4px;
    color: #536061;
    font-size: 0.86rem;
    font-weight: 750;
}

.fv {
    position: relative;
    min-height: 352px;
    overflow: hidden;
    background: #fbfaf7;
}

.fv-visual {
    position: absolute;
    inset: 0;
}

.fv-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.fv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.fv-copy {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding: 100px 24px 0;
    text-align: center;
}

.fv-copy h1 {
    margin: 0 0 12px;
    color: var(--color-main);
    font-size: clamp(1.92rem, 8.15vw, 2.34rem);
    font-weight: 800;
    line-height: 1.3;
}

.fv-copy p {
    margin: 0;
    color: #172325;
    font-size: clamp(0.78rem, 3.35vw, 0.92rem);
    font-weight: 700;
    line-height: 1.72;
}

.sp-columns {
    padding: 22px 18px 30px;
    background: #f8f6ef;
}

.sp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sp-section-head h2 {
    margin: 0;
    color: #172526;
    font-size: 1.12rem;
    line-height: 1.35;
}

.sp-section-head h2::before {
    content: "✣";
    margin-right: 6px;
    color: #83b765;
    font-size: 0.85rem;
}

.sp-section-head a {
    color: #6e9f54;
    font-size: 0.82rem;
    font-weight: 800;
}

.sp-section-head a::after {
    content: " ›";
}

.sp-column-list {
    display: grid;
    gap: 12px;
}

.sp-column-card {
    display: block;
    overflow: hidden;
    border: 1px solid #dedbd2;
    border-radius: 8px;
    background: var(--color-white);
}

.sp-column-thumb {
    display: block;
    background: var(--color-white);
}

.sp-column-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sp-column-card div {
    min-width: 0;
    padding: 12px 14px 14px;
}

.sp-column-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #dcedd4;
    color: #5f944f;
    font-size: 0.72rem;
    font-weight: 800;
}

.sp-column-card h3 {
    margin: 0 0 7px;
    color: #172526;
    font-size: 0.9rem;
    line-height: 1.48;
}

.sp-column-card h3 a {
    display: block;
    color: inherit;
}

.sp-column-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 7px;
    color: #737b7b;
    font-size: 0.74rem;
    font-weight: 700;
}

.sp-column-meta span {
    display: inline;
    width: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.sp-column-meta span::after {
    content: "|";
    margin-left: 8px;
    color: #a4aaaa;
}

.sp-column-card time {
    color: #858b8b;
    font-size: 0.74rem;
    font-weight: 700;
}

@media (min-width: 431px) {
    body {
        padding: 0;
    }
}

@media (min-width: 900px) {
    html,
    body {
        background: #f8f6ef;
    }

    .mobile-lp {
        display: none;
    }

    .desktop-home {
        display: block;
        min-height: 100vh;
        background: #f8f6ef;
    }

    .pc-header {
        display: flex;
        height: 78px;
        align-items: center;
        justify-content: space-between;
        padding: 0 clamp(48px, 7vw, 118px);
        border-bottom: 1px solid #e6e1d8;
        background: rgba(255, 255, 255, 0.96);
    }

    .pc-logo {
        width: 226px;
    }

    .pc-logo img {
        width: 100%;
        height: auto;
    }

    .pc-hero {
        position: relative;
        height: 318px;
        overflow: hidden;
        border-bottom: 1px solid #e6e1d8;
        background: #fbfaf6;
    }

    .pc-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .pc-hero-copy {
        position: relative;
        z-index: 1;
        display: grid;
        justify-items: center;
        padding-top: 92px;
        text-align: center;
    }

    .pc-hero-title {
        margin: 0 0 18px;
        color: #0d5452;
        font-size: clamp(2rem, 3.1vw, 3.05rem);
        font-weight: 850;
        line-height: 1.2;
        text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
    }

    .pc-hero-lead {
        margin: 0 0 25px;
        color: #1b2a2b;
        font-size: 1.08rem;
        font-weight: 800;
        line-height: 1.75;
        text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
    }

    .pc-main {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 24px;
        width: min(1100px, calc(100% - 48px));
        margin: 28px auto 0;
        align-items: start;
    }

    .pc-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .pc-section-head h2,
    .pc-sidebar h2 {
        position: relative;
        margin: 0;
        color: #1f2f2f;
        font-size: 1.42rem;
        line-height: 1.3;
    }

    .pc-section-head h2::before,
    .pc-sidebar h2::before {
        content: "✣";
        margin-right: 8px;
        color: #83b765;
        font-size: 1rem;
    }

    .pc-section-head a {
        color: #6e9f54;
        font-size: 0.92rem;
        font-weight: 800;
    }

    .pc-section-head a::after {
        content: " ›";
        font-size: 1.1em;
    }

    .pc-guide-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px 28px;
    }

    .pc-card {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .pc-card-thumb {
        display: block;
        margin-bottom: 10px;
    }

    .pc-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 0;
    }

    .pc-card-body {
        padding: 0;
    }

    .pc-card-meta {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0 0 6px;
        color: #6f7878;
        font-size: 0.84rem;
        line-height: 1.4;
        font-weight: 500;
    }

    .pc-card-meta span::after {
        content: "|";
        margin-left: 9px;
        color: #a0a8a8;
    }

    .pc-card-body h3 {
        min-height: 0;
        margin: 0;
        color: #192526;
        font-size: 0.98rem;
        line-height: 1.65;
        font-weight: 700;
    }

    .pc-card-body h3 a {
        display: block;
        color: inherit;
    }

    .pc-card-body time {
        color: #858b8b;
        font-size: 0.76rem;
        font-weight: 700;
    }

    .pc-sidebar {
        padding: 16px 9px 9px;
        border: 1px solid #dedbd2;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.88);
    }

    .pc-sidebar h2 {
        margin: 0 12px 13px;
        font-size: 1.05rem;
    }

    .pc-sidebar a {
        display: grid;
        grid-template-columns: 36px 1fr 14px;
        align-items: center;
        gap: 8px;
        min-height: 46px;
        padding: 5px 10px;
        border: 1px solid #e3e0d8;
        border-bottom: 0;
        background: #fff;
        color: #202b2c;
        font-size: 0.92rem;
        font-weight: 800;
    }

    .pc-sidebar a:first-of-type {
        border-radius: 4px 4px 0 0;
    }

    .pc-sidebar a:last-of-type {
        border-bottom: 1px solid #e3e0d8;
        border-radius: 0 0 4px 4px;
    }

    .pc-sidebar a::after {
        content: "›";
        color: #8da879;
        font-size: 1.4rem;
        line-height: 1;
    }

    .pc-sidebar img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .pc-bottom-banner {
        display: flex;
        width: min(1100px, calc(100% - 48px));
        min-height: 82px;
        align-items: center;
        justify-content: center;
        margin: 26px auto 28px;
        border: 1px solid #dedbd2;
        border-radius: 12px;
        background: linear-gradient(90deg, #fff, #fbf5e8);
        text-align: center;
    }

    .pc-bottom-banner p {
        margin: 0 0 4px;
        color: #679c4f;
        font-size: 1.55rem;
        font-weight: 850;
    }

    .pc-bottom-banner span {
        color: #4b5555;
        font-size: 1rem;
        font-weight: 700;
    }
}

.site-footer {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 32px 20px 28px;
    border-top: 1px solid #e2e4e5;
    background: #fff;
    text-align: center;
}

.site-footer-logo {
    display: inline-block;
    width: min(210px, 66vw);
    margin-bottom: 8px;
}

.site-footer-logo img {
    width: 100%;
    height: auto;
}

.site-footer-copy {
    margin: 0 0 18px;
    color: #536061;
    font-size: 0.84rem;
    font-weight: 800;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.site-footer-links a {
    color: #263233;
    font-size: 0.82rem;
    font-weight: 800;
}

.site-footer-note {
    margin: 0 0 6px;
    color: #679c4f;
    font-size: 0.84rem;
    font-weight: 800;
}

.site-footer-copyright {
    margin: 0;
    color: #7b8585;
    font-size: 0.76rem;
}

.legal-page {
    background: #f8f6ef;
}

.legal-header {
    display: flex;
    min-height: 68px;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e2e4e5;
    background: #fff;
}

.legal-header-logo {
    display: block;
    width: min(210px, 60vw);
}

.legal-header-logo img {
    width: 100%;
    height: auto;
}

.legal-shell {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 54px;
}

.legal-card {
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid #dedbd2;
    border-radius: 8px;
    background: #fff;
}

.legal-card h1 {
    margin: 0 0 14px;
    color: #173536;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    line-height: 1.35;
}

.legal-card h2 {
    margin: 30px 0 10px;
    color: #173536;
    font-size: 1.18rem;
    line-height: 1.45;
}

.legal-card p,
.legal-card li {
    color: #394547;
    font-size: 0.96rem;
    line-height: 1.85;
}

.legal-card ul {
    margin: 0 0 0 1.2em;
    padding: 0;
}

.legal-date {
    margin-top: 28px !important;
    color: #728080 !important;
    font-size: 0.86rem !important;
}

@media (min-width: 900px) {
    .site-footer {
        width: 100%;
        padding: 38px 24px 30px;
        background: #fff;
    }
}

@media (min-width: 900px) and (max-width: 1120px) {
    .pc-main {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 18px;
        width: min(100% - 32px, 980px);
    }

    .pc-guide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .pc-sidebar {
        padding: 14px 8px 8px;
    }

    .pc-sidebar h2 {
        margin-inline: 10px;
        font-size: 0.98rem;
    }

    .pc-sidebar a {
        grid-template-columns: 32px 1fr 12px;
        min-height: 43px;
        gap: 7px;
        padding: 5px 8px;
        font-size: 0.86rem;
    }

    .pc-sidebar img {
        width: 29px;
        height: 29px;
    }
}

@media (max-width: 360px) {
    .lp-header {
        padding-inline: 14px;
    }

    .fv {
        min-height: 330px;
    }

    .fv-copy {
        padding-top: 92px;
    }

}
