@charset "UTF-8";
/* Scss Document */
.pc {
  display: block;
}
@media (max-width: 834px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 834px) {
  .sp {
    display: block;
  }
}

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 402;
  transform: translateY(0%);
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  background-image: url(../common/images/bg-menu.svg);
  background-size: cover;
}
.loading.out {
  transform: translateY(-100%);
}
.loading.out .loading__parts h1 img {
  opacity: 0 !important;
}

.loading__parts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
}
@media (max-width: 834px) {
  .loading__parts {
    width: 170px;
  }
}
.loading__parts h1 img {
  opacity: 0;
  width: 100%;
  transition: 0.3s all;
}

.loading.in .loading__parts h1 img {
  opacity: 1;
}

#top-container {
  background-color: #f2e025;
  position: relative;
  /* =========================
     共通ベース：動き・形だけ定義
     ========================= */
  /* ===== 左に流れる帯 ===== */
  /* ===== 右に流れる帯 ===== */
  /* ===== 固定配置パーツ ===== */
}
@media (max-width: 834px) {
  #top-container {
    overflow-x: hidden;
  }
}
#top-container .bg-fixed {
  position: fixed;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
#top-container .bgmove01,
#top-container .bgmove02 {
  position: relative;
  width: 100%;
  height: 54px;
  overflow: hidden;
}
#top-container .bgmove01::before,
#top-container .bgmove01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  will-change: transform;
}
#top-container .bgmove01::before {
  animation: scroll-left-a 80s linear infinite;
}
#top-container .bgmove01::after {
  animation: scroll-left-b 80s linear infinite;
}
@keyframes scroll-left-a {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left-b {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
#top-container .bgmove02::before,
#top-container .bgmove02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  will-change: transform;
}
#top-container .bgmove02::before {
  animation: scroll-right-a 80s linear infinite;
}
#top-container .bgmove02::after {
  animation: scroll-right-b 80s linear infinite;
}
@keyframes scroll-right-a {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-right-b {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
#top-container .logo-align {
  position: absolute;
  top: 0%;
  bottom: 0;
  margin: auto 0;
  left: 8%;
  width: 80px;
  height: 166px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 834px) {
  #top-container .logo-align {
    display: none;
  }
}
#top-container .insta-qr {
  position: absolute;
  top: 0%;
  bottom: 0;
  margin: auto 0;
  right: 8%;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 834px) {
  #top-container .insta-qr {
    display: none;
  }
}

/* ============================================================
    テーマごとの画像＆背景色差し替え
    body.theme-1 ～ body.theme-4
   ============================================================ */
/* ===== theme-1 =====
    #top-container背景    -> #f2e025
    bgmove01帯            -> bg-y01.svg
    bgmove02帯            -> bg-y02.svg
    logo-align            -> logo-align01.svg
    insta-qr              -> insta-qr01.svg
*/
body.theme-1 #top-container {
  background-color: #f2e025;
}
body.theme-1 #top-container .bgmove01::before,
body.theme-1 #top-container .bgmove01::after {
  background-image: url(../images/bg-y01.svg);
}
body.theme-1 #top-container .bgmove02::before,
body.theme-1 #top-container .bgmove02::after {
  background-image: url(../images/bg-y02.svg);
}
body.theme-1 #top-container .logo-align {
  background-image: url(../images/logo-align01.svg);
}
body.theme-1 #top-container .insta-qr {
  background-image: url(../images/insta-qr01.svg);
}

/* ===== theme-2 =====
    #top-container背景    -> #e73f2e
    bgmove01帯            -> bg-r01.svg
    bgmove02帯            -> bg-r02.svg
    logo-align            -> logo-align02.svg
    insta-qr              -> insta-qr02.svg
*/
body.theme-2 #top-container {
  background-color: #e73f2e;
}
body.theme-2 #top-container .bgmove01::before,
body.theme-2 #top-container .bgmove01::after {
  background-image: url(../images/bg-r01.svg);
}
body.theme-2 #top-container .bgmove02::before,
body.theme-2 #top-container .bgmove02::after {
  background-image: url(../images/bg-r02.svg);
}
body.theme-2 #top-container .logo-align {
  background-image: url(../images/logo-align02.svg);
}
body.theme-2 #top-container .insta-qr {
  background-image: url(../images/insta-qr02.svg);
}

/* ===== theme-3 =====
    #top-container背景    -> #0000ff
    bgmove01帯            -> bg-p01.svg
    bgmove02帯            -> bg-p02.svg
    logo-align            -> logo-align03.svg
    insta-qr              -> insta-qr03.svg
*/
body.theme-3 #top-container {
  background-color: #0000ff;
}
body.theme-3 #top-container .bgmove01::before,
body.theme-3 #top-container .bgmove01::after {
  background-image: url(../images/bg-p01.svg);
}
body.theme-3 #top-container .bgmove02::before,
body.theme-3 #top-container .bgmove02::after {
  background-image: url(../images/bg-p02.svg);
}
body.theme-3 #top-container .logo-align {
  background-image: url(../images/logo-align03.svg);
}
body.theme-3 #top-container .insta-qr {
  background-image: url(../images/insta-qr03.svg);
}

/* ===== theme-4 =====
    #top-container背景    -> #4eb344
    bgmove01帯            -> bg-w01.svg
    bgmove02帯            -> bg-w02.svg
    logo-align            -> logo-align04.svg
    insta-qr              -> insta-qr04.svg
*/
body.theme-4 #top-container {
  background-color: #4eb344;
}
body.theme-4 #top-container .bgmove01::before,
body.theme-4 #top-container .bgmove01::after {
  background-image: url(../images/bg-w01.svg);
}
body.theme-4 #top-container .bgmove02::before,
body.theme-4 #top-container .bgmove02::after {
  background-image: url(../images/bg-w02.svg);
}
body.theme-4 #top-container .logo-align {
  background-image: url(../images/logo-align04.svg);
}
body.theme-4 #top-container .insta-qr {
  background-image: url(../images/insta-qr04.svg);
}

/* テーマごとに main-box の色を変える */
body.theme-1 .main-box {
  color: #e73f2e;
}

body.theme-2 .main-box {
  color: #f2e025;
}

body.theme-3 .main-box {
  color: #e73f2e;
}

body.theme-4 .main-box {
  color: #ffffff;
}

#main {
  width: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
  height: 100vh;
  min-height: 810px;
}
@media (max-width: 834px) {
  #main {
    height: calc(100vh - 80px);
    min-height: initial;
  }
}
#main .main-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  min-height: 810px;
}
@media (max-width: 834px) {
  #main .main-box {
    height: calc(100vh - 80px);
    min-height: 138vw;
  }
}
#main .main-box .fv {
  max-width: 340px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 37vw;
  min-height: 620px;
}
@media (max-width: 834px) {
  #main .main-box .fv {
    max-width: 320px;
    height: 100vw;
    min-height: initial;
    transform: translateY(-20px);
  }
}
#main .main-box .fv svg {
  width: 100%;
  height: 100%;
}
#main .main-box .date {
  max-width: 240px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
}
#main .main-box .date img {
  width: 100%;
}

/*
.fv {
    opacity: 0;
    transform: translateY(100px);
}

.fv.animate-inbounce {
    animation: slideUpBounce 1.4s ease-in-out forwards !important;
}

@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }
    60% {
        opacity: 0.6;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
    */
/*
#logo, #logo-sp , .nav-box nav, .nav_btn , .cv-area {
    transition: all 0.8s ease-out;
    opacity: 0;
}
#logo.animate-inbounce, #logo-sp.animate-inbounce, .nav-box nav.animate-inbounce, .nav_btn.animate-inbounce, .cv-area.animate-inbounce {
    animation: slideUpBounce2 1s ease-in-out forwards !important;
}
.no-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}
@keyframes slideUpBounce2 {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    60% {
        opacity: 0.6;
        transform: translateY(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
*/
#contents {
  padding: 0 35px;
  background-color: #FFF;
}
#contents .content-box {
  margin: 0 auto;
  padding: 140px 0 0;
}
#contents .content-box h1 {
  text-align: center;
  padding: 0 0 100px;
}
#contents .content-box h2 {
  text-align: center;
  padding: 0 0 45px;
}

#about {
  text-align: center;
}

#time {
  text-align: center;
}

#map .map-ph {
  display: block;
  margin: 0 auto 30px;
}
#map .map-ph img {
  width: 100%;
}
#map .map-info {
  text-align: center;
}
#map .map-info p {
  padding-bottom: 32px;
  line-height: 26px;
}

#contact p a {
  color: #333333;
}
#contact p a:hover {
  text-decoration: underline;
}
#contact .address {
  text-align: center;
}
#contact .insta {
  text-align: center;
  padding: 60px 0;
}
#contact .social-icon {
  width: 68px;
  height: 68px;
  background-color: #d1d1d1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}
#contact .social-icon img {
  width: 30px;
  height: 30px;
  display: block;
}
#contact .social-icon:hover {
  background-color: #bfbfbf;
}
#contact .sponsor-txt {
  text-align: center;
  padding: 80px 0 0;
}
#contact .sponsor-txt h3 {
  margin-bottom: 24px;
}
#contact .sponsor-txt .support {
  padding-top: 16px;
}
#contact .sponsor {
  padding: 120px 0 40px;
  text-align: center;
}
#contact .sponsor .sponsor-box .box {
  display: block;
  width: 48%;
  margin-bottom: 16px;
}
#contact .sponsor .sponsor-box .box img {
  width: 100%;
}/*# sourceMappingURL=custom.css.map */