* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  color: #222;
  background: #fafafa;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.logo {
  height: 60px;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.profile-img,
.activities-img,
.gear-img {
  max-width: 100%;
  border-radius: 12px;
  margin: 12px 0;
}

.site-header {
  background: #000000;
  color: #fff;
  position: relative;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  gap: 12px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  padding: 0;
  text-align: center;
}

.about,
.profile,
.links {
  margin-top: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

h2,
h3,
h4 {
  margin-bottom: 12px;
}

.artists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.artists li {
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 6px;
}

.social img {
  height: 28px;
  margin-right: 8px;
}

.site-footer {
  margin-top: 36px;
  padding: 18px 0;
  text-align: center;
  color: #666;
}

.activities .events {
  list-style: none;
  margin-top: 12px;
}

.activities .events li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    padding: 12px;
    border-radius: 0 0 8px 8px;
  }

  .main-nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ==== トリミング付き画像表示 ==== */
.image-container {
  width: 100%;
  aspect-ratio: 2839 / 1150; /* 元画像横幅 ÷ 表示したい縦幅(500px) */
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 100%;
  display: block;
  transform: translateY(-200px); /* y=500から表示開始 */
}

/* 画像上のテキスト */
.overlay {
  position: absolute;
  bottom: 7%;
  right: 5%;
  color: white;
  text-align: left;
}

.overlay h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 0 10px 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

.overlay p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}
