/* ========================================
   Benefit Content Section
   ======================================== */

.benefit-content {
  padding: 5rem 0 14rem;
  background: #FFF7EE;
}

.benefit-content__inner {
  width: 100%;
  max-width: 80rem; /* 1280px */
  padding: 0 2.5rem; /* 40px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem; /* 80px */
}

/* Section Title */
.benefit-content__header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.benefit-content__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 8px */
  align-items: center;
  text-align: center;
}

.benefit-content__title-ja {
  font-family: 'Kiwi Maru', serif;
  font-weight: 500;
  font-size: 2rem; /* 32px */
  letter-spacing: 0.2rem; /* 3.2px */
  color: #53545D;
  line-height: 1.4;
  white-space: nowrap;
}

.benefit-content__title-en {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 1rem; /* 16px */
  letter-spacing: 0.1rem; /* 1.6px */
  color: #14A0D2;
  line-height: 1.4;
  white-space: nowrap;
}

/* Image Section */
.benefit-content__image-wrapper {
  width: 100%;
  max-width: 65rem; /* 1040px */
  height: 25rem; /* 400px */
  overflow: hidden;
  border-radius: 1.25rem; /* 20px */
}

.benefit-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Description Text */
.benefit-content__description {
  width: 100%;
  max-width: 50rem; /* 800px */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.benefit-content__description-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 1rem; /* 16px */
  color: #53545D;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.benefit-content__description-text--list {
  line-height: 1.6;
}

.benefit-content__description-highlight {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #B78A57;
}

/* Benefits List Section */
.benefit-content__list-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* 48px */
}

.benefit-content__list-header {
  display: flex;
  justify-content: center;
}

.benefit-content__list-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 8px */
  align-items: center;
  text-align: center;
}

.benefit-content__list-title-ja {
  font-family: 'Kiwi Maru', serif;
  font-weight: 500;
  font-size: 1.6875rem; /* 27px */
  letter-spacing: 0.16875rem; /* 2.7px */
  color: #14A0D2;
  line-height: 1.4;
  white-space: nowrap;
}

.benefit-content__list-title-en {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 1rem; /* 16px */
  letter-spacing: 0.1rem; /* 1.6px */
  color: #14A0D2;
  line-height: 1.4;
  white-space: nowrap;
}

/* List Items */
.benefit-content__list {
  width: 100%;
  max-width: 65rem; /* 1040px */
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
}

.benefit-content__list-item {
  width: 100%;
  border-bottom: 1px dotted #CCCCCC;
  padding-bottom: 1.1875rem; /* 19px */
}

.benefit-content__list-item:last-child {
  border-bottom: 1px dotted #CCCCCC;
}

.benefit-content__list-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
}

.benefit-content__list-item-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  color: #53545D;
  line-height: 1.6;
  margin: 0;
}

.benefit-content__list-item-mark {
  color: #14A0D2;
}

.benefit-content__list-item-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 1rem; /* 16px */
  color: #53545D;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Benefit Content */
@media (max-width: 48rem) { /* 768px */
  .benefit-content {
    padding: 4rem 0 14rem;
  }

  .benefit-content__inner {
    padding: 0 1.5rem; /* 24px */
    gap: 3rem; /* 48px */
  }

  .benefit-content__title-ja {
    font-size: 1.5rem; /* 24px */
    letter-spacing: 0.15rem;
    white-space: normal;
  }

  .benefit-content__title-en {
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.0875rem;
  }

  .benefit-content__image-wrapper {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0.625rem; /* 10px */
  }

  .benefit-content__description {
    max-width: 100%;
    gap: 1rem; /* 16px */
  }

  .benefit-content__description-text {
    font-size: 0.9375rem; /* 15px */
    text-align: left;
  }

  .benefit-content__list-section {
    gap: 2rem; /* 32px */
  }

  .benefit-content__list-title-ja {
    font-size: 1.375rem; /* 22px */
    letter-spacing: 0.1375rem;
    white-space: normal;
  }

  .benefit-content__list-title-en {
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.0875rem;
  }

  .benefit-content__list {
    max-width: 100%;
    gap: 1rem; /* 16px */
  }

  .benefit-content__list-item {
    padding-bottom: 1rem; /* 16px */
  }

  .benefit-content__list-item-title {
    font-size: 0.9375rem; /* 15px */
  }

  .benefit-content__list-item-text {
    font-size: 0.875rem; /* 14px */
  }
}
