* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #111;
  line-height: 1.6;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 1000;
}
header .logo {
  font-weight: bold;
  font-size: 1.2rem;
}
header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
}
.hero {
  background: url('../img/slide999.JPG') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .inner {
  background: rgba(255,255,255);
  padding: 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.news {
  background: #fff;
  text-align: center;
  font-size: 0.9rem;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.shop-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-card img {
  width: 100%;
  display: block;
  height: auto;
}

.caption-text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  text-align: center;
  padding: 0.5em 0;
  font-size: 0.9rem;
}

.usurai-description {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 4rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

.usurai-description .image {
  flex: 1 1 40%;
}

.usurai-description .image img {
  width: 100%;
  height: auto;
}

.usurai-description .text {
  flex: 1 1 50%;
}

.usurai-description h2 {
  margin-bottom: 0.1em;
}

.usurai-description h3 {
  margin-top: 0;
  margin-bottom: 0.3em;
}

.usurai-description .text p {
  font-size: 0.8rem;
  line-height: 1.4;
}



.shops {
  background: #f5f5f5;
}
.shops h2, .works h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.shop-grid, .work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.shop-item, .work-item {
  background: white;
  padding: 1rem;
  text-align: center;
}
.work-gallery {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.work-gallery img {
  width: 180px;
  height: auto;
}
.profile {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.profile > div {
  flex: 1 1 300px;
}
footer {
  background: #fafafa;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}
footer .icons {
  margin-top: 1rem;
}
footer .icons img {
  width: 24px;
  margin: 0 0.5rem;
}