<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@media screen and (max-width:768px){
    html{
        overflow-x: hidden;
        min-width:auto;
    }

    /*ヘッダー*/
    .header{
        min-width:auto;
        position:fixed;
    }
    .header-fixed{
        display:none;
    }
    .header_inner{
        height:70px;
    }
    .header_gnav{
        display:none;
    }
    .logo_flex img{
        width:80px;
    }
    .name01{
        font-size:.6em;
    }
    .name02{
        font-size:1.3em;
    }
    .name03{
        font-size:.02em;
    }
    .company_name{
        padding-left:10px;
    }
    /*ハンバーガーメニュー*/
    .no-scroll{
        overflow: hidden;
        height:100vh;
    }
    #header-hamburger{
        display:block;
        background:#0765C0;
        cursor:pointer;
        width:70px;
        aspect-ratio: 1/1;
        margin-left:auto;
        position:relative;
        z-index: 10;
    }
    #header-hamburger span{
        display:inline-block;
        background:#fff;
        width:50%;
        height:2px;
        transition:all .4s ease;
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }
    #header-hamburger span:nth-of-type(1){
        top:30%;
    }
    #header-hamburger span:nth-of-type(2){
        top:50%;
    }
    #header-hamburger span:nth-of-type(3){
        top:70%;
    }
    #header-hamburger.active span:nth-of-type(1){
        top:50%;
        left:25%;
        transform:rotate(-45deg);
        width:50%;
    }
    #header-hamburger.active span:nth-of-type(2){
        opacity: 0;
    }
    #header-hamburger.active span:nth-of-type(3){
        top:50%;
        left:25%;
        transform:rotate(45deg);
        width:50%;
    }
    #hamburger-window{
        transition:all .3s ease;
        text-align: center;
        position:fixed;
        top:70px;
        right:0;
        z-index:100;
        width:100%;
        height:100vh;
        overflow-y: scroll;
        -ms-overflow-style:none;
        scrollbar-width: none;
        background:#fff;
        z-index:9999;
        padding:80px 40px;
        transform:translateX(100vw);
        opacity:0;
        display:block;
    }
    /*スクロールバー非表示（Chrome・Safari）*/
    .content::-webkit-scrollbar{
        display:none;
    }
    #hamburger-window.open{
        visibility: visible;
        transform:translateX(0);
        opacity: 1;
    }
    .hamburger-window_link{
        display:block;
        margin:0 auto;
        width:100%;
        background:#fff;
        border-bottom:1px solid #0765C0;
    }
    .hamburger-window_link p{
        margin:0;
        padding-top:20px;
        padding-bottom:20px;
        font-size:1.1em;
    }

     /*アコーディオン部分*/
     .accordion_menu_wrapper{
        background:#fff;
     }
     .accordion_btn{
        display:flex;
        align-items: center;
        padding-left:5%;
        cursor: pointer;
     }
     .accordion_btn::after{
        content: "\2b";
        display: inline-block;
        position: absolute;
        right: 11%;
        width: 15px;
        aspect-ratio: 1/1;
        color: #0765C0;
        font-size:26px;
        font-weight:600;
     }
     .accordion_btn.is-open::after{
        content:"";
        height:2px;
        width:15px;
        background-color:#0765C0;
        font-size:24px;
        font-family: "Font Awesome 6 Free";
     }
     .hamburger-window_title,
     .hamburger-window_link &gt; a{
        color:#262F3B;
     }
     .hamburger-window_link &gt; a{
        display:block;
        text-align:left;
        padding-left:5%;
        position:relative;
        border-top:1px solid #0765C0;
        margin-top:-1px;
     }
     .hamburger-window_link &gt; a::after{
        content:url(../images/arrow_black.svg);
        display:inline-block;
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        right:6%;
        width:10px;
        aspect-ratio: 1/1;  
     }
     .acordion&gt;.acordion_item{
        position:relative;
        text-align:left;
        width:100%;
        line-height:0;
        transition:all .1s ease-out;
     }

     .acordion.is-open&gt;.acordion_item {
        background-color: #fff;
        /* 開くアニメーション */
        transition:
            border-top .1s ease-out,
    }
    
    .acordion.is-open&gt;.acordion_item:first-child {
        border-top: none;
    }
    
    .acordion.is-open&gt;.acordion_item::after {
        /* fontawesomeアイコンを表示 */
        content: url(../images/arrow_black.svg);
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 10%;
        width: 10px;
        aspect-ratio: 1/1;
    }
    
    .acordion&gt;.acordion_item&gt;.acordion_link {
        color: #262F3B;
        display: block;
        padding-left: 7%;
        /* 閉じている状態 */
        padding-top: 0;
        padding-bottom: 0;
        line-height: 0;
        opacity: 0;
        visibility: hidden;
        /* 閉じるアニメーション */
        transition:
            padding-top .3s ease-out,
            padding-bottom .3s ease-out,
            line-height .3s ease-out,
            opacity .1s linear,
            visibility .1s linear;
    }
    
    .acordion.is-open&gt;.acordion_item&gt;.acordion_link {
        display: block;
        padding-left: 20%;
        /* 開いている状態 */
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 1.5;
        opacity: 1;
        visibility: visible;
        /* 開くアニメーション */
        transition:
            padding-top .3s ease-out,
            padding-bottom .3s ease-out,
            line-height .3s ease-out,
            opacity .1s linear,
            visibility .1s linear;
    }

    /*ハンバーガーメニューお問い合わせボタン*/
    .hamburger_contact{
        height:90px;
        width:250px;
        display:flex;
        align-items: center;
        margin:80px auto;
    }
    .hamburger_contact_link{
        background:#0765C0;
        width:250px;
        transition:color .5s ease;
        height:100%;
        position:relative;
        overflow: hidden;
    }
    .hamburger_contact_link::before{
        content:"";
        position:absolute;
        top:0;
        left:0;
        display:block;
        width:100%;
        height:100%;
        background:#024688;
        transform:scaleX(0);
        transform-origin:right;
        transition:all .5s ease;
        transition-property: transform;
        z-index:0;
    }
    .hamburger_contact_link:hover::before{
        transform:scaleX(1);
        transform-origin:left;
    }

    /*mv*/
    .mv_text_bg{
        padding:20px 10px 20px 40px;
    }
    .mv_textArea{
        font-size:1.5em;
    }
    .scroll_down{
        display:none;
    }
    .mv_text{
        bottom:12%;
    }

    /*採用情報バナー*/
    .bn_recruit_sp{
        display:block;
    }
    .bn_recruit{
        display:none;
    }
    .bn_recruit_sp{
        z-index: 1;
        transition:all .3s ease;
        text-align:center;
        margin-top:60px;
        padding:0 20px;
    }
    .bn_recruit_sp a img{
        transition:all .3s ease;
        box-shadow: 4px 4px 4px rgba(38,47,59,0.5);
    }
    .bn_recruit_sp a img:hover{
        box-shadow: unset;
        transform:translate(4px,4px);
        transition:all .3s ease;
    }

    /*社員代表挨拶*/
    .message{
        max-width:auto;
        padding:100px 20px;
    }
    .message_titleArea{
        min-width:auto;
    }
    .message_inner{
        max-width:auto;
        display:flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .message_textArea{
        width:auto;
    }
    .about_btn{
        margin:50px auto;
    }
    .message_title01{
        font-size:1.4em;
    }
    .message_title02{
        font-size:.9em;
    }

    /*業務内容*/
    .service{
        padding:100px 20px;
    }
    .service_titleArea{
        min-width:auto;
    }
    .service_title01{
        font-size:1.4em;
    }
    .service_title02{
        font-size:.9em;
    }
    .service_inner{
        max-width:auto;
    }
    .service_list{
        width: auto;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service_item{
        width:100%;
        max-width:500px;
    }
    .service_item_img{
        max-height:350px;
        height:100%;
        max-width:500px;
        width:100%;
    }
    .service_btn{
        margin:50px auto;
    }

    /*料金事例*/
    .fee_titleArea{
        min-width:auto;
    }
    .fee_line{
        max-width:auto;
    }
    .fee{
        padding:100px 20px;
    }
    .fee_title01{
        font-size:1.4em;
    }
    .fee_title02{
        font-size:.9em;
    }
    .fee_inner{
        min-width:auto;
        padding:0 10px;
    }
    .fee_list{
        display:flex;
        flex-direction: column;
        row-gap: 70px;
    }
    .fee_item_img{
        width:auto;
        height:auto;
    }

    /*FAQ*/
    .faq{
        padding:100px 20px;
    }
    .faq_titleArea{
        min-width:auto;
    }
    .faq_title01{
        font-size:1.4em;
    }
    .faq_title02{
        font-size:.9em;
    }
    .faq_inner{
        min-width:auto;
    }

    /*お問い合わせ*/
    .contact{
        min-width:auto;
        padding:100px 40px;
    }
    .contact_inner{
        display:flex;
        flex-direction: column;
        row-gap: 120px;
    }
    .contact_left{
        width:auto;
    }
    .contact_left_textArea{
        width:auto;
        row-gap: 20px;
    }
    .contact_left_title01{
        font-size:1.4em;
    }
    .contact_left_title02{
        font-size:.9em;
    }
    .contact_left_text02{
        width:auto;
    }

    /*フッター*/
    .footer{
        padding:50px 40px 20px 40px;
        min-width:auto;
    }
    .footer_inner{
        display:flex;
        justify-content: flex-start;
    }
    .f_right{
        display:none;
    }
    .pagetop{
        margin-left:auto;
    }
}

@media screen and (max-width:600px){
    .message,.service,.fee,.faq{
        padding:80px 20px;
    }
    .contact_right_mailArea{
        width:350px;
    }

    /*テキストサイズ*/
    .fee_item_text{
        font-size:1.2em;
    }

    .Label{
        padding:5px 40px 5px 5px;
    }
    .icon01::before,.icon02::before,.icon03::before,.icon04::before,.icon05::before{
        margin-right:.5em;
        margin-left:3px;
        display:inline-block;
        transform:scale(0.7);
    }
    
    .Label::after{
        width:7px;
        height:7px;
        right:20px;
    }
    .Label{
        font-size:.9em;
    }
    .answer_text{
        font-size:.9em;
    }
    .faq_text{
        font-size:1.1em;
    }

    .logo_flex{
        margin-left:10px;
    }
}

@media screen and (max-width:400px){
    .message,.service,.fee,.faq{
        padding:40px 20px;
    }
    .start_text{
        font-size:1.2em;
    }
    .acordion.is-open&gt;.acordion_item&gt;.acordion_link{
        padding-right:3em;
        font-size:.9em;
    }
    .hamburger-window_link p{
        font-size:1em;
    }

    .logo_flex img{
        width:50px;
    }
    .bn_recruit_sp{
        margin-bottom:40px;
    }
    .name01{
        font-size:.6em;
        display:block;
        line-height: 1;
    }
    .name02{
        font-size:1.1em;
        line-height: 1;
    }
    .name03{
        font-size:7px;
    }

    .mv_text_bg{
        padding:20px 10px 20px 30px;
    }
    .mv_textArea{
        font-size:1.2em;
    }

    .message_text{
        font-size:.9em;
    }

    .about_btn{
        width:230px;
    }

    .service_item_title{
        font-size:1.1em;
    }
    .service_item_title::after{
        display:inline-block;
        transform:scale(0.9);
    }
    .service_item_sub{
        font-size:.9em;
    }
    .service_btn{
        width:230px;
    }

    .fee_item_text{
        font-size:.9em;
    }
    .fee_item{
        box-shadow: 5px 5px 0px #87ceeb;
    }
    .fee_item:hover{
        box-shadow: unset;
        transform:translate(5px,5px);
    }
    .fee_inner{
        margin-bottom:60px;
    }
    .fee_list{
        row-gap: 40px;
    }
    .fee_btn{
        width:230px;
    }

    .Label{
        font-size:.8em;
    }
    .faq_text{
        font-size:.8em;
    }
    .answer_text{
        font-size:.8em;
    }

    .contact_left_text01{
        font-size:1.1em;
    }
    .contact_left_text02{
        font-size:.9em;
    }
    .contact_right_tel{
        font-size:2em;
    }
    .contact_right_time{
        font-size:.9em;
    }
    .contact_right_mailArea{
        width:280px;
        height:90px;
    }
    .contact_right_mail{
        line-height: 90px;
        height:90px;
    }

    .footer{
        padding:50px 20px 20px 20px;
    }
    .f_logo_flex img{
        width:50px;
    }
    .f_name01{
        display:block;
    }
    .f_name02{
        font-size:1.1em;
    }
    .f_name03{
        font-size:7px;
    }
    .add{
        font-size:.9em;
    }
    .map a{
        font-size:.8em;
    }
    .f_tel,.f_mail{
        font-size:.9em;
    }
    .pagetop a{
        font-size:.9em;
    }
    .pagetop a::before{
        transform:translate(-50%, -50%) rotate(-45deg) scale(0.8);
    }
    .copyright{
        font-size:7px;
        letter-spacing: .1em;
    }
}</pre></body></html>