@charset "utf-8";

/*
font
================================================ */
.font-chakrapetch {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}
.font-notosans {
  font-family: "Noto Sans JP", sans-serif;
  /* font-weight: 300; */
}

/*
font-size
================================================ */
/* 本文の固定スケール（rem直指定） 1rem = 16px */
/* 14px → 14 ÷ 16 = 0.875rem */
:root {
  --font-12: 0.75rem;   /* 12px */
  --font-13: 0.8125rem;  /* 13px */
  --font-14: 0.875rem;  /* 14px */
  --font-16: 1rem;      /* 16px */
  --font-18: 1.125rem;  /* 18px */
  --font-20: 1.25rem;   /* 20px */
  --font-22: 1.375rem;   /* 22px */
  --font-24: 1.5rem;   /* 24px */
  --font-25: 1.5625rem;   /* 25px */
  --font-26: 1.625rem;   /* 26px */
  --font-28: 1.75rem;   /* 28px */
  --font-34: 2.125rem;   /* 34px */
  --font-44: 2.75rem;   /* 44px */
  --lh-just: 1;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

p {
  font-size: var(--font-18);
}

@media (width < 768px) {
  p {
    font-size: 4.267vw;
  }
}

/*
GENERAL STYLING
================================================ */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-16);
  font-feature-settings: "palt";
  font-weight: 400;
  color: #000;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
p {
  margin: 0;
}
a {
  color: #000;
  text-decoration: none;
}
img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.inner {
  margin-inline: auto;
  max-width: 720px;
}
.section-title {
  margin: 0 auto 40px;
  text-align: center;
}
.sp {
  display: none;
}

@media (width < 768px) {
  body {
    font-size: 4.267vw;
  }
  .section-title {
    margin: 0 auto 10.667vw;
  }
  .sp {
    display: block;
  }
}

/*
MENU
================================================ */
.openbtn-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
}
.openbtn {
  position: relative;
  background: #000;
  cursor: pointer;
  width: 13.333vw;
  height: 13.333vw;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 0.5333vw;
  background: #fff;
  width: 7.466vw;
  }
.openbtn span:nth-of-type(1) {
  top:4vw;
}
.openbtn span:nth-of-type(2) {
  top:6.4vw;
}
.openbtn span:nth-of-type(3) {
  bottom: 4vw;
}
.openbtn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (width < 768px) {
  .openbtn-container {
    display: block;
  }
}

/*
header
================================================ */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
header .inner {
  display: flex;
}
header .globalnav {
  width: 570px;
  background: #000;
}
header .globalnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .globalnav__item a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: var(--font-20);
  letter-spacing: .025em;
  text-decoration: none;
  line-height: var(--lh-just);
  border-left: 1px solid #fff;
}
header .globalnav__item:last-of-type a {
  border-right: 1px solid #fff;
}
header .sns-link {
  display: flex;
  background: #fff;
}
header .sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
header .sns-item.x img {
  width: 20px;
  height: 20px;
}
header .sns-item.instagram img,
header .sns-item.facebook img {
  width: 23px;
  height: 23px;
}

@media (width < 768px) {
  header {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    z-index: 1000;
    overflow-y: auto;
    background: #000;
    box-sizing: border-box;
  }
  header.active {
    display: block;
  }
  header .inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  header .logo {
    margin: 0 auto;
  }
  header .globalnav {
    padding: 21.333vw 12vw 12vw;
    width: 100%;
  }
  header .globalnav__list {
    flex-direction: column;
  }
  header .globalnav__item {
    width: 100%;
  }
  header .globalnav__item a {
    padding: 5.33vw 0;
    text-align: center;
    border-top: 1px solid #fff;
    border-left: none;
  }
  header .globalnav__item:last-of-type a {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  header .globalnav__item a {
    font-size: 5.33vw;
  }
  header .sns-link {
    justify-content: center;
    width: 100%;
  }
  header .sns-item a {
    width: 13.333vw;
    height: 13.333vw;
  }
  header .sns-item.x img {
    width: 5.333vw;
    height: 5.333vw;
  }
  header .sns-item.instagram img,
  header .sns-item.facebook img {
    width: 6.133vw;
    height: 6.133vw;
  }
}

/*
footer
================================================ */
footer {
  padding: 38px 50px;
  text-align: center;
  background: #a0b3be;
}
footer small {
  font-size: 14px;
}

@media (width < 768px) {
  footer {
    padding: 2.667vw 5.333vw;
  }
  footer small {
    font-size: 3.2vw;
  }
}

/*
fv
================================================ */
.fv {
  background: #000;
}
.fv .inner {
  color: #fff;
  background: #3d718c;
}
.fv__text {
  padding: 25px 50px 50px;
  font-weight: 400;
}
.fv__text p {
  line-height: var(--lh-normal);
}
.fv__text p + p {
  margin-top: 1em;
}
.fv__text--title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: center;
  font-size: var(--font-26);
  font-weight: 400;
  border-bottom: 1px solid #fff;
}
.fv__text--title span {
  font-weight: 900;
  background: url("../img/SVG/redline.svg") no-repeat bottom left;
  font-style: italic;
}

@media (width < 768px) {
  .fv__text {
    padding: 5.333vw 5.333vw 8vw;
  }
  .fv__text--title {
    margin-bottom: 5.333vw;
    padding-bottom: 5.333vw;
    font-size: 5.333vw;
  }
  .fv__text--title br {
    display: none;
  }
}

/*
gallery
================================================ */
#gallery {
  padding: 50px 0 30px;
  background-image: url(../img/1x/bg_gallery.webp);
  background-position: top center;
  background-size: cover;
}

@media (width < 768px) {
  #gallery {
    padding: 10.667vw 0 5.333vw;
  }
}

/*
SLIDER
================================================ */
.slider-container {
  margin-inline: auto;
  width: 70%;
}
.slider img {
  width: 100%;
  height: auto;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  cursor: pointer;
  transition: all 0.2s;
}
.slick-prev,
.slick-next {
  width: 50px;
  height: 70px;
  background-size: contain;
  z-index: 10;
}
.slick-prev {
  background-image: url(../img/arrow-slider-prev.png);
  left: -25px;
}
.slick-next {
  background-image: url(../img/arrow-slider-next.png);
  right: -25px;
}
.slick-dots {
  margin-top: 10px;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  display: block;
  color: transparent;
  outline: none;
  width: 50px;
  height: 4px;
  background-color: #fff;
  border: none;
}
.slick-dots .slick-active button{
  background-color: #000;
}

@media (width < 768px) {
  .slider-container {
    width: 80%;
  }
  .slick-prev,
  .slick-next {
    width: 8vw;
    height: 11.2vw;
  }
  .slick-prev {
    left: -4vw;
  }
  .slick-next {
    right: -4vw;
  }
  .slick-dots {
    margin-top: 2.667vw;
  }
  .slick-dots li {
    display: inline-block;
    margin: 0 1.333vw;
  }
  .slick-dots button {
    width: 10vw;
    height: 0.8vw;
  }
}


/*
youtube
================================================ */
/* YouTube スライダー用 */
#youtube .slider-container { width: 100%; } 
#youtube .slider li { list-style: none; } 

#youtube .ratio {
  aspect-ratio: 16 / 9;
  width: 100%;
}

#youtube .ratio iframe {
  display: block;
  width: 100%;
  height: 100%; 
  border: 0;
}
#youtube {
  padding: 50px;
  background: #a0b3be;
}
#youtube .youtube {
  aspect-ratio: 16/9;
}
#youtube .youtube iframe {
  width:100%;
  height:100%;
}

@media (width < 768px) {
  #youtube {
    padding: 8vw 5.333vw;
  }
}

/*
news
================================================ */
#news {
  background: #3d718c;
}
#news .inner {
  padding: 50px;
  color: #fff;
  background: #000;
}
#news .news__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 40px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#news time {
  font-size: var(--font-25);
}
.news__list--title {
  font-size: var(--font-22);
}
#news .section-title img {
  width: 172px;
}

@media (width < 768px) {
  #news .inner {
    padding: 10.667vw 5.333vw 8vw;
  }
  #news .news__list {
    gap: 2.667vw 5.333vw;
  }
  #news time {
    font-size: 4.8vw;
  }
  .news__list--title {
    font-size: 4.267vw;
  }
  #news .section-title img {
    width: 45.867vw;
  }
}

/*
live
================================================ */
#live {
  text-align: center;
  background: #000;
}
#live .section-title {
  margin: 0 auto 5.333vw;
}
#live .inner {
  padding: 50px;
  background: #a0b3be;
}
#live .live__contact {
  margin-bottom: 50px;
}
#live .live__info {
  margin: 0 auto 30px;
  max-width: 520px;
}
.live__info--title,
.live__info--date,
.live__info--place {
  padding: 20px;
}
.live__info--title,
.live__info--date {
  border-bottom: 1px solid #000;
}
.live__info--title {
  font-size: var(--font-34);
  line-height: var(--lh-tight);
}
.live__info--date .year,
.live__info--date .date {
  letter-spacing: .1em;
}
.live__info--date .year {
  font-size: var(--font-26);
}
.live__info--date .date {
  font-size: var(--font-44);
}
.live__info--date .week {
  margin-left: .25em;
  font-size: var(--font-20);
  font-weight: 700;
}
.live__info--place a {
  display: inline-block;
  margin-bottom: 30px;
  font-size: var(--font-28);
  font-weight: 700;
  border-bottom: 1px solid #000;
}
.open-close {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25em;
  font-size: var(--font-18);
  letter-spacing: .06em;
}
.open-close span {
  font-size: var(--font-26);
}
#live .map {
  aspect-ratio: 16/9;
}
#live .map iframe {
  width:100%;
  height:100%;
}
#live .live__other {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#live .live__other--item {
  display: flex;
  align-items: center;
  gap: 15px;
}
#live .live__other--item dt {
  font-size: var(--font-13);
}
#live .live__other--item dd {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
#live .section-title img {
  width: 172px;
}

@media (width < 768px) {
  #live .inner {
    padding: 10.667vw 5.333vw 8vw;
  }
  #live .live__contact {
    margin-bottom: 8vw;
  }
  #live .live__info {
    margin: 0 auto 30px;
  }
  .live__info--title,
  .live__info--date,
  .live__info--place {
    padding: 5.333vw 0;
  }
  .live__info--title {
    font-size: 6.933vw;
  }
  .live__info--date .year {
    font-size: 6.4vw;
  }
  .live__info--date .date {
    font-size: 10.667vw;
  }
  .live__info--date .week {
    font-size: 5.333vw;
  }
  .live__info--place a {
    margin-bottom: 8vw;
    font-size: 5.333vw;
  }
  #live .live__other {
    flex-direction: column;
    gap: 5.333vw;
  }
  #live .live__other--item {
    flex-wrap: wrap;
    gap: 4vw;
  }
  #live .live__other--item dt {
    font-size: 3.467vw;
  }
  #live .live__other--item dd {
    gap: 4vw;
  }
  #live .section-title img {
    width: 45.867vw;
  }
}

/*
ticket
================================================ */
#ticket {
  background: #a0b3be;
}
#ticket .inner {
  padding: 50px;
  color: #fff;
  background: #3d718c;
}
#ticket .ticket__prices {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 0 0 10px;
  font-size: var(--font-24);
}
#ticket .ticket__prices dd {
  margin: 0;
}
#ticket .ticket__prices--item {
  display: flex;
  gap: .5em;
}
#ticket .ticket__notes {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: var(--font-14);
}
#ticket .ticket__notes li::before {
  content: '※';
}
#ticket .seatingChart {
  display: block;
  margin: 2em auto 0;
  max-width: 500px;
  width: 100%;
}
.ticket__application {
  margin-top: 50px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid #fff;
}
.ticket__lang--ja {
  margin-bottom: 60px;
}
.ticket__application--title {
  display: block;
  margin-bottom: 10px;
  font-size: var(--font-26);
  line-height: var(--lh-just);
}
.ticket__lang--ja .ticket__application--title {
  font-weight: 700;
}
.ticket__application .schedule {
  font-size: var(--font-26);
}
.ticket__application .jst {
  font-size: var(--font-16);
}
.ticket__application .tilde {
  font-size: var(--font-22);
  vertical-align: middle;
}
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 366px;
  margin-top: 20px;
  padding: 8px 30px 10px;
  background: #fff;
  font-weight: 700;
  font-size: var(--font-22);
  line-height: var(--lh-just);
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
  transition: all .2s;
}
.cta:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,1);
}
.cta .arrow {
  width: 0;
  height: 0;
  border-left: 20px solid #000;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
#ticket .section-title img {
  width: 222px;
}

@media (width < 768px) {
  #ticket .inner {
    padding: 10.667vw 5.333vw 8vw;
  }
  #ticket .ticket__prices {
    flex-direction: column;
    align-items: center;
    gap: .5em;
    margin: 0 0 5.333vw;
    font-size: 5.867vw;
  }
  #ticket .ticket__notes {
    flex-wrap: wrap;
    align-items: center;
    gap: .5em;
    font-size: 3.2vw;
  }
  .ticket__application {
    margin-top: 10.667vw;
    padding: 8vw 5.333vw;
    border: 0.533vw solid #fff;
  }
  .ticket__lang--ja {
    margin-bottom: 10.667vw;
  }
  .ticket__application--title {
    margin-bottom: 2.667vw;
    font-size: 5.867vw;
  }
  .ticket__application .schedule {
    font-size: 5.333vw;
  }
  .ticket__application .jst {
    font-size: 3.733vw;
  }
  .ticket__application .tilde {
    font-size: 5.333vw;
  }
  .cta {
    gap: 2.667vw;
    width: 100%;
    margin-top: 5.333vw;
    padding: 2.667vw;
    font-size: 5.333vw;
    box-shadow: 1.067vw 1.067vw 0 rgba(0,0,0,1);
  }
  .cta:hover {
    transform: translate(0.533vw,0.533vw);
    box-shadow: 0.533vw 0.533vw 0 rgba(0,0,0,1);
  }
  .cta .arrow {
    border-left: 3.2vw solid #000;
    border-top: 2.133vw solid transparent;
    border-bottom: 2.133vw solid transparent;
  }
  #ticket .section-title img {
    width: 59.2vw;
  }
}

/*
profile
================================================ */
#profile {
  background: #3d718c;
}
#profile .inner {
  padding: 50px;
  color: #fff;
  background: #000;
}
.profile__img {
  display: block;
  margin: 0 auto 20px;
}
.profile__name {
  margin-bottom: 20px;
  font-size: var(--font-18);
  text-align: center;
}
.profile__name--ja {
  font-weight: 700;
}
.profile__name--en {
  margin-left: 1em;
}
.profile__sns {
  text-align: center;
}
.profile__text {
  line-height: var(--lh-loose);
}
.profile__text,
.profile__text p {
  font-size: var(--font-14);
}
#profile .section-title img {
  width: 193px;
}

@media (width < 768px) {
  #profile .inner {
    padding: 10.667vw 5.333vw 8vw;
  }
  .profile__img {
    margin: 0 auto 5.333vw;
  }
  .profile__name {
    margin-bottom: 4vw;
    font-size: 4.267vw;
  }
  .profile__text,
  .profile__text p {
    font-size: 3.2vw;
  }
  #profile .section-title img {
    width: 51.467vw;
  }
}





.disabled-link {
  pointer-events: none;
  background: #bbb;
  text-decoration: none;
  cursor: default;
}