@charset "UTF-8";
/* CSS Document */
/* 基本色 */
/* その他の色 */
/* 共通 */
@font-face {
  font-family: "Heebo";
  src: url("../font/Heebo-Regular.ttf");
}
@font-face {
  font-family: "Heebo-Bold";
  src: url("../font/Heebo-Bold.ttf");
}
@font-face {
  font-family: "Heebo-Black";
  src: url("../font/Heebo-Black.ttf");
}
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: #000;
  background: #fff;
  line-height: 1.5;
  font-family: "Heebo", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  position: relative;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* iPhoneのSafariで角丸にならないようにする */
input[type=button],
input[type=text],
input[type=submit],
input[type=image],
input[type=email],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* SP用 */
/* 共通 */
.inner {
  width: 92.523vw;
  margin: 0 auto;
}

/* ドロワーメニューの背景 */
#coverlayer {
  width: 1px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 2;
}
#coverlayer.is-active {
  /* 幅を1px→100%に変化させつつ、非表示から表示へ */
  width: 100%;
  opacity: 0.93;
}

.btnHamburger {
  position: absolute;
  top: 13px;
  left: 3.972vw;
  width: 30px; /* クリックエリアの横幅*/
  height: 20px; /* クリックエリアの高さ*/
  cursor: pointer;
  z-index: 2;
  /*ハンバーガーボタンクリック後*/
}
.btnHamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 27px; /* 横幅 */
  height: 4px; /* 1本辺りの高さ */
  background: #000; /* 線の色 */
  transition: 0.3s;
}
.btnHamburger .line_01 {
  top: 0;
}
.btnHamburger .line_02 {
  top: 8px;
}
.btnHamburger .line_03 {
  top: 16px;
}
.btnHamburger.header-fixed {
  position: fixed;
}
.btnHamburger.is-active {
  position: fixed;
}
.btnHamburger.is-active .line_01 {
  top: 8px; /* 上から2番目の線の位置に変更 */
  /* 線を45度回転 */
  transform: rotate(45deg);
}
.btnHamburger.is-active .line_02 {
  opacity: 0; /* 不透明度を下げて線を消す */
}
.btnHamburger.is-active .line_03 {
  top: 8px; /* 上から2番目の線の位置に変更 */
  /* 線を135度回転 */
  transform: rotate(135deg);
}

.drawer_menu {
  position: fixed;
  top: 50px;
  z-index: 2;
  /* 幅の分左にずらした状態で非表示 */
  left: -171px;
  width: 171px;
  opacity: 0;
  transition: 0.5s;
}
.drawer_menu.is-active {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

nav {
  margin-bottom: 50px;
}
nav ul li {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
nav ul li:last-of-type {
  margin-bottom: 0;
}
nav ul li img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 6px;
}
nav ul li a {
  color: #000;
  font-size: 24px;
  display: block;
}
nav + .sns_link {
  display: flex;
  width: 158px;
  justify-content: space-between;
  margin: 0 auto;
}
nav + .sns_link img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ヘッダー */
header {
  height: 48px;
  transition: all 0.5s;
}
header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}
header .inner {
  height: 100%;
  margin: 0 auto;
  position: relative;
}
header h1 {
  width: 144px;
  position: absolute;
  top: 12.25px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.7s;
}
header h1:hover {
  opacity: 0.7;
}
header h1 img {
  vertical-align: middle;
  transition: 1s;
}
header a.btnTicket {
  position: absolute;
  right: 0;
  top: 10.5px;
  display: block;
  color: white;
  background-color: #e56b36;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: 14px;
  font-family: "Heebo-Bold";
  transition: opacity 0.7s;
}
header a.btnTicket:hover {
  opacity: 0.7;
}
header a.btnTicket .icon {
  padding-right: 4px;
}

/* メインビジュアル */
.top_main {
  height: 139.486vw;
  background-image: -webkit-image-set(url(../images/top_main/top_main_sp@856.jpg) 1x, url(../images/top_main/top_main_sp@856.jpg) 2x, url(../images/top_main/top_main_sp@1284.jpg) 3x);
  background-image: image-set(url(../images/top_main/top_main_sp@856.jpg) 1x, url(../images/top_main/top_main_sp@856.jpg) 2x, url(../images/top_main/top_main_sp@1284.jpg) 3x);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* メインビジュアル上の画像・テキスト 共通 */
  /* メインビジュアル上のテキスト 共通 */
}
.top_main .logo,
.top_main .date,
.top_main .time,
.top_main .place,
.top_main .message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.top_main .date,
.top_main .time,
.top_main .place {
  color: #fff;
  /* テキストの折返しをなくす */
  white-space: nowrap;
  text-shadow: 0px 4px 4px rgba(25, 53, 45, 0.8);
}
.top_main .logo {
  width: 61.215vw;
  top: 14.019vw;
}
.top_main .date {
  font-size: 9.346vw;
  font-family: "Heebo-Black";
  top: 80.14vw;
}
.top_main .date .day {
  font-size: 5.374vw;
  padding: 0 0.2em;
}
.top_main .date .symbol {
  padding-right: 0.2em;
}
.top_main .time {
  font-size: 3.738vw;
  font-family: "Heebo-Bold";
  position: absolute;
  top: 92.757vw;
}
.top_main .time span {
  font-size: 4.206vw;
  padding: 0 0.2em;
}
.top_main .place {
  font-size: 4.206vw;
  font-weight: bold;
  position: absolute;
  top: 97.897vw;
}
.top_main .message {
  position: absolute;
  top: 120.327vw;
}
.top_main .message img {
  width: 59.579vw;
  height: 6.843vw;
  -o-object-fit: contain;
     object-fit: contain;
}

/* SNSシェア */
.sns_share {
  background-color: #000;
  padding: 16px 0;
}
.sns_share ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 4.673vw;
}
.sns_share ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40.888vw;
  padding: 16px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: opacity 0.7s;
}
.sns_share ul li:hover {
  opacity: 0.7;
}
.sns_share ul li img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sns_share ul li a {
  color: #fff;
  display: block;
  padding-left: 1em;
}

article {
  /* article 共通 */
  /* article:NEWS */
  /* article:ARTISTS */
  /* article:TIME TABLE */
}
article[id] {
  padding: 60px 0 100px;
}
article h2 {
  font-family: "Heebo-Black";
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  text-align: center;
}
article#news h2 span {
  color: #4a9ec2;
}
article#news dl dt {
  font-size: 16px;
  font-family: "Heebo-Bold";
}
article#news dl dd {
  margin-bottom: 20px;
}
article#news dl dd:last-of-type {
  margin-bottom: 0;
}
article#news dl dd a {
  text-decoration: underline;
  color: #000;
}
article#artists h2 {
  margin-bottom: 51px;
}
article#artists h2 span {
  color: #cc8262;
}
article#artists section {
  border: 4px solid #000;
  position: relative;
  padding: 67px 0 85px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 2.336vw;
}
article#artists section:first-of-type {
  margin-bottom: 63px;
}
article#artists section h3 {
  font-family: "Heebo-Bold";
  font-size: 27px;
  background-color: #fff;
  padding: 10px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
article#artists section > div {
  width: 41.355vw;
  text-align: center;
}
article#artists section > div > div {
  margin-bottom: 1.5px;
}
article#artists section > div > p {
  font-family: "Heebo-Bold";
}
article#time_table .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article#time_table h2 {
  width: 100%;
}
article#time_table h2 span {
  color: #4a9ec2;
}
article#time_table .date_select,
article#time_table .date_label {
  font-size: 24px;
  font-family: "Heebo-Bold";
  width: 44.159vw;
  border-radius: 3px;
  text-align: center;
  padding: 6px 0;
  margin-bottom: 30px;
}
article#time_table .date_select span,
article#time_table .date_label span {
  font-size: 16px;
  padding-left: 0.3em;
}
article#time_table .date_labels {
  display: none;
}
article#time_table .date_select {
  color: #848484;
  background-color: #d5d5d5;
  cursor: pointer;
  transition: 0.8s;
}
article#time_table .date_select:hover {
  opacity: 0.8;
}
article#time_table .date_select.is_active {
  color: #fff;
  background-color: #000;
}
article .time_table {
  display: none;
  width: 100%;
}
article .time_table.day_1 {
  display: block;
}
article .time_table .time_table_row {
  display: flex;
  height: 60px;
}
article .time_table .time_table_row.heading {
  height: 32px;
  margin-bottom: 10px;
}
article .time_table .time_table_row.heading .stage > div {
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-family: "Heebo-Bold";
}
article .time_table .time_table_row.heading .stage.stage_1 {
  background-color: #4a9ec2;
}
article .time_table .time_table_row.heading .stage.stage_2 {
  background-color: #cc8262;
}
article .time_table .time_table_row:nth-of-type(2) .stage_2 {
  position: relative;
}
article .time_table .time_table_row:nth-of-type(2) .stage_2::after {
  content: "OPEN 9:30 / START 10:00";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  /* テキストの折返しをなくす */
  white-space: nowrap;
  background-color: #fff;
  font-size: 14px;
  padding: 4px 8px;
}
article .time_table .time_table_row .time {
  width: 17.1717171717%;
  text-align: center;
  font-size: 14px;
}
article .time_table .time_table_row .time > div {
  transform: translateY(-50%);
}
article .time_table .time_table_row .stage {
  width: 41.4141414141%;
  position: relative;
}
article .time_table .time_table_row .stage .artist_name {
  padding: 2.5px 0 0 8px;
  height: 100%;
  font-family: "Heebo-Bold";
}
article .time_table .time_table_row .stage .time_label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  font-size: 12px;
  padding: 2px 8px;
  color: #fff;
}
article .time_table .time_table_row .stage.stage_1 {
  background-color: #cfe9f5;
}
article .time_table .time_table_row .stage.stage_1 .artist_name {
  background-color: #52b0d9;
}
article .time_table .time_table_row .stage.stage_1 .time_label {
  background-color: #14465c;
}
article .time_table .time_table_row .stage.stage_2 {
  background-color: #f9dacc;
}
article .time_table .time_table_row .stage.stage_2 .artist_name {
  background-color: #ed9772;
}
article .time_table .time_table_row .stage.stage_2 .time_label {
  background-color: #a13f15;
}
article#ticket h2 {
  width: 100%;
}
article#ticket h2 span {
  color: #cc8262;
}
article#ticket .tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  margin-bottom: 30px;
}
article#ticket .tickets section.ticket {
  width: 100%;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 30px 0;
  text-align: center;
}
article#ticket .tickets section.ticket h3 {
  font-size: 23px;
  margin-bottom: 8px;
}
article#ticket .tickets section.ticket h3 span {
  font-size: 34px;
  font-family: "Heebo-Black";
  padding-right: 0.2em;
}
article#ticket .tickets section.ticket h3 span.day_1 {
  color: #4a9ec2;
}
article#ticket .tickets section.ticket h3 span.day_2 {
  color: #cc8262;
}
article#ticket .tickets section.ticket p {
  font-size: 20px;
  font-weight: bold;
  font-family: "Heebo-Bold", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
article#ticket .tickets section.ticket p span {
  font-size: 32px;
  font-family: "Heebo-Bold";
  padding-left: 0.5em;
}
article#ticket .note p {
  font-size: 14px;
}
article#ticket .note p:last-of-type {
  margin-bottom: 79px;
}
article#ticket .buy_ticket .heading {
  font-size: 26px;
  font-family: "Heebo-Black";
  background-color: #000;
  color: #fff;
  padding: 14px 0;
  text-align: center;
  margin-bottom: 20px;
}
article#ticket .buy_ticket ul li a {
  display: block;
  cursor: pointer;
  padding: 14px 0;
  font-size: 18px;
  font-weight: bold;
  background-color: #e56b36;
  box-shadow: 0 6px 0 #a13f15;
  color: #fff;
  text-align: center;
  width: 83.645vw;
  margin: 0 auto 16px;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
}
article#ticket .buy_ticket ul li a:hover {
  box-shadow: none;
  transform: translateY(6px);
}
article#ticket .buy_ticket ul li a::after {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
article#ticket .buy_ticket ul li:last-of-type a {
  margin-bottom: 0;
}
article#goods {
  background-color: #cfe9f5;
}
article#goods h2 {
  position: relative;
}
article#goods h2::after {
  content: "";
  width: 3.5em;
  height: 6px;
  background-color: #52b0d9;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
article#goods .goods_outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
article#goods .goods_outer .goods {
  width: 44.3925233645vw;
}
article#goods .goods_outer .goods-image {
  height: 44.3925233645vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
article#goods .goods_outer .goods-image img {
  width: 91.578%;
  height: 91.578%;
  -o-object-fit: contain;
     object-fit: contain;
}
article#goods .goods_outer .goods h3,
article#goods .goods_outer .goods p {
  text-align: center;
  font-family: "Heebo-Bold", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: bold;
}
article#goods .goods_outer .goods-name {
  font-size: 15px;
  padding: 10px 0;
}
article#goods .goods_outer .goods-size, article#goods .goods_outer .goods-price {
  font-size: 13px;
}
article#goods .goods_outer .goods-size {
  padding-bottom: 4px;
}
article#access h2 span {
  color: #cc8262;
}
article#access section.place h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
article#access section.place p.address {
  margin-bottom: 20px;
}
article#access section.place iframe.map {
  width: 100%;
  height: 75vw;
  margin-bottom: 40px;
}
article#access section.place section.traffic_access:first-of-type {
  margin-bottom: 24px;
}
article#access section.place section.traffic_access h4 {
  font-weight: bold;
}
article#access section.place section.traffic_access p {
  margin-bottom: 24px;
}
article#access section.place section.traffic_access p:last-of-type {
  margin-bottom: 0;
}

.outline {
  padding: 54px 0 101px;
  position: relative;
}
.outline::before {
  content: "";
  width: 92.523vw;
  height: 2px;
  background-color: #bcbcbc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.outline p {
  font-weight: bold;
  font-family: "Heebo-Bold", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.outline p:last-of-type {
  margin-bottom: 1.5em;
}
.outline dl {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
}
.outline dl dt {
  width: 6em;
}
.outline dl dt.sponsor {
  height: 11.215vw;
  position: relative;
}
.outline dl dt.sponsor div {
  position: absolute;
  left: 0;
  bottom: 0;
}
.outline dl dd {
  width: calc(100% - 6em);
}
.outline dl dd.sponsor img {
  width: 18.224vw;
  height: 11.215vw;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  background: #14465c;
  padding: 40px 0 20px;
  text-align: center;
}
footer .logo img {
  width: 49.533vw;
  height: 49.533vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 26px;
}
footer .sns_link {
  display: flex;
  justify-content: center;
  margin-bottom: 37px;
}
footer .sns_link div {
  padding: 16px;
}
footer .sns_link div img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer small {
  color: #fff;
  font-size: 12px;
}

[id^=modal] {
  display: none;
}

.modal_container {
  padding: 100px 0;
  text-align: center;
}
.modal_container .artist_img {
  width: 65.654vw;
  margin: 0 auto;
}
.modal_container p.artist_name {
  font-family: "heebo-Bold";
  font-size: 22px;
  margin-bottom: 30px;
  text-align: center;
}
.modal_container .sns_link {
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}
.modal_container .sns_link div {
  padding: 16px;
}
.modal_container .sns_link div img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal_container a.official_site_link {
  color: #000;
  text-decoration: underline;
}

.to_top {
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  position: fixed;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  border: 3px solid #000;
  box-sizing: content-box;
  /* 初期表示の際は非表示にする */
  display: none;
}
.to_top a {
  display: block;
}
.to_top a::before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}

.fade_off {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.fade_on {
  opacity: 1;
  transform: translateY(0px);
}

body.contact .main_button {
  text-align: center;
}
body.contact .main_button input[type=submit],
body.contact .main_button input[type=button] {
  color: #fff;
  background-color: #4a9ec2;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 44.393vw;
  padding: 10px 0;
  font-weight: bold;
  transition: opacity 0.7s;
}
body.contact .main_button input[type=submit]:hover,
body.contact .main_button input[type=button]:hover {
  opacity: 0.7;
}
body.contact main article {
  padding: 60px 0 100px;
}
body.contact main article h2 span {
  color: #52b0d9;
}
body.contact main article form dl {
  margin-bottom: 30px;
}
body.contact main article form dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}
body.contact main article form dl dd {
  width: 100%;
  margin-bottom: 24px;
}
body.contact main article form dl dd:last-of-type {
  margin-bottom: 0;
}
body.contact main article form dl dd input,
body.contact main article form dl dd textarea {
  width: 100%;
  border: 1px solid #626262;
}
body.contact main article form dl dd input {
  height: 44px;
}
body.contact main article form dl dd textarea {
  height: 140px;
}
body.contact-confirm main article form dl {
  margin-bottom: 80px;
}
body.contact-confirm main article form .main_button {
  margin-bottom: 32.5px;
}
body.contact-confirm main article form .back_button input {
  border: none;
  background-color: #bcbcbc;
  width: 20.327vw;
  padding: 8px 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  transition: opacity 0.7s;
}
body.contact-confirm main article form .back_button input:hover {
  opacity: 0.7;
}
body.contact-complete .message {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

/*
TAB用
 */
@media screen and (min-width: 600px) {
  /* 共通 */
  .inner {
    width: 94.005vw;
  }
  .btnHamburger {
    left: 2.878vw;
  }
  .drawer_menu {
    top: 100px;
  }
  /* メインビジュアル */
  .top_main {
    height: 81.535vw;
    background-image: url(../images/top_main/top_main_tab@1668.jpg);
  }
  .top_main .logo {
    width: 35.252vw;
    top: 8.993vw;
  }
  .top_main .date {
    font-size: 6.715vw;
    top: 45.5vw;
  }
  .top_main .date .day {
    font-size: 3.837vw;
  }
  .top_main .time {
    font-size: 2.998vw;
    top: 54vw;
  }
  .top_main .time span {
    font-size: 2.638vw;
  }
  .top_main .place {
    font-size: 2.998vw;
    top: 59.952vw;
  }
  .top_main .message {
    width: 42.806vw;
    top: 70.743vw;
  }
  /* SNSシェア */
  .sns_share ul {
    -moz-column-gap: 3.957vw;
         column-gap: 3.957vw;
  }
  .sns_share ul li {
    width: 20.983vw;
  }
  article {
    /* article 共通 */
    /* article:ARTISTS */
    /* article:TIME TABLE */
  }
  article[id] {
    padding: 80px 0 130px;
  }
  article h2 {
    font-size: 42px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 40px;
  }
  article#artists h2 {
    margin-bottom: 71px;
  }
  article#artists section {
    justify-content: space-between;
    gap: 0;
    row-gap: 36px;
  }
  article#artists section:first-of-type {
    margin-bottom: 81px;
  }
  article#artists section h3 {
    font-size: 35px;
  }
  article#artists section > div {
    width: 29.257vw;
  }
  article#artists section > div > div {
    margin-bottom: 2px;
    padding: 1.199vw 1.559vw;
  }
  article#time_table .date_select {
    display: none;
  }
  article#time_table .date_labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  article#time_table .date_labels .date_label_outer {
    width: 45.444vw;
  }
  article#time_table .date_labels .date_label_outer .date_label {
    margin: 0 auto 30px;
    color: #fff;
    background-color: #000;
    width: 22.662vw;
  }
  article#time_table .time_table {
    width: 45.444vw;
  }
  article#time_table .time_table.day_2 {
    display: block;
  }
  article#ticket .tickets {
    row-gap: 30px;
  }
  article#ticket .tickets section.ticket {
    width: 45.444vw;
  }
  article#ticket .note p {
    font-size: 16px;
  }
  article#ticket .note p:last-of-type {
    margin-bottom: 100px;
  }
  article#ticket .buy_ticket .heading {
    font-size: 33px;
    padding: 20px 0;
    margin-bottom: 40px;
  }
  article#ticket .buy_ticket ul li a {
    padding: 19px 0;
    font-size: 23px;
    box-shadow: 0 9px 0 #a13f15;
    width: 61.871vw;
    margin-bottom: 48px;
  }
  article#ticket .buy_ticket ul li a::after {
    right: 22px;
  }
  article#goods h2::after {
    left: 0%;
    transform: translate(0, -100%);
  }
  article#goods .goods_outer::after {
    display: block;
    content: "";
    width: 29.376498801vw;
  }
  article#goods .goods_outer .goods {
    width: 29.376498801vw;
  }
  article#goods .goods_outer .goods-image {
    height: 29.376498801vw;
  }
  article#access section.place h3 {
    font-size: 28px;
    text-align: left;
  }
  article#access section.place iframe.map {
    height: 50vw;
  }
  .outline {
    padding: 80px 0 130px;
  }
  .outline::before {
    width: 94.005vw;
  }
  .outline dl dt.sponsor {
    height: 5.755vw;
  }
  .outline dl dd.sponsor img {
    width: 9.353vw;
    height: 5.755vw;
  }
  footer {
    padding-top: 80px;
  }
  footer .logo img {
    width: 26.019vw;
    height: 26.019vw;
    margin-bottom: 40px;
  }
  body.contact .main_button input[type=submit],
body.contact .main_button input[type=button] {
    width: 21.583vw;
    padding: 10px 0;
    font-size: 18px;
  }
  body.contact main article {
    padding: 80px 0 130px;
  }
  body.contact main article form {
    width: 86.091vw;
  }
  body.contact main article form dl {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
  }
  body.contact main article form dl dt {
    width: 37.4651810585%;
    margin-bottom: 0;
  }
  body.contact main article form dl dd {
    width: 62.5348189415%;
    margin-bottom: 0;
  }
  body.contact-confirm main article form dl {
    margin-bottom: 98px;
  }
  body.contact-confirm main article form .main_button {
    margin-bottom: 30px;
  }
  body.contact-confirm main article form .back_button input {
    width: 8.153vw;
  }
  body.contact-complete main article {
    padding: 80px 0 321px;
  }
  body.contact-complete main article h2 {
    margin-bottom: 60px;
  }
  body.contact-complete main article .message {
    justify-content: left;
  }
}
/*
PC用
*/
@media screen and (min-width: 978px) {
  /* 共通 */
  .inner {
    width: 978px;
  }
  header .inner {
    width: 95%;
  }
  .btnHamburger {
    left: 2.5%;
  }
  /* メインビジュアル */
  .top_main {
    width: 100%;
    height: 0;
    padding-top: 62.6151012891%;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/top_main/top_main_pc@1600.jpg);
  }
  .top_main .logo {
    width: 27.072vw;
    top: 7.551vw;
  }
  .top_main .date {
    font-size: 5.157vw;
    top: 35.5vw;
  }
  .top_main .date .day {
    font-size: 2.947vw;
  }
  .top_main .time {
    font-size: 2.026vw;
    top: 41.5vw;
  }
  .top_main .time span {
    font-size: 2.302vw;
  }
  .top_main .place {
    font-size: 2.302vw;
    top: 46.869vw;
  }
  .top_main .message {
    width: 32.873vw;
    top: 55.341vw;
  }
  .sns_share ul {
    -moz-column-gap: 33px;
         column-gap: 33px;
  }
  .sns_share ul li {
    width: 175px;
  }
  article {
    /* article 共通 */
    /* article:ARTISTS */
    /* article:TIME TABLE */
  }
  article h2 {
    margin-bottom: 40px;
  }
  article#artists section > div {
    width: 230px;
  }
  article#artists section > div > div {
    padding: 10px 13px;
  }
  article#time_table .date_labels .date_label_outer {
    width: 415.5px;
  }
  article#time_table .date_labels .date_label_outer .date_label {
    width: 189px;
  }
  article#time_table .time_table {
    width: 415.5px;
  }
  article#ticket .tickets {
    row-gap: 0;
  }
  article#ticket .tickets section.ticket {
    width: 312px;
  }
  article#ticket .buy_ticket ul li a {
    width: 479px;
  }
  article#goods .goods_outer::after {
    display: none;
  }
  article#goods .goods_outer .goods {
    width: 229px;
  }
  article#goods .goods_outer .goods-image {
    height: 229px;
  }
  article#access section.place iframe.map {
    height: 417px;
  }
  .outline::before {
    width: 978px;
  }
  .outline dl dt.sponsor {
    height: 42px;
  }
  .outline dl dd.sponsor img {
    width: 78px;
    height: 42px;
  }
  footer .logo img {
    width: 226px;
    height: 226px;
  }
  .modal_container .artist_img {
    width: 281px;
  }
  body.contact .main_button input[type=submit],
body.contact .main_button input[type=button] {
    width: 230px;
    font-size: 21px;
  }
  body.contact main article form {
    width: 732px;
  }
  body.contact main article form dl dt {
    width: 34.1530054645%;
  }
  body.contact main article form dl dd {
    width: 65.8469945355%;
  }
  body.contact-confirm main article form .back_button input {
    width: 66px;
  }
  body.contact-complete main article {
    padding: 80px 0 195px;
  }
  body.contact-complete main article .main_button {
    width: 732px;
  }
}
@media screen and (min-width: 1179px) {
  body {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  aside {
    width: 17.048346056%;
    padding: 35px 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
  }
  .top_main,
.sns_share,
main {
    width: 82.951653944%;
  }
  footer {
    width: 100%;
  }
  .btnHamburger {
    display: none;
  }
  header {
    height: auto;
  }
  header h1 {
    width: 171px;
    position: static;
    transform: translateX(0);
    margin: 0 auto 35px;
  }
  header a.btnTicket {
    display: none;
  }
  .drawer_menu {
    position: static;
    opacity: 1;
    transition: 0;
  }
  nav {
    margin-bottom: 55px;
  }
  nav ul li {
    margin-bottom: 20px;
  }
  nav ul li img {
    width: 24px;
    height: 24px;
    padding-right: 10px;
  }
  nav ul li a {
    font-size: 20px;
  }
  nav + .sns_link {
    width: 140px;
    margin: 0;
  }
  /* メインビジュアル */
  .top_main .message {
    top: 54vw;
  }
}/*# sourceMappingURL=style.css.map */