@charset "UTF-8";
/*
 * base
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-family: Noto Sans JP, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #141414;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.1rem;
  -webkit-text-size-adjust: 100%;
}

.body-wrap {
  position: relative;
}

.contents-wrapper {
  position: relative;
  z-index: 5;
  overflow: hidden;
}

li, ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.6;
}

.text-link {
  color: #2B92A5;
  text-decoration: underline;
}

.text-link:hover {
  text-decoration: none;
  opacity: 1;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

img {
  width: 100%;
}

section {
  position: relative;
}

.pc-on {
  display: block;
}

.sp-on {
  display: none;
}

.text-en,
.title-en {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.button-ticket a {
  color: #141414;
  font-weight: bold;
  padding: 18px 15px 17px 50px;
  position: relative;
  display: block;
  text-align: center;
  line-height: 1.8;
  font-size: 1.7rem;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #E6F93A;
  -webkit-box-shadow: 0 5px 0 #B0C402;
          box-shadow: 0 5px 0 #B0C402; /* 影の太さ・色 */
  border-radius: 10px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
.button-ticket a:hover {
  opacity: 0.6;
}
.button-ticket a::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 25px;
  display: block;
  background: url(../images/icon-ticket.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 22px;
  left: 20px;
}

@media screen and (max-width: 1000px) {
  body {
    width: 100%;
    min-width: auto;
    font-size: 1.5rem;
  }
  .pc-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
}
/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * main
 * -------------------------------------------------------------------
 */
main {
  position: relative;
}

.modaal-content-container {
  padding: 30px 7%;
}

.modal-inner {
  position: relative;
  padding: 20px 0;
}
.modal-inner .js-modaal-close {
  width: 21px;
  height: 21px;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 20;
  cursor: pointer;
}
.modal-inner .guest-image {
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #D4D4D4;
}
.modal-inner .guest-name {
  text-align: center;
  margin: 15px 0 0;
  font-weight: 600;
  font-size: 1.8rem;
}
.modal-inner .guest-title {
  margin: 2px 0 0;
  text-align: center;
  font-size: 1.2rem;
}
.modal-inner .guest-intro {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 15px 0 0;
}

.main-menu {
  display: block;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
}

/*========= ナビゲーションのためのCSS ===============*/
.menu-panel {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100%;
  background: #2B92A5; /*背景を少し透過させる*/
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.menu-panel .sns-list {
  position: absolute;
  top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  right: 100px;
  z-index: 1000;
}
.menu-panel .sns-list div {
  width: 30px;
  margin: 0 0 0 10px;
}
.menu-panel .main-nav .menu-list li {
  margin: 18px 0;
  text-align: center;
}
.menu-panel .main-nav .menu-list li a {
  color: #fff;
  text-align: center;
  font-size: 5.2vw;
  letter-spacing: 0.2rem;
  font-weight: 500;
  text-align: center;
}
.menu-panel .button-ticket {
  width: 80%;
  max-width: 400px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10vh;
  z-index: 100;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
.menu-panel.panelactive {
  opacity: 1;
  z-index: 999;
  height: 100vh;
}

/*ナビゲーションの縦スクロール*/
.menu-panel.panelactive .menu-inner {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

.menu-inner::before {
  content: "";
  display: block;
  height: 100vh;
  background: url(../images/repeat-perforation.png) repeat-y top 0 left/auto 20px;
  background-position: left;
  position: absolute;
  top: 5px;
  width: 100%;
  left: 7px;
}

.menu-inner::after {
  content: "";
  display: block;
  height: 100vh;
  background: url(../images/repeat-perforation.png) repeat-y top 0 right/auto 20px;
  background-position: right;
  position: absolute;
  top: 5px;
  width: 100%;
  right: 7px;
}

/*ナビゲーション*/
.menu-panel .menu-inner .main-nav {
  display: none; /*はじめは非表示*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  width: 50%;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: scroll;
  height: 70vh;
}

.menu-panel.panelactive .menu-inner .main-nav {
  display: block;
  width: auto;
}

/*リストのレイアウト設定*/
/*========= ボタンのためのCSS ===============*/
.nav-icon {
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px;
  border-radius: 50%;
  background: #fff;
}
.nav-icon span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 11px;
  height: 1px;
  border-radius: 2px;
  background-color: #2B92A5;
  width: 40px;
}
.nav-icon span:nth-of-type(1) {
  top: 21px;
}
.nav-icon span:nth-of-type(2) {
  top: 29px;
}
.nav-icon span:nth-of-type(3) {
  top: 37px;
}

.nav-icon.active span:nth-of-type(1) {
  top: 24px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.nav-icon.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-icon.active span:nth-of-type(3) {
  top: 36px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.wrap-pc {
  display: none;
}

.wrap-main {
  background: #fff;
}
.wrap-main .buy-ticket {
  padding: 40px 5% 44px;
}
.wrap-main .buy-ticket .button-ticket {
  width: 70%;
  min-width: 280px;
  margin: 0 auto;
  z-index: 100;
  position: relative;
}
.wrap-main .buy-ticket p {
  text-align: center;
  margin: 20px 0 0;
}
.wrap-main main > section {
  padding: 80px 5%;
}
.wrap-main .text-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.wrap-main .text-blue {
  color: #2B92A5;
}
.wrap-main .title-en {
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.4rem;
  text-align: center;
  margin: 0 0 25px;
}
.wrap-main .text-small {
  font-size: 1.3rem;
  margin: 8px 0 0;
}
.wrap-main .feature-title {
  font-size: 2rem;
  padding: 0 0 10px;
  margin: 0 0 25px;
  text-align: center;
  border-bottom: 1px solid #2B92A5;
}
.wrap-main .recommend-title {
  color: #2B92A5;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 15px;
}
.wrap-main .recommend-title span img {
  display: block;
  margin: 0 5px 0 0;
}
.wrap-main .recommend-title::before {
  content: "";
  background: url(../images/title-speech.svg) no-repeat center top;
  background-size: auto;
  width: 14px;
  height: 17px;
  display: block;
  background-size: contain;
  position: relative;
  top: 0;
  left: -15px;
  right: auto;
}
.wrap-main .recommend-title::after {
  content: "";
  background: url(../images/title-speech.svg) no-repeat center top;
  background-size: auto;
  width: 14px;
  height: 17px;
  display: block;
  background-size: contain;
  position: relative;
  top: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: -15px;
  left: auto;
}
.wrap-main .text-description {
  margin: 0 0 30px;
  line-height: 2;
  text-align: justify;
}
.wrap-main .chair-person {
  text-align: right;
  font-size: 1.8rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrap-main .chair-person .text-small {
  font-size: 1.2rem;
  margin: 0 13px 0 0;
  font-weight: 500;
}
.wrap-main .chair-person .person-thamb {
  width: 60px;
  margin: 0 0 0 10px;
}
.wrap-main .director-intro {
  margin: 20px 0 0;
}
.wrap-main .director-intro .director-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 5px;
}
.wrap-main .supplement-text {
  font-size: 1.3rem;
  line-height: 2;
  margin: 20px 0 0;
}
.wrap-main .supplement-text dt {
  font-size: 1.4rem;
  width: 120px;
  font-weight: 500;
}
.wrap-main .supplement-text dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrap-main .movie-contents .movie-box {
  margin: 40px 0 0;
}
.wrap-main .movie-contents .movie-box .movie-title {
  margin: 15px 0 0;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.01rem;
}
.wrap-main .movie-contents .movie-box .text-small {
  font-size: 1.2rem;
  margin: 8px 0 10px;
}
.wrap-main .movie-contents .movie-box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0 0;
}
.wrap-main .movie-contents .movie-box dl dt {
  width: 26%;
  background-color: #2B92A5;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  padding: 5px 0;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: 0.02rem;
}
.wrap-main .movie-contents .movie-box dl dd {
  width: 70%;
  letter-spacing: 0.08rem;
  margin: 0 0 8px;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  font-weight: 500;
}
.wrap-main .first-view {
  position: relative;
  overflow: hidden;
}
.wrap-main .first-view video {
  border-radius: initial;
  width: 100%;
  height: 500px;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  display: block;
}
.wrap-main .first-view .buy-ticket {
  background: #2B92A5;
}
.wrap-main .first-view .buy-ticket p {
  color: #fff;
}
.wrap-main .first-view::before {
  content: "";
  display: block;
  height: 100%;
  background: url(../images/repeat-perforation.png) repeat-y top 0 left/auto 20px;
  background-position: left;
  position: absolute;
  top: 5px;
  width: 100%;
  left: 7px;
}
.wrap-main .first-view::after {
  content: "";
  display: block;
  height: 100%;
  background: url(../images/repeat-perforation.png) repeat-y top 0 right/auto 20px;
  background-position: right;
  position: absolute;
  top: 5px;
  width: 100%;
  right: 7px;
}
.wrap-main #message {
  background-image: url(../images/message-backimage.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 400px;
  background-position: bottom;
}
.wrap-main #message .title-copy {
  margin: 0 auto 30px;
  letter-spacing: 0.5rem;
  width: 70px;
  height: 177px;
}
.wrap-main #special-guest {
  background: #F2F2F2;
}
.wrap-main #special-guest .guest-contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 40px 15px;
  margin: 50px 0 0;
}
.wrap-main #special-guest .guest-contents .guest-box .guest-image {
  position: relative;
}
.wrap-main #special-guest .guest-contents .guest-box .guest-image::before {
  content: "";
  position: absolute;
  width: 7vw;
  height: 7vw;
  max-width: 30px;
  max-height: 30px;
  display: block;
  background: url(../images/icon-popup.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  z-index: 10;
}
.wrap-main #special-guest .guest-contents .guest-box .guest-name {
  text-align: center;
  margin: 10px 0 0;
  font-weight: 600;
  font-size: 1.8rem;
}
.wrap-main #special-guest .guest-contents .guest-box .guest-title {
  margin: 2px 0 0;
  text-align: center;
  font-size: 1.2rem;
}
.wrap-main #movie-select .section-feature {
  margin: 60px 0 0;
}
.wrap-main #movie-select .feature-somai .recommend-title {
  margin-top: 20px;
}
.wrap-main #movie-select .feature-somai .recommend-title span img {
  width: 53px;
}
.wrap-main #movie-select .feature-asia .recommend-title {
  margin-top: 20px;
}
.wrap-main #movie-select .feature-asia .recommend-title span img {
  width: 45px;
}
.wrap-main #movie-select .feature-shirayuri .text-description {
  margin: 15px 0 0;
}
.wrap-main #movie-select .column-box {
  background: #D4E6E9;
  border-radius: 10px;
  margin: 40px 0 0;
  padding: 20px 5% 15px;
}
.wrap-main #movie-select .column-box .recommend-title {
  margin: 0;
}
.wrap-main #movie-select .column-box .recommend-sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 8px 0 15px;
  line-height: 1.3;
  text-align: center;
}
.wrap-main #movie-select .column-box .image-box {
  margin: 0 0 15px;
}
.wrap-main #event {
  background: #F2F2F2;
}
.wrap-main #time-schedule {
  background: #2B92A5;
}
.wrap-main #time-schedule .title-en {
  color: #fff;
}
.wrap-main #time-schedule .title-date {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.wrap-main #time-schedule .title-date .title-day {
  font-size: 5rem;
  line-height: 1;
}
.wrap-main #time-schedule .title-date .title-week {
  font-size: 2.5rem;
  line-height: 1;
  margin: 10px 0 0 5px;
}
.wrap-main #time-schedule .title-date::before {
  content: "";
  height: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  height: 1px;
  background: #fff;
  background-position: flex-end;
  margin-right: 2rem;
  margin: 15px 2rem 0 0;
}
.wrap-main #time-schedule .title-date::after {
  content: "";
  height: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  height: 1px;
  background: #fff;
  background-position: center;
  margin: 15px 0 0 2rem;
}
.wrap-main #time-schedule section {
  margin: 40px 0 0;
}
.wrap-main #time-schedule section .time-line li {
  padding: 1.2em 1em;
  background: #1d7e91;
  margin: 14px 0;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wrap-main #time-schedule section .time-line li .time-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.2;
}
.wrap-main #time-schedule section .time-line li .movie-title {
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 1px solid #fff;
  font-weight: 600;
}
.wrap-main #time-schedule section .time-line li .movie-title .text-small {
  font-weight: 400;
  line-height: 1.8;
  margin: 4px 0 0;
  display: inline-block;
}
.wrap-main #sponsor {
  background: #fff;
}
.wrap-main #sponsor .sponsor-container .sponsor-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrap-main #sponsor .sponsor-container .sponsor-list > div > div {
  margin: 0 0 20px;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-50 {
  margin: 35px 0 10px;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-50 > div {
  width: 100%;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-30 {
  margin: 10px 0;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-30 > div {
  width: 48.5%;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-10 {
  margin: 10px 0;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .sponsor-10 > div {
  width: 31.5%;
}
.wrap-main #sponsor .sponsor-container .sponsor-list .image-box {
  border: 1px solid #bbbbbb;
}
.wrap-main #sponsor .supporter-container {
  margin: 40px 0 0;
}
.wrap-main #sponsor .supporter-container p {
  line-height: 2.6;
}
.wrap-main #map {
  background: #F2F2F2;
}
.wrap-main #map .venue-map {
  margin: 50px 0 0;
}
.wrap-main #map .venue-map .map-box {
  border: 1px solid #bbbbbb;
  position: relative;
  width: 100%;
  padding-top: 65%;
  /* 16:9のアスペクト比 */
  height: 0;
}
.wrap-main #map .venue-map .map-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wrap-main #ticket {
  background: #fff;
}
.wrap-main #ticket .buy-ticket {
  padding: 0;
}

#footer {
  overflow: hidden;
  position: relative;
  background: #141414;
  padding: 50px 6% 40px;
}
#footer .footer-wrapper {
  position: relative;
}
#footer .footer-wrapper .footer-logo {
  width: 155px;
  margin: 0 auto 55px;
}
#footer .footer-wrapper .copyright {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  height: 17px;
  font-weight: 400;
  letter-spacing: 0.15rem;
}

#footer::before {
  content: "";
  display: block;
  height: 100%;
  background: url(../images/repeat-perforation.png) repeat-y top 0 left/auto 20px;
  background-position: left;
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 7px;
}

#footer::after {
  content: "";
  display: block;
  height: 100%;
  background: url(../images/repeat-perforation.png) repeat-y top 0 right/auto 20px;
  background-position: right;
  position: absolute;
  bottom: 5px;
  width: 100%;
  right: 7px;
}

@media screen and (min-width: 500px) {
  .nav-icon {
    top: 20px;
    right: 20px;
  }
  .menu-panel .main-nav .menu-list li {
    margin: 20px 0;
  }
  .menu-panel .main-nav .menu-list li a {
    font-size: 2.2rem;
  }
  .wrap-main {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 max(100px, 100vw - 500px - 35.4609929078vw) 0 auto;
    margin: 50px auto;
    z-index: 2;
    overflow: hidden;
    border-radius: 25px;
    border: 8px solid #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 55px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 55px;
  }
  .wrap-main .first-view video {
    height: 600px;
  }
  .all-contents-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .pc-bg {
    position: fixed;
    inset: 0%;
  }
  .pc-bg .pc-bg-inner {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 15, 9, 0.1176470588)), to(rgba(22, 15, 9, 0.1176470588))), url("../images/pc-backimage.jpg");
    background-image: linear-gradient(rgba(22, 15, 9, 0.1176470588), rgba(22, 15, 9, 0.1176470588)), url("../images/pc-backimage.jpg");
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    width: 100%;
    height: 100vh;
  }
}
@media screen and (min-width: 1024px) {
  .nav-icon,
  .menu-panel {
    display: none;
  }
  .wrap-pc {
    display: block;
  }
  /* 左サイドエリア（PCのみ表示） */
  .wrap-left {
    padding-top: 13.0208333333vh;
    position: fixed;
    top: 0;
    left: 0;
    width: calc((100vw - 500px) / 2);
    height: 100%;
    z-index: 10;
    display: -ms-grid;
    display: grid;
    overflow-y: hidden;
    justify-items: center;
    padding-bottom: 45px;
  }
  .wrap-left .pc-logo {
    width: 274px;
    margin: 0 auto;
  }
  .wrap-left .pc-date {
    margin: 33px auto 0;
  }
  .wrap-left .pc-buy-ticket {
    margin: 70px auto 0;
  }
  .wrap-left .pc-buy-ticket .button-ticket {
    width: 300px;
    font-size: 1.7rem;
  }
  .wrap-left .pc-buy-ticket p {
    color: #fff;
    text-align: center;
    margin: 22px 0 0;
    font-size: 1.5rem;
  }
  .wrap-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: max(100px, 100vw - 500px - 35.4609929078vw);
    width: calc((100vw - 500px) / 2);
    height: 100%;
    padding-bottom: 45px;
    padding-left: calc(2 * var(--gutter));
    padding-right: calc(2 * var(--gutter));
    display: -ms-grid;
    display: grid;
    justify-items: center;
    padding-top: 18.2291666667vh;
    overflow-y: auto;
  }
  .wrap-right .pc-copy {
    width: 278px;
  }
  .wrap-right .pc-nav-wrap {
    margin: 65px 0 0;
  }
  .wrap-right .pc-nav-wrap .pc-menu-list li {
    color: #fff;
    position: relative;
    margin: 18px 0 0;
  }
  .wrap-right .pc-nav-wrap .pc-menu-list li a {
    font-size: 1.8rem;
    letter-spacing: 0.4rem;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0 0 0 25px;
  }
  .wrap-right .pc-nav-wrap .pc-menu-list li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 5px;
    top: calc(0.87em - 3px);
  }
  .wrap-right .pc-sns {
    font-size: 2.2rem;
    color: #fff;
    margin: 55px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrap-right .pc-sns p {
    position: relative;
    margin: 0 135px 0 0;
    letter-spacing: 0.4rem;
  }
  .wrap-right .pc-sns p::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100px;
    height: 1px;
    background: #fff;
    top: 18px;
    left: 65px;
  }
  .wrap-right .pc-sns .sns-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wrap-right .pc-sns .sns-list div {
    width: 30px;
  }
}
/*# sourceMappingURL=style.css.map */