@charset "UTF-8";

/* TOP */
#top-header {
    background-color: #efefef;
}
#top-slide {
    position: absolute;
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
}
.top-scroll p {
    position: absolute;
    right: 5%;
    bottom: 2%;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 25px;
    padding: 0 0 80px 5px;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: "Brygada 1918", serif;
    line-height: 1;
}
.top-scroll p::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 70px;
    background: #000000;
    content: "";
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
.top-concept {
    padding: 1em 0 0 0;
    background-color: #efefef;
}
.top-concept-item {
    margin: 0 1em;
    text-align: center;
}
.top-concept-item h2 {
    margin-bottom: 1em;
    letter-spacing: 0;
    font-weight: normal;
    font-size: 3rem;
    font-family: "Brygada 1918", serif;
}
.top-concept-item h2 strong {
    display: block;
    color: #595757;
    font-size: 1.5rem;
}
.top-concept-item p {
    margin-bottom: 3em;
}
.top-concept-photo {
    margin-top: 3em;
    text-align: center;
}
.top-news {
    position: relative;
    padding: 4em 0;
    text-align: center;
}
.top-news strong {
    display: block;
    margin-bottom: 0.5em;
    font-weight: normal;
    font-size: 2.6rem;
    font-family: "Brygada 1918", serif;
    line-height: 1;
}
.top-news p {
    margin-bottom: 2em;
    font-size: 1.3rem;
}

