body {
  margin: 0;
  padding: 0;
  background-image: url('haikei.png'); /* ←画像のファイル名に変更してね */
  background-size: cover; /* 全体を覆う */
  background-position: center center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  background-attachment: fixed; /* スクロールしても背景固定（任意） */
  font-family: sans-serif; /* お好みで文字も整える */
}









.big-card {
  background-color: transparent;
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  box-sizing: border-box;
}



.text-wrapper {
  padding: 0;
  padding-top: 250px;
  padding-bottom: 200px;
  margin: 0;
  text-align: center;
  color: #ffffff;
}












.header{
    width: 100%;
    background-color: transparent;
    color: #FFFFFF;
    text-align: left;
    margin: 0px;
}
.firstview{
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.title{
    width: 100%;
    height: auto;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin: 0px;
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    z-index: 2;
}
.info{
    background-color: #FFFFFFAA;
    width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.others{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
    margin-top: 100px;
}


.others_buttom {
    width: 235px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.others_buttom:hover {
    transform: scale(1.05);
}

.image_wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.others_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.others_buttom:hover .others_image {
    transform: scale(1.1);
}

.name_panel {
    width: 160px;
    margin: 10px auto 0 auto;
    padding: 8px 12px;
    background:#ffffff;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 5px solid #0000cd;
    color: #000000;
    border-radius: 25px;
}






.profile-section {
  display: none;
  padding: 20px;
  margin-top: 40px;
  background: #222;
  color: #fff;
  border-radius: 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}













.others_buttom:hover .others_black_layer{
    opacity: 0;
}
.others_buttom:hover .others_dot_layer{
    opacity: 0;
}
.others_buttom:hover .others_image{
    transform: scale(1.2);
    transition: transform 0.5s ease-out;
}


.tabs {
 display: flex;
cursor: pointer;
margin-bottom: 1em;

}
.tab {
padding: 10px 20px;
border: 1px solid #ccc;
background: #f0f0f0;
margin-right: 5px;
}
.tab.active {
background: #ddd;
font-weight: bold;
}
.content {
display: none;
}
.content.active {
display: block;
}
.tabs {
  display: flex;
  justify-content: center;  /* ← 中央揃え！ */
  gap: 1em;                 /* ← ボタンの間にスペース */
  margin-top: 2em;
}

.tab {
  padding: 0.5em 1.5em;
  font-size: 1em;
  border: none;
  background-color: #eee;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 50px;
}

.tab:hover {
  background-color: #ddd;
}















.dai{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  max-width: 800px;
  padding-top: 150px;
}

.dai-line {
  width: 100px;
  height: 6px;
  background-color: #0000cd;
  margin: 0;
  border-radius: 5px; 
}

.dai-text {
  padding: 0;
  font-size: 2em;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Arial', sans-serif;
  margin: 0 8px; 
}



.slideshow-container {
  width: 100vw;
  max-width: 800px; /* スライドショーの最大幅を指定 */
  margin: 0 auto; /* 中央に配置 */
  position: relative;
  overflow: hidden; /* はみ出しを防ぐ */
}

.slide {
  width: 100%;
  height: 100vw;
  display: none;
  object-fit: contain; /* はみ出し防止・比率維持 */
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
border-radius: 0 !important;
}






.talent-card {
  display: flex;
  flex-direction: row-reverse; /* ← 画像と文字の位置を逆にする！ */
  align-items: flex-start;
  gap: 30px;
  background-color: #ffffff60;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 0px;
  margin: 60px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 170px;
}





.talent-image img {
  width: 450px;
  border-radius: 12px;
  object-fit: cover;
  padding-top: 150px;
  padding-bottom: 150px;

  /* 左右を逆に！ */
  padding-left: 0;
  padding-right: 20px;

  display: flex;
  margin-left: auto;
  margin-right: auto;
}



.talent-info {
  flex: 1;
}

.talent-names h1 {
  font-size: 2rem;
  margin-top: 200px;
  margin-bottom: 70px;
  margin-right: 30px;
  text-align: center;
}






.talent-desc {
  margin: 10px 30px;
  line-height: 1.6;
  margin-left: 85px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons img {
  display: block;
}

.x-icon {
  width: 40px;
  height: auto;
  padding: 50px 50px 30px 30px;
}

.youtube {
  width: 60px; /* 少し小さめに */
  height: auto;
  margin-top: 40px;
}





.talent-card1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  background-color: #ffffff60;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 0px;
  margin: 60px 0;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: none;
  width: 100%;            
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}




.talent-image1 img {
  width: 600px;
  border-radius: 12px;
  object-fit: cover;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 20px;
  display: flex;
  margin-left: auto;
  margin-right: auto;

}

.talent-info {
  flex: 1;
}

.talent-names1 h1 {
  font-size: 2rem;
  margin-top: 200px;
  margin-bottom: 70px;
  margin-left: 30px;
}