/* ===== reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #555;
  background: #f4f4f4;
  line-height: 1.7;
}

/* ===== heading ===== */
h2 {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #888;
  font-weight: 400;
}

/* ===== header ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 20px 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ===== FV ===== */
.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.fv-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fv-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

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

.fv-slide.is-active {
  opacity: 1;
}

.fv-copy {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
}

/* ===== section ===== */
.section {
  padding: 120px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== grid ===== */
.grid3 {
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== card ===== */
.card {
  text-decoration: none;
  color: #555;
  display: block;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* news text */
.card .date {
  font-size: 11px;
  color: #999;
  margin-top: 10px;
  letter-spacing: 1px;
}

.card .title {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.6;
}

/* ===== more button ===== */
.more {
  display: inline-block;
  border: 1px solid #c9bfa8;
  background: none;
  padding: 10px 30px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  text-decoration: none;
  cursor: pointer;
}

/* ===== about ===== */
.about-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.about-wrap img {
  width: 420px;
  height: auto;
}

.about-text {
  font-size: 13px;
  line-height: 2;
}

/* ===== flow ===== */
.flow-img {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 20px;
  display: block;
}

.center {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

/* ===== price ===== */
.price-box {
  width: 900px;
  max-width: 100%;
  height: 160px;
  margin: 0 auto 20px;
  background: #d8d2c2;
}

/* ===== footer ===== */
.footer {
  background: #d8d2c2;
  padding: 80px 20px;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  border: none;
  padding: 12px 40px;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #555;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

.copy {
  font-size: 11px;
  color: #777;
}

/* ===== responsive ===== */
@media (max-width: 768px) {

  .grid3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-wrap {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-wrap img {
    width: 100%;
  }

  .flow-img,
  .price-box {
    width: 100%;
  }

  .nav {
    gap: 20px;
    font-size: 11px;
  }

  .section {
    padding: 80px 16px;
  }
}
