/* ハンバーガーメニュー */
/*==============================================
  会場毎カラー設定
  ここだけ変更すればOK
==============================================*/
/* INDEX */
.outer-menu.index, .sp_nav_info_ar .reserve.index {
  --venue-color: #000000;
}
/* 常滑 */
.outer-menu.tokoname, .sp_nav_info_ar .reserve.tokoname {
  --venue-color: #D57C00;
}
/* 大阪 */
.outer-menu.osaka, .sp_nav_info_ar .reserve.osaka {
  --venue-color: #C7000B;
}
/* 福岡 */
.outer-menu.fukuoka, .sp_nav_info_ar .reserve.fukuoka {
  --venue-color: #D55078;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6H6Mw.ttf) format('truetype');
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/********/
.sp_header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50;
  height: 50px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sp_header .sponcer {
  padding: 8px 0 0 5px;
  width: 33.333%;
  position: relative;
  z-index: 50;
}
.sp_header .sponcer img {
  max-WIDTH: 45px;
  max-height: 45px;
}
.sp_head_logo {
  position: relative;
  z-index: 50;
  padding: 9px 0 0 0px;
  width: 33.333%;
  text-align: center;
}
.sp_head_logo img {
  max-width: 125px;
}
.sp_head_btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
  width: 115px;
}
.sp_head_btn a {
  background: #A89177;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  height: 50px;
  width: 100%;
  text-align: center;
  padding: 10px;
}
.sp_nav_info_ar {
  width: 100%;
  padding: 0px 0px;
  text-align: center;
  margin: 0px 0 0;
}
.sp_nav_info_ar .reserve a, .sp_nav_info_ar .sns a {
  display: block;
}
.sp_nav_info_ar .reserve a:hover, .sp_nav_info_ar .sns a:hover {
  text-decoration: none;
}
.sp_nav_info_ar .reserve a {
  background: #FFF;
  padding: 15px 20px;
  width: 260px;
  margin: 0 auto 30px;
  border-radius: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
}
/*会場毎変更*/
/*==============================================
  予約ボタン 会場カラー
==============================================*/
.sp_nav_info_ar .reserve a {
  color: var(--venue-color);
}
.sp_nav_info_ar .sns {
  padding: 10px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp_nav_info_ar .sns .link {
  width: 25%;
}
.sp_nav_info_ar .sns a {
  display: block;
}
.sp_nav_info_ar .sns img {
  width: 40px;
}
/********/
.outer-menu {
  position: fixed;
  top: 0vh;
  right: 0px;
  z-index: 10;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
/****バツアイコン****/
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
  background: #fff;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
  background: #fff;
}
/****バツアイコン****/
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {}
.outer-menu .checkbox-toggle:checked + .hamburger {}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
  background: #fff;
}
.outer-menu .hamburger {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 90%;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 7px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding-bottom: 140px; /* フッター高さ分 */
  box-sizing: border-box;
  overflow: hidden;
}
.outer-menu .menu > div {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  border-radius: 0%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  /* iPhone下部の安全領域分だけ確保 */
  padding: 0 0 calc(90px + env(safe-area-inset-bottom));
}
/*会場毎変更*/
/*==============================================
  ハンバーガーメニュー背景 会場カラー
==============================================*/
.outer-menu .menu > div {
  background-color: var(--venue-color);
}
.outer-menu .menu > div > div {
  text-align: center;
  width: 100vw;
  height: 120%;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 20px;
  margin: 15vh 0 0;
  display: block;
  text-align: left;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.4s ease;
  padding: 8px 1em 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: "Anton", sans-serif;
}
.outer-menu .menu > div > div > ul > li > a span {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "BIZ UDGothic", sans-serif;
  line-height: 1.1;
  padding: 0 0 0 10px;
}
.outer-menu .menu > div > div > ul > li:first-child > a {
  border-top: 1px dashed rgba(255, 255, 255, 0.6);
}
.outer-menu .menu > div > div > ul > li > a:hover {
  text-decoration: none;
}
.outer-menu .menu > div > div > ul > li.recruit {
  margin: 20px 0 0;
  background: #0F4AD6;
  border-radius: 20px;
  max-width: 150px;
  text-align: center;
}
.outer-menu .menu > div > div > ul > li.recruit a {
  color: #fff;
  display: block;
  padding: 5px 10px;
}
/*
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  transition: width 0.4s ease;
}
*/
/*==============================================
  SP VENUE アコーディオン
==============================================*/
/*----------------------------------------------
  VENUE親
----------------------------------------------*/
.outer-menu .menu > div > div > ul > li.has_child {
  position: relative;
  padding: 0;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
}
/*==============================================
  開閉用checkbox
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > .child_toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
/*==============================================
  VENUE タップ部分
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > .child_label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px 3em 7px 1em;
  box-sizing: border-box;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
}
/*==============================================
  VENUE
==============================================*/
.outer-menu .child_title {
  display: block;
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
/*==============================================
  全国の会場
==============================================*/
.outer-menu .child_title .child_jp {
  display: inline-block;
  padding: 0 0 0 10px;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
}
/*==============================================
  矢印
==============================================*/
.outer-menu .child_arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform:
    translateY(-65%) rotate(45deg);
  transition: transform .3s ease;
}
/*==============================================
  矢印 開いた状態
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > .child_toggle:checked + .child_label .child_arrow {
  transform:
    translateY(-20%) rotate(225deg);
}
/*==============================================
  ドロップダウン 閉じた状態
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown {
  display: block;
  width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height .5s ease, opacity .3s ease, visibility .3s ease;
}
/*==============================================
  ドロップダウン 開いた状態
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > .child_toggle:checked ~ ul.dropdown {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
/*==============================================
  VENUE 開いた状態
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > .child_toggle:checked + .child_label {
  background: rgba(255, 255, 255, .08);
}
/*==============================================
  子メニュー li
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
/*==============================================
  子メニュー a
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li, .outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li > a {
  width: 100%;
  padding: 5px 20px;
  box-sizing: border-box;
  color: #fff;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: .3s;
  display: block;
}
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li:first-child {
  margin: 25px 0 0px;
}
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li:last-child {
  margin: 0 0 20px;
}
/*==============================================
  会場ロゴ
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li > span, .outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li > a > span {
  display: block;
  width: 100%;
  margin: 3px 0 0 0px;
  padding: 0;
  line-height: 1;
}
/*==============================================
  会場ロゴ画像
==============================================*/
.outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li > span > img, .outer-menu .menu > div > div > ul > li.has_child > ul.dropdown > li > a > span > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  margin: auto;
}