@charset "utf-8"; 
#access {
    background-image: url(../img/bg.png);
    padding: 150px 0 0px 0;
}
#access .area-title {
    text-align: center;
    margin-bottom: 50px;
}
.access-flex {
    display: flex;
    align-items: stretch;
}
.flex-img {
    width: 30%;
    overflow: hidden;
    border-radius: 2px;
    color: white;
}
.flex-img img {
    object-fit: cover;
}
.flex-text {
    width: 40%;
    text-align: center;
    height: 400px; 
}
.flex-img2 {
    width: 30%;
    overflow: hidden;
    border-radius: 2px;
    color: white;
    text-align: right;
}
.flex-img2 img {
    object-fit: cover;
}
.name {
    color: #fff;
    font-size: 1.9rem;
}
.address {
    color: #ffffffa1;
    line-height: 1.8;
    font-size: 0.9rem;
    padding-top: 40px;
    letter-spacing: 0.1em;
    font-weight: 400;
}
.tel {
    color: rgba(255, 215, 128, 0.7);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-top: 20px;
}
.time {
    color: #ffffffa1;
    line-height: 1.8;
    font-size: 0.9rem;
    padding-top: 40px;
    letter-spacing: 0.1em;
}
.holiday {
    color: #ffffffa1;
    line-height: 1.8;
    font-size: 0.9rem;
    padding-top: 20px;
    letter-spacing: 0.1em;
}
.fabe-img {
    -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        black 50%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        black 0%,
        black 50%,
        transparent
    );
}
#access {
    padding: 100px 0 0px 0;
}
.fabe-img2 {
    -webkit-mask-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        transparent
    );
    mask-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        transparent
    );
}
.map {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 200;
    margin-top: 80px;
}
.map iframe {
    object-fit: cover;
    width: 110%;
}

@media screen and (max-width: 768px) {
    #access {
        background-size: cover;
    }
    .fabe-img {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .access-flex {
        flex-direction: column-reverse;
    }
    .flex-text {
        width: 100%;

    }
    .flex-img2 {
        display: none;
    }
    .flex-img {
        width: 94%;
        margin-left: 3%;
    }
    .flex-img img {
        width: 100%;
        border-radius: 2px;
        margin-top: 50px;
    }
    .tel {
        font-size: 2rem;
        letter-spacing: 0em;
    }
    .map {
        margin-top: 80px;
    }
}