@charset "utf-8";

/* index.html
========================================================================= */
#suntory_contents .subpage_list{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin-bottom: clamp(64px, 9.87vw, 115px);
    gap: clamp(4px, 0.68vw, 8px);
}
#suntory_contents .subpage_list .item{
    aspect-ratio: 1;
}
#suntory_contents .subpage_list .item .link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: clamp(1.25rem, 1.131rem + 0.51vw, 1.5rem);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
#suntory_contents .subpage_list .item .link:after,
#suntory_contents .subpage_list .item .link:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    transition: all 0.3s;
}
#suntory_contents .subpage_list .item .link:before{
    background: #210D00;
    opacity: 0.6;
    z-index: -1;
}
#suntory_contents .subpage_list .item .link:after{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -2;
}
#suntory_contents .subpage_list .item:nth-child(1) .link:after{
    background-image: url(/suntoryhall/facility/assets/img/top/pic_hall.webp);
}
#suntory_contents .subpage_list .item:nth-child(2) .link:after{
    background-image: url(/suntoryhall/facility/assets/img/top/pic_bluerose.webp);
}
#suntory_contents .subpage_list .item:nth-child(3) .link:after{
    background-image: url(/suntoryhall/facility/assets/img/top/pic_foyer.webp);
}
#suntory_contents .subpage_list .item:nth-child(4) .link:after{
    background-image: url(/suntoryhall/facility/assets/img/top/pic_neighborhood.webp);
}
#suntory_contents .subpage_list .item .sub_txt{
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1.125rem);
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    #suntory_contents .subpage_list{
        gap: 4px;
        margin-left: calc(4px - 4%);
        margin-right: calc(4px - 4%);
    }
    #suntory_contents .subpage_list .item{
        width: calc(50% - 2px)
    }
    #suntory_contents .tab_btn_wrap .tab_btn{
        width: 50%;
    }
    #floor_map [aria-hidden="true"]{
        display: none;
    }
}
@media print, screen and (min-width:768px) {
    #suntory_contents .subpage_list .item{
        flex: 1;
    }
    #suntory_contents .subpage_list .item .link:hover:before{
        opacity: 0.4;
    }
    #suntory_contents .subpage_list .item .link:hover:after{
        transform: scale(1.1);
    }
}