@charset "UTF-8";

/* メインビジュアル
============================================ */
.main-visual{
    width: 100%;
    height: 640px;
    background-image: url("../images/img_mv_pc.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

/* 各項目
============================================ */
.main_wrapper {
    width: 100%;
    background-color: #F5F5F5;
}
.menu_wrap {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    margin-bottom: 130px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menu_outer {
    width: 48%;
    background-color: #FFFFFF;
    margin-bottom: 50px;
    -webkit-box-shadow: 6px 6px 10px 0px #DCDCDC;
    box-shadow: 3px 3px 12px 0px #BBBBBB;
}
.menu_mv-box {
    width: 100%;
}
.menu_mv-box img {
    width: 100%;
    height: auto;
}
.menu_text-box {
    width: 83%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
    margin-bottom: 35px;
}
.menu_main-title {
    font-size: 36px;
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: bold;
    line-height: 1.0;
    margin-bottom: 8px;
}
.menu_sub-title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 0.2em;
    margin-bottom: 35px;
}
.menu_flex_1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
p.menu_lead {
    width: 47%;
}
/* ボタン
-------------------------------------------------- */
a.btn_gray_1 {
    display: block;
    width: 180px;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #4A4F54;
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: bold;
    font-size: 12px;
    line-height: 50px;
    color: #FFFFFF;
    border: solid 1px #4A4F54;
    border-radius: 5px;
    transition : all 0.4s ease 0s;
    position: relative;
}
a.btn_gray_1:after {
    content: "";
    display: block;
    width: 24px;
    height: 15px;
    background:url("../../common/images/arrow_btn_1-w.svg") no-repeat;
    position: absolute;
    right: 15px;     
    top: 50%;   
    transform: translate(0,-50%)
}
/* ボタン over
-------------------------------------------------- */
a.btn_gray_1:hover {
    background-color: #FFFFFF;
    color: #4A4F54;
    transition : all 0.4s ease 0s;
}
a.btn_gray_1:hover:after {
    background:url("../../common/images/arrow_btn_1-g.svg") no-repeat;
}
/* ボタン over 子要素の画像拡大
-------------------------------------------------- */
.menu_mv-box {
    overflow: hidden;
}
/*縮小動作*/
.menu_mv-box img{
    transition-duration: 0.3s;
}
/*拡大動作*/
.menu_outer:hover .menu_mv-box img {
    transform: scale(1.2);
    transition-duration: 0.3s;
}


/* ============================================

　スマートフォン設定

============================================ */

@media only screen and (max-width: 767px) {
    
    /* メインビジュアル
    ============================================ */
    .main-visual{
        height: 280px;
        background-image: url("../images/img_mv_sp.jpg");
    }

    /* 各項目
    ============================================ */
    .menu_wrap {
        padding-left: 25px;
        padding-right: 25px;
        margin-top: 50px;
        margin-bottom: 50px;
        display: block;
    }
    .menu_outer {
        width: 100%;
        margin-bottom: 25px;
        overflow: hidden;
    }
    .menu_mv-box {
        width: 100%;
    }
    .menu_text-box {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .menu_main-title {
        font-size: 24px;
        margin-bottom: 4px;
    }
    .menu_sub-title {
        font-size: 10px;
        margin-bottom: 18px;
    }
    .menu_flex_1 {
        width: 100%;
        display: block;
    }
    p.menu_lead {
        width: 100%;
        margin-bottom: 15px;
        font-size: 13px;
    }
    /* ボタン
    -------------------------------------------------- */
    a.btn_gray_1 {
        display: block;
        width: 100%;
        height: 40px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: #4A4F54;
        font-family: Arial, Helvetica, "sans-serif";
        font-weight: bold;
        font-size: 12px;
        line-height: 40px;
        color: #FFFFFF;
        border: solid 1px #4A4F54;
        border-radius: 5px;
        transition : all 0.4s ease 0s;
        position: relative;
    }
    a.btn_gray_1:after {
        content: "";
        display: block;
        width: 24px;
        height: 15px;
        background:url("../../common/images/arrow_btn_1-w.svg") no-repeat;
        position: absolute;
        right: 15px;     
        top: 50%;   
        transform: translate(0,-50%)
    }
    /* ボタン over
    -------------------------------------------------- */
    a.btn_gray_1:hover {
        background-color: #FFFFFF;
        color: #4A4F54;
        transition : all 0.4s ease 0s;
    }
    a.btn_gray_1:hover:after {
        background:url("../../common/images/arrow_btn_1-g.svg") no-repeat;
    }
    /* ボタン over 子要素の画像拡大
    -------------------------------------------------- */
    .menu_mv-box {
        overflow: hidden;
    }
    /*縮小動作*/
    .menu_mv-box img{
        transition-duration: 0.3s;
    }
    /*拡大動作*/
    .menu_outer:hover .menu_mv-box img {
        transform: scale(1.2);
        transition-duration: 0.3s;
    }

} 