@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Noto Serif JP", "Times New Roman", Times, serif;
  font-size: 16px;
  color: #222;
  background: #fff;
  margin-top: 60px;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
}
.navbar-artist {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e8c4b8;
}
.navbar-nav {
  list-style: none;
  display: flex;
  gap: 24px;
}
.navbar-nav li { width:auto; height:auto; padding:0; margin:0; }
.navbar-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.navbar-nav a:hover { color: #e8c4b8; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

/* スマホメニュー */
.sp-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #1a1a1a;
  z-index: 999;
  padding: 10px 0 20px;
}
.sp-menu.open { display: block; }
.sp-menu ul { list-style: none; }
.sp-menu ul li { width:auto; height:auto; padding:0; margin:0; }
.sp-menu ul li a {
  display: block;
  padding: 14px 30px;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 1px solid #333;
}
.sp-menu ul li a:hover { color: #e8c4b8; }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: -60px;
  padding-top: 60px;
}
.hero-jacket-grid {
  display: flex;
  width: 100%;
}
.hero-jacket-grid img {
  flex: 1;
  width: 25%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.75;
}
.hero-overlay {
  position: absolute;
  top: 60px; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 6%;
  padding-bottom: 30px;
  background: linear-gradient(to right, transparent 30%, rgba(20,10,10,0.72) 100%);
}
.hero-text { text-align: right; color: #fff; }
.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #e8c4b8;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-bandname {
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 14px;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.8);
}
.hero-title {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}
.hero-sp-text { display: none; }

/* ==============================
   INTRO
   ============================== */
#intro {
  padding: 50px 80px 40px;
  background: #fff;
  max-width: 960px;
  margin: 0 auto;
}
.intro-catch {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.9;
  margin-bottom: 20px;
}
.intro-body {
  font-size: 15px;
  line-height: 2;
  color: #444;
}
.intro-body em {
  font-style: italic;
  color: #c08070;
}

/* ==============================
   SECTION COMMON
   ============================== */
.section {
  padding: 60px 0 50px;
  border-top: 1px solid #eee;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c08070;
  border-left: 4px solid #c08070;
  padding-left: 12px;
  margin-bottom: 30px;
}

/* ==============================
   TITLES
   ============================== */
.album-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tablelist {
  flex: 1;
  min-width: 200px;
  background: #faf8f7;
  border-radius: 8px;
  padding: 20px 20px 30px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
}
.tablelist:hover {
  background: #f5e6e0;
  box-shadow: 0 4px 18px rgba(192,128,112,0.18);
}
.tablelist h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.tablelist h6 {
  font-size: 11px;
  color: #c08070;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 700;
}
.jacket-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}
.tablelist table { width: 100%; border-collapse: collapse; }
.tablelist table td {
  padding: 4px 8px 4px 0;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
  border-bottom: 1px dotted #ddd;
}
.tablelist table td:first-child {
  color: #aaa;
  width: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  padding-top: 6px;
}

/* ==============================
   LINKS
   ============================== */
#section-link ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#section-link ul li { width:auto; height:auto; padding:0; margin:0; }
#section-link ul li a {
  display: inline-block;
  padding: 10px 24px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.2s;
}
#section-link ul li a:hover { background: #c08070; }

/* ==============================
   FOOTER
   ============================== */
#f {
  background: #1a1a1a;
  border-top: 3px solid #fff;
  padding: 24px 0;
  margin-top: 60px;
  text-align: center;
}
#f p {
  color: #fff;
  font-size: 12px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
}

/* PAGE TOP */
#page-top { position: fixed; bottom: 20px; right: 20px; display: none; }
#page-top a {
  background: #1a1a1a;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
}
#page-top a:hover { background: #c08070; }

/* ==============================
   MEDIA QUERY：スマホ
   ============================== */
@media screen and (max-width: 767px) {
  body { margin-top: 60px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .hero { margin-top: -60px; padding-top: 60px; }
  .hero-jacket-grid img { opacity: 1; }
  .hero-overlay { display: none; }
  .hero-sp-text {
    display: block;
    background: #1a1a1a;
    text-align: center;
    padding: 20px 16px 24px;
    color: #fff;
  }
  .hero-sp-text .hero-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #e8c4b8;
    margin-bottom: 8px;
  }
  .hero-sp-text .hero-title {
    font-size: 14px;
    line-height: 1.9;
  }
  .hero-sp-name {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 6px;
  }

  #intro { padding: 30px 16px 24px; }
  .intro-catch { font-size: 14px; }
  .intro-body { font-size: 13px; }

  .album-grid { flex-direction: column; gap: 16px; }
  .tablelist { min-width: 100%; }

  #section-link ul { flex-direction: column; gap: 10px; }
  #section-link ul li a { display: block; text-align: center; }

  .container { padding: 0 16px; }
  .section { padding: 40px 0 30px; }
}

/* ==============================
   REVIEWS
   ============================== */
.review-period {
  margin-top: 1.5em;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c08070;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.review-body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 1.2em;
}
.review-body p:last-child { margin-bottom: 0; }

/* ==============================
   MODAL
   ============================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 10px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 30px 28px 36px;
  position: relative;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.modal-close:hover { color: #c08070; }
.modal-box h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.modal-box h6 {
  font-size: 11px;
  color: #c08070;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 700;
}
.modal-box .jacket-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 18px;
  display: block;
}
.modal-box table { width: 100%; border-collapse: collapse; }
.modal-box table td {
  padding: 4px 8px 4px 0;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
  border-bottom: 1px dotted #ddd;
}
.modal-box table td:first-child {
  color: #aaa;
  width: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  padding-top: 6px;
}
.modal-box .review-period {
  margin-top: 1.2em;
}
.modal-box .review-body p {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .modal-box { padding: 24px 18px 28px; }
}
