@charset "utf-8";

/*-------------------------------------------------------------------------------------
変数
----------------------------------------------------------------------------------------*/
:root {
    --main-color: #007B60;
    --white-color: #fff;
    --gray-color: #ccc;
    --green-color: #DCF0DF;
    --text-color: #2D2D2D;

    --bg-gray-color: #f9f9f9;
    --bg-green-color: #F3FAF4;

    --cv-mail-color: #9EC25E;
    --cv-line-color: #06C755;
}







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

html{
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-feature-settings: "palt";
    font-size: 62.5%;
    font-weight: 400;
    letter-spacing: 0;
    text-size-adjust: 100%;
    color: var(--text-color);
}
body{
    line-height: 1.8;
    font-size: 1.6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
}


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

/* js用 */
.js_fixFade {
    transition: all 0.5s;
    bottom: -100%;
}


/* 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;
}


/*-------------------------------------------------------------------------------------
共通パーツ
----------------------------------------------------------------------------------------*/

    /*
    layout
    --------------------------------------------------------*/
    .container{
        margin: 55px auto 0;
        /* overflow: hidden; */
    }
    @media screen and (min-width: 959px) {
        .container{
            margin: 72px auto 0;
        }
    }
  
    /*
    header
    --------------------------------------------------------*/
    #header{
        height: 55px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        /* box-shadow: 0px 3px 6px rgba(0,0,0,0.08); */
        background: var(--white-color);
        /* border-bottom: 1px solid var(--gray-color); */
    }
    .headerIn{
        width: min(100%,1280px);
        height: 100%;
        margin: auto;
    }
    .headerIn.flex{
        align-items: center;
        justify-content: space-between;
    }


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

    .header_telBtn{
        width: 55px;
    }
    .header_cvBtn{
        width: 55px;
    }
    


    /* logo */
    .logo {
        width: 130px;
        height: 100%;
        margin-left: 10px;
        line-height: 1;
    }
    @media screen and (min-width: 959px) {
        #header{
            height: 72px;
        }
        .headerIn{
            padding: 12px;
        }
        .header_cv_wrap{
            gap: 12px;
        }
        .header_cv_wrap a{
            display: block;
        }
        .header_telBtn{
            width: 176px;
        }
        .header_cvBtn{
            width: 205px;
        }

        .logo {
            width: 145px;
        }
    }
    
    


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

    @media screen and (max-width: 750px) {
        .gnav {
            visibility: hidden;
            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: .3s ease-in-out;
            -moz-transition: .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 var(--white-color);
        -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{
        position: fixed;
        z-index: 1000;
        left: 0;
        right: 0;
        background: rgba(253, 249, 235, 0.94);
    }
    .fixed_cv.visible {
        bottom: 0!important;
    }
    .fixed_cvBtn_wrap{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .fixed_cvBtn{
        width: calc(100% / 3);
    }
    .fixed_cvBtn a{
        display: block;
    }
    @media screen and (min-width: 751px) {
        .fixed_cv{
            display: none!important;
        }
    }



    /*
    pageTop_btn
    --------------------------------------------------------*/
    #pageTop_btn{
        position: fixed;
        z-index: 1010;
        right: 1rem;
    }
    #pageTop_btn.js_fixFade.visible {
        bottom: 56px;
    }
    #pageTop_btn a{
        position: relative;
        display: block;
        width: 48px;
        height: 48px;
        background-color: var(--main-color);
        border: 2px solid var(--white-color);
        border-radius: 50%;
    }
    #pageTop_btn a:hover img{
        opacity: 1;
    }
    #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{
            right: 20px;
        }
        #pageTop_btn.js_fixFade.visible {
            bottom: 20px;
        }
        #pageTop_btn a{
            width: 64px;
            height: 64px;
        }
    }

    /*
    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: 24px 12px;
        }
    }


    /* footerNav */
    .footer_navList.flex{
        justify-content: center;
        align-items: center;
        margin-bottom: 6px;
    }
    .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: var(--white-color);
        width: 1px;
        height: 100%;
    }
    .footer_navList li a{
        font-size: 14px;
        color: var(--white-color);
    }
    .footer_navList li a:hover{
        text-decoration: underline;
    }

    /* #copyRight */
    #copyRight{
    margin-bottom: 0;
    text-align: center;
    font-size: 12px;
    }
    
















