@charset "UTF-8";

body {
    position: relative;
}

.topslide {
    position: relative;
}

.top_bg {
    display: none;
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
}

.top_bg__image {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}


/*----------スクロールを促すアニメーションー---------------*/
.scroll_to {
    position: absolute;
    bottom: 25px;
    right: 2.5%;
    z-index: 998;
}

.scroll_to_text {
    height: 95px;
}

.scroll_to_text .text {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
}

.scroll_to_text .line {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: calc(50% - 4px);
    width: 8px;
    height: 60px;
}

.scroll_to_text .line::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: calc(50% - .5px);
    width: 1px;
    height: 58px;
    background: #e6e6e6;
    content: '';
}

.scroll_to_text .line::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0.5px;
    z-index: 2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    content: '';
    -webkit-animation-name: scrollBall;
    animation-name: scrollBall;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    /*-webkit-animation-timing-function: ease;*/
    /*animation-timing-function: ease;*/
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 1;
}

@-webkit-keyframes scrollBall {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    100% {
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
    }
}

@keyframes scrollBall {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 0%;
    }
    35% {
        opacity: 100%;
    }
    70% {
        opacity: 100%;
    }
    100% {
        -webkit-transform: translateY(53px);
        transform: translateY(53px);
        opacity: 0%;
    }
}

.logo-mark {
    display: none;
}


/*-----------マウスストーカー---------------*/
#stalker {
    position: fixed;
    background: rgba(222, 222, 222, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 30px;
    margin: -30px 0 0 -30px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: top 0.2s ease-out, left 0.2s ease-out;

}


.cursor-image {
    cursor: url('../img/slider_cursor.png'), auto;
}


/*-----------concept(TOPページの画像アニメーション)---------------*/
#concept {
    position: relative;
    overflow-x: clip;
}

.concept__images {
    position: relative;
    padding-bottom: 100%;
    margin-bottom: 10%;
    /*overflow-x: clip;*/
}

.concept-image {
    position: absolute;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;
}

.concept-image > img {
    width: 100%;
}

.concept-image01 {
    top: 10%;
    left:20%;
    z-index: 5;
    width: 54%;
    transition-property: top, left, right;
    transition-duration: 100ms;
    transition-timing-function: linear;
    transition-delay: 0s;
}


.concept-image02 {
    top: 15%;
    right: 25%;
    z-index: 4;
    width: 30%;
    transition-property: top, left, right;
    transition-duration: 100ms;
    transition-timing-function: linear;
    transition-delay: 0s;
}


.concept-image03 {
    top: 35%;
    right: 15%;
    z-index: 3;
    width: 55%;
    transition-property: top, left, right;
    transition-duration: 100ms;
    transition-timing-function: linear;
    transition-delay: 0s;
}


.concept-image04 {
    top: 15%;
    left: 40%;
    z-index: 2;
    width: 30%;
    transition-property: top, left, right;
    transition-duration: 100ms;
    transition-timing-function: linear;
    transition-delay: 0s;
}


/*-----------concept内テキストスライド---------------*/
.slide-text {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    right: -100%; /* 右側から開始 */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slide-text__content {
    display: inline-block;
    color: #2f2f2f;
    white-space: nowrap;
    z-index: -1;
    position: relative; /* 追加 */
    right: 0; /* 追加 */
}

.slide-text__content > * {
    display: inline-block;
}

.slide-text__content > p {
    font-size: 15rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.2rem;
}

.slide-text__content > p span {
    margin: 0 8rem;
}

