/* ===== 全体 ===== */
body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden; /* 横スクロールを禁止 */
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  background-color: #d5ebfd51;  
  background-image: url('../assets/images/left-A.png');
  background-position: center;
  
}


.hero {
  display: flex;
  width: 100vw;
  height: auto;        /* ← ここが重要！ left が fixed なので hero の高さ指定は不要 */
}

/* 左側：固定 */
.left-side {
  width: 50vw;        /* 画面幅の 50% */
  height: 100vh;      /* 全画面高さ */
  position: fixed;    /* ← 固定 */
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column; /* ← これ重要！縦方向に配置 */
  justify-content: center;
  align-items: center;
}

.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: 20px;            /* 下からの距離 */
  left: 50%;               /* 横中央 */
  transform: translateX(-50%); /* 横中央 */  
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: auto;             /* 自動幅で中央寄せ */
white-space: nowrap;   /* 折り返し禁止 */
}
.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 {
  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;
}



/* 右側（LATEST WORKS）用 */
/* 右側コンテンツ */
.right-side {
  margin-left: 50vw;    /* ← 左サイドの固定領域を避ける */
  width: 50vw;
  min-height: 100vh;
  overflow-y: auto;      /* ← 右サイドだけスクロール */
  background: rgba(172, 172, 172, 0.577); /* 左側の背景色 */
  padding: 20px 40px;   /* 上下:20px / 左右:40px の余白を追加 */
  box-sizing: border-box; /* パディングを幅に含める */  

}

/* 見出しと説明 */
.right-side h2 {
  color: #6b6767;
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  font-weight: 100;
  text-align: left;
  display: inline-block; /* テキストの幅に合わせる */
  padding-bottom: 5px;
}

.right-side p{
  font-size: 0.8rem;
  color: #6b6767;
  margin-bottom: 30px;
  line-height: 1.6;
    text-align: left; /* ←中央寄せのポイント！ */
}

/* ここで動画だけを2列グリッドにする */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 動画ラッパー */
.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  transform: scale(0.9); /* ← 0.8倍に縮小 */
  transform-origin: top center; /* 上中央を基準に縮小 */
  border-radius: 10px; /* 角の丸み */
  overflow: hidden;     /* iframe内がはみ出さないように */
  border: none;         /* デフォルト枠線を消す */
  /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 影 */
}

.video-wrapper iframe {
  width: 100%;
  height: 200px; /* 高さは固定かレスポンシブで調整 */
}

.video-title {
  text-align: center;
  font-size: .8rem;
  color: #423e3e;
  margin-top: 10px; /* 動画とタイトルの間隔 */
}



/* ===== 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: 600px) {
  html, body {
    height: auto !important;
    overflow-y: auto !important;
  }

  /* 全体縦並び、任意の高さでスクロール */
  .hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto; /* ←固定を解除 */
    min-height: 100vh;
    overflow: visible; /* ←スクロールさせる */
  }

  /* 上段部分 */
   .left-side {
    position: static;        /* 固定解除 */
    width: 100%;             /* 横幅100% */
    height: auto;            /* 高さ自動 */
    padding: 20px;           /* 内側余白 */
    box-sizing: border-box;
  }

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

 /* 下段部分（動画→SPで全幅） */
  .right-side {
    width: 100%;
    height: auto; /* ←重要 */
    margin-left: 0;
    position: static; /* ←固定解除 */
    overflow: visible; /* ←二重スクロール防止 */
  }

 /* スマホ時は縦1列 */
  .video-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 動画間の余白はお好みで */
  }

   .video-wrapper {
    width: 100%;
  }

  .video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9; /* 常に綺麗な比率 */
  }

  /* MUTEボタン常に表示 */
  #muteBtn {
    position: fixed;
    top: 16px;
    right: 16px;
    bottom: auto;
  }



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

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