/* ==========================================================================
   ららぽーと新三郷 LP用スタイル (style.css)
   ========================================================================== */

/* 1. リセット & 共通変数
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #006e53; /* 深緑 */
  --accent-color: #25ac71; /* 明るい緑 */
  --bg-dark-green: #2d8534; /* ABOUT背景緑 */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --header-height: 90px;
  --transition-speed: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-only {
  display: block;
} /* tablet/mobile で非表示 */
.sp-only {
  display: none;
} /* desktop/tablet では非表示 */
@media (max-width: 767px) {
  /* pc-only (= hidden-tablet + hidden-mobile) → mobile で非表示 */
  .pc-only {
    display: none !important;
  }
  /* sp-only (= hidden-desktop + hidden-tablet) → mobile で表示 */
  .sp-only {
    display: block !important;
  }
}

/* 2. タイポグラフィ・タイトル共通
   ========================================================================== */
.section-title-en {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
  color: var(--text-color-light);
}

.section-title-en.green {
  color: var(--bg-dark-green);
}

.section-title-en.white {
  color: var(--text-color-light);
}

.section-title-ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  color: var(--text-color-light);
}

.section-title-ja.dark {
  color: var(--text-color-dark);
}

.section-title-ja.white {
  color: var(--text-color-light);
}

/* 3. ヘッダー
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color var(--transition-speed);
}

.site-header.top .header-container {
  padding: 8px 20px 0;
}
.site-header.top .header-container {
  display: flex;
  justify-content: space-between;
}

.site-header .oosaka {
  display: flex;
  align-items: end;
  gap: 0 16px;
  padding: 8px 20px;
}

.site-header .oosaka .img {
  width: 100px;
}
.site-header .oosaka .text {
  font-size: 10px;
}

.header-container {
  max-width: none;
  padding: 10px 20px;
}

.header-container .oosaka {
  padding: 8px 0 0;
}

.header-container .text {
  margin: 8px 0 0;
  font-size: 10px;
}

.header-container-link {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-redee {
  height: 45px;
  width: auto;
}

.logo-lalaport {
  height: 35px;
  width: auto;
}

.header-nav {
  height: 100%;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 0 16px;
  height: 100%;
  align-items: center;
}

.header-nav ul li {
}

.header-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  height: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333355;
  position: relative;
}

.header-nav ul li a .sub {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  color: #777777;
  margin-top: 2px;
}

.header-nav ul li a:hover {
  color: var(--primary-color);
}

.header-nav ul li a:hover .sub {
  color: var(--primary-color);
}

.header-cta-btn {
  background-color: var(--primary-color);
  color: var(--text-color-light) !important;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-size: 1rem !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform var(--transition-speed),
    background-color var(--transition-speed) !important;
}

.header-cta-btn:hover {
  background-color: #005642 !important;
  transform: translateY(-2px);
}

/* ハンバーガーメニュー */
.menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-trigger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color-dark);
  border-radius: 3px;
  transition: all var(--transition-speed);
}

/* 4. 各セクションのレイアウト
   ========================================================================== */
main {
  margin-top: var(--header-height);
}

/* キービジュアル */
.hero-section {
  width: 100%;
  background-color: #ffffff;
}

.hero-img {
  width: 100%;
  display: block;
}

/* ABOUT */
.about-section {
  background: url(./images/bg-about01.png) no-repeat top center;
  background-size: cover;
  padding: 80px 0 200px;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container .section-title-en {
  position: relative;
}

.about-container .section-title-en:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 155px;
  height: 216px;
  background: url(./images/person-about01.png) no-repeat 0 0;
  background-size: 100%;
}
.about-container .section-title-en:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 155px;
  height: 216px;
  background: url(./images/person-about02.png) no-repeat 0 0;
  background-size: 100%;
}
.decor-left,
.decor-right {
  position: absolute;
  width: 25%;
  max-width: 260px;
  opacity: 0.8;
}

.decor-left {
  left: 5vw;
  top: 0px;
}
.decor-right {
  right: 5vw;
  bottom: 0px;
}
.about-content {
  width: 65%;
  text-align: center;
  color: #3f3e3e;
  z-index: 10;
}

.about-content .section-title-en {
  color: #fa03b8;
}

.about-content .section-title-ja {
  margin-bottom: 80px;
  color: #3f3e3e;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  font-weight: 700;
}

.about-text + .about-text {
  margin: 1em 0 0;
}

/* REQUIREMENTS */
.requirements-section {
  background-color: #ffce2e;
  padding: 180px 0 120px;
}

.requirements-section .section-title-en {
  position: relative;
}

.requirements-section .section-title-en:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0px;
  width: 131px;
  height: 234px;
  background: url(./images/person-event01.png) no-repeat center;
  background-size: 100%;
}

.requirements-section .section-title-en:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 294px;
  background: url(./images/person-event02.png) no-repeat center;
  background-size: 100%;
}
.req-lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 96px;
}

.req-lead span {
  color: red;
  font-weight: 700;
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.card-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed);
}

.card-item:hover {
  transform: translateY(-5px);
}

.card-item img {
  width: 100%;
  display: block;
}

/* COURSE */
.course-section {
  position: relative;
  padding: 300px 0 0;
  margin: -200px 0 0;
  background: url(./images/bg-tournaments01.png) no-repeat top center;
  background-size: cover;
}

.course-section:before {
  content: "";
  position: absolute;
  top: 150px;
  right: 118px;
  width: 140px;
  height: 210px;
  background: url(./images/img-tournaments01.png) no-repeat 0 0;
  background-size: 100%;
}

.course-section .section-title-en {
  color: #fff;
}

.course-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bg-dark-green);
  margin-top: -20px;
  margin-bottom: 20px;
}

.course-lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.course-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-image-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.course-image-block img {
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
}

.course-btn-block {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal-trigger-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  max-width: 480px;
  width: 80%;
  transition: transform var(--transition-speed);
}

.modal-trigger-btn:hover {
  transform: scale(1.03);
}

.course-section .notes {
  font-size: 0.9rem;
  color: #666666;
  text-align: center;
  margin-top: 30px;
}

.bg-dotted {
  position: relative;
  padding: 80px 0 240px;
  background-image: radial-gradient(#fff 15%, transparent 15%), radial-gradient(#fff 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
}

.person-img02 {
  margin: 30px 0 0 120px;
}

/* online */
.online-section {
  position: relative;
  margin: -400px 0 0;
  padding: 400px 0 180px;
  background: url(./images/bg-meeting01.png) no-repeat top center;
  background-size: cover;
}

.online-section .section-title-en {
  position: relative;
  margin: 0 0 64px;
}

.online-section .section-title-en::before {
  content: "";
  position: absolute;
  width: 212px;
  height: 242px;
  top: -250px;
  right: 30px;
  background: url(./images/balloon.png) no-repeat center;
  background-size: 100%;
}

.online-banner-desc {
  font-size: 1.1rem;
  max-width: 900px;
  color: #fff;
  margin: 0 auto 64px;
  line-height: 2.25;
}

/* OUTLINE */
.outline-section {
  background: url(./images/bg-outline01.png) no-repeat top center;
  background-size: cover;
  padding: 140px 0 320px;
}

.outline-section .section-title-en {
  position: relative;
  color: #fa03b8;
}

.outline-section .section-title-en:before {
  content: "";
  position: absolute;
  top: -70px;
  right: 130px;
  width: 102px;
  height: 245px;
  background: url(./images/person-outline01.png) no-repeat 0 0;
  background-size: 100%;
}

.outline-section .section-title-ja {
  margin: 0 0 72px;
}

.outline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 48px 48px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.outline-grid + .outline-grid {
  margin-top: 60px;
}

.outline-table-block {
  width: 100%;
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 40px;
}

.outline-table th,
.outline-table td {
  padding: 12px 16px;
  font-size: 0.95rem;
}

.outline-table th {
  background-color: #2862b2;
  color: var(--text-color-light);
  width: 30%;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  border-bottom: 2px solid #ffffff;
}

.outline-table td {
  background-color: #c7d7ef;
  color: #3f3e3e;
  width: 70%;
  font-weight: 500;
  border-bottom: 2px solid #ffffff;
}

.outline-table td a {
  text-decoration: underline;
}

.outline-table td a:hover {
  text-decoration: none;
}

.outline-table tr:last-child th,
.outline-table tr:last-child td {
  border-bottom: none;
}

.outline-map-block {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.outline-map-block .map {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.outline-map-block .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* APPLICATION */
.application-section {
  position: relative;
  margin: -240px 0 0;
  padding: 260px 0 216px;
  text-align: center;
  background: url(./images/bg-application01.png) no-repeat top center;
  background-size: cover;
}

.application-section .section-title-en {
  position: relative;
}

.application-section .section-title-en:before {
  position: absolute;
  content: "";
  top: -260px;
  left: 150px;
  width: 125px;
  height: 326px;
  background: url(./images/person-application01.png) no-repeat 0 0;
  background-size: 100%;
}
.application-section .section-title-en:after {
  position: absolute;
  content: "";
  top: -120px;
  right: 0;
  width: 186px;
  height: 255px;
  background: url(./images/person-application02.png) no-repeat 0 0;
  background-size: 100%;
}

.app-lead {
  color: var(--text-color-light);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.app-lead a {
  color: #00e5ff;
  text-decoration: underline;
}

.app-btn-wrap {
  display: flex;
  justify-content: center;
}

.app-cta-img-btn {
  display: inline-block;
  max-width: 500px;
  width: 90%;
  transition: transform var(--transition-speed);
}

.app-cta-img-btn:hover {
  transform: scale(1.03);
}

.movie-section {
  padding: 80px 0;
  background-color: #000;
}

.movie-section .movie {
  width: 100%;
  aspect-ratio: 16 / 9; /* 動画などの比率に合わせて調整 */
}

.movie-section .movie iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 5. フッター
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  padding: 60px 0 30px 0;
  border-top: 1px solid #eaeaea;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-block {
  width: 768px;
  margin: 0 auto;
}

.footer-block-title {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.organizer-logos {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 20px;
}

.organizer-logos a {
  display: inline-block;
}

.organizer-logos a + a {
  margin: 32px 0 0;
}

.logo-redee-sub {
  height: 40px;
  width: auto;
}

.logo-redee-gaming {
  height: 35px;
  width: auto;
}

.organizer-text {
  font-size: 0.95rem;
  line-height: 1.8;
}

.organizer-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cooperator-logos {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 10px;
}
.cooperator-logos a {
  display: inline-block;
  pointer-events: none;
}
.cooperator-logos a + a {
  margin: 32px 0 0;
}

.cooperator-logos a span {
  display: block;
  margin: 8px 0 0;
  text-align: center;
  font-size: 1.5rem;
}

.logo-lalaport-footer {
  height: 50px;
  width: auto;
}

.footer-copyright {
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #777777;
}

/* 6. モーダルポップアップ
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 850px;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transform: translateY(-50px);
  transition: transform var(--transition-speed) ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #ffffff;
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.modal-close-btn:hover {
  background-color: var(--primary-color);
}

.modal-body-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.modal-img-wrap {
  width: 45%;
}

.modal-img-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-text-wrap {
  width: 55%;
}

.modal-title-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.modal-icon {
  height: 50px;
  width: auto;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color-dark);
  line-height: 1.4;
}

.modal-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444444;
}

/* 7. メディアクエリ（レスポンシブ）
   ========================================================================== */

/* タブレットサイズ (1024px以下) */
@media screen and (max-width: 1024px) {
  .section-title-en {
    font-size: 3rem;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .decor-left,
  .decor-right {
    width: 40%;
    max-width: 200px;
  }

  .about-content {
    width: 100%;
  }

  .outline-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .outline-map-block {
    height: 350px;
  }
}

/* ==========================================================================
   第5回ららぽーと杯 ポータル & サブページ用スタイル追加
   ========================================================================== */
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tournament-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition-speed),
    box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 25px 25px 0 0;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tournament-img-wrap {
  overflow: hidden;
  position: relative;
}

.tournament-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.tournament-card:hover .tournament-img-wrap img {
  transform: scale(1.05);
}

.tournament-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.tournament-card.no-flex .tournament-card-content {
  flex-grow: 0;
}

.tournament-card-title {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: #2862b2;
  border-radius: 40px;
}

.tournament-card-target {
  display: block;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--text-color-light);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.tournament-card-desc {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.tournament-card-subject {
  margin: 0 0 16px;
}

.tournament-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    background-color var(--transition-speed),
    transform var(--transition-speed);
}

.tournament-card-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.tournament-card-content table {
  border-collapse: collapse;
  width: 100%;
  border: solid 3px #2862b2;
  margin: 0 0 40px;
}

.tournament-card-content table tr {
  border-bottom: solid 3px #2862b2;
}
.tournament-card-content table th {
  border-right: solid 3px #2862b2;
  font-size: 20px;
  font-weight: 700;
}
.tournament-card-content table td {
  font-size: 18px;
  font-weight: 700;
}
/* オンライン予選用バナー */
.online-qualifier-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  padding: 40px;
  color: var(--text-color-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.online-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 0 40px;
}

.online-banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.online-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.online-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #005642;
}

/* お申し込み一覧リンクグリッド */
.app-links-content {
  display: flex;
  gap: 0 16px;
}
.app-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  flex: 2 1 0;
}

.app-links-single {
  margin-top: 30px;
  flex: 1 1 0;
}

.app-link-card {
  height: 100%;
  box-sizing: border-box;
  /* 以下は元のまま */
  background-color: #ffff57;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #3f3e3e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    background-color var(--transition-speed),
    border-color var(--transition-speed);
}

.app-links-single.st a {
  background: #ff3e41;
  color: #fff;
}

.app-link-card.full-width {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
  grid-column: 1 / -1;
  align-items: center;
  padding: 12px 16px;
  background: #1dfff0;
  text-align: left;
  /*
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  */
}

.app-link-card.app-link-card:hover {
  background-color: rgba(255, 255, 87, 0.7);
}

.app-links-single.st:hover a {
  background-color: rgba(255, 62, 65, 0.7);
}
.app-link-card.full-width:hover {
  background-color: rgba(29, 255, 240, 0.7);
}

.app-link-card .img {
  width: 80%;
  margin: 0 auto 16px;
}

.app-link-card.full-width .area-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}
.app-link-card.full-width .area-img .img {
  width: 100%;
  margin: 0;
}

.app-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}

.app-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.app-link-card.full-width .app-card-action {
  justify-content: start;
}

/* ==========================================================================
   サブページ個別装飾
   ========================================================================== */
.subpage-hero {
  position: relative;
  margin-top: var(--header-height);
}

.subpage-hero img.hero-bg {
  width: 100%;
  height: 100%;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.subpage-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.subpage-hero-title.green {
  text-align: center;
  color: #2d8534;
  text-shadow: none;
}

.subpage-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--accent-color);
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  color: #444444;
}

/* サブページ用のテーブルや定員バッジなど */
.detail-table-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 50px;
}

.info-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.info-badge {
  background: #f0f7f4;
  border: 1px solid #d1e7dd;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-badge-container.black .info-badge {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}

.outline-table td strong {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  background: #2862b2;
  border-radius: 40px;
}

/* ==========================================================================
   GT7大会ページ専用スタイル（gt7.cssデザイン移植）
   KV / ABOUT / OVERVIEW セクション（id="overview"まで）
   ========================================================================== */

/* セクション内コンテナ（gt7.css移植） */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通ラベル */
.section-label {
  margin-bottom: 30px;
}
.label-en {
  font-size: 5em;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
.label-ja {
  font-size: 1.25em;
  font-weight: 700;
  color: #ccc;
  margin-top: 4px;
  text-align: center;
}
.accent {
  color: #a71621;
}

@media (max-width: 767px) {
  .label-en {
    font-size: 36px;
  }
}

/* KV */
.gt7-kv {
  line-height: 0;
}
.gt7-kv .kv-sp {
  display: none;
}
.gt7-kv img {
  width: 100%;
}

/* ABOUT（gt7.css移植・ダークテーマ） */
.gt7-about {
  background: #1a1a1a;
  padding: 80px 0;
}
.gt7-about .label-en {
  color: #fff;
}
.gt7-about .label-ja {
  color: #ccc;
}
.gt7-about .about-text {
  color: #fff;
}
.gt7-about .about-text p {
  font-size: 1.2em;
  margin-bottom: 1.4em;
  text-align: center;
}

/* OVERVIEW（gt7.css移植・ダークテーマ） */
.gt7-overview {
  background: #111;
  padding: 80px 0;
  color: #fff;
}
.gt7-overview .label-en {
  color: #fff;
}
.gt7-overview .label-ja {
  color: #ccc;
}

.gt7-overview .info-badge-container {
  margin-bottom: 40px;
}

.gt7-overview .day-heading {
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  margin: 30px 0 12px;
  border-left: 4px solid #a71621;
  padding-left: 12px;
  line-height: 1.5;
}

.gt7-overview .day-desc {
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.gt7-overview .over-view-caution {
  margin: 0 0 24px;
  color: #fff;
  font-size: 10px;
  text-align: right;
}

/* SPEC TABLE（gt7.css移植） */
.gt7-overview .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.gt7-overview .spec-table th,
.gt7-overview .spec-table td {
  padding: 13px 15px;
  font-size: 0.9em;
  line-height: 1.7;
  border-bottom: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}
.gt7-overview .spec-table th {
  background: #000;
  color: #fff;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}
.gt7-overview .spec-table td {
  background: #2f2d2c;
  color: #fff;
  width: 70%;
}

.photo-grid-3 img,
.photo-grid-2 img {
  width: 100%;
  object-fit: cover;
}

/* エントリーエリア */
.gt7-entry-box {
  background: #f7f9fa;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: var(--text-color-dark);
}
.gt7-entry-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.gt7-entry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
.gt7-entry-row:last-of-type {
  margin-bottom: 0;
}
.gt7-entry-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 15px;
}

.gt7-btn-gray {
  background-color: #6c757d;
}
.gt7-btn-accent {
  background-color: var(--accent-color);
}
.gt7-btn-pink {
  background-color: #d63384;
}
.gt7-btn-back {
  background-color: #666;
}

.gt7-back-link {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .gt7-about,
  .gt7-overview {
    padding: 50px 0;
  }
  .gt7-overview .spec-table th {
    width: 35%;
    white-space: normal;
    font-size: 0.82em;
  }
  .gt7-overview .spec-table td {
    width: 65%;
    font-size: 0.82em;
  }
  .gt7-kv .kv-pc {
    display: none;
  }
  .gt7-kv .kv-sp {
    display: block;
  }
}

@media (max-width: 480px) {
  .gt7-overview .spec-table th,
  .gt7-overview .spec-table td {
    padding: 10px 8px;
    font-size: 0.78em;
  }
}

/* ==========================================================================
   FALLGUYS大会ページ専用カラーテーマ（黄色×青）
   参考：第3回 ららぽーとeスポーツ杯（Fall Guys）配色 #02B5E8 / #F6CC29
   ========================================================================== */

.fallguys-page {
  background-color: #02b5e8;
  background-image: url("./images/pcback-1.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

.fallguys-page .requirements-section {
  padding: 80px 0 0;
  background: none;
}

/* セクション見出し（SCHEDULE / REGISTRATION）を黄色テーマに */
.fallguys-page .section-title-en.green {
  color: #fff;
  text-shadow: 2px 2px 0 #02b5e8;
}

.fallguys-page .section-title-ja.dark {
  color: #fff;
  text-shadow: 2px 2px 0 #02b5e8;
}

/* 情報バッジ：黄色背景＋青文字 */
.fallguys-page .info-badge {
  background: #fff;
  border: 1px solid #f6cc29;
  color: #0090b8;
}

/* テーブルカード本体 */
.fallguys-page .detail-table-card {
  border-radius: 12px;
  box-shadow: none;
  background: none;
}

/* SCHEDULEテーブル：見出しセル青・区切り黄色 */
.fallguys-page .outline-table tr {
  border: 4px solid #f6cc29;
}
.fallguys-page .outline-table th {
  background-color: #02b5e8;
  color: #fff;
}

.fallguys-page .outline-table td {
  background-color: #ffffff;
  color: #333;
  border-left: 4px solid #f6cc29;
}

.fallguys-page .outline-table td .indent {
  display: inline-block;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

.fallguys-page .outline-table td strong {
  display: inline-block;
  width: auto;
  color: #2862b2;
  border-radius: 0;
  text-align: left;
  margin: 0;
  padding: 0;
  background: none;
}

/* エントリーボックス */
.fallguys-page .fg-entry-box {
  background: #fff;
  border: 1px solid #f6cc29;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.fallguys-page .fg-entry-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0090b8;
}

/* ボタン配色 */
.fallguys-page .tournament-card-btn {
  background-color: #02b5e8;
}

.fallguys-page .tournament-card-btn:hover {
  background-color: #0090b8;
}

.fallguys-page .fg-btn-accent {
  background-color: #f6cc29 !important;
  color: #1a1a1a !important;
}

.fallguys-page .fg-btn-accent:hover {
  background-color: #e0b818 !important;
}

.fallguys-page .fg-btn-back {
  background-color: #666 !important;
}

@media (max-width: 768px) {
  .fallguys-page {
    background-size: 200% auto;
  }
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.course-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.course-item + .course-item {
  margin: 40px 0 0;
}
.course-card-img {
  width: 100%;
}

.course-btn-wrap img {
  max-width: 300px;
  margin: 0 auto;
  cursor: pointer;
}
.course-btn-wrap:hover img {
  opacity: 0.85;
  transform: scale(0.97);
  transition: all 0.2s;
}

.course-sp-img {
  width: 100%;
}
.course-sp-btn {
  max-width: 300px;
  margin: 10px auto 20px;
}

.apply-btn-wrap {
  margin: 0 0 40px;
  text-align: center;
}

.area-apply-btn .apply-btn {
  display: inline-flex;
  width: 100%;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 48px;
  background-color: #ffe200;
  border: none;
  border-radius: 60px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.area-apply-btn .apply-btn-wrap.white .apply-btn {
  background-color: #ffe200;
}

.area-apply-btn .apply-btn .main-text {
  color: #333;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.area-apply-btn .apply-btn-wrap + .apply-btn-wrap {
  margin-top: 32px;
}

.caution {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* ========== POPUP ========== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15%;
}

.popup-overlay.is-open {
  display: flex;
}

.popup-container {
  background: #d5d5d5;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(2, 2, 2, 0.5);
  padding: 52px 24px;
  max-width: 760px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  background: #a71621;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.popup-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.popup-photo {
  flex-shrink: 0;
  width: 40%;
}
.popup-photo img {
  width: 100%;
  border-radius: 6px;
}

.popup-status {
  flex: 1;
}

.popup-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.popup-icon {
  width: 25%;
  flex-shrink: 0;
}

.popup-title-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #000;
  line-height: 1.4;
}

.popup-exp {
  font-size: 0.9em;
  font-weight: bold;
  color: #000;
  line-height: 1.7;
}

.application-section01 .app-lead {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 30px;
  text-align: center;
}
.application-section01 .app-lead a {
  color: #fff;
}

.application-section01.black {
  padding: 80px 0;
  background-color: #000;
}

.tournament-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 10px;
}
@media (max-width: 767px) {
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }
}

.section-digital {
  padding: 80px 0;
}

.section-overview {
  background: #111;
  padding: 80px 0;
  color: #fff;
}

.overview-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.overview-sub {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: center;
}

.over-view-caution {
  margin: 0 0 24px;
  color: #fff;
  font-size: 10px;
  text-align: right;
}

.section-overview .tournament {
  margin: 40px 0;
}

.section-overview .tournament .tournament-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.section-overview .tournament .tournament-lead {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .section-overview .tournament .tournament-lead {
    text-align: left;
  }
}

/* 写真グリッド */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.photo-grid-3 img,
.photo-grid-2 img {
  width: 100%;
  object-fit: cover;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 10px;
}

.img-note {
  font-size: 0.85em;
  color: #999;
  text-align: right;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section-overview {
    padding: 50px 0;
  }
  .photo-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* day heading / day desc（section-overview配下・ダークテーマ共通） */
.day-heading {
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  margin: 30px 0 12px;
  border-left: 4px solid #a71621;
  padding-left: 12px;
  line-height: 1.5;
}

.day-desc {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* SPEC TABLE（section-overview配下・ダークテーマ共通） */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.spec-table th,
.spec-table td {
  padding: 13px 15px;
  font-size: 0.9em;
  line-height: 1.7;
  border-bottom: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  background: #000;
  color: #fff;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}
.spec-table td {
  background: #2f2d2c;
  color: #fff;
  width: 70%;
}

.table-link {
  color: lightblue;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .spec-table th {
    width: 35%;
    white-space: normal;
    font-size: 0.82em;
  }
  .spec-table td {
    width: 65%;
    font-size: 0.82em;
  }
}

/* ==========================================================================
   eモータースポーツ ららぽーと安城/磐田 大会ページ専用スタイル
   対象: .emotorsports-page（現状 gt7.html）
   st6.htmlの.section-about（背景画像デザイン）と衝突するため body class でスコープ
   ========================================================================== */
.emotorsports-page .section-about {
  background: #1a1a1a;
  padding: 80px 0;
}
.emotorsports-page .about-text p {
  font-size: 1.2em;
  margin-bottom: 1.4em;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .emotorsports-page .section-about {
    padding: 50px 0;
  }
}

/* ========== PLAY ========== */
.section-play {
  background-color: #f7faf8;
  background-image: radial-gradient(#d5e7e1 15%, transparent 15%), radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  padding: 80px 0;
}
.section-play .section-main-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 64px;
}
.section-play .section-title-en {
  margin: 0 0 40px;
}
.section-play .section-title-ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #fff;
}

.section-play .digital-main-title {
  margin: 0 0 64px;
}

.section-play .play-main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sm-dark-green);
  margin-top: -20px;
  margin-bottom: 20px;
}

.section-play ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .section-play .section-title-ja {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .section-play .section-main-title {
    font-size: 2.5rem;
    margin-bottom: 64px;
  }

  .section-play .paly-main-title {
    font-size: 1.8rem;
  }

  .section-play ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ==========================================================================
   SF6大会ページ専用スタイル（st6.cssデザイン移植）
   対象: st6.html（ららぽーと門真 ストリートファイター6 高校生・大学生大会）
   ========================================================================== */

/* 共通ユーティリティ */
.aligncenter {
  display: block;
  text-align: center;
}

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

/* 本文共通（.content配下のp/a） */
.content {
  font-size: 16px;
  line-height: 1.8;
}
.content p {
  padding: 0 0 1em;
  font-size: 16px;
  color: #333333;
  font-weight: 700;
}
.content a {
  color: #6f97bc;
  text-decoration: none;
  transition: all 250ms ease-out;
}
.content a:hover {
  color: #6495ed;
}

/* セクション見出し（英字＋日本語サブタイトルを1つのh2にまとめたパターン） */
.section-title {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 90px;
  font-weight: 900;
  line-height: 1em;
  letter-spacing: 2px;
}
.section-title span {
  display: block;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1em;
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 50px;
  }
  .section-title span {
    font-size: 16px;
  }
}

/* KV（サブページヒーロー） */
.section-kv {
  line-height: 0;
}
.section-kv .kv-img {
  width: 100%;
  display: block;
}

/* ABOUT */
.section-about {
  padding: 80px 0;
  background: #1a1a1a;
}
.section-about .about-text {
  margin: 0 0 40px;
  text-align: center;
}
.section-about .about-text p {
  color: #ffffff;
}
.section-about .about-text p + p {
  margin: 1em 0 0;
}
.section-about {
}
.about-logo {
  width: 240px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .section-about {
    background-image: url("./images/Group-231.png");
    background-position: bottom center;
  }
}

/* ABOUT装飾（コーナー花飾り・下部3枚グリッド／スマホのみ表示） */
.about-decorations {
  position: relative;
}
.about-decorations .decor-left,
.about-decorations .decor-right {
  position: absolute;
  width: 25%;
  max-width: 180px;
  opacity: 0.8;
}
.about-decorations .decor-left {
  left: 5vw;
  top: 0;
}
.about-decorations .decor-right {
  right: 5vw;
  bottom: 0;
}
.decor-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.decor-grid img {
  width: 60px;
  height: auto;
}

/* OUTLINE / PRIZE */
.section-outline {
  background-image: url("./images/back_pc.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .section-outline {
    background-image: url("./images/back_sp.png");
    background-position: bottom center;
  }
}

.sf6-logo {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 40px;
}

.capcom-license img {
  width: 40%;
  max-width: 300px;
  margin: 0 auto 40px;
}
.capcom-license p {
  color: #ffffff;
}

/* 開催概要テーブル（dl.pages__table） */
dl.pages__table {
  margin: 1em 0;
  border-top: 1px solid #d5d5d5;
}
.pages__table__tr {
  display: flex;
  font-size: 15px;
}
.pages__table__th,
.pages__table__td {
  padding: 15px !important;
}
.pages__table__th {
  background-color: #eeeeee;
  font-weight: bold;
  width: 30%;
  border-bottom: 1px solid #d5d5d5;
  color: #000000;
}
.pages__table__td {
  width: 70%;
  border-bottom: 1px solid #d5d5d5;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .pages__table__tr {
    flex-direction: column;
    font-size: 14px;
  }
  .pages__table__th,
  .pages__table__td {
    width: 100%;
    padding-left: 10px !important;
  }
}

.tournament-images {
  margin: 0 0 40px;
}

/* PRIZE */
.prize-info p {
  text-align: center;
  color: #ffffff;
}
.prize-info p span {
  text-align: center;
  font-size: 25px;
}
.prize-info .prize-lead .img {
  max-width: 540px;
  margin: 0 auto;
}

/* APPLICATION */
.section-application {
  padding: 80px 0;
  background: #a71621;
}
.section-application .aligncenter p {
  color: #ffffff;
}
.app-buttons {
  margin-top: 40px;
}

/* スマートフォンサイズ (768px以下) */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-header .oosaka {
    align-items: center;
  }

  .logo-redee {
    height: 35px;
  }

  .logo-lalaport {
    height: 28px;
  }

  /* モバイルナビゲーション */
  .menu-trigger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left var(--transition-speed);
  }

  .header-nav.open {
    left: 0;
  }

  .header-nav ul {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
    align-items: stretch;
    gap: 15px;
  }

  .header-nav ul li {
    height: auto;
  }

  .header-nav ul li a {
    align-items: flex-start;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
  }

  .header-nav ul li a .sub {
    display: none;
  }

  .header-nav ul li.cta-nav {
    margin-top: 15px;
  }

  .header-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* メニュー開いた時のハンバーガー変形 */
  .menu-trigger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-trigger.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-trigger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* コンテンツ */
  .section-title-en {
    font-size: 2rem;
  }

  .section-title-ja {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .about-section {
    padding: 80px 0 160px;
  }

  .about-content .section-title-en:before {
    width: 54px;
    height: 76px;
    top: -20px;
  }
  .about-content .section-title-en:after {
    width: 60px;
    height: 80px;
    top: -20px;
    right: -10px;
  }
  .about-text {
    font-size: 0.9rem;
  }

  .course-section {
    background: url(./images/bg-tournaments01_sp.png) no-repeat top center;
    background-size: cover;
  }

  .course-section:before {
    content: none;
  }
  .course-section .section-title-en {
    position: relative;
  }
  .course-section .section-title-en:before {
    position: absolute;
    content: "";
    width: 56px;
    height: 83px;
    top: -110px;
    right: 0;
    background: url(./images/img-tournaments01.png) no-repeat 0 0;
    background-size: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
    margin: 0 auto;
  }

  .tournament-card-title {
    font-size: 1rem;
  }
  .tournament-card-btn {
    font-size: 0.75rem;
  }

  .person-img02 {
    width: 160px;
    margin: 30px 0 0 0px;
  }

  .course-main-title {
    font-size: 1.8rem;
  }

  .course-container {
    padding: 15px;
  }

  .modal-trigger-btn {
    width: 100%;
  }

  .online-section {
    margin: -420px 0 0;
    padding: 300px 0 80px;
  }

  .online-section .section-title-en::before {
    width: 86px;
    height: 110px;
    top: -110px;
    right: 30px;
  }

  .online-banner-desc {
    margin: 0 auto 32px;
    font-size: 0.9rem;
  }

  .outline-table th,
  .outline-table td {
    padding: 12px 15px;
    font-size: 0.85rem;
  }

  .outline-table th {
    width: 35%;
  }

  .outline-table td {
    width: 65%;
  }

  .requirements-section .section-title-en:before {
    width: 44px;
    height: 100px;
    top: -70px;
  }
  .requirements-section .section-title-en:after {
    width: 32px;
    height: 101px;
    top: -70px;
  }

  .tournament-card-content table th {
    padding: 8px 0;
    font-size: 12px;
  }
  .tournament-card-content table td {
    padding: 8px 0;
    font-size: 11px;
  }

  .outline-section {
    padding: 64px 0 120px;
  }

  .outline-section .section-title-en:before {
    width: 39px;
    height: 94px;
    top: -40px;
    right: 0;
  }

  .outline-grid {
    margin: 0 -20px;
    padding: 24px;
  }

  .application-section {
    margin: -80px 0 0;
    padding: 160px 0 40px;
  }

  .application-section .section-title-en:before {
    width: 42px;
    height: 106px;
    top: -140px;
    left: 10px;
  }

  .application-section .section-title-en:after {
    width: 68px;
    height: 93px;
    top: -120px;
    right: 0;
  }

  .app-lead {
    font-size: 0.8rem;
  }

  .app-link-card.full-width {
    grid-column: 1 / -1;
  }

  .app-link-card.full-width .area-img {
    display: block;
  }
  .app-link-card.full-width .area-img .img + .img {
    margin: 8px 0 0;
  }

  .app-card-title {
    font-size: 0.9rem;
  }

  .app-card-action {
    font-size: 0.6rem;
  }

  .app-links-content {
    display: block;
  }

  .app-links-single.st a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-block {
    width: 100%;
  }

  .organizer-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  /* モーダル */
  .modal-content {
    padding: 25px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-body-layout {
    flex-direction: column;
    gap: 20px;
  }

  .modal-img-wrap {
    width: 100%;
  }

  .modal-text-wrap {
    width: 100%;
  }

  .modal-title {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 768px) {
  .area-apply-btn .apply-btn {
    padding: 12px 24px;
  }
  .area-apply-btn .apply-btn .main-text {
    font-size: 16px;
  }
}

/* レスポンシブ微調整 */
@media (max-width: 768px) {
  .subpage-hero-title {
    font-size: 2rem;
  }
  .detail-table-card {
    padding: 20px;
  }
  .online-qualifier-banner {
    padding: 30px 20px;
  }
  .online-banner-title {
    font-size: 1.4rem;
  }
  .app-link-card {
    padding: 16px 8px;
  }
  .app-link-card.st {
    background: #a71621;
  }
  .app-card-title {
    font-size: 1rem;
  }
}

.fallguys-page .requirements-section .section-title-en:before,
.fallguys-page .requirements-section .section-title-en:after {
  content: none;
}

.text.online-desc {
  width: 90%;
  margin: 0 auto 30px;
  padding: 10px;
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.text.online-desc span {
  color: #f6cc29;
}

@media (min-width: 768px) {
  .text.online-desc {
    font-size: 24px;
  }
}

.grid-area-img {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 40px;
  padding: 0 20px;
}

.fallguys-page .grid-area-img {
  margin: 40px auto 20px;
}

.grid-area-img .grid-img + .grid-img {
  margin: 24px 0 0;
}

.grid-area-img .grid-img img {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-area-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
  }
  .grid-area-img .grid-img + .grid-img {
    margin: 0;
  }
}

.fallguys-page .outline-heading {
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  margin: 30px 0 12px;
  border-left: 4px solid #fff;
  padding-left: 12px;
  line-height: 1.5;
}

.method .method-text {
  margin: 0 0 40px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.method .method-text em {
  padding: 0 4px;
  font-size: 2rem;
  font-style: normal;
}

.method .method-text .text-block {
  display: block;
}

.method .method-text .text-block .center {
  padding: 0 0 0 2.25em;
}

.method .method-text .text-block span {
  display: inline-block;
  text-align: left;
}

.method .method-text .strong {
  margin: 8px 0 0;
  display: inline-block;
}

.prize {
  margin: 0 0 64px;
}

.prize-title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.prize-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.prize .caution {
  text-align: right;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .prize .photo-grid-2 {
    display: block;
  }
  .prize .photo-grid-2 img + img {
    margin: 24px 0 0;
  }
  .prize-text {
    font-size: 1rem;
  }
  .method .method-text .text-block .center {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .method .method-text {
    font-size: 1.4rem;
  }
  .prize {
    text-align: center;
  }
  .prize-text {
    font-size: 1.3rem;
  }
}

.taiken-page .requirements-section {
  padding: 80px 0;
  background-color: #f7faf8;
  background-image: radial-gradient(#d5e7e1 15%, transparent 15%), radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
}
.taiken-page .requirements-section .section-title-en:before,
.taiken-page .requirements-section .section-title-en:after {
  content: none;
}
.taiken-page .section-play {
  padding: 80px 0 0;
}
.taiken-page .outline-table th {
  background-color: #006e53;
}
.taiken-page .outline-table td {
  background-color: #25ac71;
  color: #fff;
}
.taiken-page .outline-table td strong {
  display: inline-block;
  width: auto;
  color: #fff;
  border-radius: 0;
  text-align: left;
  margin: 0;
  padding: 0;
  background: none;
}
.taiken-page .section-title-en {
  font-weight: 700;
}

.gakushi-page .requirements-section {
  padding: 40px 0;
  background-color: #f7faf8;
  background-image: radial-gradient(#d5e7e1 15%, transparent 15%), radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
}

.gakushi-page .requirements-section .section-title-en:before,
.gakushi-page .requirements-section .section-title-en:after {
  content: none;
}

.gakushi-page .section-digital {
  padding: 80px 0;
  background-color: #f7faf8;
  background-image: radial-gradient(#d5e7e1 15%, transparent 15%), radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
}

.gakushi-page .outline-table th {
  background-color: #006e53;
}
.gakushi-page .outline-table td {
  background-color: #25ac71;
  color: #fff;
}
.gakushi-page .outline-table td strong {
  display: inline-block;
  width: auto;
  color: #fff;
  border-radius: 0;
  text-align: left;
  margin: 0;
  padding: 0;
  background: none;
}
.gakushi-page .section-title-en {
  font-weight: 700;
}

.gt7-page .section-about {
  padding: 40px 0;
}
.gt7-page .section-overview {
  padding: 40px 0;
}

.taiken-page .area-img {
  margin: 0 0 64px;
}

.gakushi-page .area-img {
  display: flex;
  justify-content: center;
  gap: 0 24px;
  margin: 0 auto 64px;
}

.gakushi-page .section-intro-text {
  font-size: 1.2rem;
  font-weight: 500;
}
.gakushi-page .outline-table {
  margin: 0 0 40px;
}

.content-area-map {
  margin: 0 0 80px;
}
.area-map .map-img + .map-img {
  margin: 32px 0 0;
}

.area-map .map-img .text {
  margin: 8px 0 0;
  font-weight: 500;
}
.content-area-map .text01 {
  margin: 8px 0 0;
  text-align: right;
  font-weight: 500;
}

@media (min-width: 768px) {
  .content-area-map {
    margin: 0 0 120px;
  }
  .area-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
  }
  .area-map .map-img + .map-img {
    margin: 0;
  }
}

.back-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 0 40px;
}

.back-btn a {
  background: #666;
}
