#modal-container {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
#modal-container > div {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
#modal-container > div > img {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 30px);
}
.dress_sec01{
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    box-sizing: border-box;
}
.dress_sec01 .category{
    padding: 40px 40px 30px 40px;
    background-color: #E3E3E3;
}
.dress_sec01 .category .ttl{
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
}
.dress_sec01 .category .ttl h3{
    display: inline;
    font-size: 14px;
    font-family: serif;
    letter-spacing: 1px;
    font-weight: bold;
    margin-right: 15px;
}
.dress_sec01 .category .ttl span{
    font-size: 12px;
}
.dress_sec01 .category .this{
    text-decoration: underline;
}
.dress_sec01 .category .category_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.dress_sec01 .category .category_list > a{
    display: inline-block;
    width: 19%;
    font-size: 10px;
    letter-spacing: 1px;
    text-align: center;
    padding: 2px 10px;
    box-sizing: border-box;
    background-color: #cdcdcd;
    margin-bottom: 10px;
}
.dress_sec01 .category .category_list_waso > a{
    display: inline-block;
    width: 24%;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    padding: 2px 10px;
    box-sizing: border-box;
    border: 1px solid #000;
    margin-bottom: 10px;
}
.dress_sec01 .category .category_list:after {
    content: "";
    display: block;
    width: 19%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
.dress_sec01 .category .category__list_waso:after {
    content: "";
    display: block;
    width: 24%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
.dress_sec02{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px 40px;
    box-sizing: border-box;
}
.dress_sec02 .dress_collections{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.dress_sec02 .dress_collections .dress_item{
    position: relative;
    width: 24%;
    margin-bottom: 10px;
}
.dress_sec02 .dress_collections .dress_item > p{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #000;
    padding: 2px 5px;
}
.dress_sec02 .dress_collections .dress_item .goods_price{
    position: absolute;
    top: 22px;
    right: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
}
.dress_sec02 .dress_collections::before{
    content:"";
    display: block;
    width:24%;
    order:1;
}
.dress_sec02 .dress_collections::after{
    content:"";
    display: block;
    width:24%;
}
.dress_sec02 .dress_collections .dress_item img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media screen and (max-width:768px){
    .dress_sec01 {
        padding: 10px 20px 40px;
    }
    .dress_sec01 .category{
        padding: 10px;
        font-size: 12px;
    }
    .dress_sec01 .category .category_list > a{
        width: 32%;
    }
    .dress_sec01 .category .category_list:after {
        width: 32%;
    }
    .dress_sec01 .category .category_list_waso > a{
        width: 32%;
    }
    .dress_sec01 .category .category_list_waso:after {
        width: 32%;
    }
    .dress_sec02 .dress_collections .dress_item{
        width: 48%;
        margin-bottom: 10px;
    }
    .dress_sec02 .dress_collections .dress_item img{
        height: 270px;
    }
    .dress_sec02 {
        padding: 0px 20px 20px;
    }
}