@charset "UTF-8";
/************************************************
@PC - style.css
************************************************/

/*-------------------------------
基本設定
-------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  background: #fff;
  min-height: 100vh;
}

/*-------------------------------
パーティクルコンテナ
-------------------------------*/
.particles-container {
  position: relative;
  width: 100%;
  min-height: 100%;
  z-index: 0;
}

.particles-container .particles-js-canvas-el {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/*-------------------------------
セクション
-------------------------------*/
.section {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .section {
    padding: calc(40 / 375 * 100vw) 0;
  }
}

.section--hero {
  position: relative;
  padding: 35px 0 31px;
  width: 100%;
}

.section--hero .container {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .section--hero {
    padding: 35px 0 31px;
  }
}

.section--blue {
  position: relative;
  background: #0071ba;
  padding: 20px 0 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .section--blue {
    padding: calc(20 / 375 * 100vw) 0;
  }
}

.section--buttons {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .section--buttons {
    padding: calc(40 / 375 * 100vw) 0;
  }
}

.section--gray {
  background: #eeeeee;
  padding: 60px 0;
}

.section--gray .caution {
  color: #333;
}

@media screen and (max-width: 768px) {
  .section--gray {
    padding: calc(20 / 375 * 100vw) 0;
  }
}

/*-------------------------------
コンテナ
-------------------------------*/
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }
}

.container-wide {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container-wide {
    width: 95%;
  }
}

/*-------------------------------
タイトル
-------------------------------*/
.section-title {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #0071ba;
  padding: 9px 0;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: calc(24 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) 0;
    margin-bottom: calc(30 / 375 * 100vw);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.section-title--imax {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.section-title__imax-logo {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.section-title__text {
  font-family: "HiraKakuProN-W6", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .section-title--imax {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .section-title__imax-logo {
    height: calc(28 / 375 * 100vw);
  }
}

.section-title span.small {
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .section-title span.small {
    font-size: calc(20 / 375 * 100vw);
  }
}

.section-title--with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.section-title__imax-logo {
  height: 1em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 0 4px;
}

@media screen and (max-width: 768px) {
  .section-title__imax-logo {
    height: 0.9em;
    margin: 0 calc(3 / 375 * 100vw);
  }
}

.section-title--white {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #0071ba;
  background: #fff;
  padding: 9px 0;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: static;
  left: auto;
  right: auto;
}

@media screen and (max-width: 768px) {
  .section-title--white {
    width: 95%;
    font-size: calc(24 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) 0;
    margin-bottom: calc(30 / 375 * 100vw);
  }
}

/*-------------------------------
ボタン
-------------------------------*/
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .button-group {
    flex-direction: column;
    gap: calc(15 / 375 * 100vw);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  padding: 15px 20px;
  border-radius: 50px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .button {
    width: 280px;
    max-width: 90%;
    padding: calc(12 / 375 * 100vw) calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.button--primary {
  background: #0197d8;
  color: #fff;
  border-color: #0197d8;
}

.button--primary:hover {
  background: #fff;
  color: #0197d8;
  border-color: #0197d8;
}

.button--secondary {
  background: #fff100;
  color: #000;
  border-color: #fff100;
}

.button--secondary:hover {
  background: #fff;
  color: #000;
  border-color: #fff100;
}

.button svg {
  width: 16px;
  height: 16px;
}

.button--more {
  background: #0071ba;
  color: #fff;
  padding: 12px 60px;
  margin: 40px auto 0;
  display: block;
}

@media screen and (max-width: 768px) {
  .button--more {
    padding: calc(12 / 375 * 100vw) calc(40 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) auto 0;
  }
}

.button--more:hover {
  background: #fff;
  color: #0071ba;
  border-color: #0071ba;
}

/*-------------------------------
参加方法
-------------------------------*/
.step-images {
  display: flex;
  justify-content: center;
  gap: 45px;
  max-width: 675px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .step-images {
    flex-direction: column;
    gap: calc(30 / 375 * 100vw);
    width: 85%;
    margin: 0 auto;
  }
}

.step-images picture {
  flex: 1;
}

.step-image-wrapper {
  position: relative;
  flex: 1;
}

.step-image-wrapper picture {
  display: block;
  width: 100%;
}

.step-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.follow-link {
  position: absolute;
  display: block;
  width: 75.4%;
  left: 12%;
  height: 12%;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.follow-link:hover {
  opacity: 0.8;
}

/* PC版 - Xボタン（上） */
.follow-link--x {
  top: 61.1%;
}

/* PC版 - Instagramボタン（下） */
.follow-link--instagram {
  top: 76%;
}

/* モバイル版の調整 */
@media screen and (max-width: 768px) {
  .follow-link {
    width: 68.5%;
    left: 18.7%;
    height: 18.6%;
  }

  .follow-link--x {
    top: 50.8%;
  }

  .follow-link--instagram {
    top: 74%;
  }
}

/*-------------------------------
グッズプレゼント
-------------------------------*/
.goods-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .goods-wrapper {
    flex-direction: column;
    gap: calc(30 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
    align-items: stretch;
  }

  .goods-list {
    width: 100%;
  }

  .goods-list--wide,
  .goods-list--narrow {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
}

.goods-list {
  flex: 0 1 auto;
}

.goods-list--wide {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
}

.goods-list--narrow {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .goods-list {
    flex: 1 1 auto;
    width: 100%;
  }

  .goods-list--wide,
  .goods-list--narrow {
    max-width: none;
  }
}

.goods-list picture,
.goods-list img {
  display: block;
  width: 100%;
  height: auto;
}

.caution {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .caution {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
}

/*-------------------------------
ステップ詳細
-------------------------------*/
.steps-detail__overview {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .steps-detail__overview {
    width: 95%;
    margin-bottom: calc(30 / 375 * 100vw);
  }
}

.steps-detail__overview > p {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.steps-detail__overview .break-after::after {
  content: "\A";
  white-space: pre;
}

@media screen and (max-width: 768px) {
  .steps-detail__overview > p {
    font-size: calc(16 / 375 * 100vw);
  }
}

p.steps-detail__overview-note {
  margin-top: 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  p.steps-detail__overview-note {
    font-size: calc(11 / 375 * 100vw);
    margin-top: 0;
  }
}

.steps-detail__text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 768px) {
  .steps-detail__text {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}

.highlight {
  background: #0097d8;
  color: #fff;
  padding: 2px 8px;
  border-radius: 0;
  font-weight: 700;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .highlight {
    padding: calc(2 / 375 * 100vw) calc(6 / 375 * 100vw);
  }
}

.steps-detail__list {
  display: grid;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .steps-detail__list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(5 / 375 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .steps-detail__item {
    width: 92%;
  }
}

.steps-detail__figure {
  width: 100%;
  margin: 0;
}

.steps-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/*-------------------------------
アコーディオン
-------------------------------*/
.accordion {
  border: 2px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #0071ba;
  cursor: pointer;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .accordion-header {
    padding: calc(15 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
}

.accordion-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.accordion-header span::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

@media screen and (max-width: 768px) {
  .accordion-header span::after {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    border-width: calc(2 / 375 * 100vw);
  }
}

.accordion[open] .accordion-header span::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.accordion-content {
  padding: 0;
}

.caution-box {
  padding: 30px;
  max-height: 600px;
  overflow-y: auto;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .caution-box {
    padding: calc(15 / 375 * 100vw);
    max-height: calc(500 / 375 * 100vw);
    font-size: 14px;
  }
}

.caution-box::-webkit-scrollbar {
  width: 6px;
}

.caution-box::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.caution-box::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.caution-box__ttl {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  font-weight: bold;
  margin: 30px 0 10px;
}

.caution-box__ttl:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .caution-box__ttl {
    margin: calc(20 / 375 * 100vw) 0 calc(8 / 375 * 100vw);
  }
}

.caution-box__text {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  line-height: 1.8;
  margin: 8px 0;
}

.caution-box ul {
  list-style: disc;
  padding-left: 20px;
}

.caution-box ul li {
  list-style: disc;
}

.caution-box ol {
  list-style: none;
  counter-reset: main-counter;
  padding-left: 20px;
}

.caution-box ol li {
  list-style: none;
}

.caution-box ol > li {
  list-style: decimal;
}

.caution-box ol ol {
  list-style: lower-alpha;
  padding-left: 16px;
}

.caution-box ol ol li {
  list-style: inherit;
}

@media screen and (min-width: 769px) {
  .caution-box ul,
  .caution-box ol {
    padding-left: 30px;
  }

  .caution-box ol ol {
    padding-left: 16px;
  }
}

@media screen and (max-width: 768px) {
  .caution-box__text {
    margin: calc(6 / 375 * 100vw) 0;
  }

  .caution-box ul,
  .caution-box ol {
    padding-left: calc(20 / 375 * 100vw);
  }

  .caution-box ol ol {
    padding-left: calc(16 / 375 * 100vw);
  }
}

/*-------------------------------
シアターリスト
-------------------------------*/
.theater-content {
  width: 100%;
  margin: 0 auto;
}

.theater-button {
  display: block;
  width: 100%;
  margin: 40px auto 0;
  padding: 20px 15px;
  background: #0071ba;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theater-button:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .theater-content {
    width: 95%;
  }

  .theater-button {
    padding: calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) auto 0;
  }

  .theater-button:first-child {
    margin-top: 0;
  }
}

.theater-button:hover {
  background: #005a94;
  color: #fff;
}

.theater-list {
  width: 100%;
  margin: 15px auto 0;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .theater-list {
    grid-template-columns: 1fr;
    padding: calc(15 / 375 * 100vw);
    gap: calc(8 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
  }
}

.theater-list li {
  margin: 0;
}

.theater-list a {
  color: #0071ba;
  text-decoration: none;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding-left: 14px;
}

.theater-list a::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0071ba;
  font-weight: bold;
}

.theater-list a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .theater-list a {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(6 / 375 * 100vw) 0;
    padding-left: calc(14 / 375 * 100vw);
  }

  .theater-list a svg {
    width: calc(14 / 375 * 100vw);
    height: calc(14 / 375 * 100vw);
  }
}

.theater-list a:hover {
  color: #005a94;
}

.theater-list a:hover svg {
  opacity: 1;
}

/*-------------------------------
リスト情報
-------------------------------*/
.list-info {
  text-align: center;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .list-info {
    padding: calc(30 / 375 * 100vw) 0;
  }
}

.list-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .list-info h3 {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.list-info p {
  font-size: 16px;
  color: #a8d8ff;
}

@media screen and (max-width: 768px) {
  .list-info p {
    font-size: calc(14 / 375 * 100vw);
  }
}

/*-------------------------------
投稿セクション
-------------------------------*/
.p-app {
  padding: 60px 0;
}

.post-card {
  background: #fff;
  border: 2px solid #333;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}

.post-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__content {
  padding: 16px;
  flex: 1;
}

.post-card__text {
  --font-size: 14px;
  --line-height: 1.6;
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: #333;
  margin-bottom: 8px;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: calc(var(--font-size) * var(--line-height) * 4);
}

.post-card__date {
  font-size: 12px;
  color: #999;
  text-align: right;
  margin: 0;
}

.post-card__footer {
  background: #0197d8;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.post-card__button {
  padding: 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.post-card__button:hover {
  opacity: 0.8;
}

.post-card__icon {
  padding: 0;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-app {
    padding: calc(40 / 375 * 100vw) 0;
  }
}

.p-post_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  margin: 0 auto;
  width: 100%;
}

.grid-sizer,
.grid-item {
  width: 20%;
}

.grid-item {
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
}

@media screen and (max-width: 900px) {
  .grid-sizer,
  .grid-item {
    width: 33.333%;
  }
}

@media screen and (max-width: 768px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-post_inner {
    width: 95%;
  }
}

.post__subttl {
  width: 50%;
  max-width: 530px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .post__subttl {
    width: 80%;
    margin: 0 auto calc(30 / 375 * 100vw);
  }
}

.grid {
  display: grid;
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  .grid {
    margin: calc(30 / 375 * 100vw) 0;
  }
}

.c-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

@media screen and (max-width: 768px) {
  .c-btn {
    padding: calc(12 / 375 * 100vw) calc(30 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.c-btn.-yellow {
  background: #0071ba;
  color: #fff;
  border-color: #0071ba;
}

.c-btn.-yellow:hover {
  background: #fff;
  color: #0071ba;
  border-color: #0071ba;
}

.p-post_moreBtn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .p-post_moreBtn {
    margin: calc(30 / 375 * 100vw) auto 0;
  }
}

/*-------------------------------
Swiper
-------------------------------*/
.imax-swiper {
  position: relative;
  width: 100%;
  padding: 0 50px 60px;
}

@media screen and (max-width: 768px) {
  .imax-swiper {
    width: calc(280 / 375 * 100vw);
    margin: 0 auto;
    padding: 0 0 calc(50 / 375 * 100vw);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.section--blue .swiper-pagination {
  display: none;
}

.swiper-slide {
  text-align: center;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 40px;
  height: 40px;
  background: rgba(0, 113, 186, 0.8);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: calc(30 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: calc(16 / 375 * 100vw);
  }
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #0071ba;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .section--blue .swiper-pagination {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    gap: calc(6 / 375 * 100vw);
    justify-content: center;
    align-items: center;
  }

  .section--blue .swiper-pagination .swiper-pagination-bullet {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    background: rgba(0, 178, 214, 0.5);
    opacity: 1;
    margin: 0;
  }

  .section--blue .swiper-pagination .swiper-pagination-bullet-active {
    background: #00b2d6;
  }
}

/*-------------------------------
フッター
-------------------------------*/
#footer {
  background: #0071ba;
  padding: 40px 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer {
    padding: calc(30 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
}

.copy {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
  margin: 5px auto;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  .copy {
    font-size: calc(10 / 375 * 100vw);
    line-height: 1.8;
  }
}

.copy--imax {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .copy--imax {
    margin-top: calc(15 / 375 * 100vw);
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: inline;
  }
}

.pc {
  display: inline;
}

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

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.highlight-text {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #0097d8;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .highlight-text {
    font-size: calc(34 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

/*-------------------------------
アコーディオン説明
-------------------------------*/
.accordion-note {
  font-size: 16px;
  color: #a8d8ff;
  text-align: center;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .accordion-note {
    font-size: calc(14 / 375 * 100vw);
    margin: calc(15 / 375 * 100vw) 0;
  }
}

/*-------------------------------
劇場モーダル
-------------------------------*/
.theater-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.theater-modal.is-active {
  display: flex;
}

.theater-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  z-index: 9999;
}

.theater-modal__content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 90%;
  width: 600px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  .theater-modal__content {
    width: 90%;
    max-height: 80vh;
  }
}

.theater-modal__close {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #0071ba;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.theater-modal__close:hover {
  background: #005a94;
  transform: translateY(-50%) rotate(90deg);
}

.theater-modal__title {
  position: relative;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #0071ba;
  padding: 20px 60px 20px 20px;
  margin: 0;
  border-radius: 10px 10px 0 0;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .theater-modal__title {
    font-size: calc(18 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(50 / 375 * 100vw) calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
}

.theater-modal__image-wrapper {
  padding: 30px;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .theater-modal__image-wrapper {
    padding: calc(20 / 375 * 100vw);
  }
}

.theater-modal__image-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
}

.theater-modal__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.theater-link.coming-soon {
  color: #fff;
  background: #000;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.theater-link.coming-soon:hover {
  background: #333;
  color: #fff;
  border-color: #fff;
}

.theater-link.coming-soon svg {
  display: none;
}

@media screen and (max-width: 768px) {
  .theater-link.coming-soon {
    padding: calc(10 / 375 * 100vw) calc(12 / 375 * 100vw);
    min-height: calc(44 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
