@charset "utf-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*=======================================
#index_menu
----------------------------------------*/
/*-----共通設定-----*/
#index_menu {
    position:relative;
    width:100%;
    min-height:calc(100vh - 61.8px);
    padding:2.6rem 0 0;
    margin:0 auto;
}
#index_menu .inner h2 {
    font-size:2.6rem;
    font-weight:bold;
    text-align:center;
    margin-bottom:2.6rem;
}
#index_menu .inner {
    width:100%;
    max-width:960px;
    padding:0 2.6rem;
    margin:0 auto;
}
#index_menu .inner ul.wrap_contents {
    width:100%;
    max-width: 640px;
    margin:6rem auto 0;    
}
#index_menu .inner ul.wrap_contents li{
    width:100%;
    margin:0 auto 20px;
    background: rgb(220,0,18);
background: linear-gradient(90deg, rgba(220,0,18,1) 0%, rgba(233,142,0,1) 100%);
    border-radius:4px; 
}
#index_menu .inner ul.wrap_contents li a{
    position: relative;
    display: block;
    width:100%;
    max-width: 960px;
    font-size: 16px;
    font-weight:bold;
    color:#fff;
    line-height:1.5;
    padding:1.6rem 4rem 1.6rem 1.6rem;
    margin:0 auto;   
}
#index_menu .inner ul.wrap_contents li a::after {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url(../../_common/img/btn_arrow01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 10px;
}


/*-----画面幅767px以下-----*/
@media only screen and (max-width:767px) {

    #index_menu .inner {
        padding:0 2%;
    }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width:375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width:320px) {
}

/*---------------------------------------
#index_menu
=======================================*/
