



.area_content_wrapper{
    background-color: #aac9e7;
}

.content_title{
    padding: 50px;
}
.area_content_title h1{
    color: #fff;
}



.area_content_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding-bottom: 100px;
}

/* illust */
.area_content_img{
    position: relative;
    height: 540px;
    width: 480px;
}

.area_content_img img{
    transition: 0.3s;
    position: absolute;
}

.area_content_img img:hover{
    transition: 0.5s;
    opacity: 0.8;
    filter: brightness(130%);
}

#saitama_illust{
    top: 0;
}
#tokyo_illust{
    top: 150px;
}
#kanagawa_illust{
    top: 300px;
}
#chiba_illust{
    top: 150px;
    left: 300px;
}

.area_content_link{
    background-color: #fff;
    border-radius: 10px;
    border: solid 2px #333;
    padding: 50px;
    width: 550px;
}
.area_content_link ul{
    list-style: none;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 50px;
}
.area_content_link li{
    width: 150px;
}
.area_content_link a{
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}
.area_content_link a::after{
    content: '';
    position: relative;
    top: -15px;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #333;
}
