@charset "UTF-8";

/* ==========================================
   PC用（1024px以上）のレイアウト設定
   ========================================== */
.pc-frame-wrap {
  position: fixed;
  top: 0;
  left: 50.5%;
  transform: translateX(-50%);
  z-index: 1200;
}
.pc-rainbow-box {
  width: 450px;
  min-height: calc(100vh - 64px);
  border-radius: 20px;

  margin: 0 auto;
  z-index: 1500;
}
.pc-rainbow-box::-webkit-scrollbar {
  display: none;
}
.pc-rainbow-box {
  /* Firefox用 */
  scrollbar-width: none;

  /* IE/Edge用 */
  -ms-overflow-style: none;
}

.menu-and-btn-wrapper {
  display: none;
}
.bigpc-bg {
  width: 100vw;
  min-height: 100vh;
  background-image: url(../img/pc-bg003.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  z-index: -100;
}
/* 450 : 400 : 450 の3カラムにする */
.grid-container {
  top: 0;
  left: 0;
  display: grid;
  width: 100vw;
  min-height: 100vh;
  grid-template-columns: calc((100vw - 450px) * 0.5) 450px calc(
      (100vw - 450px) * 0.5
    );
}

/* --- 【左側】1列目 --- */
.grid-left {
  display: block;
  grid-row: 1;
  grid-column: 1;
  /* border-right: solid 10px #d7ee05; */
}

/* --- 【中央】2列目 --- */
.grid-center {
  display: block;
  grid-row: 1;
  grid-column: 2;
  background-color: black;

  /* border: solid 1px #b41111; */
  /* padding-top: 50px; */
}

/* --- 【右側】3列目 --- */
.grid-right {
  display: block;
  /* ★ position: fixed; を削除（Gridの3列目に正しくとどまらせるため） */
  grid-row: 1;
  grid-column: 3;
  text-align: right;

  /* border-left: solid 10px #d7ee05; */
  /* ※背景画像の設定は wrap 側で行うため、ここでは不要なら削除してOKです */
}

/* ★【超重要】新しく直下に出た .mv-wrap を完全に消し去る */
.grid-container > .mv-wrap {
  display: none !important;
}

.grid-center .special-wrap {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.pc-midasi h3 {
  font-size: 20px;
  padding-top: 50px;
  padding-left: 55px;
}
/* 右サイドの要素レイアウト////////// */
.right-wrap {
  position: fixed;

  padding: 50px 0 0 70px;
  text-align: left;
}
.right-wrap h3 {
  font-size: 25px;
}
.right-wrap span {
  font-size: 28px;
}
.pc-date {
  width: 380px;
  margin-bottom: 30px;
}
.pc-copy {
  text-align: left;
  margin-bottom: 40px;
}
.pc-copy h5 {
  font-size: 16px;
  line-height: 2;
}
.pc-hanabi-title {
  width: 380px;
  margin-bottom: 5px;
}
.pc-spec {
  line-height: 1;
  text-align: left;
}
.pc-spec p {
  font-size: 12px;
  line-height: 1.5;
}
.pc-place p {
  font-size: 18px;
  margin-bottom: 10px;
}
.pc-spec h3 {
  font-size: 16px;
}
/* 左サイドの要素レイアウト////////// */
.pc-title-wrap {
  position: fixed;
  width: 50%;
  padding-right: 200px;
  /* border: solid 2px #a1eb0f; */
}
.pc-title-v {
  width: clamp(280px, 41.29vw + -142.81px, 650px);
  height: 100vh;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* PC用スライド */

/* ボタンの共通設定 */
.pc-btn-01,
.pc-btn-02 {
  cursor: pointer;
  transition: opacity 0.2s;
}

/* スライドパネルの共通設定 */
.slide-panel {
  position: fixed;
  bottom: -1600px; /* 画面外に隠す */
  left: calc(50% + 450px);
  transform: translateX(-50%);
  transition: bottom 0.4s ease;
  /* z-index: 50; */
  /* box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); */
}

.slide-panel.is-active {
  bottom: 80px; /* フッターの高さに合わせて調整 */
}
.map-illustration-pc {
  width: 350px;
}
/*  */

.pc-footer-wrap {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 100px;
  /* border: solid 2px #fff; */
}
.pc-btn-wrap {
  width: 450px;
  display: flex;
  column-gap: 20px;
}

.footer-wrap {
  display: none;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 50px;
  background-color: #000;
  padding-left: 50px;
  z-index: 1500;
}
.pc-footer-wrap small {
  font-size: 10px;
}
