body {
  min-height: 100vh;
  margin: 0;
  font-family: "ヒラギノ角ゴ ProN W3", "Yu Gothic", "メイリオ", Arial, sans-serif;
  background-color: #f3e0b5;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: 90vh;
  transform: translate(-50%, -50%);
  background: url("/images/09_DolphinParadise.png") no-repeat center/contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.site-main {
  color: #ff9741;
  margin: 6vw auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.dolpara-catch {
  width: 100%;
  font-size: 3.5rem;
  font-family: "Yuji Syuku";
  color: rgba(0, 0, 0, 0.9);
  text-shadow:
    0 0 0.5rem rgba(255,255,255,1),
    0 0 1rem rgba(255,255,255,1),
    0 0 2rem rgba(255,255,255,1),
    0 0 3rem rgba(255,255,255,1);
  text-align: center;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.dolpara-all {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dolpara-all img {
  width: 70rem;
  max-width: 90%;
  height: auto;
}

.dolpara-subtitle {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  width: 100%;
  font-size: 3.5rem;
  font-family: "Yuji Syuku";
  color: rgb(255, 255, 255);
  text-shadow: 
    0 0 0.5vw rgba(255, 162, 55, 1),
    0 0 1vw rgba(255, 162, 55, 1);
  text-align: center;
}

.member-list {
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.person-rapper img {
  width: 10rem;
  margin: 0.7rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(243, 144, 31, 0.5);
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-rapper img:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


.cut-in {
  opacity: 0;
  transform: translateY(30px);
  animation: cutIn 0.8s ease-out forwards;
}

.cut-in2 {
  opacity: 0;
  transform: translateY(-30px);
  animation: cutIn 0.8s ease-out forwards;
}

@keyframes cutIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.member-detail {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  width: 54rem;
  height: 40rem;
  margin: 2rem auto;
  padding: 0.3rem 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.introduce-name{
  text-align: center;
}

.introduce-rapper {
  display: flex;
  flex-direction: row;
}


.introduce-icons {
  width: 20rem;
}

.member-detail img {
  width: 100%;
}

.sns-icon {
  display: flex;
  margin-left: 2rem;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.youtube-icon {
  width: 7rem;
}

.youtube-icon img {
  border-radius: 2rem;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-icon img:hover{
  transform: translateY(-8px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}

.x-icon {
  width: 7rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.x-icon img {
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.x-icon img:hover{
  transform: translateY(-8px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}


.introduce-content {
  width: 25rem;
  margin-left: 2rem;
}

.introduce-name {
  font-family: "Yuji Syuku";
  font-size: 4rem;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.7);
}

.introduce-explanation {
  font-size: 1.5rem;
  font-family: "RocknRoll One";
  font-weight: bold;
  margin: 1rem 0;
}

/* ▼ ラベル（海色） */
.introduce-label {
  font-size: 1.4rem;
  font-family: "RocknRoll One";
  font-weight: bold;
  margin: 1.0rem 0 0 0;
  color: #0066aa;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
}

/* ▼ 横並びの親コンテナ（中央揃え） */
.status-pai-row {
  display: flex;
}

/* ▼ 左右のカラム（introduce-content に収まる幅） */
.status-column,
.pai-column {
  flex: 0 0 2.2rem; /* ★ ここがズレ解消のポイント */
}

.pai-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ▼ メーターバー全体 */
.status-area {
  margin: 0.5rem 0 1rem 0;
}

/* ▼ 各ステータス行 */
.status-item {
  font-size: 1.0rem;
  font-family: "RocknRoll One";
  margin-bottom: 1rem;
}

/* ▼ バーの枠（海っぽい） */
.status-bar {
  width: 12rem;
  height: 1.2rem;
  background: #e0f7ff;
  border-radius: 10rem;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 0.2rem solid #bdeaff;
}

/* ▼ バーの中身（波っぽいグラデーション） */
.status-fill {
  height: 100%;
  border-radius: 10rem;
  background: linear-gradient(90deg, #00aaff, #66d9ff);
}

/* ▼ ハードコーディング値 */
.status-fill.ram-atk { width: 59%; }
.status-fill.ram-def { width: 50%; }
.status-fill.ram-luck { width: 45%; }
.status-fill.ram-mind { width: 70%; }
.status-fill.chill-atk { width: 52%; }
.status-fill.chill-def { width: 89%; }
.status-fill.chill-luck { width: 50%; }
.status-fill.chill-mind { width: 45%; }
.status-fill.aoi-atk { width: 39%; }
.status-fill.aoi-def { width: 41%; }
.status-fill.aoi-luck { width: 80%; }
.status-fill.aoi-mind { width: 55%; }
.status-fill.hihumi-atk { width: 83%; }
.status-fill.hihumi-def { width: 4%; }
.status-fill.hihumi-luck { width: 70%; }
.status-fill.hihumi-mind { width: 90%; }
.status-fill.chun-atk { width: 20%; }
.status-fill.chun-def { width: 40%; }
.status-fill.chun-luck { width: 55%; }
.status-fill.chun-mind { width: 75%; }

/* ▼ 麻雀牌の外枠（円と同じサイズ） */
.pai-wrapper {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin: 2rem 1rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ▼ 円形エフェクト（光輪） */
.pai-effect {
  position: absolute;
  top: 60%;
  left: 65%;
  width: 13rem;
  height: 13rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 170, 255, 0.4) 0%,
    rgba(0, 170, 255, 0.45) 40%,
    rgba(0, 170, 255, 0.15) 70%,
    transparent 100%
  );
  animation: pulse 3s infinite ease-in-out;
}

/* ▼ 麻雀牌画像（完全中央配置） */
.pai-img {
  position: absolute;
  top: 60%;
  left: 65%;
  width: 12rem;
  height: auto;
  transform: translate(-50%, -50%);
}

/* ▼ 光るアニメーション */
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
}

#member-info {
  opacity: 1;
  transition: opacity 0.4s ease;
}

#member-info.fade-out {
  opacity: 0;
}

#member-info.fade-in {
  opacity: 1;
}

.tooltip {
  position: relative;
  cursor: help;
}

/* 吹き出し本体 */
.tooltip::after {
  width: 28rem;
  content: attr(data-tooltip);
  position: absolute;
  left: 125%;
  top: 125%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  white-space: pre-line;
}

/* ホバー時に表示 */
.tooltip:hover::after {
  opacity: 0.8;
}

.oshirase {
  margin: 1rem auto;
  background-color: rgba(255, 255, 255, 0.8);
  width: 50rem;
  padding: 2rem 2rem;
  border-radius: 2rem;
}

.oshirase-label{
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.oshirase-date {
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.oshirase-title {
  margin: 0 2rem;
  font-family: "RocknRoll One";
  font-size: 1.5rem;
  font-weight: bold;
}

.oshirase-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.oshirase-detail {
  margin: 0 2rem;
  width: 30rem;
  font-family: "RocknRoll One";
  font-size: 1.1rem;
  color: #292929;
  line-height: 2;
}

.oshirase-image {
  margin: 1rem 1rem 1rem 0;
  box-shadow: 0 0.5rem 1rem rgba(243, 144, 31, 0.5); 
}

.oshirase img {
  width: 20rem;
  margin: 1rem;

}

.waitama {
  width: 60rem;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  margin: 8.5rem auto;
  justify-content: center;
}

.link-effect {
  position: absolute;
  width: 15rem;
  height: 15rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 170, 255, 0.55) 10%,
    rgba(0, 170, 255, 0.75) 40%,
    rgba(0, 170, 255, 0.35) 70%,
    transparent 100%
  );
  animation: pulse 3s infinite ease-in-out;
}

.waitama img {
  position: absolute;
  width: 12rem;
  height: auto;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.waitama img:hover {
  transform: translate(-50%, -50%) scale(1.10);
}

.link-link {
  display: flex;
  flex-direction: column;
}

.link-title {
  margin-top: 20rem;
}

.linktip {
  position: relative;
  cursor: help;
  text-align: center;
}

.linktip::after {
  width: 15rem;
  top: 7rem;
  left: 50%;
  content: attr(data-linktip);
  position: absolute;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1rem 1rem;
  border-radius: 0.5em;
  font-size: 1rem;
  font-family: "RocknRoll One";
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  white-space: pre-wrap;  
}

.linktip:hover::after {
  opacity: 0.8;
}

.footer-height {
  height: 10rem;
}
