@charset "utf-8";

/*-------------------------------------------------------------------------------------
変数
----------------------------------------------------------------------------------------*/
:root {
    --main-color: #7A4E23;
    --sub-color: ;
    --white-color: #fff;
    --gray-color: #ccc;
    --orange-color: #FF7D52;
    --green-color: #65B630;
    --blue-color: #4592E9;
    --cv-color: #DD401A;

    /* bg */
    --bg-yellow: #FFFBBC;
    --bg-orange: #FFCF62;
    --bg-blue: #E2F0FF;
    --bg-green: #E8F4E1;
}







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

html{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    font-size: 62.5%;
    font-weight: 400;
    letter-spacing: 0;
    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;
}


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

    /*
    layout
    --------------------------------------------------------*/
    .container{
        /* margin: 5.5rem auto 0; */
    }
    @media screen and (min-width: 751px) {
        .container{
            margin: 8rem auto 0;
        }
    }
  
    /*
    header
    --------------------------------------------------------*/
    #header{
        height: 5.5rem;
        background: #FFFAA4;
    }
    .headerIn{
        width: min(100%,1280px);
        height: 100%;
        margin: auto;
        padding: 12px;
    }
    .headerIn.flex{
        align-items: center;
        justify-content: space-between;
    }
    .headerRight{
        position: absolute;
        top: 0;
        right: 0;
        width: 11rem;
    }
    @media screen and (min-width: 751px) {
        #header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 8rem;
        }
        .headerIn{
            padding: 7px 16px;
        }
        .headerRight{
            position: sticky;
            width: auto;
        }
    }
    
    
    /* logo */
    .logo {
        width: 10rem;
        height: 100%;
        line-height: 1;
    }

    .headerBtn_wrap{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .headerTel {
     width: 5.5rem;
    }
     .headerCta {
     width: 5.5rem;
    }
    
    @media screen and (min-width: 751px){
        .logo {
            width: 15.2rem;
        }
        .headerBtn_wrap{
            gap: 4.8rem;
        }
        .headerTel {
            width: 21.9rem;
        }
        .headerCta {
            width: 21rem;
        }
    }
  
    /*
    グローバルナビゲーション
    --------------------------------------------------------*/ 
    .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{
        display: none;
        position: fixed;
        z-index: 1000;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255,207,98,0.94);
    }
    .fixed_cvBtn{
        width: 100%;
    }
    .fixed_cvBtn a{
        display: block;
        text-align: center;
        color: var(--white-color);
        font-weight: 700;
        background: transparent;
    }
    .fixed_cvBtn01{
        padding: 1.2rem 3.2rem;
    }

    @media screen and (min-width: 751px) {
        .fixed_cv{
            display: none!important;
        }
    }
    /*
    pageTop_btn
    --------------------------------------------------------*/
    #pageTop_btn{
        position: fixed;
        z-index: 1010;
        right: 1rem;
        bottom: 1rem;
    }
    #pageTop_btn a{
        position: relative;
        display: block;
        width: 4.8rem;
        height: 4.8rem;
        background-color: var(--main-color);
        border: 2px solid var(--white-color);
        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{
            right: 2rem;
            bottom: 2rem;
        }
        #pageTop_btn a{
            width: 6.4rem;
            height: 6.4rem;
        }
    }

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


    /* footerNav */
    .footer_navList.flex{
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
    }
    .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;
    }
    .company-txt{
        margin-bottom: 1rem;
        text-align: center;
        font-size: 1.1rem;
        color: var(--white-color);
    }
    @media screen and (min-width: 751px) {
        .footer_navList li a{
            font-size: 1.6rem;
        }
    }

    /* #copyRight */
    #copyRight{
    margin-bottom: 0;
    }
    #copyRight a{
        display: block;
        line-height: 1.35;
        text-align: center;
        font-size: 0.9rem;
        color: var(--white-color);
    }
    #copyRight a:hover{
        text-decoration: underline;
    }
    @media screen and (min-width: 751px) {
        #copyRight{
            font-size: 1.1rem;
        }
    }
















