body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
  line-height: 1.8;
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

li{
	list-style:none;
}

ul{
	padding-left:0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* フッター */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #777;
  background-color: #fafafa;
}

.hero {
  position: relative;
  background-image: url('https://source.unsplash.com/1600x600/?hiphop,graffiti');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.hero-content img{
	height:100%;
	width:100%;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
}

.alt {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

.profile-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.info-box {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  margin: 10px 0;
}

.bio-text {
  margin-bottom: 40px;
}

.bio-text h2,
.info-box h2,
.gallery h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.back-button {
  text-align: center;
  margin-top: 60px;
}

.back-button a {
  text-decoration: none;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.back-button a:hover {
  background: #333;
}

.strong li{
	border-left:solid 5px #000000;
}
