@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}
@media (max-width: 519px) {
  body {
    font-size: 14px;
  }
}

@media (min-width: 960px) {
  .hide-l  { display: none !important; }
}
@media (max-width: 959px) and (min-width: 520px) {
  .hide-m  { display: none !important; }
}
@media (min-width: 520px) {
  .hide-ml  { display: none !important; }
}
@media (max-width: 519px) {
  .hide-s  { display: none !important; }
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.bold {
  font-weight: 700;
}
.black {
  font-weight: 900;
}

.text_center {
  text-align: center;
}

/* .rollover  */
.rollover {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.rollover:hover {
  opacity: 0.8;
}
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* --------------- .wrapper --------------- */
.wrapper {
  width: 100%;
  max-width: 1020px;
  padding: 0 80px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 519px) {
  .wrapper {
    padding: 0 calc(2000vw / 540);
  }
}


/* --------------- h2 --------------- */
h2 {
  color: #8c6239;
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  text-align: center;
}
h2::before,
h2::after {
  content: "";
  display: inline-block;
  width: 69px;
  height: 80px;
  margin-top: -5px;
  background-image: url("../img/title_deco.png");
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}
h2::before {
  margin-right: 40px;
}
h2::after {
  margin-left: 40px;
}
@media (max-width: 519px) {
  h2 {
    font-size: calc(2800vw / 540);
    font-size: 26px;
  }
  h2::before,
  h2::after {
    width: calc(5200vw / 540);
    height: calc(6000vw / 540);
    margin-top: -5px;
    background-image: url("../img/title_deco_sp.png");
  }
  h2::before {
    margin-right: calc(2500vw / 540);
  }
  h2::after {
    margin-left: calc(2500vw / 540);
  }
}


/* --------------- hr --------------- */
hr {
  display: block;
  height: 16px;
  background-image: linear-gradient(to bottom, #ed7b36 4px, #fff 4px, #fff 6px, #ed7b36 6px, #ed7b36 10px, #fff 10px, #fff 12px, #ed7b36 12px);
  border: none;
}
@media (max-width: 519px) {
  hr {
    height: 10px;
    background-image: linear-gradient(to bottom, #ed7b36 2px, #fff 2px, #fff 4px, #ed7b36 4px, #ed7b36 6px, #fff 6px, #fff 8px, #ed7b36 8px);
  }
}


/* --------------- table --------------- */
table {
  width: 100%;
  border-top: 2px solid #b3b3b3;
}
table th,
table td {
  padding: 20px 32px 20px 40px;
  border-bottom: 2px solid #b3b3b3;
}
@media (max-width: 519px) {
  table {
    border-top-width: 1px;
  }
  table th,
  table td {
    padding: calc(1400vw / 540) calc(2600vw / 540) calc(1400vw / 540) calc(2300vw / 540);
    border-bottom-width: 1px;
  }
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
/* ---------- #nav_btn ---------- */
#nav_btn {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 500;
}
#nav_btn img {
  width: calc(6000vw / 540);
}


/* ---------- #nav ---------- */
#nav {
  position: fixed;
  z-index: 550;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-image: url("../img/menu_title.png"), linear-gradient(to left, #ed7b36 calc(23400vw / 540), transparent calc(23400vw / 540)), url("../img/menu_bg.jpg");
  background-repeat: no-repeat, repeat-y, no-repeat;
  background-position: top calc(10000vw / 540) right 20px,right top, center;
  background-size: calc(25700vw / 540) auto, contain, cover;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}
#nav.active {
  opacity: 1;
  pointer-events: initial;
}
#nav .inner {
}
#nav .menu_btn {
  position: absolute;
  right: 10px;
  top: 10px;
}
#nav .menu_btn img {
  width: calc(6000vw / 540);
}
#nav nav {
  position: absolute;
  left: 20px;
  top: calc(6500vw / 540);
  color: #ffffdc;
  font-size: calc(2400vw / 540);
  font-weight: 900;
}
#nav ul {
}
#nav li:not(:first-child) {
  border-top: 1px solid;
}
#nav a {
  display: block;
  padding: calc(3000vw / 540) 0 calc(3500vw / 540);
}




/* ---------------------------------------------------------
 * #goto_top
** --------------------------------------------------------- */
#goto_top {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 4px solid #ed7b36;
  border-radius: 60px;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}
#goto_top.show {
  opacity: 1;
  pointer-events: initial;
}
#goto_top::before,
#goto_top::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 5px;
  display: block;
  width: 4px;
  height: 23px;
  margin: auto;
  background-color: #ed7b36;
  border-radius: 10px;
  transform-origin: top center;
}
#goto_top::before {
  transform: rotate(45deg);
  left: 2px;
}
#goto_top::after {
  transform: rotate(-45deg);
  right: 2px;
}




/* ---------------------------------------------------------
 * #fix_ticket
** --------------------------------------------------------- */
#fix_ticket {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}
#fix_ticket.show {
  opacity: 1;
  pointer-events: initial;
}
#fix_ticket .ticket_area {
  width: 50%;
  height: 120px;
  margin-inline: auto;
  padding-top: 10px;
  border-radius: 15px;
  background-image: url("../img/seat_btn_bg.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
#fix_ticket .ticket_area a {
  display: block;
  width: 320px;
  margin-top: 5px;
  margin-inline: auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 7px #000;
}
#fix_ticket .ticket_area a img {
  height: 40px;
}
@media (max-width: 519px) {
  #fix_ticket {
    padding-bottom: 0;
  }
  #fix_ticket .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  #fix_ticket .ticket_area {
    width: 100%;
    height: 100%;
    padding-top: calc(1000vw / 540);
    padding-bottom: calc(1500vw / 540);
    border-radius: 0;
    background-image: url("../img/seat_btn_bg_sp.jpg");
    font-size: calc(2000vw / 540);
    font-size: 16px;
  }
  #fix_ticket .ticket_area a {
    width: calc(32000vw / 540);
    margin-top: 5px;
    padding: calc(1000vw / 540);
    border-radius: 10px;
  }
  #fix_ticket .ticket_area a img {
    width: calc(11000vw / 540);
    height: auto;
  }
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
  background-image: url("../img/fv_bg.jpg");
  background-position: center;
  background-size: cover;
}
#fv .wrapper {
  position: relative;
}
#fv h1 {
}
#fv h1 img {
  max-width: 100%;
}
#fv .sns {
  position: fixed;
  z-index: 100;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 12px 14px;
  margin-left: -80px;
  background-image: url("../img/fv_news_bg.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#fv .sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background-color: #fff;
}
#fv .sns a img {
  height: 40px;
}
#fv .sns .insta {
  margin-top: 17px;
}
#fv .sns .x {
  margin-top: 11px;
}
@media (max-width: 519px) {
  #fv {
    padding-bottom: calc(1200vw / 540);
    background-image: url("../img/fv_bg_sp.jpg");
  }
  #fv .wrapper {
    padding: 0;
  }
  #fv .sns {
    padding: 20px 8px 10px;
    margin-left: 20px;
    background-image: url("../img/fv_news_bg_sp.jpg");
    font-size: 18px;
    line-height: 2;
  }
  #fv .sns a {
    width: 34px;
    height: 34px;
  }
  #fv .sns a img {
    height: 30px;
  }
  #fv .sns .insta {
    margin-top: 9px;
  }
  #fv .sns .x {
    margin-top: 7px;
  }
}




/* ---------------------------------------------------------
 * #menu
** --------------------------------------------------------- */
#menu {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ed7b36;
}
#menu nav {
  display: flex;
  justify-content: center;
}
#menu ul {
  display: flex;
  flex-direction: row-reverse;
  border-left: 1px solid;
  color: #fff;
}
#menu li {
  border-right: 1px solid;
}
#menu li a {
  display: flex;
  align-items: center;
  width: 120px;
  height: 180px;
  padding-top: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all ease 0.3s;
}
#menu li a:hover {
  background-color: #eda67b;
}




/* ---------------------------------------------------------
 * #seat
** --------------------------------------------------------- */
#seat {
  padding-top: 64px;
  padding-bottom: 110px;
  background-color: #faf6f0;
}
#seat .seat img {
  max-width: 100%;
  margin-top: 64px;
}
#seat .pdf {
  margin-top: 64px;
}
#seat .pdf a {
  display: block;
  padding: 30px;
  background-color: #a67c52;
  color: #fff;
  text-align: center;
  line-height: 1;
}
#seat .subttl {
  margin-top: 38px;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 1;
}
#seat table {
  margin-top: 38px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
#seat table th,
#seat table td {
  padding: 20px 26px 20px 28px;
}
#seat table th {
  vertical-align: middle;
}
#seat table th::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 36px;
  vertical-align: middle;
}
#seat table tr:nth-child(1) th::before {
  background-color: #cc6b7d;
}
#seat table tr:nth-child(2) th::before {
  background-color: #fcf57c;
}
#seat table tr:nth-child(3) th::before {
  background-color: #ebb76d;
}
#seat table tr:nth-child(4) th::before {
  background-color: #82d1ed;
}
#seat table tr:nth-child(5) th::before {
  background-color: #78c39c;
}
#seat table tr:nth-child(6) th::before {
  background-color: #f8d89d;
}
#seat table tr:nth-child(7) th::before {
  background-color: #7598b4;
}
#seat table tr:nth-child(8) th::before {
  background-color: #7aae92;
}
#seat table tr:nth-child(9) th::before {
  background-color: #f5b4d1;
}
#seat table tr:nth-child(10) th::before {
  background-color: #f2798a;
}
#seat table tr:nth-child(11) th::before,
#seat table tr:nth-child(12) th::before {
  background-color: #d0e7e4;
}
#seat table tr:nth-child(13) th::before {
  background-color: #eb72b2;
}
#seat table td {
  text-align: right;
}
#seat table .soldout th span:nth-child(1) {
  color: #999;
  text-decoration: line-through;
}
#seat table .soldout th span:nth-child(2) {
  color: red;
}
#seat table .soldout td {
  text-decoration: line-through;
}
#seat table .limited th span:nth-child(2) {
  color: #e96f03;
}
#seat .note {
  margin-top: 40px;
  font-size: 14px;
}
#seat .note .subttl {
  font-size: 16px;
  font-weight: bold;
}
#seat .note a {
  text-decoration: underline;
}
#seat .note a:hover {
  text-decoration: none;
}
@media (max-width: 519px) {
  #seat {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #seat .seat img {
    max-width: 100%;
    margin-top: calc(3400vw / 540);
  }
  #seat .pdf {
    margin-top: calc(3400vw / 540);
  }
  #seat .pdf a {
    padding: calc(1600vw / 540);
  }
  #seat .subttl {
    margin-top: calc(3400vw / 540);
    /*font-size: calc(1600vw / 540);*/
    font-size: 14px;
  }
  #seat table {
    margin-top: calc(3400vw / 540);
    /*font-size: calc(1600vw / 540);*/
    font-size: 12px;
  }
  #seat table th::before {
    width: calc(1400vw / 540);
    height: calc(1400vw / 540);
    margin-top: -5px;
    margin-right: calc(2000vw / 540);
  }
  #seat table .soldout td span:nth-child(2) {
    display: block;
    font-size: 10px;
  }
  #seat .note {
    margin-top: calc(3000vw / 540);
    font-size: calc(1200vw / 540);
    font-size: 12px;
  }
  #seat .note span {
    font-size: calc(1400vw / 540);
    font-size: 14px;
  }
}




/* ---------------------------------------------------------
 * #gift
** --------------------------------------------------------- */
#gift {
  padding-top: 64px;
  padding-bottom: 110px;
  text-align: center;
}
#gift h2 {
}
#gift .limit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 30px;
  margin-top: 44px;
  background-color: #b7282c;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
#gift .gift01,
#gift .gift02 {
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 2px solid #b3b3b3;
}
#gift .subttl {
  font-size: 40px;
  font-weight: 700;
}
#gift .subttl span:not(.mincho) {
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
#gift .subttl span.mincho {
  color: red;
}
#gift p {
}
#gift p span {
  display: inline-block;
}
#gift .price {
  font-size: 30px;
  font-weight: 700;
}
#gift .note {
  margin-top: 25px;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 519px) {
  #gift {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #gift h2 {
  }
  #gift .limit {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0 25px;
    margin-top: calc(2700vw / 540);
    font-size: calc(1400vw / 540);
    font-size: 12px;
    font-weight: 700;
  }
  #gift .gift01,
  #gift .gift02 {
    padding-top: 9px;
    padding-bottom: 12px;
    border-bottom-width: 1px;
  }
  #gift .subttl {
    font-size: 22px;
  }
  #gift p {
  }
  #gift .price {
    font-size: 18px;
  }
  #gift .note {
    margin-top: 15px;
    font-size: 12px;
  }
}




/* ---------------------------------------------------------
 * #youtube
** --------------------------------------------------------- */
#youtube {
  padding: 58px 0;
  background-image: url("../img/fv_bg.jpg");
  background-position: center;
  background-size: cover;
}
#youtube .wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 860 / 470;
  background-color: #fff;
  font-size: 38px;
}
#youtube iframe {
  width: 100%;
  aspect-ratio: 560 / 315;
}
@media (max-width: 519px) {
  #youtube {
    padding: calc(2000vw / 540) 0;
  }
  #youtube .wrapper div {
    font-size: 18px;
  }
}




/* ---------------------------------------------------------
 * #schedule
** --------------------------------------------------------- */
#schedule {
  padding-top: 64px;
  padding-bottom: 110px;
  background-color: #faf6f0;
}
#schedule h2 {
}
#schedule table {
  margin-top: 64px;
  font-size: 28px;
  font-weight: 900;
}
#schedule th,
#schedule td {
  line-height: 1.2;
}
#schedule th {
  padding-left: 20%;
}
#schedule td {
  padding-left: 20%;
}
#schedule .note {
  margin-top: 30px;
  font-size: 14px;
}
@media (max-width: 519px) {
  #schedule {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #schedule h2 {
  }
  #schedule table {
    margin-top: calc(4000vw / 540);
    font-size: var(1600vw/ 540);
    font-size: 16px;
  }
  #schedule th {
    padding-left: 10%;
  }
  #schedule td {
    padding-left: 10%;
  }
  #schedule .note {
    margin-top: 20px;
    font-size: 12px;
  }
}




/* ---------------------------------------------------------
 * #ticket
** --------------------------------------------------------- */
#ticket {
  padding-top: 64px;
  padding-bottom: 110px;
}
#ticket .subttl {
  margin-top: 40px;
  margin-bottom: 34px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}
#ticket .block {
  padding-top: 30px;
}
#ticket .block:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 2px solid #b3b3b3;
}
#ticket .del {
  color: red;
  text-decoration: line-through;
}
#ticket .del > span {
  color: #666;
}
#ticket .del > span.end {
  display: inline-block;
  color: red;
  text-decoration: none;
}
#ticket a {
  text-decoration: underline;
}
#ticket a:hover {
  text-decoration: none;
}
@media (max-width: 519px) {
  #ticket {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #ticket .subttl {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: calc(1600vw / 540);
    font-size: 18px;
  }
  #ticket .block {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #b3b3b3;
  }
  #ticket .block:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: none;
  }
  #ticket .block:last-child {
    border-bottom: 1px solid #b3b3b3 !important;
  }
  #ticket a {
    text-decoration: underline;
  }
  #ticket a:hover {
    text-decoration: none;
  }
}




/* ---------------------------------------------------------
 * #access
** --------------------------------------------------------- */
#access {
  padding-top: 64px;
  padding-bottom: 110px;
  background-color: #faf6f0;
}
#access .map {
  aspect-ratio: 860 / 420;
  margin-top: 80px;
  margin-bottom: 40px;
  border: 6px solid #ed7b36;
}
#access .map iframe {
  width: 100%;
  height: 100%;
}
#access .bold {
  font-size: 28px;
}
#access .bold span {
  font-size: 20px;
}
#access .address {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #b3b3b3;
}
#access a {
  text-decoration: underline;
}
#access a:hover {
  text-decoration: none;
}
#access .bus {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #b3b3b3;
}
#access .bus .bold {
  font-size: 20px;
}
#access .bus p {
  margin-top: 10px;
}
#access .taxi {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #b3b3b3;
  font-weight: 700;
}
#access .note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #b3b3b3;
  font-size: 14px;
}
@media (max-width: 519px) {
  #access {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #access .map {
    margin-top: 30px;
    margin-bottom: 20px;
    border-width: 3px;
  }
  #access .bold {
    font-size: calc(1600vw / 540);
    font-size: 18px;
  }
  #access .bold span {
    display: block;
    font-size: 16px;
  }
  #access .address {
    margin-top: 10px;
    padding-top: 10px;
    border-top-width: 1px;
  }
  #access .bus {
    border-top-width: 1px;
  }
  #access .bus .bold {
    font-size: 16px;
  }
  #access .bus p {
    margin-top: 10px;
  }
  #access .taxi {
    border-top-width: 1px;
  }
  #access .note {
    border-top-width: 1px;
    font-size: 12px;
  }
}




/* ---------------------------------------------------------
 * #contact
** --------------------------------------------------------- */
#contact {
  padding-top: 26px;
  padding-bottom: 110px;
  text-align: center;
}
#contact h2 {
}
#contact .bold {
  margin-top: 40px;
  font-size: 40px;
}
#contact .tel {
  margin-top: 30px;
}
#contact .tel a {
  display: inline-block;
  padding: 2px 30px 7px;
  background-color: #ed7b36;
  border-radius: 20px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
#contact .tel a img {
  margin-top: -10px;
  margin-right: 20px;
  vertical-align: middle;
}
#contact .note {
  margin-top: 20px;
  font-size: 16px;
}
#contact .time {
  margin-top: 30px;
  font-size: 24px;
}
#contact .sns {
  display: flex;
  width: 530px;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 45px 0 45px 35px;
  background-image: url("../img/contact_news_bg.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
}
#contact .sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
}
#contact .sns a img {
  height: 46px;
}
#contact .sns .insta {
  margin-left: auto;
}
#contact .sns .x {
  margin-left: 15px;
  margin-right: auto;
}
@media (max-width: 519px) {
  #contact {
    padding-top: calc(5000vw / 540);
    padding-bottom: calc(5500vw / 540);
  }
  #contact h2 {
  }
  #contact .bold {
    margin-top: 30px;
    font-size: calc(2800vw / 540);
    font-size: 26px;
  }
  #contact .tel {
    margin-top: 15px;
  }
  #contact .tel a {
    /*padding: 2px 30px 7px;*/
    border-radius: 7px;
    font-size: 24px;
    letter-spacing: 1px;
  }
  #contact .tel a img {
    width: 24px;
    margin-top: -5px;
    margin-right: 5px;
  }
  #contact .time {
    margin-top: 20px;
    font-size: 16px;
  }
  #contact .sns {
    width: calc(43000vw / 540);
    margin-top: calc(4000vw / 540);
    padding: calc(3000vw / 540) 0 calc(3000vw / 540) calc(3000vw / 540);
    font-size: 20px;
    line-height: 45px;
  }
  #contact .sns a {
    width: 45px;
    height: 45px;
  }
  #contact .sns a img {
    height: 37px;
  }
  #contact .sns .x {
    margin-left: 8px;
  }
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  padding-top: 56px;
  padding-bottom: 40px;
  background-color: #faf6f0;
  color: #8c6239;
  font-size: 14px;
}
#footer dl {
}
#footer dl > div {
  display: flex;
}
#footer dt {
  flex-shrink: 0;
}
#footer .copy {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer {
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 12px;
  }
  #footer dl > .line_break {
    display: block;
  }
  #footer .line_break dd {
    text-align: right;
  }
  #footer .copy {
    margin-top: 20px;
  }
}