@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  list-style: none;
}
*::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.4s;
}
body a {
  transition: 0.4s;
}
body img {
  max-width: 100%;
  width: 100%;
  transition: 0.4s;
}

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

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  img {
    pointer-events: none;
  }
}
#load {
  background: #fff;
  position: fixed;
  height: 100svh;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  transition-delay: 2s;
  animation: view 0.5s ease-in-out 2s forwards;
}
@keyframes view {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

.wrap {
  overflow: hidden;
}

header {
  background: url(./img/header_bg.png) no-repeat left top/cover;
  position: relative;
  height: 15.36vw;
  z-index: 2;
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー */
  /* メニュー内 */
  /* 小項目リスト */
  /* SHAREボタン */
  /* SHAREボタン */
  /* メニュー内 */
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー */
}
@media screen and (max-width: 767px) {
  header {
    background: url(./img/sp/sp_header.png) no-repeat right top/cover;
    height: 140px;
  }
}
header .header_logo {
  position: absolute;
  top: 16px;
  right: 160px;
  width: 11.45vw;
}
@media screen and (max-width: 767px) {
  header .header_logo {
    width: 15vw;
    top: 25px;
    right: 80px;
  }
}
header h1 {
  font-size: 5vw;
  font-weight: 900;
  margin-left: 11vw;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  header h1 {
    font-size: 9vw;
    margin-left: 10px;
    padding-top: 16px;
  }
}
header .catch {
  font-weight: 900;
  font-size: 1.6vw;
  margin-left: 11vw;
  margin-top: 2.8vw;
}
@media screen and (max-width: 767px) {
  header .catch {
    font-size: 3.3vw;
    margin-left: 0;
    width: 85%;
    margin: 0 auto;
    margin-top: 30px;
    margin-left: 5%;
    line-height: 1.5;
  }
}
header .menu-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: 1px solid #000;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  header .menu-btn {
    transform: scale(0.7);
    top: 10px;
    right: 10px;
  }
}
header .menu-btn span,
header .menu-btn span:before,
header .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
header .menu-btn span:before {
  bottom: 10px;
}
header .menu-btn span:after {
  top: 10px;
}
header #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
header #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
header #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
header #menu-btn-check {
  display: none;
}
header .menu-content-back {
  background: #000;
  width: 100%;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: 79;
  display: none;
}
header .menu-content {
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  header .menu-content {
    width: 100%;
  }
}
header .menu-content::after {
  content: "";
  background: url(./img/footer_logo.png) no-repeat left bottom/45%;
  width: 44.271vw;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  header .menu-content::after {
    width: 90%;
  }
}
header .menu-content-inner {
  height: 100vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}
header .menu-content ul.menu_box {
  padding: 50px 22% 15px 36%;
  color: #fff;
  font-size: 3.4vw;
  line-height: 1;
  font-family: abolition, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box {
    padding: 10% 20%;
    font-size: 56px;
  }
}
header .menu-content ul.menu_box .jp_txt {
  font-size: 1.666vw;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  position: relative;
  padding-left: 2.865vw;
}
header .menu-content ul.menu_box .jp_txt::before {
  content: "";
  background-image: url(./img/new_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.031vw;
  height: 2.292vw;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .jp_txt {
    font-size: 26px;
    padding-left: 40px;
  }
  header .menu-content ul.menu_box .jp_txt::before {
    width: 32px;
    height: 36px;
  }
}
header .menu-content ul.menu_box .com_txt {
  color: #adadad;
  position: relative;
  padding-left: 2.448vw;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .com_txt {
    margin-top: 40px;
  }
}
header .menu-content ul.menu_box .com_txt::before {
  content: "";
  background-image: url(./img/menu_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.927vw;
  height: 1.927vw;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .com_txt {
    font-size: 24px;
    padding-left: 35px;
  }
  header .menu-content ul.menu_box .com_txt::before {
    width: 30px;
    height: 30px;
  }
}
header .menu-content ul.menu_box .event_txt {
  color: #ebc21e;
  font-size: 2.083vw;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_txt {
    font-size: 32px;
  }
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 {
  color: #fff;
  margin-top: 1.542vw;
  margin-left: -2.048vw;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_txt ul.menu_ul_02 {
    margin-top: 20px;
    margin-left: -29px;
  }
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li {
  font-size: 1.563vw;
  position: relative;
  padding-left: 4.1vw;
  margin-bottom: 20px;
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li:nth-child(2) {
  margin-bottom: 30px;
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li::before {
  content: "";
  background-image: url(./img/menu_arrows.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25vw;
  height: 0.858vw;
  position: absolute;
  top: 56%;
  left: 2.25vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li {
    font-size: 24px;
    padding-left: 57px;
  }
  header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li::before {
    width: 20px;
    height: 22px;
    top: 75%;
    left: 30px;
  }
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li.close {
  color: #adadad;
}
header .menu-content ul.menu_box .event_txt ul.menu_ul_02 li.close a {
  pointer-events: none;
}
header .menu-content ul.menu_box .event_end_txt {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_end_txt {
    margin-top: 40px;
  }
}
header .menu-content ul.menu_box .event_end_txt::before {
  background-image: url(./img/menu_icon.svg);
}
header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 {
  color: #fff;
  margin-top: 1.542vw;
  margin-left: -2.048vw;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 {
    margin-top: 20px;
    margin-left: -29px;
  }
}
header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 li {
  font-size: 1.563vw;
  position: relative;
  padding-left: 4.1vw;
}
header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 li::before {
  content: "";
  background-image: url(./img/event_end_txt_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25vw;
  height: 1.458vw;
  position: absolute;
  top: 56%;
  left: 1.78vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 li {
    font-size: 24px;
    padding-left: 52px;
  }
  header .menu-content ul.menu_box .event_end_txt ul.menu_ul_02 li::before {
    width: 20px;
    height: 22px;
    top: 54%;
    left: 25px;
  }
}
header .menu-content ul.menu_box li ul.menu_ul_02 {
  color: #adadad;
  margin-top: 1.542vw;
  margin-left: -2.048vw;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box li ul.menu_ul_02 {
    margin-top: 20px;
    margin-left: -29px;
  }
}
header .menu-content ul.menu_box li ul.menu_ul_02 li {
  font-size: 1.563vw;
  position: relative;
  padding-left: 4.5vw;
}
header .menu-content ul.menu_box li ul.menu_ul_02 li::before {
  content: "";
  background-image: url(./img/menu_deco_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25vw;
  height: 1.458vw;
  position: absolute;
  top: 0;
  left: 2.25vw;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box li ul.menu_ul_02 li {
    font-size: 24px;
    padding-left: 57px;
  }
  header .menu-content ul.menu_box li ul.menu_ul_02 li::before {
    width: 20px;
    height: 22px;
    left: 30px;
  }
}
header .menu-content ul.menu_box li.navi_month_menu {
  margin-top: 0;
  margin-bottom: 5px;
  color: #fff;
  line-height: 3rem;
  font-size: 1.56vw;
  line-height: 2.7rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .menu-content ul.menu_box li.navi_month_menu {
    font-size: 20px;
  }
}
header .menu-content ul.menu_box li.navi_month_menu.new {
  margin-top: -15px;
  margin-bottom: 25px;
}
header .menu-content ul.menu_box li.navi_month_menu span {
  display: inline-block;
  margin-bottom: 1vw;
  transition: all 0.3s;
  font-weight: 900;
}
header .menu-content ul.menu_box li.navi_month_menu:hover span {
  color: #ebc21e;
}
header .menu-content ul.menu_box li.navi_month_menu span::before {
  content: "";
  display: inline-block;
  padding-left: 35px;
  width: 29px;
  height: 29px;
  background: url(./img/menu_icon.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 7px;
}
header .menu-content ul.menu_box li.new::before {
  content: "";
  display: inline-block;
  padding-left: 42px;
  margin-left: -46px;
  width: 34px;
  height: 38px;
  background: url(./img/menu_icon_new.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 12px;
  transition: all 1.5s;
  animation: lightdrop02 1.5s infinite;
}
@keyframes lightdrop02 {
  0% {
    filter: contrast(100%) drop-shadow(0 0px 2px rgb(109, 209, 237)) drop-shadow(0 0px 2px rgb(109, 209, 237));
  }
  50% {
    filter: contrast(120%) drop-shadow(0 0px 2px rgb(109, 209, 237)) drop-shadow(0 0px 9px rgb(109, 209, 237));
  }
  75% {
    filter: contrast(110%) drop-shadow(0 0px 2px rgb(109, 209, 237)) drop-shadow(0 0px 9px rgba(109, 209, 237, 0.5));
  }
  100% {
    filter: contrast(100%) drop-shadow(0 0px 2px rgb(109, 209, 237)) drop-shadow(0 0px 9px rgba(109, 209, 237, 0));
  }
}
header .menu-content ul.menu_box li.new span {
  color: #ebc21e;
}
header .menu-content ul li {
  list-style: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  header .menu-content ul li {
    margin-bottom: 20px;
  }
}
header .menu-content ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
header .menu-content ul li a:hover {
  color: #ebc21e;
}
header .menu_box_list_april,
header .menu_box_list_march {
  display: none;
}
header .menu_box_list {
  font-size: 1.56vw;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  margin-left: 3vw;
}
@media screen and (max-width: 767px) {
  header .menu_box_list {
    font-size: 20px;
  }
}
header .menu_box_list li {
  margin-bottom: 15px;
  padding-left: 50px;
  line-height: 1.6rem;
  background: url(./img/menu_arrows.svg) no-repeat;
  background-size: contain;
}
header .menu_box_list li:last-of-type {
  margin-bottom: 0;
}
header .menu-content hr {
  color: #fff;
  width: 80%;
  margin: 0 auto;
}
header .menu-content .coming_soon {
  color: #ccc;
  font-weight: 900;
  text-align: center;
  font-size: 1.56vw;
  margin: 3vw 0 4vw;
}
@media screen and (max-width: 767px) {
  header .menu-content .coming_soon {
    font-size: 20px;
  }
}
header .share_box {
  color: #fff;
  text-align: center;
}
header .share_box p {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-top: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  header .share_box p {
    font-size: 12px;
    line-height: 12px;
    margin-top: 0;
  }
}
header .share_box ul {
  padding: 0;
  margin-bottom: 1vw;
}
header .share_box ul li {
  display: inline-block;
  margin-right: 30px;
}
header .share_box ul li:last-of-type {
  margin-right: 0;
}
header .share_box ul li a {
  padding: 0;
  display: block;
}
header .facebook_btn svg,
header .twitter_btn svg,
header .line_btn svg {
  fill: #fff;
  transition: all 0.3s;
}
header .facebook_btn svg:hover {
  fill: #1877f2;
}
header .twitter_btn svg:hover {
  fill: #1da1f2;
}
header .line_btn svg:hover {
  fill: #4cc764;
}
header #menu-btn-check:checked ~ .menu-content {
  opacity: 1;
  pointer-events: auto;
}
header #menu-btn-check:checked ~ .menu-content-back {
  opacity: 0.4;
  display: block;
}
header .goods_link {
  font-size: 1.26vw;
  color: #fff;
  font-weight: 900;
  text-align: center;
  margin-top: 2vw;
  margin-bottom: 14vw;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  header .goods_link {
    margin-top: 34px;
  }
}
header .goods_link a {
  transition: all 0.3s;
}
header .goods_link a:hover {
  color: #ebc21e;
}
header .goods_link a span {
  padding-left: 3.3vw;
  background: url(./img/menu_arrows.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  header .goods_link a span {
    font-size: 16px;
    padding-left: 40px;
  }
}

main {
  margin-top: -100px;
  background: url(./img/top_bg.svg) no-repeat right 70%/95%, linear-gradient(90deg, #000, #494949, #000);
  position: sticky;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 0;
    background: url(./img/top_bg.svg) no-repeat right 65%/95%, linear-gradient(90deg, #000, #494949, #000);
  }
}
main .swiper {
  overflow: visible;
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 767px) {
  main .swiper {
    margin-bottom: 24.419vw;
  }
}
main .swiper-container ul {
  margin-top: 2vw !important;
}
@media screen and (max-width: 767px) {
  main .swiper-container ul {
    margin-top: 0 !important;
  }
}
main .swiper-button-next,
main .swiper-rtl .swiper-button-prev,
main .swiper-button-prev,
main .swiper-rtl .swiper-button-next {
  width: 100px;
}
main .swiper-button-prev,
main .swiper-rtl .swiper-button-next {
  left: -7.771vw;
}
@media screen and (max-width: 767px) {
  main .swiper-button-prev,
  main .swiper-rtl .swiper-button-next {
    left: min(18.605vw, 80px);
    top: auto;
    bottom: -24.651vw;
  }
}
main .swiper-button-next,
main .swiper-rtl .swiper-button-prev {
  right: -7.771vw;
}
@media screen and (max-width: 767px) {
  main .swiper-button-next,
  main .swiper-rtl .swiper-button-prev {
    right: min(18.605vw, 80px);
    top: auto;
    bottom: -24.651vw;
  }
}
main .swiper-horizontal > .swiper-pagination-bullets,
main .swiper-pagination-bullets.swiper-pagination-horizontal,
main .swiper-pagination-custom,
main .swiper-pagination-fraction {
  bottom: -2.604vw;
}
@media screen and (max-width: 767px) {
  main .swiper-horizontal > .swiper-pagination-bullets,
  main .swiper-pagination-bullets.swiper-pagination-horizontal,
  main .swiper-pagination-custom,
  main .swiper-pagination-fraction {
    bottom: -20.163vw;
  }
}
main .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #adadad;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
main .swiper-pagination-bullet-active {
  background: #fff;
}
main .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
main .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px);
}
@media screen and (max-width: 767px) {
  main .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  main .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
  }
}
main .swiper-button-next:after,
main .swiper-button-prev:after {
  content: "";
  background: url(./img/goods_slider_arrows_next.svg) no-repeat center center/contain;
  width: 5.208vw;
  height: 4.948vw;
}
main .swiper-button-prev:after {
  transform: rotate(180deg);
}
main #mv {
  overflow-x: hidden;
}
main #mv .inner {
  width: 90%;
  max-width: 76vw;
  padding-top: 12vw;
  padding-bottom: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #mv .inner {
    max-width: 90%;
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
main #mv .inner .mv_area {
  position: relative;
  text-align: center;
}
main #mv .inner .mv_area::before {
  content: "";
  background: url(./img/mv_left.png) no-repeat center center/contain;
  width: 2.64vw;
  height: 34vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  main #mv .inner .mv_area::before {
    background-image: url(./img/sp/mv_head.png);
    width: 100%;
    height: 22px;
    top: -25%;
  }
}
main #mv .inner .mv_area::after {
  content: "";
  background: url(./img/mv_right.png) no-repeat center center/contain;
  width: 2.64vw;
  height: 34vw;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  main #mv .inner .mv_area::after {
    background-image: url(./img/sp/mv_under.png);
    width: 100%;
    height: 22px;
    top: 115%;
  }
}
main #mv .inner .mv_area .swiper-slide {
  opacity: 0 !important;
}
main #mv .inner .mv_area .swiper-slide-active {
  opacity: 1 !important;
}
main #mv .inner .mv_area a {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #mv .inner .mv_area a {
    width: 100%;
  }
}
main #mv .inner .mv_area a .img {
  transition: 0s;
}
main #mv .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5vw;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul {
    margin-top: 60px;
  }
}
main #mv .inner ul li.area {
  width: 27%;
  background: #fff;
  font-weight: 900;
  font-size: 4.89vw;
  padding: 1.8vw 0;
  text-align: center;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul li.area {
    writing-mode: vertical-lr;
    font-size: 30px;
    width: 14%;
    padding: 10px;
  }
}
main #mv .inner ul li.area::before {
  content: "";
  height: 0;
  width: 0;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 0px solid transparent;
  border-right: 2.34vw solid transparent;
  border-top: 2.34vw solid #baafd4;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul li.area::before {
    border-left: 0px solid transparent;
    border-right: 5vw solid transparent;
    border-top: 5vw solid #baafd4;
  }
}
main #mv .inner ul li.day {
  width: 100%;
  color: #fff;
  font-size: 2.8vw;
  font-weight: 900;
  margin-top: -1.5vw;
  line-height: 1.4;
  text-align: center;
}
main #mv .inner ul li.day img {
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul li.day {
    width: 100%;
    font-size: 5vw;
  }
  main #mv .inner ul li.day img {
    margin-bottom: 20px;
  }
  main #mv .inner ul li.day p {
    font-size: 3.7vw;
  }
}
main #mv .inner ul li.day span {
  font-size: 4.8vw;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul li.day span {
    font-size: 10vw;
  }
}
main #mv .inner ul.fukuoka li.area::before {
  border-top: 2.34vw solid #ef8cb6;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul.fukuoka li.area::before {
    border-top: 5vw solid #ef8cb6;
  }
}
main #mv .inner ul.tokyo li.area::before {
  border-top: 2.34vw solid #a23a45;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul.tokyo li.area::before {
    border-top: 5vw solid #a23a45;
  }
}
main #mv .inner ul.sendai li.area::before {
  border-top: 2.34vw solid #ed1a0b;
}
@media screen and (max-width: 767px) {
  main #mv .inner ul.sendai li.area::before {
    border-top: 5vw solid #ed1a0b;
  }
}
main #schedule {
  position: relative;
  margin-top: -100px;
  padding-bottom: 31.25vw;
  background: url(./img/footer_logo.png) no-repeat left bottom/40%, url(./img/schedule_bg.png) no-repeat top left/cover;
}
@media screen and (max-width: 767px) {
  main #schedule {
    padding-bottom: 50vw;
    background: url(./img/footer_logo.png) no-repeat left bottom/70%, url(./img/schedule_bg.png) no-repeat top left/cover;
  }
}
main #schedule .inner {
  width: 90%;
  max-width: 76vw;
  padding-top: 12vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main #schedule .inner {
    max-width: 90%;
  }
}
main #schedule .inner h3 {
  width: 19.6vw;
  margin-top: -7.28vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner h3 {
    width: 30vw;
    margin-top: -4vw;
  }
}
main #schedule .inner .box {
  margin-top: 50px;
  background: url(./img/schedule_box_bg.png) no-repeat center center/contain;
  padding: 1vw 1vw 2.6vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box {
    margin-top: 10px;
    padding: 15px 40px 65px;
    background-image: url(./img/sp/sp_schedule_box_bg_new.png);
  }
}
main #schedule .inner .box::before {
  content: "";
  background: url(./img/next.png) no-repeat center center/cover;
  width: 10.41vw;
  height: 12vw;
  position: absolute;
  right: 2%;
  top: -20%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box::before {
    width: 50px;
    height: 60px;
    top: -7%;
    right: 10%;
    z-index: 10;
  }
}
main #schedule .inner .box a ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul {
    display: block;
  }
}
main #schedule .inner .box a ul li:nth-child(1) {
  width: 55%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li:nth-child(1) {
    width: 100%;
  }
}
main #schedule .inner .box a ul li:nth-child(2) {
  width: 42%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li:nth-child(2) {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
}
main #schedule .inner .box a ul li .area {
  background: #fff;
  border: 2px solid #a7a2a1;
  font-weight: 900;
  font-size: 2vw;
  padding: 1vw 0;
  margin-top: 20px;
  text-align: center;
  line-height: 1;
  position: relative;
  width: 44%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li .area {
    font-size: 4vw;
    width: 10%;
    padding: 10px 5px;
    margin: 0 10px;
    writing-mode: vertical-lr;
  }
}
main #schedule .inner .box a ul li .area::before {
  content: "";
  height: 0;
  width: 0;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 0px solid transparent;
  border-right: 1.6vw solid transparent;
  border-top: 1.6vw solid #3aacad;
}
main #schedule .inner .box a ul li .day {
  font-size: 2.7vw;
  line-height: 4.2vw;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li .day {
    font-size: 4.7vw;
    line-height: 6.2vw;
    margin-top: 0;
  }
}
main #schedule .inner .box a ul li .day span {
  font-size: 2vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li .day span {
    font-size: 4vw;
  }
}
main #schedule .inner .box a ul li .day span.place {
  font-size: 3.2vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li .day span.place {
    font-size: 5.2vw;
  }
}
main #schedule .inner .box a ul li .address {
  font-size: 1.45vw;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .box a ul li .address {
    display: none;
  }
}
main #schedule .inner .box_second::before {
  content: none;
}
main #schedule .inner .box_second a ul li .area::before {
  border-top: 1.6vw solid #7d5bb2;
}
main #schedule .inner .secret_box {
  margin-top: 50px;
  background: url(./img/schedule_box_bg_seclet.png) no-repeat center center/contain;
  padding: 1vw 1vw 2.6vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box {
    margin-top: 10px;
    padding: 25px 10px 35px;
    background-image: url(./img/sp/sp_schedule_box_bg_seclet.png);
  }
}
main #schedule .inner .secret_box::before {
  content: "";
  background: url(./img/next.png) no-repeat center center/cover;
  width: 10.41vw;
  height: 12vw;
  position: absolute;
  right: 23%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box::before {
    width: 50px;
    height: 60px;
    right: 30%;
  }
}
main #schedule .inner .secret_box a {
  pointer-events: none;
}
main #schedule .inner .secret_box a ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main #schedule .inner .secret_box a ul li:nth-child(1) {
  width: 55%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li:nth-child(1) {
    width: 40%;
  }
}
main #schedule .inner .secret_box a ul li:nth-child(2) {
  width: 42%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li:nth-child(2) {
    width: 57%;
  }
}
main #schedule .inner .secret_box a ul li .area {
  background: #ebc21e;
  font-weight: 900;
  font-size: 2vw;
  padding: 1vw 0;
  margin-top: 20px;
  text-align: center;
  line-height: 1;
  position: relative;
  width: 30%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li .area {
    font-size: 4vw;
    margin-top: 0;
  }
}
main #schedule .inner .secret_box a ul li .area::before {
  content: "";
  height: 0;
  width: 0;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 0px solid transparent;
  border-right: 1.6vw solid transparent;
  border-top: 1.6vw solid #fff;
}
main #schedule .inner .secret_box a ul li .day {
  font-size: 4.7vw;
  font-weight: 900;
  margin-top: 20px;
  position: absolute;
  right: 7%;
  top: 25%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li .day {
    font-size: 7vw;
    margin-top: 0;
    right: 10%;
    top: 31%;
  }
}
main #schedule .inner .secret_box a ul li .day span {
  font-size: 2vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li .day span {
    font-size: 4vw;
  }
}
main #schedule .inner .secret_box a ul li .address {
  font-size: 1.45vw;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .secret_box a ul li .address {
    display: none;
  }
}
main #schedule .inner .schedule_list {
  padding-left: 10%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list {
    margin: 0;
    padding: 0 7%;
  }
}
main #schedule .inner .schedule_list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
  font-size: 2.7vw;
  padding-left: 3.7vw;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list li {
    margin-top: 15px;
    font-size: 4.2vw;
  }
}
main #schedule .inner .schedule_list li::before {
  content: "";
  background: url(./img/dot.png) no-repeat center center/cover;
  width: 2vw;
  height: 2.4vw;
  position: absolute;
  left: 0;
  top: 0.7vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list li::before {
    width: 4vw;
    height: 4.6vw;
    left: -2%;
  }
}
main #schedule .inner .schedule_list li .area {
  width: 32%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list li .area {
    width: 37%;
  }
}
main #schedule .inner .schedule_list li .area::before {
  content: "";
  background: url(./img/arrow.png) no-repeat center center/contain;
  width: 3.64vw;
  height: 2.39vw;
  position: absolute;
  right: -25%;
  top: 0.7vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list li .area::before {
    width: 18px;
    height: 12px;
    right: -30%;
    top: 4px;
  }
}
main #schedule .inner .schedule_list li .day {
  width: 55%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .schedule_list li .day {
    width: 63%;
    padding-left: 3%;
    text-align: right;
  }
}
main #schedule .inner .schedule_list li .day span {
  font-size: 2vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event {
    margin-top: 30px;
  }
}
main #schedule .inner .closed_event h4 {
  font-size: 3vw;
  color: #fff;
  font-weight: 900;
}
main #schedule .inner .closed_event h4 span {
  position: relative;
  padding-left: 4.4vw;
}
main #schedule .inner .closed_event h4 span::before {
  content: "";
  background: url(./img/closed_event_icon.svg) no-repeat center center/contain;
  width: 3.6vw;
  height: 3.6vw;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event h4 {
    font-size: 20px;
  }
  main #schedule .inner .closed_event h4 span {
    padding-left: 30px;
  }
  main #schedule .inner .closed_event h4 span::before {
    width: 24px;
    height: 24px;
  }
}
main #schedule .inner .closed_event ul {
  padding-left: 10%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul {
    padding: 0 7%;
    margin-top: 1vw;
  }
}
main #schedule .inner .closed_event ul li {
  padding-left: 3.7vw;
  position: relative;
  margin-top: 30px;
  font-size: 2.7vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul li {
    margin-top: 15px;
    font-size: 4.2vw;
  }
}
main #schedule .inner .closed_event ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
}
main #schedule .inner .closed_event ul li a:hover {
  color: #ebc21e;
}
main #schedule .inner .closed_event ul li a::before {
  content: "";
  background: url(./img/dot_white.svg) no-repeat center center/cover;
  width: 2.1vw;
  height: 2.4vw;
  position: absolute;
  left: 0;
  top: 0.7vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul li a::before {
    width: 4vw;
    height: 4.6vw;
    left: -2%;
  }
}
main #schedule .inner .closed_event ul li a .area {
  width: 32%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul li a .area {
    width: 37%;
  }
}
main #schedule .inner .closed_event ul li a .area::before {
  content: "";
  background: url(./img/arrow.png) no-repeat center center/contain;
  width: 3.64vw;
  height: 2.39vw;
  position: absolute;
  right: -20%;
  top: 0.7vw;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul li a .area::before {
    width: 18px;
    height: 12px;
    right: -21%;
    top: 4px;
  }
}
main #schedule .inner .closed_event ul li a .day {
  width: 55%;
}
@media screen and (max-width: 767px) {
  main #schedule .inner .closed_event ul li a .day {
    width: 63%;
    padding-left: 12%;
    text-align: right;
  }
  main #schedule .inner .closed_event ul li a .day small {
    font-size: 70%;
    display: none;
  }
}
main #schedule .copy {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 3.12vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 1vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main #schedule .copy {
    font-size: 16px;
    line-height: 2;
  }
}

footer {
  background: #000;
  padding: 2.6vw 0;
  text-align: center;
  color: #fff;
  font-size: 1vw;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 16px;
    padding: 28px 0;
  }
  footer .copy {
    font-size: 12px;
  }
}
footer ul {
  display: grid;
  gap: 2.6vw;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  width: 30%;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  footer ul {
    display: block;
    width: 166px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  footer ul li {
    margin-top: 15px;
  }
}
footer ul li a:hover {
  opacity: 0.5;
}
footer ul li:first-child {
  text-align: right;
  margin-top: 10px;
}
footer ul li:last-child {
  text-align: left;
}

#btn_top_area {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 160px;
  height: 160px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #btn_top_area {
    transform: scale(0.6);
    right: -20px;
    bottom: -20px !important;
    display: none !important;
  }
}

#btn_top_area a {
  position: absolute;
  width: inherit;
  height: inherit;
  display: inline-block;
}

#btn_top_area a img {
  position: absolute;
}

.img_topbtn_in {
  width: 121px;
  top: 50%;
  left: 49.6%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.3s;
}

.img_topbtn_txt {
  width: 60px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 1;
  filter: contrast(100%) drop-shadow(0 0px 17px rgba(62, 175, 255, 0));
  transition: all 0.3s;
}

.img_topbtn_out {
  width: 160px;
  top: 4px;
  left: 0;
  transform: rotate(0);
  transform-origin: center;
  animation: rotation 3s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#btn_top_area a:hover img.img_topbtn_txt {
  filter: contrast(120%) drop-shadow(0 0px 17px rgb(62, 175, 255));
}

main.submain {
  margin-top: -100px;
  background: url(./img/footer_logo.png) no-repeat left bottom/40%, url(./img/submain_bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  main.submain {
    margin-top: -50px;
    background: url(./img/footer_logo.png) no-repeat left bottom/70%, url(./img/submain_bg.png) no-repeat center center/cover;
  }
}
main.submain #mv {
  overflow: inherit;
}
main.submain #mv .inner {
  width: 90%;
  max-width: 76vw;
  padding-top: 5vw;
  padding-bottom: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner {
    max-width: 90%;
  }
}
main.submain #mv .inner ul .area {
  width: 23%;
  padding: 0.9vw 0;
  font-size: 3.4vw;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner ul .area {
    writing-mode: horizontal-tb;
    width: 25%;
    font-size: 6vw;
  }
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner ul .area::before {
    border-left: 0px solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2vw solid #baafd4;
  }
}
main.submain #mv .inner ul .day {
  width: 74%;
  line-height: 3.5vw;
  margin-top: 0.521vw;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner ul .day {
    width: 72%;
    text-align: left;
    font-size: 3vw;
  }
}
main.submain #mv .inner ul .day span {
  font-size: 5.8vw;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner ul .day span {
    font-size: 6.5vw;
    line-height: 1;
  }
}
main.submain #mv .inner .mv_area {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner .mv_area {
    margin-top: 10px;
  }
}
main.submain #mv .inner .mv_area::before {
  background: url(./img/mv_left02.png) no-repeat center center/contain;
  width: 2.4vw;
  height: 43.6vw;
  left: -10%;
}
main.submain #mv .inner .mv_area::after {
  background: url(./img/mv_right02_top.png) no-repeat center center/contain;
  width: 26.563vw;
  height: 10.625vw;
  right: -15%;
  top: 85%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  main.submain #mv .inner .mv_area::after {
    width: 124px;
    height: 62px;
    right: -5%;
    top: 90%;
  }
}
main.submain #mv .inner .mv_area img {
  z-index: 1;
  position: inherit;
}
main.submain #about {
  margin-top: 9vw;
  position: relative;
}
main.submain #about .bg {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  z-index: -1;
}
main.submain #about .inner {
  z-index: 1;
  position: static;
  width: 90%;
  max-width: 76vw;
  padding: 4.2vw 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner {
    max-width: 90%;
    padding: 2.2vw 0;
  }
}
main.submain #about .inner ul {
  display: grid;
  gap: 4.2vw;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }
}
main.submain #about .inner ul li:nth-child(1) img {
  width: 100%;
}
main.submain #about .inner ul li:nth-child(2) {
  margin-top: 4vw;
  text-align: right;
  color: #fff;
  font-size: 7vw;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) {
    text-align: left;
    font-size: 9vw;
    margin-top: 0;
  }
}
main.submain #about .inner ul li:nth-child(2) .area {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 5.5vw;
  padding: 1vw 3.5vw;
  text-align: center;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) .area {
    font-size: 7vw;
  }
}
main.submain #about .inner ul li:nth-child(2) .area::before {
  content: "";
  height: 0;
  width: 0;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 0px solid transparent;
  border-right: 2.34vw solid transparent;
  border-top: 2.34vw solid #baafd4;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) .area::before {
    border-left: 0px solid transparent;
    border-right: 3vw solid transparent;
    border-top: 3vw solid #baafd4;
  }
}
main.submain #about .inner ul li:nth-child(2) .chara_name {
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) .chara_name {
    display: none;
  }
}
main.submain #about .inner ul li:nth-child(2) .chara_name img {
  width: 100%;
}
main.submain #about .inner ul li:nth-child(2) .illustrator {
  color: #fff;
  font-size: 1.145vw;
  padding-left: 2vw;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) .illustrator {
    font-size: 12px;
    padding-left: 25px;
    position: absolute;
    right: 0%;
    bottom: -510%;
  }
}
main.submain #about .inner ul li:nth-child(2) .illustrator::before {
  content: "";
  background: url(./img/menu_icon.svg) no-repeat center center/contain;
  width: 1.66vw;
  height: 1.66vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main.submain #about .inner ul li:nth-child(2) .illustrator::before {
    width: 20px;
    height: 20px;
  }
}
main.submain #item {
  padding-top: 15vw;
  padding-bottom: 12vw;
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 100%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 97%/30%;
}
@media screen and (max-width: 767px) {
  main.submain #item {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 1%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 100%/contain;
  }
}
main.submain #item h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.submain #item h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.submain #item .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner {
    max-width: 90%;
  }
}
main.submain #item .inner .area_premia {
  background: url(./img/item_frame.png) no-repeat center center/contain;
  padding: 10.41vw 5.2vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia {
    background: url(./img/sp/sp_item_frame.png) no-repeat center top/contain;
  }
}
main.submain #item .inner .area_premia ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
main.submain #item .inner .area_premia ul li {
  font-weight: 900;
  font-size: 1.8vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul li {
    font-size: 4vw;
  }
  main.submain #item .inner .area_premia ul li:not(:first-child) {
    margin-top: 30px;
  }
}
main.submain #item .inner .area_premia ul li .name {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul li .name {
    padding-top: 10px;
  }
}
main.submain #item .inner .area_premia ul li .name span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul li .name span {
    font-size: 3vw;
  }
}
main.submain #item .inner .area_premia ul li .price {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul li .price {
    padding-top: 0;
  }
}
main.submain #item .inner .area_premia ul li .price span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .area_premia ul li .price span {
    font-size: 2vw;
  }
}
main.submain #item .inner .area_premia ul li a {
  display: block;
}
main.submain #item .inner .area_premia ul li a:hover {
  filter: brightness(0.5);
}
main.submain #item .inner .event_item ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .event_item ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.submain #item .inner .event_item ul li:nth-child(1) img {
  margin-top: 3vw;
}
main.submain #item .inner .event_item ul li a {
  color: #fff;
  font-weight: 900;
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.submain #item .inner .event_item ul li a:hover img {
  filter: brightness(0.5);
}
main.submain #item .inner .event_item ul li a .name_price {
  margin-top: 1vw;
  width: 70%;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .event_item ul li a .name_price {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
main.submain #item .inner .event_item ul li a .name_price span {
  font-size: 0.8vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .event_item ul li a .name_price span {
    font-size: 2vw;
  }
}
main.submain #item .inner .event_item ul li a .number {
  margin-top: 1vw;
  width: 30%;
  height: 3vw;
  color: #000;
  text-align: center;
  font-size: 1vw;
  line-height: 1.4;
  background: url(./img/number_bg.png) no-repeat top center/contain;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .event_item ul li a .number {
    font-size: 3vw;
    height: auto;
  }
}
main.submain #item .inner .event_item ul li a .number span {
  padding: 0 0.1vw;
  font-size: 1.8vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .event_item ul li a .number span {
    font-size: 4.5vw;
  }
}
main.submain #item .inner .four_line ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .four_line ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.submain #item .inner .catch {
  color: #ebc21e;
  font-size: 2.8vw;
  font-weight: 900;
  text-align: center;
  margin-top: 8.3vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .catch {
    font-size: 6vw;
    line-height: 1.5;
  }
}
main.submain #item .inner .catch span {
  font-size: 3.33vw;
}
@media screen and (max-width: 767px) {
  main.submain #item .inner .catch span {
    font-size: 8vw;
  }
}
main.submain #benefits .inner {
  width: 90%;
  max-width: 89.583vw;
  margin: 8.3vw 0 0 0;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner {
    width: 95%;
    max-width: 95%;
    margin: 15.3vw 0 0;
  }
}
main.submain #benefits .inner .benefits_box {
  background: url(./img/benefits_box_bg.png) repeat;
  background-color: rgba(235, 194, 30, 0.5);
  background-size: 0.7%;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 0% 100%, 0 0, 0 0);
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 0% 100%, 0 0, 0 0);
  position: relative;
  color: #fff;
  padding: 5vw 5vw 7vw 10vw;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box {
    background: url(./img/benefits_bg.png) no-repeat right center/cover;
    -webkit-clip-path: none;
    clip-path: none;
    padding: 9.5vw 4.9vw 71.395vw 4.9vw;
  }
}
main.submain #benefits .inner .benefits_box ul {
  display: flex;
  align-items: flex-end;
  gap: 6vw;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 0;
  }
}
main.submain #benefits .inner .benefits_box ul li {
  font-size: 4.1vw;
  line-height: 5.5vw;
  font-weight: 900;
  width: 41%;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li {
    font-size: 7vw;
    line-height: 7.5vw;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.4;
  }
}
main.submain #benefits .inner .benefits_box ul li:first-of-type {
  width: 43%;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li:first-of-type {
    width: 100%;
    max-width: 347px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
main.submain #benefits .inner .benefits_box ul li:first-of-type img {
  margin-top: 30px;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li:first-of-type img {
    margin-top: 0;
  }
}
main.submain #benefits .inner .benefits_box ul li .title {
  max-width: 19.688vw;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .title {
    max-width: 29.767vw;
  }
}
main.submain #benefits .inner .benefits_box ul li .explanation {
  font-size: 1.9vw;
  line-height: 1.7;
  margin-top: 25px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .explanation {
    width: 100%;
    font-size: 4.4vw;
    margin-top: 15px;
  }
}
main.submain #benefits .inner .benefits_box ul li .explanation span {
  display: block;
  font-size: 1.5vw;
  line-height: 2.3vw;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 0.5vw;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .explanation span {
    font-size: 3.6vw;
    line-height: 4.5vw;
    margin-top: 2vw;
  }
}
main.submain #benefits .inner .benefits_box ul li .explanation span:first-of-type {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .explanation span:first-of-type {
    margin-top: 15px;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard {
  font-size: 1.4vw;
  line-height: 2.3vw;
  position: relative;
  margin-top: 1.604vw;
  padding-top: 3.646vw;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard {
    margin-top: 0;
    padding-top: 7.6vw;
    position: absolute;
    bottom: 14vw;
    left: 4.9vw;
    width: 95%;
    font-size: 3.3vw;
    line-height: 4.5vw;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard::before {
  content: "";
  position: absolute;
  width: 37.5vw;
  height: 26.354vw;
  background: url(img/benefits_deco.png) no-repeat;
  background-size: contain;
  top: 0;
  left: -5%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard::before {
    width: 85.349vw;
    height: 59.814vw;
    background: url(img/sp/sp_benefits_deco.svg) no-repeat;
    background-size: contain;
    left: 0;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard .logo {
  max-width: 624px;
  width: 110%;
  padding-left: 0.823vw;
  margin-bottom: -0.781vw;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard .logo {
    max-width: 62.326vw;
    width: 100%;
    margin: 0 auto;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard P {
  padding-left: 1.823vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard P {
    padding-left: 8.14vw;
    margin-top: 3px;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard P a {
  transition: all 0.3s;
}
main.submain #benefits .inner .benefits_box ul li .metalcard P a:hover {
  color: #ebc21e;
}
main.submain #benefits .inner .benefits_box ul li .metalcard .btn {
  width: 23.8vw;
  margin: 0 auto;
  margin-top: 1vw;
  padding-left: 3vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard .btn {
    margin-top: 5px;
    width: 50%;
    padding-left: 0;
  }
}
main.submain #benefits .inner .benefits_box ul li .metalcard .btn a img {
  transition: 0.2s;
}
main.submain #benefits .inner .benefits_box ul li .metalcard .btn a .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 23.8vw;
  padding-left: 3vw;
}
@media screen and (max-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard .btn a .on {
    padding-left: 0;
  }
}
@media screen and (min-width: 767px) {
  main.submain #benefits .inner .benefits_box ul li .metalcard .btn a:hover img {
    opacity: 0;
  }
  main.submain #benefits .inner .benefits_box ul li .metalcard .btn a:hover img.on {
    opacity: 1;
  }
}
main.submain #access h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.submain #access h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.submain #access .inner {
  width: 90%;
  max-width: 52vw;
  margin: 0 auto;
  padding: 5.2vw 0;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner {
    max-width: 90%;
  }
}
main.submain #access .inner .box {
  background-color: #ddd;
  padding: 2.5vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .box {
    padding: 20px 20px 30px;
  }
}
main.submain #access .inner .box h4 {
  font-weight: 900;
  font-size: 2.4vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .box h4 {
    font-size: 5.3vw;
    line-height: 7.3vw;
  }
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .box h4 span {
    display: block;
    font-size: 4.5vw;
  }
}
main.submain #access .inner .box .detail {
  margin-top: 1vw;
  font-size: 1.24vw;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .box .detail {
    font-size: 3vw !important;
    text-align: center;
  }
}
main.submain #access .inner .box .detail span {
  font-weight: 900;
}
main.submain #access .inner .box .btn {
  width: 70%;
  margin: 0 auto;
  margin-top: 1vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .box .btn {
    margin-top: 10px;
  }
}
main.submain #access .inner .box .btn a img {
  transition: 0.2s;
}
main.submain #access .inner .box .btn a .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media screen and (min-width: 767px) {
  main.submain #access .inner .box .btn a:hover img {
    opacity: 0;
  }
  main.submain #access .inner .box .btn a:hover img.on {
    opacity: 1;
  }
}
main.submain #access .inner .caution {
  color: #fff;
  text-align: center;
  font-size: 1.25vw;
  margin: 8.33vw 0 24vw;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .caution {
    margin-bottom: 150px;
    font-size: 3vw;
  }
}
main.submain #access .inner .copy {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 3.12vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 1vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main.submain #access .inner .copy {
    font-size: 16px;
    line-height: 2;
  }
}

main.fukuoka #mv .inner {
  max-width: 76.042vw;
}
@media screen and (max-width: 767px) {
  main.fukuoka #mv .inner {
    max-width: 90%;
  }
}
main.fukuoka #mv .inner ul li.area {
  width: 23%;
}
main.fukuoka #mv .inner ul li.area::before {
  border-top: 2.34vw solid #ef8cb6;
}
@media screen and (max-width: 767px) {
  main.fukuoka #mv .inner ul li.area::before {
    border-top: 2vw solid #ef8cb6;
  }
}
main.fukuoka #mv .inner ul li.day {
  width: 75%;
}
main.fukuoka #mv .inner ul li.day span {
  font-size: 4.8vw;
}
@media screen and (max-width: 767px) {
  main.fukuoka #mv .inner ul li.day span {
    font-size: 6.5vw;
    line-height: 1;
  }
}
main.fukuoka #about .inner ul li:nth-child(2) .area {
  padding: 1vw 6.5vw;
}
main.fukuoka #about .inner ul li:nth-child(2) .area::before {
  border-top: 2.34vw solid #ef8cb6;
}
@media screen and (max-width: 767px) {
  main.fukuoka #about .inner ul li:nth-child(2) .area::before {
    border-top: 3vw solid #ef8cb6;
  }
}
main.fukuoka #item {
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 53%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 97%/30%;
}
@media screen and (max-width: 767px) {
  main.fukuoka #item {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 1%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 63%/contain;
  }
}
main.fukuoka #item .inner .area_premia {
  background: url(./img/fukuoka/item_frame.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  main.fukuoka #item .inner .area_premia {
    background: url(./img/sp/sp_item_frame_fukuoka.png) no-repeat center top/contain;
  }
}
main.fukuoka #item .inner .catch {
  margin-top: 5.3vw;
}
main.fukuoka #access .inner .box h4 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  main.fukuoka #access .inner .box h4 {
    text-align: center;
  }
}
main.fukuoka #access .inner .box h4 span {
  font-size: 1.9vw;
}
@media screen and (max-width: 767px) {
  main.fukuoka #access .inner .box h4 span {
    display: block;
    font-size: 4.5vw;
  }
}

main.tokyo #mv .inner {
  max-width: 76.042vw;
}
@media screen and (max-width: 767px) {
  main.tokyo #mv .inner {
    max-width: 90%;
  }
}
main.tokyo #mv .inner ul li.area {
  width: 23%;
}
main.tokyo #mv .inner ul li.area::before {
  border-top: 2.34vw solid #a23a45;
}
@media screen and (max-width: 767px) {
  main.tokyo #mv .inner ul li.area::before {
    border-top: 2vw solid #a23a45;
  }
}
main.tokyo #mv .inner ul li.day {
  width: 75%;
}
main.tokyo #mv .inner ul li.day span {
  font-size: 4.8vw;
}
@media screen and (max-width: 767px) {
  main.tokyo #mv .inner ul li.day span {
    font-size: 6.5vw;
    line-height: 1;
  }
}
main.tokyo #about .inner ul li:nth-child(2) .area {
  padding: 1vw 6.5vw;
}
main.tokyo #about .inner ul li:nth-child(2) .area::before {
  border-top: 2.34vw solid #a23a45;
}
@media screen and (max-width: 767px) {
  main.tokyo #about .inner ul li:nth-child(2) .area::before {
    border-top: 3vw solid #a23a45;
  }
}
main.tokyo #item {
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 53%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 97%/30%;
}
@media screen and (max-width: 767px) {
  main.tokyo #item {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 1%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain, url(./img/event_bg.svg) no-repeat 50% 63%/contain;
  }
}
main.tokyo #item .inner .area_premia {
  background: url(./img/tokyo/item_frame.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  main.tokyo #item .inner .area_premia {
    background: url(./img/sp/sp_item_frame_tokyo.png) no-repeat center top/contain;
  }
}
main.tokyo #item .inner .catch {
  margin-top: 5.3vw;
}
main.tokyo #access .inner {
  max-width: 79.11vw;
}
main.tokyo #access .inner .box {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main.tokyo #access .inner .box {
    flex-direction: column-reverse;
  }
}
main.tokyo #access .inner .box .detail {
  width: 60%;
  margin: 0;
  padding: 5vw 0;
  text-align: center;
  font-size: 1.45vw;
}
@media screen and (max-width: 767px) {
  main.tokyo #access .inner .box .detail {
    width: 100%;
  }
}
main.tokyo #access .inner .box .detail .detial_inner {
  text-align: left;
  display: inline-block;
}
main.tokyo #access .inner .box .detail a {
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
main.tokyo #access .inner .box .detail a:hover {
  color: #ebc21e;
}
main.tokyo #access .inner .box .detail strong {
  font-size: 2.4vw;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  main.tokyo #access .inner .box .detail strong {
    font-size: 4vw;
    text-align: center;
  }
}
main.tokyo #access .inner .box .detail strong span {
  font-size: 1.9vw;
}
@media screen and (max-width: 767px) {
  main.tokyo #access .inner .box .detail strong span {
    display: block;
    font-size: 4.5vw;
  }
}
main.tokyo #access .inner .box .map_img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  main.tokyo #access .inner .box .map_img {
    width: 100%;
  }
}

main.kyoto {
  background: url(./img/footer_logo.png) no-repeat left bottom/40%, linear-gradient(90deg, #000, #494949, #000);
}
@media screen and (max-width: 767px) {
  main.kyoto {
    background: url(./img/footer_logo.png) no-repeat left bottom/70%, linear-gradient(90deg, #000, #494949, #000);
  }
}
main.kyoto #mv .inner {
  max-width: 76.042vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #mv .inner {
    max-width: 90%;
  }
}
main.kyoto #mv .inner ul li.area {
  width: 23%;
}
main.kyoto #mv .inner ul li.area::before {
  border-top: 2.34vw solid #7d5bb2;
}
@media screen and (max-width: 767px) {
  main.kyoto #mv .inner ul li.area::before {
    border-top: 2vw solid #7d5bb2;
  }
}
main.kyoto #mv .inner ul li.day {
  width: 75%;
}
main.kyoto #mv .inner ul li.day span {
  font-size: 5vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #mv .inner ul li.day span {
    font-size: 6.5vw;
    line-height: 1;
  }
}
main.kyoto #about .inner ul li:nth-child(2) .area {
  padding: 1vw 6.5vw;
}
main.kyoto #about .inner ul li:nth-child(2) .area::before {
  border-top: 2.34vw solid #7d5bb2;
}
@media screen and (max-width: 767px) {
  main.kyoto #about .inner ul li:nth-child(2) .area::before {
    border-top: 3vw solid #7d5bb2;
  }
}
main.kyoto #item {
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain;
}
@media screen and (max-width: 767px) {
  main.kyoto #item {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 2.5%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 2.5%/contain, url(./img/event_bg.svg) no-repeat 50% 63%/contain;
  }
}
main.kyoto #item .inner .area_premia {
  background: url(./img/kyoto/item_frame.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  main.kyoto #item .inner .area_premia {
    background: url(./img/kyoto/sp_item_frame.png) no-repeat center top/contain;
  }
}
main.kyoto #item .inner .catch {
  margin-top: 5.3vw;
}
main.kyoto #kyomafu {
  background: url(./img//kyoto/kyoto_bg.png) no-repeat bottom center/cover;
  padding: 4vw 0;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu {
    background: none;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
  }
  main.kyoto #kyomafu .kyomafu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    z-index: -1;
  }
  main.kyoto #kyomafu .kyomafu_bg::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./img//kyoto/kyoto_bg.png) no-repeat top center/cover;
  }
}
main.kyoto #kyomafu .illust_area {
  position: relative;
}
main.kyoto #kyomafu .illust_area h3 {
  text-align: right;
  margin-right: 10%;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area h3 {
    text-align: center;
    margin: 0 auto;
  }
}
main.kyoto #kyomafu .illust_area h3 img {
  width: 40vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area h3 img {
    width: 340px;
  }
}
main.kyoto #kyomafu .illust_area .illust {
  margin-top: -12%;
  width: 40vw;
  position: relative;
  margin-left: 10%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illust {
    width: 90%;
    margin-top: 10px;
  }
}
main.kyoto #kyomafu .illust_area .illust .cloud .cloud1 {
  position: absolute;
  top: 5%;
  left: 7%;
  z-index: -1;
  width: 18vw;
  animation: fuwafuwa 5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illust .cloud .cloud1 {
    width: 200px;
    top: 5%;
    left: 65%;
  }
}
main.kyoto #kyomafu .illust_area .illust .cloud .cloud2 {
  position: absolute;
  top: 25%;
  left: 70%;
  z-index: -1;
  width: 18vw;
  animation: fuwafuwa 5s ease-in-out 1s infinite;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illust .cloud .cloud2 {
    width: 250px;
    top: 15%;
    left: -33%;
  }
}
main.kyoto #kyomafu .illust_area .illust .cloud .cloud3 {
  position: absolute;
  top: 67%;
  left: -3%;
  z-index: -1;
  width: 18vw;
  animation: fuwafuwa 5s ease-in-out 2s infinite;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illust .cloud .cloud3 {
    width: 250px;
    left: 57%;
  }
}
main.kyoto #kyomafu .illust_area .illust .cloud .cloud4 {
  position: absolute;
  top: 88%;
  left: 50%;
  z-index: -1;
  width: 18vw;
  animation: fuwafuwa 5s ease-in-out 3s infinite;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illust .cloud .cloud4 {
    width: 200px;
    left: -10%;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0%, 20%);
  }
  100% {
    transform: translate(0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes fuwafuwa {
    0% {
      transform: translate(0) scaleX(-1);
    }
    50% {
      transform: translate(0%, 20%) scaleX(-1);
    }
    100% {
      transform: translate(0) scaleX(-1);
    }
  }
}
main.kyoto #kyomafu .illust_area .banner {
  position: absolute;
  left: 0;
  top: 37%;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .banner {
    display: none;
  }
}
main.kyoto #kyomafu .illust_area h4 {
  position: absolute;
  top: 42%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area h4 {
    display: none;
  }
}
main.kyoto #kyomafu .illust_area h4 img {
  width: 19.35vw;
}
main.kyoto #kyomafu .illust_area h4 span {
  font-size: 6.615vw;
  line-height: 6.615vw;
  font-family: abolition, sans-serif;
  font-weight: 400;
  color: #fff;
  opacity: 0.37;
}
main.kyoto #kyomafu .illust_area .illustrator {
  position: absolute;
  top: 75%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illustrator {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
}
main.kyoto #kyomafu .illust_area .illustrator span {
  color: #fff;
  font-size: 1.145vw;
  padding-left: 2vw;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illustrator span {
    font-size: 12px;
    padding-left: 20px;
  }
}
main.kyoto #kyomafu .illust_area .illustrator span::before {
  content: "";
  background: url(./img/menu_icon.svg) no-repeat center center/contain;
  width: 1.66vw;
  height: 1.66vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .illust_area .illustrator span::before {
    width: 18px;
    height: 18px;
  }
}
main.kyoto #kyomafu .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
  margin-top: 5.2vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner {
    max-width: 100%;
    margin-top: 60px;
  }
}
main.kyoto #kyomafu .inner .kimono_premia {
  background: rgba(255, 255, 255, 0.5411764706);
  border: 15px solid #000;
  padding: 3vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia {
    position: relative;
    border: 8px solid #000;
    padding: 10vw 0;
    margin-bottom: 50px;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li {
  font-weight: 900;
  font-size: 1.8vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li {
    font-size: 4vw;
  }
  main.kyoto #kyomafu .inner .kimono_premia ul li:not(:first-child) {
    margin-top: 30px;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li .name {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li .name {
    padding-top: 10px;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li .name span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li .name span {
    font-size: 3vw;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li .price {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li .price {
    padding-top: 0;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li .price span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li .price span {
    font-size: 2vw;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul li a {
  display: block;
}
main.kyoto #kyomafu .inner .kimono_premia ul li a:hover {
  filter: brightness(0.5);
}
main.kyoto #kyomafu .inner .kimono_premia ul li a img {
  max-height: 33vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul li a img {
    max-height: 100%;
  }
}
main.kyoto #kyomafu .inner .kimono_premia ul .kimono_premia01 img {
  margin-top: 50%;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .kimono_premia ul .kimono_premia01 {
    position: absolute;
    left: -5%;
    top: -40px;
  }
  main.kyoto #kyomafu .inner .kimono_premia ul .kimono_premia01 img {
    width: 120px;
    margin-top: 0;
  }
}
main.kyoto #kyomafu .inner .event_item ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .event_item ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.kyoto #kyomafu .inner .event_item ul li:nth-child(1) img {
  margin-top: 3vw;
}
main.kyoto #kyomafu .inner .event_item ul li a {
  color: #fff;
  font-weight: 900;
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.kyoto #kyomafu .inner .event_item ul li a:hover img {
  filter: brightness(0.5);
}
main.kyoto #kyomafu .inner .event_item ul li a .name_price {
  margin-top: 1vw;
  width: 70%;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .event_item ul li a .name_price {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
main.kyoto #kyomafu .inner .event_item ul li a .name_price span {
  font-size: 0.8vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .event_item ul li a .name_price span {
    font-size: 2vw;
  }
}
main.kyoto #kyomafu .inner .event_item ul li a .number {
  margin-top: 1vw;
  width: 30%;
  height: 3vw;
  color: #000;
  text-align: center;
  font-size: 1vw;
  line-height: 1.4;
  background: url(./img/kyoto/kyoto_number_bg.png) no-repeat top center/contain;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .event_item ul li a .number {
    font-size: 3vw;
    height: auto;
  }
}
main.kyoto #kyomafu .inner .event_item ul li a .number span {
  padding: 0 0.1vw;
  font-size: 1.8vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .event_item ul li a .number span {
    font-size: 4.5vw;
  }
}
main.kyoto #kyomafu .inner .four_line ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #kyomafu .inner .four_line ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.kyoto #item02 {
  padding-top: 5.2vw;
  padding-bottom: 12.5vw;
  background: url(./img/event_bg.svg) no-repeat 50% 22%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 96%/30%;
}
main.kyoto #item02 .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner {
    max-width: 90%;
  }
}
main.kyoto #item02 .inner .area_premia {
  background: url(./img/item_frame.png) no-repeat center center/contain;
  padding: 10.41vw 5.2vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia {
    background: url(./img/sp/sp_item_frame.png) no-repeat center top/contain;
  }
}
main.kyoto #item02 .inner .area_premia ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
main.kyoto #item02 .inner .area_premia ul li {
  font-weight: 900;
  font-size: 1.8vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul li {
    font-size: 4vw;
  }
  main.kyoto #item02 .inner .area_premia ul li:not(:first-child) {
    margin-top: 30px;
  }
}
main.kyoto #item02 .inner .area_premia ul li .name {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul li .name {
    padding-top: 10px;
  }
}
main.kyoto #item02 .inner .area_premia ul li .name span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul li .name span {
    font-size: 3vw;
  }
}
main.kyoto #item02 .inner .area_premia ul li .price {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul li .price {
    padding-top: 0;
  }
}
main.kyoto #item02 .inner .area_premia ul li .price span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .area_premia ul li .price span {
    font-size: 2vw;
  }
}
main.kyoto #item02 .inner .area_premia ul li a {
  display: block;
}
main.kyoto #item02 .inner .area_premia ul li a:hover {
  filter: brightness(0.5);
}
main.kyoto #item02 .inner .event_item ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .event_item ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.kyoto #item02 .inner .event_item ul li:nth-child(1) img {
  margin-top: 3vw;
}
main.kyoto #item02 .inner .event_item ul li a {
  color: #fff;
  font-weight: 900;
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.kyoto #item02 .inner .event_item ul li a:hover img {
  filter: brightness(0.5);
}
main.kyoto #item02 .inner .event_item ul li a .name_price {
  margin-top: 1vw;
  width: 70%;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .event_item ul li a .name_price {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
main.kyoto #item02 .inner .event_item ul li a .name_price span {
  font-size: 0.8vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .event_item ul li a .name_price span {
    font-size: 2vw;
  }
}
main.kyoto #item02 .inner .event_item ul li a .number {
  margin-top: 1vw;
  width: 30%;
  height: 3vw;
  color: #000;
  text-align: center;
  font-size: 1vw;
  line-height: 1.4;
  background: url(./img/number_bg.png) no-repeat top center/contain;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .event_item ul li a .number {
    font-size: 3vw;
    height: auto;
  }
}
main.kyoto #item02 .inner .event_item ul li a .number span {
  padding: 0 0.1vw;
  font-size: 1.8vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .event_item ul li a .number span {
    font-size: 4.5vw;
  }
}
main.kyoto #item02 .inner .four_line ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .four_line ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.kyoto #item02 .inner .catch {
  color: #ebc21e;
  font-size: 2.8vw;
  font-weight: 900;
  text-align: center;
  margin-top: 8.3vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .catch {
    font-size: 5.8vw;
    line-height: 1.5;
    white-space: nowrap;
  }
}
main.kyoto #item02 .inner .catch span {
  font-size: 3.33vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #item02 .inner .catch span {
    font-size: 8vw;
  }
}
main.kyoto #benefits .inner {
  width: 90%;
  max-width: 89.583vw;
  margin: 8.3vw 0 0 0;
}
@media screen and (max-width: 767px) {
  main.kyoto #benefits .inner {
    width: 95%;
    max-width: 100%;
  }
}
main.kyoto #access .inner .box {
  padding: 2.5vw 4.2vw;
}
main.kyoto #access .inner .box h4 span {
  font-size: 1.3vw;
}
@media screen and (max-width: 767px) {
  main.kyoto #access .inner .box h4 span {
    display: block;
    font-size: 3vw;
    width: 100%;
    line-height: 1.4;
    margin: 0 auto;
    margin-top: 10px;
  }
}
main.kyoto #access .inner .box .detail {
  font-size: 1.3vw;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main.kyoto #access .inner .box .detail {
    font-size: 3.4vw;
  }
}

main.nagoya {
  background: url(./img/footer_logo.png) no-repeat left bottom/40%, linear-gradient(90deg, #000, #494949, #000);
}
@media screen and (max-width: 767px) {
  main.nagoya {
    background: url(./img/footer_logo.png) no-repeat left bottom/70%, linear-gradient(90deg, #000, #494949, #000);
  }
}
main.nagoya #mv .inner {
  max-width: 76.042vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #mv .inner {
    max-width: 90%;
  }
}
main.nagoya #mv .inner ul li.area {
  width: 23%;
}
@media screen and (max-width: 767px) {
  main.nagoya #mv .inner ul li.area {
    font-size: 5vw;
  }
}
main.nagoya #mv .inner ul li.area::before {
  border-top: 2.34vw solid #3aacad;
}
@media screen and (max-width: 767px) {
  main.nagoya #mv .inner ul li.area::before {
    border-top: 2vw solid #3aacad;
  }
}
main.nagoya #mv .inner ul li.day {
  width: 75%;
}
main.nagoya #mv .inner ul li.day span {
  font-size: 4.8vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #mv .inner ul li.day span {
    font-size: 6.5vw;
    line-height: 1;
  }
}
main.nagoya #about .inner ul li:nth-child(2) .area {
  padding: 1vw 6.5vw 1.4vw;
  font-size: 4.3vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #about .inner ul li:nth-child(2) .area {
    padding: 1vw 3.5vw 1.4vw;
    font-size: 7vw;
  }
}
main.nagoya #about .inner ul li:nth-child(2) .area::before {
  border-top: 2.34vw solid #3aacad;
}
@media screen and (max-width: 767px) {
  main.nagoya #about .inner ul li:nth-child(2) .area::before {
    border-top: 3vw solid #3aacad;
  }
}
main.nagoya #item01 {
  padding-top: 15vw;
  padding-bottom: 2vw;
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 1%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 2%/contain, url(./img/event_bg.svg) no-repeat 50% 63%/contain;
  }
}
main.nagoya #item01 h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.nagoya #item01 .catch {
  margin-top: 5.3vw;
}
main.nagoya #item01 .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner {
    max-width: 90%;
  }
}
main.nagoya #item01 .inner .area_premia {
  background: url(./img/nagoya/item_frame.png) no-repeat center center/contain;
  padding: 10.41vw 5.2vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia {
    background: url(./img/nagoya/sp_item_frame.png) no-repeat center top/contain;
  }
}
main.nagoya #item01 .inner .area_premia ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
main.nagoya #item01 .inner .area_premia ul li {
  font-weight: 900;
  font-size: 1.8vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul li {
    font-size: 4vw;
  }
  main.nagoya #item01 .inner .area_premia ul li:not(:first-child) {
    margin-top: 30px;
  }
}
main.nagoya #item01 .inner .area_premia ul li .name {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul li .name {
    padding-top: 10px;
  }
}
main.nagoya #item01 .inner .area_premia ul li .name span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul li .name span {
    font-size: 3vw;
  }
}
main.nagoya #item01 .inner .area_premia ul li .price {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul li .price {
    padding-top: 0;
  }
}
main.nagoya #item01 .inner .area_premia ul li .price span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item01 .inner .area_premia ul li .price span {
    font-size: 2vw;
  }
}
main.nagoya #item01 .inner .area_premia ul li a {
  display: block;
}
main.nagoya #item01 .inner .area_premia ul li a:hover {
  filter: brightness(0.5);
}
main.nagoya #miracle {
  overflow: hidden;
  position: relative;
  background: url(./img/nagoya/miracle_bg.png) no-repeat center center/contain;
  padding: 16vw 0 20vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle {
    background: url(./img/nagoya/sp_miracle_bg.png) no-repeat center center/cover;
    padding: 35vw 0 42vw;
  }
}
main.nagoya #miracle .snow_outer {
  overflow: hidden;
  position: relative;
  margin-top: -3vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .snow_outer {
    padding: 10vw 0 10vw;
  }
}
main.nagoya #miracle .snow {
  color: snow;
  font-size: 10px;
  position: absolute;
  top: -5%;
  text-shadow: 5vw -100px 2px, 10vw -400px 3px, 20vw -500px 4px, 30vw -580px 1px, 39vw -250px 2px, 42vw -340px 5px, 56vw -150px 2px, 63vw -180px 0, 78vw -220px 4px, 86vw -320px 9px, 94vw -170px 7px;
  animation: snow01 14s linear infinite;
}
main.nagoya #miracle .snow2nd {
  animation: snow02 16s linear infinite;
}
@keyframes snow01 {
  0% {
    transform: rotate(0deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: rotate(20deg);
    top: 100%;
    opacity: 0;
  }
}
@keyframes snow02 {
  0% {
    transform: rotate(0deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    color: transparent;
    top: 150%;
  }
}
main.nagoya #miracle .inner {
  color: #fff;
  max-width: 84.375vw;
  width: 90%;
  margin: 0 auto;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner {
    max-width: 100%;
    width: 100%;
  }
}
main.nagoya #miracle .inner::before {
  content: "●";
  pointer-events: none;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: -5%;
  text-shadow: 5vw -100px 2px, 10vw -400px 3px, 20vw -500px 4px, 30vw -580px 1px, 39vw -250px 2px, 42vw -340px 5px, 56vw -150px 2px, 63vw -180px 0, 78vw -220px 4px, 86vw -320px 9px, 94vw -170px 7px;
  animation: snow01 14s linear 7s infinite;
  z-index: 0;
}
main.nagoya #miracle .inner::after {
  content: "●";
  pointer-events: none;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: -5%;
  text-shadow: 5vw -100px 2px, 10vw -400px 3px, 20vw -500px 4px, 30vw -580px 1px, 39vw -250px 2px, 42vw -340px 5px, 56vw -150px 2px, 63vw -180px 0, 78vw -220px 4px, 86vw -320px 9px, 94vw -170px 7px;
  animation: snow02 14s linear 7s infinite;
  z-index: 0;
}
main.nagoya #miracle .inner h3 {
  font-size: 4vw;
  line-height: 1.4;
  text-shadow: 0.3645vw 0.4166vw 0px #172280;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner h3 {
    font-size: 6.5vw;
  }
}
main.nagoya #miracle .inner h3 p {
  font-size: 5.2vw;
  display: inline;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner h3 p {
    font-size: 8vw;
  }
}
main.nagoya #miracle .inner h3 span {
  font-size: 5.2vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner h3 span {
    font-size: 6.5vw;
  }
}
main.nagoya #miracle .inner ul {
  display: grid;
  gap: 0vw;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul {
    grid-template-columns: repeat(1, minmax(50px, 1fr));
    margin-top: 2%;
  }
}
main.nagoya #miracle .inner ul li {
  position: relative;
  z-index: 1;
}
main.nagoya #miracle .inner ul li a {
  display: block;
}
main.nagoya #miracle .inner ul li a .img:hover {
  filter: brightness(0.5);
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li a div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -2%;
  }
}
main.nagoya #miracle .inner ul li a div img {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 9.89vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li a div img {
    width: 25%;
    position: static;
  }
}
main.nagoya #miracle .inner ul li a div p {
  font-size: 2vw;
  line-height: 1.4;
  text-shadow: 0.2vw 0.2vw 0px #172280;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li a div p {
    width: 60%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
main.nagoya #miracle .inner ul li a div p small {
  font-size: 1.6vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li a div p small {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li:nth-child(1) div {
    margin-top: -5%;
  }
}
main.nagoya #miracle .inner ul li:nth-child(2) .img {
  width: 95%;
  margin-top: 8.5%;
}
@media screen and (max-width: 767px) {
  main.nagoya #miracle .inner ul li:nth-child(2) .img {
    width: 100%;
    margin-top: 0;
  }
}
main.nagoya #anniversary {
  position: relative;
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary {
    margin-top: -10vw;
  }
}
main.nagoya #anniversary .light {
  position: absolute;
  width: 44.2vw;
  z-index: -1;
}
@keyframes light {
  0% {
    filter: brightness(1) blur(0px);
  }
  50% {
    filter: brightness(3) blur(0.5px);
  }
  100% {
    filter: brightness(1) blur(0px);
  }
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light {
    width: 50vw;
  }
}
main.nagoya #anniversary .light01 {
  top: -3%;
  left: -10%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light01 {
    top: 3%;
  }
}
main.nagoya #anniversary .light02 {
  top: 20%;
  left: 60%;
  animation: light 3s ease-in-out 1s infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light02 {
    top: 26%;
    left: 53%;
  }
}
main.nagoya #anniversary .light03 {
  top: 40%;
  left: -5%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light03 {
    top: 51%;
    left: 0%;
  }
}
main.nagoya #anniversary .light04 {
  top: 61%;
  left: 57%;
  animation: light 3s ease-in-out 1s infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light04 {
    top: 71%;
    left: 57%;
  }
}
main.nagoya #anniversary .light05 {
  top: 81%;
  left: -5%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .light05 {
    top: 88%;
  }
}
main.nagoya #anniversary .inner {
  max-width: 65.6vw;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner {
    max-width: 100%;
  }
}
main.nagoya #anniversary .inner h3 {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: url(./img/1st_anniversary.png);
          mask-image: url(./img/1st_anniversary.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0%;
          mask-position: 100% 0%;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
}
main.nagoya #anniversary .inner h3::before {
  content: "";
  height: 100%;
  width: 3.083vw;
  position: absolute;
  top: -9.375vw;
  left: -50%;
  background-color: #fff;
  opacity: 0;
  animation: reflection02 5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner h3::before {
    left: -120%;
  }
}
@keyframes reflection02 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  66% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  83% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  84% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
main.nagoya #anniversary .inner .text {
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-size: 2.2vw;
  line-height: 1.6;
  margin-top: 2%;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .text {
    font-size: 4.8vw;
    margin-top: 4%;
  }
}
main.nagoya #anniversary .inner ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  gap: 3vw;
  margin-top: 3vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner ul {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 5vw;
    margin-top: 5vw;
  }
}
main.nagoya #anniversary .inner ul li a {
  display: block;
}
main.nagoya #anniversary .inner ul li a:hover img {
  filter: brightness(0.5);
}
main.nagoya #anniversary .inner .box {
  color: #fff;
  font-weight: 900;
  margin-top: 3.47vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box {
    margin-top: 6vw;
  }
}
main.nagoya #anniversary .inner .box .anniversary_img:hover {
  filter: brightness(0.5);
}
main.nagoya #anniversary .inner .box .box_detail {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail {
    margin-top: 2vw;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content01 {
  font-size: 5vw;
  white-space: nowrap;
  line-height: 1.4;
  width: 60%;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content01 {
    font-size: 6.5vw;
    margin-top: 2%;
    line-height: 1.55;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 {
  width: 40%;
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 {
  display: flex;
  justify-content: space-between;
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 {
  width: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./img/number_bg.png) no-repeat top center/contain;
  margin: 4% 0;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 {
    margin: 12% 0 0;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number {
  display: inline;
  color: #000;
  text-align: center;
  font-size: 2.3vw;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number {
    font-size: 3vw;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number span {
  padding: 0 1%;
  font-size: 3.44vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number span {
    font-size: 5vw;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content03 {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content03 {
    width: 48%;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content03 img {
  width: 8.5vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content0203 .content03 img {
    width: 95%;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content04 {
  font-size: 4.4vw;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content04 {
    font-size: 6vw;
    line-height: 1.4;
  }
}
main.nagoya #anniversary .inner .box .box_detail .content020304 .content04 span {
  font-size: 2vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #anniversary .inner .box .box_detail .content020304 .content04 span {
    font-size: 3vw;
  }
}
main.nagoya #item02 {
  padding-top: 5vw;
  padding-bottom: 12vw;
  background: url(./img/event_bg.svg) no-repeat 50% 21%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 97%/30%;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 {
    padding-top: 15vw;
    background: url(./img/event_bg.svg) no-repeat 100% 2%/contain, url(./img/event_bg_sp.png) no-repeat 50% 35%/contain;
  }
}
main.nagoya #item02 h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.nagoya #item02 .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner {
    max-width: 90%;
  }
}
main.nagoya #item02 .inner .event_item ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .event_item ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.nagoya #item02 .inner .event_item ul li:nth-child(1) img {
  margin-top: 3vw;
}
main.nagoya #item02 .inner .event_item ul li a {
  color: #fff;
  font-weight: 900;
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.nagoya #item02 .inner .event_item ul li a:hover img {
  filter: brightness(0.5);
}
main.nagoya #item02 .inner .event_item ul li a .name_price {
  margin-top: 1vw;
  width: 70%;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .event_item ul li a .name_price {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
main.nagoya #item02 .inner .event_item ul li a .name_price span {
  font-size: 0.8vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .event_item ul li a .name_price span {
    font-size: 2vw;
  }
}
main.nagoya #item02 .inner .event_item ul li a .number {
  margin-top: 1vw;
  width: 30%;
  height: 3vw;
  color: #000;
  text-align: center;
  font-size: 1vw;
  line-height: 1.4;
  background: url(./img/number_bg.png) no-repeat top center/contain;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .event_item ul li a .number {
    font-size: 3vw;
    height: auto;
  }
}
main.nagoya #item02 .inner .event_item ul li a .number span {
  padding: 0 0.1vw;
  font-size: 1.8vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .event_item ul li a .number span {
    font-size: 4.5vw;
  }
}
main.nagoya #item02 .inner .four_line ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .four_line ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.nagoya #item02 .inner .catch {
  color: #ebc21e;
  font-size: 2.8vw;
  font-weight: 900;
  text-align: center;
  margin-top: 8.3vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .catch {
    font-size: 6vw;
    line-height: 1.5;
    white-space: nowrap;
  }
}
main.nagoya #item02 .inner .catch span {
  font-size: 3.33vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #item02 .inner .catch span {
    font-size: 8vw;
  }
}
main.nagoya #benefits .inner {
  width: 95%;
  max-width: 89.583vw;
  margin: 8.3vw 0 0 0;
}
@media screen and (max-width: 767px) {
  main.nagoya #benefits .inner {
    width: 95%;
    max-width: 100%;
    margin: 12vw 0 0 0;
  }
}
main.nagoya #access .inner .box .detail {
  text-align: center;
}
main.nagoya #access .inner .box .detail .detail_inner {
  text-align: left;
  display: inline-block;
}
main.nagoya #access .inner .box .detail .detail_inner h4 span {
  font-size: 1.9vw;
}
@media screen and (max-width: 767px) {
  main.nagoya #access .inner .box .detail .detail_inner h4 span {
    display: block;
    font-size: 4.5vw;
  }
}

main.sendai {
  background: url(./img/footer_logo.png) no-repeat left bottom/40%, linear-gradient(90deg, #000, #494949, #000);
}
@media screen and (max-width: 767px) {
  main.sendai {
    background: url(./img/footer_logo.png) no-repeat left bottom/70%, linear-gradient(90deg, #000, #494949, #000);
  }
}
main.sendai #mv .inner {
  max-width: 76.042vw;
}
@media screen and (max-width: 767px) {
  main.sendai #mv .inner {
    max-width: 90%;
  }
}
main.sendai #mv .inner ul li.area {
  width: 23%;
}
@media screen and (max-width: 767px) {
  main.sendai #mv .inner ul li.area {
    font-size: 5vw;
  }
}
main.sendai #mv .inner ul li.area::before {
  border-top: 2.34vw solid #ed1a0b;
}
@media screen and (max-width: 767px) {
  main.sendai #mv .inner ul li.area::before {
    border-top: 2vw solid #ed1a0b;
  }
}
main.sendai #mv .inner ul li.day {
  width: 75%;
  font-size: 2.8vw;
}
@media screen and (max-width: 767px) {
  main.sendai #mv .inner ul li.day span {
    line-height: 1;
    font-size: 7vw;
  }
}
main.sendai #about .inner ul li:nth-child(2) .area {
  padding: 1vw 8.5vw 1.4vw;
  font-size: 4.5vw;
}
@media screen and (max-width: 767px) {
  main.sendai #about .inner ul li:nth-child(2) .area {
    padding: 1vw 8.5vw 1.4vw;
    font-size: 6vw;
  }
}
main.sendai #about .inner ul li:nth-child(2) .area::before {
  border-top: 2.34vw solid #ed1a0b;
}
@media screen and (max-width: 767px) {
  main.sendai #about .inner ul li:nth-child(2) .area::before {
    border-top: 3vw solid #ed1a0b;
  }
}
main.sendai #item01 {
  padding-top: 15vw;
  padding-bottom: 2vw;
  background: url(./img/about_bg_bottom01.png) no-repeat 10% 2%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 1%/contain;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 {
    background: url(./img/about_bg_bottom01.png) no-repeat 10% 1%/15%, url(./img/about_bg_bottom02.png) no-repeat 100% 2%/contain, url(./img/event_bg.svg) no-repeat 50% 63%/contain;
  }
}
main.sendai #item01 h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.sendai #item01 .catch {
  margin-top: 5.3vw;
}
main.sendai #item01 .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner {
    max-width: 90%;
  }
}
main.sendai #item01 .inner .area_premia {
  background: url(./img/sendai/item_frame.png) no-repeat center center/contain;
  padding: 10.41vw 5.2vw 5.2vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia {
    background: url(./img/sendai/sp_item_frame.png) no-repeat center top/contain;
  }
}
main.sendai #item01 .inner .area_premia ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
main.sendai #item01 .inner .area_premia ul li {
  font-weight: 900;
  font-size: 1.8vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul li {
    font-size: 4vw;
  }
  main.sendai #item01 .inner .area_premia ul li:not(:first-child) {
    margin-top: 30px;
  }
}
main.sendai #item01 .inner .area_premia ul li .name {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul li .name {
    padding-top: 10px;
  }
}
main.sendai #item01 .inner .area_premia ul li .name span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul li .name span {
    font-size: 3vw;
  }
}
main.sendai #item01 .inner .area_premia ul li .price {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul li .price {
    padding-top: 0;
  }
}
main.sendai #item01 .inner .area_premia ul li .price span {
  font-size: 1.4vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item01 .inner .area_premia ul li .price span {
    font-size: 2vw;
  }
}
main.sendai #item01 .inner .area_premia ul li a {
  display: block;
}
main.sendai #item01 .inner .area_premia ul li a:hover {
  filter: brightness(0.5);
}
main.sendai #anniversary {
  position: relative;
  margin-top: 12vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary {
    margin-top: 17vw;
  }
}
main.sendai #anniversary .light {
  position: absolute;
  width: 44.2vw;
  z-index: -1;
}
@keyframes light {
  0% {
    filter: brightness(1) blur(0px);
  }
  50% {
    filter: brightness(3) blur(0.5px);
  }
  100% {
    filter: brightness(1) blur(0px);
  }
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light {
    width: 50vw;
  }
}
main.sendai #anniversary .light01 {
  top: -3%;
  left: -10%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light01 {
    top: 3%;
  }
}
main.sendai #anniversary .light02 {
  top: 20%;
  left: 60%;
  animation: light 3s ease-in-out 1s infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light02 {
    top: 26%;
    left: 53%;
  }
}
main.sendai #anniversary .light03 {
  top: 40%;
  left: -5%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light03 {
    top: 51%;
    left: 0%;
  }
}
main.sendai #anniversary .light04 {
  top: 61%;
  left: 57%;
  animation: light 3s ease-in-out 1s infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light04 {
    top: 71%;
    left: 57%;
  }
}
main.sendai #anniversary .light05 {
  top: 81%;
  left: -5%;
  animation: light 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .light05 {
    top: 88%;
  }
}
main.sendai #anniversary .inner {
  max-width: 65.6vw;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner {
    max-width: 100%;
  }
}
main.sendai #anniversary .inner h3 {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: url(./img/1st_anniversary.png);
          mask-image: url(./img/1st_anniversary.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0%;
          mask-position: 100% 0%;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
}
main.sendai #anniversary .inner h3::before {
  content: "";
  height: 100%;
  width: 3.083vw;
  position: absolute;
  top: -9.375vw;
  left: -50%;
  background-color: #fff;
  opacity: 0;
  animation: reflection02 5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner h3::before {
    left: -120%;
  }
}
@keyframes reflection02 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  66% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  83% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  84% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
main.sendai #anniversary .inner .text {
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-size: 2.2vw;
  line-height: 1.6;
  margin-top: 2%;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .text {
    font-size: 4.8vw;
    margin-top: 4%;
  }
}
main.sendai #anniversary .inner ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  gap: 3vw;
  margin-top: 3vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner ul {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 5vw;
    margin-top: 5vw;
  }
}
main.sendai #anniversary .inner ul li a {
  display: block;
}
main.sendai #anniversary .inner ul li a:hover img {
  filter: brightness(0.5);
}
main.sendai #anniversary .inner .box {
  color: #fff;
  font-weight: 900;
  margin-top: 3.47vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box {
    margin-top: 6vw;
  }
}
main.sendai #anniversary .inner .box .anniversary_img:hover {
  filter: brightness(0.5);
}
main.sendai #anniversary .inner .box .box_detail {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail {
    margin-top: 2vw;
  }
}
main.sendai #anniversary .inner .box .box_detail .content01 {
  font-size: 5vw;
  white-space: nowrap;
  line-height: 1.4;
  width: 60%;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content01 {
    font-size: 6.5vw;
    margin-top: 2%;
    line-height: 1.55;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 {
  width: 40%;
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 {
  display: flex;
  justify-content: space-between;
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 {
  width: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./img/number_bg.png) no-repeat top center/contain;
  margin: 4% 0;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 {
    margin: 12% 0 0;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number {
  display: inline;
  color: #000;
  text-align: center;
  font-size: 2.3vw;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number {
    font-size: 3vw;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number span {
  padding: 0 1%;
  font-size: 3.44vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content02 .number span {
    font-size: 5vw;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content03 {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content03 {
    width: 48%;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content03 img {
  width: 8.5vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content0203 .content03 img {
    width: 95%;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content04 {
  font-size: 4.4vw;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content04 {
    font-size: 6vw;
    line-height: 1.4;
  }
}
main.sendai #anniversary .inner .box .box_detail .content020304 .content04 span {
  font-size: 2vw;
}
@media screen and (max-width: 767px) {
  main.sendai #anniversary .inner .box .box_detail .content020304 .content04 span {
    font-size: 3vw;
  }
}
main.sendai #item02 {
  padding-top: 5vw;
  padding-bottom: 12vw;
  background: url(./img/event_bg.svg) no-repeat 50% 19%/contain, url(./img/accesse_bg_top.png) no-repeat 0% 97%/30%;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 {
    padding-top: 15vw;
    background: url(./img/event_bg_sp.png) no-repeat 50% 35%/contain;
  }
}
main.sendai #item02 h3 {
  width: 36vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 h3 {
    width: 60%;
    margin-left: -15%;
  }
}
main.sendai #item02 .inner {
  width: 90%;
  max-width: 79.1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner {
    max-width: 90%;
  }
}
main.sendai #item02 .inner .event_item ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .event_item ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.sendai #item02 .inner .event_item ul li:nth-child(1) img {
  margin-top: 3vw;
}
main.sendai #item02 .inner .event_item ul li a {
  color: #fff;
  font-weight: 900;
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.sendai #item02 .inner .event_item ul li a:hover img {
  filter: brightness(0.5);
}
main.sendai #item02 .inner .event_item ul li a .name_price {
  margin-top: 1vw;
  width: 70%;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .event_item ul li a .name_price {
    font-size: 3.2vw;
    margin-bottom: 10px;
  }
}
main.sendai #item02 .inner .event_item ul li a .name_price span {
  font-size: 0.8vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .event_item ul li a .name_price span {
    font-size: 2vw;
  }
}
main.sendai #item02 .inner .event_item ul li a .number {
  margin-top: 1vw;
  width: 30%;
  height: 3vw;
  color: #000;
  text-align: center;
  font-size: 1vw;
  line-height: 1.4;
  background: url(./img/number_bg.png) no-repeat top center/contain;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .event_item ul li a .number {
    font-size: 3vw;
    height: auto;
  }
}
main.sendai #item02 .inner .event_item ul li a .number span {
  padding: 0 0.1vw;
  font-size: 1.8vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .event_item ul li a .number span {
    font-size: 4.5vw;
  }
}
main.sendai #item02 .inner .four_line ul {
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .four_line ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
main.sendai #item02 .inner .catch {
  color: #ebc21e;
  font-size: 2.8vw;
  font-weight: 900;
  text-align: center;
  margin-top: 8.3vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .catch {
    font-size: 6vw;
    line-height: 1.5;
    white-space: nowrap;
  }
}
main.sendai #item02 .inner .catch span {
  font-size: 3.33vw;
}
@media screen and (max-width: 767px) {
  main.sendai #item02 .inner .catch span {
    font-size: 8vw;
  }
}
main.sendai #benefits .inner {
  width: 95%;
  max-width: 89.583vw;
  margin: 8.3vw 0 0 0;
}
@media screen and (max-width: 767px) {
  main.sendai #benefits .inner {
    width: 95%;
    max-width: 100%;
    margin: 12vw 0 0 0;
  }
}
main.sendai #access .inner .box .detail {
  text-align: center;
}
main.sendai #access .inner .box .detail .detail_inner {
  text-align: left;
  display: inline-block;
}
main.sendai #access .inner .box .detail .detail_inner h4 span {
  font-size: 1.9vw;
}
@media screen and (max-width: 767px) {
  main.sendai #access .inner .box .detail .detail_inner h4 span {
    display: block;
    font-size: 4.5vw;
  }
}

.hover_imgs img {
  position: absolute;
  left: 0;
  top: 0;
}
.hover_imgs .img1 {
  z-index: 6;
  -webkit-clip-path: polygon(0px -1%, 100% -1%, 100% 20%, 0px 20%);
          clip-path: polygon(0px -1%, 100% -1%, 100% 20%, 0px 20%);
}
.hover_imgs .img2 {
  z-index: 5;
  -webkit-clip-path: polygon(0px 19%, 100% 19%, 100% 40%, 0px 40%);
          clip-path: polygon(0px 19%, 100% 19%, 100% 40%, 0px 40%);
}
.hover_imgs .img3 {
  z-index: 4;
  -webkit-clip-path: polygon(0px 39%, 100% 39%, 100% 60%, 0px 60%);
          clip-path: polygon(0px 39%, 100% 39%, 100% 60%, 0px 60%);
}
.hover_imgs .img4 {
  z-index: 3;
  -webkit-clip-path: polygon(0px 59%, 100% 59%, 100% 80%, 0px 80%);
          clip-path: polygon(0px 59%, 100% 59%, 100% 80%, 0px 80%);
}
.hover_imgs .img5 {
  z-index: 2;
  -webkit-clip-path: polygon(0px 79%, 100% 79%, 100% 100%, 0px 100%);
          clip-path: polygon(0px 79%, 100% 79%, 100% 100%, 0px 100%);
}
.hover_imgs .img6 {
  z-index: 1;
  opacity: 0;
}

.glitch_btn {
  pointer-events: none;
}

.glitch_btn:hover .img {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .img {
    opacity: 0.9;
  }
}
.glitch_btn:hover .hover_imgs .img1 {
  animation: img1 0.1s linear forwards;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .hover_imgs .img1 {
    animation: img1 0.1s linear;
  }
}
@keyframes img1 {
  0% {
    left: 305px;
  }
  25% {
    left: -300px;
  }
  50% {
    left: 100px;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}
.glitch_btn:hover .hover_imgs .img2 {
  animation: img2 0.1s linear 30ms forwards;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .hover_imgs .img2 {
    animation: img2 0.1s linear 30ms;
  }
}
@keyframes img2 {
  0% {
    left: -250px;
  }
  25% {
    left: -400px;
  }
  50% {
    left: -300px;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}
.glitch_btn:hover .hover_imgs .img3 {
  animation: img3 0.1s linear 60ms forwards;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .hover_imgs .img3 {
    animation: img3 0.1s linear 60ms;
  }
}
@keyframes img3 {
  0% {
    left: 200px;
  }
  25% {
    left: 0px;
  }
  50% {
    left: -305px;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}
.glitch_btn:hover .hover_imgs .img4 {
  animation: img4 0.1s linear 0ms forwards;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .hover_imgs .img4 {
    animation: img4 0.1s linear 0ms;
  }
}
@keyframes img4 {
  0% {
    left: -150px;
  }
  25% {
    left: 250px;
  }
  50% {
    left: -150px;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}
.glitch_btn:hover .hover_imgs .img5 {
  animation: img5 0.1s linear 30ms forwards;
}
@media screen and (max-width: 767px) {
  .glitch_btn:hover .hover_imgs .img5 {
    animation: img5 0.1s linear 30ms;
  }
}
@keyframes img5 {
  0% {
    left: 300px;
  }
  25% {
    left: -200px;
  }
  50% {
    left: 260px;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}
.glitch_btn:hover .hover_imgs .img6 {
  opacity: 1;
  animation: img6 0.1s linear 0.1s infinite !important;
}
@keyframes img6 {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.1);
  }
}

#back_btn {
  position: fixed;
  bottom: 7%;
  left: 40px;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #back_btn {
    left: 1%;
    bottom: 1%;
    display: none;
  }
}
#back_btn a:hover {
  filter: brightness(0.5);
}
#back_btn a img {
  width: 140px;
}/*# sourceMappingURL=style.css.map */