@charset "utf-8";

/* CSS Document */



/* ------------------------------------------
  common
--------------------------------------------- */
body {
    color: #4b3f25;
}

.bg-beige-light {
    background: url(../images/sec-bg02.webp) repeat;
    background-color: rgba(255, 255, 255, 0.1);
    background-blend-mode: lighten;
}

.bg-beige {
    background: url(../images/sec-bg01.webp) repeat;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
}

.bg-brown {
    background: url(../images/osusume-bg.webp) repeat;
}

.noto-serif {
    font-family: "Noto Serif JP", serif;
}

a:hover {
    opacity: inherit !important;
}

/* ------------------------------------------
  mv01
--------------------------------------------- */
.mv01 {
    height: 600px;
    background: url(../images/mv.webp) no-repeat center center;
}

@media screen and (max-width: 1024px) {
    .mv01 {
        background: url(../images/mv-m.webp) no-repeat center center;
    }

    .mv01 h1 img {
        width: 50vw;
        height: auto;
        max-width: 420px;
    }
}

/* ------------------------------------------
  mv02
--------------------------------------------- */
.mv02 {
    height: 600px;
    background: url(../images/mv02.webp) no-repeat center center;
}


.mv02 .mv-title {
    width: calc(1200px + 3vw);
    margin: 0 auto;
}

.mv02 h1 {
    max-width: 100%;
}

.mv02 h1 img {
    width: 80vw;
    max-width: 900px;
}

@media screen and (max-width: 1280px) {
    .mv02 .mv-title {
        padding: 0 2vw;
    }
}


/* スクロールダウンの位置 */
.scroll {
    padding-top: 60px;
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: -100px;
    display: block;
}

/* 矢印のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    height: 30px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

/* 矢印のアニメーション */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: rotate(-45deg) translate(-20px, 20px);
    }

    100% {
        opacity: 0;
    }
}


/* ------------------------------------------
  loading
--------------------------------------------- */

#lead-fadeIn {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 1000ms;
}

r #lead-fadeIn.lead-fadeIn-active {
    opacity: 1;
    transform: translateY(0);
}

#loading {}

#kv-lead {
    opacity: 0;
    -webkit-transition: all 2s;
    transition: all 2s;
    transform: translateY(15px);
}

#kv-lead.kv-lead-loaded {
    opacity: 1;
    transform: translateY(0);
}

/*fadein*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================================
   for SP
===========================================================*/

@media screen and (max-width: 768px) {}
