/* --- Layout Colors --- */
:root {
    --primary-blue: #01408C;
    --accent-red: #843B5C;
    --white: #fff;
}

/* --- Reset CSS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@property --gradient-color {
    syntax: '<color>';
    initial-value: var(--accent-red);
    inherits: false;
}
body {    
    /* グラデーション背景 */
    /* background: linear-gradient(270deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb); */
    background: linear-gradient(135deg, var(--primary-blue) , var(--accent-red), var(--primary-blue) , var(--accent-red));
    background-size: 800% 800%;

    /* アニメーションの設定（30秒でループ） */
    animation: sliding-gradient 15s ease infinite;
}
@keyframes sliding-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

#service_page{
    padding-top: 184px;
    @media (max-width: 896px) {
        padding-top: 24vw;
    }
    .highlight_txt{
        background: linear-gradient(90deg, #003F8C, #D71918);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-weight: 700;
    }

    .fix_cta{
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 20px;
        width: 108px;
        height: 108px;
        border-radius: 50%;
        z-index: 10008;
        transition: .5s ease-out;
        @media (max-width: 896px) {
            right: 10px;
            width: 80px;
            height: 80px;
        }
        &:before{
            content: "";
            position: absolute;
            bottom: 8px;
            left: 50%;
            translate: -50% 0;
            width: 12px;
            height: 12px;
        }
        &:hover{
            scale: 1.08;
        }
        &.top{
            bottom: 138px;
            background-color: #fff;
            @media (max-width: 896px) {
                bottom: 10px;
                right: 100px;
            }
            &:before{
                background-image: url(../../img/common/icon_blank_grad.svg);
                background-size: cover;
                background-repeat: no-repeat;
            }
        }
        &.bottom{
            bottom: 20px;
            background: linear-gradient(90deg, #003F8C, #D71918);
            @media (max-width: 896px) {
                bottom: 10px;
            }
            &:before{
                background-image: url(../../img/common/icon_blank.svg);
                background-size: cover;
                background-repeat: no-repeat;
            }
        }
        .txt{
            font-size: 13px;
            @media (max-width: 896px) {
                font-size: 12px;
            }
        }
    }

    .service_heading{
        .jp_txt{
            display: block;
            width: fit-content;
            margin: -32px 5% 0 auto;
            font-size: 82px;
            @media (max-width: 896px) {
                margin: -12px auto 0;
                font-size: 26px;
            }
        }
    }

    .mv{
        padding: 0 7.2%;
        @media (max-width: 896px) {
            padding: 0 5%;
            margin-top: 48px;
        }
        .page_ttl{
            position: relative;
            z-index: 2;
            margin-bottom: -48px;
            @media (max-width: 896px) {
                padding: 0 5%;
                margin-bottom: -24px;
            }
        }
        .mv_img{
            margin-bottom: -64px;
            @media (max-width: 896px) {
                margin-bottom: -32px;
            }
        }
        .txt{
            position: relative;
            z-index: 101;
            font-size: 24px;
            line-height: 2;
            @media (max-width: 896px) {
                padding: 0 5%;
                font-size: 16px;
                line-height: 1.75;
            }
        }
    }


    .feature{
        margin-top: 100px;
        @media (max-width: 896px) {
            margin-top: 48px;
        }
        .heading{
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px 5% 0 auto;
                font-size: 82px;
                @media (max-width: 896px) {
                    margin: -12px 0 0 5%;
                    font-size: 26px;
                }
            }
        }
        .feature__wrapper{
            .text-wrapper{
                display: inline-block;
                .copy{
                    font-size: 46px;
                    @media (max-width: 896px) {
                        font-size: 25px;
                    }
                    .line{
                        padding: 4px 6px;
                    }
                }
            }
            .txt{
                font-size: 20px;
            }
        }

        .feature__wrapper-content{
            margin-top: 120px;
            @media (min-width: 897px) {
                display: flex;
                align-items: center;
            }
            @media (max-width: 896px) {
                margin-top: 60px;
            }
            + .feature__wrapper-content{
                margin-top: 160px;
                @media (max-width: 896px) {
                    margin-top: 80px;
                }
            }
            &.jcc{
                justify-content: center;
            }
            &.row-reverse{
                flex-direction: row-reverse;
            }
            &.aife{
                align-items: flex-end;
            }
            &.jcfs{
                justify-content: flex-start;
            }
            .img{
                position: relative;
                .num{
                    position: absolute;
                    z-index: 2;
                    font-size: 150px;
                    font-weight: 700;
                    letter-spacing: -.12em;
                    @media (max-width: 896px) {
                        top: 0;
                        left: 0;
                        translate: 0 -32px;
                        font-size: 56px;
                    }
                }
            }
            .img_01{
                @media (min-width: 897px) {
                    width: calc(720/1440*100%);
                    margin-right: 63px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        right: 0;
                        translate: 0 -40%;
                    }
                }
            }
            .img_02{
                @media (min-width: 897px) {
                    width: calc(804/1440*100%);
                    margin-left: 120px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        left: 0;
                        translate: -45% -30%;
                    }
                }
            }
            .img_03{
                @media (min-width: 897px) {
                    width: calc(595/1440*100%);
                    margin-right: 110px;
                }
                .num{
                    @media (min-width: 897px) {
                        bottom: 0;
                        left: 0;
                        translate: 0 50%;
                    }
                }
            }

            .gh_img_01{
                @media (min-width: 897px) {
                    width: calc(768/1440*100%);
                    margin-left: 42px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        left: 0;
                        translate: -30px -40%;
                    }
                }
            }
            .gh_img_02{
                @media (min-width: 897px) {
                    width: calc(820/1440*100%);
                    margin-right: -40px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        left: 0;
                        translate: -20px -30px;
                    }
                }
            }
            .gh_img_03{
                @media (min-width: 897px) {
                    width: calc(606/1440*100%);
                    margin-right: 110px;
                }
                .num{
                    @media (min-width: 897px) {
                        bottom: 0;
                        left: 0;
                        translate: -20px 0;
                    }
                }
            }
            .gh_img_04{
                @media (min-width: 897px) {
                    width: calc(962/1440*100%);
                    margin-left: -20px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        left: 0;
                        translate: 0 -20px;
                    }
                }
            }

            .od_img_01{
                @media (min-width: 897px) {
                    width: calc(772/1440*100%);
                    margin-left: 56px;
                }
                .num{
                    @media (min-width: 897px) {
                        top: 0;
                        left: 0;
                        translate: 0 -40%;
                    }
                }
            }
            .od_img_02{
                @media (min-width: 897px) {
                    width: calc(620/1440*100%);
                    margin-right: -70px;
                }
                .num{
                    @media (min-width: 897px) {
                        bottom: 0;
                        left: 0;
                        translate: 0 50%;
                    }
                }
            }
            .od_img_03{
                @media (min-width: 897px) {
                    width: calc(634/1440*100%);
                    margin-left: -110px;
                }
                .num{
                    @media (min-width: 897px) {
                        bottom: 0;
                        right: 0;
                        translate: 50px 40%;
                    }
                }
            }

            .textarea{
                @media (max-width: 896px) {
                    position: relative;
                    z-index: 2;
                    padding: 0 7%;
                    margin-top: -20px;
                }
                .txt{
                    margin-top: 20px;
                    line-height: 2;
                    letter-spacing: .04em;
                    @media (max-width: 896px) {
                        font-size: 15px;
                    }
                }
            }
            .og_txt02{
                @media (min-width: 897px) {
                    margin-top: 360px;
                }
            }
        }
    }

    .service{
        margin-top: 168px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin-top: -12px;
                    font-size: 26px;
                }
            }
        }
        .service__wrapper{
            width: calc(1064/1440*100%);
            margin: 82px auto 0;
            @media (min-width: 897px) {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 72px 0;
            }
            @media (max-width: 896px) {
                width: 85%;
                margin-top: 36px;
            }
        }
        .service__wrapper-item{
            @media (min-width: 897px) {
                width: calc(488/1064*100%);
            }
            @media (max-width: 896px) {
                + .service__wrapper-item{
                    margin-top: 40px;
                }
            }
            .min_head{
                position: relative;
                padding-bottom: 28px;
                margin-top: 32px;
                margin-bottom: 32px;
                font-size: 38px;
                font-weight: 700;
                @media (max-width: 896px) {
                    padding-bottom: 18px;
                    margin-top: 20px;
                    margin-bottom: 12px;
                    font-size: 22px;
                }
                &:before{
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 2px;
                    background: linear-gradient(90deg, #003F8C, #D71918);
                }
            }
            .txt{
                font-size: 20px;
                line-height: 2;
                letter-spacing: .02em;
                @media (max-width: 896px) {
                    font-size: 16px;
                    line-height: 1.75;
                }
                .note{
                    font-size: 14px;
                    @media (max-width: 896px) {
                        font-size: 12px;
                    }
                }
            }
        }
    }

    .area_sec{
        margin-top: 120px;
        .area__wrapper{
            @media (min-width: 897px) {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: calc(1148/1440*100%);
                margin: -200px auto 0;
            }
            @media (max-width: 896px) {
                width: 92%;
                margin: 40px auto 0;
            }
        }

        .map{
            @media (min-width: 897px) {
                width: calc(578/1148*100%);
            }
        }

        .list{
            @media (min-width: 897px) {
                width: 448px;
            }
            @media (max-width: 896px) {
                margin-top: -64px;
            }
            h4{
                font-size: 48px;
                font-weight: 700;
                @media (max-width: 896px) {
                    font-size: 24px;
                }
            }
            ul{
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 20px 0;
                margin-top: 40px;
                @media (max-width: 896px) {
                    gap: 8px 0;
                    margin-top: 16px;
                }
            }
            li{
                width: 136px;
                padding: 12px 0;
                background-color: #EEEDED;
                border: 1px solid #EFEFEF;
                font-size: 20px;
                font-weight: 700;
                color: #6595D3;
                text-align: center;
                @media (max-width: 896px) {
                    width: 31.5%;
                    padding: 8px 0;
                    font-size: 16px;
                }
            }
            .note{
                margin-top: 20px;
                font-size: 18px;
                font-weight: 700;
                @media (max-width: 896px) {
                    margin-top: 12px;
                    font-size: 14px;
                }
            }
        }
    }

    .station{
        margin-top: 200px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            @media (max-width: 896px) {
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin: -12px auto 0;
                    font-size: 26px;
                }
            }
        }
        .station__wrapper{
            width: calc(1084/1440*100%);
            margin: 134px auto 0;
            @media (max-width: 896px) {
                width: 86%;
                margin-top: 40px;
            }
        }
        .station__wrapper-item{
            + .station__wrapper-item{
                margin-top: 160px;
                @media (max-width: 896px) {
                    margin-top: 80px;
                }
            }
        }
        .station__wrapper-content{
            @media (min-width: 897px) {
                display: flex;
                align-items: flex-start;
            }
            .textarea{
                @media (min-width: 897px) {
                    width: calc(544/1084*100%);
                }
            }
            .area{
                span{
                    display: inline-block;
                    padding: 2px 10px;
                    background-color: #EEEDED;
                    font-size: 16px;
                    font-weight: 700;
                    color: #6595D3;
                    @media (max-width: 896px) {
                        font-size: 14px;
                    }
                }
            }
            .name{
                padding-bottom: 20px;
                margin-bottom: 36px;
                border-bottom: 1px solid #fff;
                font-size: 40px;
                font-weight: 600;
                letter-spacing: .02em;
                @media (max-width: 896px) {
                    padding-bottom: 10px;
                    margin-bottom: 18px;
                    font-size: 28px;
                }
            }
            .txt{
                font-size: 20px;
                font-weight: 600;
                line-height: 2;
                @media (max-width: 896px) {
                    font-size: 16px;
                    line-height: 1.75;
                }
            }
            .linkbtn{
                position: relative;
                display: block;
                width: fit-content;
                padding: 20px 100px 20px 28px;
                margin-top: 36px;
                border: 1px solid #fff;
                border-radius: 50px;
                font-size: 18px;
                font-weight: 700;
                letter-spacing: .02em;
                @media (max-width: 896px) {
                    padding: 18px 100px 18px 28px;
                    margin-top: 16px;
                }
                &:before{
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 12px;
                    translate: 0 -50%;
                    width: 50px;
                    height: 50px;
                    background-image: url(../../img/common/icon_grad.svg);
                    background-repeat: no-repeat;
                    background-position: 0 0;
                    background-size: 100%;
                    @media (max-width: 896px) {
                        right: 8px;
                        width: 46px;
                        height: 46px;
                    }
                }
            }
            .img{
                @media (min-width: 897px) {
                    width: calc(540/1084*100%);
                }
                @media (max-width: 896px) {
                    margin-top: 32px;
                }
            }
        }
        .address{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 42px;
            @media (max-width: 896px) {
                align-items: flex-end;
                flex-direction: column;
                margin-top: 20px;
            }
            .info{
                font-size: 20px;
                font-weight: 600;
                line-height: 1.75;
                @media (max-width: 896px) {
                    font-size: 18px;
                    line-height: 1.5;
                }
            }
            .google_map{
                padding-right: 24px;
                padding-bottom: 4px;
                background-image: url(../../img/common/icon_blank.svg);
                background-repeat: no-repeat;
                background-position: 100% 50%;
                background-size: 16px;
                border-bottom: 1px solid #fff;
                font-size: 18px;
                font-weight: 600;
                @media (max-width: 896px) {
                    margin-top: 8px;
                    font-size: 16px;
                }
            }
        }
    }

    .step{
        margin-top: 168px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            text-align: center;
            @media (max-width: 896px) {
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            img{
                display: inline-block;
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin-top: -12px;
                    font-size: 26px;
                }
            }
        }
        .step__wrapper{
            max-width: 876px;
            margin: 140px auto 0;
            @media (max-width: 896px) {
                margin-top: 56px;
            }
        }
        .step__wrapper-flow{
            @media (min-width: 897px) {
                display: flex;
                justify-content: center;
                align-items: flex-start;
            }
            + .step__wrapper-flow{
                @media (max-width: 896px) {
                    margin-top: 32px;
                }
                .num,
                .textarea{
                    @media (min-width: 897px) {
                        padding-top: 80px;
                    }
                }
            }
            .num{
                width: 180px;
                font-size: 150px;
                line-height: 1;
                letter-spacing: -.1em;
                @media (max-width: 896px) {
                    margin-left: 5%;
                    font-size: 64px;
                }
            }
            .textarea{
                @media (min-width: 897px) {
                    flex: 1;
                    padding-left: 32px;
                    margin-left: 32px;
                    border-left: 1px solid #fff;
                }
                @media (max-width: 896px) {
                    padding: 0 7.5%;
                    margin-top: 8px;
                }
                .item{
                    font-size: 40px;
                    font-weight: 600;
                    @media (max-width: 896px) {
                        font-size: 26px;
                    }
                }
                .txt{
                    margin-top: 16px;
                    font-size: 20px;
                    font-weight: 600;
                    line-height: 2;
                    @media (max-width: 896px) {
                        margin-top: 8px;
                        font-size: 16px;
                        line-height: 1.75;
                    }
                }
                .btn-contact {
                    position: relative;
                    display: block;
                    width: 284px;
                    padding: 24px 28px;
                    margin-top: 20px;
                    border-radius: 50px;
                    background: linear-gradient(90deg, #003F8C 0%, #D71918 100%);
                    text-decoration: none;
                    font-size: 18px;
                    font-weight: bold;
                    color: #fff;
                    transition: .25s ease;
                    @media (max-width: 896px) {
                        padding: 18px 24px;
                    }
                    &:before{
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: 10px;
                        transform: translate(0,-50%);
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        background-color: #fff;
                        background-image: url(../../img/common/icon_arrow_link_grad.svg);
                        background-size: 8px;
                        background-position: 55% center;
                        background-repeat: no-repeat;
                        @media (max-width: 896px) {
                            width: 42px;
                            height: 42px;
                        }
                    }
                    &:after{
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: 10px;
                        z-index: 2;
                        transform: translate(-5px,-50%);
                        opacity: 0;
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        background-image: url(../../img/common/icon_arrow_link.svg);
                        background-size: 8px;
                        background-position: 55% center;
                        background-repeat: no-repeat;
                        transition: .5s ease;
                        @media (max-width: 896px) {
                            width: 42px;
                            height: 42px;
                        }
                    }
                    &:hover{
                        background: #fff;
                        &:before{
                            background: linear-gradient(90deg, #003F8C 0%, #D71918 100%);
                            transition: .5s ease;
                        }
                        &:after{
                            opacity: 1;
                            transform: translate(0,-50%);
                        }
                        .link{
                            background: linear-gradient(90deg, #003F8C, #D71918);
                            -webkit-background-clip: text;
                            background-clip: text;
                            -webkit-text-fill-color: transparent;
                            color: transparent;
                        }
                    }
                }
                .tel{
                    @media (min-width: 897px) {
                        display: flex;
                        align-items: center;
                        margin-top: 16px;
                    }
                    @media (max-width: 896px) {
                        margin-top: 8px;
                    }
                    a{
                        padding-left: 28px;
                        background-image: url(../../img/common/icon_tel.svg);
                        background-size: 21px;
                        background-position: 0 center;
                        background-repeat: no-repeat;
                        font-size: 30px;
                        font-weight: 700;
                    }
                    .note{
                        font-size: 14px;
                        @media (min-width: 897px) {
                            margin-left: 12px;
                        }
                        @media (max-width: 896px) {
                            display: block;
                            margin-top: 4px;
                        }
                    }
                }
            }
        }
    }

    .person{
        margin-top: 200px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            text-align: center;
            img{
                display: inline-block;
            }
            @media (max-width: 896px) {
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin-top: -12px;
                    font-size: 26px;
                }
            }
        }
        .person__content{
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1132px;
            margin: 80px auto;
            .item{
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                width: 392px;
                height: 392px;
                margin: -20px;
                border: 1px solid #fff;
                border-radius: 50%;
                font-size: 20px;
                font-weight: 600;
                letter-spacing: .02em;
                text-align: center;
                &:nth-child(4),&:nth-child(5){
                    margin-top: -60px;
                }
                @media (max-width: 896px) {
                    width: 320px;
                    height: 320px;
                    + .item{
                        margin-top: -40px;
                    }
                }
            }
        }
    }

    .btn_nursing{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1058px;
        width: 92%;
        padding: 20px 0;
        margin: 120px auto;
        border: 1px solid #fff;
        background-color: rgba(217, 217, 217, 0.5);
        border-radius: 150px;
        transition: .5s ease-out;
        @media (max-width: 896px) {
            flex-direction: column;
            margin: 60px auto;
            border-radius: 72px;
        }
        &:hover{
            scale: 1.02;
            &:before{
                background: #fff;
            }
            &:after{
                background-image: url(../../img/common/icon_blank_grad.svg);
            }
        }
        &:before{
            content: "";
            position: absolute;
            top: 50%;
            right: 48px;
            transform: translate(0,-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #003F8C , #D71918);
            transition: .5s ease-out;
            @media (max-width: 896px) {
                right: 36px;
                transform: translate(0, 10px);
                width: 48px;
                height: 48px;
            }
        }
        &:after{
            content: "";
            position: absolute;
            top: 50%;
            right: 64px;
            transform: translate(0,-50%);
            width: 20px;
            height: 20px;
            background-image: url(../../img/common/icon_blank.svg);
            background-size: 18px;
            background-position: center;
            background-repeat: no-repeat;
            transition: .5s ease-out;
            @media (max-width: 896px) {
                right: 36px;
                transform: translate(0, 10px);
                width: 48px;
                height: 48px;
            }
        }
        .img_logo{
            width: calc(372/1058*100%);
            @media (max-width: 896px) {
                width: 72%;
            }
        }
        .text{
            position: relative;
            @media (min-width: 897px) {
                padding-left: 50px;
                margin-left: 42px;
                margin-right: 52px;
            }
            @media (max-width: 896px) {
                width: 80%;
                padding-top: 6px;
                margin-top: 16px;
                font-size: 14px;
            }
            &:before{
                content: "";
                position: absolute;
                top: 50%;
                left: 0;
                transform: translate(0,-50%);
                width: 2px;
                height: 100%;
                background-color: #fff;
                @media (max-width: 896px) {
                    top: 0;
                    transform: translate(0,-10px);
                    width: 100%;
                    height: 2px;
                }
            }
        }
    }

    .issues{
        margin-top: 200px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            img{
                margin: auto;
            }
            @media (max-width: 896px) {
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin: -12px auto 0;
                    font-size: 26px;
                }
            }
        }
        .issues__content{
            display: flex;
            align-items: center;
            flex-direction: column;
            flex-wrap: wrap;
            margin-top: 80px;
            @media (max-width: 896px) {
                margin-top: 40px;
            }
            .w468{
                width: calc(468/1440*100%);
                @media (max-width: 896px) {
                    width: 64%;
                }
            }
            .w487{
                width: calc(487/1440*100%);
                @media (max-width: 896px) {
                    width: 68%;
                }
            }
            .w516{
                width: calc(516/1440*100%);
                @media (max-width: 896px) {
                    width: 70%;
                }
            }
            .type02{
                @media (min-width: 897px) {
                    margin-top: -160px;
                }
            }
            .type03{
                @media (min-width: 897px) {
                    margin-top: -160px;
                }
            }
            .type04{
                @media (min-width: 897px) {
                    margin-top: -160px;
                }
            }
            .type01,
            .type03{
                translate: -60% 0;
                @media (max-width: 896px) {
                    translate: -20% 0;
                }
            }
            .type02,
            .type04{
                translate: 60% 0;
                @media (max-width: 896px) {
                    translate: 20% 0;
                }
            }
        }
    }

    .service__design{
        margin-top: 240px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            img{
                margin: auto;
            }
            @media (max-width: 896px) {
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -32px auto 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin-top: -12px;
                    font-size: 26px;
                }
            }
        }
        .service__design-content{
            margin-top: 80px;
            @media (max-width: 896px) {
                margin-top: 40px;
            }
            .item{
                width: calc(920/1440*100%);
                padding: 88px 106px 88px 96px;
                border: 1px solid #fff;
                border-width: 1px 1px 1px 0;
                border-radius: 0 30px 30px 0;
                @media (max-width: 896px) {
                    width: 92%;
                    padding: 64px 5%;
                }
                + .item{
                    margin-top: -26px;
                }
                &.ml-a{
                    margin-left: auto;
                    border-width: 1px 0 1px 1px;
                    border-radius: 30px 0 0 30px;
                    @media (max-width: 896px) {
                        border-radius: 20px 0 0 20px;
                    }
                }
                .sub{
                    font-size: 28px;
                    @media (max-width: 896px) {
                        font-size: 20px;
                    }
                }
                .copyarea{
                    margin-top: 24px;
                    @media (max-width: 896px) {
                        margin-top: 8px;
                    }
                }
                .copy{
                    padding: 6px 4px;
                    font-size: 42px;
                    @media (max-width: 896px) {
                        font-size: 24px;
                    }
                }
                .txt{
                    position: relative;
                    padding-top: 36px;
                    margin-top: 36px;
                    font-size: 20px;
                    line-height: 2;
                    letter-spacing: .04em;
                    @media (max-width: 896px) {
                        padding-top: 16px;
                        margin-top: 20px;
                        font-size: 16px;
                        line-height: 1.75;
                    }
                    &:before{
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 1px;
                        background: linear-gradient(90deg, #003F8C, #D71918);
                    }
                }
                .list{
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    margin-top: 36px;
                    @media (max-width: 896px) {
                        margin-top: 24px;
                    }
                    li{
                        background-color: #EEEDED;
                        padding: 4px 6px;
                        font-size: 18px;
                        line-height: 1;
                        color: #6595D3;
                        @media (max-width: 896px) {
                            font-size: 14px;
                        }
                    }
                }
            }
        }

        .service_link{
            position: relative;
            display: block;
            width: 328px;
            padding: 24px 32px;
            margin: 92px auto 0;
            background-color: #fff;
            border-radius: 36px;
            @media (max-width: 896px) {
                width: 320px;
                padding: 18px 24px;
                margin-top: 42px;
            }
            .circle{
                position: absolute;
                top: 50%;
                right: 10px;
                translate: 0 -50%;
                width: 52px;
                height: 52px;
                border-radius: 50%;
                background: linear-gradient(90deg, #003F8C, #D71918);
                @media (max-width: 896px) {
                    width: 48px;
                    height: 48px;
                }
                &:before{
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    translate: -50% -50%;
                    width: 20px;
                    height: 20px;
                    background-image: url(../../img/common/icon_blank.svg);
                    background-size: 18px;
                    background-position: center;
                }
            }
            .highlight_txt{
                font-size: 18px;
            }
        }

        .service__design-cta{
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 152px;
            background-image: url(../../img/service/organization-design/bg_cta_service.webp);
            background-size: cover;
            background-position: center;
            width: 100%;
            height: calc(524/1440*100vw);
            @media (max-width: 896px) {
                height: auto;
                padding: 32px 0;
                margin-top: 80px;
            }
            .inner{
                width: calc(1110/1440*100%);
                @media (max-width: 896px) {
                    width: 100%;
                }
            }
            .copyarea{
                @media (max-width: 896px) {
                    margin-left: 3.5%;
                }
            }
            .copy{
                font-size: 46px;
                @media (max-width: 896px) {
                    font-size: 22px;
                }
                .line{
                    padding-left: 12px;
                    @media (max-width: 896px) {
                        padding-left: 6px;
                    }
                }
            }
            .txt{
                margin-top: 32px;
                font-size: 20px;
                line-height: 2;
                letter-spacing: .04em;
                @media (max-width: 896px) {
                    padding: 0 3.5%;
                    margin-top: 18px;
                    font-size: 16px;
                }
            }
            .cta_btn{
                display: flex;
                justify-content: flex-end;
                flex-wrap: wrap;
                gap: 0 27px;
                @media (max-width: 896px) {
                    justify-content: center;
                    gap: 16px 0;
                    margin-top: 20px;
                }
                li{
                    width: 284px;
                    @media (max-width: 896px) {
                        width: 90%;
                    }
                    a{
                        position: relative;
                        display: block;
                        padding: 22px 24px;
                        border-radius: 32px;
                        font-size: 18px;
                        line-height: 1;
                        letter-spacing: .04em;
                        &.white{
                            background-color: #fff;
                        }
                        &.grad{
                            background: linear-gradient(90deg, #003F8C, #D71918);
                        }
                        .circle{
                            position: absolute;
                            top: 50%;
                            right: 10px;
                            translate: 0 -50%;
                            width: 52px;
                            height: 52px;
                            border-radius: 50%;
                            background: linear-gradient(90deg, #003F8C, #D71918);
                            @media (max-width: 896px) {
                                width: 48px;
                                height: 48px;
                            }
                            &.white{
                                background: #fff;
                                &:before{
                                    background-image: url(../../img/common/icon_blank_grad.svg);
                                }
                            }
                            &:before{
                                content: '';
                                position: absolute;
                                top: 50%;
                                left: 50%;
                                translate: -50% -50%;
                                width: 20px;
                                height: 20px;
                                background-image: url(../../img/common/icon_blank.svg);
                                background-size: 18px;
                                background-position: center;
                            }
                        }
                    }
                }
            }
        }
    }

    .faq{
        margin-top: 240px;
        @media (max-width: 896px) {
            margin-top: 80px;
        }
        .heading{
            margin-left: calc(72/1440*100%);
            @media (max-width: 896px) {
                margin-left: 0;
                img{
                    max-width: inherit;
                    width: 104%;
                    margin-left: -2%;
                }
            }
            .jp_txt{
                display: block;
                width: fit-content;
                margin: -48px 0 0;
                font-size: 48px;
                @media (max-width: 896px) {
                    margin: -24px auto 0;
                    font-size: 26px;
                }
            }
        }

        .faq__content{
            width: calc(930/1440*100%);
            margin-top: 72px;
            margin-left: calc(414/1440*100%);
            @media (max-width: 896px) {
                width: 92%;
                margin: 40px auto 0;
            }
            .item{
                border: 1px solid #fff;
                background-color: #fff;
                border-radius: 20px;
                + .item{
                    margin-top: 12px;
                }
            }
            .question{
                position: relative;
                padding: 24px 32px 24px 72px;
                font-size: 24px;
                @media (max-width: 896px) {
                    padding: 18px 32px 18px 56px;
                    font-size: 18px;
                }
                &:before{
                    content: 'Q';
                    position: absolute;
                    top: 50%;
                    left: 20px;
                    translate: 0 -50%;
                    font-size: 32px;
                    font-family: "Google Sans Flex", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 700;
                    font-style: normal;
                    background: linear-gradient(90deg, #003F8C, #D71918);
                    -webkit-background-clip: text;
                    background-clip: text;
                    -webkit-text-fill-color: transparent;
                    color: transparent;
                    @media (max-width: 896px) {
                        font-size: 28px;
                    }
                }
                .highlight_txt{
                    display: block;
                    position: relative;
                    &:before,
                    &:after{
                        content: '';
                        position: absolute;
                        top: 50%;
                        right: 0;
                        translate: 0 -50%;
                        width: 18px;
                        height: 4px;
                        border-radius: 20px;
                        background: linear-gradient(90deg, #003F8C, #D71918);
                        @media (max-width: 896px) {
                            translate: 24px -50%;
                        }
                    }
                    &:after{
                        rotate: 90deg;
                    }
                }
            }
            .answer{
                display: none;
                position: relative;
                padding: 24px 32px 24px 72px;
                background-color: #D9D9D9;
                border-radius: 0 0 20px 20px;
                font-size: 20px;
                font-weight: 400;
                @media (max-width: 896px) {
                    padding: 20px 32px 20px 56px;
                    font-size: 16px;
                }
                &.is-open {
                    display: block;
                }
                &:before{
                    content: 'A';
                    position: absolute;
                    top: 0;
                    left: 20px;
                    translate: 0 18px;
                    font-size: 32px;
                    font-family: "Google Sans Flex", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 700;
                    font-style: normal;
                    background: linear-gradient(90deg, #003F8C, #D71918);
                    -webkit-background-clip: text;
                    background-clip: text;
                    -webkit-text-fill-color: transparent;
                    color: transparent;
                    @media (max-width: 896px) {
                        font-size: 28px;
                    }
                }
            }
        }
    }

    .station_popup{
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        translate: 0 110%;
        z-index: 100;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: .5s ease-out;
        &.is-active{
            translate: 0 0;
            z-index: 10000008;
            opacity: 1;
            .inner{
                opacity: 1;
                scale: 1;
            }
        }
        .inner{
            position: relative;
            overflow-y: scroll;
            width: calc(886/1440*100%);
            height: 80vh;
            padding: 64px 108px;
            border-radius: 50px;
            background-color: #fff;
            opacity: 0;
            scale: .98;
            transition: .5s ease-out .6s;
            @media (max-width: 896px) {
                width: 92%;
                padding: 32px 5%;
                border-radius: 20px;
            }
            .close{
                background-color: transparent;
                border: none;
                position: sticky;
                top: 12px;
                left: 100%;
                width: 28px;
                height: 28px;
                @media (min-width: 897px) {
                    translate: 50px 0;
                }
                @media (max-width: 896px) {
                    top: 0;
                    /* right: 20px; */
                }
                &::before,&::after{
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    translate: -50% -50%;
                    width: 100%;
                    height: 1px;
                    background-color: #2A2929;
                }
                &::before{
                    rotate: -45deg;
                }
                &::after{
                    rotate: 45deg;
                }
            }
            .name{
                margin-top: -20px;
                font-size: 32px;
                font-weight: 600;
                color: #000;
                @media (max-width: 896px) {
                    font-size: 24px;
                }
            }
            .imgarea{
                display: flex;
                justify-content: space-between;
                margin-top: 54px;
                @media (max-width: 896px) {
                    margin-top: 24px;
                }
                .img{
                    width: calc(206/658*100%);
                }
            }
            .outline{
                margin-top: 24px;
                @media (max-width: 896px) {
                    margin-top: 16px;
                }
                table{
                    width: 100%;
                }
                th,td{
                    padding: 28px 0;
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                    @media (max-width: 896px) {
                        display: block;
                        padding: 14px 0 0;
                    }
                }
                th{
                    text-align: left;
                    @media (min-width: 897px) {
                        width: 210px;
                        border-bottom: 1px solid #C6C6C6;
                    }
                }
                td{
                    border-bottom: 1px solid #EFEFEF;
                    @media (max-width: 896px) {
                        padding: 6px 0 14px;
                    }
                    .img{
                        margin-top: 24px;
                    }
                    .img108{
                        width: 108px;
                    }
                    .img220{
                        width: 220px;
                    }
                }
            }
        }
    }
}