/* Reset CSS */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    color: var(--text-color);
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --highlight-color: #CA3E40;
    --base-color: #29150A;
    --background-color: #F5F0E7;
    --theme-color: #389359;
    --text-color: #524137;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
}


.mb {
    display: none;
}


.br {
    border-radius: 20px;
}


.section {
    width: 100%;
}

/* Footer Styles */
.footer {
    background-color: var(--base-color);
    color: #fff;
    padding: 100px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    height: 200px;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 10px;
}

.footer-address {
    p:not(:last-child) {
        margin: 0 0 10px;
    }

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

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex: 1;
    align-items: flex-end;
}

.footer-nav ul {
    list-style: none;
    display: flex;
}

.footer-nav li {
    margin-left: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
}

.footer-copyright p {
    margin-top: 10px;
    font-size: 12px;
}

img {
    max-width: 100%;
}

body {
    font-family: var(--font-ja);
}


.section-inner {
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    /* background-color: var(--background-color); */
    color: var(--text-color);
    padding: 20px 75px 20px 30px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1000;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1324px; */
    margin: 0 auto;
    width: 100%;
    gap: 30px;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--base-color);
    font-size: 13px;
}

.header-logo img {
    max-width: 150px;
    margin-right: 25px;
}

.header-nav {
    flex-grow: 1;
}

.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.header-nav li {
    /* margin-left: 20px; */
}

.header-nav a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* スロット風ホバーアニメーション */
.nav-slot-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.slot-text {
    position: relative;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slot-original,
.slot-duplicate {
    display: block;
    transition: opacity 0.4s ease;
}

.slot-duplicate {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
}

/* ホバー時のアニメーション */
.nav-slot-link:hover .slot-text {
    transform: translateY(-100%);
}

.nav-slot-link:hover .slot-original {
    opacity: 0;
}

.nav-slot-link:hover .slot-duplicate {
    opacity: 1;
}

.header-nav a:hover {
    color: var(--highlight-color);
}

.header-contact .button {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;

    img {
        max-width: 20px;
        margin-right: 10px;
    }
    .hover {
        display: none;
    }
}






.header-contact .button:hover {
    background-color: #fff7f7;
    color: var(--highlight-color);
    font-weight: bold;
    border: 2px solid var(--highlight-color);
    .nothover {
        display: none;
    }
    .hover {
        display: block;
    }
}





footer {
    background-color: var(--base-color);
    color: white;
}



.c-breadcrumb {
    padding-top: 46px;
    margin-bottom: 55px;

    .section-inner {
        max-width: 1324px;
        margin: 0 auto;

        @media (max-width: 1323px) {
            padding-inline: 20px;
        }

        #breadcrumbs {
            font-size: 13px;
        }
    }
}


/* -------------------------------
トップページ
------------------------------- */


.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    max-width: 280px;
    width: 80%;
    background-color: white;
    height: 65px;
    color: #3F2B1E;
    text-decoration: none;
    font-family: var(--font-en);
    font-weight: 500;
    background-image: url(./img/btn_arrow.png);
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 14px;
    transition: 0.5s;
    font-size: 18px;
    border: 2px solid #fff;
}

.btn:hover {
    background-color: var(--highlight-color);
    background-image: url(./img/btn_arrow_white.png);
    border: 2px solid #fff;
    color: white;
}

h2.temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;

    .en {
        font-family: var(--font-en);
        color: #CA3E40;
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 30px;

        @media (max-width: 767px) {
            font-size: 18px;
            margin-bottom: 15px;
        }
    }

    .ja {
        font-size: 38px;
        font-weight: 600;
        letter-spacing: 2px;
        line-height: 1.4;
        @media (max-width: 767px) {
            font-size: 28px;
        }
    }
}


.front {
    .sec1 {
        margin-bottom: 50px;



        .section-inner {
            display: flex;
            justify-content: center;
            max-width: 1640px;
        }

        .radi {
            border-radius: 20px;
            width: 95%;
            max-width: 95%;
            margin: 0 auto;
            height: 854px;
            position: relative;
            overflow: hidden;

            .bg-slider {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                opacity: 0;
                transition: opacity 1.5s ease-in-out;
            }

            .slide.active {
                opacity: 1;
            }

            .copy {
                position: absolute;
                left: 90px;
                top: 120px;
                z-index: 2;


                .bg_white {
                    color: var(--text-color);
                    font-size: 44px;
                    flex-direction: column;
                    font-weight: 700;
                    margin-bottom: 20px;
                    display: flex;
                    justify-content: flex-start;
                    align-items: flex-start;
                    gap: 3px;

                    div {
                        display: block;
                        flex: 0 0 auto;
                        padding: 3px 10px 7px;
                        line-height: 1;
                        margin-bottom: 10px;
                        background-color: white;
                        letter-spacing: 2px;
                    }
                }

                .text_white {
                    font-size: 24px;
                    font-weight: 600;
                    /* color: white; */
                    line-height: 1.6;

                }
            }
        }

    }

    .sec2 {
        margin-bottom: 30px;

        .section-inner {
            display: flex;
            max-width: 1324px;
            justify-content: space-between;

            /* flex-wrap: wrap; */
            .left {
                flex: 0 0 56%;
                padding: 7% 6% 7%;
                color: white;
                background-color: var(--theme-color);







                .top {
                    .en {
                        font-family: var(--font-en);
                        font-size: 24px;
                        font-weight: 700;
                        margin-bottom: 30px;
                    }

                    .copy {
                        font-size: 34px;
                        font-weight: bold;
                        letter-spacing: 1px;
                        line-height: 1.6;
                        margin-bottom: 30px;
                    }

                    .subcopy {
                        font-size: 23px;
                        font-weight: bold;
                        margin-bottom: 70px;
                    }
                }

                .middle {
                    margin-bottom: 100px;

                    p {
                        font-size: 18px;
                        line-height: 1.8;
                        margin-bottom: 35px;
                    }

                }
            }

            .right {
                flex: 0 0 40%;
                position: relative;
                overflow: hidden;
            }

            .bg-slider-sec2 {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .slide-sec2 {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                opacity: 0;
                transition: opacity 1.5s ease-in-out;
            }

            .slide-sec2.active {
                opacity: 1;
            }
        }
    }

    .sec3 {

        .section-inner {
            max-width: 1324px;
            background-color: #F8F8F8;
            padding: 110px 60px 80px;

            .desc {
                text-align: center;
                line-height: 1.8;
                font-size: 18px;
            }

            .f_wrap {
                display: flex;
                justify-content: space-between;
                margin-top: 90px;

                @media (max-width: 991px) {
                    flex-wrap: wrap;
                    gap: 30px;
                }

                .sec3_fwrap_box {
                    flex: 0 0 32%;
                    border-radius: 20px;
                    background-color: white;
                    padding: 80px 35px 60px;
                    
                    
                    
                    
                    
                    

                    @media (max-width: 991px) {
                        flex: 0 0 100%;
                        max-width: 100%;
                        padding: 40px 20px 30px;
                    }

                    img {
                        width: 100%;
                        border-radius: 20px;
                        margin-bottom: 30px;
                    }

                    .sec3_fwrap_box>div {
                        margin-bottom: 30px;
                    }




                    .title {
                        margin-top: 60px;
                        margin-bottom: 20px;

                        .small {
                            font-size: 16px;
                            font-weight: 500;
                            margin-bottom: 10px;
                        }

                        .large {
                            font-size: 24px;
                            font-weight: 500;
                        }
                    }

                    .text {
                        font-size: 18px;
                        line-height: 1.8;
                    }
                }

                .sec3_fwrap_box>div:first-child {
                    text-align: center;

                    img {
                        max-width: 150px;
                    }
                }
            }



            .flowwrap {
                margin-top: 60px;

                .flowbox {
                    border-radius: 20px;
                    position: relative;
                    color: white;
                    padding: 80px;
                    margin-bottom: 30px;

                    .number {
                        position: absolute;
                        left: 30px;
                        top: 30px;
                        font-size: 128px;
                        font-weight: 900;
                        color: white;
                        font-family: var(--font-en);
                        z-index: 9;
                    }



                    .flowbox_f_wrap {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                    }

                    .flowbox_f_wrap>div:first-child {
                        flex: 0 0 49%;

                        img {
                            border-radius: 20px;
                        }
                    }

                    .flowbox_f_wrap>div:last-child {
                        flex: 0 0 45%;
                        font-size: 18px;
                        line-height: 1.8;

                        h3 {
                            font-size: 30px;
                            font-weight: 500;
                            margin-bottom: 20px;
                        }
                    }
                }

                .flowbox:nth-child(1) {
                    background-color: #E47F6B;
                }

                .flowbox:nth-child(2) {
                    background-color: #DBBB68;
                }

                .flowbox:nth-child(3) {
                    background-color: #6EABD1;
                }

                .flowbox:nth-child(4) {
                    background-color: #72B89C;
                }


            }
        }

        .btn_wrap {
            margin-top: 70px;
        }

        .btn {
            width: 385px;
            max-width: 90vw;
            margin: 0 auto;
            background-color: var(--highlight-color);
            color: white;
            background-image: url(./img/btn_arrow_white.png);
            border: 2px solid var(--highlight-color);
            transition: 0.5s;
        }

        .btn:hover {
            background-color: #fff7f7;
            color: var(--highlight-color);
            font-weight: bold;
            border: 2px solid var(--highlight-color);
            background-image: url(./img/btn_arrow_red.png);
        }
    }

    .sec4 {
        background-color: #F5F0E7;
        margin-top: 45px;

        .section-inner {
            padding-top: 105px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 110px;

            h2 {
                margin-bottom: 100px;
            }

            .serviceflex {
                display: flex;
                margin-bottom: 20px;
                justify-content: space-between;

                .circle {
                    border-radius: 50px;
                    border: 3px solid var(--highlight-color);
                    color: var(--highlight-color);
                    display: inline-block;
                    font-size: 14px;
                    line-height: 1;
                    padding: 6px 15px;
                    margin-bottom: 20px;
                    font-weight: bold;
                }

                .circle.green {
                    border-color: var(--theme-color);
                    color: var(--theme-color);
                }

                h3 {
                    font-size: 28px;
                    font-weight: 700;
                    margin-bottom: 20px;
                }

                p {
                    font-size: 18px;
                    line-height: 1.9;
                }
            }

            .serviceflex>div:first-child {
                flex: 0 0 38%;
            }

            .serviceflex>div:last-child {
                flex: 0 0 43%;
                position: relative;

                img.poab {
                    position: absolute;
                    left: -161px;
                    bottom: -160px;
                    max-width: 180px;
                    z-index: 99;
                }
            }

            .serviceflex1 {
                .sf1img {
                    /* margin: 0 20px; */
                }

                .right {
                    padding: 0 30px;
                    text-align: center;
                }
            }

            .serviceflex2 {
                .right {
                    padding-top: 30px;
                }
            }

            img {
                border-radius: 20px;
            }

        }
    }

    .sec5 {
        padding-top: 120px;

        .faqwrap_box {
            max-width: 995px;
            margin: 70px auto;
        }

        .faqwrap {
            border-radius: 20px;
            background-color: #F5F0E7;
            padding: 20px 50px;
            margin-bottom: 20px;
            cursor: pointer;

            .q {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .q>span:first-child {
                font-family: var(--font-en);
                font-weight: 800;
                font-size: 28px;
                margin-right: 10px;
            }

            .q>span:nth-child(2) {
                font-size: 22px;
                font-weight: 700;
                flex-grow: 1;
                line-height: 1.3;
            }

            .q>div:nth-child(3) {
                margin-right: -20px;

                img {
                    width: 30px;
                }
            }

            .a {
                background-color: white;
                border-radius: 20px;
                display: flex;
                align-items: flex-start;
                font-size: 18px;
                line-height: 1.8;
                padding: 20px 30px 30px;
                margin-top: 30px;
                display: none;
            }

            .a>div:first-child {
                font-family: var(--font-en);
                color: var(--highlight-color);
                font-size: 28px;
                font-weight: 800;
                margin-right: 20px;
            }

            .a>div:last-child {
                padding-top: 8px;
            }
        }
    }
}


.recruit {
    position: relative;
    padding: 100px 0;
    width: 100%;

    .bg_gray {
        position: absolute;
        background-color: #F8F8F8;
        top: 0px;
        left: 0;
        width: 77%;
        height: 100%;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .section-inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        max-width: 1200px;

        .left {
            flex: 0 0 40%;

            h2.temp {
                align-items: flex-start;
                margin-bottom: 50px;

                .en {
                    margin-bottom: 25px;
                }
            }

            .copy {
                font-size: 28px;
                font-weight: bold;
                line-height: 1.6;
                margin-bottom: 35px;
            }

            .text {
                line-height: 2.2;
                margin-bottom: 60px;

                p {
                    margin-bottom: 20px;
                }
            }
        }

        .right {
            flex: 0 0 50%;
        }
    }

    .btn {
        background-color: var(--highlight-color);
        color: white;
        background-image: url(./img/btn_arrow_white.png);
        border: 2px solid var(--highlight-color);
        transition: 0.5s;
    }

    .btn:hover {
        background-color: #fff7f7;
        color: var(--highlight-color);
        font-weight: bold;
        border: 2px solid var(--highlight-color);
        background-image: url(./img/btn_arrow_red.png);
    }
}

.contact {
    padding: 120px 0 30px;

    .desc {
        text-align: center;
        line-height: 1.8;
        font-size: 18px;
    }

    .f_wrap {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 60px auto;

        .left {
            flex: 0 0 48%;

            .text1 {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 15px;
            }

            .tel {
                font-size: 52px;
                font-family: var(--font-en);
                font-weight: 700;
                margin-bottom: 10px;

                a {
                    color: var(--text-color);
                    text-decoration: none;
                }
            }

            .text2 {
                font-size: 16px;
            }
        }

        .right {
            flex: 0 0 48%;

            .text1 {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 30px;
            }

            .btn2 {
                background-color: var(--highlight-color);
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 70px;
                text-decoration: none;
                font-size: 20px;
                border-radius: 10px;
                line-height: 1;
                transition: 0.5s;
                border: 2px solid var(--highlight-color);
            }

            .btn2:hover {
                background-color: #fff7f7;
                color: var(--highlight-color);
                font-weight: bold;
                border: 2px solid var(--highlight-color);
            }
        }
    }

    .f_wrap>div {
        background-color: var(--background-color);
        border-radius: 20px;
        text-align: center;
        padding: 40px 40px;
    }


}


/* -------------------------------
ぐらんどとはのページ
------------------------------- */

.about {
    .sec1 {
        position: relative;
        /* min-height: 200vh; */

        color: var(--text-color);
        /* スクロール可能な高さを確保 */

        .section-inner {
            position: relative;
            z-index: 2;
            padding: 100px 60px;
        }

        /* 背景画像用のコンテナ */
        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .bg-container.active {
            opacity:0.13;
        }

        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .bg-image.active {
            opacity: 1;
        }

        .bg-image.phrase1-bg {
            background-image: url('./img/about_sec1_img1.png');
        }

        .bg-image.phrase2-bg {
            background-image: url('./img/about_sec1_img2.png');
        }

        .scroll_content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;

            .phrase1, .phrase2 {
                /* min-height: 100vh; */
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 40px 0 50px;
                

                p {
                    font-size: 24px;
                    line-height: 2;
                    margin-bottom: 20px;
                    color: var(--text-color);
                    /* color: white; */
                    /* padding: 20px; */
                    border-radius: 10px;
                    font-weight: 700;
                    transition: all 0.3s ease;
                    padding: 5px 20px;
                    /* text-shadow: 0 0 10px #000; */
                }
                .headingpart {
                    color: var(--highlight-color)!important;
                    font-size: 26px;
                    line-height: 1.7;
                    margin-top: 40px;
                    /* background-color: rgba(255, 255, 255, 0.8); */
                    /* text-shadow: 0 0 5px #Fff; */
                }
            }

            .phrase2 {
                padding: 00;
            }


        }

        /* 背景画像が表示されている時のテキストスタイル */
        .bg-container.active~.section-inner .scroll_content .phrase1 p,
        .bg-container.active~.section-inner .scroll_content .phrase2 p {
            /* color: white; */
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
            /* background-color: rgba(0, 0, 0, 0.3); */
            /* backdrop-filter: blur(5px); */
        }



    }

    .sec2 {
        padding: 100px 0 50px;





        .inner-text {
            max-width: 750px;
            margin: 0 auto;




            .logo {
                text-align: center;
                margin-bottom: 100px;

                img {
                    max-width: 330px;
                }
            }

            .text_top {
                font-size: 24px;
                font-weight: 700;
                line-height: 2.1;
                margin-bottom: 60px;
            }

            .text_body {
                font-size: 28px;
                font-weight: 700;
                line-height: 2.5;
                p {
                    line-height: 2;
                    margin-bottom: 40px;
                }
                span {
                    color: #E47F6B;
                    border-bottom: 2px dotted #E47F6B;
                    margin: 0 5px;
                }
            }
        }
    }

    .sec3 {
        margin-bottom: 100px;

        .section-inner {
            max-width: 1324px;
            background-color: #F8F8F8;
            padding: 110px 60px 80px;

            h2.temp {
                margin-bottom: 60px;
            }

            .f_wrap {
                background-color: white;
                border-radius: 20px;
                display: flex;
                align-items: center;
                padding: 80px;
                font-size: 18px;
                line-height: 1.9;
                font-weight: 500;
                gap: 5%;
                margin-bottom: 30px;
                flex-wrap: wrap;


                h3 {
                    font-size: 30px;
                    font-weight: 700;
                    line-height: 1.6;
                    margin-bottom: 28px;
                }
            }

            .f_wrap>div:first-child {
                flex: 0 0 25%;
            }

            .f_wrap>div:last-child {
                flex: 0 0 70%;
            }
        }

    }
}



/* -------------------------------
サービス案内
------------------------------- */






.service {

    .sec1 {
        .section-inner {
            max-width: 1324px;

            h2.temp {
                align-items: flex-start;
            }

            .outer {
                background-color: #F5F0E7;
                border-radius: 20px;
                padding: 60px;

                .inner {
                    background-color: white;
                    border-radius: 20px;
                    display: flex;
                    justify-content: space-between;
                    padding: 60px 80px;

                    .left {
                        flex: 0 0 43%;
                        line-height: 2.1;
                        font-weight: 500;
                        padding-top: 30px;

                        h3 {
                            font-size: 30px;
                            font-weight: 600;
                            margin-bottom: 30px;
                        }

                        p {
                            margin-bottom: 20px;
                            font-size: 18px;
                        }
                    }

                    .right {
                        flex: 0 0 53%;
                    }
                }
            }
        }
    }

    .sec2,.subselect {
        padding-top: 100px;



        .copy {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.6;
            letter-spacing: 2px;
        }

        .f_wrap {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 50px auto;

            .box {
                flex: 0 0 31%;
                color: white;
                text-decoration: none;
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                font-size: 15px;

                img+div {
                    padding: 20px 30px 30px;
                    flex-grow: 1;
                    line-height: 1.6;
                }

                h3 {
                    font-size: 24px;
                    font-weight: 600;
                    margin-bottom: 25px;
                    line-height: 1.6;
                    min-height: 78px;
                    display: flex;
                    align-items: center;
                }

                .sec2btn {
                    background-color: white;
                    color: #000;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50px;
                    margin: 0 30px 30px;
                    height: 46px;
                }

                span {
                    text-decoration: underline;
                }

            }

            .box:nth-child(1) {
                background-color: #CA3E40;

                .sec2btn {
                    background-color: #b21f21;
                    color: white;
                    font-weight: bold;
                    transition: 0.5s;
                }
            }

            .box:nth-child(1):hover {
                .sec2btn {
                    background-color: white;
                    color: #b21f21;
                }
            }

            .box:nth-child(2) {
                background-color: #DBBB68;

                .sec2btn {
                    background-color: #ba9a46;
                    color: white;
                    font-weight: bold;
                    transition: 0.5s;
                }
            }

            .box:nth-child(2):hover {
                .sec2btn {
                    background-color: white;
                    color: #ba9a46;
                }
            }

            .box:nth-child(3) {
                background-color: #6EABD1;

                .sec2btn {
                    background-color: #4086b2;
                    color: white;
                    font-weight: bold;
                    transition: 0.5s;
                }
            }

            .box:nth-child(3):hover {
                .sec2btn {
                    background-color: white;
                    color: #4086b2;
                }
            }

            .box>div:nth-child(2) {
                flex-grow: 1;
            }
        }
    }

    .subselect {
        padding-top: 0;
        background-color: white;
        padding: 20px;
        border-radius: 20px;
        margin-top: 40px;
        .f_wrap {
            margin: 0;
            .box {
                margin-top: 0;
                padding-top: 20px;
                padding-bottom: 20px;
                flex: 0 0 32%;
                .sec2btn {
                    margin-bottom: 0;
                }
            }
        }
    }

    .sec3 {
        padding: 40px 0 90px;

        .section-inner {
            max-width: 1324px;

            @media (max-width: 1323px) {
                padding: 0 20px;
            }
        }

        .block {
            padding: 16px 63px 56px;
            border-radius: 20px;
            margin-bottom: 40px;
            
            
            
            
            






            @media (max-width: 767px) {
                padding: 30px 20px;
            }

            &+.block {
                margin-top: 0;
            }

            &:nth-of-type(1) {
                background-color: #E47F6B;

                h4 {
                    border-bottom: 3px solid #E47F6B !important;
                }
            }

            &:nth-of-type(2) {
                background-color: #DBBB68;

                h4 {
                    border-bottom: 2px solid #DBBB68 !important;
                }
            }

            &:nth-of-type(3) {
                background-color: #6EABD1;

                h4 {
                    border-bottom: 2px solid #6EABD1 !important;
                }
            }

            .desc {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                flex-direction: row-reverse;
                flex-wrap: wrap;
                padding-top: 40px;





                @media (max-width: 767px) {
                    gap: 30px;
                }

                .info {
                    position: sticky;
                    top: 40px;
                    left: 0;
                    width: 45.6%;
                    max-width: 574px;
                    color: #fff;












                    @media (max-width: 767px) {
                        order: 1;
                        position: static;
                        width: 100%;
                        max-width: none;
                    }

                    h3 {
                        font-size: 32px;
                        font-weight: 700;
                        line-height: 1.6;



                        @media (max-width: 767px) {
                            font-size: 24px;
                        }
                    }

                    .subhead {
                        font-size: 20px;
                        font-weight: 700;
                        margin-top: 17px;
                        line-height: 1.5;
                        /* background-color: white; */
                        /* background-color: rgba(255, 255, 255, 0.8); */
                        /* color: var(--text-color); */
                        padding: 20px 20px;
                        border-radius: 15px;
                        margin-top: 40px;
                        border: 2px solid #fff;
                        /* box-sizing: border-box; */























                        @media (max-width: 767px) {
                            margin-top: 10px;
                            font-size: 18px;
                        }
                    }

                    .txt {
                        margin-top: 30px;
                        font-weight: 500;
                        line-height: 1.56;
                        font-weight: normal;
                        background-color: rgba(0, 0, 0, 0.05);
                        padding: 25px;
                        border-radius: 20px;














                        @media (max-width: 767px) {
                            margin-top: 20px;
                            font-size: 14px;
                        }
                    }
                }

                .cont {
                    width: 48.6%;
                    max-width: 582px;

                    @media (max-width: 767px) {
                        order: 2;
                        width: 100%;
                        max-width: none;
                    }

                    .box {
                        background: #fff;
                        border-radius: 20px;
                        padding: 30px 0 43px;

                        &+.box {
                            margin-top: 40px;

                            @media (max-width: 767px) {
                                margin-top: 30px;
                            }
                        }

                        @media (max-width: 767px) {
                            padding: 20px 0 30px;
                        }

                    }



                    h4 {
                        padding: 0 36px 27px;
                        border-bottom: solid 2px #E47F6B;
                        font-size: 26px;
                        font-weight: 700;
                        line-height: 1.6;

                        @media (max-width: 767px) {
                            padding: 0 20px 20px;
                            font-size: 22px;
                        }
                    }

                    .inner {
                        padding: 0 36px;

                        @media (max-width: 767px) {
                            padding: 0 20px;
                        }
                    }

                    .imglist {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-between;
                        gap: 27px 0;
                        margin-top: 38px;

                        @media (max-width: 767px) {
                            gap: 20px 0;
                            margin-top: 20px;
                        }

                        li {
                            width: 46.4%;
                            max-width: 234px;

                            @media (max-width: 991px) {
                                width: 100%;
                                max-width: none;
                            }

                            .head {
                                font-size: 20px;
                                font-weight: 700;
                                line-height: 1.6;
                                margin-top: 11px;







                                @media (max-width: 767px) {
                                    font-size: 18px;
                                    margin-top: 10px;
                                }

                                .note {
                                    font-size: 16px;

                                    @media (max-width: 767px) {
                                        font-size: 14px;
                                    }
                                }
                            }

                            img {
                                border-radius: 20px;
                            }
                        }
                    }

                    .add {
                        background: #F5F0E7;
                        border-radius: 20px;
                        padding: 36px 36px 32px;
                        margin-top: 40px;


                        img {
                            border-radius: 20px;
                        }

                        @media (max-width: 767px) {
                            padding: 30px 20px;
                            margin-top: 30px;
                        }

                        .head {
                            font-size: 20px;
                            font-weight: 700;
                            line-height: 1.6;
                            margin-top: 25px;

                            @media (max-width: 767px) {
                                font-size: 18px;
                                margin-top: 15px;
                            }
                        }

                        .txt {
                            font-size: 16px;
                            line-height: 1.6;
                            margin-top: 20px;

                            @media (max-width: 767px) {
                                font-size: 14px;
                                margin-top: 15px;
                            }
                        }
                    }

                    .opt {
                        img {
                            border-radius: 20px;
                        }

                        .txt {
                            font-size: 16px;
                            line-height: 1.6;
                            margin-top: 35px;

                            @media (max-width: 767px) {
                                font-size: 14px;
                                margin-top: 20px;
                            }

                            .fsl {
                                font-weight: 700;
                                font-size: 110%;
                                margin-bottom: 5px;
                                display: block;
                            }
                        }
                    }
                }
            }

            .flow {
                background: #fff;
                border-radius: 20px;
                padding: 33px 0 67px;
                margin-top: 46px;

                @media (max-width: 767px) {
                    padding: 20px 0 40px;
                    margin-top: 30px;
                }

                h4 {
                    padding: 0 36px 27px;
                    border-bottom: solid 2px #E47F6B;
                    font-size: 26px;
                    font-weight: 700;
                    line-height: 1.6;

                    @media (max-width: 767px) {
                        padding: 0 20px 20px;
                        font-size: 22px;
                    }
                }

                .inner {
                    padding: 0 66px;

                    @media (max-width: 1199px) {
                        padding: 0 36px;
                    }

                    @media (max-width: 767px) {
                        padding: 0 20px;
                    }
                }

                .list {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 30px 0;
                    margin-top: 50px;

                    @media (max-width: 767px) {
                        margin-top: 30px;
                    }

                    li {
                        width: 25%;
                        border-right: solid 1px #eee;
                        text-align: center;

                        @media (max-width: 991px) {
                            width: 50%;
                        }

                        @media (max-width: 767px) {
                            border-bottom: solid 1px #eee;
                            border-right: none;
                            width: 100%;
                            padding: 0 0 20px;
                        }

                        &:last-of-type {
                            border-right: none;
                        }

                        &:nth-of-type(even) {
                            @media (max-width: 991px) {
                                border-right: none;
                            }

                        }


                        .ico,
                        .head,
                        .txt {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                        .head {
                            font-size: 20px;
                            font-weight: 700;
                            line-height: 1.6;
                            margin-top: 30px;

                            @media (max-width: 767px) {
                                font-size: 18px;
                                margin-top: 20px;
                            }
                        }

                        .txt {
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.6;
                            margin-top: 20px;

                            @media (max-width: 767px) {
                                font-size: 14px;
                                margin-top: 15px;
                            }
                        }

                        .ico {
                            img {
                                max-width: 130px;
                            }
                        }
                    }
                }
            }
        }

        .box {
            background: #F8F8F8;
            border-radius: 20px;
            padding: 40px 42px;
            margin-top: 40px;

            @media (max-width: 767px) {
                padding: 30px 20px;
                margin-top: 30px;
            }

            & .box {
                margin-top: 30px;

                @media (max-width: 767px) {
                    margin-top: 20px;
                }
            }
        }

        .head {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.6;

            @media (max-width: 767px) {
                font-size: 18px;
            }
        }

        .txt {
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
            margin-top: 25px;









            @media (max-width: 767px) {
                font-size: 14px;
            }
        }
    }



    .sec4 {
        margin-bottom: 100px;

        .section-inner {
            max-width: 1324px;
            background-color: #F8F8F8;
            padding: 110px 60px 80px;
            border-radius: 20px;
            .desc {
                text-align: center;
                line-height: 1.8;
                font-size: 18px;
            }
        }

        .flowwrap {
            margin-top: 90px;


            .flowbox {
                border-radius: 20px;
                position: relative;
                color: white;
                padding: 60px 80px 40px;
                margin-bottom: 30px;

                .number {
                    position: absolute;
                    left: 40px;
                    top: 30px;
                    font-size: 100px;
                    font-weight: 900;
                    color: white;
                    font-family: var(--font-en);
                    z-index: 9;
                }



                .flowbox_f_wrap {
                    /* display: flex; */
                    justify-content: space-between;
                    align-items: center;
                }

                .flowbox_f_wrap>div:first-child {
                    flex: 0 0 49%;
                    float: right;
                    max-width: 500px;
                    margin-left:40px;
                    margin-bottom: 20px;

                    img {
                        border-radius: 20px;
                    }
                }

                .flowbox_f_wrap>div:last-child {
                    flex: 0 0 45%;
                    font-size: 18px;
                    line-height: 1.8;
                    margin-bottom: 20px;
                    
                    
                    
                    

                    h3 {
                        font-size: 36px;
                        letter-spacing: 4px;
                        font-weight: 700;
                        margin-bottom: 40px;
                        padding-left: 120px;
                    }
                }
            }

            .flowbox:nth-child(1) {
                background-color: #E47F6B;
            }

            .flowbox:nth-child(2) {
                background-color: #DBBB68;
            }

            .flowbox:nth-child(3) {
                background-color: #6EABD1;
            }

            .flowbox:nth-child(4) {
                background-color: #72B89C;
            }
            .flowbox:nth-child(5) {
                background-color: #E47F6B;
            }
            .flowbox:nth-child(6) {
                background-color: #DBBB68;
            }


        }
    }
}





.company {
    .sec1 {
        .section-inner {
            max-width: 1324px;

            @media (max-width: 1323px) {
                margin-inline: 20px;
            }

            h2.temp {
                align-items: flex-start;
            }
        }
    }

    .sec2 {



        .section-inner {
            max-width: 1324px;
            margin: 30px auto;
            padding: 100px 0;
            background-color: #F5F0E7;
            border-radius: 20px;

            @media (max-width: 1323px) {
                margin-inline: 20px;
            }

            @media (max-width: 1199px) {
                padding-inline: 20px;
            }

            @media (max-width: 767px) {
                padding-block: 60px;
            }
        }

        .f_wrap {
            max-width: 1000px;
            margin: 100px auto;
            display: flex;
            justify-content: space-between;

            @media (max-width: 991px) {
                gap: 30px;
            }

            @media (max-width: 767px) {
                flex-direction: column;
                gap: 0;
                margin-block: 50px;
            }

            table {
                td {
                    line-height: 2;
                    padding: 15px 0;
                }

                tr td:first-child {
                    color: var(--highlight-color);
                    font-weight: bold;
                    width: 150px;

                    @media (max-width: 767px) {
                        width: 100px;
                    }
                }
            }
        }

        .map {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            background-color: white;
            border-radius: 20px;

            @media (max-width: 767px) {
                flex-direction: column;
                gap: 10px;
            }

            iframe {
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
                width: 100%;

                @media (max-width: 767px) {
                    border-radius: 10px;
                }
            }

            .root {
                padding: 50px;

                @media (max-width: 767px) {
                    padding: 30px;
                    order: 1;
                }

            }

            .gmap {
                @media (max-width: 767px) {
                    order: 2;
                }
            }

            .root>div:last-child {
                line-height: 2;
            }

            .en {
                font-family: var(--font-en);
                color: #CA3E40;
                font-weight: 800;
                font-size: 28px;
                margin-bottom: 10px;

                @media (max-width: 767px) {
                    font-size: 22px;
                }
            }

            .ja {
                font-size: 38px;
                font-weight: 600;
                letter-spacing: 2px;
                margin-bottom: 50px;

                @media (max-width: 767px) {
                    margin-bottom: 30px;
                    font-size: 30px;
                }
            }
        }

        .map>div {
            flex: 0 0 50%;
        }
    }

    .sec3 {
        padding: 100px 0;

        .text {
            line-height: 1.8;
            text-align: center;
            margin-bottom: 40px;
            margin-top: 50px;
        }



        /* スライダーボタンのスタイル */
        .slider-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .slider-btn {
            padding: 10px 30px;
            background-color: #F5F0E7;
            border: 2px solid #F5F0E7;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            color: #524137;
            transition: all 0.3s ease;
        }

        .slider-btn.active {
            background-color: #524137;
            color: white;
            border-color: #f5f0e7;
        }

        .slider-btn:hover {
            background-color: #f6e9d3;
        }

        .slider-btn.active:hover {
            background-color: #524137;
        }

        /* スライダーコンテナ */
        .slider-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .facility-slider {
            display: none;
        }

        .facility-slider.active {
            display: block;
        }

        /* Slick slider カスタムスタイル */
        .slick-slide {
            padding: 0 10px;
            transition: all 0.3s ease;
            margin: 0;
        }

        .slick-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        /* センターモード - 中央の画像を大きく */
        .slick-center img {
            /* transform: scale(1.4); */
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
        }

        /* スライドキャプション */
        .slide-caption {
            text-align: center;
            margin-top: 80px;
            font-size: 16px;
            color: #524137;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 999;
            position: relative;
        }

        .slick-center .slide-caption {
            opacity: 1;
        }

        /* Slick dots カスタマイズ */
        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: #524137;
            opacity: 0.5;
        }

        .slick-dots li.slick-active button:before {
            opacity: 1;
        }

        /* Slick arrows カスタマイズ */
        .slick-prev,
        .slick-next {
            width: 40px;
            height: 40px;
            z-index: 1;
        }

        .slick-prev {
            left: 0;
        }

        .slick-next {
            right: 0px;
        }

        .slick-prev:before,
        .slick-next:before {
            font-size: 60px;
            color: #524137;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .slider-buttons {
                flex-wrap: wrap;
                gap: 5px;
            }

            .slider-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

            .slick-prev {
                left: -30px;
            }

            .slick-next {
                right: -30px;
            }

            .slick-slide img {
                height: 200px;
            }
        }
    }

    .sec4 {
        margin-bottom: 100px;

        .section-inner {
            max-width: 1324px;
            border-radius: 20px;
            background-color: #f8f8f8;
            padding: 60px 0;

            .text {
                text-align: center;
                line-height: 1.8;
            }

            h3 {
                font-size: 28px;
                font-weight: bold;
                text-align: center;
                margin: 50px 0;
            }

            .f_wrap {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                max-width: 1200px;
                margin: 0 auto;
                row-gap: 30px;
                column-gap: 5%;
            }

            .f_wrap>a {
                flex: 0 0 30%;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                text-decoration: none;
                color: var(--text-color);
                background-color: white;
                border-radius: 20px;
                box-shadow: 5px 5px 0 #eee;
                height: 85px;
                width: 100%;
                padding: 0 30px;
            }

            .f_wrap>a::before {
                background-image: url(./img/company_img1.png);
                content: "";
                display: block;
                width: 25px;
                height: 33px;
                background-repeat: no-repeat;
                background-size: 25px;
                background-position: 20% 90%;
                margin-right: 20px;
            }

        }
    }
}




.contact_page {
    .sec1 {
        .section-inner {
            max-width: 800px;
            margin: 30px auto;
            .formcolwrap {
                display: flex;
                align-items: center;
                margin-bottom: 30px;
                gap: 20px;
                p {
                    width: 100%;
                }
            }
            .formcolwrap > div:first-child {
                min-width: 160px;
            }
            input[type=text],input[type=email],textarea{
                padding: 15px;
                border: 1px solid #9e9e9e;
                border-radius: 6px;
                font-size: 18px;
                width: 100%;
                min-width: 100%;
            }
            .wpcf7-form-control-wrap {
                min-width: 100%;
                display: block;
            }
            input[type=submit] {
                width: 600px;
                max-width: 90%;
                margin: 0 auto;
                text-align: center;
                display: flex;
                justify-content: center;
                height: 60px;
                background-color: var(--highlight-color);
                color: white;
                border: 2px solid var(--highlight-color);
                border-radius: 10px;
                font-size: 17px;
                font-weight: bold;
                letter-spacing: 10px;
                transition: 0.5s;
            }
            input[type=submit]:hover {
                background-color: white;
                color: var(--highlight-color);
            }
            .submitwrap {
                margin: 50px auto 30px;
                display: flex;
                justify-content: center;
                p {
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                    
                    margin: 0 auto;
                    text-align: center;
                }
            }

            .desc {
                font-size: 18px;
                line-height: 1.8;
                margin-bottom: 80px;
                margin-top: 60px;
            }

            .wpcf7-list-item label {
                border: 1px solid #9e9e9e;
                padding: 10px 20px 12px 10px;
                border-radius: 5px;
                background-color: #ffecec;
            }
            .formcolwrapradio {
                margin-bottom: 45px;
            }
        }
    }
}



/* -------------------------------
ハンバーガー
------------------------------- */

.hamburger-menu {
    cursor: pointer;
    z-index: 9990;
    position: fixed;
    right: 20px;
}

/* ハンバーガーメニューのアニメーション */
.hamburger-menu .line {
    width: 33px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 0 3px #fff;
}

/* アクティブ時のアニメーション */
.hamburger-menu.active .line1 {
    transform: translateY(10px) rotate(45deg);
    background-color: #000000;
}

.hamburger-menu.active .line2 {
    opacity: 0;
}

.hamburger-menu.active .line3 {
    transform: translateY(-12px) rotate(-45deg);
    background-color: #000000;
}



/* グローバルメニューのスタイル */
.global-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* ビューポートの高さに合わせる */
    background-color: #F4F4F5;
    /* 背景色 */
    color: #000;
    display: none;
    /* 最初は非表示 */
    z-index: 999;
    opacity: 0;
    max-height: 100vh;
    transition: opacity 0.3s ease;


    /* ヘッダーより手前に表示 */
    .global-menu_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100vh;
        max-width: 1000px;
        margin: 0 auto;
        animation: menuFadeIn 0.6s ease forwards;
        max-height: 100vh;
    }
}

/* メニューが表示されたときのスタイル */
.global-menu.active {
    opacity: 1;
}



.global-menu .global-menu_top {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;



    .global-menu_column {
        display: flex;

    }

    .global-menu_column1 {
        flex: 0 0 65%;

        img {
            border-radius: 20px;
        }
    }

    .global-menu_column2 {
        flex: 0 0 30%;
        flex-direction: column;
        align-items: flex-end;
    }

    .global-menu_column2_inner {
        height: 100%;
    }


    .global-menu_column>div:first-child {
        min-height: 370px;
        margin-bottom: 0px;
    }



    @media only screen and (max-height: 680px) {
        .global-menu_column>div:first-child {
            min-height: 300px;
            margin-bottom: 0px;
        }
    }


    .global-menu_column .global-menu_sub {
        display: flex;
        flex-direction: column;

        a {
            color: #000;
            font-weight: 700;
            margin-bottom: 40px;
            transition: 0.3s;
            animation: slideInFromTop 0.4s ease forwards;
            opacity: 0;

            &:nth-child(1) {
                animation-delay: 0.4s;
            }

            &:nth-child(2) {
                animation-delay: 0.5s;
            }

            &:nth-child(3) {
                animation-delay: 0.6s;
            }

            &:nth-child(4) {
                animation-delay: 0.7s;
            }

            &:nth-child(5) {
                animation-delay: 0.8s;
            }
            &:nth-child(6) {
                animation-delay: 0.9s;
            }
        }

        a:hover {
            color: #EB6400;
        }

        span {
            color: #ddd;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 18px;
            animation: slideInFromTop 0.4s ease forwards;
            opacity: 0;
            animation-delay: 0.6s;
        }
    }
}

@media only screen and (max-width: 1100px) {
    .global-menu {
        .global-menu_inner {
            .global-menu_top {
                justify-content: center;
                flex-wrap: nowrap;
                gap: 2vw;

                .global-menu_column {
                    margin-right: 0;
                }
            }

            .global-menu_column {
                justify-content: center;
            }

            .global-menu_bottom {
                justify-content: center;
                gap: 10vw;
            }
        }
    }


}


.global-menu .global-menu_title {
    display: flex;
    flex-direction: column;
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #EB6400;
    margin-bottom: 42px;
    animation: slideInFromLeft 0.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;

    span:first-child {
        font-weight: 900;
        margin-bottom: 15px;
        font-family: "Lato", sans-serif;
    }

    span:last-child {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        font-family: 'Zen Kaku Gothic New', sans-serif;
    }
}

.global-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    /* position: absolute; */
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    display: flex;
}

.global-menu li {
    margin: 20px 0;
}

.global-menu a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.global-menu_bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 1vh;
    padding-bottom: 0;
    animation: fadeInRotate 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;




    .left {
        .f_wrap {
            display: flex;
            gap: 10px;
            margin-top: 34px;


            a {
                img {
                    max-width: 30px;
                    transition: transform 0.3s ease;

                    &:hover {
                        transform: scale(1.2) rotate(10deg);
                    }
                }
            }
        }
    }

    .right {
        display: flex;
        gap: 20px;

        a {
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 127px;
            width: 250px;
            border-radius: 10px;
            background-image: url(../img/ic_target.png);
            background-position: 90% 10%;
            background-size: 20px;
            background-repeat: no-repeat;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.7s ease;
            }

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

                &::before {
                    left: 100%;
                }
            }

            span:nth-child(1) {
                font-size: 17px;
                position: relative;
                z-index: 2;
            }

            span:nth-child(2) {
                font-size: 40px;
                font-weight: 900;
                position: relative;
                z-index: 2;
            }
        }

        a:nth-child(1) {
            background-color: #EB6400;

            &:hover {
                background-color: darken(#EB6400, 5%);
            }
        }

        a:nth-child(2) {
            background-color: #000;

            &:hover {
                background-color: #222;
            }
        }
    }
}

/* -------------------------------
スクロールインアニメーション
------------------------------- */

/* スクロールイン対象の要素の初期状態 */
.scroll-in {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* アニメーション実行時のスタイル */
.scroll-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延アニメーション用のクラス */
.scroll-in.delay-1 {
    transition-delay: 0.1s;
}

.scroll-in.delay-2 {
    transition-delay: 0.2s;
}

.scroll-in.delay-3 {
    transition-delay: 0.3s;
}

.scroll-in.delay-4 {
    transition-delay: 0.4s;
}

.scroll-in.delay-5 {
    transition-delay: 0.5s;
}

/* 異なるアニメーションパターン */
.scroll-in.fade-up {
    opacity: 1;
    transform: translateY(70px);
}

.scroll-in.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-in.fade-left {
    opacity: 0;
    transform: translateX(-50px);
}

.scroll-in.fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-in.fade-right {
    opacity: 0;
    transform: translateX(50px);
    overflow: hidden;
}

.scroll-in.fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-in.scale-up {
    opacity: 0.5;
    transform: scale(0.8);
}

.scroll-in.scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* -------------------------------
アニメーション
------------------------------- */



@keyframes zoomInBlur {
    0% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    20% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur1 {
    0% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    20% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur2 {
    5% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    23% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    75% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur3 {
    10% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    30% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur4 {
    15% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    35% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur5 {
    19% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    39% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur6 {
    23% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    43% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur7 {
    15% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    35% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoomInBlur8 {
    5% {
        filter: blur(20px);
        transform: scale(3.5);
        opacity: 0;
    }

    28% {
        filter: blur(0);
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(10px);
        transform: scale(0.6);
        opacity: 0;
    }
}


@keyframes fadeInOutBlur {
    0% {
        filter: blur(10px);
        opacity: 0;
    }

    50% {
        filter: blur(0);
        opacity: 1;
    }

    75% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(10);
        opacity: 0;
    }
}

/* ハンバーガーメニューのアニメーション用 */
@keyframes menuFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: rotate(0) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}





@media only screen and (max-width: 1300px) {
    header {
        .header-nav {
            /* display: none; */
            ul {
                gap: 15px;
            }
        }
    }
}
@media only screen and (max-width: 1250px) {
    .header-contact .button {
        width: 170px;
    }
            .header-nav {
            /* display: none; */
            ul {
                gap: 10px;
            }
        }
}
@media only screen and (max-width: 1240px) {

            .header-nav {
            display: none;
        }
}



@media only screen and (max-width: 1324px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .front {
        .sec1 {
            .radi {
                width: 100%;
                max-width: 100%;
            }
        }

        .sec4 {
            margin: 0 -10px;
        }
    }
}

@media only screen and (max-width: 1250px) {
    .front {
        .sec4 {
            padding: 0 10px;
        }
    }
}

@media only screen and (max-width: 990px) {

    .mb {
        display: block;
    }


    .global-menu {
        .global-menu_inner {
            .global-menu_top {
                flex-direction: column;
                align-items: center;
                justify-content: center;

                .global-menu_column {
                    /* margin-right: 0; */
                    display: flex;
                    justify-content: center;
                    width: 100%;
                }
                .global-menu_column1 {
                    display: none;
                }
            }

            .global-menu_column {
                justify-content: center;
                align-items: center;
                .global-menu_sub {
                    a {
                        margin-bottom: 5vh;
                    }
                }
            }
            .global-menu_column>div:first-child {
                min-height: auto;
            }

            .global-menu_bottom {
                justify-content: center;
                gap: 10vw;
            }
        }
    }

    /* Header Styles */
    .header {
        /* background-color: var(--background-color); */
        color: var(--text-color);
        padding: 0px 10px 0px 10px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        margin: 0 auto;
        z-index: 1000;
        position: relative;
    }

    .header-inner {
        /* display: flex; */
        /* justify-content: space-between; */
        /* align-items: center; */
        /* max-width: 1324px; */
        margin: 0 auto;
        width: 100%;
        gap: 0;
    }

    .header-logo a {
        /* display: flex; */
        /* align-items: center; */
        /* text-decoration: none; */
        /* color: var(--base-color); */
        font-size: 13px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-logo img {
        max-width: 150px;
        margin-right: 25px;
        margin-right: 0;
    }

    .header-nav {
        flex-grow: 1;
    }

    .header-nav ul {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        gap: 30px;
    }

    .header-nav li {
        /* margin-left: 20px; */
    }

    .header-nav a {
        text-decoration: none;
        color: var(--text-color);
        transition: color 0.3s ease;
    }



    .c-breadcrumb {
        padding-top: 20px;
        margin-bottom: 20px;
        .section-inner {
            padding-inline: 0;
        }
    }

    .header-contact {
        display: none;
    }

    .front {
        .sec1 {
            margin-bottom: 20px;
            .radi {
                max-height: calc(100vh - 110px);
                .copy {
                    left: 20px;
                    top: 30px;
                    .bg_white {
                        font-size: 28px;
                        margin-bottom: 10px;
                        div {
                            margin-bottom: 5px;
                        }
                    }
                    .text_white {
                        font-size: 20px;
                    }
                }
            }
        }

        .sec2 {
            margin-bottom: 20px;
            .section-inner {
                flex-direction: column;
                .left {
                    padding: 40px 20px;
                    .top {
                        .copy {
                            font-size: 24px;
                            line-height: 1.3;
                            margin-bottom: 20px;
                        }
                        .subcopy {
                            line-height: 1.3;
                            margin-bottom: 40px;
                            font-size: 18px;
                        }
                    }

                    .middle {
                        margin-bottom: 30px;
                        p {
                            font-size: 16px;
                        }
                    }
                    .bottom {
                        display: flex;
                        justify-content: center;
                    }
                }
            }
        }

        .sec3 {
            .section-inner {
                margin-bottom: 30px;
                padding: 40px 20px;
                
                .f_wrap {
                    margin-top: 20px;
                    .sec3_fwrap_box {
                        .title {
                    margin-top: 0;
                        }
                    }

                    .sec3_fwrap_box>
                    div:first-child {
                        margin-bottom: 30px;
                        img {
                            margin-bottom: 0;
                        }
                  }
                  .sec3_fwrap_box {
                    .title {
                        .large {
                            font-size: 20px;
                        }
                    }
                    .text {
                        font-size: 16px;
                    }
                  }

                }
                .desc {
                    text-align: left;
                    font-size: 16px;
                    br {
                        display: none;
                    }
                }
            }
            .btn_wrap {
                margin-top: 30px;
                .btn {
                    max-width: 100%;
                }
            }
            
        }

        .sec4 {
            overflow-x: hidden;
            overflow-y: hidden;
            padding: 0 20px;
            
            
            
            .section-inner {
                padding-top: 60px;
                padding-bottom: 0;
                h2 {
                    margin-bottom: 50px;
                }
                .serviceflex {
                    flex-direction: column;
                    align-items: center;
                    display: block;

                    .right {
                        padding: 0;
                        display: flex;
                        justify-content: center;

                        img {
                            max-width: 600px;
                        }

                    }
                    p {
                        font-size: 16px;
                    }
                }

                .serviceflex>div:last-child {
                    margin-top: 20px;
                    margin-bottom: 30px;
                    overflow-x: hidden;
                    img.poab {
                        position: relative !important;
                        bottom: auto;
                        left: auto;
                        height: auto;
                        display: none;
                    }
                }

            }
        }

        .sec5 {
            padding-top: 60px;
            .faqwrap_box {
                margin-bottom: 30px;
            }
            .faqwrap {
                padding: 10px 20px 15px 15px ;
                margin-bottom: 10px;
                .q {
                    padding-right: 10px;
                }
                .q>span:first-child {
                    font-size: 22px;
                    font-weight: 700;
                }
                .q>span:nth-child(2) {
                    font-size: 17px;
                    font-weight: 500;
                    line-height: 1.6;
                }
                .q>div:nth-child(3) {
                    min-width: 30px;
                }
                .a {
                    font-size: 16px;
                    padding: 10px 20px;
                    margin-top: 10px;
                    line-height: 1.6;
                }
                .a>div:first-child {
                    font-size: 22px;
                    font-weight: 700;
                }
                .a>div:last-child {
                    padding-top: 0;
                }
            }
        }
    }





    /* -------------------------------
ぐらんどとはのページ
------------------------------- */

    .about {
        .sec1 {

            .section-inner {
                padding: 30px 20px;
            }

            /* 背景画像用のコンテナ */
            .bg-container {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                z-index: -1;
                opacity: 0;
                transition: opacity 0.8s ease-in-out;
            }

            .bg-container.active {
                opacity: 0.1;
            }

            .bg-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-attachment: fixed;
                opacity: 0;
                transition: opacity 0.8s ease-in-out;
            }

            .bg-image.active {
                opacity: 1;
            }

            .bg-image.phrase1-bg {
                background-image: url('./img/about_sec1_img1.png');
            }

            .bg-image.phrase2-bg {
                background-image: url('./img/about_sec1_img2.png');
            }

            .scroll_content {
                position: relative;
                z-index: 2;
                max-width: 800px;
                margin: 0 auto;

                .phrase1, .phrase2 {
                    /* min-height: 100vh; */
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    padding: 30px 0 50px;

                    p {
                        font-size: 20px;
                        /* line-height: 2; */
                        /* margin-bottom: 40px; */
                        color: var(--text-color);
                        /* color: white; */
                        padding: 0;
                        /* border-radius: 10px; */
                        /* font-weight: 700; */
                        /* transition: all 0.3s ease; */
                    }
                    .headingpart {
                        font-size: 21px;
                    }

                }

                .phrase2 {
                    padding: 2vh 0 0;
                }


            }

            /* 背景画像が表示されている時のテキストスタイル */
            .bg-container.active~.section-inner .scroll_content .phrase1 p,
            .bg-container.active~.section-inner .scroll_content .phrase2 p {
                /* color: white; */
                /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
                /* background-color: rgba(0, 0, 0, 0.3); */
                /* backdrop-filter: blur(5px); */
            }



        }

        .sec2 {
            padding: 100px 0 50px;





            .inner-text {
                max-width: 750px;
                margin: 0 auto;




                .logo {
                    text-align: center;
                    margin-bottom: 60px;

                    img {
                        width: 80%;
                        max-width: 220px;
                    }
                }

                .text_top {
                    font-size: 22px;
                    font-weight: 700;
                    line-height: 1.8;
                    margin-bottom: 30px;
                    br {
                        display: none;
                    }
                }

                .text_body {
                    font-size: 22px;
                    font-weight: 700;
                    line-height: 1.8;

                    span {
                        color: #E47F6B;
                        border-bottom: 2px dotted #E47F6B;
                        margin: 0 5px;
                    }
                    br {
                        display: none;
                    }
                }
            }
        }

        .sec3 {
            margin-bottom: 30px;

            .section-inner {
                max-width: 1324px;
                background-color: #F8F8F8;
                padding: 40px 20px 20px;

                img {
                    max-width: 160px;
                    margin-top: 20px;
                }




                h2.temp {
                    margin-bottom: 60px;
                }

                .f_wrap {
                    display: flex;
                    align-items: center;
                    padding: 20px;
                    font-size: 16px;
                    line-height: 1.9;
                    font-weight: 400;
                    gap: 5%;
                    margin-bottom: 30px;
                    flex-wrap: wrap;
                    flex-direction: column;
                }

                    h3 {
                        font-size: 24px!important;
                        font-weight: 700;
                        line-height: 1.4!important;
                        margin-bottom: 28px;
                        margin-top: 20px;
                }

                .f_wrap>div:first-child {
                    flex: 0 0 25%;
                }

                .f_wrap>div:last-child {
                    flex: 0 0 70%;
                }
            }

        }
    }



    .company {
        .sec1 {
            .section-inner {
                max-width: 1324px;

                @media (max-width: 1323px) {
                    margin-inline: 20px;
                }

                h2.temp {
                    align-items: flex-start;
                }
            }
        }

        .sec2 {



            .section-inner {
                max-width: 1324px;
                margin: 0px auto;
                padding: 100px 0;
                background-color: #F5F0E7;
                border-radius: 20px;

                @media (max-width: 1323px) {
                    margin-inline: 0;
                }

                @media (max-width: 1199px) {
                    padding-inline: 20px;
                }

                @media (max-width: 767px) {
                    padding-block: 60px;
                    padding: 40px 20px 20px;
                }
                h2.temp {
                    margin-bottom: 20px;
                }
            }

            .f_wrap {
                max-width: 1000px;
                margin: 100px auto;
                display: flex;
                justify-content: space-between;

                @media (max-width: 991px) {
                    gap: 30px;
                }

                @media (max-width: 767px) {
                    flex-direction: column;
                    gap: 0;
                    margin-top: 20px;
                    margin-bottom: 20px;
                }

                table {
                    font-size: 16px;
                    display: block;
                    tr {
                        margin-top: 20px;
                    }
                    td {
                        line-height: 1.8;
                        padding: 0px 0;
                        display: block;
                    }

                    tr td:first-child {
                        color: var(--highlight-color);
                        font-weight: bold;
                        width: auto;
                        margin-top: 10px;

                        @media (max-width: 767px) {
                            width: 100px;
                        }
                    }
                }
            }

            .map {
                max-width: 1000px;
                margin: 0 auto;
                display: flex;
                justify-content: space-between;
                background-color: white;
                border-radius: 20px;

                @media (max-width: 767px) {
                    flex-direction: column;
                    gap: 10px;
                }

                iframe {
                    border-top-left-radius: 20px;
                    border-bottom-left-radius: 20px;
                    width: 100%;

                    @media (max-width: 767px) {
                        border-radius: 10px;
                    }
                }

                .root {
                    padding: 50px;

                    @media (max-width: 767px) {
                        
                        padding: 20px;
                        order: 1;
                        
                    }

                }

                .gmap {
                    @media (max-width: 767px) {
                        order: 2;
                    }
                }

                .root>div:last-child {
                    line-height: 2;
                }

                .en {
                    font-family: var(--font-en);
                    color: #CA3E40;
                    font-weight: 800;
                    font-size: 28px;
                    margin-bottom: 10px;

                    @media (max-width: 767px) {
                        font-size: 22px;
                    }
                }

                .ja {
                    font-size: 38px;
                    font-weight: 600;
                    letter-spacing: 2px;
                    margin-bottom: 50px;

                    @media (max-width: 767px) {
                        margin-bottom: 30px;
                        font-size: 30px;
                    }
                }
            }

            .map>div {
                flex: 0 0 50%;
            }
        }

        .sec3 {
            padding: 60px 0;

            .text {
                line-height: 1.8;
                text-align: left;
                margin-bottom: 40px;
                margin-top: 50px;
                font-size: 16px;
                br {
                    display: none;
                }
            }



            /* スライダーボタンのスタイル */
            .slider-buttons {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin-bottom: 30px;
            }

            .slider-btn {
                padding: 10px 20px;
                background-color: #f0f0f0;
                border: 2px solid #ddd;
                border-radius: 5px;
                cursor: pointer;
                font-weight: bold;
                transition: all 0.3s ease;
            }

            .slider-btn.active {
                /* background-color: #007cba; */
                color: white;
                /* border-color: #007cba; */
            }

            .slider-btn:hover {
                background-color: #e0e0e0;
            }

            .slider-btn.active:hover {
                background-color: #005a87;
            }

            /* スライダーコンテナ */
            .slider-container {
                position: relative;
                max-width: 100%;
                margin: 0 auto;
            }

            .facility-slider {
                display: none;
            }

            .facility-slider.active {
                display: block;
            }

            /* Slick slider カスタムスタイル */
            .slick-slide {
                padding: 0 10px;
                transition: all 0.3s ease;
                margin: 0 20px;
            }

            .slick-slide img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            /* センターモード - 中央の画像を大きく */
            .slick-center img {
                transform: scale(1.4);
                /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
            }

            /* スライドキャプション */
            .slide-caption {
                text-align: center;
                margin-top: 80px;
                font-size: 16px;
                color: #524137;
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: 999;
                position: relative;
            }

            .slick-center .slide-caption {
                opacity: 1;
            }

            /* Slick dots カスタマイズ */
            .slick-dots {
                bottom: -50px;
            }

            .slick-dots li button:before {
                font-size: 12px;
                /* color: #007cba; */
                opacity: 0.5;
            }

            .slick-dots li.slick-active button:before {
                opacity: 1;
            }

            /* Slick arrows カスタマイズ */
            .slick-prev,
            .slick-next {
                width: 40px;
                height: 40px;
                z-index: 1;
            }

            .slick-prev {
                left: -50px;
            }

            .slick-next {
                right: -50px;
            }

            .slick-prev:before,
            .slick-next:before {
                font-size: 20px;
                color: #007cba;
            }

            /* レスポンシブ対応 */
            @media (max-width: 768px) {
                .slider-buttons {
                    flex-wrap: wrap;
                    gap: 5px;
                }

                .slider-btn {
                    padding: 8px 15px;
                    font-size: 14px;
                }

                .slick-prev {
                    left: -30px;
                }

                .slick-next {
                    right: -30px;
                }

                .slick-slide img {
                    height: 200px;
                }
            }
        }

        .sec4 {
            margin-bottom: 40px;
            

            .section-inner {
                max-width: 1324px;
                border-radius: 20px;
                background-color: #f8f8f8;
                padding: 40px 20px;
                
                .text {
                    text-align: left;
                    line-height: 1.8;
                }

                h3 {
                    font-size: 22px;
                    font-weight: bold;
                    text-align: center;
                    margin: 50px 0 20px;
                }

                .f_wrap {
                    row-gap: 10px;
                    column-gap: 0;
                    justify-content: space-between;
                }

                .f_wrap>a {
                    flex: 0 0 48%;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    text-decoration: none;
                    color: var(--text-color);
                    background-color: white;
                    border-radius: 20px;
                    box-shadow: 5px 5px 0 #eee;
                    height: 55px;
                    width: 100%;
                    padding: 0 10px;
                }

                .f_wrap>a::before {
                    background-image: url(./img/company_img1.png);
                    content: "";
                    display: block;
                    width: 25px;
                    height: 33px;
                    background-repeat: no-repeat;
                    background-size: 25px;
                    background-position: 20% 90%;
                    margin-right: 20px;
                }

            }
        }
    }





    .recruit {
        background-color: #F8F8F8;
        margin-right: -10px;
        width: auto;
        margin-left: -10px;
        padding-bottom: 0;
        padding-top: 60px;


        .bg_gray {
            position: relative;
            width: 100%;
        }

        .section-inner {
            flex-direction: column;
            padding: 20px;
            .left {
                flex: 0 0 70%;
                .text {
                    margin-bottom: 20px;
                    line-height: 1.7;
                }
                .text + div {
                    display: flex;
                    justify-content: center;
                    margin-bottom: 30px;
                }
                h2.temp {
                    .en {
                        margin-bottom: 15px;
                    }
                }
            }

            .right {
                flex: 0 0 30%;

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

    }

    .service {
        .sec1 {
            .section-inner {
                .outer {
                    padding: 40px 20px 40px;
                    
                    .inner {
                        gap: 20px;
                        padding: 20px;
                        flex-direction: column;

                        .left {
                            flex: 0 0 70%;
                            padding-top: 0;
                            h3 {
                                font-size: 26px;
                                line-height: 1.6;
                            }
                            p {
                                font-size: 16px;
                                font-weight: normal;
                                line-height: 1.6;
                            }
                        }

                        .right {
                            flex: 0 0 30%;

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

        .sec2 {
            padding-top: 60px;
            .copy {
                font-size: 20px;
                text-align: left;
                letter-spacing: 1px;
                br {
                    display: none;
                }
            }
            .f_wrap {
                background-color: #f5f0e7;
                padding: 20px;
                margin-right: -10px;
                margin-left: -10px;
                flex-direction: column;
                margin-top: 20px;
                /* gap: 10px; */
                margin-bottom: 0;
                
                
                .box {
                    flex: 0 0 32%;
                    margin-bottom: 10px;
                    h3 {
                        min-height: auto;
                        margin-bottom: 15px;
                        font-size: 22px;
                        line-height: 1.4;
                    }
                    img {
                        max-height: 150px;
                        width: auto;
                        object-fit: cover;
                        object-position: top;
                    }
                    .sec2btn {
                        margin-bottom: 20px;
                        height: 40px;
                    }
                }
                .box>div:nth-child(2) {
                    padding: 20px;
                }
            }
        }

        .sec3 {
            padding-top: 30px;
            padding-bottom: 0;
            .section-inner {
                padding: 0;

                .block {
                    padding: 20px;
                    .desc {
                        padding-top: 20px;
                        gap: 0;
                        .info {
                            .subhead {
                                padding: 10px;
                            }
                            .txt {
                                margin-top: 10px;
                            }
                        }
                    }
                }
                .subselect {
                    padding: 10px 10px 0;
                    .f_wrap {
                        flex-direction: column;
                        .box {
                            margin-bottom: 10px;
                            padding: 10px 20px;
                            h3 {
                                font-size: 18px;
                                margin-bottom: 5px;
                                min-height: auto;
                            }
                        }
                    }
                }
            }
        }

        .sec4 {
            margin-bottom: 30px;
            .flowwrap {
                .flowbox {
                    .flowbox_f_wrap {
                        flex-direction: column;
                    }
                }
            }
            .section-inner {
                padding: 40px 20px;

                .flowwrap {
                    margin-top: 20px;
                    .flowbox {
                        padding: 50px 20px 30px;
                        margin-bottom: 20px;
                        .flowbox_f_wrap > div:first-child {
                            margin-left: 0;
                            img {
                                border-radius: 10px;
                            }
                        }
                        .flowbox_f_wrap > div:last-child {
                            h3 {
                                font-size: 24px;
                                font-weight: 700;
                                margin-top: 10px;
                                margin-bottom: 10px;
                            }
                            h3 + div {
                                font-size: 16px;
                                line-height: 1.6;
                            }
                        }
                        .number {
                            font-size: 30px;
                            top: 20px;
                            left: 20px;
                            font-weight: 700;
                        }
                    }
                    .flowbox:last-child {
                        margin-bottom: 0;
                    }
                }
            }

        }
    }


    .contact_page {
        .sec1 {
            .section-inner {
                .formcolwrap {
                    flex-direction: column;
                    gap: 15px;
                }
                .formcolwrap > div:first-child {
                    width: 100%;
                }
                .submitwrap {
                    p {
                        width: 100%;
                    }
                }
                input[type=submit]{
                    width: 90%;
                }
            }
        }
    }




    .contact {
        padding: 60px 0 10px;

        .desc {
            text-align: left;
            line-height: 1.6;
            font-size: 16px;
            padding: 0 20px;
            br {
                display: none;
            }
        }



        .f_wrap {
            flex-direction: column;
            gap: 10px;
            margin: 20px auto;

            .left {
                flex: 0 0 48%;
                padding: 30px 20px 20px;

                .text1 {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 15px;
                }

                .tel {
                    font-size: 38px;
                    margin-bottom: 10px;

                }

                .text2 {
                    font-size: 14px;
                    margin-top: 20px;
                }
            }

            .right {
                flex: 0 0 48%;
                padding: 30px 20px 20px;

                .text1 {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 30px;
                }

                .btn2 {
                    background-color: var(--highlight-color);
                    color: white;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 50px;
                    text-decoration: none;
                    font-size: 18px;
                    border-radius: 10px;
                    line-height: 1;
                    transition: 0.5s;
                    border: 2px solid var(--highlight-color);
                }

                .btn2:hover {
                    background-color: #fff7f7;
                    color: var(--highlight-color);
                    font-weight: bold;
                    border: 2px solid var(--highlight-color);
                }
            }
        }

        .f_wrap>div {
            background-color: var(--background-color);
            border-radius: 20px;
            text-align: center;
            padding: 40px 20px;
        }


    }





    /* Footer Styles */
    .footer {
        /* background-color: var(--base-color); */
        /* color: #fff; */
        padding: 30px 20px 10px;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        max-width: 1200px;
        margin: 0 auto;
        height: auto;
        flex-direction: column;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 160px;
        margin-bottom: 10px;
    }

    .footer-address {
        p:not(:last-child) {
            margin: 0 0 10px;
        }

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

    .footer-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        flex: 1;
        align-items: center;
    }

    .footer-nav ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        row-gap: 10px;
        margin-bottom: 20px;
    }

    .footer-nav li {
        margin-left: 0px;
    }

    .footer-nav a {
        text-decoration: none;
        color: #fff;
    }

    .footer-copyright p {
        margin-top: 10px;
        font-size: 12px;
    }


    .wpcf7-list-item {

        display: block;
        height: 50px;
        margin-top: 10px;
    }
}