body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f3f3f3;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  box-sizing: border-box;
}




.back-button {
  display: inline-block;
  margin: 5px;
  padding: 5px 15px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
}



.profile-bg {
  background-color: #64C8F0;  /* お好みの薄いブルー */
  padding: 40px 30px;
  width: 100%;
  margin: 0 auto 40px auto; /* 下にマージン */
  box-sizing: border-box;
}






.talent-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;  /* ← 追加して右寄せに */
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}


.talent-image {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -100px;
}

.talent-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-left: -100px;
}






.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-info {
  flex: 1;
  padding: 40px 20px;
  max-width: 600px;
}

.talent-names {
  text-align: left;     /* ← これに変更 */
  margin-bottom: 40px; 
}



.name-ja {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #000;
  padding: 80px 30px 0 30px;  /* 下の余白を削って詰める */
  
}

.name-kanji {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  margin: 10px 30px 0 30px;  /* 上だけ少し余白 */

}

.name-yomi {
  font-size: 0.9rem;
  color: #666;
  margin: 4px 30px 0 30px;   /* 左右のpaddingを合わせる */
 
}


.talent-desc {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
  padding-left: 30px;
}

.talent-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.talent-meta li {
  margin-bottom: 0;
  min-width: 140px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 100%;
  width: 100%;
  margin: 80px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.video-gallery iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}







.dai{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  max-width: 800px;
}

.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; 
}







.profile-section {
  background-color: #64C8F050; /* 薄い黄色 */
  padding: 40px 20px;
  margin: 60px auto;
  width: 100%;
  box-sizing: border-box;
}

.profile-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
}

.profile-box {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ← 2列にする */
  gap: 20px 40px; /* 縦・横の隙間 */
}

.profile-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

.profile-label {
  font-weight: bold;
  color: #444;
}

.profile-content {
  color: #333;
  text-align: right;
}











