@charset "utf-8";
html {
    font-size: 62.5%;
}
body {
    font-family:
        'Noto Serif JP', serif,
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    background-color: var(--primary-white, #020014);
    color: #ffff;
    line-height: 1.5;
}
.img {
  max-width: 100%;
  height: auto;
}
*{
  margin: 0;
  padding: 0;
}





/*====================================================================
ローディング
====================================================================*/
.loader {
  margin: 0 auto;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-1{
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.loader-gif{
  margin: 0 auto;
  width: 60px;
}
.loader-txt1{
  font-family: ShokakiUtage;
  font-size: 1.4rem;
  color: #fff;
}

.loader-2-img{
  width: 71px;
  display:none;
  margin-bottom: 48px;
}

.loader-3{
  margin: 0 auto;
  font-size: 2rem;
  line-height: 2;
  display: none;
  writing-mode: vertical-rl;
}
.loader-3-txt-1{
  margin-top: 62px;
}
.loader-3-txt-2{
  margin-top: 124px;
}





/* PC 769px */
@media screen and (min-width: 769px) {
  .loader-gif{
    width: 85px;
  }
  .loader-txt1{
    font-size: 2.0rem;
  }
  .loader-2-img{
    width: 94px;
    margin-bottom: 48px;
  }
  .loader-3{
    font-size: 2.8rem;
  }
  .loader-3-txt-1{
  margin-top: 112px;
}
.loader-3-txt-2{
  margin-top: 244px;
}
}




/*====================================================================
ボタン
====================================================================*/
.btn{
    position: relative;
    z-index: 1;
    margin-left: 64vw;
    margin-top: 42px;
}
.btn-img{
    width: 114px;
    height: 42px;
}
.btn-txt-about{
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    margin: 12px 0px 0px 24px;
    text-decoration: none;
    color: #fff;
}
.btn-txt-about::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../imeges/icon-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 69px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.btn-txt-booth{
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    margin: 12px 0px 0px 36px;
    text-decoration: none;
    color: #fff;
}
.btn-txt-booth::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../imeges/icon-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 56px;
  top: 47%;
  transform: translateY(-50%);
  transition: 0.4s;
}




/* PC 769px */
@media screen and (min-width: 769px) {
  .btn-img{
    width: 148px;
    height: 50px;
}
.btn-txt-about{
  font-size: 1.2rem;
  margin: 16px 0px 0px 45px;
}
.btn-txt-about::after {
  width: 12px;
  height: 12px;
  left: 72px;
  top: 47%;
}
.btn-txt-booth{
  font-size: 1.2rem;
  margin: 16px 0px 0px 53px;
}
.btn-txt-booth::after {
  width: 12px;
  height: 12px;
  left: 68px;
  top: 47%;
}
.btn{
  margin-left: 80vw;
  margin-top: 42px;
}
}




.btn:hover {
  color: #FFFFFF;
  opacity: 0.7;
}
.navitem:hover {
  color: #FFFFFF;
  opacity: 0.7;
}
.footer-navitem:hover {
  color: #FFFFFF;
  opacity: 0.7;
}
.footer-sns-item:hover {
  color: #FFFFFF;
  opacity: 0.7;
}
.goods-img:hover {
  color: #FFFFFF;
  opacity: 0.7;
}







/*====================================================================
セクショントピック
====================================================================*/
.section-topics{
    justify-content: center;
    margin-top: 96px;
}
.section-topic{
    text-align: center;
    font-size: 2rem;
}
.section-topic-span{
  font-size: 1.2rem;
  display: block;
  text-align: center;
}
.diamond {
    width: 4px;
    height: 4px;
    border: 1px solid#fff;
    transform: rotate(45deg);
    position: relative;
    display: flex;
    flex-direction: column;
}


/* PC 769px */
@media screen and (min-width: 769px) {
  .section-topics{
    display: flex;
    margin-left: 9%;
    justify-content: left;
}
.section-topic{
    writing-mode: vertical-rl;
    font-size: 2.4rem;
    letter-spacing: 0.4em;
    margin: 0;
}
.diamond{
  margin-bottom: 9px;
  width: 5px;
  height: 5px;
}
.section-topic-span{
  font-size: 1.2rem;
  margin-top: 4px;
  margin-left: -12px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.4em;
  text-align: start;
}

}

  


/*====================================================================
Header(NAVMENU)
====================================================================*/
.nav{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
  background-color: black;
}
.header-menu-btn{
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 0 0 auto;
}
.nav-btn{
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 0 0 auto;
}
.navlist{
  writing-mode: vertical-rl;
  list-style: none;
  margin: auto;
  margin-top: 120px;
}
.navitem{
  margin-top: 42px;
  letter-spacing: 0.4em;
  font-size: 1.8rem;
  color: #fff;
  text-decoration-line: none;
  line-height: 2.75;
}
.nav-logo{
  width: 45px;
  height: 120px;
  margin-top: 84px;
  margin-left: 20px;
}
.header{
  width: fit-content;
  position: fixed;
  z-index: 11;
  right: 0;
  background: rgba(0,0,0,0);
}


/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}



/* PC 769px */
@media screen and (min-width: 769px) {
  .navlist{
    margin-top: 20vh;
    line-height: 7.75;
  }
  .navitem{
    font-size: 2rem;
  }
  .nav-logo{
    width: 80px;
    height: 230px;
    margin-top: -48px;
    margin-left: 40px;
  }
}





/*====================================================================
TOP
====================================================================*/
.artcle-Header{
  background-image: url(../imeges/top-spgb.png);
  background-size: cover;
  height: 664px;
  position: relative;
  background-repeat: no-repeat;
}

.artcle-header-topic{
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.4em;
}
.artcle-header-maintopic{
  position: absolute;
  display: flex;
  left: 45%;
  top: 40%;
  z-index: 10;
  transform: translateY(-50%);
}
.top-movie{
    top: 0;
    left: 0;
    max-width: 100%;
    height: 489px;
    object-fit: cover;
    margin-top: 88px;
    object-position: 27% 50%;
    position: absolute;
}
.artcle-header-topic-logo{
    width: calc(48 / 375 * 100vw);
    margin-top: 64px;
    margin-right: 8px;
}
.top-line{
    border-right:1px solid#fff;
    padding: 0px 8px 0px 0px;
    height: 45px;
    margin-right: 7px;
}
.h1-topic{
  display: flex;
  flex-direction: column;
  align-items: center;
}




/* PC 769px */
@media screen and (min-width: 426px) {
.artcle-header-topic-logo{
    width: calc(30 / 375 * 100vw);
  }
}





/* PC 769px */
@media screen and (min-width: 769px) {
  .artcle-header{
    height: 100vh;
  }
  .artcle-Header{
    height: 100%;
  }
  .top-movie{
    object-position: 50% 50%;
    width: 100vw;
    height: 100%;
    margin-top: 0;
  }
  .artcle-header-topic{
    font-size: 2.4rem;
    margin-top: -13px;
    font-weight: 900;
  }
  .artcle-header-topic-logo{
    width: calc(84 / 1440 * 100vw);
    margin-top: 79px;
    margin-right: 20px;
}
.artcle-header-maintopic{
  left: 45%;
  top: 40%;
  transform: translateY(-50%);
}

}


/*====================================================================
About
====================================================================*/
.about{
  padding: 0 0 96px 0;
}
.about-top-img{
  width: 100vw;
  position: relative;
}
.about-top-seirei{
  max-width: 11vw;
  display: block;
  position: absolute;
  margin-top: -20%;
  margin-left: 73vw;
}
.about-span{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.a-line{
    border-bottom:1px solid#fff;
    padding: 0px 8px 0px 0px;
    width: 172px;
    margin-left: 4px;
}
.about-txt-txt{
    text-align: center;
    font-size: 1.4rem;
    margin-top: 32px;
    font-weight: lighter;
    padding: 0px 13.6%;
    text-align: left;
}
.about-txt-topic-1{
  font-size: 1.6rem;
  margin-right: 40%;
}
.about-txt-topic-2{
  font-size: 1.6rem;
  margin-left: 17%;
}
.about-txt{
  text-align: center;
  margin-top: 64px;
}
.o{
  display: block;
  width: 304px;
  margin: 0 auto
}


/* youtube */
.movies{
  display: block;
  text-align: center;
  padding: 0 6%;
}
.movie {
  width: 64vw;
  aspect-ratio: 16 / 9;
}
.movie:last-of-type{
  margin-top: 32px;
}


/* 精霊ちゃんアニメーション */
.about-top-seirei {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}




/* PC 769px */
@media screen and (min-width: 769px) {
  .a-line{
    border-bottom: none;
    width: 0;
    border-right:1px solid#fff;
    padding: 0px 3px 0px 7px;
    margin-right: 13px;
    height: 148px;
    margin-top: -3px;
  }
  .about-span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 0px 16px;
    margin-top: -8px;
  }
  .about-txt{
    margin-top: -112px;
    padding: 0 18%;
  }
  .about-txt-topic-1{
    margin-right: 33%;
  }
  .about-txt-topic-2{
    margin-left: 20%;
  }
  .about-txt-topic-1,
  .about-txt-topic-2{
    font-size: 2.4rem;
    font-weight: lighter;
  }
  .about-txt-txt{
    font-size: 1.6rem;
    margin-top: 64px;
    margin-left: 40px;
  }
  .o{
    display: block;
    width: 543px;
    margin: 0 auto
  }
  .movie{
    width: 27vw;
  }
  .movie:last-of-type{
    margin-left: 8%;
  }
  
}




/*====================================================================
Goods
====================================================================*/
.goods{
  padding: 0 0 54px 0;
}
.goods-span{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.g-line{
  border-bottom:1px solid#fff;
  padding: 0px 8px 0px 0px;
  width: 172px;
  margin-left: 4px;
  width: 172px;
  margin-left: 4px;
}

.goods-imges{
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 72px;
  padding: 0 6%;
}
.goods-img{
  width: 35vw;
  height: 35vw;
}





/* PC 769px */
@media screen and (min-width: 769px) {
  .goods-imges{
    gap: 120px;
  }
  .g-line{
   border-bottom: none;
    width: 0;
    border-right:1px solid#fff;
    padding: 0px 2px 0px 7px;
    margin-right: 13px;
    margin-top: -3px;
    height: 82px;
    margin-top: -3px;
  }
  .goods-span{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 0px 16px;
    margin-top: -8px;
    
  }
  .goods-img{
    width: 19vw;
    height: 19vw;
  }
  
  .goods-imges{
    margin-top: -16px;
  }
}



.lb {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.7);
  opacity: 0;
  transition: .3s opacity ease;
  pointer-events: none;
  z-index: 100;
}

.lb img {
  width: 260px !important;
  max-height: 100%!important;
  cursor: pointer;
}

.lb img,
.lb iframe {
  transform: scale(.85);
  transition: .3s all ease;
}

.lb:target {
  opacity: 1;
  pointer-events: auto;
  z-index: 101;
}

.lb:target img,
.lb:target iframe {
  transform: scale(1);
}

/* 閉じるボタン*/
.lb::before,.lb::after {
  display: block;
  position: fixed;
  content: "";
  width: 38px;
  height:1px;
  top: 24px;
  right: 12px;
  background: #fff;
  border-radius: 1px;
}
.lb::before {
  transform: rotate(-315deg);
}
.lb::after {
  transform: rotate(315deg);
}



/* PC 769px */
@media screen and (min-width: 769px) {
  .lb img {
    width: 560px !important;
  }
}







/*====================================================================
Voice
====================================================================*/
.voice{
   padding: 0 0 96px 0;
}
.voice-span{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.v-line{
  border-bottom:1px solid#fff;
  padding: 0px 8px 0px 0px;
  width: 172px;
  margin-left: 4px;
}

.slider-img {
  margin: 0 -9%;
  width: 120%;
}

.slider{
  width: 100%;
  margin: 64px auto;
}
.slick-slide{
  transform: scale(0.8);
  opacity: 0.3;
  transition: all .5s;
}
.slick-center{
  transform: scale(1);
  opacity: 1;
}
.slick-arrow:before{
	content:""!important;
}
.slick-prev{
  width: 40px;
  height: 40px;
  left: 10px;
  z-index: 1;
}
.slick-next{
  width: 40px;
  height: 40px;
  right: 10px;
}
.slider{
 box-sizing:border-box;
 transition: all 1s ease-in-out;
}
.slider:focus{
 height:auto;
 width:450px;
 transition: all 1s ease-in-out;
 outline:none;
}











/* PC 769px */
@media screen and (min-width: 769px) {
  .v-line{
    border-bottom: none;
    width: 0;
    border-right:1px solid#fff;
    padding: 0px 3px 0px 7px;
    margin-right: 13px;
    height: 184px;
    margin-top: -3px;
  }
  .voice-span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 0px 16px;
    margin-top: -8px;
  }
  .slider-img {
    width: 48vw;
    margin: 0 auto;
  }
  .slick-prev{
  width: 55px;
  height: 55px;
  left: 30px;
}
.slick-next{
  width: 55px;
  height: 55px;
  right: 30px;
}
.slider{
  top: -65px;
}
}



.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s;
}

.modal img {
  max-width: 85%;  /* 画像の最大幅を親要素(modal)の90%に制限し、画面内に収まるようにする */
  max-height: 100vh;  /* 画像の最大高さをビューポートの高さ(100vh)に制限し、画面内に収まるようにする  */
  object-fit: contain;  /* 画像の比率を保持しつつ、指定された高さと幅に収める */
}

.slider-img:hover {
  cursor: zoom-in;  /* ホバー時にカーソルをズームインのアイコンに変更 */
}

.modal img:hover {
  cursor: zoom-out;  /* モーダル内の画像にホバー時にカーソルをズームアウトのアイコンに変更 */
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}








/*====================================================================
メンバーシップ
====================================================================*/
.membership-span{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.s_02{
  margin-top: 64px;
}
.m-line{
  border-bottom:1px solid#fff;
  padding: 0px 8px 0px 0px;
  width: 172px;
  margin-left: 4px;
}
.s_02 .accordion_one {
    max-width: 935px;
    /* margin: 0 auto; */
  }
  .s_02 .accordion_one .accordion_header {
    color: #fff;
    font-weight: bold;
    padding: 20px 11%;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    margin-left: 4%;
  }
  .s_02 .accordion_one .accordion_header:hover {
    opacity: .8;
  }
  .s_02 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5%;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .s_02 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 12px;
    height: 1px;
    position: absolute;
    top: 8.5px;
    left: 3px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before {
    width: 1px;
    height: 12px;
    top: 3px;
    left: 8px;
  }
  .s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .s_02 .accordion_one .accordion_inner {
    display: none;
    padding: 15px 15px;
    box-sizing: border-box;
    font-size: 1.4rem;
  }
  
  .s_02 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
  }

.membership-txt{
  text-align: end;
  margin-right: 10%;
  margin-top: 48px;
}
.s_02 .accordion_one .accordion_header {
  font-size:  1.6rem;
  text-align: left;
  padding: 20px 60px 20px 15px;
  font-weight: lighter;
}
.box_one{
  font-size: 1.2rem;
  padding: 8px 10% 15px 10%;
}


/* PC 769px */
@media screen and (min-width: 769px) {
  .m-line{
    border-bottom: none;
    width: 0;
    border-right:1px solid#fff;
    padding: 0px 8px 0px 7px;
    margin-right: 13px;
    height: 212px;
    margin-top: -3px;
    margin-left: -1px;
  }
  .membership-span{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 0px 16px;
    margin-top: -8px;
  }
  .accordion_header{
    font-size: 1.6rem;
  }
  .s_02 .accordion_one .accordion_header {
    font-size: 2rem;
    padding: 20px;
  }
  .box_one{
    font-size: 1.6rem;
    padding: 20px;
    margin-left: 4%;
  }
  .s_02 .accordion_one .accordion_header .i_box {
    width: 17px;
    height: 17px;
    top: 62%;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
    left: 1px;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before {
    left: 6.5px;
    height: 8px;
    top: 5px;
  }
  .s_02{
    margin-top: -96px;
    padding: 0 0 0 22%;
  }
  .membership-txt{
    font-size: 1.4rem;
  }
}



/*====================================================================
フッター
====================================================================*/
.neko{
  width: 238px;
  display: block;
  margin-top: 280px;
  margin-left: auto;

}
.footer{
  height: 529px;
  background-color: #042443;
}
.footer-logo{
  width: 124px;
  height: 45px;
  display: block;
  margin: auto;
  padding-top: 72px;
}
.footer-navlist{
  writing-mode: vertical-rl;
  list-style: none;
  margin: auto;

}
.footer-navitem{
  margin-top: 42px;
  letter-spacing: 0.4em;
  font-size: 1.8rem;
  color: #fff;
  text-decoration-line: none;
  line-height: 2.75;
}
.footer-sns{
  text-align: center;
}
.footer-sns-item{
  align-items: center;
  width: 65px;
  height: 65px;
  padding: 32px 10px 10px 0px;
}
.footer-sns-item:not(:last-child){
  padding-right: 20px;
}
.copy{
  font-size: 1.4rem;
  text-align: center;
  margin-top: 16px;
}


/* PC 769px */
@media screen and (min-width: 769px) {
  .footer{
    height: 589px;
  }
  .footer-navitem{
    font-size: 2rem;
  }
  .neko{
    width: 350px;
  }
  .footer-logo{
    width: 188px;
    height: 72px;
  }
}


/* スクロールトップ */
.pagetop {
  height: 45px;
  width: 45px;
  position: fixed;
  right: 8px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 12px;
  width: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
.pagetop2__arrow {
  height: 12px;
  width: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: 16px;
  transform: translateY(20%) rotate(-45deg);
}

.is-active {
  opacity: 1;
  visibility: visible;
}
.maki-qa-items{
  position: fixed;
  display: block;
  bottom: 20px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-left: 12px;
}
.maki-qa{
  height: 65px;
  margin-left: 16px;
  margin-bottom: 12px;
}
.maki-qa-txt{
  width: 80px;
  margin-left: -64px;
}

  

/* PC 769px */
@media screen and (min-width: 769px) {
  .maki-qa-items{
    margin-left: 20px;
  }
  .maki-qa{
    height: 84px;
    margin-left: 13px;
  }
  .maki-qa-txt{
  width: 90px;
  margin-left: -75px;
}
.pagetop__arrow {
  height: 16px;
  width: 16px;
}
.pagetop2__arrow {
  height: 16px;
  width: 16px;
}

}



/* FadeIn */
.scrollAnim.ready {
  opacity: 0;
  transition: all .8s ease-in;
}
.scrollAnim.ready.active {
  opacity: 1;
}
/* スケール（Scale） */
timeline-item.ready {
  transform: scale(0.8);
}
timeline-item.ready.active {
  transform: scale(1);
}


/* 背景星 */
.star-flashing {
	width: 100%;
	/* height: 100vh; */
	position: relative;
}
.star-flashing::before,
.star-flashing::after {
	width: 100%;
	height: 100%;
	content: "";
	background-image: url('../imeges/bg-star1.png');
  background-attachment: fixed;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.star-flashing::before {
	animation: star-flashing-before 10s infinite;
	opacity: 1;
}
@keyframes star-flashing-before {
	0% {
		opacity: 1;
	}
	20% {
		opacity: 0;
	}
	60% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	95% {
		opacity: 1;
	}
}
.star-flashing::after {
	transform: scaleX(-1);
	animation: star-flashing-after 10s infinite;
}
@keyframes star-flashing-after {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	60% {
		opacity: 0
	}
	80% {
		opacity: 1;
	}
	85% {
		opacity: .3;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


.container{
  overflow: hidden;
}