@charset "UTF-8";
header.archives-header {
  background-color: var(--policy-back);
}
header.archives-header .archives-description {
  background-color: var(--policy-color);
}

.archive-button .btn.status-available {
  border: 1px solid var(--policy-color);
  color: var(--policy-color);
}
.archive-button .btn.status-available:hover {
  background-color: var(--policy-back);
}

/* ========================================
   Reason Sections
   ======================================== */
.reason {
  padding: 30px 0 60px;
}

.reason__label-bar {
  background: #bfbf00;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.reason__label {
  font-family: "M PLUS 2", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.reason__title {
  font-size: 32px;
  font-weight: 700;
  color: #404040;
  line-height: 38px;
  margin-bottom: 4px;
}

.reason__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 38px;
  margin-bottom: 16px;
}

.reason__highlight-box {
  background: #fff6ef;
  padding: 16px 28px;
  margin-bottom: 30px;
}

.reason__highlight-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
}

.reason__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.reason__content-row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.reason__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
}

.reason__text p {
  margin-bottom: 16px;
}

.reason__text p:last-child {
  margin-bottom: 0;
}

.reason__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 480px;
}

.reason__image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
   Finance Info Box
   ======================================== */
.finance-box {
  margin-top: 50px;
}

.finance-box__inner {
  background: #eff5ff;
  padding: 30px 60px 40px;
  margin: 0 80px;
}

.finance-box__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.finance-box__icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.finance-box__headline {
  font-size: 20px;
  font-weight: 700;
  color: #1162b2;
  line-height: 32px;
}

.finance-box__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  padding: 0 14px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  position: relative;
  padding: 60px 0;
  margin-top: 40px;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  padding: 0;
}

.cta-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #404040;
  text-align: center;
  line-height: 38px;
  margin-bottom: 12px;
}

.cta-section__underline {
  width: 648px;
  height: 11px;
  background: #bfbf00;
  margin: 0 auto 40px;
}

.cta-section__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cta-section__text-box {
  background: rgba(255, 255, 255, 0.77);
  padding: 20px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cta-section__text-box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
  margin-bottom: 8px;
}

.cta-section__text-box p:last-child {
  margin-bottom: 0;
}

.cta-section__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 522px;
}

.cta-section__image img {
  width: 100%;
  height: 327px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
   Responsive - Tablet (1024px以下)
   ======================================== */
@media (max-width: 1024px) {
  .reason {
    padding: 24px 20px 40px;
  }
  .reason__title {
    font-size: 24px;
    line-height: 32px;
  }
  .reason__subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .reason__content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reason__content-row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reason__image {
    width: 100%;
  }
  .reason__image img {
    height: 240px;
  }
  .finance-box__inner {
    margin: 0;
    padding: 24px 20px 30px;
  }
  .finance-box__headline {
    font-size: 17px;
  }
  .cta-section__inner {
    padding: 0 20px;
  }
  .cta-section__title {
    font-size: 24px;
    line-height: 32px;
  }
  .cta-section__underline {
    width: 80%;
  }
  .cta-section__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-section__image {
    width: 100%;
  }
  .cta-section__image img {
    height: 240px;
  }
}
/* ========================================
   Responsive - Mobile (768px以下)
   ======================================== */
@media (max-width: 768px) {
  .reason {
    padding: 20px 16px 30px;
  }
  .reason__label {
    font-size: 14px;
  }
  .reason__title {
    font-size: 20px;
    line-height: 28px;
  }
  .reason__subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .reason__highlight-box {
    padding: 12px 16px;
  }
  .reason__highlight-box p {
    font-size: 14px;
    line-height: 24px;
  }
  .reason__text {
    font-size: 14px;
    line-height: 24px;
  }
  .reason__image img {
    height: 200px;
  }
  .finance-box {
    margin-top: 30px;
  }
  .finance-box__inner {
    padding: 20px 16px;
  }
  .finance-box__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .finance-box__icon {
    width: 36px;
    height: 36px;
  }
  .finance-box__headline {
    font-size: 15px;
    line-height: 24px;
  }
  .finance-box__text {
    font-size: 14px;
    line-height: 24px;
    padding: 0;
  }
  .finance-box__inner .finance-box__text br {
    display: none;
  }
  .cta-section {
    padding: 40px 0;
    margin-top: 20px;
  }
  .cta-section__inner {
    padding: 0 16px;
  }
  .cta-section__title {
    font-size: 20px;
    line-height: 28px;
  }
  .cta-section__underline {
    width: 90%;
    height: 8px;
    margin-bottom: 24px;
  }
  .cta-section__text-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .cta-section__text-box p {
    font-size: 14px;
    line-height: 26px;
  }
  .cta-section__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .cta-section__image img {
    height: 200px;
  }
}