body {
  margin: 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  overflow: auto;
  background: rgba(80, 95, 80, 0.105);
  background-image: url('../assets/images/left-A.png');
  background-position: center;

}

.hero {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  overflow: visible; /* ← スクロールさせない */
}

/* 左側 */
.left-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  

}

.overlay {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-left: 0%;
}

.overlay h1 {
  color: #15a737;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin: 0;
}

.overlay p {
  color: #707070;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 200;
  opacity: 0.8;
}

.page-links a {
  display: inline-block;      /* 幅・高さを自由にできるようにする */
  text-align: left; 
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;       /* 上下左右の余白 */
  text-decoration: none;
  color: #707070;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;         /* 任意で角丸 */

}

.page-links a:hover {
  background-color: #15a73791;
  color: #fff;

}

/* 左サイド内のフッター */
.side-footer {
  position: absolute;
  bottom: 40px; /* 左サイド下からの距離 */
  left: 25%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.side-footer .social-links {
  margin-top: 6px;
}

.side-footer .social-links a {
  color: #ccc;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-footer .social-links a:hover {
  color: #fff;
}



/* 右側 */
.right-side {
  width: 50%;
  min-height: 100vh; /* ← height から変更 */
  position: relative;
  overflow: hidden;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1.0; /* ← 透明度（0.0～1.0）*/
}

/* MUTEボタン */
/* ===== PC表示 ===== */
#muteBtn {
  position: absolute;  /* 親要素 .right-side 内で右下 */
  bottom: 3%;
  right: 10%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background: #15a737;
  border: 1px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 9999;
}


#muteBtn:hover {
  color: #15a737;
  background: #fff;
  transform: scale(1.1);
}

/* ===== ABOUTポップアップ（右半分スライド） ===== */
.about-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;         /* 右半分 */
  height: 100%;
  background: #0e170d6f;
  background-image: url('../assets/images/profile_face.jpg');
  background-size: 150%;
  background-position: 95% 30%; /* ← 左へ10%寄せる */
  background-repeat: no-repeat;
  opacity: 0.95; /* ← 透明度（0.0～1.0）*/
  transition: right 1.2s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
  overflow-y: auto;
}


.about-popup.active {
  right: 0;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

/* コンテンツ全体を縦並びに */
.about-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end; /* ←右寄せ */
  align-items: center;
  padding: 0 60px 80px 0;
  box-sizing: border-box;
}


/* 写真は背景化したので非表示へ */
.about-photo-area {
  display: none;
}

/* テキスト部分：下60% */
.about-text {
  color: #ffffff;
  width: 40%;
  text-align: left;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  padding: 18px 20px;
  border-radius: 10px;
}

.about-text h2 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 400;

}


.about-text p {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin: 0 0 15px 0;
  line-height: 1.6;
  box-sizing: border-box;
}






/* ===== スマホ対応 ===== */
@media (max-width: 1200px){
 /* 画面全体を1画面分にする */
   .hero {
    width: 100%;
    height: 100vh; /* ← 画面ぴったり */
    overflow: hidden; /* ← スクロール防止 */
    display: flex;
    flex-direction: column;
  }

  .left-side {
    width: 100%;
    flex: 0 0 auto;
    padding: 20px;
  }

 .side-footer {
    font-size: 0.7rem;  /* 小さくする */  
    position: static; /* ←絶対位置を解除して自然配置に */
    transform: none;
    margin-top: 5px;
    
  }

  /* 下の動画エリアが「残り全部」を埋める */
  .right-side {
    width: 100%;
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  /* 動画を right-side にピッタリはめる */
 #bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .video-grid {
    display: flex;
    flex-direction: column;
    flex: 1;                  /* 親の高さにフィット */
    gap: 0;
  }

  .video-wrapper {
    flex: 1;                  /* 親の高さいっぱい */
    margin: 0;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;             /* 親に完全フィット */
    border: none;
    display: block;            /* ブラウザ余白防止 */
  }


  /* UNMUTE ボタン常に表示 */
  #muteBtn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
  }


  .overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* 上寄せ */
    align-items: flex-start;      /* 左揃え */
    text-align: left;             /* テキスト左揃え */
    padding: 20px;                /* 左右余白を統一 */
    box-sizing: border-box;
  }

  .overlay h1 {
    margin: 0 0 5px 0;   /* 下余白だけ確保 */
    width: 100%;
    text-align: left;    /* 左揃え */
    font-size: 1.4rem;
  }

  .overlay p {
    margin: 0 0 10px 0;
    width: 100%;
    text-align: left;
    font-size: 0.8rem;
    color: #707070;
  }

  .page-links {
    width: 100%;
    margin: 0;
    padding: 0;           /* 左端を親に揃える */
  }

  
  .page-links a {
    display: inline-block;   /* テキスト幅に合わせる */
    width: auto;             /* 幅はテキストに依存 */
    padding: 2px 5px;        /* 上下2px、左右5pxくらいで調整 */
    margin-bottom: 0.6px;      /* リンク間の縦間隔 */
    text-align: left;        
    font-size: 0.8rem;
    background: none;        /* 通常は背景なし */
    border-radius: 4px;      /* 任意 */
    transition: background 0.3s, color 0.3s;
  }

  .page-links a:hover {
    background-color: #15a73791;  /* 背景色は文字部分だけ */
    color: #fff;
  }

  .about-popup {
    width: 100%;
    right: -100%;
    background-image: none !important; /* ←一箇所に統一 */
    background: #0a0a0a8e;
    overflow-y: auto;
  }

  .about-popup.active {
    right: 0;
  }

  .about-popup {
    width: 100%;
    right: -100%;
    background-image: none !important; /* ←一箇所に統一 */
    background: #0a0a0a8e;
    overflow-y: auto;
  }

  .about-popup.active {
    right: 0;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ★中央に変更★ */
    align-items: center;
    padding: 80px 20px 40px; 
    box-sizing: border-box;
  }

  /* 写真を上に表示（左寄せ指定効く！） */
  .profile-photo {
    object-fit: cover;
    width: 100%;
    height: 300px;
    object-position: 20% 25%; 
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .about-text {
    width: 100%;
    max-width: 600px;
    color: #fff;
    line-height: 1.75;
    margin-top: 16px;
    padding: 0 16px;
    text-align: center; /* ←これが必要！ */
  }

  .about-text h2 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
 /* 紹介文は左寄せ維持 */
  .about-text p {
    text-align: left;
  }
  

  /* PCで消してたエリアをスマホで復活 */
  .about-photo-area {
    display: block;
    width: 100%;
    text-align: center;
  }

} /* ←ここでクリーンに閉じる！ */