body {
  margin: 0;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  background-image: url('../img/baraback.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #333;
}

header {
  background: rgba(255, 240, 245, 0.9);
  padding: 10px 20px;
  border-bottom: 2px solid #b22222;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 160px;
  height: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  text-decoration: none;
  color: #b22222;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
  display: block;
}

.nav ul li a:hover {
  background: #ffe4e1;
}

.main-visual img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

section {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background: #ffe4e1;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #b22222;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.btn:hover {
  background: #8b1a1a;
}

footer {
  background: rgba(255, 240, 245, 0.9);
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}
