/*---------------------
　　　　共通
---------------------*/
.bg-cream {
    background: #fcfbf6;
}

.pc-none {
    display: block;
}

.sp-none {
    display: none;
}


#contents {
    position: relative;
    line-height: 1;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#contents img {
    width: 100%;
}

#contents a,
#contents a:hover {
    text-decoration: none;
}

#mv {
    position: relative;
    width: 100%;
    padding: 42% 0 0;
}

#mv img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.section {
    padding: 30px 0 10px;
}

.title-bold {
    position: absolute;
    font-family: "Sawarabi Mincho";
    top: 8%;
    left: 4%;
    font-size: 2.5vmin;
}

.title-big-bold {
    position: absolute;
    font-family: "Sawarabi Mincho";
    font-size: 7vmin;
    line-height: 1.3;
    top: 20%;
    left: 4%;
}

.txt-about {
    text-align: center;
    font-family: "Sawarabi Mincho";
    font-size: 4.5vmin;
    padding: 0 0 15px;
}

#footer {
    background: none;
}

.note {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 14px;
    line-height: 24px;
}

@media print,
screen and (min-width: 767px) {
    .pc-none {
        display: none;
    }

    .sp-none {
        display: block;
    }

    #contents {
        width: 1024px;
        margin: 0 auto 40px;
    }

    #mv {
        padding: 0;
        height: 400px;
    }

    .section {
        padding: 50px 0 10px;
    }

    .title-bold {
        top: 9%;
        left: 5%;
        font-size: 26px;
    }

    .title-big-bold {
        font-size: 54px;
        line-height: 1.4;
        top: 21%;
        left: 5%;
    }

    .txt-about {
        font-size: 26px;
    }

    .note {
        text-align: right;
        padding: 20px 0;
    }
}

.recruit_index_menu {
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Sawarabi Mincho";
}

.recruit_index_menu li {
    margin-bottom: 30px;
    width: 31%;
    height: 80px;
    font-size: 18px;
    line-height: 1.5;
}

.recruit_index_menu a {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc', GradientType=0);
    padding: 20px 40px 20px 20px;
    height: calc(100% - 40px);
    color: inherit !important;
    box-shadow: 2px 2px 0 0 #ccc;
    transition: all .4s;
}

.recruit_index_menu a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -12px;
    background: url("../img/icon_index_menu_arrow.png") 0 0 no-repeat;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
}

.recruit_index_menu a:hover {
    text-decoration: none !important;
    transform: translate(2px, 2px);
    box-shadow: none;
}

@media only screen and (max-width: 767px) {
    .recruit_index_menu {
        flex-direction: column;
        gap:20px;
    }

    .recruit_index_menu li {
        width: 100%;
    }

    .recruit_index_menu a {
        height: 70px;
        text-decoration: none !important;
    }

}