@charset "utf-8";

/* Preserved from MemberShipApplication_page.jsp; only responsive integration rules were added. */
.membership-application-page {
  margin-top: 25px;
}
 .membership-application-page section {
  margin-top: 50px;
}
 .membership-application-page section:first-child {
  margin-top: 0;
}
 .membership-application-page h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}
 .application-process {
  display: grid;
  grid-template-columns: repeat(4, 205px);
  justify-content: space-between;
  gap: 0;
}
 .application-process li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 210px;
  width: 205px;
  padding: 22px 12px 16px;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
}
 .application-process li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -44px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2f5597 url("../../images/arrow.png") no-repeat center;
  transform: translateY(-50%);
}
 .application-process li:last-child::after {
  display: none;
}
 .application-process .process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: 14px;
}
 .application-process .process-icon img {
  display: block;
}
 .application-process h3 {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
 .application-process p {
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}
 .application-process a {
  display: inline-block;
  margin-top: 8px;
  color: #244b8f;
  font-size: 14px;
  line-height: 1.25;
}
 .application-download-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}
 .application-download-note a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #999;
  border-radius: 3px;
  background: #f7f7f7;
  color: #555;
  font-size: 15px;
}
 .table-wrapper {
  position: relative;
}
 .table-wrapper .money {
  position: absolute;
  top: -30px;
  right: 0;
  color: #111;
  font-size: 15px;
}
 .fee-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}
 .fee-table th,
.fee-table td {
  height: 40px;
  padding: 0 8px;
  border: 1px solid #2f5597;
  color: #111;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}
 .fee-table th {
  background: #edf3fc;
  font-weight: 500;
}
 .fee-table thead tr:first-child th {
  height:30px;
  border-bottom-color: #2f5597;
}
 .fee-table thead tr:nth-child(2) th {
  height: 30px;
  background: #f4f8fe;
}
 .fee-table tbody td:first-child {
  background: #f4f8fe;
  font-weight: 500;
}
 .membership-application-page .notice-list p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}
 .membership-account-box {
  margin-top: 54px;
  padding: 22px 30px 24px;
  border-radius: 8px;
  background: #edf3fc;
  text-align: center;
}
 .membership-account-box .account-title {
  margin-bottom: 10px;
  color: #2f5597;
  font-size: 18px;
  line-height: 1.2;
}
 .membership-account-box .account-number {
  margin-bottom: 6px;
  color: #2f5597;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
 .membership-account-box .organization {
  margin-bottom: 22px;
  color: #2f5597;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
 .membership-account-box .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: #6f82b6;
  font-size: 15px;
  line-height: 1.3;
}
 .membership-join-action {
  margin-top: 64px;
}
 .membership-join-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 84px;
  border-radius: 999px;
  background: #385c9d;;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
}
 .membership-join-button span {
  margin-left: 12px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1080px) {
  .application-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .application-process li {
    width: 100%;
  }

  .application-process li::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .application-process {
    grid-template-columns: 1fr;
  }

  .application-download-note,
  .membership-account-box .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .table-wrapper {
    overflow-x: auto;
    padding-top: 30px;
  }

  .table-wrapper .money {
    top: 0;
  }

  .fee-table {
    min-width: 620px;
  }

  .membership-account-box {
    padding: 22px 18px 24px;
  }

  .membership-account-box .account-number {
    font-size: 21px;
  }

  .membership-join-button {
    min-height: 68px;
    padding: 0 20px;
    font-size: 23px;
  }
}
