@charset "utf-8";


@font-face {
  font-family: 'Takibi';
  src: url('fonts/07Takibi-Heavy.woff') format('woff'),
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
  letter-spacing: 0.2em;
}

.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('images/FV.png') top center / cover no-repeat;
}

.background {
  background-image: url('images/neko2_background1.png');
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.3s, transform 1s;
}

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

.all {
  z-index: 1000;
  overflow: hidden;
}

.fixed-header {
  position: fixed;
  top: -100px;
  /* 初期状態では見えないようにする */
  transition: top 0.3s;
  /* スクロール時のアニメーション効果を追加 */
}

.fixed-header.active {
  top: 20px;
  /* スクロールした際に表示させる位置 */
}



#fixed-header {
  transition: .5s;
  /* アニメーションタイミング */
  z-index: 1000;
}

#fixed-header.is-show {
  top: 0;
}

/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 30000;
  letter-spacing: 0px !important;
}

.pagetop a {
  display: block;
  font-size: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  background: #252525;
  border-radius: 50%;
  line-height: 50px;
  transition: 0.5s;
}

.pagetop a:hover {
  display: block;
  font-size: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  background: #8c8c8c;
  transition: 0.5s;
  border-radius: 50%;
  line-height: 50px;
}

.pagetop a i {
  font-size: 2rem;
  color: #fff;
  line-height: 80px;
}


header {
  padding: 30px 4% 10px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 1.8rem;
}

.nav-item2 {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fffdef;
  height: 1.8rem;
}

.pc-nav2 {
  background-color: #000;
  width: 90%;
  padding: 10px 0px;
  opacity: 20%;
  transition: 0.5s;
}

.pc-nav2:hover {
  background-color: #000;
  width: 90%;
  padding: 10px 0px;
  opacity: 80%;
  transition: 0.5s;
}

.nav-item2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fffdef;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.nav-item2:hover:after {
  transform: translate(0, 0);
}

.header-nav2 {
  position: fixed;
  top: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1000;
}

.nav-item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.nav-item:hover:after {
  transform: translate(0, 0);
}

.header-nav {
  position: relative;
  margin: 0 auto;
  z-index: 1000;
}

nav {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ul-1 {
  list-style: none;
  margin: 0;
  display: flex;
  padding-left: 0px;
}

.ul-2 {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-around;
  padding-left: 0px;
  padding: 10px 50px;
}

.li-1 {
  margin: 0 0 0 100px;
  font-size: 14px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/* 画像のスタイル */
.image-pc img {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-sp img {
  display: none;
}

/* divのスタイル */
.details {
  height: 900px;
  padding: 20px;
  background-color: #fffbe1;
  text-align: center;
}

.details h2 {
  font-size: 3rem;
  margin-top: 180px;
  margin-bottom: 0;
  height: 70px;
  color: #77724b;
  font-family: Takibi;
}

.nekotankousiki {
  font-size: 1.5rem;
  margin: 0;
  color: #77724b;
  font-family: Takibi;
}

.button02 {
  background-color: #fffbe1;
  border: solid 2px #fffbe1;
  color: #77724b;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  font-family: Takibi;
}

.Ximg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.nekotannX {
  font-size: 1rem;
  color: #77724b;
  font-family: Takibi;
}

.banner {
  width: 500px;
  height: 160px;
  margin: 32px auto 0;
}

.bannerlink {
  display: flex;
  justify-content: center;
  display: block;
}

.bannerimage {
  width: 500px;
  height: 160px;
  vertical-align: bottom;
  transition: 0.3s;
}

.bannerimage:hover {
  opacity: 0.5;
  background-color: #000000;
}

@media screen and (min-width: 401px) and (max-width:768px) {

  /* PC用画像は非表示 */
  .image-pc img {
    display: none;
  }

  /* SP用画像は全画面表示 */
  .image-sp img {
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    /* 背景に配置するためにz-indexを低く */
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* 詳細セクション */
  .details {
    position: relative;
    /* 他の要素が重ならないようにする */
    z-index: 1;
    /* 画像の上に表示されるようにz-indexを上げる */
    height: 600px;
    padding: 20px;
    background-color: #fffbe1;
    text-align: center;
  }

  .details h2 {
    font-size: 43px;
    margin-top: 30px;
    margin-bottom: 0;
    height: 60px;
    letter-spacing: 5px;
    color: #77724b;
    font-family: Takibi;
    white-space: nowrap;
  }

  .nekotankousiki {
    font-size: 24px;
    margin: 0;
    color: #77724b;
    font-family: Takibi;
  }

  .nekotannX {
    font-size: 15px;
    letter-spacing: 0px;
    margin: 0;
    color: #77724b;
    font-family: Takibi;
  }

  .Ximg {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .button02 {
    background-color: #fffbe1;
    border: solid 2px #fffbe1;
    color: #77724b;
    width: 200px;
    border-radius: 10px;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 1em;
    font-family: Takibi;
  }

  /* バナーセクション */
  .banner {
    width: 50%;
    margin: 30px auto 0;
    position: relative;
    padding-bottom: calc(100% / 4);
    min-height: 120px;
    overflow: hidden;
  }

  .bannerlink {
    display: block;
  }

  .bannerimage {
    width: 90%;
    height: 55%;
    object-fit: cover;
    vertical-align: bottom;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
  }

  .bannerimage:hover {
    opacity: 0.5;
    background-color: #000000;
  }
}

@media screen and (max-width:400px) {

  /* PC用画像は非表示 */
  .image-pc img {
    display: none;
  }

  /* SP用画像は全画面表示 */
  .image-sp img {
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    /* 背景に配置するためにz-indexを低く */
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* 詳細セクション */
  .details {
    position: relative;
    /* 他の要素が重ならないようにする */
    z-index: 1;
    /* 画像の上に表示されるようにz-indexを上げる */
    height: 500px;
    padding: 20px;
    background-color: #fffbe1;
    text-align: center;
  }

  .details h2 {
    font-size: 170%;
    margin-top: 50px;
    margin-bottom: 0;
    height: 40px;
    color: #77724b;
    font-family: Takibi;
    white-space: nowrap;
  }

  .nekotankousiki {
    font-size: 18px;
    margin: 0;
    color: #77724b;
    font-family: Takibi;
  }

  .nekotannX {
    font-size: 12px;
    letter-spacing: 0px;
    margin: 0;
    color: #77724b;
    font-family: Takibi;
  }

  .Ximg {
    width: 30px;
    height: 30px;
    margin-right: 6px;
  }

  .button02 {
    background-color: #fffbe1;
    border: solid 2px #fffbe1;
    color: #77724b;
    border-radius: 10px;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 1em;
    font-family: Takibi;
  }

  /* バナーセクション */
  .banner {
    width: 80%;
    margin: 20px auto 0;
    position: relative;
    /* 高さを維持するために必要 */
    padding-bottom: calc(100% / 2.5);
    /* 3:1 の比率にするための高さ */
    min-height: 120px;
    overflow: hidden;
  }

  .bannerlink {
    display: block;
  }

  .bannerimage {
    width: 90%;
    height: 40%;
    object-fit: cover;
    /* 画像の比率を維持しつつ、要素にフィットさせる */
    vertical-align: bottom;
    transition: 0.3s;
    position: absolute;
    /* 親要素内にフィットさせるために必要 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 中央に配置するために必要 */
    overflow: hidden;
  }

  .bannerimage:hover {
    opacity: 0.5;
    background-color: #000000;
  }
}

/*========= レイアウトのためのCSS ===============*/
#header {
  width: 100%;
  height: 100vh;
  position: relative;
}

#header:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  /*背景画像設定*/
  background: url("images/neko2_KV_wide.png") no-repeat center;
  background-size: cover;
}

.hidden {
  opacity: 0;
}

#header-sp {
  display: none;
}

#header-sp::before {
  display: none;
}

#container {
  position: relative;
  z-index: 1;
  background: #eee;
}

.background {
  background-image: url('images/neko2_background1.png');
  /* 背景画像のURLを指定してください */
  background-size: cover;
  /* 画像が要素にぴったりフィットするように調整 */
  background-position: center;
  /* 画像を要素の中央に配置 */
  background-attachment: fixed;
  /* 背景をスクロールしても固定 */
  padding-top: 20rem;
  z-index: 3;
}

.g-1 {
  display: flex;
  justify-content: space-between;
  margin: 0 6rem;
  padding-bottom: 300px;
}

.title {
  text-align: center;
  width: 37em;
  margin: 0 auto;
}

.intro {
  width: 100%;
}

.intro h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  padding: 0.2rem 0.4rem;
}

.intro h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.intro-content-pc {
  position: absolute;
  left: 0px;
  top: 450px;
}

.intro-content-pc .intro-pc {
  color: #fffdf2;
  padding-left: 8rem;
  padding-right: 3rem;
  font-size: 2.3rem;
  letter-spacing: 0em;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
  background-color: #77724b;
}

.intro-sp {
  display: none;
}

.intro-mac {
  display: none;
}

.intro-win {
  display: inline-block;
}

.intro-content p {
  margin-top: 130px;
  padding: 20px 0px;
  color: #77724b;
  font-size: 1.0rem;
  letter-spacing: 0.05rem;
  line-height: 2rem;
  /* background:rgba(255, 255, 255, 0.5);
  border-radius: 0 25px 25px 0; */
}

.text-box {
  display: inline-block;
  background-color: #fffffb;
  width: 100%;
  padding: 1rem;
}

.intro-bold {
  font-weight: 900;
}

.x {
  width: 100%;
}

.x h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  padding: 0.2rem 0.4rem;
  ;
}

.x h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.x-content {
  align-items: center;
  padding-top: 55px;
}

.story-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  padding-bottom: 300px;
  margin-top: 50px;
}

.story {
  margin-top: 100px;
}

.story-pc {
  display: block;
}

.story-sp {
  display: none;
}

.story {
  width: 100%;
  /* 幅を調整 */
  max-width: 100%;
}

.text-box-story .story-title {
  display: inline-block;
  margin: 0;
  font-size: 2rem;
  font-family: 'Takibi';
  letter-spacing: 0.2em;
  color: #77724b;
  width: 90%;
  padding-top: 20px;
  padding-bottom: 3rem;
}

.story h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  padding: 0.2rem 0.4rem;
}

.story h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 70%;
  border-bottom: solid 1px #77724b;
}

.story h3 {
  display: inline-block;
  margin: 0;
  font-size: 2rem;
  font-family: 'Takibi';
  letter-spacing: 0.2em;
  color: #77724b;
  width: 90%;
  padding-top: 20px;
}

.story-content {
  display: flex;
  justify-content: center;
  width: 100%;
  /* ここで幅を広げる */
  max-width: 1200px;
  /* 必要に応じて最大幅を設定 */
  margin: 0 auto;
  /* 中央揃え */
}

.story-content {
  display: flex;
  justify-content: center;
  width: 100%;
  /* 親要素の幅を95%に広げる */
  max-width: 1400px;
  /* 必要に応じて最大幅を調整 */
  margin: 0 auto;
  /* 中央揃え */
  margin-top: 70px;
}

.story-content p {
  padding: 20px 0px;
  color: #77724b;
  font-size: 1.0rem;
  letter-spacing: 0.2rem;
  line-height: 2.5rem;
  width: 85%;
  margin: 0 auto;
}

.text-box-story {
  display: inline-block;
  background-color: #fffffb;
  width: 95%;
  /* テキストボックスの幅を95%に広げる */
  padding: 1rem;
  margin: 0 auto;
  /* 中央揃え */
}



.timeline {
  display: block;
  max-width: 450px;
  height: 450px;
  margin: 0 auto;
}

.g-2 {
  background-color: #252525;
  padding-top: 100px;
}

.cast-sp {
  display: none;
}

.cast-pc {
  display: block;
}

.title-cast {
  text-align: center;

}

.title-cast h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #fffdef;
  font-family: "Takibi";
  font-size: 2.5rem;
}

.title-cast h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #fffdef;
  width: 90%;
  border-bottom: solid 1px #fffdef;
}

.title-cast h3 {
  font-size: 0.8rem;
  color: #d8d5b8;
  letter-spacing: 0.1em;
}

.h3-box {
  padding: 0.5rem 0 0 0;
}

.h3-box-a {
  padding: 0 0.5rem;
  margin-top: 1rem;
}

.cast-name {
  text-align: center;
  font-family: 'Takibi';
  color: #fffdef;
  font-size: 0.8rem;
  width: 40%;
  margin: 0 auto;
  margin-top: 10rem;
}

.cast-name h1 {
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
  background-color: #d8d5b8;
  color: #252525;
  padding-top: 0.8rem;
  z-index: 2;
}

.cast-name p {
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
  border-bottom: solid 1px #fffdef;
  top: -50px;
  transition: top 0.5s ease;
  z-index: 0;
}

.image-flex {
  display: flex;
  padding: 80px 0;
  margin: 0 auto;
  width: 85%;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: center;
  gap: 4rem;
}

.cast-image {
  width: 150px;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}

.cast-image:hover {
  opacity: 50%;
  transform: scale(1.1);
  transition-duration: 0.5s;
}

img:not([src]) {
  border: none;
  /* 画像がない場合はボーダーを表示しない */
}

.cast-image-2 {
  border: 0px;
}

.cast-box {
  text-align: center;
  border: solid 0px white;
}

.cast-box h2 {
  color: #fffdef;
  font-weight: bold;
  margin: 0;
  margin-top: 8px;
  font-size: 1.2rem;
}

.cast-box p {
  color: #fffdef;
  font-weight: bold;
  margin: 0;
  font-size: 0.8rem;
}

.body-overflow-hidden {
  overflow: hidden;
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50000;
}

#modal-container>div {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

#modal-container>div>img {
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px);
}

img.popup {
  cursor: pointer;
}


/* ポップアップ内のクローズボタンのスタイルを変更 */
.lb-data .lb-close {
  display: none;
}

.lb-data .lb-details {
  display: none;
}

.lb-container {
  padding: 0;
}

.background-2 {
  background-image: url("images/neko2_background2.png");
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding-top: 20rem;
  z-index: 2;
  background-position: top;
}

.g-3 h1 {
  margin: 0;
  padding: 0;
}

.title-sche {
  text-align: center;
}

.title-sche h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
}

.title-sche h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.sche-image {
  width: 80%;
  height: auto;
}

.sche-img-pc {
  display: block;
  text-align: center;
  margin-top: 70px;
}

.sche-img-sp {
  display: none;
}

.g-stream {
  margin-top: 300px;
}

.staff h1 {
  letter-spacing: 0em;
  margin-top: 70px !important;
  text-align: center;
  color: #77724b;
  font-size: 3rem;
}

.staff p {
  letter-spacing: 0em;
  text-align: center;
  color: #77724b;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 70px;
  padding: 70px 3rem 0px 3rem;
}


.staff h2 {
  letter-spacing: 0em;
  text-align: center;
  color: #77724b;
  font-size: 1.5rem;
  font-weight: bold;
}

.price {
  margin: 0 auto;
  border-bottom: solid 1px #77724b;
  width: 30%;
  margin-top: 100px;
}

.stream-price {
  font-size: 2.5rem !important;
  margin-top: 13px !important;
  margin: 0;
}

.stream-p {
  font-size: 2rem !important;
  margin-top: 13px !important;
  margin: 0;
}

.stream-ticket {
  padding: 0 !important;
  font-weight: 400 !important;
  margin-top: 13px !important;
}

.stream-button {
  text-align: center;
  padding-bottom: 80px;
}

.stream-sub-button {
  letter-spacing: 0 !important;
  font-weight: bold;
  text-align: center;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  color: white !important;
  background-color: #77724b;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

.stream-content {
  width: 80%;
  background: white;
  border-radius: 25px;
  margin: 0 auto;
  margin-top: 70px;
}

.stream-sub-button:hover {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  border: solid 2px #77724b;
  color: #77724b !important;
  background-color: white;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

.g-4 {
  margin-top: 300px;
}


.map-container {
  background-color: white;
  width: 90%;
  margin: 0 auto;
  height: auto;
  border-radius: 25px 25px 0 0;
  padding-top: 100px;
  margin-top: 50px;
  padding-bottom: 100px;
}

.logo-content {
  margin: 0 auto;
  text-align: center;
  margin: 0px auto 50px;
}

.owlspot-logo {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.map {
  text-align: center;
}

.map-3 .title h1 {
  padding: 0;
}

.map-4 {
  text-align: center;
}

.map-4 h1 {
  padding: 0;
}

.none a {
  text-decoration: none !important;
  color: white !important;
}

.map-content p {
  margin: 0;
  vertical-align: middle;
  color: white;
  font-size: 0.8rem;
  letter-spacing: -0.02rem;
  line-height: 1.5rem;
}

.map-content-text {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5rem;
}

.map-2 {
  background-color: #252525;
  padding: 1.62rem;
  padding-top: 5rem;
  padding-bottom: 5.55rem;
  width: 90%;
  margin: 0 auto;
}

.map-content-2 {
  margin-left: 80px;
}

.map-3 h2 {
  width: 90%;
}

.web-button {
  margin-top: 15px;
}

.web {
  text-decoration: none;
  background-color: #252525;
  border: solid 1px white;
  border-radius: 25px;
  color: white;
  font-weight: 900;
  padding: 0.5em 1em;
  font-size: 0.8rem;
  letter-spacing: 0em;
  transition: 0.5s
}

.web:hover {
  text-decoration: none;
  background-color: white;
  border: solid 1px white;
  border-radius: 25px;
  color: #252525;
  font-weight: 900;
  padding: 0.5em 1em;
  font-size: 0.8rem;
  letter-spacing: 0em;
  transition: 0.5s;
}

.ticket-title {
  text-align: center;
  margin: 0 auto;
}

.ticket {
  width: 100%;
}

.ticket h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
}

.ticket h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.tax {
  font-size: 1.2rem;
}



.ticket-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  height: auto;
  background-color: white;
  margin-top: 50px;
  border-radius: 25px 25px 0 0;
  padding-top: 80px;
}

.ticket-container h3 {
  letter-spacing: 0em;
  color: #77724b;
  font-size: 1.3rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #77724b;
  width: 70%;
}

.ticket-container h1 {
  letter-spacing: 0em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  margin: 0 auto;
  margin-bottom: 0px;
}

.ticket-container p {
  font-size: 0.8rem;
  color: #8f8c74;
  letter-spacing: 0em;
  margin: 0;
  margin-top: 5px;
}

.ticket-container a {
  font-size: 0.8rem;
  color: #77724b;
  letter-spacing: 0em;
  font-weight: 900;
}

.ticket-info {
  margin-top: 70px;
}

.ticket-info h3 {
  font-size: 1.2rem;
  letter-spacing: 0em;
  color: #8f8c74;
  margin: 0 auto;
  margin-top: 80px;
  border-bottom: solid 1px #8f8c74;
  width: 13em;
}

.ticket-info p {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: normal;
}

.ticket-sub-button {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  color: white !important;
  background-color: #77724b;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

.ticket-sub-button-end {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  color: #d8d8d8 !important;
  background-color: #9e9c8f;
  text-decoration: none;
  cursor: auto;
  pointer-events: none;
  transition: 0.5s;
}

.ticket-sub-button:hover {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  border: solid 2px #77724b;
  color: #77724b !important;
  background-color: white;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

.ticket-sub-button-end:hover {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  border: solid 0px transparent !important;
  color: white !important;
  background-color: gray;
  text-decoration: none;
  transition: 0.5s;
  pointer-events: none;
  cursor: auto;
}

.guide-link {
  margin-top: 50px;
  padding-bottom: 41px;
}

.class h1 {
  color: #77724b;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
}

.price h1 {
  color: #77724b;
  font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
  font-weight: 900;
  margin-top: 13px;
}



.ticket-button-item {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  width: 100%;
  height: 106.5px;
  line-height: 106.5px;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 10;
  transition: .5s;
}

.ticket-button-item::before {
  content: '';
  /* コンテンツを追加 */
  width: 100%;
  /* 線の幅 */
  height: 100%;
  /* 線の高さ */
  background-color: white;
  /* 線の色 */
  border: solid 2px #ce3f73;
  position: absolute;
  /* position: relative;からの線の絶対位置 */
  top: 0;
  /* 線の位置 */
  left: 0;
  /* 線の位置 */
  z-index: -1;
  transform: scale(0, 1);
  /* 線のx軸の長さを0 */
  transition: .5s;
  /* 要素の変形する時間*/
  transform-origin: left top;
  /* 要素の座標の原点を設定*/
}

/* 追記 */
.ticket-button-item:hover {
  color: #ce3f73;
  /* マウスオーバーしたときのaタグの色 */
}

.ticket-button-item:hover::before {
  transform: scale(1, 1);
}








.ticket-button-n {
  width: 90%;
  background-color: gray;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: none;
  pointer-events: none;
  cursor: default;
}



.ticket-button-item-n {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  width: 100%;
  height: 106.5px;
  line-height: 106.5px;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 10;
  transition: .5s;
}


.goods-box {
  text-align: center;
  border: solid 0px white;
  margin-top: 70px;
}

.goods-image {
  width: 80%;
  height: auto;
  transition: 0.5s;
  margin-top: 5rem;
}

.goods-box h1{
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  margin-bottom: 70px;
}

.goods-image:hover {
  opacity: 50%;
  transition-duration: 0.5s;
}

.banner-image {
  width: 80%;
  height: auto;
  transition: 0.5s;
  margin-bottom: 3rem;
}

.banner-image2 {
  width: 60%;
  height: auto;
  transition: 0.5s;
  margin-bottom: 3rem;
}


.music-content{
  width: 80%;
  background-color: white;
  margin: 0 auto;
  border-radius: 25px;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}





.g-5 h1 {
  margin: 0;
  padding: 0;
}

.title-staff {
  text-align: center;
}

.title-staff h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
  margin-top: 200px;
}

.title-staff h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.flex-b {
  display: flex;
  justify-content: space-around;
  margin: 0 18%;
  margin-bottom: 70px;
  margin-top: 50px;
}

.bold {
  font-size: 1.5rem;
  font-weight: 900;
}

.g-5 {
  margin-top: 150px;
}

.staff-content {
  width: 80%;
  background-color: white;
  margin: 0 auto;
  border-radius: 25px;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.staff-item {
  margin-bottom: 30px;
}

.staff-item h2 {
  line-height: 5rem !important;
}

dl {
  display: flex;
  color: #77724b;
}

dt {
  width: 50%;
  padding-right: 1em;
  text-align: right;
  color: #77724b;
  font-size: 1.2rem;
  letter-spacing: 0em;
}

dd {
  width: 50%;
  text-align: left;
  color: #77724b;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0em;
}

.staff-g2 {
  margin-top: 70px;
}

.song h1 {
  letter-spacing: 0em;
  line-height: 4rem !important;
  text-align: center;
  color: #77724b;
  margin: 0;
  font-size: 1.5rem;
}

.song {
  text-align: center;
}

.song h2 {
  text-align: center;
  color: #77724b;
  line-height: 2rem;
  margin: 0 !important;
  font-size: 1.2rem !important;
  font-weight: 400;
  letter-spacing: 0em;
}

.song p {
  text-align: center;
  color: #77724b;
  margin: 0;
  margin: 30px auto 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0em;
}

.staff-g1 h2 {
  text-align: center;
  color: #77724b;
  line-height: 2rem;
  margin: 0;
  margin: 30px auto 0;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0em;
}

.staff-g1 h1 {
  letter-spacing: 0em;
  line-height: 5rem;
  text-align: center;
  color: #77724b;
  margin: 0;
  font-size: 1.5rem;
}

.staff-g3 h2 {
  text-align: center;
  color: #77724b;
  margin: 0;
  margin-top: 4rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0em;
  margin-bottom: 2rem;
}

.staff-g3 h1 {
  letter-spacing: 0em;
  line-height: 2rem;
  text-align: center;
  color: #77724b;
  margin: 0;
  font-size: 1.2rem;
}

.mac-logo-box {
  text-align: center;
}

.mac-logo {
  width: 20%;
  height: auto;
}

.cooperation-box {
  padding: 0 2rem;
}

.cooperation {
  font-size: 1rem !important;
  line-height: 1.7rem !important;
}

.g-6 h1 {
  margin: 0;
  padding: 0;
}

.title-guide {
  text-align: center;
}

.title-guide h1 {
  margin: 0;
  letter-spacing: -0.1em;
  color: #77724b;
  font-family: "Takibi";
  font-size: 2.5rem;
}

.title-guide h2 {
  display: inline-block;
  margin: 0;
  font-family: 'Takibi';
  letter-spacing: -0.12em;
  color: #77724b;
  width: 90%;
  border-bottom: solid 1px #77724b;
}

.g-6 {
  margin-top: 300px;
}

.guide-content {
  height: 500px;
  width: 80%;
  background-color: white;
  padding: 3rem;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 25px 0px 0px 25px;
  border: 1px solid #77724b;
}

.guide-content::-webkit-scrollbar {
  overflow-y: scroll;
  width: 5px;
  height: 10px;
}

.guide-content::-webkit-scrollbar-track {
  background: #beb99e;
  height: 80%;
  border-radius: 10px;
}

.guide-content::-webkit-scrollbar-thumb {
  background: #77724b;
  border-radius: 10px;
}

.guide-content p {
  color: #77724b;
  font-size: 1rem;
  line-height: 2rem;
}

.guide-content ul {
  padding: 0;
}

.guide-content ul li {
  margin-left: 2em;
  list-style: disc;
  color: #77724b;
  font-size: 1rem;
  line-height: 2rem;
}

.pdf-link {
  color: #77724b;
}

.g-7 {
  padding-top: 90px;
  padding-bottom: 40px;
  text-align: center;
}

.g-8 {
  padding-top: 50px;
  text-align: center;
}

.c {
  color: #ffffff;
  font-size: 0.8rem;
}

.hm {
  display: none;
}

@media screen and (max-width:1850px) {
  .intro-win {
    display: none;
  }

  .intro-mac {
    display: block;
  }
}





@media screen and (max-width:1342px) {

  .fixed-hm-container {
    position: fixed;
    top: 10px;
    /* Adjust as needed */
    right: 10px;
    /* Adjust as needed */
  }

  .fixed-hm-container .hm {
    display: none;
  }

  .fixed-hm-container .hm:checked~#overlay-2 {
    visibility: visible;
  }


  .pc-nav {
    display: none;
  }

  .pc-nav2 {
    display: none;
  }

  .hm {
    display: block;
    overflow: hidden;
  }

  .hm-item {
    font-size: 0.8rem;
    font-weight: 900;
  }

  .hm-container-2 {
    overflow: hidden;
    position: fixed;
    top: -70px;
    /* メニューを初めは画面外に隠す */
    left: 0;
    width: 100%;
    background-color: #ce3f73;
    z-index: 20000;
    transition: top 0.3s ease-in-out;
    /* メニューの表示/非表示を滑らかにする */
  }

  #overlay-button.visible {
    position: fixed;
    top: 1em;
    /* メニューを表示 */
    right: 1em;
    transition: 0.5s;
    z-index: 20000;
    background-color: #000;
    opacity: 80%;
  }

  .hm-ul {
    margin: 0;
  }


  @keyframes bugfix {
    from {
      padding: 0;
    }

    to {
      padding: 0;
    }
  }

  @-webkit-keyframes bugfix {
    from {
      padding: 0;
    }

    to {
      padding: 0;
    }
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  @keyframes fadeDownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #overlay-button {
    position: absolute;
    right: 1em;
    top: 1em;
    padding: 26px 11px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
  }

  #overlay-button span {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }

  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }

  #overlay-button span:after {
    top: 10px;
  }

  #overlay-button span:before,
  #overlay-button span:after {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }

  #overlay-button:hover span,
  #overlay-button:hover span:before,
  #overlay-button:hover span:after {
    background: #fff;
  }

  input[type=checkbox] {
    display: none;

  }

  input[type=checkbox]:checked~#overlay {
    visibility: visible;
  }

  input[type=checkbox]:checked~#overlay-button:hover span,
  input[type=checkbox]:checked~#overlay-button span {
    background: transparent;


  }

  input[type=checkbox]:checked~#overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);

  }

  input[type=checkbox]:checked~#overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);


  }

  #overlay {
    height: 100vh;
    width: 100vw;
    background: #ce3f73;
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }

  #overlay.active {
    display: none;
  }

  #overlay ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type: none;
  }

  #overlay ul li {
    padding: 1em;
  }

  #overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
  }

  #overlay ul li a:hover {
    color: #000 !important;
  }

  .intro-content p {
    margin-top: 130px;
    padding: 20px 0px;
    color: #77724b;
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    line-height: 2rem;
  }

  .story-content p {
    margin-top: 130px;
    padding: 20px 0px;
    color: #77724b;
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    line-height: 2rem;
  }

  .map-content-text {
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.5rem;
  }

  .map-content p {
    margin: 0;
    vertical-align: middle;
    color: white;
    font-size: 0.6rem;
    letter-spacing: -0.02rem;
    line-height: 1.5rem;
  }
}




@media screen and (max-width:1135px) {

  .g-1 {
    display: block;
  }

  .map-content-2 {
    margin-left: 30px;
  }

  .map-container {
    width: 95%;
    height: auto;
    padding-bottom: 50px;
  }

  .map-2 {
    width: 95%;
    padding: 2rem;
  }

  .map-text-content {
    text-align: left;
  }

  .map-content-text {
    font-size: 1rem;
    font-weight: 900;
  }

  .map-content {
    text-align: left;
  }


  .map-content p {
    display: inline-block;
    font-size: 1rem;
    font-weight: 900;
    margin: 0 auto;
    margin-bottom: 1rem;
    text-align: left;
  }

  .map-content .mao-content-2 p {
    font-size: 0.6rem;
    font-weight: 0;
  }

  .web-button {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  .web {
    text-decoration: none;
    background-color: #252525;
    border: solid 1px white;
    border-radius: 25px;
    color: white;
    font-weight: 900;
    padding: 0.5em 1em;
    font-size: 1rem;
    letter-spacing: 0em;
  }

  .web:hover {
    text-decoration: none;
    background-color: white;
    border: solid 1px white;
    border-radius: 25px;
    color: #252525;
    font-weight: 900;
    padding: 0.5em 1em;
    font-size: 1rem;
    letter-spacing: 0em;
  }

  .ticket .title {
    margin-top: 300px;
  }

  .class h1 {
    color: #77724b;
    font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
    font-size: 1.5rem;
  }

  .price h1 {
    color: #77724b;
    font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0em;
  }

  .ticket {
    margin-top: 300px;
  }


  .ticket-info {
    margin-top: 100px;
  }

  .ticket-info h3 {
    font-size: 1.1rem;
    width: 70%;
  }

  .ticket-info p {
    font-size: 0.9rem;
  }

  .guide-link p {
    font-size: 0.6rem;
  }

  .tax {
    font-size: 1.0rem;
    font-weight: 400 !important;
  }

  .ticket-flex {
    padding-top: 30px;
  }

  .ticket-container {
    height: auto;
    border-radius: 25px;
    width: 90%;
  }

  .ticket-button {
    margin-top: 30px;
    border-radius: 45px;
  }

  .ticket-button-item:hover {
    color: white;
    /* マウスオーバーしたときのaタグの色 */
  }

  .ticket-button-item {
    height: 70px;
    line-height: 70px;
    border-radius: 45px;
  }

  .ticket-sub-button:hover {
    color: white !important;
    background-color: #77724b;
  }

  .staff p {
    letter-spacing: 0em;
    text-align: center;
    color: #77724b;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 70px;
    padding-top: 70px;
  }

  .staff h2 {
    letter-spacing: 0em;
    text-align: center;
    color: #77724b;
    font-size: 1.3rem;
    font-weight: bold;
  }

  .price {
    margin: 0 auto;
    border-bottom: solid 1px #77724b;
    width: 60%;
    margin-top: 100px;
  }

  .banner-image2 {
    width: 80%;
    height: auto;
    transition: 0.5s;
    margin-bottom: 3rem;
  }

  .stream-price {
    font-size: 2rem !important;
    margin-top: 13px !important;
    margin: 0;
  }

  .stream-p {
    font-size: 2rem !important;
    margin-top: 13px !important;
    margin: 0;
  }

  .stream-ticket {
    padding: 0 !important;
    font-weight: 400 !important;
    margin-top: 13px !important;
  }

  .stream-button {
    text-align: center;
    padding-bottom: 80px;
    padding-top: 1rem;
  }

  .stream-sub-button {
    letter-spacing: 0 !important;
    font-weight: bold;
    text-align: center;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: white !important;
    background-color: #77724b;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
  }

  .ticket-sub-button-end {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: #d8d8d8 !important;
    background-color: #9e9c8f !important;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
    pointer-events: none;
  }

  .stream-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    margin: 0 auto;
  }

}



@media screen and (max-width:768px) {

  #header,
  #header:before {
    height: 90vh;
  }


  .fixed-hm-container {
    position: fixed;
    top: 10px;
    /* Adjust as needed */
    right: 10px;
    /* Adjust as needed */
  }

  .fixed-hm-container .hm {
    display: none;
  }

  .fixed-hm-container .hm:checked~#overlay-2 {
    visibility: visible;
  }


  #header {
    display: none;
  }

  #header::before {
    display: none;
  }

  #header-sp {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
  }

  #header-sp:before {
    display: block;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    /*背景画像設定*/
    background: url("images/neko2_KV_tate.png") no-repeat center;
    background-size: cover;
  }

  .pc-nav {
    display: none;
  }

  .pc-nav2 {
    display: none;
  }

  .hm {
    display: block;
    overflow: hidden;
  }

  .hm-item {
    font-size: 0.8rem;
    font-weight: 900;
  }

  .hm-container-2 {
    overflow: hidden;
    position: fixed;
    top: -70px;
    /* メニューを初めは画面外に隠す */
    left: 0;
    width: 100%;
    background-color: #ce3f73;
    z-index: 20000;
    transition: top 0.3s ease-in-out;
    /* メニューの表示/非表示を滑らかにする */
  }

  #overlay-button.visible {
    position: fixed;
    top: 1em;
    /* メニューを表示 */
    right: 1em;
    transition: 0.5s;
    z-index: 20000;
    background-color: #000;
    opacity: 80%;
  }

  .hm-ul {
    margin: 0;
  }


  @keyframes bugfix {
    from {
      padding: 0;
    }

    to {
      padding: 0;
    }
  }

  @-webkit-keyframes bugfix {
    from {
      padding: 0;
    }

    to {
      padding: 0;
    }
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  @keyframes fadeDownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #overlay-button {
    position: absolute;
    right: 1em;
    top: 1em;
    padding: 26px 11px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
  }

  #overlay-button span {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }

  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }

  #overlay-button span:after {
    top: 10px;
  }

  #overlay-button span:before,
  #overlay-button span:after {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }

  #overlay-button:hover span,
  #overlay-button:hover span:before,
  #overlay-button:hover span:after {
    background: #fff;
  }

  input[type=checkbox] {
    display: none;

  }

  input[type=checkbox]:checked~#overlay {
    visibility: visible;
  }

  input[type=checkbox]:checked~#overlay-button:hover span,
  input[type=checkbox]:checked~#overlay-button span {
    background: transparent;


  }

  input[type=checkbox]:checked~#overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);

  }

  input[type=checkbox]:checked~#overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);


  }

  #overlay {
    height: 100vh;
    width: 100vw;
    background: #359fa3;
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }

  #overlay.active {
    display: none;
  }

  #overlay ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type: none;
  }

  #overlay ul li {
    padding: 1em;
  }

  #overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
  }

  #overlay ul li a:hover {
    color: #000 !important;
  }

  /* ページTOPに戻る */
  .pagetop {
    display: none;
    position: fixed;
    right: 1em;
    bottom: 1em;
    z-index: 30000;
    letter-spacing: 0px !important;
  }

  .pagetop a {
    display: block;
    font-size: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    background: #252525;
    border-radius: 50%;
    line-height: 50px;
    transition: 0.5s;
  }

  .pagetop a:hover {
    display: block;
    font-size: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    background: #252525;
    transition: 0.5s;
    border-radius: 50%;
    line-height: 50px;
  }

  .pagetop a i {
    font-size: 2rem;
    color: #fff;
    line-height: 80px;
  }

  .background {
    padding-top: 300px;
  }

  .g-1 {
    display: block;
    margin: 0.5rem;
    padding-bottom: 300px;
  }

  .intro {
    align-items: center;
  }

  .title {
    margin: 0 auto;
    width: 90%;
  }

  .title h1 {
    display: inline-block;
    margin: 0;
    letter-spacing: -0.1em;
    color: #77724b;
    font-family: "Takibi";
    font-size: 2.0rem;
  }

  .title h2 {
    display: inline-block;
    width: 100%;
    margin: 0;
    font-family: 'Takibi';
    font-size: 1rem;
    letter-spacing: -0.12em;
    color: #77724b;
    border-bottom: solid 1px #77724b;
    padding-bottom: 10px;
  }

  .intro-content-pc {
    position: absolute;
    left: 0;
    top: 440px;
  }

  .intro-content-pc .intro-pc {
    color: #fffdf2;
    padding-left: 4rem;
    padding-right: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 0em;
    font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
    background-color: #77724b;
  }

  .intro-content {
    padding-top: 6rem;
  }

  .intro-content p {
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    margin: 0 auto;
    margin-bottom: 300px;
    border: none !important;
    padding: 0px 1.5em 0 1.5em !important;
    line-height: 1.5rem;
  }

  /* .story-content {
    padding-top: 6rem;
  }

  .story-content p {
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    margin: 0 auto;
    margin-bottom: 300px;
    border: none !important;
    padding: 0px 1.5em 0 1.5em !important;
    line-height: 1.5rem;
  } */

  .story-pc {
    display: none;
  }

  .story-sp {
    display: block;
    margin-top: 70px;
  }

  .story-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
    padding-bottom: 50px;
    margin-top: 50px;
    margin-bottom: 200px;
  }

  .story {
    width: 100%;
    /* 幅を調整 */
    max-width: 90%;
  }

  .text-box-story .story-title {
    display: inline-block;
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Takibi';
    letter-spacing: 0.2em;
    color: #77724b;
    width: 90%;
    padding-top: 20px;
    padding-bottom: 3rem;
  }


  .story h1 {
    margin: 0;
    letter-spacing: -0.1em;
    color: #77724b;
    font-family: "Takibi";
    font-size: 1.5rem;
    padding: 0.2rem 0.4rem;
  }

  .story h2 {
    display: inline-block;
    width: 100%;
    margin: 0;
    font-family: 'Takibi';
    font-size: 1rem;
    letter-spacing: -0.12em;
    color: #77724b;
    border-bottom: solid 1px #77724b;
    padding-bottom: 10px;
  }

  .story h3 {
    display: inline-block;
    margin: 0;
    font-family: 'Takibi';
    letter-spacing: 0.1em;
    color: #77724b;
    width: 90%;
    font-size: 1.5rem;
    padding-top: 20px;
  }

  .story-content {
    display: flex;
    justify-content: center;
    width: 100%;
    /* ここで幅を広げる */
    max-width: 1200px;
    /* 必要に応じて最大幅を設定 */
    margin: 0 auto;
    /* 中央揃え */
  }

  .story-content {
    display: flex;
    justify-content: center;
    width: 95%;
    /* 親要素の幅を95%に広げる */
    max-width: 1400px;
    /* 必要に応じて最大幅を調整 */
    margin: 0 auto;
    /* 中央揃え */
  }

  .story-content p {
    margin-top: 70px !important;
    padding: 0px;
    color: #77724b;
    font-size: 0.6rem;
    letter-spacing: 0.05rem;
    line-height: 2rem;
    width: 100%;
    margin: 0;
    margin-bottom: 200px;
  }

  .text-box-story {
    display: inline-block;
    background-color: #fffffb;
    width: 95%;
    /* テキストボックスの幅を95%に広げる */
    padding: 1rem;
    margin: 0 auto;
    /* 中央揃え */
  }

  .text-box {
    background-color: #fffffb !important;
  }

  .x-content {
    width: 90%;
    margin: 0 auto;
  }

  .image-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* 横方向（主軸）を中央揃えにする */
    align-items: center;
    /* 縦方向（交差軸）を中央揃えにする */
    gap: 1rem;
    padding: 0;
  }

  .g-2 {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .cast-sp {
    display: block;
  }

  .cast-pc {
    display: none;
  }

  .castname-bold {
    font-weight: 900;
  }

  .accordion-title p {
    font-size: 0.55rem
  }

  /* リセットCSS */
  * {
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }



  .accordion-container {
    margin: 20px auto 0;
    width: 90%;
  }

  .accordion-list {
    margin: 20px auto;
  }

  .accordion-list:not(:first-child) {
    margin-top: 10px;
  }

  .accordion-title {
    background: #fffdef;
    cursor: pointer;
    font-size: 16px;
    padding: 20px 40px;
    position: relative;
  }

  .accordion-container dl {
    display: block;
  }

  .accordion-container dt {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    color: #252525;
    padding: 0.8rem
  }

  .accordion-container dd {
    width: 100%;
  }

  .accordion-title:after {
    position: absolute;
    display: block;
    content: '';
    top: 35%;
    right: 22px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    transition: all .3s ease-in-out;
  }

  .accordion-title.open:after {
    transform: rotate(-45deg);
    top: 45%;
  }

  .accordion-text {
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    display: none;
    padding: 2.5rem;
  }


  .cast-name {
    width: 80%;
  }


  .cast-name h1 {
    font-size: 1.5rem;
  }


  .title-cast h1 {
    font-size: 2rem;
  }

  .title-cast h2 {
    font-size: 1rem;
    padding-bottom: 10px;
  }

  .title-cast h3 {
    font-size: 0.65rem;
    color: #beb99e;
    letter-spacing: 0.1em;
  }

  .cast-image {
    width: 100px;
    height: 134px;
  }

  .cast-box h2 {
    font-size: 0.9rem;
  }

  .cast-box p {
    font-size: 0.5rem;
  }

  .background-2 {
    padding-top: 300px;
  }

  .g-4 {
    margin-top: 300px;
  }

  .title-sche h1 {
    font-size: 2rem;
  }

  .title-sche h2 {
    font-size: 1rem;
    padding-bottom: 10px;
  }

  .sche-img-pc {
    display: none;
  }

  .sche-img-sp {
    display: block;
    text-align: center;
    overflow-x: scroll;
    padding-left: 30px;
    margin-top: 70px;
  }

  .sche-image {
    width: auto;
    height: 300px;
  }



  .staff p {
    letter-spacing: 0em;
    text-align: center;
    color: #77724b;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 70px;
    padding-top: 70px;
  }

  .staff h2 {
    letter-spacing: 0em;
    text-align: center;
    color: #77724b;
    font-size: 1.1rem;
    font-weight: bold;
  }

  .price {
    margin: 0 auto;
    border-bottom: solid 1px #77724b;
    width: 60%;
    margin-top: 100px;
  }

  .stream-price {
    font-size: 2rem !important;
    margin-top: 13px !important;
    margin: 0;
  }

  .stream-p {
    font-size: 1.5rem !important;
    margin-top: 13px !important;
    margin: 0;
  }

  .stream-ticket {
    padding: 0 !important;
    font-weight: 400 !important;
    margin-top: 13px !important;
    margin-bottom: 13px;
  }

  .stream-button {
    text-align: center;
    padding-bottom: 80px;
    padding-top: 1rem;
  }

  .stream-sub-button {
    letter-spacing: 0 !important;
    font-weight: bold;
    text-align: center;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: white !important;
    background-color: #77724b;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
    margin-top: 2rem !important;
  }

  .stream-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    margin: 0 auto;
  }

  .stream-sub-button:hover {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: white !important;
    background-color: #77724b;
    text-decoration: none;
    border: 0px solid transparent;
    cursor: pointer;
    transition: 0.5s;
  }


  .intro h1 {
    font-size: 2rem;
  }

  .map-3 h2 {
    font-size: 1rem;
  }

  .map-content-2 {
    margin-left: 30px;
  }

  .map-container {
    width: 95%;
    height: auto;
    padding-bottom: 50px;
  }

  .map-2 {
    width: 95%;
    padding: 0.7rem;
    padding-bottom: 2rem;
    text-align: left;
  }


  .map-content-text {
    font-size: 0.8rem;
    font-weight: 900;
  }

  .map-content {
    text-align: left;
  }


  .map-content p {
    font-size: 0.6rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }

  .map-content .mao-content-2 p {
    font-size: 0.6rem;
    font-weight: 0;
  }

  .web-button {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  .web {
    text-decoration: none;
    background-color: #252525;
    border: solid 1px white;
    border-radius: 25px;
    color: white;
    font-weight: 900;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    letter-spacing: 0em;
  }

  .web:hover {
    text-decoration: none;
    background-color: #252525;
    border: solid 1px white;
    border-radius: 25px;
    color: white;
    font-weight: 900;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    letter-spacing: 0em;
  }

  .ticket .title {
    margin-top: 300px;
  }

  .class h1 {
    color: #77724b;
    font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
    font-size: 1.5rem;
  }

  .price h1 {
    color: #77724b;
    font-family: "小塚ゴシック Pr6N", "ヒラギノ角ゴ ProN";
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0em;
  }

  .ticket {
    margin-top: 300px;
  }

  .ticket h1 {
    font-size: 2rem;
  }

  .ticket-title h2 {
    font-size: 1rem;
  }

  .ticket-info {
    margin-top: 100px;
  }

  .ticket-info h3 {
    font-size: 1.1rem;
    width: 70%;
  }

  .ticket-info p {
    font-size: 0.8rem;
  }

  .guide-link p {
    font-size: 0.6rem;
  }

  .tax {
    font-size: 1.0rem;
    font-weight: 400 !important;
  }

  .ticket-flex {
    padding-top: 30px;
  }

  .ticket-container {
    height: auto;
    border-radius: 25px;
    width: 90%;
  }

  .ticket-button {
    margin-top: 30px;
    border-radius: 45px;
  }

  .ticket-button-item:hover {
    color: white;
    /* マウスオーバーしたときのaタグの色 */
  }

  .ticket-button-item {
    height: 70px;
    line-height: 70px;
    border-radius: 45px;
  }

  .ticket-sub-button {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: white !important;
    background-color: #77724b;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
  }

  .ticket-sub-button-end {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: #d8d8d8 !important;
    background-color: #9e9c8f !important;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
    pointer-events: none;
  }

  .ticket-sub-button-end {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: #d8d8d8 !important;
    background-color: #9e9c8f;
    text-decoration: none;
    cursor: auto;
    pointer-events: none;
    transition: 0.5s;
  }

  .ticket-sub-button:hover {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: white !important;
    background-color: #77724b;
    text-decoration: none;
    border: 0px solid transparent;
    cursor: pointer;
    transition: 0.5s;
  }

  .ticket-sub-button-end:hover {
    padding: 0.8rem 2rem !important;
    border-radius: 25px;
    color: white !important;
    background-color: gray;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
    pointer-events: none;
  }

  .title-staff h1 {
    font-size: 2rem;
  }

  .title-staff h2 {
    font-size: 1rem;
    padding-bottom: 10px;
  }

  .staff-content {
    width: 90%;
  }

  .staff-content {
    width: 90%;
    background-color: white;
    margin: 0 auto;
    border-radius: 25px;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .goods-image:hover {
    opacity: 100%;
  }

  .banner-image {
    width: 80%;
    height: auto;
    transition: 0.5s;
    margin-bottom: 1rem;
  }

  dl {
    display: flex;
    color: #77724b;
    margin-top: 10px;
  }

  dt {
    width: 50%;
    padding-right: 1em;
    text-align: right;
    color: #77724b;
    font-size: 0.65rem;
    letter-spacing: 0em;
  }

  dd {
    width: 50%;
    text-align: left;
    color: #77724b;
    font-size: 0.65rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: 0em;
  }

  .staff-g2 {
    margin-top: 3rem;
  }

  .staff-g1 h2 {
    text-align: center;
    color: #77724b;
    margin: 0;
    margin-top: 1rem;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0em;
  }

  .staff-g1 h1 {
    letter-spacing: 0em;
    line-height: 1.8rem;
    text-align: center;
    color: #77724b;
    margin: 0;
    font-size: 1rem;
  }

  .staff-g3 h2 {
    text-align: center;
    color: #77724b;
    margin: 0;
    margin-top: 4rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0em;
    margin-bottom: 1rem;
  }

  .staff-g3 h1 {
    letter-spacing: 0em;
    line-height: 1.1rem;
    text-align: center;
    color: #77724b;
    margin: 0;
    font-size: 0.53rem !important;
  }

  .song {
    text-align: center;
  }

  .cv-name{
    width: 50%;
    text-align: left;
    color: #77724b;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: 0em;
  }

  .song h2 {
    text-align: center;
    color: #77724b;
    line-height: 1rem;
    margin: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 400;
    letter-spacing: 0em;
  }

  .song p {
    text-align: center;
    color: #77724b;
    margin: 0;
    margin: 30px auto 0;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0em;
  }

  .staff-item {
    margin-bottom: 1rem !important;
  }

  .staff-item h2 {
    line-height: 1.8rem !important;
  }

  .mac-logo {
    width: 30%;
    height: auto;
  }

  .bold {
    font-size: 1rem;
    font-weight: 900;
  }

  .cooperation-box {
    padding: 0 2rem;
  }

  .cooperation {
    font-size: 0.6rem !important;
    line-height: 1rem !important;
  }

  .title-guide h1 {
    font-size: 2rem;
  }

  .title-guide h2 {
    font-size: 1rem;
    padding-bottom: 10px;
  }

  .guide-content {
    height: 200px;
    width: 90%;
  }

  .ticket-button-item::before {
    display: none;
  }

  .guide-content {
    height: 350px;
    width: 95%;
    background-color: white;
    padding: 1rem;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-radius: 0px;
    border: 1px solid #77724b;
    letter-spacing: 0em;
  }

  .guide-content p {
    color: #77724b;
    font-size: 0.8rem;
    line-height: 1.6rem
  }

  .guide-content ul {
    padding: 0;
  }

  .guide-content ul li {
    margin-left: 2em;
    list-style: disc;
    color: #77724b;
    font-size: 0.8rem;
    line-height: 1.6rem;
  }

  .g-7 {
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: center;
  }

  .c {
    color: #ffffff;
    font-size: 0.6rem;
    letter-spacing: 0em;
  }

  .pdf-link {
    color: #77724b;
    font-size: 0.8rem;
  }

}

@media screen and (max-width:481px) {
  #container {
    position: relative;
    z-index: 1;
    background: #eee;
  }

  .all {
    z-index: 1000;
    overflow: hidden;
    background-attachment: fixed;
  }


  .background {
    background-image: url('images/neko2_sp_background.png') !important;
    min-height: 100vh !important;
    background-size: contain !important;
    background-position: center !important;
  }

  .background-2 {
    padding-top: 300px;
    background-image: url('images/neko_sp_bg.png') !important;
    min-height: 100vh !important;
    background-attachment: fixed !important;
    background-size: contain !important;
    background-position: center !important;
  }
}


.footercontainer {
  padding: 20px;
  background-color: #333333;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
}

.footerlogo {
  padding-top: 0px;
}

.footerlogo img {
  width: 20%;
  height: auto;
  max-width: 100%;
  margin-top: 50px;
}

/*スクロール制限*/
/* body {
  overflow: hidden;
} */