<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-animation: header-fixed 0.6s;
    -moz-animation: header-fixed 0.6s;
    -ms-animation: header-fixed 0.6s;
    animation: header-fixed 0.6s;
}

@keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

.header-main {
    background: #da251c;
}

.headercall {
    color: #fff500;
}

    .headercall a {
        color: #fff;
    }

.header-bottom {
    background-color: #00adef;
}

.menu-item .active {
    background: #da251c;
}

#gnavi {
    background: #bdbdbd;
    position: relative;
    z-index: 5;
    width: 100%;
}

    #gnavi .container {
        display: flex;
        justify-content: space-between;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        text-transform: uppercase;
    }

.gnavi {
    display: flex;
    padding-left: 60px;
    margin-bottom: 0;
    list-style: none;
}

    .gnavi li {
        position: relative;
        margin: 0 10px 0 0;
    }

.submenu {
    position: absolute;
    z-index: 5;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

    .submenu li {
        list-style: none;
    }

    .submenu a {
        display: block;
        text-decoration: none;
        background: #da251c;
        color: #fff;
        white-space: nowrap;
        padding: 10px 20px;
        margin-top: 1px;
        transition: all 0.3s;
    }

        .submenu a:hover {
            opacity: 0.8;

        }

.gnavi &gt; li &gt; a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 13px;
    display: block;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
}

.gnavi &gt; li.active &gt; a {
    background-color: #0B4F8C;
}

.gnavi &gt; li &gt; a:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #f6ce03;
    bottom: 12px;
    left: calc(50% - 15px);
    border-radius: 1px;
    transition: all 0.3s;
    transform: scale(0,1);
}


    .gnavi &gt; li:hover &gt; a:after {
        transform: scale(1,1);
    }

.main_slide p {
    margin: 0;
}

.main_slide img {
    width: 100%;
}
.slick-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    z-index: 3;
    list-style:none;
}
.slick-dots li button {
    width: 13px;
    height: 13px;
    background: transparent;
    border: 2px solid #fff;
    border-radius:50px;
    cursor: pointer;
    text-indent: -500000px;
    transform: rotate(45deg);
    font-size: 3px;
    margin-right: 15px;
}
.slick-dots li.slick-active button{background:#fff;}

.h_search .form {
    position: absolute;
    z-index: 5;
    width: 430px;
    top: 55px;
    right: 0;
    display: none;
    background: #f0f0f0;
    padding: 4px;
    justify-content: space-around;
}

.h_search_ttl {
    margin: 0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}

    .h_search_ttl:hover {
        opacity: 0.7;
    }

.form input {
    position: relative;
    width: 75% !important;
    position: relative;
}

.h_search input::placeholder {
    font-size: 12px;
    font-style: italic;
}

.h_search .button {
    position: relative;
    background: #0a0c0b;
    border: none;
    font-size: 13px;
    padding: 4.5px 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    width: 24%;
    margin-right: 0;
}

    .h_search .button:hover {
        background: #e9aa00;
    }

#box02 {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(230, 230, 230);
}

.b02_ttl {
    color: #da251c !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.7em;
}

.b02_main {
    padding: 15px 20px 2px 20px;
}

.b02_itm_ttl span {
    color: #da251c;
}

.b02_content {
    margin-bottom: 20px;
}

.b02_btn {
    margin-bottom: 1.5em;
}

    .b02_btn a {
        background: #da251c;
        color: #fff;
        padding: 10px 20px;
    }

#box03 {
    background: url(/userfile/config/Service_Background.jpg);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
}

.container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
}

.b03_list {
    display: flex;
    justify-content: space-between;
    padding: 0 35px;
}

    .b03_list.slick-initialized .slick-slide {
        margin: 0 15px;
        padding-bottom: 20px;
        transition: all 0.3s;
        position: relative;
    }

.b03_item {
    width: calc(25% - 20px);
    background: #f1f1f1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.b03_itm_img img {
    width: 100%;
}

.slick-arrow {
    width: 50px;
    height: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    right: 15px;
    top: -60px;
    text-indent: -500000px;
    left: auto;
    position: absolute;
    z-index: 9;
    margin: 0;
}

.b03_list .slick-arrow {
    width: 46px;
    background: url(/W_images/b03_next.png) no-repeat center center;
    background-size: 40px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.b03_list .slick-prev {
    left: 0;
    right: auto;
    background: url(/W_images/b03_prev.png) no-repeat center center;
    background-size: 40px;
}
.b03_itm_ttl {
    font-weight: 700;
    font-size: 17px;
}

#box04 {
    background-image: url(/W_images/bg.jpg);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
}

.b04_list {
    display: flex;
}

.b05_list {
    display: flex;
}

#box06 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
    background-image: url(/W_images/bg2.jpg);
}

.b06_ttl {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 20px;
    color:#fff500!important;
}
.fa-phone {
    width: 40px;
    height: 20px;
    position: relative;
    top: 10px;
    color: #fff;
}
#totop{border:2px solid #666;}
#totop:hover{background:#da251c;}
#totop:hover .fa-angle-up {color:#fff;}
.fa-angle-up{color:#666;}
.maps{height: 75%;}
.maps iframe {height:100%;}

@media screen and (max-width: 768px) {
    #gnavi {
        position: fixed;
        left: 0;
        width: 100%;
        height: calc(100% - 73px);
        padding: 40px 3%;
        overflow: auto;
        display: none;
    }

    .gnavi {
        display: block;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
        padding-left: 0;
    }

        .gnavi &gt; li &gt; a {
            color: #fff;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.4);
            border-radius: 0;
        }
    .submenu {
        position: relative;
        text-align: left;
        padding: 0;
    }
    #gnavi .container{padding:0;}
    .gnavi li{margin:0;}
    .gnavi &gt; li.active &gt; a{background-color: #da251c;}
    .submenu a{
        font-size:12px;
        background:#dd473f;
    }

    .menu_icon{flex:none!important;}

    .menu-icon {
        width: 50px;
        height: 43px;
        box-sizing: border-box;
        text-align: center;
        text-transform: uppercase;
        line-height: 1em;
        cursor: pointer;
        color: #fff;
        font-size: 14px;
        padding: 8px 0;
        z-index: 99999;
        background: #fff500;
        margin-left: 10px;
    }

        .menu-icon span {
            display: block;
            margin: 0 auto 15px;
            width: 30px;
            height: 3px;
            background-color: #da251c;
            -webkit-transition-duration: 0;
            -moz-transition-duration: 0;
            -ms-transition-duration: 0;
            -o-transition-duration: 0;
            transition-duration: 0;
            -webkit-transition-delay: 0.2s;
            -moz-transition-delay: 0.2s;
            -ms-transition-delay: 0.2s;
            -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
            top: 12px;
            left: 0;
            position: relative;
        }

            .menu-icon span::after, .menu-icon span::before {
                display: block;
                content: '';
                position: absolute;
                width: 30px;
                height: 3px;
                background-color: #da251c;
                -webkit-transition-property: margin, -webkit-transform;
                -webkit-transition-duration: 0.2s;
                -moz-transition-duration: 0.2s;
                -ms-transition-duration: 0.2s;
                -o-transition-duration: 0.2s;
                transition-duration: 0.2s;
                -webkit-transition-delay: 0.2s, 0;
                -moz-transition-delay: 0.2s, 0;
                -ms-transition-delay: 0.2s, 0;
                -o-transition-delay: 0.2s, 0;
                transition-delay: 0.2s, 0;
            }

            .menu-icon span::before {
                margin-top: -10px;
            }

            .menu-icon span::after {
                margin-top: 10px;
            }

        .menu-icon.active span {
            background-color: transparent;
        }

            .menu-icon.active span::before, .menu-icon.active span::after {
                margin-top: 0px;
                -webkit-transition-delay: 0, 0.2s;
                -moz-transition-delay: 0, 0.2s;
                -ms-transition-delay: 0, 0.2s;
                -o-transition-delay: 0, 0.2s;
                transition-delay: 0, 0.2s;
            }

            .menu-icon.active span::before {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .menu-icon.active span::after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

    .gnv-ico {
        width: 50px;
        height: 54px;
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        right: 0;
        top: 0 !important;
        transform: none !important;
        border: none !important;
    }

        .gnv-ico:before {
            content: '';
            position: absolute;
            border: solid #fff;
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 3px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            left: calc(50% - 3px);
            top: calc(50% - 3px);
            transition: all 0.5s ease;
        }

    .gnavi li.active &gt; .gnv-ico:before {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .b02_content{display:block!important;}
}
</pre></body></html>