/* =================================
   パラパワーリフティングLP用CSS
   ================================= */

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

.para-powerlifting-lp 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;
}

.para-powerlifting-lp 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; }
}

/* =================================
   ヘッダー（FV）エリア
   ================================= */
/* 上部ロゴバナーエリア */
.top-banner {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 3;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 150px;
  object-fit: contain;
}

/* ストライプ背景エリア */
.title-bg {
  position: relative;
  background: 
    linear-gradient(
      90deg,
      #E60012 0%, #E60012 2%,
      #0068B7 2%, #0068B7 5%,
      #00A0E9 5%, #00A0E9 9%,
      #FFF100 9%, #FFF100 14%,
      #009944 14%, #009944 20%,
      #E4007F 20%, #E4007F 28%,
      #E60012 28%, #E60012 38%,
      #C8102E 38%, #C8102E 50%,
      #E60012 50%, #E60012 62%,
      #C8102E 62%, #C8102E 72%,
      #E4007F 72%, #E4007F 80%,
      #009944 80%, #009944 86%,
      #FFF100 86%, #FFF100 91%,
      #00A0E9 91%, #00A0E9 95%,
      #0068B7 95%, #0068B7 98%,
      #E60012 98%, #E60012 100%
    );
  padding: 60px 24px;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

/* 白帯エリア */
.white-band {
  background: rgba(255, 255, 255, 0.95);
  margin: 0 auto;
  max-width: 450px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

/* プロジェクトロゴエリア */
.project-logo-area {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.project-logo-img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.image-note {
  font-size: 11px;
  color: #999;
  margin-top: 6px;
  font-style: italic;
}

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

/* =================================
   コンテンツカード
   ================================= */
.content-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 191, 255, 0.08);
  margin: 40px 0;
  padding: 40px;
  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: #d32f2f;
  margin-bottom: 24px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 24px;
  padding-left: 20px;
  padding-bottom: 12px;
  position: relative;
  border-bottom: 2px solid #ffebee;
}

.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, #d32f2f, #ff5722);
}

.content-card h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20px;
  width: 60px;
  height: 2px;
  background: #d32f2f;
}

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

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

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

/* =================================
   遺伝子分析イメージ画像エリア（1枚表示）
   ================================= */
.analysis-image-area {
  margin: 0px;
  text-align: center;
}

.analysis-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* =================================
   プロジェクトの流れセクション
   ================================= */
.flow-section {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(255, 87, 34, 0.03) 100%);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-left: 4px solid #ff5722;
  padding: 12px 24px;
  margin: 32px 0;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(255, 87, 34, 0.08),
    0 1px 6px rgba(255, 87, 34, 0.05);
}

.flow-section h3 {
  color: #d32f2f;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

/* フローリスト */
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.flow-list li {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow-list li:not(:last-child) {
  margin-bottom: 8px;
}

.flow-list li:not(:last-child)::after {
  display: none;
}

/* STEP番号（矢印） */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  width: 75px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}

.flow-list li:first-child .step-number {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
}

.flow-list li:not(:first-child) .step-number {
  clip-path: polygon(0 0, 50% 12px, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
}

/* STEP色分け */
.flow-list li:nth-child(1) .step-number {
  background: #F4A08C;
}

.flow-list li:nth-child(2) .step-number {
  background: #6DBDB6;
}

.flow-list li:nth-child(3) .step-number {
  background: #F5D867;
}

.flow-list li:nth-child(4) .step-number {
  background: #7BA7CC;
}

.flow-list li:nth-child(5) .step-number {
  background: #F4A08C;
}

.flow-list li:nth-child(6) .step-number {
  background: #6DBDB6;
}

.flow-list li:nth-child(7) .step-number {
  background: #F5D867;
}

/* STEP説明文 */
.step-description {
  display: block;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
  color: #555;
  flex: 1;
}

/* =================================
   連盟情報ボックス
   ================================= */
.federation-box {
  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: 32px 0;
  border-radius: 16px;
}

.federation-box h3 {
  color: #00bfff;
  margin-bottom: 16px;
  font-size: 20px;
}

.federation-box p {
  font-weight: 600;
}

/* =================================
   ロゴ説明ボックス
   ================================= */
.logo-explanation {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.08) 0%, rgba(211, 47, 47, 0.03) 100%);
  border: 1px solid rgba(211, 47, 47, 0.15);
  border-left: 4px solid #d32f2f;
  padding: 24px;
  margin: 32px 0;
  text-align: left;
}

.logo-explanation h3 {
  color: #d32f2f;
  margin-bottom: 16px;
  font-size: 20px;
  text-align: left;
}

.logo-explanation p {
  font-weight: 600;
  text-align: left;
}

.logo-display {
  max-width: 300px;
  margin: 24px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =================================
   chatGENE for Sportsセクション
   ================================= */
.chatgene-section {
  background: linear-gradient(135deg, rgba(58, 174, 171, 0.08) 0%, rgba(58, 174, 171, 0.03) 100%);
  border: 1px solid rgba(58, 174, 171, 0.12);
  border-left: 2px solid #3AAEAB;
  margin: 40px 0;
  padding: 32px 28px;
  box-shadow: 
    0 6px 25px rgba(58, 174, 171, 0.08),
    0 2px 10px rgba(58, 174, 171, 0.05);
}

.chatgene-section h2 {
  color: #3AAEAB;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 28px;
  border: none;
  padding: 0;
}

.chatgene-section h2::before,
.chatgene-section h2::after {
  display: none;
}

.chatgene-section p {
  font-weight: 600;
}

.chatgene-section ul li {
  font-weight: 600;
}

/* =================================
   お問い合わせブロック
   ================================= */
.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);
  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);
}

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

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

.block h2::before,
.block h2::after {
  display: none;
}

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

.contact-block {
  text-align: center;
}

/* =================================
   CTAボタン
   ================================= */
.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;
  max-width: 90%;
  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%;
}

/* =================================
   レスポンシブ対応（768px以下）
   ================================= */
@media (max-width: 768px) {
  /* バナー */
  .banner-img {
    max-height: 120px;
    margin-top: 60px;　/* 高さ変える */
  }

  /* FV */
  .title-bg {
    padding: 40px 16px;
  }   

  .project-logo-area {
    max-width: 85%;
  }
    
.white-band {
    max-width: 85%;
  }    

  /* コンテンツカード */
  .content-card {
    padding: 24px;
  }

  .content-card h2 {
    font-size: 20px;
  }

  /* CTAボタン */
  .sports-cta-button-yaegasi a {
    width: 90%;
    font-size: 16px;
    height: 50px;
  }

  /* フロー */
  .flow-list {
    max-width: 100%;
  }

  .flow-list li {
    gap: 12px;
  }

  .step-number {
    width: 70px;
    height: 48px;
    font-size: 11px;
  }

  .step-description {
    font-size: 14px;
  } 
}

/* PC版バナーはデフォルトで表示、SP版は非表示 */
.sp-banner {
  display: none;
}

/* 768px以下（スマホ）の場合 */
@media (max-width: 768px) {
  /* PC版を非表示 */
  .pc-banner {
    display: none;
  }
  /* SP版を表示 */
  .sp-banner {
    display: block;
  }
}

/* 追加画像のスタイル */
.chatgene-pro-image-wrapper {
  text-align: center;
  margin: 32px 0;
}

.chatgene-pro-img {
  max-width: 75%;
  height: auto;
  border: 1px solid #e0e0e0;
}

.jppf-logo-wrapper {
  text-align: center;
  margin-top: 24px;
}

.jppf-logo-img {
  max-width: 100%;
  height: auto;
  max-width: 200px;
}
