@charset "UTF-8";

/* loader
=======================================================*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc( var(--vh) * 100 );
  background-color: #fff;
  z-index: 100000;
}
.loader .txt {
    position: relative;
    font-size: clamp(18px, 1.388vw, 36px);/*20px*/
    font-weight: 600;
    text-align: center;
    line-height: 2em;
    overflow: hidden;
}
.loader .txt::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.1em;
    background-color: var(--color_6);
    animation: loading-anime-line 0.8s ease-out 0.05s forwards;
}
@keyframes loading-anime-line {
    0% { width: 0; }
    100% { width: 100%; }
}

.loader .txt span {
    display: inline-block;
    transform: translateY(1.5em);
    animation: loading-anime 0.4s ease-out 1.5s forwards;
}
@keyframes loading-anime {
    0% { transform: translateY(1.5em); }
    100% { transform: translateY(0); }
}

.loader .txt span:nth-of-type(2) {
    animation-delay: 1.55s;
}
.loader .txt span:nth-of-type(3) {
    animation-delay: 1.6s;
}
.loader .txt span:nth-of-type(4) {
    animation-delay: 1.65s;
}
.loader .txt span:nth-of-type(5) {
    animation-delay: 1.7s;
}
.loader .txt span:nth-of-type(6) {
    animation-delay: 1.75s;
}
.loader .txt span:nth-of-type(7) {
    animation-delay: 1.8s;
}
.loader .txt span:nth-of-type(8) {
    animation-delay: 1.85s;
}
.loader .txt span:nth-of-type(9) {
    animation-delay: 1.9s;
}
.loader .txt span:nth-of-type(10) {
    animation-delay: 1.95s;
}

/* fv
=======================================================*/
#fv {
    display: flex;
    width: 100%;
    aspect-ratio: 1.694 / 1;
    margin-top: 80px;
    padding: 7.5% 5% 14% 8%;
}

.title__container {
    width: 25%;
    opacity: 0;
    filter: blur(10px);
}

#fv.active .title__container {
    opacity: 1;
    filter: blur(0);
    transition: 1.5s;
}

.img__container {
    position: relative;
    width: 60%;
    margin: 0 0 0 auto;
}

.img__container li {
    overflow: hidden;
}
.img__container li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img__container .mainImg {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    opacity: 0;
    transform: translateX(20px);
}

.img__container .subImg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    border: 3px #fff solid;
    opacity: 0;
    transform: translateX(-15px);
}

#fv.active .img__container .mainImg,
#fv.active .img__container .subImg {
    opacity: 1;
    transform: translateX(0);
    transition: 1s;
    transition-delay: 2s;
}
#fv.active .img__container .subImg {
    transition-delay: 2s;
}

@media screen and (max-width: 896px) {
    #fv {
        flex-direction: column;
        aspect-ratio: 1 / 1.4;
    }
    .title__container {
        width: 40%;
        width: 55%;
        margin: 3% auto 10% 8%;
        margin: 0 auto 10% 0;
    }
    .img__container {
        width: 100%;
        margin: 5% 0 5%;
        aspect-ratio: 1 / 0.8;
    }
    .img__container .subImg {
        width: 50%;
    }
}

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

/* concept
=======================================================*/
#concept {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    padding: 7.5% 15% 10%;
}

#concept .copy {
    width: fit-content;
    letter-spacing: 0.2em;
}

#concept .copy h2 {/*
    font-size: 40px;*/
    font-size: clamp(40px, 2.77vw, 70px);
    font-weight: 600;
    line-height: 2em;
    overflow: hidden;
}

#concept .copy h2 > br.sp {
    display: none;
}


#concept .copy h2 > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(1.5em);
}
@keyframes concept-anime {
    0% { opacity: 0; transform: translateY(1.5em); }
    100% { opacity: 1; transform: translateY(0); }
}
#concept .copy.scroll-active h2 > span {
    animation: concept-anime 0.5s ease-out 0.5s forwards;
}
#concept .copy.scroll-active h2 > span:nth-of-type(2) {
    animation-delay: 0.58s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(3) {
    animation-delay: 0.66s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(4) {
    animation-duration: 0.8s;
    animation-delay: 0.74s;
}

#concept .copy.scroll-active h2 > span:nth-of-type(5) {
    animation-delay: 1s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(6) {
    animation-delay: 1.08s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(7) {
    animation-delay: 1.14s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(8) {
    animation-delay: 1.22s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(9) {
    animation-delay: 1.3s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(10) {
    animation-delay: 1.38s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(11) {
    animation-delay: 1.46s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(12) {
    animation-delay: 1.54s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(13) {
    animation-delay: 1.62s;
}
#concept .copy.scroll-active h2 > span:nth-of-type(14) {
    animation-duration: 0.8s;
    animation-delay: 1.7s;
}

#concept .copy > p {
    margin-top: 3%;/*
    font-size: 11px;*/
    font-size: clamp(11px, 0.764vw, 18.5px); 
    word-break: keep-all;
}

#concept article {
    width: 65%;
    margin: 5% 0 0 auto;
    opacity: 0;
    transform: translateY(10px);
}
#concept article.scroll-active {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s;
    transition-delay: 1s;
}

#concept article h3 {/*
    font-size: 24px;*/
    font-size: clamp(24px, 1.667vw, 40px);
    margin-bottom: 30px;
}

#concept article h3 > br {
    display: none;
}

#concept article p {
    margin-bottom: 30px;
}
#concept article p:last-of-type {
    margin-bottom: 0;
}


@media screen and (min-width: 1920px) {
    #concept {
        justify-content: space-around;
    }
}

@media screen and (max-width: 1024px) {
    #concept {
        padding: 7.5% 10% 10%;
    }
}

@media screen and (max-width: 896px) {
    #concept {
        display: block;
        aspect-ratio: none;
    }

    #concept article {
        width: 100%;
        margin: 15% 0;
    }
}

@media screen and (max-width: 540px) {
    #concept {
        padding: 10% 8%;
    }
    #concept .copy h2 > br.sp {
        display: block;
    }
}
@media screen and (max-width: 390px) {
    #concept article h3 > br {
        display: block;
    }
}

/* contact
=======================================================*/
#contact {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}
#contact::before {
    content: "";
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color_6);
    z-index: -1;
}

#contact > .h2__container {
    position: relative;
    width: 45%;
    padding-top: 5%;
    padding-bottom: 15%;
    padding-left: 12%;
    color: var(--color_1);
    z-index: 0;
}
#contact > .h2__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 0;
    height: 100%;
    background-color: var(--color_2);
    z-index: -1;
}

#contact.scroll-active > .h2__container::before {
    width: 100%;
    transition: 0.7s;
    transition-delay: 1s;
    transition-timing-function: ease-out;
}


#contact > .h2__container > p {/*
    font-size: 70px;*/
    font-size: clamp(48px, 4.86vw, 120px);
    line-height: 1.6em;
}
#contact > .h2__container > p,
#contact > .h2__container > h2 {
    opacity: 0;
}

#contact.scroll-active > .h2__container > p,
#contact.scroll-active > .h2__container > h2 {
    opacity: 1;
    transition: 1s;
    transition-delay: 1.8s;
}

#contact > .contents {
    position: relative;
    width: 76%;
    margin: -10% auto 0;
    padding: 5% 0;
    background-color: var(--color_6);
    opacity: 0;
    transform: translateY(10px);
    z-index: 1;
}
#contact.scroll-active > .contents {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s;
    transition-delay: 2.8s;
}

#contact > .contents > .maincopy {
    width: fit-content;
    margin: 0 auto;
    padding: 0 2%;/*
    font-size: 24px;*/
    font-size: clamp(24px, 1.667vw, 40px);
    font-weight: 700;
    line-height: 1.8em;
    color: var(--color_2);
    background-color: var(--color_1);
}

#contact > .contents > .desc {
    width: 74%;
    margin: 5% auto;
    text-align: left;
    line-height: 1.8em;
}

#contact > .contents > ul {
    display: flex;
    flex-wrap: wrap;
    width: 72%;
    margin: 0 auto;
}

#contact > .contents > ul li {
    position: relative;
    margin-bottom: 5%;
    padding-left: 1.5em;
    margin-right: 8%;
    line-height: 1.4em;
}
#contact > .contents > ul li:last-of-type {
    margin-right: 0;
}
#contact > .contents > ul li::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color_2);
}

#contact > .contents > .tel__container {
    width: 72%;
    margin: 5% auto 8%;
    padding: 3% 5%;
    text-align: center;
    background-color: var(--color_1);
    border: var(--color_2) 0.25vw solid;
}

#contact > .contents > .tel__container h3 {
    display: inline-block;
    margin-bottom: 3%;/*
    font-size: 20px;*/
    font-size: clamp(18px, 1.389vw, 36px);
    font-weight: 700;
    border-bottom: var(--color_4) 0.25vw solid;
}

#contact > .contents > .tel__container p {
    width: fit-content;
    margin: 0 auto;
}
#contact > .contents > .tel__container p.number {/*
    font-size: 56px;*/
    font-size: clamp(30px, 3.89vw, 90px);
    line-height: 1.4em;
}

#contact > .contents > .tel__container button {
    width: 68%;
    max-width: 600px;
    min-width: 360px;
    margin: 30px auto 0;/*
    font-size: 24px;*/
    font-size: clamp(18px, 1.667vw, 40px);
    border: var(--color_2) 0.25vw solid;
    border-radius: 10px;
}

#contact > .contents > .tel__container button a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px 0;
    overflow: hidden;
    z-index: 0;
}
#contact > .contents > .tel__container button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color_2);
    border-radius: 5px 0 0 5px;
    z-index: -1;
    transition: 0.15s;
}


#contact > .contents > .tel__container button a p {
    width: 80%;
    text-align: center;
}
#contact > .contents > .tel__container button a p:first-of-type {
    height: 100%;
    color: var(--color_1);
    transition: 0.5s;
}
#contact > .contents > .tel__container button a p:last-of-type {
    width: 20%;
    color: var(--color_2);
    font-size: 120%;
}
#contact > .contents > .tel__container button a p:last-of-type i {
    transition: 0.15s;
}
#contact > .contents > .tel__container button a:hover p:last-of-type i {
    transform: scale(1.4);
    transition: 0.2s;
}
@media screen and (min-width: 1920px) {
    #contact::before {
        top: 240px;
    }
    #contact > .contents > .desc {
        margin: 5% auto 3%;
    }
}

@media screen and (max-width: 1024px) {
    #contact::before {
        top: 180px;
    }
    #contact > .h2__container {
        width: 45%;
        max-width: 500px;
        min-width: 400px;
        padding-left: 10%;
    }

    #contact > .contents {
        width: 80%;
    }

    #contact > .contents > .desc,
    #contact > .contents > ul {
        width: 86%;
    }

    #contact > .contents > .tel__container {
        width: 86%;
        padding: 5% 8%;
    }
}

@media screen and (max-width: 896px) {
    #contact > .contents {
        width: 90%;
        padding: 10% 1%;
    }

    #contact > .contents > .desc,
    #contact > .contents > ul {
        width: 90%;
    }

    #contact > .contents > .tel__container {
        width: 90%;
        padding: 5% 8%;
    }
}

@media screen and (max-width: 600px) {
    #contact > .contents > .tel__container button {
        width: 100%;
        min-width: 200px;
    }
    #contact > .contents > .tel__container p.time {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    #contact > .contents {
        width: 90%;
        padding: 15% 1%;
    }
    #contact > .contents > .desc {
        margin: 8% auto;
    }
    #contact > .contents > .tel__container {
        width: 94%;
        margin: 8% auto 8%;
        padding: 10% 5%;
    }
    #contact > .contents > .tel__container p.time {
        font-size: 12px;
    }
}