* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

.header {
  width: 100%;
  padding: 24px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.header__nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.header__nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: #e89cae;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #e89cae;
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header__inner {
    justify-content: center;
    gap: 16px;
  }

  .header__nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__nav a {
    font-size: 13px;
  }
}

.section {
  padding: 80px 16px;
}
.section--alt {
  background: #faf7f7;
}
.section--dark {
  background: #111;
  color: #fff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.btn {
  padding: 12px 28px;
  border-radius: 999px;
}
.btn--primary {
  background: #e89cae;
  color: #fff;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.card__image {
  background: #ccc;
  border-radius: 12px;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
}

.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible,
.slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card--hover {
  overflow: hidden;
}
.card--hover .card__image {
  transition: transform 0.6s ease;
}
.card--hover:hover .card__image {
  transform: scale(1.05);
}/*# sourceMappingURL=style.css.map */