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

section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

section:nth-of-type(even) {
  background-color: #f7f7f7;
}

h2 {
  margin-bottom: 24px;
  font-size: 28px;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.fv {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/fv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.fv-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.fv-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.4;
  text-align: center;
}
.fv-title span {
  display: inline;
}
@media (max-width: 768px) {
  .fv-title .break {
    display: block;
  }
}
.fv-lead {
  margin: 24px 0;
}

.about-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.about-text {
  flex: 0 0 40%;
  max-width: 420px;
}
.about-text h2 {
  margin-top: 16px;
  line-height: 1.4;
}
.about-text p {
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-text {
    max-width: 100%;
    text-align: center;
  }
}

.about-image {
  flex: 0 0 60%;
  max-width: 600px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .about-image {
    max-width: 100%;
  }
}

.features ul, .plans ul {
  list-style: none;
  padding: 0;
}

.features li, .plans li {
  margin-bottom: 12px;
}

.contact {
  background-color: #f5f5f5;
  text-align: center;
}
.contact .btn {
  margin-top: 24px;
  font-size: 16px;
}

footer {
  text-align: center;
}/*# sourceMappingURL=style.css.map */