@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  equip.css
// style info :  スタイル指定
=================================================================== */
#equip {
    background: #eee8e4;
/*    margin: 100px 0 0;*/
    padding: 100px 0;
	margin-bottom: 50px;
}
#equip h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}

#equip h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #7f7269;
}

#equip ul {
    display: flex;
    flex-wrap: wrap;
}
#equip ul li {
    width: 47.5%;
    margin: 0 1.25% 20px;
}
#equip ul li a {
    display: block;
    padding: 30px 15px;
    font-size: 18px;
    color: #7d554d;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 5px;
    letter-spacing: .05em;
    transition: .3s all ease-in-out;
}
#equip ul li a:hover {
    box-shadow: 0 0 0 rgba(0,0,0,.1);
    transform: scale(.97);
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    #equip {
        margin: 50px 0 0;
        padding: 50px 0;
    }
    #equip h2 + h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
#equip ul li {
    width: 90%;
}
}
@media screen and (max-width: 420px) {
}
