.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  background: url("../img/ja/mist_background.webp") repeat;
  animation: mist-move 120s linear infinite;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600; /* ← デフォルトを太めに */
}

@keyframes mist-move {
  from { background-position: 0 0; }
  to   { background-position: 1920px 0; }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 
    0 0 10px #C62828, 
    0 0 20px #ff0000, 
    0 0 40px #8B0000, 
    2px 2px 8px #000;
  animation: flicker 2s infinite, shake 6s infinite; /* ← 揺れを6秒周期に変更 */
  letter-spacing: 4px;
  margin: 0 auto 80px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
}

/* 点滅はそのまま */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 
      0 0 10px #C62828, 
      0 0 20px #ff0000, 
      0 0 40px #8B0000, 
      2px 2px 8px #000;
  }
  19%, 23%, 55% {
    opacity: 0.6;
    text-shadow: none;
  }
}

/* 超スローでゆらゆら揺れる */
@keyframes shake {
  0%   { transform: translate(1px, 1px) rotate(0deg); }
  25%  { transform: translate(-3px, -2px) rotate(-1deg); }
  50%  { transform: translate(3px, 2px) rotate(1deg); }
  75%  { transform: translate(-2px, 3px) rotate(0deg); }
  100% { transform: translate(2px, -3px) rotate(-1deg); }
}



@media screen and (max-width: 800px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
    margin: 0 auto 20px;
    text-shadow: 2px 2px 2px #C62828;
  }
}

.hitodama {
  position: absolute;
  opacity: 0;
  transition: opacity 2s ease;
  pointer-events: none;
  animation: float 6s ease-in-out infinite; /* ← ゆらゆら動く */
}

#hitodama-container {
  position: fixed;   /* 画面全体に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック操作の邪魔しない */
  z-index: 999; /* 一番前に出したい場合 */
}

@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-10px) rotate(-2deg); }
  50%  { transform: translateY(0) rotate(2deg); }
  75%  { transform: translateY(10px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}



/* ヘッダーの土台：上下に余白を確保 */
.header {
  padding: 0px 0;              /* 上下スペースはヘッダー側で確保 */
}

/* 右寄せのためにflex化 */
.header_wrap {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* JP/EN リンク */

.lang-switch {
  position: fixed;
  top: 20px;      /* 画面上から20px */
  right: 20px;    /* 画面右から20px */
  background: #00eaff; /* 背景を付けて見やすく */
  color: #000;          /* 文字は黒で視認性UP */
  font-size: 18px;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
  z-index: 2000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background: #0088ff; /* ホバーで濃く光る */
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 234, 255, 1);
  transform: scale(1.05);
}



@media screen and (max-width: 600px) {
  .mv_pc {
    display: none;
  }
}

.mv_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .mv_sp {
    display: block;
  }
}

/*--------------- cta ---------------*/
.cta-fixed {
  background-color: transparent;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 0 0;
}
@media screen and (max-width: 600px) {
  .cta-fixed .cta_btn {
    width: 100%;
    max-width: 100%;
  }
}

.cta {
  padding: 40px 0;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 20px 0;
  }
}

.cta_btn {
  width: 600px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s;
}
@media screen and (max-width: 800px) {
  .cta_btn {
    width: 420px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn {
    max-width: 300px;
    width: 90%;
  }
}


/*--------------- intro ---------------*/
.intro_wrap {
  max-width: 1480px;
  width: 94%;
  margin: 0 auto;
  background-size: 100% 100%;
  padding: 120px 20px;
}
@media screen and (max-width: 600px) {
  .intro_wrap {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 375px) {
  .intro_wrap {
    padding: 20px 12px;
  }
}

.intro_txt {
  color: #fff;
}

.intro_txt p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  text-align: center;
  line-height: 1.6;
  font-size: 32px;
}
@media screen and (max-width: 800px) {
  .intro_txt p {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .intro_txt p {
    font-size: 12px;
    margin: 0 auto 20px;
  }
}

.intro_audio {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .intro_audio audio {
    width: 240px;
    height: 40px;
  }
}

.intro_audio_wrap {
  display: inline-flex;
  align-items: center;
  background-color: #C62828;
  border-radius: 100px;
  padding: 10px;
  color: white;
  font-size: 32px;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .intro_audio_wrap {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .intro_audio_wrap {
    font-size: 12px;
    padding: 4px;
  }
}

.intro_audio_wrap span {
  display: block;
  padding: 0 48px;
}
@media screen and (max-width: 800px) {
  .intro_audio_wrap span {
    padding: 0 32px;
  }
}
@media screen and (max-width: 600px) {
  .intro_audio_wrap span {
    padding: 0 12px;
  }
}

/*--------------- event ---------------*/
.event {
  padding: 80px 20px;
}

.event_item {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .event_item {
    margin-bottom: 20px;
  }
}
.event_item:last-child {
  margin-bottom: 0;
}

.event_item h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  background-color: #FFD700; /* 金色背景に黒文字 */
  padding: 4px 12px;
  border-radius: 4px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.6;
}

@media screen and (max-width: 800px) {
  .event_item h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .event_item h2 {
    font-size: 14px;
    text-shadow: 1px 1px 2px #fff;
  }
}

.event_item p {
  font-size: 40px;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .event_item p {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .event_item p {
    font-size: 18px;
  }
}

.event span {
  font-size: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .event span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .event span {
    font-size: 10px;
  }
}

/*--------------- play ---------------*/
.play_wrap {
  max-width: 1480px;
  width: 94%;
  margin: 0 auto;
  background-size: 100% 100%;
  padding: 120px 20px;
}
@media screen and (max-width: 600px) {
  .play_wrap {
    width: 100%;
    padding: 20px;
    background-size: contain;
    background-repeat: repeat-y;
  }
}
@media screen and (max-width: 375px) {
  .play_wrap {
    padding: 20px 12px;
  }
}

.tour-btn-img {
  display: inline-block;   /* ← テキストの流れに乗せる */
  width: auto;             /* ← 幅は自動 */
  height: 2.8em;           /* ← テキストの高さに合わせる */
  vertical-align: middle;  /* ← 文字と縦位置をそろえる */
}

.play_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.play_item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 400px;
}
@media screen and (max-width: 1400px) {
  .play_item {
    padding: 12px;
    width: 350px;
  }
}
@media screen and (max-width: 800px) {
  .play_item {
    max-width: 335px;
    width: 94%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .play_item {
    padding: 12px 12px 40px;
  }
}

.play_item:not(:first-child) {
  position: relative;
}
.play_item:not(:first-child)::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 68px;
  background-color: #C62828;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media screen and (max-width: 800px) {
  .play_item:not(:first-child)::after {
    display: none;
  }
}

.play_item_num {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: sans-serif;
}

.play_item_img {
  width: 270px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .play_item_img {
    max-width: 270px;
    width: 94%;
    margin: 0 auto 20px;
  }
}

.play_item_txt {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .play_item_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .play_item_txt {
    font-size: 12px;
  }
}
.play_item_txt span {
  color: #fff;
  background-color: #2F64EB;
  padding: 0 4px;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  margin-left: 2px;
}
@media screen and (max-width: 600px) {
  .play_item_txt span {
    font-size: 12px;
  }
}

/*--------------- bonus ---------------*/
.bonus {
  max-width: 1480px;
  width: 94%;
  margin: 0 auto;
  background-size: cover;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .bonus {
    width: 100%;
    padding: 20px 0;
    background-size: 100% 100%;
  }
}

.bonus_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3等分で横並び */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  width: 94%;
}

@media screen and (max-width: 800px) {
  .bonus_content {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .bonus_content {
    margin: 0 auto 20px;
  }
}

.bonus_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus_item h2 {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .bonus_item h2 {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

.bonus_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .bonus_txt {
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
  }
}

.bonus_item img {
  width: 100%;
  max-width: 400px; /* 画像の最大幅を制御 */
  height: auto;
}

.cta_btn img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.cta_btn:hover img {
  animation: cursed-radio-soft 2.5s infinite;
  transform: scale(1.05);
}

@keyframes cursed-radio-soft {
  0%, 100% {
    filter: brightness(1) contrast(1);
    opacity: 1;
  }
  40% {
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 6px #C62828);
  }

}

/*--------------- notes ---------------*/
.notes {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .notes {
    padding: 20px 0;
  }
}

.notes_list {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .notes_list {
    grid-template-columns: repeat(2, 300px);
  }
}
@media screen and (max-width: 800px) {
  .notes_list {
    grid-template-columns: 100%;
    width: 94%;
    max-width: 300px;
  }
}

.notes_item {
  background-color: #D4EFFF;
  border-radius: 8px;
  padding: 32px 0;
}

.notes_item_img {
  width: 220px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 600px) {
  .notes_item_img {
    max-width: 220px;
    width: 94%;
    margin: 0 auto 20px;
  }
}

.notes_item_txt {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 30px;
}
@media screen and (max-width: 600px) {
  .notes_item_txt {
    font-size: 12px;
  }
}

/*--------------- locatone ---------------*/
.locatone {
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .locatone {
    padding: 20px 0;
  }
}

.locatone_wrap {
  max-width: 1480px;
  width: 94%;
  margin: 0 auto;
  background-color: #fff;
  padding: 48px 80px;
}
@media screen and (max-width: 800px) {
  .locatone_wrap {
    padding: 20px;
  }
}

.locatone_ttl {
  width: 210px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .locatone_ttl {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .locatone_ttl {
    width: 120px;
  }
}

.locatone_txt p {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .locatone_txt p {
    font-size: 12px;
  }
}
.locatone_txt p:last-child {
  margin-top: 20px;
}

.locatone_txt a {
  display: block;
  font-size: 20px;
  line-height: 1.6;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .locatone_txt a {
    font-size: 12px;
  }
}
.locatone_txt a:hover {
  opacity: 0.6;
}

/*--------------- qa ---------------*/
.qa_wrap {
  max-width: 1480px;
  width: 94%;
  margin: 0 auto;

  padding: 80px 60px;
}
@media screen and (max-width: 600px) {
  .qa_wrap {
    padding: 20px 0;
    width: 100%;
  }
}

.qa_content {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .qa_content {
    width: 94%;
    max-width: 335px;
  }
}

.qa_list {
  background-color: #fff;
}

.qa_list:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .qa_list:not(:last-child) {
    margin-bottom: 16px;
  }
}

.qa_title {
  cursor: pointer;
  font-size: 20px;
  padding: 20px 48px 20px 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  .qa_title {
    padding: 12px 32px 12px 12px;
    font-size: 12px;
  }
}

.qa_title_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .qa_title_plus {
    right: 12px;
    width: 12px;
    height: 12px;
  }
}
.qa_title_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .qa_title_plus::after {
    height: 1px;
  }
}
.qa_title_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #333;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .qa_title_plus::before {
    width: 1px;
  }
}

.qa_title.open .qa_title_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.qa_title_inner {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0;
}
@media screen and (max-width: 600px) {
  .qa_title_inner {
    grid-template-columns: 16px 1fr;
  }
}

.qa_answer {
  font-size: 20px;
  display: none;
  padding: 20px 24px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .qa_answer {
    padding: 12px;
    font-size: 12px;
  }
}

.qa_answer_inner {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0;
}
@media screen and (max-width: 600px) {
  .qa_answer_inner {
    grid-template-columns: 16px 1fr;
  }
}

/*--------------- footer ---------------*/
.footer {
  padding: 48px 48px 160px;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 20px 20px 110px;
  }
}
.footer p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .footer p {
    font-size: 12px;
  }
}

.underline {
  text-decoration: underline; /* 赤い波線の下線 */
}

/*---------------  ---------------*//*# sourceMappingURL=index.css.map */