body {
  margin: 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  overflow: auto;
  background: rgba(74, 117, 73, 0.173);
  background-image: url('../assets/images/left-A.png');
  background-position: center;

}

.hero {
  display: flex;
  width: 100vw;
  min-height: 100vh;
}

.left-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* 左サイド固定 */
}

.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: 40px; /* 左サイド下からの距離 */
  left: 25%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 400;
}

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

/* 右サイド */


/* 右サイド初期状態（薄く、操作不可） */
.right-side {
  position: relative; /* モーダルの基準にする */
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: rgba(136, 136, 136, 0.401);
}

.right-side.locked {
  overflow: hidden;   /* スクロール禁止 */
}


/* パスワード解除後に表示させるクラス */
.right-side.active {
  display: block;
}

/* パスワードモーダル（右サイド内） */
.password-modal {
  position: absolute; /* fixed → absolute に変更 */
  top: 0;
  left: 0;
  width: 100%;       /* 右サイド全体に合わせる */
  height: 100%;      /* 右サイド全体 */
  background-image: url('../assets/images/profile.jpg');
  opacity: 1.0;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

/* モーダルの中身をおしゃれに */
.password-content {
  background: rgba(238, 238, 238, 0.926);
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px 30px;     /* 上下左右の余白を小さく */
  width: 300px;            /* 横幅を固定 */
  max-width: 80%;          /* スマホなどで画面からはみ出さない */
  text-align: center;
  color: rgba(255, 27, 27, 0.878);
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.password-content h2 {
  color: #15a737 !important;
  font-size: 4rem; 
  text-align: center;
  margin-bottom: 5px;
  font-weight: 600;
}

.password-note {
  color: #555454;      /* 文字色 */
  font-size: 0.9rem;     /* フォントサイズ */
  margin-bottom: 5px;   /* 下の余白 */
}

.password-content input {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 200px;
  margin-top: 10px;
}


.password-content button {
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: #26262658;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.password-content button:hover {
  background: #15a737;
}

.error-text {
  color: #ff8a8a;
  margin-top: 10px;
  font-size: 0.9em;
}


/* 右側（WORKS）用 */
.right-side {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.283);
  height: 100vh;    /* 右サイド高さ固定 */
  overflow-y: auto; /* 右サイドのみスクロール */
  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;
}


/* WORKS シンプルリスト（2列） */
.works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 各実績アイテム */
/* WORKS の画像を統一 */
.works-list .work-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #00000000;
  border-radius: 9px;
}
/* 年・タイトル・制作内容 */
.work-item .year {
  font-size: 0.7rem;
  color: #6b6767;
  margin: 0 0 2px 0;
}

.work-item .title {
  font-size: 0.7rem;
  color: #6b6767;
  font-weight: 500;
  margin: 0 0 2px 0;
}

.work-item .content {
  font-size: 0.7rem;
  color: #6b6767;
  margin: 0;
  line-height: 1.4;
}


/* ===== 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 {
  color: #ffffff;
  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) {
  .hero {
    flex-direction: column;  /* 上下に並べる */
    width: 100%;
    height: auto;           /* 高さ固定解除 */
  }

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

  .right-side {
    margin-left: 0;          /* 左サイド固定解除に伴いリセット */
    width: 100%;             /* 横幅100% */
    min-height: auto;        /* 高さ自動 */
    padding: 20px;           /* 内側余白 */
    box-sizing: border-box;
  }

  /* 右サイド全体 */
  .right-side.locked {
    overflow: hidden;    /* 右サイドのスクロールを止める */
    position: relative;  
  }

  /* body全体もスクロール不可にする */
  body.locked {
    overflow: hidden;    /* ページ全体スクロール禁止 */
    touch-action: none;  /* モバイルでスクロール防止 */
  }

  /* パスワードモーダル */
  .password-modal {
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;         /* 右サイド幅いっぱい */
    max-width: 100%;
    background-image: url('../assets/images/profile.jpg');
    background-position: 50% 50%; /* ← 左へ10%寄せる */
    padding: 15px 20px;
    border-radius: 0;
    z-index: 900;
    display: flex;       /* flexで中身を上寄せ */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  /* モーダル表示時のみ */
  body.locked .password-modal {
    display: flex;
  }



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

  /* 動画グリッドも1列に */
  .video-grid {
    grid-template-columns: 1fr; 
    gap: 15px;
  }


  .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-modal {
  position: fixed;
  inset: 0;               /* top:0; right:0; bottom:0; left:0 と同じ */
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  display: none;          /* JSで open のときに flex にする想定 */
  justify-content: center;
  align-items: center;
  z-index: 2000;          /* ★ パスワードよりも上にする */
}



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

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