/* =================================
   ベース設定・リセット
   ================================= */
* {
  box-sizing: border-box;
}

body {
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(240, 248, 255, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 25%, #ffffff 50%, #f0f8ff 75%, #e6f3ff 100%);
  background-size: 800px 800px, 600px 600px, 400px 400px, 100% 100%;
  background-attachment: fixed;
  font-family: 'Yu Gothic', 'Meiryo', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  text-align: left;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0,191,255,0.02) 1px, transparent 1px),
    radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: textureMove 60s linear infinite;
}

@keyframes textureMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

/* =================================
   背景幾何学模様
   ================================= */
.bg-dynamic-elements {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(0, 191, 255, 0.2);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 3px; height: 3px;
  left: 10%; top: 20%;
  animation-delay: 0s;
  animation-duration: 20s;
  background: rgba(0, 191, 255, 0.15);
}

.particle:nth-child(2) {
  width: 4px; height: 4px;
  left: 20%; top: 60%;
  animation-delay: 3s;
  animation-duration: 25s;
  background: rgba(0, 191, 255, 0.2);
}

.particle:nth-child(3) {
  width: 2px; height: 2px;
  left: 70%; top: 30%;
  animation-delay: 6s;
  animation-duration: 18s;
  background: rgba(0, 191, 255, 0.15);
}

.particle:nth-child(4) {
  width: 3px; height: 3px;
  left: 80%; top: 70%;
  animation-delay: 9s;
  animation-duration: 22s;
  background: rgba(0, 191, 255, 0.2);
}

.particle:nth-child(5) {
  width: 3px; height: 3px;
  left: 50%; top: 80%;
  animation-delay: 12s;
  animation-duration: 19s;
  background: rgba(0, 191, 255, 0.15);
}

.particle:nth-child(6) {
  width: 4px; height: 4px;
  left: 30%; top: 40%;
  animation-delay: 15s;
  animation-duration: 24s;
  background: rgba(0, 191, 255, 0.2);
}

.particle:nth-child(7) {
  width: 3px; height: 3px;
  left: 15%; top: 55%;
  animation-delay: 18s;
  animation-duration: 23s;
  background: rgba(0, 191, 255, 0.15);
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
  25% { transform: translateY(-100px) rotate(90deg); opacity: 0.4; }
  50% { transform: translateY(-50px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateY(-150px) rotate(270deg); opacity: 0.15; }
}

.geometric-shape {
  position: absolute;
  animation: geometricRotate 30s linear infinite;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.05));
}

.triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 200px solid rgba(0, 191, 255, 0.08);
  left: -5%;
  top: 40%;
  animation: triangleMove 25s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.1));
}

.diamond {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(0, 191, 255, 0.05), rgba(0, 191, 255, 0.1));
  transform: rotate(45deg);
  left: 80%;
  top: 10%;
  animation: diamondMove 20s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.1));
}

.hexagon {
  width: 200px;
  height: 116px;
  background: linear-gradient(60deg, rgba(0, 191, 255, 0.08), rgba(0, 191, 255, 0.05));
  position: relative;
  left: 45%;
  top: 70%;
  animation: hexagonMove 22s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.08));
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 58px solid rgba(0, 191, 255, 0.08);
}

.hexagon:after {
  top: 100%;
  border-top: 58px solid rgba(0, 191, 255, 0.08);
}

.circle-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(0, 191, 255, 0.1);
  border-radius: 50%;
  left: 75%;
  top: 55%;
  animation: circleMove 18s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.08));
}

.lightning {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 90px solid rgba(0, 191, 255, 0.1);
  left: 5%;
  top: 15%;
  animation: lightningMove 16s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.1));
}

.lightning:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 60px solid transparent;
  border-top: 90px solid rgba(0, 191, 255, 0.1);
  left: -30px;
  top: 90px;
}

@keyframes geometricRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes triangleMove {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  100% { transform: translateY(-200px) rotate(180deg) scale(1.1); }
}

@keyframes diamondMove {
  0% { transform: rotate(45deg) translateY(0px) scale(1); }
  100% { transform: rotate(225deg) translateY(-150px) scale(0.9); }
}

@keyframes hexagonMove {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  100% { transform: translateY(-180px) rotate(120deg) scale(1.05); }
}

@keyframes circleMove {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  100% { transform: translateY(-120px) rotate(360deg) scale(1.2); }
}

@keyframes lightningMove {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  100% { transform: translateY(-160px) rotate(15deg) scale(1.1); }
}

.wave-line {
  position: absolute;
  width: 500px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.15), rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.15), transparent);
  animation: waveMove 15s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.1));
}

.wave-line:nth-child(15) {
  left: 10%;
  top: 30%;
  animation-delay: 0s;
}

.wave-line:nth-child(16) {
  left: 40%;
  top: 60%;
  animation-delay: 5s;
}

.wave-line:nth-child(17) {
  left: 20%;
  top: 80%;
  animation-delay: 10s;
  width: 400px;
  height: 2px;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(-200px) scaleX(0.5); opacity: 0; }
  50% { transform: translateX(200px) scaleX(1); opacity: 1; }
}

/* =================================
   ヘッダー（タイトル）エリア
   ================================= */
.title-bg {
  position: relative;
  background: url('https://d2w53g1q050m78.cloudfront.net/chatgenejp/uploads/LP/sports/article/image/002/SHONAN記事バナー.webp') no-repeat center center;
  background-size: contain;
  padding: 0;
  overflow: hidden;
  z-index: 1;
  min-height: 400px;
}

.title-bg::before {
  display: none;
}

.title-bg > * {
  position: relative;
  z-index: 1;
}

.title-section {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  position: relative;
  z-index: 1;
}

.subtitle {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin: 24px 0 0 0;
  color: #555;
}

.subtitle-section {
  background: rgba(255, 255, 255, 0.98);
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  position: relative;
  z-index: 1;
  margin: 0;
}

.subtitle {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* =================================
   メインコンテンツエリア
   ================================= */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* =================================
   目次
   ================================= */
.toc-container {
  max-width: 600px;
  margin: 0 auto 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #e1e8ed;
}

.toc-title {
  text-align: center;
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: bold;
}

.toc-list {
  padding-left: 0;
  counter-reset: item;
  list-style: none;
}

.toc-item {
  display: block;
  margin-bottom: 5px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.toc-item:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #3498db;
}

.toc-link {
  color: #34495e;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.toc-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

.toc-sub-item {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 14px;
}

.toc-sub-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc-sub-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* =================================
   チーム情報エリア
   ================================= */
.team-info {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(0, 191, 255, 0.03) 100%);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-left: 4px solid #00bfff;
  padding: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 191, 255, 0.08),
    0 1px 6px rgba(0, 191, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.team-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.02) 0%, transparent 50%, rgba(0, 191, 255, 0.02) 100%);
  pointer-events: none;
}

.team-info > * {
  position: relative;
  z-index: 1;
}

.team-info h2 {
  color: #00bfff;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 28px;
}

.team-info > p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* =================================
   プレイヤープロフィール
   ================================= */
.players-section {
  margin-bottom: 32px;
}

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

.player-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 
    0 4px 15px rgba(0, 191, 255, 0.1),
    0 1px 6px rgba(0, 191, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.player-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 191, 255, 0.15),
    0 3px 10px rgba(0, 191, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.02) 0%, transparent 50%, rgba(0, 191, 255, 0.02) 100%);
  pointer-events: none;
}

.player-card > * {
  position: relative;
  z-index: 1;
}

.player-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 16px auto;
  display: block;
  transition: all 0.3s ease;
}

.player-photo:hover {
  transform: scale(1.05);
}

.player-name {
  color: #00bfff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.player-info {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
}

/* =================================
   コンテンツカード
   ================================= */
.content-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 191, 255, 0.08);
  margin: 40px 0;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 191, 255, 0.05),
    0 1px 6px rgba(0, 191, 255, 0.03);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.content-card h2 {
  color: #00bfff;
  margin-bottom: 24px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 24px;
  padding-left: 20px;
  padding-bottom: 12px;
  position: relative;
  border-bottom: 2px solid #e1f4fd;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #00bfff, #46b6da);
  border-radius: 2px;
}

.content-card h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20px;
  width: 60px;
  height: 2px;
  background: #00bfff;
  border-radius: 1px;
}

.content-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-card ul {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 20px;
}

.content-card li {
  margin-bottom: 8px;
}

.gene-image {
  width: calc(100% + 40px);
  max-width: none;
  height: auto;
  margin: 32px -20px;
  display: block;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* =================================
   セクションスタイル
   ================================= */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.content-section h2 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-section h3 {
  color: #34495e;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* =================================
   ブロック要素
   ================================= */
.block {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(0, 191, 255, 0.03) 100%);
  border: 1px solid rgba(0, 191, 255, 0.12);
  border-left: 2px solid #00bfff;
  margin: 40px 0;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 
    0 6px 25px rgba(0, 191, 255, 0.08),
    0 2px 10px rgba(0, 191, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.02) 0%, transparent 50%, rgba(0, 191, 255, 0.02) 100%);
  pointer-events: none;
}

.block:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(0, 191, 255, 0.12),
    0 3px 15px rgba(0, 191, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.block > * {
  position: relative;
  z-index: 1;
}

.block h2 {
  color: #00bfff;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 28px;
}

.block p {
  color: #555;
  line-height: 1.7;
}

/* =================================
   ボタン
   ================================= */
a.btn {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff 0%, #0088cc 100%);
  color: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 191, 255, 0.2);
}

a.btn:hover {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
}

.sports-cta-button-yaegasi {
  text-align: center;
}

.sports-cta-button-yaegasi a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 60px;
  margin: auto;
  margin-top: 2rem;
  border: 1px solid #fff;
  border-radius: 100px;
  box-shadow: 0 3px 6px #999;
  background-color: #00E5C2;
  background-image: linear-gradient(to right, #4BDA3C 0%, #46B6DA 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold; 
  text-decoration: none;
}

.sports-cta-button-yaegasi a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  transition: 0.8s;
}

.sports-cta-button-yaegasi a:hover::before {
  left: 100%;
}

/* =================================
   フローチャート
   ================================= */
.container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.flow-chart {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.main-box {
  border: 3px solid #2196F3;
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #2196F3;
  margin: 5px 0 0 0;
  line-height: 1.3;
}

.arrows-and-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 20px solid #2196F3;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  flex-shrink: 0;
}

.result-box {
  border: 2px solid #2196F3;
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.result-text {
  font-size: 16px;
  font-weight: bold;
  color: #2196F3;
  margin: 0;
  line-height: 1.4;
}

/* =================================
   画像ギャラリー
   ================================= */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 32px -20px;
  padding: 0;
}

.image-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 50px;
}

.image-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.15);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.image-caption {
  padding: 12px 16px;
  font-size: 14px;
  color: #555;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.4;
}

/* =================================
   リンク効果
   ================================= */
.heading-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.heading-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.heading-link:hover {
  color: #007bff;
}

.heading-link:hover::after {
  width: 100%;
}

.talk-img a img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.talk-img a:hover img {
  opacity: 0.8;
  transform: scale(1.02);
}

.heading-link:focus,
.talk-img a:focus {
  outline: none;
}

/* =================================
   表示/非表示クラス
   ================================= */
.sp-only { 
  display: none; 
}

.pc-only { 
  display: block; 
}

/* =================================
   16:9アスペクト比対応（古いブラウザ用）
   ================================= */
@supports not (aspect-ratio: 1) {
  .image-item::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  
  .image-item img {
    position: absolute;
    inset: 0;
  }
}

/* =================================
   レスポンシブ対応
   ================================= */

/* タブレット対応：768px-1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .sports-cta-button-yaegasi a {
    width: auto;
    height: auto;
    padding: 0.75em;
    font-size: 16px;
    display: inline-block;
    margin: 1em;
  }
}

/* スマホ対応：768px以下 */
@media (max-width: 768px) {
  main { 
    padding: 0 16px;
    margin: 0 auto; 
  }
  
  .main-title { 
    font-size: 2rem; 
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.5;
  }
  
  .title-bg { 
    min-height: 0;
    padding-bottom: 70%;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    margin: 0;
    margin-top: 60px;
    display: block;
    position: relative;
    overflow: visible;
    z-index: 0;
  }
  
  .subtitle-section {
    padding: 16px;
    margin: 0;
    margin-top: -70px;
  }

  .team-info {
    margin-top: 20px;
  }
  
  .particle { 
    display: none; 
  }
  
  .geometric-shape { 
    opacity: 0.1; 
  }
  
  .wave-line { 
    width: 200px; 
  }
  
  .triangle {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 80px solid rgba(0, 191, 255, 0.05);
    left: -10%;
  }
  
  .diamond { 
    width: 100px; 
    height: 100px; 
    left: 70%; 
  }
  
  .hexagon { 
    width: 80px; 
    height: 46px; 
    left: 40%; 
  }
  
  .hexagon:before, 
  .hexagon:after {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
  
  .hexagon:before { 
    border-bottom: 23px solid rgba(0, 191, 255, 0.05); 
  }
  
  .hexagon:after { 
    border-top: 23px solid rgba(0, 191, 255, 0.05); 
  }
  
  .circle-accent { 
    width: 60px; 
    height: 60px; 
    left: 60%; 
  }
  
  .lightning { 
    border-left: 24px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 40px solid rgba(0, 191, 255, 0.08);
  }
  
  .lightning:after {
    border-left: 16px solid transparent;
    border-right: 24px solid transparent;
    border-top: 40px solid rgba(0, 191, 255, 0.08);
    left: -16px;
    top: 40px;
  }
  
  .players-grid {
    display: block;
  }
  
  .player-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 16px;
    padding: 16px;
  }
  
  .player-photo {
    width: 80px;
    height: 80px;
    margin: 0 16px 0 0;
    flex-shrink: 0;
  }
  
  .player-content {
    flex: 1;
  }
  
  .player-name {
    font-size: 16px;
    text-align: left;
    margin-bottom: 8px;
  }
  
  .player-info {
    font-size: 13px;
    text-align: left;
  }
  
.image-gallery {
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px auto;
  justify-items: center;
}
  
  .image-item {
    max-height: 180px;
  }
  
  .image-item img {
    max-height: 180px;
  }
  
  .image-caption {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .gene-image {
    width: 100%;
    max-width: 100%;
    max-height: 300px;
    margin: 32px 0;
    display: block;
  }
  
  .talk-img img {
    max-width: 100%;
    max-height: 400px;
  }
  
  .flow-chart {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-box {
    min-width: auto;
    width: 100%;
  }
  
  .arrows-and-boxes {
    width: 100%;
  }
  
  .flow-item {
    gap: 10px;
  }
  
  .arrow {
    transform: rotate(90deg);
  }
  
  .main-subtitle {
    font-size: 2rem;
  }
  
  .sports-cta-button-yaegasi a {
    display: inline-block;
    margin: 1em;
    width: auto;
    height: auto;
    padding: 0.75em;
    font-size: 16px;
  }
  
  .sp-only { 
    display: block;
  }
  
  .pc-only { 
    display: block;
  }
}