@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#detailArea .wrap{
    padding-bottom: 20px;
}
.galleryPhotos{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 10px;
    gap: 1px;
}
.galleryPhotos li{
    width: calc((100% - 2px) / 3);
}
.galleryPhotos li a{
    display: block;
}
.galleryPhotos li .img{
    margin-bottom: 0;
}
.galleryPhotos li .img img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}
.moreBtn{
    margin: auto;
    margin-top: 50px;
    max-width: 320px;
    cursor: pointer;
}
.moreBtn p{
    display: block;
    width: 100%;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #ed1c29;
    padding: 10px 0 10px;
    text-align: center;
    box-sizing: border-box;
    color: #ed1c29;
    font-size: 12px;
    line-height: 1.16;
    font-weight: bold;
}
@media screen and (min-width: 769px) {
    #detailArea .wrap{
        padding-bottom: 50px;
    }
    .moreBtn p{
        font-size: 18px;
        padding: 12px 0;
    }
}
