@charset "utf-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  color: #362e2b;
  font-size: 14px;
  font-family: "zen-kaku-gothic-new", sans-serif;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/back.jpg') no-repeat 50% 50% / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.loading-chara {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
  animation: swing_dosanko 2s ease-in-out infinite;
  transform-origin: bottom center;
}
.loading-bar-container {
  width: 200px;
  height: 4px;
  background: rgba(54, 46, 43, .1);
  border-radius: 2px;
  margin: 0 auto 10px;
  overflow: hidden;
}
.loading-bar {
  width: 100%;
  height: 100%;
  background: #3e60a7;
  animation: loading-stretch 2s infinite ease-in-out;
  transform-origin: left;
}
.loading-text {
  color: #362e2b;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .1em;
}
@keyframes loading-stretch {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes swing_dosanko {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}
.background_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('./images/back.jpg') no-repeat 50% 50% / cover;
}
.content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.content_inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 500px) {
  .content_inner {
    max-width: 100% !important;
  }
}
.content_inner_wrap {
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, .25);
  width: 100%;
}
@media screen and (max-width: 500px) {
  .content_inner_wrap {
    box-shadow: none;
  }
}
.fullscreen_menu {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .fullscreen_menu {
    display: none;
  }
}
nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  background: url('./images/back.jpg') no-repeat 50% 50% / cover;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
nav > p:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 470px;
  display: flex;
  justify-content: center;
}
nav > p:nth-of-type(1) > img {
  width: 100%;
  height: auto;
}
ul#fullscreen_menu_nav {
  margin: 138px 0 0;
  padding: 0;
  list-style-type: none;
}
ul#fullscreen_menu_nav li {
  position: relative;
  display: inline;
  padding: 0;
}
ul#fullscreen_menu_nav li:nth-of-type(1) {
  position: relative;
  display: block;
}
.dosanko-wrap {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(110px);
  width: 56px;
  line-height: 0;
}
.dosanko-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 470px) {
  ul#fullscreen_menu_nav {
    margin-top: 29vw;
  }
  .dosanko-wrap {
    width: 12vw;
    transform: translateX(23vw);
  }
}
ul#fullscreen_menu_nav li a {
  display: block;
  padding: .5em 1em;
  margin: 0 auto 1em;
  background: #ffffff;
  color: #362e2b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2em;
  transition: all .3s ease;
  width: calc(100% - 2em);
  max-width: 350px;
  text-align: center;
}
ul#fullscreen_menu_nav li a:hover {
  transform: scale(1.05);
}
.link {
  position: relative;
}
.link::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  content: "\f08e";
}
button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.menu, .menu span {
  display: inline-block;
  transition: .5s;
}
.menu {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 10;
  background: #fa5f44;
  border: 1px solid #ffffff;
  width: calc(50px + 1px);
  height: calc(50px + 1px);
  transition: all .3s ease;
}
.menu::after {
  content: "MENU";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75em;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: bold;
  color: #fff99b;
}
.menu:hover {
  transform: scale(1.05);
}
.menu span {
  position: absolute;
  height: 2px;
  background: #ffffff;
  z-index: 10;
  width: 50%;
  left: 25%;
}
.menu span:nth-of-type(1) {
  top: 10px;
}
.menu span:nth-of-type(2) {
  top: 19px;
}
.menu span:nth-of-type(3) {
  bottom: 20px;
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
.content_left-side {
  position: fixed;
  top: -12.5%;
  left: 0;
  width: calc(50vw - 250px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.content_left-side img {
  width: 80%;
  max-width: 320px;
  height: auto;
}
.content_right-side {
  position: fixed;
  top: -12.5%;
  right: 0;
  width: calc(50vw - 250px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000 !important;
  pointer-events: none;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 1px 1px 0 #ffffff;
}
.content_right-side_nav {
  pointer-events: auto !important;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: calc(100% - 1em);
  max-width: 300px;
}
.content_right-side_nav li a {
  display: block;
  padding: .5em 1em;
  margin-bottom: 1em;
  background: #ffffff;
  color: #362e2b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2em;
  box-shadow: 0 0 1em rgba(0, 0, 0, .25);
  transition: all .3s ease;
  font-size: .75em;
}
.content_right-side_nav li a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, .25);
}
@media screen and (max-width: 900px) {
  .content_left-side, .content_right-side {
    display: none !important;
  }
}
header {
  width: 100%;
  max-width: 470px;
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 470 / 780;
}
@media screen and (max-width: 500px) {
  header {
    height: auto;
    min-height: 0;
  }
}
header > #stv > a {
  position: absolute;
  top: 1%;
  left: 1%;
  width: 10%;
}
header > h1 {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
}
header > #gugu {
  position: absolute;
  top: 5%;
  left: 1%;
  width: 20%;
}
header > #dosankokun2d {
  position: absolute;
  top: 35%;
  right: 1%;
  width: 20%;
}
header > #catchcopy {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
header > #announcer {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
header > #outline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
header > #stv > a > img, header > h1 > img, header > #gugu > img, header > #dosankokun2d > img, header > #catchcopy > img, header > #announcer > img, header > #outline > img {
  width: 100%;
  height: auto;
  display: block;
}
section {
  padding: 0;
}
#area_introduction > p {
  padding: 3em 1em;
}
#area_event > h2 {
  display: flex;
  flex-direction: column;
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  color: #ffa200;
  position: relative;
	z-index: 2;
}
#area_event > h2 > img {
  position: absolute;
	z-index: 3;
  pointer-events: none;
}
#area_event > h2 > img:nth-of-type(1) {
  top: 0;
  right: .25em;
  width: 10%;
}
#area_event > h2 > img:nth-of-type(2) {
  bottom: 0;
  right: 1em;
  width: 15%;
}
@media screen and (max-width: 500px) {
  #area_event > h2 {
    font-size: 10vw;
  }
}
#area_event > article {
  background: url("images/back_orange.jpg") repeat-y 50% 50%;
  padding: 3em 1em;
}
#area_event > article > p {
  font-weight: bold;
  text-align: center;
  font-size: 1.25em;
}
#area_event > article > ul {
  margin: 2em 0;
  letter-spacing: -.35em;
  width: 100%;
}
#area_event > article > ul > li {
  margin-bottom: 1em;
  list-style: none;
}
#area_event > article > ul > li > p {
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
}
#area_event > article > ul > li > p:nth-of-type(1) {
  width: 65px;
  position: relative;
  padding-left: .75em;
  font-weight: bold;
}
#area_event > article > ul > li > p:nth-of-type(2) {
  width: calc(100% - 65px);
}
#area_event > article > ul > li > p:nth-of-type(1)::before {
  content: "";
  width: .5em;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 500px) {
  #area_event > article > ul > li > p:nth-of-type(1) {
    width: 100%;
    margin-bottom: .25em;
  }
  #area_event > article > ul > li > p {
    display: block;
  }
  #area_event > article > ul > li > p:nth-of-type(2) {
    width: 100%;
  }
}
.map {
  position: relative;
  overflow: hidden;
  padding-top: 56.72%;
  border: .35em solid #ffffff;
  width: 100%;
  margin: 1em auto;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
#area_schedule {
  padding-top: 3em;
}
#area_schedule > h2 {
  display: flex;
  flex-direction: column;
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  color: #ffa200;
  position: relative;
  text-align: right;
}
#area_schedule > h2 > img {
  position: absolute;
}
#area_schedule > h2 > img:nth-of-type(1) {
  top: 0;
  left: .25em;
  width: 13%;
}
#area_schedule > h2 > img:nth-of-type(2) {
  bottom: .25em;
  left: 1em;
  width: 15%;
}
@media screen and (max-width: 500px) {
  #area_schedule > h2 {
    font-size: 10vw;
  }
}
#area_schedule > article {
  background: url("images/back_orange.jpg") repeat-y 50% 50%;
  padding: 5em 1em;
}
#area_schedule > article > ul {
  list-style: none;
}
#area_schedule > article > ul > li:nth-of-type(1) {
  width: 100%;
  max-width: 470px;
  background: #ffffff;
}
@media screen and (max-width: 500px) {
  #area_schedule > article > ul > li:nth-of-type(1) {
    height: auto;
    min-height: 0;
  }
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) {
  position: relative;
  z-index: 1;
  margin-top: 10em;
  aspect-ratio: 470 / 200;
  background: #ffffff;
}
#area_schedule > article > ul > li#shine_part:nth-of-type(2n+1) > div:nth-of-type(1) {
  margin-top: 1em;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) > img {
  width: 100%;
  height: auto;
  display: block;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) > img.flag {
  max-width: 60%;
  position: absolute;
  top: -37%;
  left: 0;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) > img.program {
  width: 40%;
  max-width: 188px;
  max-height: 70%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) > img.program_02 {
  width: 40%;
  max-width: 188px;
  max-height: 70%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(1) > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-family: logo-line-std, sans-serif;
  font-style: normal;
  font-weight: 900;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) {
  position: relative;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: bold;
  background: #a6937c;
  color: #ffffff;
  border-radius: 0 0 .5em .5em;
  padding: .25em;
  width: calc(100% - 1em);
  max-width: 80px;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul {
  letter-spacing: -.35em;
  background: repeating-linear-gradient(90deg, #f3f0ea, #f3f0ea 15px, #ffffff 15px, #ffffff 30px);
  padding: 2em 0 1em;
  width: 100%;
  border-top: 1px dashed #a6937c;
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul > li {
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 500px) {
  #area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul > li {
    width: 100%;
  }
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul > li > img {
  width: 100%;
  max-width: 211px;
}
@media screen and (max-width: 500px) {
  #area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul > li > img {
    width: calc(100% - 2em);
    margin: 0 auto;
  }
}
#area_schedule > article > ul > li:nth-of-type(2n+1) > div:nth-of-type(2) > ul > li > p {
  background: #ffa200;
  width: calc(100% - 1em);
  max-width: 100px;
  margin: 1em auto 0;
  padding: .25em 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#area_schedule > article > ul > li:nth-of-type(2n) {
  width: 100%;
  max-width: 470px;
  background: #ffffff;
}
@media screen and (max-width: 500px) {
  #area_schedule > article > ul > li:nth-of-type(2n) {
    height: auto;
    min-height: 0;
  }
}
#area_schedule > article > ul > li:nth-of-type(2n) > div {
  position: relative;
  z-index: 1;
  margin-top: 10em;
  aspect-ratio: 470 / 150;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div > img {
  width: 100%;
  height: auto;
  display: block;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div > img.flag {
  max-width: 60%;
  position: absolute;
  top: -48%;
  left: 0;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div > p {
  position: absolute;
  font-family: logo-line-std, sans-serif;
  font-style: normal;
  font-weight: 900;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div > p:nth-of-type(1) {
  top: 50%;
  left: 20%;
  transform: translateY(-50%) translateX(-20%);
  font-size: 2em;
  background: linear-gradient(#00a4cd, #68cbe4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  line-height: 1.25;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div > img.dosankokun_pc {
  width: 90%;
  max-width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#area_schedule > article > ul > li:nth-of-type(2n) > div.dosankokun_sp {
  display: none;
}
@media screen and (max-width: 500px) {
  #area_schedule > article > ul > li:nth-of-type(2n) > div > p:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 5vw;
  }
  #area_schedule > article > ul > li:nth-of-type(2n) > div > img.dosankokun_pc {
    display: none;
  }
  #area_schedule > article > ul > li:nth-of-type(2n) > div.dosankokun_sp {
    position: static;
    display: block;
    text-align: center;
    margin: 0;
    background: repeating-linear-gradient(90deg, #f3f0ea, #f3f0ea 15px, #ffffff 15px, #ffffff 30px);
    border-top: 1px dashed #a6937c;
  }
  #area_schedule > article > ul > li:nth-of-type(2n) > div.dosankokun_sp > img {
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
  }
}
.marquee {
  width: 100%;
  background: #3e60a7;
  color: #ffffff;
  font-weight: bold;
  padding: .75em 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.marquee,
.marquee * {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.marquee_content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

.marquee_content span {
  color: #ffffff;
  padding-right: 1em;
}

.marquee_content span:nth-child(odd) {
  color: #fff000;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
footer {
  text-align: center;
}
footer > img {
  width: calc(100% - 1em);
  max-width: 150px;
  padding: 3em 0;
}
footer > p {
  font-weight: bold;
  padding: .25em;
  font-size: .75em;
}
@media screen and (max-width: 500px) {
  footer > p {
    font-size: 2.5vw;
  }
}

.js-animate,
.js-header-animate {
  opacity: 0;
  will-change: transform, opacity;
}

.anim-zoom-in.is-animated {
  animation: zoomIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

#gugu.anim-rotate-left {
  transform-origin: left bottom;
}
#gugu.anim-rotate-left.is-animated {
  animation: rotateLeft 0.4s ease-out 0.3s forwards;
}
@keyframes rotateLeft {
  0% { opacity: 0; transform: rotate(-20deg); }
  100% { opacity: 1; transform: rotate(0deg); }
}

#dosankokun2d.anim-rotate-right {
  transform-origin: left top;
}
#dosankokun2d.anim-rotate-right.is-animated {
  animation: rotateRight 0.4s ease-out 0.3s forwards;
}
@keyframes rotateRight {
  0% { opacity: 0; transform: rotate(20deg); }
  100% { opacity: 1; transform: rotate(0deg); }
}

.anim-fade-up-step4.is-animated {
  animation: fadeUp 0.4s ease-out 0.6s forwards;
}

.anim-fade-up-step5.is-animated {
  animation: fadeUp 0.4s ease-out 0.9s forwards;
}

.anim-fade-up-step6.is-animated {
  animation: fadeUp 0.4s ease-out 1.25s forwards;
}

.anim-fade-up.is-animated {
  animation: fadeUp 0.6s ease-out forwards;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.anim-fade-left.is-animated {
  animation: fadeLeft 0.6s ease-out forwards;
}
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.anim-leaf-1.is-animated {
  animation: leafFall1 1.2s ease-out 0.2s forwards;
}
.anim-leaf-2.is-animated {
  animation: leafFall2 1.4s ease-out 0.3s forwards;
}
@keyframes leafFall1 {
  0% { opacity: 0; transform: translate(20px, -30px) rotate(-30deg); }
  60% { opacity: 1; transform: translate(-5px, 5px) rotate(15deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}
@keyframes leafFall2 {
  0% { opacity: 0; transform: translate(-20px, -40px) rotate(40deg); }
  60% { opacity: 1; transform: translate(-5px, 5px) rotate(-10deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

.anim-fade-left-delay.is-animated {
  animation: fadeLeft 0.6s ease-out 0.2s forwards;
}

.anim-fade-right.is-animated {
  animation: fadeRight 0.6s ease-out forwards;
}
@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.anim-leaf-3.is-animated {
  animation: leafFall1 1.2s ease-out 0.2s forwards;
}
.anim-leaf-4.is-animated {
  animation: leafFall2 1.4s ease-out 0.3s forwards;
}

.anim-fade-right-delay.is-animated {
  animation: fadeRight 0.6s ease-out 0.2s forwards;
}