/* Feature section */
.c-feature {
  padding: 80px 0 90px;
  background: #fff;
}

.c-feature__heading {
  text-align: center;
  margin-bottom: 40px;
}

.c-feature__title {
  font-size: 32px;
  font-weight: 700;
  color: #553018;
  letter-spacing: 0.08em;
}

.c-feature__titleAccent {
  color: #f5a623;
  font-size: 36px;
  font-weight: 800;
}

.c-feature__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.c-feature-card {
  height: 100%;
  border: 2px solid #f7e889;
  border-radius: 18px;
  padding: 28px 26px 32px;
  box-shadow: -8px 12px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: -10px 16px 26px rgba(0, 0, 0, 0.16);
}

.c-feature-card__header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.c-feature-card__number {
  font-size: 44px;
  font-weight: 800;
  color: #f1d238;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  line-height: 1;
}

.c-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #f59b00;
  line-height: 1.3;
}

.c-feature-card__image {
  margin-bottom: 20px;
}

.c-feature-card__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-feature-card__text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

@media screen and (max-width: 767px) {
  .c-feature {
    padding: 56px 0 64px;
  }

  .c-feature__title {
    font-size: 26px;
    letter-spacing: 0.06em;
  }

  .c-feature__titleAccent {
    font-size: 30px;
  }

  .c-feature-card {
    padding: 22px 20px 26px;
  }

  .c-feature-card__header {
    margin-bottom: 14px;
  }

  .c-feature-card__number {
    font-size: 38px;
  }

  .c-feature-card__title {
    font-size: 18px;
  }
}

/* 郵便番号 住所表示メッセージ */
.postal-message {
  font-size: 14px;
  margin-top: 12px;
  line-height: 10px;
}
@media screen and (max-width: 1439px) {
  .postal-message {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(12 / 1440 * 100vw);
    line-height: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .postal-message {
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    line-height: calc(7 / 375 * 100vw);
  }
}
