@charset "UTF-8";

/*2*/
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) , print { /*PC&TB*/
}

/*3*/
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) and ( max-width:1023px) { /*TB*/
}
@media screen and (min-width:1024px) , print { /*PC*/
}

/*TB*/
@media screen and (max-width:1023px) { /*TB&SP*/
}
@media screen and (min-width:1024px) , print { /*PC*/
}


/************************************************************/
/*   COMMON   */
/************************************************************/
/* LINK A */
.CMM_linkA_box{
    width: 100%; max-width: 240px;
    height: 56px;
    display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
    border: 1px solid #000;
    position: relative;
}
.CMM_linkA_box img{
    width: 94px;
}
svg.CMM_linkA_arr{
    position: absolute;
    top: 0; bottom: 0; right: 20px;
    margin: auto;
    width: 22px; height: 18px;
    transition: right 0.3s ease;
}
.CMM_linkA_box:hover{
    opacity: 1;
}
.CMM_linkA_box:hover svg.CMM_linkA_arr{
    right: 10px;
}

/* LINK B */
.CMM_linkB_box{
    width: 100%; max-width: 320px;
    height: 56px;
    display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
    border: 1px solid #fff;
    border-radius: 30px;
    position: relative;
}
.CMM_linkB_box img{
    width: 94px;
}
svg.CMM_linkB_arr{
    fill: #fff;
    position: absolute;
    top: 0; bottom: 0; right: 20px;
    margin: auto;
    width: 22px; height: 18px;
    transition: right 0.3s ease;
}
.CMM_linkB_box:hover{
    opacity: 1;
    background-color: rgba(0,0,0,0.7);
}
.CMM_linkB_box:hover svg.CMM_linkB_arr{
    right: 10px;
}

/************************************************************/
/*   HEADER, NAVI   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    #HD_overlay{
        width: 100%; height: 60px;
        position: fixed; z-index: 10;
        top: 0; left: 0;
        background-color: #9E9E9E;
        mix-blend-mode: multiply;
        opacity: 0;
        transition: 0.3s ease;
    }
    #HD{
        height: 60px;
        position: fixed; z-index: 10;
        top: 0; left: 0;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #HD_overlay{
        width: 100%; height: 100px;
        position: fixed; z-index: 10;
        top: 0; left: 0;
        background-color: #9E9E9E;
        mix-blend-mode: multiply;
        opacity: 0;
        transition: 0.3s ease;
    }
    #HD{
        height: 100px;
        position: fixed; z-index: 10;
        top: 0; left: 0;
    }
}
/* JS scroll */
#HD_overlay._scrl{
    opacity: 1;
}

/* HD_set */
@media screen and (max-width:767px) { /*SP*/
    .HD_set{
        width: 100%;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center;
    }
    .HD_logo{
        width: 45px;
    }
    .HD_logo h1{
        line-height: 1;
    }
    .HD_logo a{
        display: block;
    }
    .NAV_open{
        width: 36px; height: 24px;
        position: relative; z-index: 20;
    }
    .NAV_open:hover{
        cursor: pointer;
    }
    .NAV_open span{
        position: absolute;
        display: block;
        width: 100%; height: 3px;
        background-color: #fff;
        transition: all .4s;
    }
    .NAV_open span:nth-of-type(1){
        top: 0;
        animation: closeTrigger1 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open span:nth-of-type(2){
        top: 0; bottom: 0; margin: auto;
        opacity: 1;
    }
    .NAV_open span:nth-of-type(3){
        bottom: 0;
        animation: closeTrigger2 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open._is_active span:nth-of-type(1){
        animation: openTrigger1 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open._is_active span:nth-of-type(2){
        opacity: 0;
    }
    .NAV_open._is_active span:nth-of-type(3){
        animation: openTrigger2 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    @keyframes openTrigger1 {
        0% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(10.5px) rotate(0); }
        to { transform: translateY(10.5px) rotate(30deg); }
    }
    @keyframes openTrigger2 {
        0% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(-10.5px) rotate(0); }
        to { transform: translateY(-10.5px) rotate(-30deg)}
    }
    @keyframes closeTrigger1 {
        0% { transform: translateY(10.5px) rotate(30deg); }
        50% { transform: translateY(10.5px) rotate(0); }
        to { transform: translateY(0) rotate(0); }
    }
    @keyframes closeTrigger2 {
        0% { transform: translateY(-10.5px) rotate(-30deg); }
        50% { transform: translateY(-10.5px) rotate(0); }
        to { transform: translateY(0) rotate(0); }
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    .HD_set{
        width: 100%;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center;
    }
    .HD_logo{
        width: 210px;
    }
    .HD_logo h1{
        line-height: 1;
    }
    .HD_logo a{
        display: block;
    }
    .HD_logo a:hover{
        opacity: 1;
    }
    .NAV_open{
        width: 60px; height: 34px;
        position: relative; z-index: 20;
        opacity: 0;
    }
    .NAV_open:hover{
        cursor: pointer;
    }
    .NAV_open span{
        position: absolute;
        display: block;
        width: 100%; height: 2px;
        background-color: #fff;
        transition: all .4s;
    }
    .NAV_open span:nth-of-type(1){
        top: 0;
        animation: closeTrigger1 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open span:nth-of-type(2){
        top: 0; bottom: 0; margin: auto;
        opacity: 1;
    }
    .NAV_open span:nth-of-type(3){
        bottom: 0;
        animation: closeTrigger2 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open._is_active span:nth-of-type(1){
        animation: openTrigger1 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    .NAV_open._is_active span:nth-of-type(2){
        opacity: 0;
    }
    .NAV_open._is_active span:nth-of-type(3){
        animation: openTrigger2 .6s cubic-bezier(.445,.05,.55,.95) forwards;
    }
    @keyframes openTrigger1 {
        0% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(16px) rotate(0); }
        to { transform: translateY(16px) rotate(30deg); }
    }
    @keyframes openTrigger2 {
        0% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(-16px) rotate(0); }
        to { transform: translateY(-16px) rotate(-30deg)}
    }
    @keyframes closeTrigger1 {
        0% { transform: translateY(16px) rotate(30deg); }
        50% { transform: translateY(16px) rotate(0); }
        to { transform: translateY(0) rotate(0); }
    }
    @keyframes closeTrigger2 {
        0% { transform: translateY(-16px) rotate(-30deg); }
        50% { transform: translateY(-16px) rotate(0); }
        to { transform: translateY(0) rotate(0); }
    }
}

/* NAV_set */
@media screen and (max-width:767px) { /*SP*/
    #NAV{
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        position: fixed; z-index: 15;
        top: 0; left: 0;
        width: 100%; height: 100%;
        padding: 60px 0 40px;
        background-color: rgba(60,107,50,0.99);
        visibility: hidden; opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    #NAV._is_open{
        visibility: visible; opacity: 1;
    }
    .NAV_set{
        width: 100%;
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
        flex-direction: column;
        overflow: hidden;
    }
    .NAV_box_L{
        width: 60px;
        margin-bottom: 6vh;
    }
    .NAV_logo{
        width: 100%;
        display: block;
    }
    .NAV_sns_set_pc{
        display: none;
    }
    .NAV_sns_box{
        width: 30px;
        display: block;
        margin: 0 15px;
    }
    .NAV_box_R{
        margin-bottom: 10vh;
        display: inline-flex; flex-wrap: nowrap; justify-content: center; align-items: flex-start;
        flex-direction: column;
        opacity: 0;
        transform: translateX(200px);
        transition: transform 0.3s ease, opacity 0.1s ease;
    }
    .NAV_navi{
        display: inline-block;
        margin-bottom: 30px;
        font-size: 1.6rem; font-weight: bold; color: #fff; line-height: 1;
    }
    .NAV_navi:last-of-type{
        margin-bottom: 0;
    }
    .NAV_navi svg{
        fill: #fff;
        display: block;
        height: 32px;
        margin-bottom: 10px;
    }
    .NAV_sns_set_sp{
        width: 100%;
        display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #NAV{
        position: fixed; z-index: 15;
        top: 0; left: 0;
        width: 100%; height: 100%;
        display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
        flex-direction: column;
        background-color: rgba(60,107,50,0.99);
        visibility: hidden; opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }
    #NAV._is_open{
        visibility: visible; opacity: 1;
    }
    .NAV_set{
        width: 100%; max-width: 650px;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start;
    }
    .NAV_box_L{
        width: 200px;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center;
        flex-direction: column;
    }
    .NAV_logo{
        width: 100%;
        margin-bottom: 90px;
        display: block;
    }
    .NAV_sns_set_pc{
        width: 100%;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center;
    }
    .NAV_sns_box{
        width: 45px;
        display: block;
    }
    .NAV_box_R{
        width: 335px;
        opacity: 0;
        transform: translateX(200px);
        transition: transform 0.3s ease, opacity 0.1s ease;
    }
    .NAV_navi{
        display: inline-block;
        margin-bottom: 40px;
        font-size: 1.6rem; font-weight: bold; color: #fff; line-height: 1;
    }
    .NAV_navi:last-of-type{
        margin-bottom: 0;
    }
    .NAV_navi svg{
        fill: #fff;
        display: block;
        height: 50px;
        margin-bottom: 20px;
    }
    .NAV_sns_set_sp{
        display: none;
    }
}
/* JS scroll none */
._is_FV_fixed{
    overflow: hidden;
}
#NAV._is_open .NAV_box_R{
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
}

/************************************************************/
/*   FOOTER   */
/************************************************************/
@media screen and (max-width:1023px) { /*TB&SP*/
    #FT{
        background-color: #3C6B32;
        padding: 50px 0 100px;
    }
    .FT_set{
        width: 100%;
        margin-bottom: 70px;
        display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
        flex-direction: column;
    }
    .FT_box_L{
        width: 100%;
        margin-bottom: 50px;
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
        flex-direction: column;
    }
    .FT_logo{
        width: 70px;
        margin-bottom: 30px;
    }
    .FT_sns_set{
        display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
    }
    .FT_sns_box{
        width: 34px;
        display: block;
        margin-left: 30px;
    }
    .FT_sns_box:first-of-type{
        margin-left: 0;
    }
    .FT_box_R{
        display: inline-block;
    }
    .FT_navi{
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
        margin-bottom: 30px;
        font-size: min(4.3vw, 1.6rem);
        font-weight: bold; color: #fff; line-height: 1;
    }
    .FT_navi svg{
        fill: #fff;
        margin-right: 10px;
        height: 20px;
    }
    .FT_copylight{
        font-size: 1.2rem; color: #fff;
    }
}
@media screen and (min-width:1024px) , print { /*PC*/
    #FT{
        background-color: #3C6B32;
        padding: 60px 0 150px;
    }
    .FT_set{
        width: 100%; max-width: 1080px;
        margin-bottom: 220px;
        display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start;
    }
    .FT_box_L{
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: flex-start;
    }
    .FT_logo{
        width: 70px;
    }
    .FT_sns_set{
        padding: 0 0 0 40px;
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
    }
    .FT_sns_box{
        width: 34px;
        display: block;
        margin-left: 30px;
    }
    .FT_box_R{
        padding: 10px 100px 0 0;
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: flex-start;
        flex-direction: column;
    }
    .FT_navi{
        display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
        margin-bottom: 40px;
        font-size: 1.6rem; font-weight: bold; color: #fff; line-height: 1;
    }
    .FT_navi svg{
        fill: #fff;
        margin-right: 10px;
        height: 20px;
    }
    .FT_copylight{
        font-size: 1.4rem; color: #fff;
    }
}

/************************************************************/
/*   LOW   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    #KV{
        width: 100%;
        aspect-ratio: 375 / 410;
    }
}
@media screen and (min-width:768px) and ( max-width:1023px) { /*TB*/
    #KV{
        width: 100%;
        height: 40vh;
    }
}
@media screen and (min-width:1024px) , print { /*PC*/
    #KV{
        width: 100%;
        height: 60vh; max-height: 670px;
    }
}

@media screen and (max-width:767px) { /*SP*/
    .KV_company{
        background-image: url(/company/img/kv.jpg);
        background-repeat: no-repeat;
        background-position: top left 60%;
        background-size: auto 120%;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    .KV_company{
        background-image: url(/company/img/kv.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}
.KV_about{
    background-image: url(/about/img/kv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.KV_product{
    background-image: url(/product/img/kv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/************************************************************/
/*   外部サイトリンク（EC）   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .EC_wrap{
        width: 100%;
        text-align: center;
        margin: 0 0 60px;
    }
    .EC_tx01{
        font-size: 2.2rem; font-weight: bold;
        line-height: 40px;
    }
    .EC_set{
        width: 100%;
        margin: 45px 0 30px;
        display: grid;
        justify-items: center;
        grid-gap: 30px;
    }
    .EC_box{
        width: 100%;
        max-width: 250px;
    }
    .EC_ex_link{
        width: 100%;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid;
        font-size: 2.3rem; font-weight: bold;
        position: relative;
    }
    svg.EC_ex_arr{
        position: absolute;
        top: 0; bottom: 0; right: 20px;
        margin: auto;
        width: 17px; height: 17px;
        transform: translate(0,0);
    }
    .EC_ex_link:hover{
        opacity: 1;
    }
    .EC_ex_link:hover svg.EC_ex_arr{
        transform: translate(5px,-3px);
    }
    /* さとふるバナー */
    .satofull_sp{
        display: block;
        width: 100%;
        display: grid;
        justify-content: center;
    }
    .satofull_sp a{
        width: 100%;
        max-width: 180px;
    }
    .satofull_pc{
        display: none;
    }
    .satofull_pc a{
        width: 100%;
        max-width: 468px;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    .EC_wrap{
        width: 100%; max-width: 840px;
        text-align: center;
        margin: 0 0 90px;
    }
    .EC_tx01{
        font-size: 3.2rem; font-weight: bold;
        line-height: 56px;
    }
    .EC_set{
        width: 100%;
        margin: 45px 0;
        display: flex; flex-wrap: nowrap;
        justify-content: center;
        grid-gap: 45px;
    }
    .EC_box{
        width: calc(100% / 3);
        max-width: 240px;
    }
    .EC_ex_link{
        width: 100%;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid;
        font-size: 2.3rem; font-weight: bold;
        position: relative;
    }
    svg.EC_ex_arr{
        position: absolute;
        top: 0; bottom: 0; right: 20px;
        margin: auto;
        width: 17px; height: 17px;
        transition: transform 0.3s ease;
        transform: translate(0,0);
    }
    .EC_ex_link:hover{
        opacity: 1;
    }
    .EC_ex_link:hover svg.EC_ex_arr{
        transform: translate(5px,-3px);
    }
    /* さとふるバナー */
    .satofull_sp{
        display: none;
    }
    .satofull_sp a{
        width: 100%;
        max-width: 180px;
    }
    .satofull_pc{
        display: block;
        width: 100%;
        display: grid;
        justify-content: center;
    }
    .satofull_pc a{
        width: 100%;
        max-width: 468px;
    }
}
/* 配色 */
._wht .EC_tx01{color: #fff;}
._blk .EC_tx01{color: #000;}
._wht .EC_ex_link{color: #fff; border-color: #fff;}
._blk .EC_ex_link{color: #000; border-color: #000;}