@charset "utf-8";





/*-------------------------------------------------------------------------------------
変数
----------------------------------------------------------------------------------------*/
:root {
    --main-color: #002345;
    --sub-color: #8D731C;
    --cv-color: linear-gradient(180deg, rgba(240, 157, 106, 1) 0%, rgba(204, 92, 21, 1) 50%, rgba(204, 92, 21, 1) 100%);
    --bg-color: #FFFBE0;
    --bg2-color: #FFFBE1;
    --bg3-color: #FCFDEF;
    --bgGray-color: #F5F8F5;
    --text-color: #081E07;
    --green-color: #2A6B29;
    --white-color: #fff;
    --navy-color: #152F68;
    --gray-color: #D9D9D9;
    --red-color: #9F1620;
}



/*-------------------------------------------------------------------------------------
全ページ共通
----------------------------------------------------------------------------------------*/

html{
    line-height: 1;
    /* font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif; */
    font-family: "Noto Sans JP", sans-serif;
    font-size: 62.5%;
    font-weight: 400;
    letter-spacing: 0;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}
body{
    line-height: 1.8;
    font-size: 1.6rem;
}


/* 横並び */
.flex{
    display: flex;
    flex-wrap: wrap;
}

/* js用 */
.js_fixFade {
    display: none;
}

/* PC／SP表示切替 */
.sp{
    display: block!important;
}
.pc{
    display: none!important;
}

@media screen and (min-width: 751px) {
    .sp{
    display: none!important;
    }
    .pc{
    display: block!important;
    }
}


/* PC表示で電話番号リンクを無効 */
@media screen and (min-width: 751px){
    a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    }
}


/* 表示範囲に合わせて言語関係なく改行 */
p{
    word-break: break-all;
}


/*-------------------------------------------------------------------------------------
共通パーツ
----------------------------------------------------------------------------------------*/
    /*
    header(単位px)
    --------------------------------------------------------*/
    #header{
        box-shadow: 0px 3px 6px rgba(0,0,0,0.08);
        height: 10rem;
    }
    .headerIn{
        max-width: 1280px;
        margin: 0 auto;
    }
    #header .headerIn.flex{
        justify-content: space-between;
    }
    @media screen and (min-width: 751px){
        #header{
            background: var(--white-color);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 8rem;
        }

    }
    
    
    /* logo */
    .logo {
            width: 35rem;
            padding: 0.8rem;
        }
    .logo a{
        display: block;
    }
    @media screen and (min-width: 751px){
        .logo {
            width: 26.9rem;
            padding: 0.8rem;
        }
    }

    .headerRight{
        display: flex;
        align-items: center;
        /* margin-right: calc(50% - 50vw); */
    }
    .header_telBtn{
        margin-right: 2.4rem;
        width: 34.8rem;
    }
    .header_cvBtn a{
        position: relative;
        display: block;
        width: 28rem;
        height: 100%;
        padding: 2.3rem 6rem 2.3rem 9.4rem;
        background: rgb(240, 157, 106);
        background: linear-gradient(180deg, rgba(240, 157, 106, 1) 0%, rgba(204, 92, 21, 1) 50%, rgba(204, 92, 21, 1) 100%);
        color: var(--white-color);
        font-family: "Noto Serif JP", serif;
        font-size: 2rem;
        font-weight: 700;
        -moz-text-shadow: 0px 0px 2px rgba(133, 60, 14, 0.8);
        -webkit-text-shadow: 0px 0px 2px rgba(133, 60, 14, 0.8);
        -ms-text-shadow: 0px 0px 2px rgba(133, 60, 14, 0.8);
        text-shadow: 0px 0px 2px rgba(133, 60, 14, 0.8);
        letter-spacing: 0.06em;
    }
    .header_cvBtn a::before{
        position: absolute;
        content: "";
        top: 50%;
        left: 5rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 3.2rem;
        height: 3.2rem;
        background: url(../img/searchIcon.png) no-repeat;
        background-size: contain;
        transition: all .3s;
    }
    .header_cvBtn a:hover{
        opacity: 0.9;
    }
    .header_btn{
        display: none!important;
    }

    /*  スマホ非表示*/
    @media screen and (min-width: 751px) {
        .header_btn{
            display: block!important;
        }
    }

    
  
    /*
    グローバルナビゲーション
    --------------------------------------------------------*/ 
    .gnav_list li{
        line-height: 1.5;
    }
    .gnav_list li + li{
        margin-left: 4rem;
    }
    .gnav_list li a{
        font-size: 1.8rem;
    }

    @media screen and (max-width: 750px) {
        .gnav {
            visibility: hidden;
            /* display: none; */
            position: fixed;
            z-index: 101;
            top: 0;
            left: 0;
            text-align: center;
            width: 100%;
            height: 100vh;
            background:rgba(255,255,255,.94);
            opacity: 0;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }
        .gnav.active {
            visibility: visible;
            opacity: 1;
        }
        .gnav_list.flex{
            display: block;
        }
        .gnav_list{
            padding: 8rem 2rem;
        }
        .gnav_list li + li {
            margin-left: 0;
        }
        .gnav_list li a{
            display: block;
            padding: 1.6rem 2.4rem 1.6rem;
            text-align: center;
        }
    }


    /*
    ハンバーガーメニュー
    --------------------------------------------------------*/  
    .hamburger_btn {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        width: 5.5rem;
        height: 5.5rem;
        margin: 0 0 0 auto;
        background-color: var(--main-color);
        text-align: center;
        cursor: pointer;
    }
    .hamburger_btn span{
        display: block;
        position: relative;
        left: 50%;
        margin-left: -12px;
        width: 25px;
        border-bottom: 2px solid #fff;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    .hamburger_btn span:nth-child(1) {
        top: 1.8rem;
    }
    .hamburger_btn span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .hamburger_btn span:nth-child(3) {
        top: 3.4rem;
    }
    /* active時のMENUボタン */
    .hamburger_btn.active span:nth-child(1) {
        top: 48%;
        left: 50%;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .hamburger_btn.active span:nth-child(2){
        opacity: 0;
    }
    .hamburger_btn.active span:nth-child(3) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .hamburger_btn.active span:nth-child(3){
        top: 40%;
    }



    /*
    fixed_cv
    --------------------------------------------------------*/
    .fixed_cv{
        display: none;
        position: fixed;
        z-index: 1000;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(8,30,7,.94);
    }
    .fixed_cvBtn_wrap{
        max-width: 880px;
        margin: 0 auto;
    }
    .fixed_cvBtn{
        width: 50%;
    }
    .fixed_cvBtn a{
        position: relative;
        display: block;
        padding: 2.4rem 5.6rem 2.4rem 10rem;
        text-align: center;
        color: #fff;
        font-family: "Noto Serif JP", serif;
        font-weight: 700;
        letter-spacing: 0.06em;
        font-size: 4rem;
        text-shadow: 0px 0px 2px rgba(133, 60, 14, 0.8);
    }
    .fixed_cvBtn01{
        background: linear-gradient(180deg, rgba(62, 164, 60, 1) 0%, rgba(42, 107, 41, 1) 50%, rgba(42, 107, 41, 1) 100%);
    }
    .fixed_cvBtn02{
        background: var(--cv-color);
    }
    .fixed_cvBtn01 a::before,
    .fixed_cvBtn02 a::before{
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transition: all .3s;
    }
    .fixed_cvBtn01 a::before{
        left: 6rem;
        width: 6.4rem;
        height: 4.3rem;
        background: url(../img/freedialIcon.svg) no-repeat;
        background-size: contain;
    }
    .fixed_cvBtn02 a::before{
        left: 4rem;
        width: 4.8rem;
        height: 4.8rem;
        background: url(../img/searchIcon.png) no-repeat;
        background-size: contain;
    }
    @media screen and (min-width: 751px) {
        .fixed_cvBtn a {
            padding: 1.6rem 5.6rem 1.6rem 10rem;
            font-size: 2.4rem;
        }
        .fixed_cvBtn01 a::before{
            left: 13.6rem;
            width: 4.5rem;
            height: 3.2rem;
        }
        .fixed_cvBtn02 a::before{
            left: 13rem;
            width: 3.2rem;
            height: 3.2rem;
        }
    }
    /*
    pageTop_btn
    --------------------------------------------------------*/
    #pageTop_btn{
        position: fixed;
        z-index: 1010;
        right: 2rem;
        bottom: 2rem;
    }
    #pageTop_btn a{
        position: relative;
        display: block;
        width: 9.6rem;
        height: 9.6rem;
        background-color: var(--green-color);
        background-color: var(--sub-color);
        border: 2px solid #fff;
        border-radius: 50%;
    }
    #pageTop_btn a img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 40%;
    }
    @media screen and (min-width: 751px) {
        #pageTop_btn a{

            /* pc */
            width: 6.4rem;
            height: 6.4rem;
        }
    }

    /*
    footer(単位px)
    --------------------------------------------------------*/
    #footer{
    background: var(--text-color);
    text-align: center;
    line-height: 1;
    color: var(--white-color);
    }
    #footer .footerIn{
    
    padding: 16px 12px;
    }
    @media screen and (min-width: 751px) {
        #footer .footerIn{
            padding: 2.4rem 1.2rem;
        }
    }


    /* footerNav */
    .footer_navList.flex{
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
    }
    .footer_navList li{
        line-height: 1;
    }
    .footer_navList li + li{
        position: relative;
        padding-left: 31px;
    }
    .footer_navList li + li::before{
        position: absolute;
        top: 1px;
        left: 15px;
        content: '';
        background: #fff;
        width: 1px;
        height: 100%;
    }
    .footer_navList li a{
        font-size: 14px;
       
        color: #fff;
    }
    .footer_navList li a:hover{
        text-decoration: underline;
    }
    @media screen and (min-width: 751px) {
        .footer_navList li a{
            font-size: 16px;
        }
    }

    /* #copyRight */
    #copyRight{
    margin-bottom: 0;
    text-align: center;
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    }
    @media screen and (min-width: 751px) {
        #copyRight{
            font-size: 1.4rem;
        
        }
    }












