@charset "UTF-8";
/* CSS Document */

.a-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.a-menu li {
    width: calc((100% - 70px) / 3);
}
.a-menu li a {
    display: block;
    font-weight: 700;
    color: #EB4800;
    background: #FFEFDE;
    padding: 1em;
    border-radius: 8px;
    position: relative;
}
.a-menu li a:after {
    content: "";
    background: url("../../cmn/img/icon01.svg") no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}
.a-menu li a:hover {
    background: #EB4800;
    color: #FFF;
}

.h2_basic.about:before {
    content: "";
    background: url("../img/ico_about.svg") no-repeat center;
    background-size: contain;
    width: 33px;
    height: 34px;
    display: block;
    margin:  0 auto 0.6em;
}

.h2_basic.access:before {
    content: "";
    background: url("../img/ico_access.svg") no-repeat center;
    background-size: contain;
    width: 35px;
    height: 35px;
    display: block;
    margin:  0 auto 0.6em;
}

.table1 .kurayoshi,
.table1 .tottori{
    padding-left: 140px;
    position: relative;
    margin-bottom: 10px;
}
.table1 .kurayoshi:before {
    content: "本店";
    width: 130px;
    border-radius: 5px;
    background: #0068b4;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.table1 .tottori:before {
    content: "鳥取支店";
    width: 130px;
    border-radius: 5px;
    background: #0068b4;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 780px) {
    .a-menu li {
        width: calc((100% - 10px) / 2);
        margin-bottom: 10px;
    }
}