:root {
    --content-width: 1156px;
    --content-width-wide: 1264px;
}
body {
    background: #F4FCFB;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    color: #333;
}
.section-header {
    max-width: var(--content-width);
    margin: 60px auto 0;
    border-left: 15px solid;
    padding-left: 2rem;
    border-image: linear-gradient(to bottom, #9fc9c8 0%, #65C0BB 33%, #4BB7B1 67%, #219e97 100%) 1;
    display: flex;
    flex-direction: column-reverse;

    .title-ja {
        font-size: 48px;
    }
    .title-en {
        font-size: 30px;
        color: #9fc9c8;
        font-weight: 900;
    }
}
.pc-none {
    display: none;
}
.sp-none {
    display: block;
}
.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: linear-gradient(45deg, rgba(159, 201, 200, 0.9) 0%, rgba(101, 192, 187, 0.9) 33%, rgba(75, 183, 177, 0.9) 67%, rgba(33, 158, 151, 0.9) 100%);
    color: #fff;

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 24px;
        max-width: var(--content-width);
        margin: 0 auto;

        .logo {
            font-size: 1.5rem;
            height: 100px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #231815;
            img {
                max-height: 30px;
            }
        }
        .nav {

            ul {
                display: flex;
                gap: 3rem;
                align-items: center;
                font-weight: 600;

                a.contact {
                    background: linear-gradient(to top, #FFAC0A, #FFC800);
                    padding: 12px 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    column-gap: 8px;
                    color: #fff;
                    border-radius: 5px;
                    }
                }
            }
        .btn-sp-menu {
            display: none;
            padding: 13px 10px;
            width: 44px;
            height: 44px;
        }
    }
}
main{
    padding-top: 70px;
}
.hero {
    background-image: url(../images/bg_hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(110%);
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 700px;

    .hero-wrapper::after{
        content: '';
    }

    .catch {
        font-size: 56px;
        font-weight: 400;
        color: #fff;
        text-shadow: 1px 1px 4px #000000;
    }
}
.service {
    .service-wrapper {
        padding: 80px 24px;
        overflow: hidden;
    }
    .section-content {
        max-width: var(--content-width);
        margin: 60px auto 0;

        .business {
            display: flex;
            flex-wrap: wrap;
            position: relative;

            a:hover {
                opacity: 0.75;
            }

            .business-img {
                width: 40%;
                display: flex;
                flex-direction: column;
                justify-content: end;
                position: relative;
                margin: 5rem auto;
                background: url(../images/business-img.webp);
                background-size: cover;

                p{
                    text-align: center;

                    a{
                        display: inline-block;
                        background: linear-gradient(to top, #FFAC0A, #FFC800);
                        font-size: 1.25rem;
                        padding: 1rem 2rem;
                        border-radius: 5px;
                        margin-bottom: 3rem;
                        color: #fff;
                    }
                }
            }
            .business-txt {
                width: 60%;
                font-size: 1.15rem;
                line-height: 1.8;
                position: relative;
                margin: 5rem auto;
                background: #fff;
                p{
                    padding: 2rem;
                }
                p:first-child{
                    text-align: center;
                    font-size: 1.5rem;
                    background: #000000;
                    padding: 1rem 0;
                    color: #fff;
                }

                span{
                    display: block;
                    text-align: center;

                    a{
                        background: #2acb9a;
                        color: #fff;
                        display: inline-block;
                        padding: 0.5rem 3rem;
                        font-weight: bold;
                        letter-spacing: 0.05em;
                    }
                }
            }
        }
        .business::before {
            content: '';
            width: 200vw;
            height: 100%;
            position: absolute;
            left: -50vw;
            z-index: 0;
            background: linear-gradient(-45deg, rgb(170 233 230) 0%, rgba(101, 192, 187) 33%, rgba(75, 183, 177) 67%, rgba(33, 158, 151) 100%);
        }
    }
}
.company {
    .company-wrapper {
        padding: 80px 24px;
        overflow: hidden;

        .section-content {
            max-width: var(--content-width);
            margin: 60px auto 0;
            background-image: url(../images/bg_company.webp);

            .company-info {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                gap: 0;
                background: #fff;
            }
            table {
                width: 60%;
                padding: 2rem;
                max-width: 500px;
                margin: 2rem auto;
                        font-size: 1.2rem;
                tr {
                    position: relative;
                    th {
                        padding: 1rem 2rem;
                    }
                    td {
                        padding: 1rem 2rem;
                    }
                }
            }
            .company-img {
                width: 40%;
                display: flex;
                flex-direction: column;
                justify-content: end;
                background: url(../images/company-img.webp);
                background-size: cover;
                height: 100%;
                min-height: 350px;
            }
        }
    }
}
.privacy {

    .privacy-wrapper {
        padding: 60px 24px;
    }
    .section-content {
        max-width: 960px;
        margin: 0 auto;
        margin-top: 60px;

        h4 {
            margin: 1rem auto 0;
            font-size: 1.5rem;
        }
        p {
            padding: 1rem;
        }
    }
}
.footer {
    background: #34a8a2;
    color: #fff;

    .footer-wrapper {
        max-width: var(--content-width);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
        font-size: 0.9rem;

        a:hover {
            text-decoration: underline;
        }
        span {
            font-size: 0.75rem;
        }
    }
}

@media screen and (max-width: 900px) {
    .header {

        .header-wrapper {
            height: 64px;

            .logo {
                height: 24px;
                font-size: 1.25rem;

                img {
                        max-height: 20px;
                }
            }
            .nav {
                position: absolute;
                width: 100%;
                top: 64px;
                left: 0;
                height: 0;
                overflow-y: hidden;
                background-color: transparent;
                color: #003333;

                ul {
                    margin-top: 60px;
                    margin-bottom: 60px;
                    flex-direction: column;

                    a.contact {
                        color: #fff;
                    }
                }
            }
            .btn-sp-menu {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }
    }
    .btn-sp-menu span {
        display: block;
        width: 100%;
        height: 1px;
        background-color: black;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    header.open .btn-sp-menu span {
        position: absolute;
        top: 50%;
        right: 20px;
        width: 24px;
        background-color: black;
        transform-origin: center;
    }
    header.open .btn-sp-menu span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    header.open .btn-sp-menu span:nth-child(2) {
        opacity: 0;
    }
    header.open .btn-sp-menu span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .header.open {
        background-color: rgba(255, 255, 255, 0.90);

        .nav {
            background-color: rgba(255, 255, 255, 0.90);
            height: calc(100svh - 64px);
            overflow-y: auto;
        }
    }
    main{
        padding-top: 64px;
    }
    .section-header {

        .title-en {
            font-size: 12px;
        }
        .title-ja {
            font-size: 32px;
        }
    }
    .pc-none {
        display: block;
    }
    .sp-none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-header{
margin-top: 0;
    }
    .hero {
        max-height: 400px;

        .catch {
            font-size: 28px;
            padding: 1rem;
        }
    }
    .service {

        .service-wrapper {
            padding: 60px 24px;
        }
        .section-content {
            margin-top: 32px;
            flex-direction: column;
            row-gap: 24px;

            .business{
                flex-direction: column;

                .business-txt{
                    width: 100%;
                    margin: 2rem auto 0;
                }
                .business-txt{
                    padding: 1rem;
                    line-height: 1.8;

                    p{
                        padding: 2rem 0 1rem 0.5rem;
                        font-size: 1rem;
                    }
                }
                .business-img{
                    width: 100%;
                    margin: 0 auto 2rem;
                    background: #fff;
                }
            }
            img {
                width: 100%;
            }
        }
    }
    .company {
        padding: 0 24px;

        .company-wrapper {
            padding: 0 0 60px;

            .section-content {
                max-width: 960px;
                margin: 0 auto;
                margin-top: 32px;
                flex-direction: column;
                gap: 32px;
                padding: 0;

                .company-img {
                    width: 100%;

                    img {
                        width: 100%;
                    }
                }
                .company-info {
                    width: 100%;
                    font-size: 14px;
                    padding: 0;
                    flex-direction: column-reverse;

                    table{
                        width: 100%;
                        margin: 1rem auto 2rem;
                    }
                    th , td {
                        padding: 1rem;
                        font-size: 1rem;
                    }
                    td{
                        word-break: auto-phrase;

                        a{
                            font-size: 1.15rem;
                            letter-spacing: 0.5px;
                        }
                    }
                }
            }
        }
    }
    .footer {

        .footer-wrapper {
            align-items: center;
            gap: 12px;
            font-size: 12px;
        }
    }
}
main.privacy-main{
    font-weight: 500;

    h4{
        font-weight: 600;
    }
    .privacy .section-content p{
        padding: 1rem 0;
    }
}
