@charset "UTF-8";
.topicPhoto--access {
    filter: brightness(0.45) sepia(0.4) blur(2px);
    object-position: 50% 85%;
}
.main {
    background-color: var(--primary-yellow);
    margin-top: 50px;
}

@media screen and (min-width: 960px) {
    .main {
        margin-top: 60px;
    }
}

/* info */

.info__photoBlock {
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 370px;
    
}

.info__photo {
    position: absolute;
    aspect-ratio: 4 / 3;
    border-radius: 30px;
    object-fit: cover;
}

.info__photo.A {
    width: 315px;
    top: 0;
    left: 50%;
    transform: translateX(-30%);
}

.info__photo.B {
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-100%);
}

.info__txtBlock {
    position: relative;
    height: 400px;
}

.info__list {
    width: 310px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%)
}

.info__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.info__topic {
    display: inline-block;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.8px;
}

.info__txt {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 1.8px;
    margin-top: 5px;
}

/* 560px- */
@media screen and (min-width: 560px) {
    .info__txtBlock {
        height: 350px;
    }

    .info__list {
        width: 500px;
        justify-content: center;
        gap: 25px;
        padding: 40px 30px;
    }

    .info__item {
        flex-direction: row;
        justify-content: space-between;
        gap: 5px;
    }

    .info__txt {
        width: 350px;
        font-size: 1.8rem;
        line-height: 1.5;
        letter-spacing: 2.4px;
        margin-top: -5px;
    }
}

/* pc 769px- */
@media screen  and (min-width: 769px){
    .info__photoBlock {
        width: 100%;
        height: 500px;
        
    }
    
    .info__photo.A {
        width: 500px;
        aspect-ratio: 16 / 9;
        object-position: 50% 80%;
        top: 0;
        left: 50%;
        transform: translateX(-60%);
    }
    
    .info__photo.B {
        width: 250px;
        bottom: 0;
        left: 50%;
        transform: translateX(-170%);
    }

    .info__txtBlock {
        height: 350px;
    }
    
    .info__list {
        width: 620px;
        gap: 30px;
        padding: 50px 40px;
        top: -100px;
        left: 50%;
        transform: translateX(-40%)
    }

    .info__topic {
        font-size: 2.2rem;
    }
    
    .info__txt {
        width: 420px;
        font-size: 2.2rem;
    }
}

/* map */
.map {
    text-align: center;
}

.map__topic {
    padding: 0 var(--contentPadding);
}

.googleMap {
    width: 100%;
    max-width: 960px;
    margin: 50px auto 70px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media screen and (min-width: 960px) {
    .googleMap {
        border-radius: 20px;
    }
}