@charset "utf-8";

.card-box {
    display: inline-flex;
    justify-content: space-between;
}
.img-box {
    width: 40%;
}
.text-box {
    width: 57%;
}

.select-type {
    background-color: #f1f1f1;
    padding: 3% 4%;
}
.select-type.item-check {
    position: relative;
}
.select-type.item-check::after {
    content: '';
    border-style: solid;
    border-width: 20px 40px 0 40px;
    border-color: #f1f1f1 transparent transparent transparent;
    bottom: -1.1rem;
    height: 0;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 0;
    z-index: -1;
}
.select-type .list-head,
.maker-item-toc .list-head {
    display: block;
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.select-type .list-head {
    text-align: center;
}
.select-type .btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.select-type .btn-list.col-3::after {
    content: '';
    display: block;
    width: 32%;
}
.select-type .btn-list.col-4::after {
    content: '';
    display: block;
    width: 24%;
}
.select-type .item {
    margin-bottom: .6rem;
}
.select-type .col-1 .item {
    margin-left: auto;
    margin-right: auto;
    width: 96%;
}
.select-type .col-2 .item {
    width: 49%;
}
.select-type .col-3 .item {
    width: 32%;
}
.select-type .col-4 .item {
    width: 24%;
}
.select-type .item a {
    align-items: center;
    background-color: #fff;
    border: 2px solid #ef8103;
    border-radius: 3px;
    color: #222;
    display: inline-flex;
    font-size: 1.2em;
    font-weight: bold;
    padding: .6rem .4rem .5rem .8rem;
    position: relative;
    text-align: center;
    width: 100%;
}
.select-type.item-arrow a::after {
    content: '';
    background-color: #ef8103;
    height: 0.6rem;
    right: 0.3rem;
    width: 0.6rem;
}
.select-type.item-arrow a:hover::after {
    background-color: #fff;
}
.select-type.item-check a::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 3px solid #ef8103;
    border-bottom: 3px solid #ef8103;
    left: .65rem;
    top: 47%;
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    z-index: 1;
}

.select-type .item a:hover {
    background-color: #ef8103;
    border-color: #f99119;
    color: #fff;
    text-decoration: none;
}
.select-type .item.disabled a {
    background-color: #d9d9d9;
    border: none;
    color: #a9a9a9;
    pointer-events: none;
}
.select-type .item.disabled .btn-arrow::after,
.select-type .item.disabled:hover .btn-arrow::after {
    background-color: #a9a9a9;
}
.select-type .item.is-active a {
    background-color: #ef8103;
    border-color: #f99119;
    color: #fff;
    text-decoration: none;
}
.select-type .item a:hover::after,
.select-type .item.is-active a::after {
    border-color: #fff;
}


/* SP用 */
@media screen and (max-width: 560px) {

.select-type .item a {
    font-size: .9em!important;
}
.select-type {
    padding: 3% 4% 1%!important;
}

}


/* PC用 */
@media screen and (min-width: 561px) {
}

/* ipad用 */
@media screen and (min-width: 600px) and (max-width: 980px) {
}
