@charset "UTF-8";

/* ローディング画面 */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 6s;
    background-color: #EFE5DB;
    display: flex;
    align-items: center;
  }
  /* .spinner {
    width: 100px;
    height: 100px;
    margin: 200px auto;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
  } */
  /* ローディングアニメーション */
  @keyframes sk-scaleout {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  
  .loading_p {
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 2.5;
  }

  /* 被せる */
  #loading {
    width: 100vw;
    height: 100vh;
    transition: all 6s;
    background-color: #EFE5DB;
  
    /* 以下のコードを追加 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  .loaded {
    opacity: 0;
    visibility: hidden;
  }




/* =======================================
mv
======================================= */

.mv {
    position: relative;
}

.mv_pc {
    display: none;
}

.mv::after {
    content: '';
    background-image: url(../img/logo1.png);
    width: 209px;
    height: 87px;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    top: 219px;
    left: 23%;
}

@media screen and (min-width: 769px) {
    .mv {
        display: none;
    }

    .mv_pc {
        display: block;
    }

}

/* =======================================
josho
======================================= */

/* .josho {
    position: relative;
} */

.josho::before {
    content: '';
    background-image: url(../img/mark.png);
    width: 171px;
    height: 171px;
    display: block;
    /* position: absolute; */
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
}

/* .text_josho1 {
    margin-top: 230px;
} */

.text_josho2 {
    margin-top: 40px;
}

.text_josho3 {
    margin-top: 40px;
}

@media screen and (min-width: 769px) {
    .josho::before {
        left: 43%;
    }
}

/* =======================================
story
======================================= */

.text_story1 {
    margin-top: 40px;
}

.text_story3 {
    margin-top: 40px;
}

.text_story4 {
    margin-top: 40px;
}

.section__topic__story {
    position: relative
}

/* .section__topic__story::before {
    content: '';
    background-image: url();
    width: 253px;
    height: 337px;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
} */

.section__topic__story::before {
    content: '';
    background-image: url(../img/STORY.png);
    width: 216px;
    height: 77px;
    display: block;
    /* position: absolute; */
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
}
@media screen and (min-width: 769px) { 

    .section__topic__story::before {
        width: 370px;
        height: 133px;
    }

}

/* =======================================
member
======================================= */


.member {
    max-width: 325px;
    margin: 0 auto;
}

.flex_item {
    width: 100%;
    /* height: 362px; */
    position: relative;
}

.flex_item::before {
    content: '';
    background-image: url(../img/waku.png);
    display: block;
    width: 253px;
    height: 337px;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    top: 10%;
    left: 10%;
}

.img__member2 {
    width: 100%;
    /* height: 362px; */
}

.img__member3 {
    width: 100%;
    /* height: 362px; */
}

.section__topic__member::before {
    content: '';
    background-image: url(../img/MEMBER.png);
    width: 216px;
    height: 77px;
    display: block;
    /* position: absolute; */
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
}

@media screen and (min-width: 769px) { 
    .flex {
        display: flex;
        justify-content: space-between;
        gap: 5.5%;
        max-width: 1080px;
        margin: 0 auto;

    }

    .member {
        max-width: 1080px;
    }

    .section__topic__member::before {
        width: 370px;
        height: 133px;
    }
}
