body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
}

/* ------------ Header ------------ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ------------ Main Visual ------------ */
.main-visual {
  height: 380px;
  background-image: url("images/main.jpg"); /* ← ここを変更（サウナ画像） */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ------------ About ------------ */
.section {
  padding: 60px 40px;
}

.about-body {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  
}


.about-text p {
  border-bottom: 1px solid #ddd;
  width: 260px;
  margin: 10px 0;
}

.about-image {
  width: 260px;
  height: 200px;
  background: #eee2d0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------ Effects ------------ */
.why-items {
  display: flex;
  justify-content: center;
  gap: 120px; /* 80px → 120px に変更 */
  margin-top: 40px;
}

.why-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why {
  padding: 60px 40px;
}

.why h2 {
  margin-top: 20px; /* 上部に余白を追加 */
  margin-left: 40px; /* 左側に余白を追加 */
  font-size: 28px;
}

.icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-box p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}


/* ------------ Voices ------------ */
.voices-section {
  text-align: center;
  padding: 40px 0;
}

.voice-icons {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 20px;
}

.voice-item {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-item img {
 width: 150px; /* 120px → 80px に変更 */
  height: 150px; /* 120px → 80px に変更 */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.voice-item:hover img {
  transform: scale(1.05);
}

.voice-item p {
  margin-top: 10px;
  font-size: 14px;
}
