@charset "UTF-8";

/*==========================
access
==========================*/

.topic--access {
    text-align: center;
    padding: 100px 0 50px;
}

.map {
    width: 100%;
    height: 100vw;
    background: linear-gradient(135deg, #2D6D52 0%, #47AC81 100%);
    padding: 25px 6.66vw;
}

.name {
    color: var(--primary-green);
    text-align: center;
    font-family: "Lexend Exa";
    font-size: 2.4rem;
    font-weight: 500;
    line-height: normal;
}

.address,
.openTime {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}

.address {
    margin-top: 25px;
    text-align: center;
}

.openTime {
    margin-top: 5px;
}

.acccess__content {
    padding: 55px 0;
}

.ways__content {
    width: 95.94vw;
    border-top: solid 1px var(--primary-black);
    padding-left: 5.3vw;
    padding-top: 10px;
}

.transportation {
    font-size: 2rem;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 2px;
}

.transportation__txt {
    margin-top: 20px;
}

.ways__content:last-of-type {
    margin-top: 70px;
}

.access__imgs {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.outside__img {
    width: 80vw;
    height: 165px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.outside__img.active {
    opacity: 1;
}

.inside__img {
    width: 80vw;
    height: 150px;
    object-fit: cover;
    margin-left: 20vw;
    opacity: 0;

}

.inside__img.active {
    transition: opacity 1.5s ease;
    transition-delay: 0.2s;
    opacity: 1;
}

/* access PC */
@media screen and (min-width:769px) {

    .topic--access {
        padding: 150px 0 100px;
        font-size: 3.8rem;
    }

    .map {
        height: 450px;
        padding: 55px 70px;
    }

    .access__txtContianer {
        display: flex;
        padding: 100px 4.86vw;
        display: flex;
        justify-content: center;
        gap: 12.5vw;
        align-items: center;

    }

    .ways__content {
        width: 46.52vw;
        padding-left: 2.08vw;
        display: flex;
        gap: 20px;
    }

    .name {
        font-size: 3rem;
    }

    .address,
    .open {
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
    }

    .open {
        margin-top: 10px;
    }

    .address {
        margin-top: 30px;
    }

    .transportation__txt {
        margin-top: 0;
    }

    .transportation {
        width: 280px;
        text-align: start;
    }

    .access__imgs {
        margin-top: 0;
        display: flex;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .outside__img {
        width: 64.23vw;
        height: 500px;
        opacity: 0;
        transition: 0.4s ease;
    }



    .inside__img {
        width: 32.23vw;
        height: 225px;
        display: inline;
        margin: 0;
        opacity: 0;
        transition: 0.4s ease;
    }


}