@import url("../css/common.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700&display=swap");

/* 基本スタイル */
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url(images/bg.jpg);
  background-repeat: repeat;
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  display: flex;
  justify-content: center;
}

/* タイポグラフィ */
h1, h2, nav {
  font-family: "Noto Sans JP", sans-serif;
}

h2 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

/* リンク */
a {
  color: #b51919;
  text-decoration: none;
}

a:visited {
  color: #6e0e0e;
}

a:hover {
  text-decoration: underline;
}

/* レイアウト */
.container {
  width: 50rem;
  margin: 2rem auto;
  background: linear-gradient(180deg, #ffffff 0%, #f3f1ef 100%);
  box-shadow:
    0 0.375rem 2rem rgba(0, 0, 0, 0.15),
    inset 0 0.1875rem 0.375rem rgba(255, 255, 255, 0.9),
    inset 0 -0.1875rem 0.375rem rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  border-radius: 0.5rem;
  overflow: hidden;
}

.container-inner {
  padding: 0 2rem 1.5rem;
}

/* ヘッダー: ウィンドウタイトルバー風 */
.site-header {
  background: linear-gradient(180deg, #d8d4cf 0%, #bfb9b2 100%);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #a8a29e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 100;
  color: #333;
  letter-spacing: 0.06em;
}

/* ナビ行: ナビ + SNSアイコン横並び */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ナビゲーション */
nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

nav a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:visited {
  color: #333;
}

nav a:hover {
  color: #b51919;
  text-decoration: none;
}

nav a.active {
  font-weight: 400;
  color: #b51919;
}

/* SNSアイコン (Font Awesome) */
.sns-icons {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.sns-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #555;
  color: #fff;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: background 0.2s;
}

.sns-icons a:hover {
  background: #b51919;
  text-decoration: none;
}

.sns-icons a.irving-link {
  background: none;
}

.sns-icons a.irving-link img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
}

/* メインコンテンツ */
main {
  padding: 1rem 0;
}

main img {
  border-radius: 0.25rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Profile: 2カラム */
.profile-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.profile-photo {
  width: 18.75rem;
  height: auto;
  flex-shrink: 0;
}

.profile-info h2 {
  margin-top: 0;
}

.profile-info p {
  line-height: 1.8;
}

/* Disco: 2カラム */
.disco-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.disco-jacket {
  width: 11.25rem;
  height: auto;
  flex-shrink: 0;
}

.disco-info {
  line-height: 1.8;
}

.disco-info .album-title {
  font-size: 1rem;
  font-weight: 700;
}

.disco-info .shop-link {
  display: inline-block;
  margin: 0.75rem 0;
}

.disco-info .shop-link img {
  height: 2rem;
  width: auto;
}

/* Links */
.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.links-list li:last-child {
  border-bottom: none;
}

.links-list .link-desc {
  color: #666;
  margin-left: 0.5rem;
}

/* フッター */
footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  font-size: 0.7rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

footer .footer-mail {
  color: #666;
}

footer .footer-copyright {
  color: #666;
}

/* レスポンシブ */
@media (max-width: 46.25rem) {
  .container {
    width: 100%;
    max-width: 22.5rem;
    margin: 1rem auto;
    border-radius: 0.375rem;
  }

  .container-inner {
    padding: 0 1rem 1rem;
  }

  .nav-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .profile-layout {
    flex-direction: column;
    align-items: center;
  }

  .profile-photo {
    width: 100%;
    max-width: 18.75rem;
  }

  .disco-item {
    flex-direction: column;
    align-items: center;
  }

  .disco-jacket {
    width: 100%;
    max-width: 11.25rem;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}
