@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: calc(10 / 750 * 100vw);
}

body {
  font-family: "Noto Sans JP", "メイリオ", "ＭＳ Ｐゴシック", "小塚ゴシック Pro R", "ヒラギノ角ゴ Pro W3", "Meiryo", "MS PGothic", "KozGoPro-Regular", "Hiragino Kaku Gothic Pro", "MS UI Gothic", Osaka, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #fff;
  background-color: #000;
}
body img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
body a {
  display: block;
  color: #fff;
}

header,
section,
main,
footer {
  position: relative;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  #main {
    flex: 1;
  }
}
.inner {
  position: relative;
  width: calc(640 / 750 * 100%);
  margin: 0 auto;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #main {
    margin-top: 8rem;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
  body {
    font-size: 1.6rem;
  }
  body a {
    transition: 0.3s ease;
  }
  #main,
  #footer {
    width: calc(1600 / 1920 * 100%);
  }
  .inner {
    width: 100%;
    max-width: 1600px !important;
    padding: 0 calc(288 / 1600 * 100%);
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
  .inner {
    padding: 0 288px;
  }
}
/* =====================================================================
*    header
* =================================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.btn_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: #000;
  z-index: 2;
}
.btn_menu_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  margin: 32.5% 0 0 25%;
  padding-top: 35%;
}
.btn_menu_inner span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 7.5%;
  background-color: #21a1d9;
  transition: all 0.3s;
  transform-origin: right center;
}
.btn_menu_inner span:nth-of-type(1) {
  top: 0;
}
.btn_menu_inner span:nth-of-type(2) {
  top: 45%;
}
.btn_menu_inner span:nth-of-type(3) {
  bottom: 0;
  width: 50%;
}
.btn_menu.active span:nth-of-type(1) {
  transform: translateY(40%) rotate(-35deg);
}
.btn_menu.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
.btn_menu.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(0) rotate(35deg);
}

.nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 8rem);
  margin-top: 8rem;
  padding: 6rem 0;
  background-color: #000;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1;
}
.nav_ttl {
  position: relative;
  width: calc(670 / 750 * 100%);
  height: 8rem;
  font-size: 3.2rem;
  font-weight: 700;
  background: #21a1d9;
  z-index: 2;
}
.nav_ttl a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav_menu {
  position: relative;
  margin-bottom: 7rem;
}
.nav_menu li {
  margin-bottom: 5rem;
  text-align: center;
}
.nav_menu li a {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 700;
}
.nav_menu li a small {
  display: block;
  font-family: "Concert One", cursive;
  font-weight: normal;
  font-size: 77%;
  margin-top: 0.6em;
  color: #21a1d9;
}
.nav_menu li.nolink a {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}
.nav_sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_sns li {
  margin: 0 5rem;
  width: 4.4rem;
}
.nav_sns li:nth-child(1) a {
  width: 113%;
}
.nav_banner {
  margin-top: 5rem;
}
.nav_banner li {
  margin: 0 auto 3rem;
  width: calc(300 / 750 * 100%);
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.nagoya .nav_ttl a {
  color: #000;
}
.nagoya .nav_ttl,
.nagoya .btn_menu_inner span {
  background: #e6c212;
}
.nagoya .nav_menu li a small {
  color: #e6c212;
}
.nagoya .nav_menu li a::before,
.nagoya .header_scroll::before {
  border-color: #e6c212;
}

.kobe .nav_ttl,
.kobe .btn_menu_inner span {
  background: #21a1d9;
}
.kobe .nav_menu li a small {
  color: #21a1d9;
}
.kobe .nav_menu li a::before,
.kobe .header_scroll::before {
  border-color: #21a1d9;
}

@media screen and (min-width: 768px) {
  #header {
    left: auto;
    right: 0;
    padding: 2rem 2rem 7rem;
    width: calc(320 / 1920 * 100%);
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
  }
  #header.style2 .nav_menu li a::before,
  #header.style2 .header_scroll::before {
    border-color: #f2cb13;
  }
  .btn_menu {
    display: none;
  }
  .nav {
    position: relative;
    display: block;
    margin: 0;
    padding: 4rem 0 7rem;
    width: auto;
    height: auto;
    height: 100%;
    background: transparent;
  }
  .nav::-webkit-scrollbar {
    width: 1rem;
  }
  .nav_ttl {
    width: 100%;
    height: 6.4rem;
    font-size: 2rem;
  }
  .nav_menu {
    margin-bottom: 5rem;
  }
  .nav_menu li {
    margin-bottom: 4rem;
  }
  .nav_menu li a {
    position: relative;
    font-size: 1.8rem;
  }
  .nav_menu li a::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: -1.2em;
    width: 0.5em;
    height: 0.5em;
    border-top: 0.15em solid #21a1d9;
    border-right: 0.15em solid #21a1d9;
    transform: rotate(45deg);
    opacity: 0;
    transition: 0.3s ease;
  }
  .nav_menu li a:hover::before {
    opacity: 1;
  }
  .nav_sns li {
    margin: 0 3rem;
    width: 3rem;
  }
  .nav_sns li a:hover {
    opacity: 0.7;
  }
  .nav_banner li {
    width: 62.5%;
  }
  .nav_banner li a:hover {
    opacity: 0.7;
  }
  .header_scroll {
    position: fixed;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 3.5rem;
    width: calc(320 / 1920 * 100%);
    width: 100%;
    text-align: center;
    font-family: "Concert One", cursive;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3;
  }
  .header_scroll::before {
    content: "";
    position: absolute;
    bottom: 3rem;
    left: 50%;
    width: 0.7em;
    height: 0.7em;
    border-top: 0.2em solid #21a1d9;
    border-right: 0.2em solid #21a1d9;
    transform: rotate(135deg) translateX(-50%);
    transform-origin: left bottom;
    transition: 2s linear;
  }
}
/* =====================================================================
    submv
======================================================================*/
.submv::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/img_submv_nagoya-sp.jpg) no-repeat center top/contain;
}
.submv h1 {
  position: relative;
  margin: 0 auto -2rem;
  padding-top: 21.2rem;
  width: 66.6rem;
}

.submv_date {
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
  font-family: "Concert One", cursive;
  font-size: 4rem;
}
.submv_date small {
  margin-right: 0.5em;
  font-size: 55%;
  writing-mode: vertical-rl;
  white-space: pre;
}
.submv_date strong {
  font-size: 200%;
}
.submv_date strong span {
  color: #e6c212;
}

.submv_place {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 700;
}
.submv_place span {
  margin-right: 0.7em;
  padding: 0.2em 0.6em;
  font-size: 70%;
  color: #000;
  background: #fff;
}

.kobe .submv::before {
  background-image: url(../images/common/img_submv_kobe-sp.jpg);
}
.kobe .submv_date strong span {
  color: #21a1d9;
}

@media screen and (min-width: 768px) {
  .submv::before {
    width: 100vw;
    background-image: url(../images/common/img_submv_nagoya-pc.jpg);
    background-position: center bottom;
    background-size: cover;
  }
  .submv h1 {
    margin-bottom: -2rem;
    padding-top: calc(181 / 1920 * 100%);
    width: calc(506 / 1920 * 100%);
  }
  .kobe .submv::before {
    background-image: url(../images/common/img_submv_kobe-pc.jpg);
  }
  .submv_date {
    font-size: min(2vw, 40px);
  }
  .submv_place {
    font-size: 2rem;
  }
}
/* =====================================================================
    subpage
======================================================================*/
.subpage {
  padding-top: 8rem;
}

.sec_ttl {
  position: relative;
  margin-bottom: 3.3rem;
  padding: 0.65em 0 0;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 700;
}
.sec_ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: url(../../assets/images/common/img_dots1.png) no-repeat center/auto 100%;
}
.sec_ttl::after {
  content: attr(data-ttl);
  display: block;
  margin-top: 0.7em;
  font-family: "Concert One", cursive;
  font-size: 43%;
  font-weight: normal;
  color: #e6c212;
}

.sub_ttl {
  position: relative;
  margin-bottom: 4rem;
  padding: 0.65em 0 0;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}
.sub_ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 0.15em;
  border-top: 0.2em dotted #e6c212;
}
.sub_ttl::after {
  content: attr(data-ttl);
  display: block;
  margin-top: 0.7em;
  font-family: "Concert One", cursive;
  font-size: 60%;
  font-weight: normal;
  color: #e6c212;
}

.btn1 a {
  display: inline-flex;
  align-items: center;
}
.btn1 a svg {
  flex-shrink: 0;
  margin-right: 0.5em;
  width: 1.8em;
  height: 1.8em;
  fill: #e55927;
  stroke: #fff;
  stroke-width: 2px;
}
.btn1 a span {
  font-weight: 700;
  line-height: 1.3;
}

.kobe .sec_ttl::after,
.kobe .sub_ttl::after {
  color: #21a1d9;
}
.kobe .sub_ttl::before {
  border-color: #21a1d9;
}

@media screen and (min-width: 768px) {
  .sec_ttl {
    margin-bottom: 4.2rem;
    font-size: 4.2rem;
  }
  .sub_ttl {
    font-size: 3rem;
  }
  .btn1 a svg {
    position: relative;
    left: 0;
    transition: 0.3s ease;
  }
  .btn1 a:hover svg {
    left: 0.5em;
  }
}
/* =====================================================================
*    banner
* =================================================================== */
.banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner_list li {
  margin-bottom: 2rem;
  width: 100%;
}
.banner_list li.banner_top a {
  padding: 1.5em;
  font-size: 120%;
  font-weight: 700;
  text-align: center;
  border: 0.2em solid;
}

@media screen and (min-width: 768px) {
  .banner_list li {
    margin: 0 4rem 2rem;
    width: 40rem;
  }
  .banner_list li.large {
    width: 60rem;
  }
  .banner_list li a:hover {
    opacity: 0.7;
  }
}
/* =====================================================================
*    footer
* =================================================================== */
#footer {
  padding: 12rem 0 7.5rem;
}
#footer .banner_list {
  margin-bottom: 8rem;
}
#footer .banner_list li {
  margin-bottom: 4rem;
}

.pagetop {
  margin: 0 auto 6.5rem;
  width: 3.3rem;
}

.copyright {
  text-align: center;
  font-family: "Concert One", cursive;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  #footer .banner_list {
    margin-left: calc(-168 / 1024 * 100%);
    width: calc(1360 / 1024 * 100%);
  }
  #footer .banner_list li {
    margin: 0 2rem 2rem;
  }
  .pagetop a {
    position: relative;
    top: 0;
    width: 2.5rem;
  }
  .pagetop a:hover {
    top: -1rem;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

.popup_area {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
}

.popup_inner {
  position: relative;
  align-self: flex-start;
  margin: auto;
  padding: 5.5em 0;
  width: calc(640 / 750 * 100%);
}

.popup_close {
  position: absolute;
  top: 1em;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup_close::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 100%;
  background-color: #fff;
  transform: rotate(45deg);
  margin: 0 auto;
}
.popup_close::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
  padding-top: 100%;
  background-color: #fff;
  transform: rotate(-45deg);
}

.popup_list {
  position: relative;
  padding: 10rem 5rem;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
}
.popup_list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  z-index: 2;
}
.popup_list > li h2 {
  margin-bottom: 2em;
  padding-bottom: 1em;
  text-align: center;
  font-size: 140%;
  font-weight: 700;
  line-height: 1.2;
  color: #e6c212;
  border-bottom: 1px solid;
}
.popup_list > li p {
  line-height: 1.4;
}

.kobe .popup_list > li h2 {
  color: #21a1d9;
}

.popup_movie_embed {
  position: relative;
  aspect-ratio: 16/9;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  width: 100%;
  height: 100%;
}

.popup_close2 {
  margin: 1em auto 0;
  padding: 0.5em;
  width: 30rem;
  font-size: 2.8rem;
  text-align: center;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    width: calc(1024 / 1600 * 100%);
    max-width: 1024px;
  }
  .popup_close {
    cursor: pointer;
  }
  .popup_list {
    padding: 10rem;
  }
  .popup_close2 {
    width: 50rem;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #21a1d9;
  }
}/*# sourceMappingURL=base.css.map */