@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: #fdfd9d;
  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: #0c6086;
  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/pc_back.jpg') no-repeat 50% 50% / cover;
}
@media screen and (max-width: 500px) {
  .background_fixed {
    background-image: none !important;
    background-color: #f9f89d !important;
  }
}
.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: #ffffff;
  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;
}
.fullscreen_menu {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .fullscreen_menu {
    display: none;
  }
}
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: #d5f010;
  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: #0c6086;
  border: 1px solid #ffffff;
  width: calc(50px + 1px);
  height: calc(50px + 1px);
  border-radius: 50%;
  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: #fdfd9d;
}
.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: 8.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;
  background: url('images/sp_event-image_01.jpg') no-repeat 50% -325px / 470px auto;
  position: relative;
  z-index: 1;
  margin: -1.4em 0;
  aspect-ratio: 470 / 500;
}
@media screen and (max-width: 500px) {
  header {
    background: url('images/sp_event-image_01.jpg') no-repeat 100% 55% / 100% auto;
    height: auto;
    min-height: 0;
  }
}
header > h1 {
  position: absolute;
  top: 5.95%; /* 2em(28px) / 470px */
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
header > h1 > img {
  width: 100%;
  height: auto;
}
header > #stv {
  position: absolute;
  top: 5.95%;
  left: 5px;
  width: 15.53%; /* 73px / 470px */
}
header > #stv > a > img {
  /*width: 106.38%;  500px / 470px */
  width: 100%;
  display: block;
}
header > #day-place {
  position: absolute;
  bottom: 0;
  /*left: -3.4%;  -16px / 470px 
  width: 100%;*/
  left: -15px;
  width: calc(100% + 30px);
  z-index: 1;
}
header > #day-place > img {
  /*width: 106.38%;  500px / 470px */
  width: 100%;
  display: block;
}
header > #day-place::after {
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 15px;
  content: "";
  width: calc(100% - 30px);
  max-width: 470px;
  height: 70%;
  z-index: -1;
}
#introduction {
  margin-top: 3em;
  position: relative;
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(10px, calc(14 / 470 * 100vw), 14px);
}
#lead {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin: 0 auto 3em;
  aspect-ratio: 470 / 500;
}
@media screen and (max-width: 500px) {
  #lead {
    font-size: 2.8vw;
  }
}
#lead p, #lead img {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
#lead > #balloon_01 {
  position: absolute;
  top: 10.64%; /* 50px / 470px */
  left: 31.7%; /* 149px / 470px */
  width: 8.08%; /* 38px / 470px */
}
#lead > #balloon_02 {
  position: absolute;
  top: 27.23%; /* 128px / 470px */
  left: -3.4%; /* -1em(-16px) / 470px */
  width: 10.85%; /* 51px / 470px */
}
#lead > #balloon_03 {
  position: absolute;
  top: 84.04%; /* 395px / 470px */
  left: 89.36%; /* 420px / 470px */
  width: 13.82%; /* 65px / 470px */
}
#lead > #introduction_01 {
  position: absolute;
  top: 17.45%; /* 82px / 470px */
  left: 7.23%; /* 34px / 470px */
  width: 21.48%; /* 101px / 470px */
}
#lead > #introduction_02 {
  position: absolute;
  top: 29.15%; /* 137px / 470px */
  left: 34.26%; /* 161px / 470px */
  letter-spacing: .05em;
  text-shadow: 1px 1px 0 #ffffff;
}
#lead > #introduction_02 > span {
  display: inline-block;
  width: calc(100% - 20px);
}
#lead > #introduction_02 > span:nth-of-type(1) {
  font-size: 1.4em;
}
#lead > #introduction_02 > span:nth-of-type(2) {
  font-size: 2em;
  color: #c7000c;
  text-align: right;
}
#lead > #introduction_03 {
  text-shadow: 1px 1px 0 #ffffff;
  position: absolute;
  top: 50.64%; /* 238px / 470px */
  left: 2.34%; /* 11px / 470px */
}
#lead > #introduction_03 > span {
  font-size: 1.3em;
  position: relative;
  z-index: 1;
}
#lead > #introduction_03 > span::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: .5em;
  content: "";
  width: 100%;
  background: #32b16c;
}
#lead > #introduction_03 > span:nth-of-type(1) {
  margin-right: .25em;
}
#lead > #introduction_03 > span:nth-of-type(2) {
  margin-left: .25em;
}
#lead > #introduction_04 {
  text-shadow: 1px 1px 0 #ffffff;
  position: absolute;
  top: 59.15%; /* 278px / 470px */
  left: 12.34%; /* 58px / 470px */
}
#lead > #introduction_04 > span:nth-of-type(1) {
  font-size: 1.4em;
  margin-right: .25em;
  position: relative;
  z-index: 1;
}
#lead > #introduction_04 > span:nth-of-type(1)::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: .5em;
  content: "";
  width: 100%;
  background: #32b16c;
}
#lead > #introduction_04 > span:nth-of-type(2) {
  margin-left: 6em;
}
@media screen and (max-width: 500px) {
  #lead > #introduction_04 > span:nth-of-type(2) {
    margin-left: 14vw;
  }
}
#lead > #introduction_05 {
  position: absolute;
  top: 72.13%; /* 339px / 470px */
  left: 11.28%; /* 53px / 470px */
  letter-spacing: .05em;
  background: #f29c9f;
  padding: 0 .75em;
  color: #ffffff;
  text-shadow: 1px 1px #362e2b;
}
#lead > #introduction_05 > span {
  font-size: 2em;
  font-family: "m-plus-1p", sans-serif;
  font-weight: 900;
  font-style: normal;
}
#lead > #introduction_06 {
  position: absolute;
  top: 81.28%; /* 382px / 470px */
  left: 45.74%; /* 215px / 470px */
  letter-spacing: .1em;
  background: #0c6086;
  padding: .25em .75em;
  color: #fdfd9d;
  text-shadow: 1px 1px #362e2b;
  z-index: 1;
  transform: rotate(-10deg);
}
#lead > #introduction_06::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3em;
  width: 150px;
  height: 60px;
  background: #0c6086;
  clip-path: polygon(60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%);
  content: "";
  z-index: -1;
}
@media screen and (max-width: 500px) {
  #lead > #introduction_06::after {
    right: -3em;
    width: 125px;
    height: 50px;
  }
}
@media screen and (max-width: 320px) {
  #lead > #introduction_06::after {
    right: -3em;
    width: 100px;
    height: 40px;
  }
}
#lead > #introduction_06 > span {
  font-size: 1.6em;
}
#lead > #dosankokun_01 {
  position: absolute;
  top: 23.62%; /* 111px / 470px */
  left: 21.06%; /* 99px / 470px */
  width: 11.91%; /* 56px / 470px */
}
#lead > #dosankokun_02 {
  position: absolute;
  top: 45.74%; /* 215px / 470px */
  left: 86.38%; /* 406px / 470px */
  width: 11.48%; /* 54px / 470px */
}
#lead > #dosankokun_03 {
  position: absolute;
  top: 81.28%; /* 382px / 470px */
  left: 31.91%; /* 150px / 470px */
  width: 11.48%; /* 54px / 470px */
}
#lead > #beer_01 {
  position: absolute;
  top: 57.87%; /* 272px / 470px */
  left: 45.74%; /* 215px / 470px */
  width: 8.51%; /* 40px / 470px */
}
#lead > #beer_02 {
  position: absolute;
  top: 60.21%; /* 283px / 470px */
  left: 52.98%; /* 249px / 470px */
  width: 8.51%; /* 40px / 470px */
}
#lead > #beer_03 {
  position: absolute;
  top: 57.45%; /* 270px / 470px */
  left: 53.62%; /* 252px / 470px */
  width: 2.76%; /* 13px / 470px */
}
.marquee {
  background: #b5c733;
  font-size: 1.5em;
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  padding: .25em 0;
  letter-spacing: .01em;
  overflow: hidden;
  white-space: nowrap;
}
.marquee_content span {
  color: #ffffff;
  padding-right: 1em;
}
.marquee_content {
  display: inline-block;
  animation: scroll 15s linear infinite;
}
.marquee_content span:nth-child(odd) {
  color: #fdfd9d;
}
#oa > div:nth-of-type(2) {
  padding: 3em 1em 6em;
  background: linear-gradient(to right, #d5f010, #d5f010 50%, #e0f44c 50%, #e0f44c);
  background-size: 25px 100%;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
article {
  width: calc(100% - 2em);
  margin: 0 auto;
}
h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: clamp(14px, 4vw, 24px);
  }
}
.video-container {
  position: relative;
  padding-top: 56.25%;
  border: .35em solid #ffffff;
  border-radius: 2em;
  width: 100%;
  margin: 1em auto;
  cursor: pointer;
  background: #000000;
  overflow: visible;
}
.custom-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 1.8em;
}
.play-button {
  position: absolute;
  bottom: -4em;
  right: 3em;
  width: 22.4%; /* 112px / 500px */
  height: 39.85%; /* 112px / 281px */
  background: #f29c9f;
  border: .5em solid #f29c9f;
  box-shadow: 2px 2px 0 #362e2b;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all .3s ease;
}
.play-button:hover {
  transform: scale(1.05);
}
.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate-anime 10s linear infinite;
  pointer-events: none;
}
@keyframes rotate-anime {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.inner-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #ffffff;
  border-radius: 3px;
  margin-left: 5px;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .inner-triangle {
    border-width: 7.5px 0 7.5px 13.5px;
  }
}
@media screen and (max-width: 320px) {
  .inner-triangle {
    border-width: 5px 0 5px 9px;
  }
}
.circle_text {
  width: 38.29%; /* 180px / 470px */
  height: auto;
  min-width: 140px;
}
.circle_text svg {
  overflow: visible;
}
.circle_text text {
  fill: #362e2b;
  font-size: .4em;
  font-weight: 400;
}
.circle_text .star {
  fill: #b5c733;
}
.main_title {
  display: block;
  color: #b5c733;
  font-size: clamp(14px, 6vw, 24px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.2;
}
#area_information {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  overflow: visible;
  margin-bottom: 0;
  padding: 6em 0 0;
}
#area_information::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 100px;
  background: repeat 0 0 / 100% 110%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,64L80,96C160,128,320,192,480,186.7C640,181,800,107,960,90.7C1120,75,1280,117,1360,138.7L1440,160L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
  transform: scaleX(-1);
  z-index: 11;
}
.cp_box *, .cp_box *:before, .cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_box {
  position: relative;
}
.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: -1em;
  width: 100%;
  height: 5em;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #ffffff 50%, #ffffff 100%);
  transition: all .3s ease;
}
.cp_box input:checked + label {
  background: inherit;
}
.cp_box label::before {
  position: absolute;
  z-index: 2;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  content: 'VIEW ALL　';
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: .5em 2em;
  text-align: left;
  background: #0c6086;
  border-radius: 4vw;
  color: #fdfd9d;
  letter-spacing: .1em;
  box-shadow: 2px 2px 0 #362e2b;
  white-space: nowrap;
}
.cp_box label::after {
  position: absolute;
  z-index: 3;
  bottom: -1.2em;
  left: calc(50% + 3em);
  transform: translateX(-50%);
  width: 1.15em;
  height: 1.15em;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f107';
  color: #0c6086;
  font-size: 1.25em;
}
.cp_box label:hover {
  transform: scale(1.05);
}
.cp_box input:checked + label::before {
  content: 'CLOSE 　';
  padding: .5em 2.75em;
}
.cp_box input:checked + label::after {
  content: '\f106';
}
.cp_box input {
  display: none;
}
.cp_box .cp_container {
  overflow: hidden;
  height: 200px;
  transition: .5s ease;
}
.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-top: 0;
  padding-bottom: .5em;
  transition: .5s ease;
}
ul#news {
  margin: 2em auto;
  padding: 0;
  background: transparent;
}
ul#news li:nth-of-type(1) {
  border-top: 1px solid;
}
ul#news li {
  list-style: none;
  margin: 0;
  padding: .5em 0;
  border-bottom: 1px solid;
}
ul#news li > span {
  font-weight: bold;
  color: #b5c733;
}
ul#news li a {
  text-decoration: none;
  display: inline-block;
  transition: .5s ease;
  color: #362e2b;
}
ul#news li a:hover {
  opacity: .5;
}
#area_image {
  width: 100%;
  aspect-ratio: 470 / 500;
  background: url('images/sp_event-image_01.jpg') no-repeat fixed 50% 50% / 470px auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  #area_image {
    background: url('images/sp_event-image_01.jpg') no-repeat scroll 100% 55% / 470px auto;
  }
}
#area_event {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  overflow: visible;
  margin-top: 0;
  padding: 6em 0;
}
#area_event::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -80px;
  width: 100%;
  height: 110px;
  background: no-repeat 0 0 / 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,224L80,202.7C160,181,320,139,480,144C640,149,800,203,960,208C1120,213,1280,171,1360,149.3L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  z-index: 11;
}
.outline {
  background: #d5f010;
  border-radius: 2em;
  margin: 2em auto;
  padding: 2em 1em;
  border: .35em solid #f2f2f2;
}
@media screen and (max-width: 500px) {
  .outline {
    border-radius: 4vw;
  }
}
.outline > p {
  font-weight: bold;
  text-align: center;
  font-size: 1.25em;
}
.outline > ul {
  margin: 1em 0;
  letter-spacing: -.35em;
  width: 100%;
}
.outline > ul > li {
  margin-bottom: 1em;
  list-style: none;
}
.outline > ul > li > p {
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
}
.outline > ul > li > p:nth-of-type(1) {
  width: 65px;
  position: relative;
  padding-left: .75em;
  font-weight: bold;
}
.outline > ul > li > p:nth-of-type(2) {
  width: calc(100% - 65px);
}
.outline > 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) {
  .outline > ul > li > p:nth-of-type(1) {
    width: 100%;
    margin-bottom: .25em;
  }
  .outline > ul > li > p {
    display: block;
  }
  .outline > ul > li > p:nth-of-type(2) {
    width: 100%;
  }
}
.map {
  position: relative;
  overflow: hidden;
  padding-top: 56.72%;
  border: .35em solid #ffffff;
  border-radius: 2em;
  width: 100%;
  margin: 1em auto;
}
@media screen and (max-width: 500px) {
  .map {
    border-radius: 4vw;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
#outline_image {
  width: 100%;
  max-width: 470px;
  aspect-ratio: 470 / 180;
  position: relative;
  margin: 0 auto;
}
#outline_image p img {
  width: 100%;
  height: auto;
  display: block;
}
#outline_image > #event-image_02 {
  position: absolute;
  top: 0;
  left: 31.27%; /* 147px / 470px */
  width: 48.93%; /* 230px / 470px */
}
#outline_image > #event-image_02 > img {
  border-radius: 2em;
  border: .35em solid #ffffff;
}
@media screen and (max-width: 500px) {
  #outline_image > #event-image_02 > img {
    border-radius: 4vw;
  }
}
#outline_image > #dosankokun_04 {
  position: absolute;
  top: 56%;
  left: 74.46%; /* 350px / 470px */
  width: 13.82%; /* 65px / 470px */
}
#outline_image > #balloon_04 {
  position: absolute;
  top: -20%;
  left: -13.61%; /* 4em(64px) / 470px */
  width: 16.17%; /* 76px / 470px */
}
#event_corner {
  position: relative;
  background: #d5f010;
  padding: 2em 0;
  margin: 200px 0 1em;
  width: 100%;
}
#event_corner > p {
  width: 100%;
  height: auto;
}
#event_corner > p img {
  width: 100%;
  height: auto;
  display: block;
}
#event_corner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #d5f010;
  border-radius: 50% / 100% 100% 0 0;
}
#event_corner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #d5f010;
  border-radius: 50% / 0 0 100% 100%;
}
#event_corner > #garland_02 {
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#event_corner > #balloon_05 {
  position: absolute;
  top: -130px;
  right: -3.40%; /* 1em(14px) / 470px */
  width: 7.87%; /* 37px / 470px */
}
#event_corner > #kitchencar {
  position: absolute;
  top: -100px;
  left: 46.81%; /* 220px / 470px */
  width: 45.95%; /* 216px / 470px */
}
#event_corner > #dosankokun_05 {
  position: absolute;
  top: -76px;
  left: 82.98%; /* 390px / 470px */
  width: 11.27%; /* 53px / 470px */
}
@media screen and (max-width: 500px) {
  #event_corner {
    position: relative;
    background: #d5f010;
    padding: 2em 0;
    margin: 42vw 0 1em;
    width: 100%;
  }
  #event_corner > #garland_02 {
    position: absolute;
    /* -190px / 470px ≒ -40vw */
    top: -40vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  #event_corner > #balloon_05 {
    position: absolute;
    /* -130px / 470px ≒ -28vw */
    top: -28vw;
    right: -3.40%;
    width: 7.87%;
  }
  #event_corner > #kitchencar {
    position: absolute;
    /* -100px / 470px ≒ -21vw */
    top: -21vw;
    left: 46.81%;
    width: 45.95%;
  }
  #event_corner > #dosankokun_05 {
    position: absolute;
    /* -80px / 470px ≒ -17vw */
    top: -17vw;
    left: 82.98%;
    width: 11.27%;
  }
}
h3 {
  text-align: center;
}
@media screen and (max-width: 500px) {
  h3 {
    font-size: 4vw;
  }
}
.corner {
  position: relative;
  overflow: hidden;
  border: .35em solid #f2f2f2;
  border-radius: 2em;
  width: calc(100% - 2em);
  margin: 1em auto 4em;
  background: #ffffff;
  padding: 1em;
}
@media screen and (max-width: 500px) {
  .corner {
    border-radius: 4vw;
  }
}
.slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.slider-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-wrapper::-webkit-scrollbar {
  display: none;
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.image-container {
  /*width: 100%;*/
  width: calc(100% - .5em);
  aspect-ratio: 500 / 338;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 2em;
}
@media screen and (max-width: 500px) {
  .image-container {
    border-radius: 4vw;
  }
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slide-content {
  width: calc(100% - .5em);
  margin: 0 auto;
  padding: 1em 0 3em;
}
.slide-content > .booth {
  margin: 0 0 .5em 0;
  position: relative;
  padding-left: .75em;
  font-weight: bold;
}
.slide-content > .booth::before {
  content: "";
  width: .5em;
  height: 100%;
  background: #f29c9f;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-content > .booth > span {
  border-radius: .25em;
  display: inline-block;
  background: #f29c9f;
  color: #ffffff;
  padding: 0 .5em;
  font-weight: normal;
  font-size: .75em;
}
.slide-content p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.nav-btn-guide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 500 / 338;
  pointer-events: none;
  z-index: 1;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  background: #0c6086;
  color: #ffffff;
  border: none;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 #362e2b;
  transition: transform .2s, background .2s;
}
.nav-btn:hover {
  background: #0e75a3;
  transform: translateY(-50%) scale(1.05);
}
.nav-btn:active {
  box-shadow: none;
  transform: translateY(-50%) translate(2px, 2px);
}
.prev {
  left: -.8em;
}
.next {
  right: -.8em;
}
.nav-btn i {
  font-size: 1.5em;
  text-shadow: none;
}
.dots-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5em;
  z-index: 1;
}
.dot {
  display: block;
  width: .5em;
  height: .5em;
  background: rgba(0, 0, 0, .3);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active {
  background: #f29c9f;
  transform: scale(1.2);
}
footer {
  text-align: center;
}
footer > img {
  width: calc(100% - 1em);
  max-width: 150px;
}
footer > p {
  font-weight: bold;
  margin-top: 3em;
  padding: .25em;
  font-size: .75em;
}
@media screen and (max-width: 500px) {
  footer > p {
    font-size: 2.5vw;
  }
}
/* =========================================
   1. 常時動いている要素（ベース）
   ========================================= */
/* introduction_01.png：2秒間隔で拡大縮小 */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
#introduction_01 {
  animation: pulse 2s ease-in-out infinite;
}
/* 風船：ふわふわ（共通設定） */
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
#balloon_01, #balloon_02, #balloon_03 {
  animation: fluffy 3s ease-in-out infinite;
}
#balloon_04, #balloon_05 {
  animation: fluffy 3.5s ease-in-out infinite; /* 少し周期をずらす */
}
#balloon_04 {
  animation-delay: .4s;
}
#balloon_05 {
  animation-delay: .8s;
}
/* どさんこ君：左右に振れる（共通設定） */
@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}
#dosankokun_01, #dosankokun_02, #dosankokun_03, #dosankokun_04, #dosankokun_05 {
  transform-origin: bottom center;
  animation: swing 2s ease-in-out infinite;
}
/* 動きをバラけさせるためのディレイ */
#dosankokun_04 {
  animation-delay: .2s;
}
#dosankokun_05 {
  animation-delay: .5s;
}
/* =========================================
   2. タイムライン連動アニメーション (全体10秒)
   ========================================= */
/* A: 拡大縮小（色変更なし） */
@keyframes stepScaleSimple {
  0%, 12% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.25);
  }
  8% {
    transform: scale(1);
  }
}
/* B: 拡大縮小（色変更あり：アカプラ・GO！用） */
@keyframes stepScaleColor {
  0%, 12% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.3);
    color: #fdfd9d;
  }
  8% {
    transform: scale(1);
  }
}
/* C: マーカー（初期非表示からスライド） */
@keyframes lineGrowSingle {
  0% {
    transform: translateX(-100%);
  }
  4% {
    transform: translateX(0);
  }
  8%, 100% {
    transform: translateX(101%);
  }
}
/* -----------------------------------------
   【0s〜】1. イベント名パート
   ----------------------------------------- */
#introduction_02 span {
  display: inline-block;
  animation: stepScaleSimple 10s infinite;
}
#introduction_02 span:nth-of-type(1) {
  animation-delay: 0s;
}
#introduction_02 span:nth-of-type(2) {
  animation-delay: .6s;
}
/* -----------------------------------------
   【1.8s〜】2. 紹介パート（マーカー / .6秒間隔）
   ----------------------------------------- */
#introduction_03 > span, #introduction_04 > span:nth-of-type(1) {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}
#introduction_03 > span::after, #introduction_04 > span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: .5em;
  width: 100%;
  background: #fdfd9d;
  transform: translateX(-100%);
  animation: lineGrowSingle 10s infinite;
}
#introduction_03 > span:nth-of-type(1)::after {
  animation-delay: 1.8s;
}
#introduction_03 > span:nth-of-type(2)::after {
  animation-delay: 2.4s;
}
#introduction_04 > span:nth-of-type(1)::after {
  animation-delay: 3.0s;
}
/* -----------------------------------------
   【4.5s〜】3. ビール乾杯パート（元気よく！）
   ----------------------------------------- */
@keyframes kanpai-L-energetic {
  0%, 43%, 60%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  45% {
    transform: translate(-15px, 10px) rotate(-15deg);
  }
  48% {
    transform: translate(8px, -8px) rotate(15deg);
  }
  53% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes kanpai-R-energetic {
  0%, 43%, 60%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  45% {
    transform: translate(15px, 10px) rotate(15deg);
  }
  48% {
    transform: translate(-8px, -8px) rotate(-15deg);
  }
  53% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes beer-pop-fast {
  0%, 47%, 65%, 100% {
    transform: translateY(10px);
    opacity: 0;
  }
  48% {
    transform: translateY(-30px);
    opacity: 1;
  }
  58% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
#beer_01 {
  animation: kanpai-L-energetic 10s infinite;
  opacity: 1;
}
#beer_02 {
  animation: kanpai-R-energetic 10s infinite;
  opacity: 1;
}
#beer_03 {
  animation: beer-pop-fast 10s infinite;
}
/* -----------------------------------------
   【6.5s〜】4. 日付・アカプラ・GO！
   ----------------------------------------- */
#introduction_05 span {
  display: inline-block;
  animation: stepScaleSimple 10s infinite;
}
#introduction_06 span {
  display: inline-block;
  animation: stepScaleColor 10s infinite;
}
#introduction_05 span:nth-of-type(1) {
  animation-delay: 6.5s;
}
#introduction_05 span:nth-of-type(2) {
  animation-delay: 6.9s;
}
#introduction_05 span:nth-of-type(3) {
  animation-delay: 7.3s;
}
#introduction_06 span:nth-of-type(1) {
  animation-delay: 8.3s;
}
#introduction_06 span:nth-of-type(2) {
  animation-delay: 8.7s;
}
/* 隣り合うキャラクターと動きをずらす */
#dosankokun_04 {
  animation-delay: .2s;
}
#dosankokun_05 {
  animation-delay: .5s;
}
/* -----------------------------------------
   
   ----------------------------------------- */
/* アニメーションの定義 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 最初は透明にしておく */
/* h2 と h3 の共通設定：最初は透明 */
h2, h3 {
  opacity: 0;
  transition: opacity .5s;
}
/* 表示された時の動き（ふわっと浮き上がる） */
.is-active {
  animation: fadeInUp .8s ease-out forwards;
}
/* h3 の左右の線（共通設定） */
h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
h3::before, h3::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: currentColor; /* 文字と同じ色にする */
  transition: transform .8s ease-out .3s; /* 文字より少し遅れて伸びる */
  transform: scaleX(0);
}
h3::before {
  margin-right: 1em;
  transform-origin: right;
}
h3::after {
  margin-left: 1em;
  transform-origin: left;
}
/* h3 がアクティブになった時だけ線を伸ばす */
h3.is-active::before, h3.is-active::after {
  transform: scaleX(1);
}