@charset "utf-8";

.img-select-text {
    display: block;
    height: auto;
    margin: auto;
    margin-bottom: 5px;
    text-align: center;
    width: 55%;
}
.t-select-item {
    display: flex;
    justify-content: space-between;
}
.t-select-item li {
    flex-basis: 48.3%;
}
.t-select-item.item-col-3 li {
    flex-basis: 32%;
}
.t-select-item a {
    border: 2px solid #c0c0c0;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.t-select-item a:hover {
    border-color: #ff6600;
}

.t-select-arrow {
    clear: both;
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2rem 7rem 0 7rem;
    border-color: #3eb3d9 transparent transparent transparent;
}
/* PC用 */
@media screen and (min-width: 561px){
}
}

/* SP用 */
@media screen and (max-width: 560px) {
    .t-select-item.item-col-3 {
        flex-wrap: wrap;
    }
    .t-select-item.item-col-3 li {
        display: inline-flex;
        flex-basis: 100%;
        align-items: flex-start;
    }
    .t-select-item.item-col-3 li:not(:last-of-type) {
        margin-bottom: 15px;
    }
    .t-select-item.item-col-3 a {
        margin: 0 auto 0 0;
        width: 38%;
    }
    .t-select-item.item-col-3 .text-box {
        width: 59%;
    }
    .t-select-item.item-col-3 .text-box p {
        font-size: .82rem !important;
    }
    
    .t-select-arrow {
    padding-bottom: 3%;
}
    
}