body {
  background: #fdf6f3;

  font-family: "Noto Sans JP", sans-serif;
  color: #555;
  margin: 0;
  padding-top: 3.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.nav-link {
  color: #555;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link.active {
  color: #d4a574;
  font-weight: 500;
}

.nav-link:hover {
  color: #d4a574;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a574, #c49660);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-separator {
  color: #ccc;
  margin: 0 0.5rem;
  font-weight: 300;
}


.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem 1.5rem;
}

.logo-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #4B4B4B;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  filter: drop-shadow(0 0 40px #f8b6b6);
}

.logo-title::after {
  content: "";
  display: block;
  width: 260px;
  height: 80px;
  background: radial-gradient(circle, #f8b6b6 0%, #fff7f3 80%);
  filter: blur(32px);
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.7;
}
.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #666;
  margin: 2.5rem 0 1.2rem 0;
  letter-spacing: 0.04em;
  position: relative;
}
.section-title span {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.1em;
}
.summary-text {
  text-align: center;
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 2rem;
  position: relative;
}

.summary-text::after {
  content: "";
  display: block;
  width: auto;
  height: 2px;
  background: #d9d9d9;
  margin: 1.2em auto 0 auto;
  border-radius: 1px;
}

.works-section {
  margin-top: 2.5rem;
}

.works-title {
  font-size: 1.1rem;
  color: #888;
  margin: 2.5rem 0 1rem 0;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.works-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.work-img {
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #f8b6b6;
  background: #fff;
}

.works-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.works-row > div {
  flex: 1;
  text-align: center;
}

.back-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 1.5rem 0;
}
.back-btn {
  background: #fff;
  color: #f38e8e;
  border: 1px solid #f38e8e;
  border-radius: 8px;
  padding: 0.6em 1.6em;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 5%;
}
.back-btn:hover {
  background: #f38e8e;
  color: #fff;
}

@media (max-width: 900px) {
  .main-content {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
    .summary-text {
    font-size: 0.9rem;
  }
  .works-grid, .works-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .work-img {
    width: 90vw;
    max-width: 220px;
  }
    .works-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .nav-links {
    gap: 0.3rem;
  }

  .nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.3px;
  }

  .nav-separator {
    margin: 0 0.3rem;
    font-size: 0.8rem;
  }

}