body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-family: "adobe-garamond-pro", "Zen Kaku Gothic New", serif;
    font-size: 12px;
    overflow-y: hidden;
}

.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: transform 10s linear;
}

.img-sp { display: none; }
.img-pc { display: block; }

@media (max-width: 768px) {
    .img-sp { display: block; }
    .img-pc { display: none; }
}

.slide.active img {
    transform: scale(1.1);
}

.slide.zoom-hold img {
    transform: scale(1.1);
}

.slide.reset img {
    transform: scale(1.0);
    transition: none;
}

.overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    color: white;
    pointer-events: none;
}

.overlay a:link{
    color: #fff;

}


.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: white;
}

.title {
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.1em;
}

.info-tagline {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.8em;
    line-height: 1;
    margin: 0 0 20px 0;

}

.info-logo {
    display: block;
    width: 350px;
    height: auto;
    margin-bottom: 20px;
}

.info-date {
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3em;
    line-height: 1;
    letter-spacing: .03em;
    margin: 0 0 20px 0;
}

.info-address {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    line-height: 1.6;
    /*text-decoration: underline;*/
    color: white;
    margin-bottom: 10px;
    pointer-events: auto;
}

.info-address a:visited{
    color: #fff;

}

.info-address-en {
    display: block;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 100;
    font-style: italic;
    font-size: 1.4em;
    line-height: 1;
 /*text-decoration: underline;*/
    color: white;
    margin-bottom: 10px;
    pointer-events: auto;
}

.info-address a:visited{
    color: #fff;

}

.info-insta {
    display: block;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2em;
    line-height: 1;
    text-decoration: underline;
    color: white;
    pointer-events: auto;
}

.copyright {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 10;
    font-family: "adobe-garamond-pro", serif;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    transform: rotate(-90deg);
    transform-origin: bottom left;
    white-space: nowrap;
    pointer-events: none;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(255,255,255,0.5);
    z-index: 20;
    width: 0%;
}

@media (max-width: 768px) {

    .slider-container {
        height: 100dvh;
    }

    .overlay {
        bottom: 30px;
        left: 45px;
    }
    .info-logo {
        width: 250px;
    }
    .info-tagline {
        font-size: 1.4em;
    }
    .info-date {
        font-size: 2.3em;
    }
    .info-address, .info-insta {
        font-size: 1.1em;
    }
    .info-address-en {
        font-size: 1.2em;
    }
    .copyright {
        left: -15px;
   
    }
}