/* PC用 */
@charset "UTF-8";

.for-pc {
  display: block;
}
.for-sp {
  display: none;
}

/* ---------- */

/* --- ヘッダ --- */
#frame-header {
}
.text-header {
  --width-text-header: 1200;

  width: calc(var(--width-text-header) * 1px);
  font-size: 24px;
}

/* --- キービジュアル --- */
#frame-kv {
}
.kv {
  width: calc(var(--width-kv) * 1px);
}

/* --- ポイント --- */
#frame-point {
}
.point {
  width: calc(var(--width-point) * 1px);
}

/* --- ストーリー --- */
#frame-story {
}
.story {
  width: calc(var(--width-story) * 1px);
}

/* --- プレイ形式 --- */
#frame-format {
}
.format {
  width: calc(var(--width-format) * 1px);
}

/* --- チケット(料金) --- */
#frame-fee {
}
.fee {
  width: calc(var(--width-fee) * 1px);
}
.text-fee {
  bottom: 25%;
  width: calc(var(--width-text-fee) * 1px);

  font-size: 18px;

border: solid yellow 0px;
}
#button-ticket {
  bottom: 5%;
  width: calc(var(--width-button-ticket) * 1px);
}

/* --- スケジュール --- */
#frame-schedule {
}
.schedule {
  width: calc(var(--width-schedule) * 1px);
}
.text-schedule {
  width: calc(var(--width-text-schedule) * 1px);
  top: 7%;

  font-size: 22px;
  padding-left: 50px;

border: solid yellow 0px;
}
.text-schedule .large {
  font-size: 30px;
}
.text-schedule .starttime {
}

/* --- マップ --- */
#frame-map {
}
.map {
  width: calc(var(--width-map) * 1px);
}
.embed-map {
  width: calc(var(--width-embed-map) * 1px);
  height: calc(var(--height-embed-map) * 1px);

 top: 20%;
}
.iframe-map {
}
.text-map {
  bottom: 13%;
  width: calc(var(--width-text-map) * 1px);

  line-height: 140%;
  font-size: 20px;
  padding-left: 40px;
}
.text-map .large {
  font-size: 26px;
}
.text-map .medium {
  font-size: 24px;
}

/* --- FAQ --- */
#frame-faq {
  width: calc(var(--width-frame-faq) * 1px);
  padding-bottom: 30px;
}
.faq-title {
  width: calc(var(--width-faq-title) * 1px);
}
.text-faq {
  width: calc(var(--width-text-faq) * 1px);
}
.item {
  --ml-item: 20;

  font-size: 18px;
  margin-left: calc(var(--ml-item) * 1px);

}
.item .question {
  margin-top: calc(var(--mt-question) * 1px);
}
.item .answer {
  margin-top: calc(var(--mt-answer) * 1px);

}

/* --- フッタ --- */
#frame-footer {
  margin-bottom: 50px;
}
.logo {
  width: calc(var(--width-logo) * 1px);
}

/* 背景部 */
.wrapper {
}

/* サイドバー */
.sidebar {
  background-size: calc(var(--width-sidebar) * 1px) auto;
}
.sidebar.left {
  --offset-sidebar-left: 350;

  right: calc(50% + var(--offset-sidebar-left) * 1px);
}
.sidebar.right {_
  --offset-sidebar-right: 350;

  left: calc(50% + var(--offset-sidebar-right) * 1px);
}
.sidebar::before {
  background-size: calc(var(--width-sidebar) * 1px) auto;
}

/* 1200px未満 */
@media screen and (max-width: 1200px) {
  .kv {
    width: 100vw;
  }
}
