@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/bg02.gif);
  background-repeat: repeat;
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  display: flex;
  justify-content: center;
}

/* リンク（元デザインの緑） */
a {
  color: #006633;
  text-decoration: none;
}

a:visited {
  color: #006633;
}

a:hover {
  text-decoration: underline;
}

/* レイアウト */
.container {
  width: 50rem;
  margin: 2rem auto;
  background: #fff;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* ヘッダー: bg01.jpgのグランジ風バー */
.site-header {
  background: url(images/bg01.jpg) repeat-x center;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem;
  min-height: 4.375rem;
}

/* ナビゲーション: 元のイタリック風 *付きテキスト */
nav {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
}

nav a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  transform: scaleY(1.25);
  transform-origin: center;
  transition: color 0.2s;
}

nav a:visited {
  color: #333;
}

nav a::before {
  content: "*";
}

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

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

/* SNSアイコン (公式画像) */
.sns-icons {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.sns-icons a {
  display: block;
  width: 2rem;
  height: 2rem;
  transition: opacity 0.2s;
}

.sns-icons a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.sns-icons a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

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

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

/* メインコンテンツ */
main {
  padding: 1.25rem 2rem;
}

main img {
  border-radius: 0.25rem;
}

/* トップ: ヒーロー画像 + フッターオーバーレイ */
.hero-wrap {
  position: relative;
  padding: 0;
}

.hero-wrap img {
  border-radius: 0;
}

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

.hero-copy {
  position: absolute;
  right: 3.8rem;
  top: 48%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  text-shadow: 0.14rem 0.16rem 0.35rem rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.hero-copy p {
  margin: 0;
  line-height: 1.1;
  font-weight: 300;
}

.hero-copy-ja {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.hero-copy-en {
  margin-top: 0.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-copy-title {
  margin-top: 0.5rem;
  font-size: 2.15rem;
  letter-spacing: 0.02em;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0.4rem 1rem;
  background: none;
  font-size: 0.7rem;
  color: #555;
  border-top: none;
  margin-top: 0;
}

.hero-footer a {
  color: #555;
}

.hero-footer img {
  width: auto;
  height: 3.5rem;
  vertical-align: middle;
  border-radius: 0;
  transform: none;
  filter: none;
}

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

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

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

/* Disco: アルバムセクション */
.disco-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.disco-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.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 .album-meta {
  font-size: 0.75rem;
  color: #666;
}

.disco-info .album-note {
  font-size: 0.75rem;
}

/* YouTube埋め込み */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0.25rem;
}

/* 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: flex-end;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.7rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

footer img {
  width: auto;
  height: 3.5rem;
  vertical-align: middle;
  border-radius: 0;
}

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

  .site-header {
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1rem;
  }

  main {
    padding: 1rem;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.2rem;
    justify-content: flex-end;
    align-items: end;
    padding: 0.75rem 1rem;
    text-align: left;
    line-height: 1.5;
  }

  footer span:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  footer span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
  }

  footer a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    flex-shrink: 0;
  }

  .hero-footer {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.2rem;
    justify-content: flex-end;
    align-items: end;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.88);
    text-align: left;
    line-height: 1.5;
  }

  .hero-copy {
    right: 1rem;
    top: 46%;
  }

  .hero-copy-ja {
    font-size: 1.25rem;
  }

  .hero-copy-en {
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .hero-copy-title {
    margin-top: 0.3rem;
    font-size: 1.35rem;
  }

  .hero-footer span:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-footer span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
  }

  .hero-footer a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    flex-shrink: 0;
  }

  .hero-footer img {
    width: auto;
    height: 3.5rem;
    object-fit: contain;
    border-radius: 0;
    transform: none;
    filter: none;
  }

  footer img {
    width: auto;
    height: 3.5rem;
    object-fit: contain;
    border-radius: 0;
  }
}
