:root {
    --main-bg: #f8f8f8;
    --main-text: #3e3e3e;
    --sub-text: #828282;
    --cap-text: #f8f8f8;
    --logo-main: #3e3e3e;
    --logo-sub: #828282;
    --lineme-main: #06C755;
    --naturance-main: #4A8063;
    --zipcloud-main: #219775;
    --otete-main: #F08C39;
}

* {
    padding: 0;
    margin: 0;
    font-family: "neuzeit-grotesk", '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-weight: 600;
    color: var(--main-text);
    transition: .5s;
}

body {
    background-color: var(--main-bg);
}

nav {
    position: fixed;
    width: 90%;
    /* margin: 50px 5%; */
    margin: 0 5%;
    z-index: 99;
    height: 16vh;
    /* top: -100px; */
    transition: .5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.active {
    top: 0px;
}

nav .my-logo {
    height: 3rem;
    width: 3rem;
    position: relative;
}

nav .my-logo * {
    position: absolute;
}

nav .my-logo .logo-left {
    top: 0;
    left: 0;
    background-color: var(--logo-main);
}

nav.active .my-logo .logo-left {
    animation: logoSideAnime .7s ease-in-out 1s forwards;
}

nav .my-logo .logo-right {
    bottom: 0;
    right: 0;
    background-color: var(--logo-main);
}

nav.active .my-logo .logo-right {
    animation: logoSideAnime .7s ease-in-out 1s forwards;
}

nav .my-logo .logo-top {
    width: 20%;
    top: 0;
    left: 40%;
    background-color: var(--logo-main);
}

nav.active .my-logo .logo-top {
    animation: logoTopAnime .7s ease-in-out 1s forwards;
}

nav .my-logo .logo-bottom {
    width: 20%;
    bottom: 0;
    left: 40%;
    background-color: var(--logo-sub);
}

nav.active .my-logo .logo-bottom {
    animation: logoBottomAnime .7s ease-in-out 1s forwards;
}

@keyframes logoSideAnime {
    0% {
        height: 20%;
        width: 0;
    }

    50% {
        height: 20%;
        width: 20%;
    }

    100% {
        height: 100%;
        width: 20%;
    }
}

@keyframes logoTopAnime {
    0% {
        height: 0;
    }

    50% {
        height: 20%;
    }

    100% {
        height: 60%;
    }
}

@keyframes logoBottomAnime {
    0% {
        height: 0;
    }

    50% {
        height: 60%;
    }

    100% {
        height: 20%;
    }
}

nav #caption {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    transform: translateX(40rem);
    display: inline-block;
    font-weight: 600;
    color: var(--cap-text);
    transition: .5s ease-in-out;
}

nav #caption.active {
    transform: translateX(0);
}


.scrollify {
    width: 100vw;
    height: 100vh !important;
    background-color: var(--main-bg);
}

#pagenation-box {
    position: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 999;
    left: -7vw;
    animation: pagenationAnime 0.7s ease-in-out 2.7s forwards;
}

@keyframes pagenationAnime {
    from {
        left: -7vw;
    }

    to {
        left: 0;
    }
}

.pagenation {
    padding: 5vw;
    /* position: fixed; */
    left: 0;
}

.pagenation li {
    list-style-type: none;
    margin-bottom: 20px;
}

.pagenation a {
    display: block;
    height: 8px;
    border: 1px solid var(--main-text);
    width: 8px;
    border-radius: 1px;
    cursor: pointer;
}

.pagenation a.active {
    background: var(--main-text);
}

#sec-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#title h2 {
    font-size: 2.8vw;
    font-weight: 600;
    letter-spacing: 0.2vw;
}

#title h1 {
    font-size: 7vw;
    font-weight: 600;
    letter-spacing: 0.4vw;
    margin-left: -0.4vw;
}

#title p {
    font-size: 1.7vw;
    font-weight: 300;
    letter-spacing: 0.1vw;
}

.wrap,
.wrap .inn {
    display: block;
    opacity: 0;
}

.wrap.active {
    overflow: hidden;
    animation: wrap-animation 1.2s forwards 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wrap-animation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.wrap.active .inn {
    animation: inn-animation 1.2s forwards 1s cubic-bezier(0.22, 1, 0.36, 1);
}

#title .wrap:nth-child(2), #title .wrap:nth-child(2) .inn {
    animation-delay: 1.4s;
}

#title .wrap:nth-child(3), #title .wrap:nth-child(3) .inn {
    animation-delay: 1.8s;
}

@keyframes inn-animation {
    from {
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 100);
    }

    to {
        opacity: 1;
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
}



#guide {
    bottom: -1vw;
    opacity: 0;
    font-size: 1.5vw;
    transition: .5s ease-in-out;
    text-align: center;
    position: absolute;
}

#guide.active {
    bottom: 3vw;
    opacity: 1;
}

#guide i {
    animation: down-loop 2s infinite ease-out;
}

@keyframes down-loop {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    95% {
        opacity: 1;
        transform: translateY(1vw);
    }

    100% {
        opacity: 0;
        transform: translateY(1vw);
    }
}

#sec-about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#catch {
    width: 60%;
}

#sec-about h3 {
    font-size: 3vw;
    font-weight: 600;
    letter-spacing: 0.3vw;
    line-height: 1.5;
}

#sec-about #h3box .wrap, #sec-about #h3box .wrap .inn {
    animation-delay: 1s;
}

#sec-about #pbox {
    margin-top: 20vh;
}

#sec-about #pbox .wrap, #sec-about #pbox .wrap .inn {
    animation-delay: 1.5s;
}

#sec-about p {
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0.1vw;
    line-height: 2.0;
    text-align: right;
}



.color-cover {
    height: 100vh;
    width: calc(100vw + 50rem);
    transform: skewX(-23.4deg);
    position: fixed;
    top: 0;
    right: calc(-100vw - 100rem);
    transition: .5s ease-in-out;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.color-cover.active {
    right: calc(-110vw - 10rem);
}


.scrollify.selected .color-cover {
    z-index: 999;
    animation: cc-slide-in .5s ease-in forwards;
}

@keyframes cc-slide-in {
    0% {
        right: calc(-100vw - 100rem);
    }

    100% {
        right: -25rem;
    }
}

.scrollify .color-cover.backed {
    animation: cc-slide-out 1.5s ease;
}

@keyframes cc-slide-out {
    0% {
        right: -25rem;
        z-index: 999;
    }

    66.6% {
        right: calc(-100vw - 100rem);
        z-index: 10;
    }

    100% {
        right: calc(-100vw - 10rem);
        z-index: 10;
    }
}

#lineme .color-cover {
    background-color: var(--lineme-main);
}

#naturance .color-cover {
    background-color: var(--naturance-main);
}

#zipcloud .color-cover {
    background-color: var(--zipcloud-main);
}

#otete .color-cover {
    background-color: var(--otete-main);
}

.thumbnail {
    height: 100vh;
    width: 60rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
    /* transition: .5s ease-in-out; */
    margin: 0 auto;
    position: relative;
    right: 0;
}

.scrollify.selected .thumbnail {
    animation: thumb-slide-out 1s ease-in 0.5s forwards;
}

@keyframes thumb-slide-out {
    from {
        right: 0;
    }

    to {
        right: 110rem;
    }
}

#zipcloud {
    /* gap: 8vw */
}

.thumb-left {
    /* width: 410px; */
    /* display: block; */
}

.thumb-left .summary {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    white-space: nowrap;
}

#lineme .thumb-left .summary {
    margin-bottom: 2rem;
}

.thumb-left img {
    width: 18rem;
}

#naturance .thumb-left img {
    width: 18rem;
}

.thumb-left .genre {
    font-size: 1.2rem;
    margin-top: 1.4rem;
    font-weight: 400;
    line-height: 2rem;
    white-space: nowrap;
}

#lineme .thumb-left .genre {
    margin-top: 1rem;
}

.thumb-left .view-more {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border: 0.2rem solid;
    padding: .8rem 1.4rem;
    margin-top: 1.6rem;
    display: inline-block;
    border-radius: 2px;
    text-decoration: none;
}

#lineme .view-more {
    color: var(--lineme-main);
    border-color: var(--lineme-main);
}

#naturance .view-more {
    color: var(--naturance-main);
    border-color: var(--naturance-main);
}

#zipcloud .view-more {
    color: var(--zipcloud-main);
    border-color: var(--zipcloud-main);
}

#thumbnail04 .thumb-left .view-more {
    color: #F08C39;
    border-color: #F08C39;
}

.thumb-left .view-more:hover {
    cursor: pointer;
    color: var(--main-bg) !important;
}

#lineme .view-more:hover {
    background-color: var(--lineme-main);
}

#naturance .view-more:hover {
    background-color: var(--naturance-main);
}

#zipcloud .thumb-left .view-more:hover {
    background-color: var(--zipcloud-main);
}

#thumbnail04 .thumb-left .view-more:hover {
    background-color: #F08C39;
}


.thumb-right {
    position: relative;
    display: flex;
    width: calc(40vw - 100px);
    max-width: 500px;
}

.thumb-mock {
    transform: translateX(-50px);
}

.thumb-right img {
    position: relative;
    z-index: 20;
}

.thumb-right .phone-mock {
    width: 20vw;
    max-width: 300px;
}

.thumb-right .phone-mock01 {
    z-index: 21;
    transform: translate(50px, -20px);
}

.thumb-right .phone-mock02 {
    transform: translate(-50px, 20px);
}

.thumb-right .pc-mock {
    width: 50rem;
}

.otete-thumb {
    width: 100%;
}

.sorry-overlay {
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--main-bg);
    justify-content: center;
    align-items: center;
    line-height: 200%;
}

.sorry-overlay p {
    width: 100%;
    text-align: center;
}

@media (max-width: 1000px) {
    .sorry-overlay {
        display: flex;
    }
}