@charset "UTF-8";




html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Georgia, "Times New Roman", Times, "serif";
}


.title {
    position: fixed; 
    height: 6vh;
    background: #000000;
    width: 100%; /* 画面幅を基準に統一 */
   
    left: 0; /* 確実に左端に固定 */
    right: 0; /* 確実に右端に固定 */
    box-sizing: border-box; /* 余計な余白を防ぐ */
    z-index: 10;
}


.slideshow-container {
    position: relative;
    width: 100%; /* 横幅いっぱいに表示 */
    height: 90vh; /* 高さを固定 */
    overflow: hidden; /* コンテナ外の要素を非表示 */
    background-color: #000; /* 初期状態の背景色 */
}

/* スライド画像 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 横幅いっぱいに表示 */
    height: 100%; /* 親要素に合わせた高さ */
    opacity: 0; /* 初期状態では非表示 */
    z-index: 0;
    transition: opacity 1s ease-in-out; /* フェードアニメーション */
}

.slide img {
    width: 100%; /* 親要素にフィット */
    height: 100%; /* 親要素の高さにフィット */
    object-fit: cover; /* 画像を切り取らずにコンテナを埋める */
}

/* アクティブなスライド */
.slide.active {
    opacity: 1;
    z-index: 1; /* アクティブなスライドを前面に表示 */
}





















.overlay-text {
    position: absolute;
    top: 6vh;                          /* ← 上の .title(6vh) の下からスタート */
    left: 0;
    width: 100%;
    height: calc(86vh - 6vh);          /* ← 元の90vhからタイトル分を引く */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;       /* ← 画面中央ではなく「少し上寄り」に */

    padding-top: 4vh;                  /* ← 上に少しだけ余白をつけて位置調整 */
    row-gap: clamp(1px, 0.1vw, 10px);

    color: white;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: "Times New Roman", serif;
}

/* h1 */
.overlay-text h1 {
	margin-top: -20px;
    margin: 0;
    font-size: clamp(24px, 4vw, 64px);
    line-height: 1.05;                 /* ← 追加：ズーム時のズレ抑制（害なし） */
}

/* 1行目・2行目タイトル（★ここが重要：他の .video-title の影響を遮断） */
.overlay-text .video-title,
.overlay-text .video-title2 {
    font-size: clamp(20px, 2.4vw, 40px); /* ← あなたの値を維持 */

    /* ★衝突対策：別セクションの .video-title / @media の影響を受けない */
    margin: 0;                         /* ← 他所の margin-bottom を殺す */
    padding: 0;
    position: static;                  /* ← relative/top が当たっても無効化 */
    top: auto;
    bottom: auto;

    line-height: 1.05;                 /* ← 高さの暴れを抑える */
}

/* 位置調整：下へ下げる（あなたの値を維持） */
.overlay-text .video-title {
    margin-top: 8vh;                   /* ← あなたの値 */
    margin-bottom: 0;                  /* ← ★追加：間隔ゼロ化の原因を潰す */
}

/* 2行目：詰め（あなたの値を維持） */
.overlay-text .video-title2 {
    margin-top: clamp(22px, 2.2vh, 36px);  /* ← ここだけ調整 */
    white-space: nowrap;
}

/* Location（使うときだけ display:block に） */
.overlay-text .location {
    margin: 1vw;
    font-size: clamp(10px, 1.6vw, 16px);
    display: none;
}

/* Others（使うときだけ display:block に） */
.overlay-text .others {
    margin: 0.2rem 0 0;
    font-size: clamp(10px, 1.6vw, 16px);
    display: none;
}

/* 画像：テキストの下に配置（flexの順番で制御） */
.overlay-text .overlay-image {
    margin-top: 1.2rem;
    width: 52vw;
    max-width: 650px;
    height: auto;
}












.white-line {
    width: 100%;           /* 横幅いっぱい */
    height: 1px;           /* 線の太さ（お好みで調整） */
    background-color:#E7E7E7; /* 白色 */
    margin: 0;        /* 上下の余白（お好みで調整） */
}






.block01 {
    position: relative;  /* 親要素を基準にする */
    width: 100%;
    height: 8vh;
    background: #000000;
}

.block01 p {
    font-family:"Times New Roman", Times, "serif";
    color: #FFFFFF;
    font-size: 3vw;
    position: absolute;
    left: 5%; /* 左から5%の位置 */
    top: 50%; /* 親要素の50%の位置 */
    transform: translateY(-50%); /* 完全に中央配置 */
    margin: 0; /* 余計なマージンをなくす */
    white-space: nowrap; /* テキストを折り返さないようにする（必要に応じて） */
}









.album {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;

  padding-block: 50px;
  padding-inline: clamp(24px, 4vw, 64px);

  gap: clamp(24px, 4vw, 64px);
  margin-top: -40px;
  background: #010048;
}

.album-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 20px; /* もともと .album-image-link にあった分 */
}







/* 2カラム */
.album-row {
  display: flex;
  width: 100%;
  gap: clamp(24px, 4vw, 64px);
  align-items: flex-start;
}

/* 中央タイトル */
.album-text0 {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 600;
  margin-top: 30px;
}

/* =========================
   左：バッジ＋画像
========================= */
.album-image-wrap {
  flex: 0 0 50%;

  display: flex;
  flex-direction: column;   /* ★縦並び */
  align-items: center;

  width: 100%;
  max-width: clamp(180px, 32vw, 440px);

  margin: auto;
  box-sizing: border-box;
  margin-top: -24px;
}

/* バッジ（画像の上・同じ幅） */
.album-image-badge {
  width: 80%;               /* ★画像と同じ幅 */
  padding: 10px;

  text-align: center;
  font-family:Georgia, "Times New Roman", Times, "serif";
  font-size: clamp(0.7rem, 1.2vw, 1.0rem);
  font-weight: 600;
  letter-spacing: 0.12em;

  color: #111;
  background:#FDFDFD;

  text-decoration: none;
  box-sizing: border-box;

  margin-bottom: 8px;       /* 画像との間 */
  transition: background 0.25s ease;
  border-radius: 999px; 
  line-height: 1.8;
	
}

.album-image-badge:hover {
  background: #e6e6ff;
}

/* 画像 */
.album-image-link {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
	margin-top: 20px;
}

/* 画像そのもの */
.album-image-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 白いベール（最初は見えない） */
.album-image-link::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.2); /* ★白さの正体 */
  opacity: 0;

  transition: opacity 0.25s ease;
  pointer-events: none; /* クリックを邪魔しない */
}

/* ホバーで白くする */
.album-image-link:hover::after {
  opacity: 1;
}
/* ふわっと変化させる */
.album-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  box-sizing: border-box;

  transition: filter 0.25s ease; 
}

/* =========================
   右：テキスト
========================= */
.album-right {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 24px;
  padding-inline: clamp(16px, 3vw, 40px);
}

/* アルバム名 */
.album-text1 {
  width: min(520px, 100%);
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: "Times New Roman", Times, serif;
}

/* 曲リスト（★2だけ中央） */
.album-text2,
.album-text3,
.album-text4 {
  /* ★箱の幅を “必ず” 右カラムより細くする（ここが肝） */
  width: clamp(280px, 70%, 420px);

  /* ★箱自体を中央へ（margin:auto より確実） */
  align-self: center;

  /* ★箱の中は左揃え */
  text-align: left;

  box-sizing: border-box;
  color: #FFFFFF;
}

/* サイズは今のままでOK */
.album-text2,
.album-text3 {
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  line-height: 1.8;
}

.album-text4 {
  font-size: clamp(0.65rem, 1vw, 0.9rem);
  line-height: 1.8;
}

.artist-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.artist-link:hover {
  opacity: 0.7;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}





















.top02 {
    position: relative;  /* 相対配置 */
    width: 100%;         /* 全幅 */
    height: 10vw;       /* 高さを固定 */
    text-align: center;  /* テキストを中央揃え */
}


/* 🔹 .year (h11相当) のスタイル */
.year {
    position: absolute;
    top: 15%;  /* 高さ調整 */
    left: 50%;
	color: #F7F7F7;
    transform: translateX(-50%);
    font-family: "Times New Roman", Times, "serif";
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9) ;
    font-size: 2vw;
}

/* 🔹 .message (h12相当) のスタイル */
.message {
    position: absolute;
    top: 24%;  /* 高さ調整 */
    left: 50%;
    color:#404040;
	
	
    transform: translateX(-50%);
    font-family:"Times New Roman", Times, "serif";
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2) ;
    font-size: 1.2vw;
	line-height: 2;
	
	
}







.TR {
  position: relative;
  width: 90%;
  max-width: 1600px;
  margin: 10px auto;
  padding: 24px 20px 28px;
  text-align: center;
  box-sizing: border-box;
}

/* ======================
   販売先バッジ
   ====================== */
.TR .tr-badges {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.TR .tr-badge {
  display: block;
  width: fit-content;
  margin: 10px auto;

  padding: 10px 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;

  text-decoration: none;
  white-space: nowrap;

  background: #1C1973;
  color: #ffffff;
  border-radius: 999px;
}

.TR .tr-badge:hover {
  text-decoration: underline;
}

/* ======================
   CDリンク（ズレ防止で幅ゼロ寄せしない）
   ====================== */
.TR .tr-cd-link {
  display: inline-block;
  text-decoration: none;
}

/* ======================
   CDラップ
   ====================== */
.TR .tr-cd-wrap {
  position: relative;
  display: inline-block;
}

/* ======================
   CD画像（大画面で膨張しすぎない）
   ====================== */
.TR .tr-cd-main {
  display: block;
  width: clamp(220px, 22vw, 420px);
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

/* ホバー時：画像だけ薄く */
.TR .tr-cd-link:hover .tr-cd-main {
  opacity: 0.85;
  cursor: pointer;
}

/* ======================
   中央ラベル：NOW ON SALE
   - clamp + calc で「途中から小さく見える」を起こしにくくする
   ====================== */
.TR .tr-cd-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(14px, calc(12px + 1.4vw), 50px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  
  color: #ffffff;
  pointer-events: none;
}

.TR .tr-cd-line {
  display: block;
  white-space: nowrap;
}

/* ======================
   さらに安定させたい場合：超大画面での見た目を固定（任意）
   ====================== */


.TR .tr-badge-row {
  position: relative;
  width: fit-content;
  margin: 10px auto;     /* セット自体を中央へ（でも中身は工夫する） */
  text-align: center;
}

/* ボタンは今まで通り中央（既存.tr-badgeが block + margin auto なのでそのままでOK） */
.TR .tr-badge-row .tr-badge {
  margin: 0 auto;        /* 行の中では余計な上下ズレを消す */
}

/* ラベルは「ボタンの左」に重ねて配置（ボタン位置を動かさない） */
.TR .tr-badge-label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 6px;
  white-space: nowrap;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: "ヒラギノ丸ゴ ProN W4";
  color: #222; /* 黒文字 */

  /* 中間グレーで立体をはっきり */
  text-shadow:
  1px 1px 0 rgba(185,185,185,0.7);
}

.TR .tr-promo {
  margin-bottom: 28px;   /* ← 30〜40pxにしたいならここを 30〜40 に */
  font-size: 4vw;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  color: #1C1973;
  font-family:"Times New Roman", Times, "serif";
	line-height: 0.8;
}

.TR .tr-promo span{
	font-size: 2.4vw;
}










.yt-split{
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* 画像エリア */
.yt-thumb{
  width: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.yt-thumb img{
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;

  /* transform はもう使わない */
  transition: opacity 0.12s ease;
}

/* ホバーでは何もしない（必要なら削除してOK） */
.yt-thumb:hover img{
  opacity: 0.75;                 /* ← 好みで 0.7〜0.85 */
  transition: opacity 0.2s ease;
}
/* クリックして押してる間だけ薄くする */
.yt-thumb:active img{
  opacity: 0.75; /* ← 好みで 0.85 / 0.7 に */
}

/* 再生アイコン */
.yt-play{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yt-play::before{
  content: "";
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
}

.yt-play::after{
  content: "";
  position: absolute;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* モーダル */
.yt-modal{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 9999;
}

.yt-modal.open{
  display: block;
}

.yt-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
}

.yt-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
}

.yt-close{
  color: #fff;
  font-size: 30px;
  text-align: right;
  cursor: pointer;
  margin-bottom: 8px;
}

/* 16:9 */
.yt-video{
  position: relative;
  padding-top: 56.25%;
}

.yt-video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}











.femalewanted {
  position: relative;
  width: 100%;
  min-height: clamp(52vh, 60vh, 68vh);
  overflow: hidden;
  background: #000; /* 余白が出ても白くしない保険 */
}

/* 背景画像（常に全面を埋める） */
.femalewanted img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  z-index: 0;
}

/* 文字レイヤー（画像の上） */
.female-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 5%;
  box-sizing: border-box;

  color: #fff; /* 文字が黒くならないように固定 */
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.9);
}

/* タイトル（左上） */
.female-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(17px, 2.1vw, 40px);
  line-height: clamp(1.06, 0.35vw + 1.00, 1.16);
  margin-bottom: clamp(10px, 1.1vw, 34px);
  font-weight: bold;
  color: #fff;
}

/* 英語＋日本語の横並び（iPadでも2カラム維持） */
.female-text-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(10px, 1.5vw, 22px);
  width: 100%;
  box-sizing: border-box;
}

/* 共通（英日） */
.female-text-en,
.female-text-jp {
  width: 49%;
  box-sizing: border-box;

  font-family: Georgia, "Times New Roman", Times, serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* 英語 */
.female-text-en {
  text-align: left;
  font-size: clamp(12.6px, 0.85vw + 0.45vmin, 22px);
  line-height: clamp(1.38, 0.60vw + 1.10, 1.72);
}

/* 日本語（英語より少し小さめ） */
.female-text-jp {
  text-align: left; /* 右寄せなら right に */
  font-size: clamp(12.0px, 0.80vw + 0.42vmin, 19px);
  line-height: clamp(1.38, 0.60vw + 1.10, 1.72);
}

/* iPad（<=1024px）：2カラム維持のまま行間だけ少し詰める */
@media screen and (max-width: 1024px) {
  .female-overlay {
    padding: 28px 5%;
  }

  .female-text-en,
  .female-text-jp {
    line-height: clamp(1.32, 0.40vw + 1.12, 1.55);
  }
}





.mail-twitter {
  display: block;          /* ← inline-block → block に */
  margin: 32px auto 0;     /* ← 左右 auto で中央寄せ */

  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: bold;
  text-align: center;      /* ← 念のため */
  cursor: pointer;
}

/* ホバー時（Xっぽく少し反応させる） */
.mail-twitter:hover {
  opacity: 0.65;
}




















































.top01-title,
.top01-dancer,
.top01-location,
.top01-others {
    position: absolute;
    left: 5%;  /* 右端からの配置 */
    font-family: Georgia, "Times New Roman", Times, "serif";
    
	color: #FFFFFF;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7) ;
}

/* 🔹 各要素の高さ調整 */
.top01-title {
    top: 12%;  /* 高さ調整（エリアの10%位置） */
	font-size: 3vw;
}

.top01-dancer {
    top: 28%;  /* 高さ調整（エリアの35%位置） */
	font-size: 2vw;
}

.top01-location {
    top: 38%;  /* 高さ調整（エリアの60%位置） */
	font-size: 1.2vw;
}

.top01-others {
    top: 48%;  /* 高さ調整（エリアの80%位置） */
    /* 文字が多いので少し小さく */
    line-height: 1.8; /* 行間を少し広めに */
	font-size: 1.2vw;
}



.top01 {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
	text-align: left;
	
    max-height:94vh;
    margin-bottom: 0px; /* 負のマージンで余白を消す */
}

/* 背景画像の設定 */
.top01 img {
    width: 100%;
    height: 100%;  /* 親要素にフィット */
    max-height: 100%; /* はみ出し防止 */
    object-fit: cover; /* 画像を切り取って親要素にピッタリ埋める */
    display: block;
    cursor: pointer; /* クリックできるように */
    transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease; /* なめらかに変化 */
	
}

/* 🔹 画像にカーソルを当てたときに薄くする */
.top01 img:hover {
    opacity: 0.8;
}

/* 🔹 モーダル全体（背景） */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 背景を暗くする */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}









.modal-content {
    position: relative;
    width: 86%;
    max-width: 1200px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.modal-content::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%; /* 16:9 の比率 (9/16 * 100 = 56.25%) */
}
.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

















/* 🔹 モーダルの閉じるボタン（×） */
.close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1001;
	display: none;
}


.block02{
	width: 100%;
	height: 32px;
	background: #000000;
}




.box01 {
  position: relative;
  width: 100%;
  height: 60vh;
  margin-bottom: 1vh;
  padding: 0 20px;
  background: #FAFAFA;

  display: flex;
  align-items: flex-start;

  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ---------- TITLE ---------- */
.box01-title {
  position: absolute;
  left: 5%;
  top: 4%;
  font-size: 2.4vw;
}

/* ---------- NAME ---------- */
.box01-name {
  position: absolute;
  left: 5%;
  top: 16%;
  font-size: 1.9vw;
}

/* ---------- TEXT WRAP ---------- */
.box01-text {
  position: absolute;
  left: 5%;
  top: 24%;
  width: 40%;
  font-family: Arial, sans-serif;
}

/* ---------- ENGLISH ---------- */
.box01 .text-en {
  font-size: 0.9vw;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ---------- JAPANESE ---------- */
.box01 .text-ja {
  font-size: 0.7vw;
  line-height: 1.8;
  margin-top: 10px;
}

/* ---------- SNS ---------- */
.box01-sns {
  font-size: 0.8vw;
  margin-top: 10px;
}

.box01-sns a {
  color: black;
  text-decoration: underline;
  margin-left: 5px;
}

.box01-sns a:hover {
  color: darkgray;
  text-decoration: none;
}

/* ---------- IMAGE ---------- */
.box01 img {
  position: absolute;
  right: 8%;
  top: 16%;
  width: 40%;
  max-height: 48vh;
  height: auto;

  border: 8px solid black;
  box-sizing: border-box;
  object-fit: cover;
}

/* ---------- 超大画面用：比率そのまま拡大 ---------- */
@media screen and (min-width: 1800px) {
  .box01-title {
    font-size: calc(2.4vw * (100vw / 1800));
  }

  .box01-name {
    font-size: calc(1.9vw * (100vw / 1800));
  }

  .box01 .text-en {
    font-size: calc(0.9vw * (100vw / 1800));
  }

  .box01 .text-ja {
    font-size: calc(0.7vw * (100vw / 1800));
  }

  .box01-sns {
    font-size: calc(0.8vw * (100vw / 1800));
  }
}

/* ---------- iPad ---------- */
@media screen and (max-width: 1024px) {
  .box01 img {
    border: 4px solid black;
  }
}













.box04 {
    position: relative;  /* 相対配置（内部の `absolute` 要素の基準にする） */
    width: 100%;
    background:#FAFAFA;/* 背景色（必要なら変更） */
    padding:0 20px 0px;
    display: flex;
    align-items: flex-start; /* テキストと画像を上揃え */
	height: 60vh;
	font-family:Georgia, "Times New Roman", Times, "serif";
	margin-bottom: 1vh;
}

/* 🔹 タイトルを左5%に配置（大きめ） */
.box04-title {
    position: absolute;
    left: 5%;
    top: 4%;
    font-size: 2.4vw;
   
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 名前を少し下に配置（中サイズ） */
.box04-name {
    position: absolute;
    left: 5%;
    top: 16%;
    font-size: 1.9vw;
    font-family: Georgia, "Times New Roman", Times, "serif";
	
}

/* 🔹 説明文をさらに下に配置（標準サイズ） */
.box04-text {
    width: 40%;
    left: 5%;
    position: absolute;
    top: 24%;
    font-family: "Arial", sans-serif;
}

/* 🔹 英語テキストのスタイル */
.text04-en {
    font-size: 0.9vw; /* 通常のフォントサイズ */
    line-height: 1.5; /* 行間を設定 */
    margin-bottom: 0; /* 英語と日本語の間の余白 */
	font-family:Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 日本語テキストのスタイル */
.text04-ja {
    font-size: 0.7vw; /* 日本語のフォントサイズを少し小さく */
    line-height: 1.8; /* 日本語の行間 */
}

/* 🔹 画面幅が 768px 以下（タブレット・スマホ）になったとき */
@media screen and (max-width: 1800px) {
    .text-en {
        font-size: 0.8vw;
        line-height: 1.4;
    }

    .text-ja {
        font-size: 0.7vw;
        line-height: 1.5;
    }
}

/* 🔹 画面幅が 500px 以下（スマホ小画面）になったとき */








/* 🔹 SNSリンクをさらに下に配置（リンク付き＆デザイン変更） */
.box04-sns {
    font-size: 0.8vw;
    margin-top: 10px; /* 🔹 `.text-ja` の直下に配置 */
}

/* 🔹 SNSリンクのデザイン */
.box04-sns a {
    color: black; /* リンクの色をグレーに */
    text-decoration: underline; /* 下線をつける */
    margin-left: 5px; /* "→" の後に適度な余白 */
   
}

/* 🔹 リンクのホバー時の効果 */
.box04-sns a:hover {
    color: darkgray; /* ホバー時に少し濃いグレーに */
    text-decoration: none; /* 下線を消す */
}




/* 🔹 画像を右側に配置 */


.box04 img {
    position: absolute;
    right: 8%; /* 右端に配置 */
    top: 16%; /* 高さ調整 */
    width: 40%; /* 親要素に合わせて幅を調整 */
    max-height: 48vh;
	/* 最大幅を制限 */
    height: auto; /* アスペクト比を保ったまま高さを自動調整 */
    border: 8px solid black; /* 🔹 5pxの黒い枠を追加 */
    box-sizing: border-box;
    object-fit: cover; /* 画像が要素にフィットするように調整 */
}

.box04 a {
  text-decoration: none;
}


.box04 img:hover {
    
    opacity: 0.8;       /* 枠の色をグレーに変更 */
}































.box03 {
    position: relative;  /* 相対配置（内部の `absolute` 要素の基準にする） */
    width: 100%;
    background:#FAFAFA;/* 背景色（必要なら変更） */
    padding:0 20px 0px;
    display: flex;
    align-items: flex-start; /* テキストと画像を上揃え */
	height: 60vh;
	font-family:Georgia, "Times New Roman", Times, "serif";
	margin-bottom: 1vh;
}

/* 🔹 タイトルを左5%に配置（大きめ） */
.box03-title {
    position: absolute;
    left: 5%;
    top: 4%;
    font-size: 2.4vw;
   
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 名前を少し下に配置（中サイズ） */
.box03-name {
    position: absolute;
    left: 5%;
    top: 16%;
    font-size: 1.9vw;
    font-family: Georgia, "Times New Roman", Times, "serif";
	
}

/* 🔹 説明文をさらに下に配置（標準サイズ） */
.box03-text {
    width: 40%;
    left: 5%;
    position: absolute;
    top: 24%;
    font-family: "Arial", sans-serif;
}

/* 🔹 英語テキストのスタイル */
.text03-en {
    font-size: 0.8vw; /* 通常のフォントサイズ */
    line-height: 1.5; /* 行間を設定 */
    margin-bottom: 0; /* 英語と日本語の間の余白 */
	font-family:Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 日本語テキストのスタイル */
.text03-ja {
    font-size: 0.6vw; /* 日本語のフォントサイズを少し小さく */
    line-height: 1.6; /* 日本語の行間 */
}

/* 🔹 画面幅が 768px 以下（タブレット・スマホ）になったとき */
@media screen and (max-width: 1800px) {
    .text03-en {
        font-size: 0.8vw;
        line-height: 1.4;
    }

    .text03-ja {
        font-size: 0.7vw;
        line-height: 1.5;
    }
}

/* 🔹 画面幅が 500px 以下（スマホ小画面）になったとき */








/* 🔹 SNSリンクをさらに下に配置（リンク付き＆デザイン変更） */
.box03-sns {
    font-size: 0.8vw;
    margin-top: 10px; /* 🔹 `.text-ja` の直下に配置 */
}

/* 🔹 SNSリンクのデザイン */
.box03-sns a {
    color: black; /* リンクの色をグレーに */
    text-decoration: underline; /* 下線をつける */
    margin-left: 5px; /* "→" の後に適度な余白 */
   
}

/* 🔹 リンクのホバー時の効果 */
.box03-sns a:hover {
    color: darkgray; /* ホバー時に少し濃いグレーに */
    text-decoration: none; /* 下線を消す */
}



































/* 🔹 画像を右側に配置 */




.spotify03 {
  position: absolute;
  left: 47%;   /* テキスト部分（右端45%）から2%分の余白を確保 */
  right: 8%;  
  top: 16%;
  display: flex;
  
 
  gap: 8%;
}

/* 内部要素はコンテナ内でほぼ均等に配置 */
.spotify03 .jackets03,
.spotify03 .spotify-embed03 {
  width: 100%;
}

.spotify03 .spotify-embed03 {
  width: 100%;
  
}

.spotify03 .spotify-embed03 iframe {
  width: 100%;
  height: auto;
}


.spotify03 .jackets03 {
  margin-left: 11%;
  width: calc(48% - 5%);
}


/* 内部の画像をレスポンシブに */
.spotify03 .jackets03 img,
.spotify03 .spotify-embed03 img {
  width: 100%;
  height: 100%;
  display: block;
  border: 5px solid black;
}



.music {
    position: absolute; /* ←今のまま絶対配置のままでOK */
    right: 8%; /* 右から8%の位置に配置 */
    top: 16%; /* 上から16% */
    width: 40%; /* 横幅40% */
    max-height: 48vh;
    height:auto;
    box-sizing: border-box;
    border: 8px solid black;
    padding: 0;
    margin: 0;
    
    overflow: hidden;
}

/* 画像を完全に背景に貼り付ける */
.music a {
  display: block;
  width: 100%;
  height: 100%;
}

.music img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.25s ease; /* ←追加 */
}

/* マウスを乗せたら薄くする */
.music a:hover img {
  opacity: 0.75;
  cursor: pointer;
}
/* テキストを上に重ねる */
.music .spotify,
.music .apple,
.music .amazon {
    position: absolute;
	text-decoration: none;
    left: 50%; /* 左端を画面の中央に */
    transform: translateX(-50%); /* 自分自身の幅の半分を左にずらして中央合わせ */
    color: white;
    font-size: 2vw;
	font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-shadow: 4px 3px 5px rgba(0,0,0,0.7);
    z-index: 2;
}

/* 縦方向(top)だけ変えてそれぞれの位置をずらす */
.music .spotify {
    top: 18%; /* 少し上め */
}

.music .apple {
    top: 42%; /* 真ん中くらい */
}

.music .amazon {
    top: 68%; /* 下め */
}

.music i {
    color: white; /* ← これ超大事！！！ */
    
}



.music i:hover {
    color:#CACACA; /* ここで好きなグレーにする */
}


.music a {
    text-decoration: none;
    color: inherit;
}


.music a:hover {
    text-decoration: none; /* hover時も念のため */
}








.box03 img {
    width: 100%;
	height: auto;
	max-height: 48vh;/* なめらかに変化 */
	
	object-fit: cover; /* 画像が要素にフィットするように調整 */
	
}




@media screen and (max-width: 1024px) {
  .music {
    border: 4px solid black; /* ← iPad用に細くする */
  }
}














.horizontal-line {
    border-top: 1.5vh solid #000; /* 線のスタイル */
   
}








.video-container {
  position: relative;
  width: 100%;
  height: clamp(48vh, 62vh, 70vh);
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay-text2 {
  position: absolute;
  top: clamp(46%, 48%, 52%);
  left: 5%;
  right: 5%;
  transform: translateY(-50%);

  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0);

  padding: clamp(2px, 0.35vh, 6px) 0;
  box-sizing: border-box;
}

.video-title {
  font-family: Georgia, "Times New Roman", Times, "serif";

  /* タイトルも少し小さく */
  font-size: clamp(18px, 2.2vw, 42px);

  line-height: clamp(1.06, 0.35vw + 1.00, 1.16);
  margin-bottom: clamp(10px, 1.1vw, 34px);
}

.video-tracklist-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(10px, 1.5vw, 22px);
  width: 100%;
  box-sizing: border-box;
}

/* 共通：英日とも「全体を一段小さく」＋「行間を少し広め」 */
.video-tracklist {
  width: 49%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* ▼全体的に小さく（min/中間/max を一段下げる） */
  font-size: clamp(11.6px, 0.78vw + 0.40vmin, 20px);

  /* ▼行間は少し広め */
  line-height: clamp(1.38, 0.60vw + 1.10, 1.72);
}

/* 英語 */
.video-tracklist.en {
  text-align: left;
  font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 日本語：英語よりほんの少し小さめ、行間は同じ思想 */
.video-tracklist.ja {
  text-align: right;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  /* ▼日本語も小さく */
  font-size: clamp(11.1px, 0.72vw + 0.38vmin, 17px);

  /* ▼行間は英語と同様に広め */
  line-height: clamp(1.38, 0.60vw + 1.10, 1.72);
}

/* =========================
   iPad (<=1024px): 2カラム維持、詰め方向（ただし詰めすぎない）
   ========================= */
@media screen and (max-width: 1024px) {
  .overlay-text2 {
    top: 52%;
    padding: 2px 0;
  }

  .video-title {
    position: relative;
    top: -1.1vh;
    margin-bottom: 10px;
  }

  .video-tracklist-grid {
    gap: 12px;
  }

  /* iPadでは行間をほんの少しだけ落とす（でも広めは維持） */
  .video-tracklist,
  .video-tracklist.ja {
    line-height: clamp(1.32, 0.40vw + 1.12, 1.55);
  }
}






.box02 {
    position: relative; 
    width: 100%;
    background: #FAFAFA;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    height: 60vh;
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 タイトル */
.box02-title {
    position: absolute;
    left: 5%;
    top: 4%;
    font-size: 2.4vw;
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 名前 */
.box02-name {
    position: absolute;
    left: 5%;
    top: 16%;
    font-size: 1.9vw;
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 説明文 */
.box02-text {
    width: 40%;
    left: 5%;
    position: absolute;
    top: 24%;
    font-family: "Arial", sans-serif;
}

/* 🔹 英語テキスト */
.text-en {
    font-size: 0.8vw;
    line-height: 1.5;
    margin-bottom: 1.5vh;
    font-family: Georgia, "Times New Roman", Times, "serif";
}

/* 🔹 日本語テキスト */
.text-ja {
    font-size: 0.6vw;
    line-height: 1.8;
}

/* 🔹 メディアクエリ */
@media screen and (max-width: 1800px) {
    .text-en {
        font-size: 0.9vw;
        line-height: 1.4;
    }
    .text-ja {
        font-size: 0.8vw;
        line-height: 1.5;
    }
}

@media screen and (max-width: 1000px) {
    .text-en {
        font-size: 1.1vw;
        line-height: 1.2;
    }
    .text-ja {
        font-size: 1vw;
        line-height: 1.4;
    }
}

/* 🔹 SNSリンク */
.box02-sns {
    font-size: 0.8vw;
    margin-top: 10px;
}

/* 🔹 SNSリンクのデザイン */
.box02-sns a {
    color: black;
    text-decoration: underline;
    margin-left: 5px;
}

/* 🔹 リンクのホバー効果 */
.box02-sns a:hover {
    color: darkgray;
    text-decoration: none;
}

/* 🔹 画像（モーダルトリガー） */
.box02 img {
    position: absolute;
    right: 8%;
    top: 16%;
    width: 40%;
    max-height: 48vh;
    height: auto;
    border: 8px solid black; /* 🔹 黒枠 */
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity 0.3s ease;
	object-fit: cover; 
	
	
	
}



@media screen and (max-width: 1024px) {
  .box02 img {
    border: 4px solid black; /* ← iPad用に細くする */
  }
}






.box02 img:hover {
    opacity: 0.7; /* 🔹 画像をホバー時に薄くする */
}

/* 📌 モーダル全体 */
.box02-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.box02-modal-content {
    position: relative;
    width: 86%;
    max-width: 1200px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.box02-modal-content::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%; /* 16:9 の比率 */
}
.box02-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}






/* 📌 モーダルの閉じるボタン */
.box02-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1001;
	display: none;
	
}







footer {
    background-color: black; /* 背景を黒に */
    padding: 20px;
    color: white; /* テキストカラーを白 */
    height: 32vh;
    position: relative; /* `absolute` 要素の基準にする */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上揃え */
    align-items: flex-start; /* 左寄せ */
}

/* 📌 フッター内のテキスト */
footer p {
    text-align: left; /* 左寄せ */
    font-size: 0.9vw; /* フォントサイズ */
    line-height: 1.9; /* 行間 */
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, "serif";
    padding: 10px 0 0 10px; /* 左側の余白を確保 */
}

/* 📌 フッター内のリンク */
footer p a {
    color: white; /* 通常時は白 */
    text-decoration: none; /* 下線なし */
    transition: color 0.3s ease;
}

/* 📌 ホバー時のリンクの色 */
footer p a:hover {
    color: gray; /* グレーに変更 */
    text-decoration: underline; /* 下線を追加 */
}

/* 📌 `.takuloku` を `footer` の左下10px に配置 */
footer .takuloku {
    font-size: 0.9vw;
    font-family: Georgia, "Times New Roman", Times, "serif";
    color: white;
    opacity: 1;
    position: absolute;
    bottom: 10px;   /* フッターの下から10px */
    right: 30px;    /* フッターの右から10px (追加) */
    /* padding-left: 10px; ← これを削除またはコメントアウト */
}

@media screen and (max-width: 1024px) {
  footer p {
    font-size: 14px; /* ← iPadサイズ用。お好みで調整可能 */
    line-height: 1.8;
  }

  footer .takuloku {
    font-size: 12px; /* ← 小さすぎるようなら 13px〜15px にしてOK */
  }
}