@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: auto;
}


body {
  min-height: 100%; /* heightではなくmin-heightを使う */
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: black;
  color: white;
  overflow-y: auto; /* 明示的に縦スクロール許可 */
}
.pc{
	display: block;
}
.sp {
  display: none;
}
/* 背景 */
#bgImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;           /* ビューポート幅にする（%ではなくvw） */
  height: 100dvh;         /* モバイルで正確な高さを確保する */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7) blur(0.5px);
  z-index: 1;
  opacity: 0;
  transition: transform 2s ease, filter 1.5s ease;
  pointer-events: none;
}

/* ヘッダー */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 4rem 4rem 2rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: transform 0.5s ease;
}

.logo-small {
  font-size: 1.2rem;
  font-weight: bold;
}
.logo-small img {
    width: 220px;
    height: auto;
  }
.nav-right {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.shop-link {
  color: white;
  text-decoration: none;
}
.shop-link img {
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 120px;
    height: auto;
}
 
 
.shop-link:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.menu-open .shop-link ,.menu-open .magteck {
  display: none !important;
}
 .magteck img {
    width: 180px;
    height: auto;
  }
.hamburger {
  width: 50px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;  
  width: 100%;
  background: #fff; 
  transition: 0.4s ease;
}
.hamburger span:nth-child(2) {
  background: #ccc !important;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(20deg) translate(5px, 7px);

}
.hamburger.open span:nth-child(2) {
   opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-20deg) translate(5px, -7px);
}

.hamburger-label {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  margin-top: .3rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .site-header {
    padding: 3.5rem 3rem 2rem 4rem;
  }

  .logo-small img {
    width: 140px;
    height: auto;
  }

  .nav-right {
    gap: 2rem;
  }

  .shop-link,
  .magteck {
    display: inline-block; /* タブレットでは表示 */
  }

  .shop-link img,
  .magteck img {
    width: 100px;
    height: auto;
  }

  .hamburger {
    width: 55px;
    height: 18px;
  }

  .hamburger-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 2rem 1.3rem;
  }

  .logo-small img {
    width: 100px;
    height: auto;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
	  margin-left: .5rem;
  }

  .shop-link img,
  .magteck img {
    width: 70px; /* スマホでは小さめに */
    height: auto;
  }

  .hamburger {
    width: 40px;
    height: 18px;
  }

  .hamburger-label {
    font-size: 0.7rem;
  }
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.5s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
/* 上段：2カラム */
.menu-overlay .nav-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding:0 10% 0 15%;
  box-sizing: border-box;
}

.menu-overlay .nav-columns ul {
  list-style: none;
  padding: 0;
  width: 50%; 
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  color: #fff;
}
.menu-overlay .nav-columns ul:nth-child(2) {
  font-size: 1.7rem;
  line-height: 1.6;
}
.menu-overlay .nav-columns li {
  padding-top:20px;
  padding-bottom: 25px;
}

.menu-overlay .nav-columns li a {
  display: flex;
  align-items: flex-end;      
  gap: 1.5rem;              
  color: #fff;
  text-decoration: none;
}

.menu-overlay .nav-columns a span {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: .3rem;
}
.menu-overlay .nav-columns li.store{
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	margin-bottom: 1rem;
	padding-top:35px;
    padding-bottom: 35px;
	
}
/* Online Store ボタンのホバーアニメ */

.menu-overlay .nav-columns li.store a {
  display: block;
  perspective: 500px;
  overflow: hidden;
  display: flex;
  align-items: center; 
  justify-content: center;
  gap:2rem;
}
.menu-overlay .nav-columns li.store .text {
  font-size: 1.2rem !important;
  font-weight: 700;
  display: inline-block;
  color: transparent;
  text-shadow: 0 2.5rem 0 #fff, 0 0 0 #fff; /* ← 下に配置（見た目は正常） */
  transition: text-shadow 0.3s ease;
}

.menu-overlay .nav-columns li.store .text:hover {
  text-shadow: 0 0 0 #fff, 0 -2.5rem 0 #fff; /* ← 上にスライドして消える */
}
/* 下段：会社情報（100%幅） */
.menu-overlay .company {
  width: 100%;
  border-top: 1px solid #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  padding:80px 10% 80px 15%;
  box-sizing: border-box;
}

.menu-overlay .company .left,
.menu-overlay .company .right {
  flex: 1 1 300px;
}
.menu-overlay .company .right p{
  display: flex;
  gap:2rem;
  align-items: center;	
}
.menu-overlay .company p,
.menu-overlay .company a {
  font-size: 1.1rem;
  line-height: 1rem;
  color: #ccc;
  text-decoration: none;
}
.menu-overlay .company a img{
  margin-top: .5rem;
}
.menu-overlay .company a:hover {
  text-decoration: none;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}


/* 親に hover があるとき、li.store を除いた a をグレースケールに */
.menu-overlay .nav-columns:hover li:not(.store) a {
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* hover中のリンクだけは元の状態に */
.menu-overlay .nav-columns li:not(.store) a:hover {
  opacity: 1;
  filter: none;
}

@media screen and (max-width: 768px) {
  .menu-overlay {
    align-items: flex-start;
    padding-top: 100px;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOSで慣性スクロールを有効に */
  }
	
  .menu-overlay nav {
    gap: 20px;
  }
  .menu-overlay .nav-columns {
    flex-direction: column;
    padding: 0 8%;
  }

  .menu-overlay .nav-columns ul {
    width: 100%;
    font-size: 1.3rem;
  }

  .menu-overlay .nav-columns ul:nth-child(2) {
    font-size: 1.3rem;
  }

  .menu-overlay .nav-columns li {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .menu-overlay .nav-columns li.store {
    font-size: 1.2rem;
    padding-top: 25px;
    padding-bottom: 25px;
	margin-top:20px;
  }

  .menu-overlay .nav-columns li.store a {
    text-align: center;

  }

  .menu-overlay .nav-columns a span {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
.menu-overlay .nav-columns li.privacy{
    font-size: 1.2rem;
}
.menu-overlay .nav-columns li.privacy span{
    letter-spacing: -1px;
}
  .menu-overlay .company {
    flex-direction: column;
    padding: 40px 10%;
    gap: 20px;
	border:none;
  }

  .menu-overlay .company .left,
  .menu-overlay .company .right {
    flex: 1 1 auto;
    width: 100%;
  }

  .menu-overlay .company p,
  .menu-overlay .company a {
    font-size: 1rem;
    line-height: 1.5rem;
  }
.pc {
    display: none;
  }
.sp {
    display: block;
  }
}


/* セクション構成 */
/* 高さ100vhが必要なセクションに適用 */
.section {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 通常セクション（高さ自動・上から下へ表示）に適用 */
.section-default {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0;
  display: block; 
}
.gray {
  background: #c8c8c8;
  color: black;
}

/* セクション1イントロ */
.intro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

/* ロゴを上下左右中央に配置 */
.main-logo {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0;
  filter: blur(10px);
}
.main-logo img {
  width: 100%;
  max-width: 400px;
  height: auto;
}


/* スクロールアイコンを下中央50pxに配置 */
.scroll-text {
  position: absolute;
  bottom: 11rem;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  opacity: 0;
  filter: blur(10px);
}
/* section2 **********************************************************************/
#section2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
  padding-right: 0;
}
#section2Video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;

  opacity: 0;     /* ← 初期状態で非表示 */
  transform: scale(1.2); /* ← 初期は少し拡大状態で待機 */
  will-change: transform, opacity; /* ← アニメーション最適化 */
}
.section.video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
	 /*filter: brightness(50%); 少し暗くすることで文字を読みやすく*/
}
.video-bg video {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.section2-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(-6vw); 
}
.section2-content h2,
.section2-content p {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
}
.section2-content h2{
	font-size:3rem;
	font-weight: 300;
}
.section2-content p{
	font-size:1.5rem;
	line-height: 3.6rem;
	margin-top: 5rem;
}
@media (max-width: 1024px) {
  .section2-content {
    max-width: 90%;
    transform: translateX(-3vw); /* タブレットでは少しだけ左寄せ */
  }

  .section2-content h2 {
    font-size: 2.5rem;
  }

  .section2-content p {
    font-size: 1.3rem;
    line-height: 2.8rem;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  #section2 {
    justify-content: center;
    padding: 0 5vw;
  }

  .section2-content {
    max-width: 100%;
    transform: none; /* スマホでは中央配置 */
  }

  .section2-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .section2-content p {
    font-size: 1.1rem;
    line-height: 2.2rem;
    text-align: center;
    margin-top: 2rem;
  }
}
/* section3 **********************************************************************/
#section3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10vw;
}

.section3-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  transform: translateX(-350px);
}
.section3-content h2,
.section3-content p {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
}

.section3-content h2 {
  font-family: "Anton", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
}

.section3-content p {
  font-size: 1.8rem;
  margin-top: 1.2rem;
  font-weight: 400;
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
  .section3-content {
    transform: translateX(-200px);
  }
}

@media (max-width: 768px) {
  .section3-content {
    transform: none;
  }

  .section3-content h2 {
    font-size: 2.5rem;
  }

  .section3-content p {
    font-size: 1.2rem;
  }
}

/* section4 **********************************************************************/
#section4 {
  position: relative;
  display: block;
  text-align: left;
}
#section4 .full {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end; 
  align-items: center;        
  padding-right: 16vw; 
}
.section4-content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin-top: 5rem;
}
.section4-content p{
	font-size:1.5rem;
	line-height: 3.6rem;
	opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
}

@media (max-width: 1024px) {
  .section4-content {
    transform: translateX(-6vw); /* タブレットでは少しだけ左寄せに弱める */
    max-width: 90%;
  }

  .section4-content p {
    font-size: 1.3rem;
    line-height: 3rem;
  }
}

@media (max-width: 768px) {

  #section4 {
    padding: 0;
    text-align: center;
  }

  #section4 .full {
    height: 100vh;
    justify-content: center !important; 
    align-items: center;
    padding: 0 1vw;
  }

  .section4-content {
    transform: none;
    max-width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .section4-content p {
    font-size: 1.1rem;
    line-height: 2.2rem;
  }
	.bg-image02 {
    transform: translateX(-70px); 
  }
}
@media (max-width: 380px) {
	.section4-content p {
    font-size: 1rem;
    line-height: 2.2rem;
  }
}
/* section5 **********************************************************************/
#section5 .section5-content {
  width: 100%;
  border-bottom:1px solid #000;
}

#section5 .section5-content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 5rem auto 2rem;
  font-weight: 800;
}

/* section6 **********************************************************************/
.section6-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top:5em;
}

.section6-content .item {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section6-content .item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* 擬似要素でピカピカエフェクト */
.section6-content .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.35) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(1px);
  opacity: 0;
  pointer-events: none;
}

.section6-content .item:hover::before {
  animation: shineMove 1s ease-in-out forwards;
  opacity: 1;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.section6-content .item img {
  width: 100%;
  height: auto;
  display: block;
}

.section6-content .item-category {
  height: 300px; /* 高さを固定 */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 上下中央 */
  align-items: center;     /* 水平方向中央 */
  background-color: #000;
  color: #fff;
  text-align: center;
}

.section6-content .item-category h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.section6-content .item-category p {
  font-size: 1rem;
}
.section6-content .item-link {
  flex: 1 1 calc(25% - 20px);
  text-decoration: none;
  color: inherit;
}

.section6-content .button {
  margin: 4.5rem auto 6rem;
}

.section6-content .button a {
  color: #fff;
  background-color: #000;
  padding: 1rem 2.3rem;
  border-radius: 90px;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  text-decoration: none;
  gap: 1rem;  
  border:1px solid #fff;
  font-size:1.3rem;
  letter-spacing: .1rem;
}
/* アニメーション対象のテキスト */
.section6-content .btn-text {
  display: inline-block;
  perspective: 500px; /* 奥行きを設定 */
  overflow: hidden;
}

.section6-content .button .text {
  color: transparent;
  text-shadow: 0 -1.2em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s ease;
}

.section6-content .button .text:hover {
  text-shadow: 0 0 0 #fff, 0 1.2em 0 #fff;
}

@media screen and (max-width: 1024px) {
  .section6-content .item-link {
    flex: 1 1 calc(50% - 20px); /* タブレット：2列 */
  }
}

@media screen and (max-width: 600px) {
  .section6-content .item-link {
    flex: 1 1 100%; /* スマホ：1列 */
  }
}

/* section7 **********************************************************************/
#section7{
	padding-bottom: 6rem;
}
#section7 h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto 3rem;
  font-weight: 800;
}
/* スライド */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 横スクロールアニメーション */
.slider-track {
  display: flex;
  will-change: transform;
}

/* スライド1枚のサイズ */
.slider-item {
  flex: 0 0 auto;
  width: 20vw;
  margin-right: 20px;
}
.slider-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.slider-item:hover img {
  transform: scale(1.05);
}
/* アニメーション */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* タブレットサイズ以下（2列～3列） */
@media screen and (max-width: 1024px) {
  .slider-item {
    width: 30vw; /* 少し大きく */
    margin-right: 16px;
  }
}

/* スマホサイズ（1.5列～2列） */
@media screen and (max-width: 600px) {
  .slider-item {
    width: 55vw; /* 画面の約半分 */
    margin-right: 10px;
  }

  .slider-item img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

}
/* section8 **********************************************************************/
#section8 {
 display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  text-align: center;
}

/* タイトルのスタイル */
#section8 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  width:100%;
  border-bottom: 1px solid #000;
}

.section8-subtitle {
  width: 100%;
  max-width: 1380px;
  background-color: #323232;
  margin: 0 auto 3.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: .5rem 0;
  text-align: center;
}
.section8-subtitle img {
  height: 40px;
  vertical-align: middle;
  max-width: 100%;
}
@media (max-width: 768px) {
.section8-subtitle {
  width: 90%;
}
.section8-subtitle .subtitle-img-wide {
    height: auto;
    max-width: 100%;
  }
}
/* -------------------------------
 初期表示エリア（section8）
-------------------------------- */

.section8-content {
  display: grid;
  grid-template-columns: 
  repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1420px;
  margin: auto 0;
  width: 100%;
  padding: 0 20px;
}

#section8 .button {
  margin: 4rem auto 1rem;
  color: #000;
  background-color: #fff;
  padding: 1rem 3rem;
  border-radius: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border: 1px solid #000;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-decoration: none;
  overflow: hidden;
   cursor: pointer;
}

/* アニメーション対象のテキスト */
#section8 .more-button {
  display: inline-block;
  perspective: 500px; 
  overflow: hidden;

}

#section8 .button .text {
  color: transparent;
  text-shadow: 0 -1.2em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s ease;
}
#section8 .button .text:hover {
  text-shadow: 0 0 0 #000, 0 1.2em 0 #000;
}
@media (max-width: 768px) {
#section8 .button {
  margin: 0 auto 1rem;
	
}
}
/* -------------------------------
 共通アスリートカード（初期もオーバーレイも）
-------------------------------- */
.athlete {
  text-align: center;
  color: #000;
}

.athlete img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
}
.athlete .name{
	font-size:1.3rem;
	font-weight: 700;
	margin: .7rem auto 1.2rem;
}
.athlete .name .player{
	font-size:1.15rem;
	margin-left: .7rem;
}
.athlete .pr{
	line-height: 1.7rem;
}
/* -------------------------------
 オーバーレイ全体
-------------------------------- */

.athlete-overlay {
  position: fixed;
  inset: 0;
  background: #191919;
  color: white;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  overflow-y: auto;

  /* アニメーションの初期状態 */
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.athlete-overlay.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}


/* -------------------------------
 オーバーレイ内のヘッダー
-------------------------------- */
.overlay-header{
  position: relative;
  display: flex;
  justify-content: center;        
  align-items: center;
  height: 60px;
  margin-top:4rem;
  margin-bottom: 5rem;
  border-bottom:1px solid #fff;
	padding-bottom: 2rem;
  z-index: 1000;
}
.overlay-footer{
  position: relative;
  display: flex;
  justify-content: center;        
  align-items: center;
  height: 60px;
  margin-top:0;
  margin-bottom: 2rem;
  z-index: 1000;
}
.overlay-header span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}
.overlay-header button{
	margin-left: auto;
	margin-right: 2rem;
	margin-bottom: .5rem;
}
.overlay-header button span {
  font-size: .9rem;
  margin-top: 1.1rem;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
}
.overlay-footer button span{
  font-size: .9rem;
  line-height: 5rem;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  color:#fff;
}
/* -------------------------------
 閉じるボタン（右上/下中央）
-------------------------------- */
.close-button {
  position: fixed;
  top: 20px;        /* 右上の位置調整 */
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 9999;    /* 必要に応じて調整 */
}

.close-icon {
  font-size: 24px;
  background: transparent;
  border: none;
  color: #000;      /* 色はお好みで */
}

.close-text {
  margin-top: 4px;
  font-size: 12px;
  color: #000;
  font-weight: bold;
  user-select: none; /* テキスト選択防止 */
}

.close-btn {
  position: relative;
  width: 55px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 2px;
  background-color: white;
  transform-origin: center;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(20deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-20deg);
}



.athlete-overlay.active + .close-btn.bottom-center {
  display: block;
}

/* -------------------------------
 オーバーレイのアスリートリスト
-------------------------------- */
.overlay-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 3rem;
}

.athlete-overlay .athlete {
  color: #fff;
}

.athlete-overlay .athlete p:nth-child(3) {
  font-size:1.3rem;
	font-weight: 700;
	margin: .7rem auto 1.2rem;
}
.athlete-overlay .athlete p:nth-child(4) {
    margin-bottom: 4rem;
}
.athlete-overlay .athlete span{
	font-size:1.15rem;
	margin-left: .7rem;
}


/* -------------------------------
 レスポンシブ対応
-------------------------------- */
@media (max-width: 1024px) {
	.athlete-overlay{
     padding: 0;
	}
	.overlay-header{
  margin-top:3rem;
  margin-bottom: 4rem;
}
  .overlay-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section8-content ,.overlay-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 50px;
  }
.overlay-header button span {
  margin-top: .8rem;
}
.overlay-header span {
  font-size: 1.9rem;
  letter-spacing: 0;
}

.close-btn {
  width: 45px;
  height: 24px;
}

.close-btn::before,
.close-btn::after {
  width: 45px;
}

}

@media (max-width: 480px) {
  .section8-content ,.overlay-content {
    grid-template-columns: 1fr;
  }
}


/* section9 **********************************************************************/
#section9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

/* タイトルのスタイル */
#section9 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.section9-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 700px;
  font-size: 1rem;
	margin-bottom: 4rem;
}

/* 各ニュース項目（横並び） */

.news {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 15px 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
}
.news a {
  position: relative;
  display: inline-block;
  color: inherit; /* テキスト色を継承 */
  text-decoration: none; /* デフォルト下線を消す */
  transition: color 0.3s ease;
}

.news a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* テキストの下に線を出す */
  width: 0;
  height: 2px;
  background-color: #000; /* 線の色 */
  transition: width 0.4s ease;
}

.news a:hover::after {
  width: 100%;
}

/* 日付部分 */
.news .day {
  min-width: 100px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}



/* ボタン全体のスタイル */
.section9-content .button {
  margin: 2rem auto 6rem;
}

.section9-content .button a {
  color: #000;
  background-color: #fff;
  padding: 1rem 3rem;
  border-radius: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border: 1px solid #000;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-decoration: none;
  overflow: hidden;
}

/* アニメーション対象のテキスト */
.section9-content .btn-text {
  display: inline-block;
  perspective: 500px; /* 奥行きを設定 */
  overflow: hidden;
}

.section9-content .button .text {
  color: transparent;
  text-shadow: 0 -1.2em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s ease;
}

.section9-content .button .text:hover {
  text-shadow: 0 0 0 #000, 0 1.2em 0 #000;
}



/* レスポンシブ対応 */
@media (max-width: 600px) {
  .news {
    flex-direction: column;
  }

  .news .day {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* footer **********************************************************************/
footer {
  background: linear-gradient(to bottom, #323232 0%, #191919 100%);
  color: #fff;
  padding: 50px 0 10px;
  text-align: center;
}
footer a {
	color: #fff;
  text-decoration: none;
  display: inline-block;
}

footer a span {
  transition: filter 0.3s ease;
}

footer a:hover {
  text-decoration: none;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
footer a:hover img {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}


.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  font-size: 1.2rem;
}


footer .logo{
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 1rem;
	margin-top: 60px;
	margin-bottom: 30px;
}
footer .company{
	font-size:1.2rem;
	line-height: 2.5rem;
}
footer .sns {
  font-size: 1.2rem;
  line-height: 3.8rem;
  margin: 2rem auto 3rem;
}
footer .privacy{
	font-size: .8rem;
	margin-bottom: 1rem;
}
footer .copy{
	font-size:.8rem;
	
}
/* モバイル用の縦並び */
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

