/* ========================================
   Minor Page Styles
   ======================================== */

/* ----------------------------------------
   Minor Content Section
   ---------------------------------------- */
.l-section--minor-content {
  padding: 45px 0 100px;
  background-color: #fff;
}

.l-minor-content {
  display: flex;
  justify-content: center;
}

.l-minor-content__wrapper {
  width: 1078px;
  background-color: #F2F9FB;
  border: 1px solid #2A9CAE;
  padding: 30px 20px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0 auto;
}

.c-heading--minor-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin: 0 auto 50px;
  line-height: 43px;
  letter-spacing: 0;
}

.l-minor-content__text {
  max-width: 887px;
  margin: 0 auto 45px;
  padding-bottom: 45px;
  position: relative;
}

.l-minor-content__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 763px;
  height: 1px;
  background: #ccc;
}

.c-text--minor {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin: 0 0 30px 0;
  text-align: center;
}

.c-text--minor:last-of-type {
  margin-bottom: 0;
}

.l-minor-content__button {
  text-align: center;
  padding: 0;
}

.c-btn--download {
  display: inline-block;
  background-color: #54b7c6;
  border: 1px solid #54b7c6;
  color: #fff;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 48px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  width: 397px;
  height: 75px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-btn--download:hover {
  background-color: #45a5b4;
  border-color: #45a5b4;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 1200px) {
  .l-minor-content__wrapper {
    width: 90%;
    max-width: 1078px;
  }

  .l-minor-content__text {
    width: 100%;
  }

  .c-btn--download {
    width: 100%;
    max-width: 397px;
    height: auto;
    min-height: 75px;
  }
}

@media (max-width: 1024px) {
  .c-heading--minor-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .c-text--minor {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .l-section--minor-content {
    padding: 30px 0 50px;
  }

  .l-minor-content__wrapper {
    padding: 30px 20px;
  }

  .c-heading--minor-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .c-text--minor {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .c-btn--download {
    width: 100%;
    max-width: 397px;
    height: auto;
    min-height: 60px;
    padding: 15px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .l-minor-content__wrapper {
    padding: 30px 15px;
  }

  .c-heading--minor-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .c-text--minor {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .c-btn--download {
    width: 100%;
    max-width: 397px;
    height: auto;
    min-height: 50px;
    padding: 12px 24px;
    font-size: 13px;
  }
}

