/* ==================================================
   RESET
================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;

    color: #212121;
    background: #f8fbfa;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* ==================================================
   VARIABLES
================================================== */

:root {

    --green: #5b9f92;
    --green-dark: #347b6e;
    --green-light: #eef9f6;

    --mint: #d7ecea;

    --text: #2b2b2b;
    --text-light: #666666;

    --white: #ffffff;

    --border: #e0ebe8;

    --max-width: 1180px;

    --radius: 24px;

    --shadow:
        0 15px 45px rgba(46, 93, 84, 0.10);

}


/* ==================================================
   COMMON
================================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.mobile-only {
    display: none;
}

.eyebrow {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading.center {
    text-align: center;
}

.section-number {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.section-heading h2 {
    color: var(--text);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.section-heading > span {
    display: block;
    width: 45px;
    height: 3px;
    background: var(--green);
    margin-top: 25px;
}

.section-heading.center > span {
    margin-inline: auto;
}

.section-lead {
    max-width: 760px;
    margin: 30px auto 0;
    color: var(--text-light);
    font-size: 16px;
}


/* ==================================================
   HEADER
   SAGA SINTEC STYLE
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}


/* ==================================================
   HEADER INNER
================================================== */

.header-inner {
    width: calc(100% - 40px);
    max-width: 1240px;

    min-height: 80px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==================================================
   LOGO AREA
================================================== */

.logo-area {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* ==================================================
   LOGO
================================================== */

.logo {
    width: 58px;
    height: 58px;

    object-fit: contain;

    flex-shrink: 0;
}


/* ==================================================
   SITE TITLE
================================================== */

.site-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title h1 {
    color: #333333;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;

    white-space: nowrap;
}

.site-title h1 span {
    font-weight: 500;
}

.site-title p {
    display: none;
}


/* ==================================================
   GLOBAL NAV
================================================== */

.global-nav {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-left: auto;
}


/* ==================================================
   NAV LINK
================================================== */

.global-nav a {
    position: relative;

    display: flex;
    align-items: center;

    height: 80px;

    padding: 0 2px;

    color: #333333;

    font-size: 15px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


/* ==================================================
   NAV UNDERLINE
================================================== */

.global-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #347b6e;

    transition:
        width 0.25s ease;
}


/* ==================================================
   NAV HOVER
================================================== */

.global-nav a:hover {
    color: #347b6e;
}

.global-nav a:hover::after {
    width: 100%;
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    position: relative;
}

.menu-button span {
    position: absolute;

    left: 9px;

    width: 26px;
    height: 2px;

    background: #333333;

    transition:
        transform 0.3s ease,
        top 0.3s ease,
        opacity 0.3s ease;
}

.menu-button span:nth-child(1) {
    top: 13px;
}

.menu-button span:nth-child(2) {
    top: 21px;
}

.menu-button span:nth-child(3) {
    top: 29px;
}


/* ==================================================
   MOBILE MENU BUTTON ACTIVE
================================================== */

.menu-button.active span:nth-child(1) {
    top: 21px;

    transform: rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    top: 21px;

    transform: rotate(-45deg);
}


/* ==================================================
   MOBILE NAV
================================================== */

.mobile-nav {
    display: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .header-inner {
        min-height: 75px;
    }


    /* PC MENU OFF */

    .global-nav {
        display: none;
    }


    /* HAMBURGER ON */

    .menu-button {
        display: block;
    }


    /* MOBILE NAV */

    .mobile-nav {
        display: flex;

        position: fixed;

        left: 0;
        right: 0;
        top: 75px;

        z-index: 999;

        flex-direction: column;

        padding: 10px 20px 20px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08);

        transform: translateY(-120%);

        transition:
            transform 0.3s ease;
    }

    .mobile-nav.open {
        transform: translateY(0);
    }


    /* MOBILE NAV LINKS */

    .mobile-nav a {
        padding: 15px 5px;

        border-bottom: 1px solid #eeeeee;

        color: #222222;

        font-size: 14px;
        font-weight: 500;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .header-inner {
        width: calc(100% - 30px);

        min-height: 70px;
    }


    /* LOGO */

    .logo {
        width: 45px;
        height: 45px;
    }


    /* COMPANY NAME */

    .site-title h1 {
        font-size: 14px;
    }


    /* CATCH COPY HIDE */

    .site-title p {
        display: none;
    }


    /* MOBILE NAV POSITION */

    .mobile-nav {
        top: 70px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .logo {
        width: 40px;
        height: 40px;
    }

    .site-title h1 {
        font-size: 13px;
    }

}



/* ==================================================
   HERO
================================================== */

.hero {
    padding: 70px 0 100px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(184, 225, 217, 0.45),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f2faf8 100%
        );
}

.hero-inner {
    width: min(
        calc(100% - 40px),
        1240px
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(400px, 1.15fr);

    gap: 70px;

    align-items: center;
}

.hero-text {
    padding-left: 30px;
}

.hero-text h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.25;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.hero-text h2 span {
    color: var(--green);
}

.hero-description {
    max-width: 530px;

    margin-top: 30px;

    color: #606866;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 35px;
}

.button {
    display: inline-flex;

    min-height: 52px;

    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #fff;
    background: var(--green);

    box-shadow:
        0 10px 25px rgba(91, 159, 146, 0.25);
}

.button-primary:hover {
    background: var(--green-dark);
}

.button-outline {
    color: var(--green-dark);

    border: 1px solid var(--green);

    background: #fff;
}

.button-outline:hover {
    background: var(--green-light);
}


/* ==================================================
   SLIDER
================================================== */

.hero-slider {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border: 10px solid #fff;

    border-radius: 30px;

    box-shadow: var(--shadow);

    background: #dceeea;
}

.slider-track {
    width: 100%;
    height: 100%;

    position: relative;
}

.slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition:
        opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    padding: 8px 12px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(5px);
}

.dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #b9ccc8;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.dot.active {
    width: 22px;

    border-radius: 10px;

    background: var(--green);
}


/* ==================================================
   ABOUT
================================================== */

.about {
    background: #fff;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 60px;

    align-items: stretch;
}

.about-message {
    padding: 35px 0;
}

.about-message p {
    max-width: 720px;

    font-size: 19px;
    line-height: 2.1;

    color: #454b49;

    margin-bottom: 25px;
}

.about-message p:last-child {
    margin-bottom: 0;
}

.about-card {
    padding: 45px;

    background: var(--green-light);

    border-radius: var(--radius);

    border: 1px solid #dcece8;
}

.card-label {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.about-card h3 {
    margin-top: 20px;

    font-size: 27px;

    line-height: 1.5;
}

.about-card > p:last-child {
    margin-top: 20px;

    color: #64716e;
}


/* ==================================================
   SERVICE
================================================== */

.service {
    background: #f1f8f6;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.service-card {
    position: relative;

    padding: 40px;

    background: #fff;

    border-radius: var(--radius);

    border: 1px solid #e2eeeb;

    box-shadow:
        0 8px 30px rgba(60, 100, 92, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(60, 100, 92, 0.13);
}

.service-card.emergency {
    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #f5fbf9 100%
        );
}

.service-icon {
    display: inline-flex;

    width: 45px;
    height: 45px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: var(--green);

    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    margin-top: 22px;

    font-size: 27px;

    color: #333;
}

.service-card > p {
    margin-top: 15px;

    color: #666;

    font-size: 15px;
}

.service-card ul {
    list-style: none;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.service-card li {
    padding: 5px 12px;

    border-radius: 50px;

    background: var(--green-light);

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 600;
}

.card-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 30px;

    padding: 15px 18px;

    border-radius: 12px;

    background: var(--mint);

    color: #285d54;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}

.card-button span {
    font-size: 18px;

    transition:
        transform 0.25s ease;
}

.card-button:hover {
    background: #c2e2de;
}

.card-button:hover span {
    transform: translateX(5px);
}


/* ==================================================
   WORKS
================================================== */

.works {
    background: #fff;
}

.works-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.work-item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 18px;

    background: #ddd;
}

.work-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.work-item:hover img {
    transform: scale(1.08);
}

.work-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0, 0, 0, 0.7)
        );
}

.work-caption {
    position: absolute;

    z-index: 2;

    left: 22px;
    right: 22px;
    bottom: 20px;

    color: #fff;
}

.work-caption small {
    font-size: 10px;

    letter-spacing: 0.18em;

    opacity: 0.8;
}

.work-caption h3 {
    margin-top: 3px;

    font-size: 18px;
}


/* ==================================================
   COMPANY
================================================== */

.company {
    padding: 80px 0;

    background: var(--green-light);
}

.company-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    border-radius: var(--radius);

    background: var(--green);

    color: #fff;
}

.company-box .eyebrow {
    color: #d9f3ed;
}

.company-box h2 {
    font-size: clamp(28px, 4vw, 44px);

    line-height: 1.35;
}

.company-box p:not(.eyebrow) {
    max-width: 650px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.85);
}

.button-light {
    flex-shrink: 0;

    background: #fff;

    color: var(--green-dark);
}

.button-light:hover {
    background: #eaf7f4;
}


/* ==================================================
   CONTACT
================================================== */

.contact {
    background: #fff;
}

.contact-box {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #eef9f6,
            #f8fbfa
        );

    border: 1px solid #dcece8;
}

.contact-heading h2 {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.3;
}

.contact-heading > p:last-child {
    max-width: 550px;

    margin-top: 20px;

    color: #66716e;
}

.contact-action {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-action > p {
    font-weight: 700;

    margin-bottom: 18px;
}

.contact-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 20px 25px;

    border-radius: 14px;

    background: var(--green);

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(91, 159, 146, 0.2);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.contact-button:hover {
    background: var(--green-dark);

    transform: translateY(-3px);
}

.contact-button span {
    font-size: 22px;
}

.contact-action small {
    margin-top: 10px;

    color: #888;

    font-size: 11px;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    padding-top: 60px;

    background: #35534d;

    color: #fff;
}

.footer-inner {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin-inline: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 15px;
}

.footer-brand img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.footer-brand strong {
    display: block;

    font-size: 14px;
}

.footer-brand p {
    margin-top: 2px;

    color: #b7c8c4;

    font-size: 11px;
}

.footer-nav {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 20px;

    color: #c7d4d1;

    font-size: 12px;
}

.footer-nav a:hover {
    color: #fff;
}

.copyright {
    padding: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #8fa19d;

    text-align: center;

    font-size: 10px;

    letter-spacing: 0.05em;
}


/* ==================================================
   BACK TO TOP
================================================== */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    background: var(--green);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-dark);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {

    .global-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        display: flex;

        position: fixed;

        left: 0;
        right: 0;
        top: 90px;

        z-index: 999;

        flex-direction: column;

        padding: 15px 20px 25px;

        background: rgba(255, 255, 255, 0.98);

        border-bottom: 1px solid #dfeae7;

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.08);

        transform: translateY(-120%);

        transition:
            transform 0.35s ease;
    }

    .mobile-nav.open {
        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 16px 10px;

        border-bottom: 1px solid #e9efed;

        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-text {
        padding-left: 0;

        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider {
        max-width: 750px;

        margin-inline: auto;
    }

    .works-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--max-width)
        );
    }

    .header-inner {
        width: calc(100% - 30px);

        min-height: 75px;
    }

    .site-title h1 {
        font-size: 14px;
    }

    .site-title p {
        display: none;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .mobile-nav {
        top: 75px;
    }

    .section {
        padding: 75px 0;
    }

    .mobile-only {
        display: block;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-lead {
        font-size: 14px;

        margin-top: 20px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-inner {
        width: calc(100% - 30px);
    }

    .hero-text h2 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 14px;

        margin-top: 20px;
    }

    .hero-buttons {
        margin-top: 25px;

        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-slider {
        border-width: 6px;

        border-radius: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .about-message {
        padding: 0;
    }

    .about-message p {
        font-size: 16px;

        line-height: 1.9;
    }

    .about-card {
        padding: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .works-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .work-item {
        border-radius: 12px;
    }

    .work-caption {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    .work-caption h3 {
        font-size: 14px;
    }

    .company {
        padding: 60px 0;
    }

    .company-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .company-box .button {
        width: 100%;
    }

    .contact-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 35px 25px;

        border-radius: 22px;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;

        padding-bottom: 30px;
    }

    .footer-nav {
        justify-content: flex-start;

        gap: 12px 18px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 44px;
        height: 44px;
    }

}


@media (max-width: 430px) {

    .site-title h1 {
        font-size: 13px;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-slider {
        aspect-ratio: 1 / 1;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

}
/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* 少しずつ時間をずらす */

.service-card:nth-child(2),
.work-item:nth-child(2) {
    transition-delay: 0.08s;
}

.service-card:nth-child(3),
.work-item:nth-child(3) {
    transition-delay: 0.16s;
}

.service-card:nth-child(4),
.work-item:nth-child(4) {
    transition-delay: 0.24s;
}

.service-card:nth-child(5),
.work-item:nth-child(5) {
    transition-delay: 0.32s;
}

/* アニメーションが苦手な環境への配慮 */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
/* ==================================================
   HERO TITLE SIZE ADJUSTMENT
================================================== */

.hero-text h2 {
    font-size: clamp(36px, 3.6vw, 54px);
    line-height: 1.4;
}

@media (max-width: 700px) {
    .hero-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 430px) {
    .hero-text h2 {
        font-size: 32px;
    }
}
/* ==================================================
   FOOTER COMPACT
================================================== */

/* PC */
.site-footer {
    padding-top: 35px;
}

.footer-inner {
    padding-bottom: 25px;
}


/* タブレット */
@media (max-width: 1000px) {

    .site-footer {
        padding-top: 30px;
    }

    .footer-inner {
        padding-bottom: 25px;
    }
}


/* スマホ */
@media (max-width: 700px) {

    .site-footer {
        padding-top: 25px;
    }

    .footer-inner {
        padding-bottom: 22px;
        gap: 25px;
    }

    .footer-brand {
        gap: 12px;
    }

    .footer-brand img {
        width: 38px;
        height: 38px;
    }

    .footer-nav {
        gap: 10px 16px;
    }

    .copyright {
        padding: 15px;
    }
}


/* 小さいスマホ */
@media (max-width: 430px) {

    .site-footer {
        padding-top: 22px;
    }

    .footer-inner {
        padding-bottom: 18px;
        gap: 20px;
    }

    .footer-nav {
        gap: 8px 14px;
        font-size: 11px;
    }

    .copyright {
        padding: 13px 10px;
        font-size: 9px;
    }
}
.site-footer {
    padding-top: 45px;
    background: #e8f5f2;
    color: #285d54;
}
.footer-brand p {
    color: #66827c;
}

.footer-nav {
    color: #52746d;
}

.footer-nav a:hover {
    color: #347b6e;
}

.copyright {
    border-top: 1px solid rgba(52, 123, 110, 0.15);
    color: #78938e;
}