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

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

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

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
}
.navbar-brand img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}
.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: #05AECF; }

/* ハンバーガーボタン（スマホのみ表示） */
.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;
  transition: all 0.3s;
}

/* スマホメニュー */
.sp-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #000;
  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 #222;
}
.sp-menu ul li a:hover { color: #05AECF; }

/* ==============================
   HERO (PC)
   ============================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  margin-top: -60px;
  padding-top: 60px;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
}
/* PC: オーバーレイを右下に */
.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 35%, rgba(0,0,0,0.6) 100%);
}
.hero-text { text-align: right; color: #fff; }
.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #05AECF;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-logo {
  display: block;
  width: 320px;
  max-width: 90%;
  margin: 0 0 14px auto;
  filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.7));
}
.hero-title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 14px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}
.hero-date {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #05AECF;
  letter-spacing: 2px;
}

/* スマホ用：画像下にテキストエリアを別途表示 */
.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: #333;
}

/* ==============================
   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: #05AECF;
  border-left: 4px solid #05AECF;
  padding-left: 12px;
  margin-bottom: 30px;
}

/* ==============================
   NEWS
   ============================== */
#section-news dl { margin: 0; }
#section-news .news-link {
  color: #05AECF;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #05AECF;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
#section-news .news-link:hover {
  color: #037a94;
  border-color: #037a94;
}
#section-news dt {
  font-weight: bold;
  font-size: 13px;
  color: #05AECF;
  margin-top: 20px;
  margin-bottom: 4px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
}
#section-news dd {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* ==============================
   TITLE LIST
   ============================== */
#section-tracklist .release-group { margin-bottom: 50px; }
#section-tracklist h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.album-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tablelist {
  flex: 1;
  min-width: 260px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 20px 20px 30px;
}
.tablelist h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.tablelist h6 {
  font-size: 11px;
  color: #05AECF;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}


/* 配信リンクボタン */


/* Review */
.review-body p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
}
/* ティザー */
.teaser-grid { justify-content: center; }
.teaser-card {
  min-width: 100%;
  background: #111;
  border: 2px dashed #05AECF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 50px 20px;
}
.teaser-inner { text-align: center; }
.teaser-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #05AECF;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.teaser-date {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.teaser-desc {
  font-size: 15px;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.listen-btn {
  display: block;
  margin-top: 16px;
  padding: 10px 0;
  background: #05AECF;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: background 0.2s;
}
.listen-btn:hover {
  background: #037a94;
  color: #fff;
}
/* ジャケット画像 */
.jacket-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.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: #999;
  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: #000;
  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: #05AECF; }

/* ==============================
   FOOTER
   ============================== */
#f {
  background: #000;
  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: #000;
  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: #333; }

/* ==============================
   MEDIA QUERY：スマホ（767px以下）
   ============================== */
@media screen and (max-width: 767px) {

  body { margin-top: 60px; }

  /* ナビ：PCメニュー非表示、ハンバーガー表示 */
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  /* ヒーロー：オーバーレイ非表示、画像の下にテキスト */
  .hero { margin-top: -60px; padding-top: 60px; background: #000; }
  .hero-photo { opacity: 1; }
  .hero-overlay { display: none; }
  .hero-sp-text {
    display: block;
    background: #000;
    text-align: center;
    padding: 20px 16px 24px;
  }
  .hero-sp-text .hero-label {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .hero-sp-text .hero-logo {
    width: 200px;
    margin: 0 auto 10px;
  }
  .hero-sp-text .hero-title {
    font-size: 14px;
    margin-bottom: 8px;
    text-shadow: none;
  }
  .hero-sp-text .hero-date {
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* イントロ */
  #intro { padding: 30px 16px 24px; }
  .intro-catch { font-size: 14px; }
  .intro-body { font-size: 13px; }

  /* Title List：1カラム */
  .album-grid { flex-direction: column; gap: 16px; }
  .tablelist { min-width: 100%; }

  /* Links */
  #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; }
}
