@charset "UTF-8";
/******************************************************************************
 Layout
******************************************************************************/
.inner{
    width: 100%;
    margin: 0 auto;
    background: url(../images/bg.jpg) no-repeat top center / cover;
    overflow: hidden;
}
@media screen and (max-width: 425px){
    .inner{
        background: url(../images/bg-sp.jpg) no-repeat top center / cover;
    }
}


/******************************************************************************
 component
******************************************************************************/
.c-pcNone{
    display: none;
}
.c-spNone{
    display: block;
}
@media screen and (max-width: 425px){
    .c-pcNone{
        display: block;
    }
    .c-spNone{
        display: none;
    }
}
/******************************************************************************
 animate.css追加
******************************************************************************/
@-webkit-keyframes fadeInRightS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(5%, 0, 0);
        transform: translate3d(5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightS {
    -webkit-animation-name: fadeInRightS;
    animation-name: fadeInRightS;
}

@-webkit-keyframes fadeInLeftS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftS {
    -webkit-animation-name: fadeInLeftS;
    animation-name: fadeInLeftS;
}

@-webkit-keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpS {
    -webkit-animation-name: fadeInUpS;
    animation-name: fadeInUpS;
}


@keyframes fadeInUpSS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 5%, 0);
        transform: translate3d(0, 5%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpSS {
    -webkit-animation-name: fadeInUpSS;
    animation-name: fadeInUpSS;
}


@-webkit-keyframes fadeInDownS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -4%, 0);
        transform: translate3d(0, -4%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownS {
    -webkit-animation-name: fadeInDownS;
    animation-name: fadeInDownS;
}


@-webkit-keyframes fadeInTopRightS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, -10%, 0);
        transform: translate3d(10%, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopRightS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, -10%, 0);
        transform: translate3d(10%, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes animate__swingS {
    0% {
        transform: rotate3d(0, 0, 1, 2deg);
    }
    50% {
        transform: rotate3d(0, 0, 1, -2deg);
    }
    100% {
        transform: rotate3d(0, 0, 1, 2deg);
    }
}

.animate__swingS {
    -webkit-animation-name: animate__swingS;
    animation-name: animate__swingS;
}

#kossori-audition .animate__swingS {
    animation-duration: 4s;
    animation-iteration-count: infinite;
     animation-timing-function: liner;
}


/******************************************************************************
 button
******************************************************************************/

#kossori-audition .apply-button {
    display: block;
    background: url(../images/button.png) no-repeat center center / contain ;
    width: 50vw;
    /* height: min(120px, 10vw); */
    height: 7.2vw;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    #kossori-audition .apply-button {
        width: 54vw;
        height: 9vw;
    }
}
@media screen and (max-width: 425px){
    #kossori-audition .apply-button {
        /* background: url(../images/button-sp.png) no-repeat center center / contain ; */
        width: 90vw;
        height: 14.7vw;
    }
}

#kossori-audition .l-btn-box__fixed {
    display: block;
    background: url(../images/button.png) no-repeat center center / contain ;
    width: 50vw;
    height: min(132px, 10vw);
    margin: 0 auto;
    position: fixed;
    z-index: 150;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px){
    #kossori-audition .l-btn-box__fixed {
        height: min(140px, 7.6vw);
        max-width: inherit;
        width: 74vw;
    }
}
@media screen and (max-width: 425px){
    #kossori-audition .l-btn-box__fixed {
        height: min(140px, 13.6vw);
        max-width: inherit;
        width: 90vw;
    }
}


/******************************************************************************
 共通
******************************************************************************/
img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    outline: none;
    text-decoration: none;
}

/******************************************************************************
 project
******************************************************************************/

/* メイン */
main {
    font-family: "Noto Sans JP", "Sans Serif JP", serif;
    background: #201a22;
}

.button-sticky-wrap {
    height: max(100vh, 100%);
}

.hidden-wrpper {
    display: block;
    overflow: hidden;
}

/* MV */
.mv {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 10.2% 0 4.6%;
    background: #EBF0F5;
    background: linear-gradient(0deg,rgba(235, 240, 245, 1) 22%, rgba(255, 255, 255, 1) 100%);
    position: relative;
}
@media screen and (max-width: 425px){
    .mv {
        padding: 15% 0 15%;
    }
}

.mv .mv-img {
    display: block;
    width: 85%;
    margin: 0 auto;
}
@media screen and (max-width: 425px){
    .mv .mv-img {
        width: 90%;
    }
}

.mv .mv-ttl {
    width: 100%;
}

.mv .mv-worries {
    width: 87.6%;
    margin: 2.8% auto 0;
}
@media screen and (max-width: 425px){
    .mv .mv-worries {
        margin-top: 15%;
    }
}

.mv .animation-face {
    display: block;
    width: 6.8vw;
    position: absolute;
    bottom: 0;
    left: 9.5vw;
}
@media screen and (max-width: 425px){
    .mv .animation-face {
        width: 10vw;
        left: 10vw;
    }
}

.mv .animation-txt {
    display: block;
    width: 5.3vw;
    position: absolute;
    bottom: 6vw;
    left: 7vw;
}
@media screen and (max-width: 425px){
    .mv .animation-txt {
        width: 8.3vw;
        bottom: 9vw;
    }
}

#kossori-audition .mv .mv-img .apply-button {
    display: block;
    margin-top: 4.2%;
}
@media screen and (max-width: 425px){
    #kossori-audition .mv .mv-img .apply-button {
        margin-top: 10%;
    }
}


.intro {
    display: block;
    background: url(../images/intro-bg.jpg) no-repeat center top / cover;
    position: relative;
}

.intro::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/animation1.png) no-repeat center center / contain;
    width: 17.6vw;
    height: 1.25vw;
    top: -0.9vw;
    left: 4vw;
    z-index: 5;
}
@media screen and (max-width: 425px){
    .intro::before {
        width: 22.6vw;
        height: 6.25vw;
        top: -3.5vw;
    }
}

.intro .bg-white {
    display: block;
    background: #FFF;
    width: 63%;
    margin: 0 auto;
    padding: 6.5% 0 23.5%;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 425px){
    .intro .bg-white {
        width: 85%;
        padding: 15% 0 33%;
    }
}

.intro .bg-white::before {
    content: "";
    position: absolute;
    background: url(../images/intro8.png) no-repeat center center / contain;
    width: 29.8vw;
    height: 27.3vw;
    top: 26vw;
    left: -21%;
    z-index: -1;
}
@media screen and (max-width: 425px){
    .intro .bg-white::before {
        top: 40vw;
        left: -15%;
    }
}

.intro .bg-white::after {
    content: "";
    position: absolute;
    background: url(../images/intro7.png) no-repeat center center / contain;
    width: 30.5vw;
    height: 28vw;
    top: 8.1vw;
    right: -12.8%;
    z-index: -1;
}
@media screen and (max-width: 425px){
    .intro .bg-white::after {
        right: -8.8%;
    }
}

.intro .intro-icon {
    display: block;
    width: 6.9%;
    margin: 0 auto 7.9%;
}
@media screen and (max-width: 425px){
    .intro .intro-icon {
            margin: 0 auto 8%;
    }
}

.intro .intro-txt1 {
    display: block;
    width: 42.9%;
    margin: 0 auto 5.9%;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 425px){
    .intro .intro-txt1 {
        width: 57%;
        margin: 0 auto 8%;
    }
}

.intro .marker-line {
    display: inline-block;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 1.18vw;
    bottom: -9%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.intro .marker-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1.18vw;
    width: 0;
    transition: width 1s ease-out;
}

.marker-line-blue::after {
    background: #e1e9f6;
}

.intro .marker-line.active::after {
    width: 100%;
}

.intro .intro-txt2 {
    display: block;
    width: 41.6%;
    margin: 0 auto 10.6%;
}
@media screen and (max-width: 425px){
    .intro .intro-txt2 {
        width: 52%;
        margin: 0 auto 15%;
    }
}

.intro .intro-txt3 {
    display: block;
    width: 40.7%;
    margin: 0 auto 4.25%;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 425px){
    .intro .intro-txt3 {
    width: 52%;
    margin: 0 auto 5%;
    }
}

.intro .marker-line-pink::after {
    background: #f7e3ec;
}

.intro .intro-txt4 {
    display: block;
    width: 58.2%;
    margin: 0 auto 6.5%;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 425px){
    .intro .intro-txt4 {
        width: 75%;
        margin: 0 auto 11%;
    }
}

.intro .intro-txt5 {
    display: block;
    width: 52%;
    margin: 0 auto 26.1%;
}
@media screen and (max-width: 425px){
    .intro .intro-txt5 {
        width: 70%;
    }
}

.intro .intro-txt6 {
    display: block;
    width: 2.8%;
    margin: 0 auto;
}

.intro .intro-txt6.animate__fadeIn {
    animation-duration: 3s;
}

.conditions {
    display: block;
    background: #f3f2f5;
    padding: 8.25% 0 6%;
    position: relative;
}
@media screen and (max-width: 425px){
    .conditions {
        padding: 13% 0 15%;
    }
}

.conditions .conditions-copy {
    display: block;
    width: 75vw;
    position: relative;
    margin: -13.5% auto 6%;
    z-index: 5;
}
@media screen and (max-width: 425px){
    .conditions .conditions-copy {
        margin: -18% auto 10%;
        width: 90vw;
    }
}

.conditions .conditions-ttl {
    display: block;
    width: 14.5%;
    margin: 0 auto 2.5%;
}
@media screen and (max-width: 425px){
    .conditions .conditions-ttl {
        width: 30%;
    }
}

.conditions .conditions-list-container {
    display: block;
    width: fit-content;
    margin: 0 auto 2.3%;
    width: 70%;
}
@media screen and (max-width: 425px){
    .conditions .conditions-list-container {
        width: 80%;
    }
}

.conditions .conditions-list {
    display: flex;
    align-self: start;
    justify-content: center;
}
@media screen and (max-width: 425px){
    .conditions .conditions-list {
        display: block;
    }
}

.conditions .conditions-list li:first-of-type {
    margin-left: 3%;
}
@media screen and (max-width: 425px){
    .conditions .conditions-list li:first-of-type {
        margin-left: 10%;
    }
}

.conditions .conditions-list li:not(:first-of-type) {
    margin-left: -1em;
}
@media screen and (max-width: 425px){
    .conditions .conditions-list li:not(:first-of-type) {
        margin-left: 10%;
    }
}

.conditions .animation-hand {
    display: block;
    width: 9.3vw;
    bottom: 3.1vw;
    right: 0;
    position: absolute;
    z-index: 5;
}
@media screen and (max-width: 425px){
    .conditions .animation-hand {
        width: 16.3vw;
        bottom: 38.1vw;
        right: -11%;
    }
}

.conditions .animation-face {
    display: block;
    width: 7.5vw;
    bottom: 7.3vw;
    right: 6vw;
    position: absolute;
    z-index: 4;
}
@media screen and (max-width: 425px){
    .conditions .animation-face {
        width: 13.5vw;
        bottom: 44.3vw;
        right: -1vw;
    }
}

.conditions .animation-txt {
    display: block;
    width: 5.1vw;
    bottom: 15.9vw;
    right: 9.5vw;
    position: absolute;
    z-index: 3;
}
@media screen and (max-width: 425px){
    .conditions .animation-txt {
        width: 9.1vw;
        bottom: 58.9vw;
        right: 6.5vw;
    }
}

.flow {
    display: block;
    background: #FFF;
    padding: 6.5% 0 0;
    position: relative;
}
@media screen and (max-width: 425px){
    .flow {
        padding: 15% 0 0;
    }
}

.flow h2 {
    display: block;
    width: 42%;
    margin: 0 auto 7.3%;
}
@media screen and (max-width: 425px){
    .flow h2 {
        width: 65%;
    }
}

.flow .flow-list-container {
    display: block;
    width: 75%;
    margin: 0 auto 6.9%;
}
@media screen and (max-width: 425px){
    .flow .flow-list-container {
        width: 90%;
        margin: 0 auto 7%;
    }
}

.flow .flow-list {
    display: block;
    width: 91%;
    margin: 0 0 0 auto;
}
@media screen and (max-width: 425px){
    .flow .flow-list {
        width: 100%;
    }
}

.flow .flow-list li:not(:last-of-type) {
    margin-bottom: 7.3%;
}

.flow .flow-goal {
    display: block;
    background: url(../images/flow-bg.jpg) no-repeat center center / cover ;
    padding: 4.5% 0 4%;
    position: relative;
}
@media screen and (max-width: 425px){
    .flow .flow-goal {
        padding: 7% 0;
    }
}

.flow .flow-goal::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/flow6.png) no-repeat center center / contain ;
    width: 8.8vw;
    height: 5.7vw;
    top: -3vw;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 425px){
    .flow .flow-goal::before {
        width: 10.8vw;
        height: 7.7vw;
        top: -4vw;
    }
}

.flow .flow-goal p {
    display: block;
    width: 47.8%;
    margin: 0 auto 1%;
}
@media screen and (max-width: 425px){
    .flow .flow-goal p {
        width: 80%;
        margin: 0 auto 7%;
    }
}

.flow .animation-hand {
    display: block;
    width: 11vw;
    top: 33.2vw;
    left: 0;
    position: absolute;
    z-index: 5;
}
@media screen and (max-width: 425px){
    .flow .animation-hand {
        width: 16vw;
        top: 4.2vw;
        left: -9vw;
    }
}

.flow .animation-face {
    display: block;
    width: 6.3vw;
    top: 35.4vw;
    left: 7.3vw;
    position: absolute;
    z-index: 4;
}
@media screen and (max-width: 425px){
    .flow .animation-face {
        width: 9.3vw;
        top: 6.4vw;
        left: 1.3vw;
    }
}

.flow .animation-txt {
    display: block;
    width: 3.43vw;
    top: 33.2vw;
    left: 12vw;
    position: absolute;
    z-index: 3;
}
@media screen and (max-width: 425px){
    .flow .animation-txt {
        width: 6.43vw;
        top: 4.2vw;
        left: 9vw;
    }
}

.flow .animation-face02 {
    display: block;
    width: 9.25vw;
    bottom: 69.4vw;
    right: 6.4vw;
    position: absolute;
}
@media screen and (max-width: 425px){
    .flow .animation-face02 {
        width: 13vw;
        bottom: 112.4vw;
        right: 1.4vw;
    }
}

.flow .animation-txt02 {
    display: block;
    width: 4.8vw;
    bottom: 79.5vw;
    right: 12.3vw;
    position: absolute;
}
@media screen and (max-width: 425px){
    .flow .animation-txt02 {
        width: 7.8vw;
        bottom: 124.5vw;
        right: 8.3vw;
    }
}

footer {
    display: flex;
    background: #FFF;
    color: #a09c9e;
    justify-content: space-between;
    align-items: center;
    padding: 0.5% 0;
}
@media screen and (max-width: 425px){
    footer {
        padding: 2% 0;
    }
}

footer .footer-container {
    display: flex;
    width: 55%;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
@media screen and (max-width: 1024px){
    footer .footer-container {
        display: block;
    }
}
@media screen and (max-width: 425px){
    footer .footer-container {
        width: 100%;
    }
}

footer .copyright {
    font-size: clamp(13px, 0.87vw, 14px);
}
@media screen and (max-width: 1024px){
    footer .copyright {
        text-align: center;
    }
}

footer ul {
    display: flex;
    align-items: center;
    gap: 2em;
}
@media screen and (max-width: 1024px){
    footer ul {
        justify-content: center;
    }
}

footer ul a {
    color: #a09c9e;
    font-size: clamp(14px, 1vw, 16px);
}