@charset "UTF-8";
#guide_pickup {
    padding: 4rem 0 6rem 0;
    background-color:#F7F5EF;
}
h2.guide-pickup-title {
    text-align: center;
}
.guide-pickup-list {
    display: flex;
    justify-content: center;
    background-color: #FFF;
    margin: 3rem auto 0 auto;
    padding: 3rem;
}
.guide-pickup-list article {
    width: 32%;
    margin: 0 0.7rem;
}
.guide-pickup-inner {
    margin: 0 auto;
    width: 960px;
    background: #fff;
}
.guide-pickup-list a.guide-pickup-list-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #333333;
    line-height: 1.2;
    font-size: 1.2rem;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    background-color:#F7F5EF;
}
.guide-pickup-list a.guide-pickup-list-item:hover {
    cursor: pointer;
    text-decoration: none;
    border-color: #E64D97;
    opacity: 0.8;
    box-shadow: 4px 4px 6px 1px rgba(0, 0, 0, 0.4);
}
a.guide-pickup-list-item .guide-img{
    width: 120px;
    height: 87px;
    object-fit: cover;
}
a.guide-pickup-list-item .guide-detail-area{
    padding: 1rem 0 1rem 1rem;
    width: 100%;
    align-self: flex-start;
}
a.guide-pickup-list-item .guide-detail-area .guide-text {
    font-size: 1.4rem;
}
a.guide-pickup-list-item .right-arrow {
    content: "";
    z-index: 1;
    top: 50%;
    margin-left: 2%;
    margin-right: 2%;
    width: 0;
    height: 0;
    border-left: 8px solid #e75096;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.guide-pickup-btn {
    padding-bottom: 3rem;
}
.guide-pickup-btn a{
    width: 292px;
}
@media screen and (max-width:640px) {
    .guide-pickup-list {
        display: block;
        width: 100%;
        padding: 2rem 0;
    }
    .guide-pickup-list article{
        width: 95%;
        margin-top: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .guide-pickup-inner {
        width: 95%;
    }
}