/* Base */
body { margin: 0; }

html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:"Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, Arial, sans-serif;
  font-feature-settings:"palt";
}

.page { min-height: auto !important; }
.apply-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #222;
    align-self: stretch;
  }
  
  /* Container */
  .apply-result__container {
    max-width: 1180px;
    padding-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-inline: auto;
    display: flex;
    width: 768px;
  }
  
  .apply-result__content {
    flex: 1 0 0;
    align-self: stretch;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .apply-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  /* Head */
  .apply-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .apply-title {
    margin: 0;
    color: #222222;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 16px;
  }
  
  .apply-warning {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .apply-warning__icon {
    width: 24px;
    height: 24px;
    background: #F29600;
    border-radius: 2px;
    display: inline-block;
  }
  
  .apply-warning__text {
    color: #F29600;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }
  
  .apply-desc {
    margin: 0;
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  /* Bank info */
  .bank-info {
    display: flex;
    flex-direction: column;
  }
  
  .bank-info__row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .bank-info__row + .bank-info__row {
    border-top: 1px solid #7F7F7F;
    padding-top: 16px;
    margin-top: 16px;
  }
  
  .bank-info__label {
    width: 160px;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .bank-info__value {
    flex: 1 1 0;
  }
  
  .bank-info__text {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  /* Note */
  .apply-note {
    align-self: stretch;
    padding: 16px;
    background: #F9F9F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  
  .apply-note__text {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }
  
  /* CTA */
  .apply-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    border: none;
    cursor: pointer;
  }
  
  .btn--primary {
    background: #F08519;
    color: #fff;
  }
  
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .apply-result__container {
      padding: 24px 16px 0;
      gap: 24px;
      width: auto;
    }
  
    .bank-info__row {
      gap: 16px;
    }
  
    .bank-info__label {
      width: 120px;
    }
  
    .apply-footer {
      padding: 24px 16px 32px;
    }
  
    .apply-footer__bottom {
      height: auto;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .apply-note {
        padding: 12px;
    }

    .apply-card {
        padding: 40px 0;
    }

    .apply-title {
        margin-top: 20px;
    }
  }
  