@charset "utf-8";

/*---------------------------------
detail
---------------------------------*/
.detail {
    display: flex;
    justify-content: space-between;
}
.detail_img {
    position: relative;
    left: -140px;
}
.detail_img img {
    width: 680px;
    max-width: unset;
    height: auto;
}
.detail_img .num {
    position: absolute;
    bottom: -40px;
    right: 10px;
    display: block;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    font-size: 7.0rem;
    color: #f39800;
}
.detail_info {
    width: 440px;
}
.detail_info h2 {
    margin-bottom: 30px;
    font-size: 3.0rem;
    font-weight: 700;
}
.detail_info h3 {
    font-size: 1.3rem;
    line-height: 2.7;
    border-bottom: solid 1px #333;
}
.data_item {
    display: flex;
    justify-content: flex-start;
}
.data dl {
    padding: 20px 0;
}
.data_item {
    margin-bottom: 10px;
}
.data_item dt {
    margin-right: 20px;
    font-weight: 700;
}
.category .category_item {
    display: inline-block;
    padding: 4px 20px;
    margin-right: 20px;
    margin-top: 20px;
    font-family: 'ivypresto-headline';
    font-weight: 600;
    color: #fff;
    font-size: 2.2rem;
    background-color: #333;
}
.img_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
}
.img_list li {
    width: calc((1100px / 5) - 20px);
    margin: 10px;
}
.img_list li a {
    display: block;
    width: 200px;
    height: 115px;
    overflow: hidden;
}
#detail .btn {
    width: 365px;
    margin: 70px auto 0;
    color: #fff;
    background-color: #333;
    border: none;
}
#detail .btn:hover {
    background-color: #f39800;
    border: none;
}
@media screen and (max-width:1024px) {
    .detail {
        flex-direction: column;
    }
    .detail_img {
        left: -2%;
    }
    .detail_img img {
        width: 90%;
    }
    .detail_info {
        width: 100%;
        margin-top: 30px;
    }
    .detail_info h2 {
        margin-bottom: 20px;
    }
    .img_list li {
        width: auto;
        margin: 1% auto;
    }
    .img_list li a {
        width: 150px;
        height: 85px;
    }
}
