@charset "UTF-8";

/* #fv
=======================================================*/
#fv {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv h1 {
    width: 40%;
}

#fv .scroll {
    position: absolute;
    bottom: 5%;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    color: var(--color_3);
}

#fv .scroll span {
    display: inline-block;
    animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
}

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

@media screen and (max-width: 480px) {
    #fv h1 {
        width: 50%;
        margin-right: -8%;
    }
}



/* #philosophy
=======================================================*/
#philosophy {
    padding: 10rem 0;
    background-image: url(../img/philosophy-bg.png);
    background-repeat: no-repeat;
    background-size: 90% 100%;
    background-position: top center;/*
    font-size: 1.125rem;*/
    font-size: clamp(18px, 1.25vw, 28px);
}

#philosophy h2 {
    margin-bottom: 60px;/*
    font-size: 2rem;*/
    font-size: clamp(24px, 2.22vw, 48px);
    font-weight: 600;
    text-align: center;
    line-height: 1.77;
    color: var(--color_3);
}

.text__contents {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy__list {
    width: fit-content;
    margin: 3.5em auto;
}

.philosophy__list li {
    margin-bottom: 1.8em;
    line-height: 1.6;
}

.philosophy__list li span {
    background: linear-gradient(90deg, #CEDE5A, #CEDE5A, #F4A452);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 18%;
    padding-bottom: 0.1em;
}

.text__contents p:last-child {
    margin-top: 2em;
    text-align: right
}

.text__contents p:last-child br {
    display: none;
}

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

@media screen and (max-width: 896px) {
    .text__contents {
        width: 75%;
    }
}

@media screen and (max-width: 480px) {
    #philosophy {
        background-size: 120% 100%;
        background-position: top center;
    }
    #philosophy h2 {
        margin-bottom: 40px;
    }
    .text__contents {
        width: 90%;
    }
    .text__contents p:last-child br {
        display: block;
    }
}


/* #site__info
=======================================================*/
#site__info {
    margin-top: -5rem;
}

#site__info .img__wrap {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 358;
}
#site__info .img__wrap img:first-of-type {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
}
#site__info .img__wrap img:last-of-type {
    position: absolute;
    right: 0;
    bottom: 0;
}

#site__info .inner {
    margin-top: -5px;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #90B959;
    background-image: url(../img/akaushi.svg), url(../img/sheep.svg);
    background-repeat: no-repeat;
    background-position: top 55% left 10%, top 65% right 10%;
    background-size: 10%, 11%;
}

#site__info .inner h2 {
    width: 22.5%;
    max-width: 324px;
    margin: 0 auto 1rem;
    animation: shake-up 1s infinite ease-out;
}

@keyframes shake-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.comingsoon__wrap {
    position: relative;
    width: 25%;
    max-width: 324px;
    margin: 0 auto 30px;
    text-align: center;
}

.comingsoon__wrap img:first-of-type {
    width: 65%;
}
.comingsoon__wrap img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.info__text {
    color: var(--color_1);
    text-align: center;
    font-size: clamp(20px, 1.66vw, 32px);
}

.info__text .br__sp {
    display: none;
}

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

@media screen and (max-width: 896px) {
    #site__info .inner {
        background-position: top 5% left 10%, top 94% right 10%;
    }
    #site__info .inner h2 {
        width: 60%;
        max-width: 400px;
    }
    .comingsoon__wrap {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    #site__info .inner {
        background-size: 15%, 18%;
    }
    #site__info .inner h2,
    .comingsoon__wrap {
        width: 90%;
    }
    .info__text .br__sp {
        display: block;
    }
}
