@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

chrome_annotation {
  border: none !important;
}

h3 {
  font-weight: 700;
  font-size: 16px;
  color: #494949;
}

p {
  font-weight: 400;
  font-size: 14px;
  color: #494949;
}

ul, li {
  list-style: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none !important;
}

input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-clear-button {
  display: none !important;
}

button {
  cursor: pointer;
}

  body {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    color: #494949;
  }

  /* Page container */
  .page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
  }

  /* Header */
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 80px;
    box-shadow: 0 5px 5px #0000000d;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
  }

  .site-header .logo-container {
    margin-top: 5px;
    width: 135px;
  }

  .site-header .logo-container img {
    width: 100%;
  }

  /* Main content */
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 88px;
  }

  /* Notice section */
  .notice-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 22px 50px 20px;
    max-width: 1080px;
    width: calc(100% - 30px);
    border: 1px solid #DE3C3C;
  }

  .notice-section .notice-icon-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .notice-section .notice-icon-container img {
    margin-top: -2px;
  }

  .notice-section .notice-icon-container .notice-title {
    font-weight: 700;
    font-size: 16px;
    color: #DE3C3C;
  }

  .notice-section .notice-text {
    font-weight: 400;
    font-size: 16px;
    color: #494949;
    line-height: 1.65;
  }

  /* Login container */
  .login-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 30px);
    max-width: 1080px;
    padding: 58px 20px 57px;
    border-radius: 5px;
    background: #F7F7F7;
  }

  .login-container-wrap {
    max-width: 880px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .login-container .login-heading {
    font-weight: 700;
    font-size: 26px;
    color: #494949;
    margin-top: 0;
    margin-bottom: 43px;
  }

  .login-container .login-section-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(16px, 7vw, 100px);
    width: 100%;
  }

  /* Login form section */
  .login-container .login-section-wrap .login-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 100%;
  }

  .login-instruction {
    font-weight: 400;
    font-size: 16px;
    color: #494949;
    width: 100%;
  }

  #loginForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .form-label {
    font-weight: 700;
    font-size: 16px;
    color: #494949;
  }

  .form-input {
    width: 100%;
    height: 42px;
    padding: 5px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    color: #494949;
    background-color: #fff;
  }

  .form-input:focus-visible {
    outline: #175AA2 auto 1px;
  }

  .form-input::placeholder {
    color: #acacac;
  }

  /* Password field with eye icon */
  .password-group {
    position: relative;
    margin-top: 20px;
  }

  .password-group .form-input {
    padding-right: 40px;
  }

  .toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 38px;
    right: 20px;
  }

  /* Remember ID checkbox */
  .remember-id {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    width: 100%;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .remember-checkbox {
    display: none;
  }

  .remember-label {
    font-weight: 400;
    font-size: 14px;
    color: #494949;
  }

  .remember-checkbox ~ .remember-label {
    padding-left: 30px;
    display: inline-block;
    background: url(../img/checkbox.svg) no-repeat left center / 20px;
  }

  .remember-checkbox:checked ~ .remember-label {
    background-image: url(../img/checkbox-active.svg);
  }

  /* Login button */
  .blue-button {
    width: 100%;
    max-width: 340px;
    height: 57px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background: #05459C;
    cursor: pointer;
    margin-top: 23px;
  }

  a.blue-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .blue-button:hover {
    opacity: 0.8;
  }

  .blue-button-small {
    max-width: 250px;
    height: 55px;
    font-weight: 600;
  }

  .black-button {
    width: 100%;
    max-width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #494949;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #494949;
    background: #FFF;
  }

  .black-button:hover {
    opacity: 0.8;
  }

  .button-row {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .button-row .blue-button {
    margin: 0;
  }

  .gray-button {
    width: 250px;
    max-width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #494949;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #494949;
  }

  .gray-button:hover {
    opacity: 0.8;
  }

  /* Forgot password link */
  .forget-password-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    width: 100%;
  }

  .forget-password-link .edit-icon {
    width: 16px;
    height: 16px;
  }

  .forget-password-link a {
    font-weight: 400;
    font-size: 14px;
    color: #175aa2;
    text-decoration: none;
  }

  .forget-password-link a:hover {
    text-decoration: underline;
  }

  /* Divider */
  .divider {
    width: 1px;
    background-color: #d7d7d7;
  }

  /* Info sidebar */
  .info-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .info-text {
    font-weight: 400;
    font-size: 14px;
    color: #494949;
    line-height: 1.5;
  }

  .info-sidebar hr {
    height: 1px;
    width: 100%;
    background-color: #d7d7d7;
    border: none;
  }

  /* Help section */
  .help-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 14px;
    width: 100%;
  }

  .help-section h3 {
    width: 100%;
  }

  .help-section p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    width: 100%;
  }

  .faq-link {
    font-weight: 400;
    font-size: 14px;
    color: #175aa2;
    text-decoration: none;
  }

  .faq-link:hover {
    text-decoration: underline;
  }

  .white-button {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    height: 57px;
    border: 1px solid #175aa2;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #175aa2;
    background: #FFF;
    text-decoration: none;
  }

  .white-button-small {
    padding-top: 2px;
    max-width: 270px;
    height: 46px;
    font-size: 14px;
  }

  .btn-arrow {
    background-image: url(../img/arrow02.svg);
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
  }

  .site-header .white-button-small {
    padding-top: 1px;
    width: 187px;
    height: 45px;
    font-size: 13px;
  }

  .site-header .btn-arrow {
    font-weight: 600;
    background-image: url(../img/arrow01.svg);
    background-position: right 9px center;
    background-size: 16px;
  }

  .white-button:hover {
    opacity: 0.8;
  }

  /* Footer */
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
    margin-top: auto;
  }

  .footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 80px;
    font-family: "BIZ UDGothic", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #494949;
  }

  .footer-link {
    color: #494949;
    text-decoration: none;
  }

  .footer-link:hover {
    text-decoration: underline;
  }

  .separator {
    width: 1px;
    height: 12px;
    background-color: #494949;
  }

  .copyright {
    width: 100%;
    padding: 20px 80px;
    font-family: "BIZ UDGothic", sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #ffffffb3;
    background-color: #103568;
    text-align: center;
    line-height: 22.1px;
  }

  @media (max-width:1110px) {
    .site-header {
      padding-left: 15px;
    }

    .site-header {
      padding: 0 15px;
    }
  }

  @media (max-width: 873px) {
    .notice-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-left: 20px;
      padding-right: 20px;
      gap: 15px;
    }
  }

  @media (min-width: 769px) {
    .sp {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    .pc {
      display: none !important;
    }

    /* Header */
    .site-header {
      padding: 5px 15px;
      margin-bottom: 0px;
      height: 50px;
    }

    .site-header .logo-container {
      line-height: 0;
      font-size: 0;
    }

    .site-header .logo-container .logo {
      width: 135px;
    }

    .site-header .logo-container a {
      display: block;
      font-size: 0;
      line-height: 0;
    }

    .site-header .logo-container .logo img {
      vertical-align: top;
    }

    .site-header {
      height: 50px;
      gap: 10px;
    }

    .site-header .logo-container {
      width: 150px;
      min-width: 0;
      margin-top: 0;
    }

    /* Main content */
    .main-content {
      margin-bottom: 0;
      padding-top: 15px;
      padding-bottom: 15px;
      gap: 15px;
    }

    /* Notice section */
    .notice-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 19px 14px;
      gap: 8px;
    }

    .notice-section .notice-icon-container {
      gap: 5px;
    }

    .notice-section .notice-icon-container .information {
      width: 20px;
    }

    .notice-section .notice-icon-container img {
      margin-top: -2px;
    }

    .notice-section .notice-icon-container .notice-title {
      font-size: 14px;
      color: #DE3C3C;
    }

    .notice-section .notice-text {
      font-size: 12px;
      line-height: 1.65;
    }

    /* Login container */
    .login-container {
      gap: 40px;
      padding: 36px 20px 40px;
    }

    .login-container .login-heading {
      font-size: 20px;
      margin-bottom: 31px;
    }

    .login-container .login-section-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
    }

    .toggle-password {
      top: 42px;
      right: 15px;
    }

    /* Login button */
    .blue-button {
      max-width: 320px;
    }

    .blue-button-small {
      height: 57px;
    }

    .blue-button:hover {
      opacity: 1;
    }

    .black-button {
      max-width: 320px;
      height: 57px;
    }

    .gray-button {
      width: 320px;
      height: 57px;
    }

    .gray-button:hover {
      opacity: 1;
    }

    .button-row {
      margin-top: 22px;
      flex-direction: column;
      align-items: center;
    }

    #loginForm {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .form-input {
      height: 50px;
    }

    /* Forgot password link */
    .forget-password-link {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
    }

    /* Divider */
    .divider {
      width: 100%;
      height: 1px;
    }

    /* Info sidebar */
    .info-sidebar hr {
      display: none;
    }

    /* Help section */
    .help-section {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .help-section h3 {
      margin-bottom: 0;
    }

    .white-button {
      max-width: 320px;
    }

    .site-header .white-button-small {
      padding: 6px 15px 5px;
      width: 137px;
      max-width: 100%;
      height: 33px;
      font-size: 11px;
    }

    .site-header .btn-arrow {
      background-position: right 6px center;
      background-size: 12px;
    }

    .white-button:hover {
      opacity: 1;
    }

    /* Footer */
    .site-footer {
      margin-top: 0px;
    }

    .footer-nav {
      padding: 25px 0;
      justify-content: center;
      gap: 5px;
      text-align: center;
      font-size: min(2.66vw, 10px);
    }

    .separator {
      background-color: #d7d7d7;
    }

    .copyright {
      padding: 10px 0;
    }
  }

  /* page-path */
  .page-path {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 24px;
    font-size: 12px;
    color: #8B8B8B;
    line-height: 1.5;
  }

  .page-path li {
    position: relative;
    line-height: inherit;
  }

  .page-path li:not(:last-child)::after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: -17px;
    top: 4px;
    line-height: inherit;
    background: url(../img/arrow01.svg) no-repeat center center / 100%;
  }

  .page-path li a {
    color: #175AA2;
    text-decoration: underline;
    line-height: inherit;
  }

  .page-path li a:hover {
    text-decoration: none;
  }

  /* mypage container */
  .mypage-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 30px);
    max-width: 1080px;
    padding: 60px 20px;
    border-radius: 30px;
    background-color: #ffffff;
  }

  .mypage-container-wrap {
    max-width: 880px;
    width: 100%;
  }

  .mypage-container .mypage-heading {
    font-weight: 700;
    font-size: 24px;
    color: #494949;
    margin-top: 0;
    margin-bottom: 38px;
  }

  .mypage-container .mypage-form-section table {
    width: 100%;
    border-collapse: collapse;
  }

  .mypage-container .mypage-form-section th,
  .mypage-container .mypage-form-section td {
    padding: 10px 30px;
    height: 72px;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
  }

  .mypage-container .mypage-form-section th {
    width: 25%;
    background: #F6F6F6;
  }

  .mypage-container .mypage-form-section .email-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mypage-container .mypage-form-section .email-box .email-txt {
    width: 50%;
  }

  .mypage-container .mypage-form-section .email-box .email-txt .txt {
    width: 100%;
    display: block;
    word-break: break-all;
  }

  .mypage-container .mypage-form-section .email-box .form-input {
    width: 100%;
    background: #FFF3F3;
    border: 2px solid #175AA2;
    display: none;
  }

  .mypage-container .mypage-form-section .email-box .form-input:focus-visible {
    outline: #175AA2 auto 1px;
  }

  .mypage-container .mypage-form-section .email-box .submit-button {
    margin: 0;
    padding: 4px 5px 0;
    width: calc((50% - 20px) / 2);
    height: 40px;
    min-width: 0;
    color: #494949;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #175AA2;
    background: #FFF;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  .mypage-container .mypage-form-section .email-box .submit-button:hover {
    opacity: 0.8;
  }

  .mypage-container .mypage-form-section .email-box .submit-button.blue {
    border-color: #175AA2;
    color: #175AA2;
  }

  .mypage-container .mypage-form-section #changeBtn02,
  .mypage-container .mypage-form-section #changeBtn03 {
    display: none;
  }

  .pointmypage {
    background: #F6F6F6;
    margin: 0;
    padding-bottom: 88px;
    flex: 1;
  }

  @media (min-width: 769px) and (max-width: 965px) {

    .mypage-container .mypage-form-section th,
    .mypage-container .mypage-form-section td {
      padding-left: 25px;
      padding-right: 25px;
    }
  }

  @media (max-width: 768px) {
    .mypage-container {
      padding: 36px 20px 40px;
      border-radius: 5px;
    }

    .mypage-container .mypage-heading {
      margin-bottom: 26px;
      font-weight: 600;
      font-size: 20px;
    }

    .mypage-container .mypage-form-section table {
      border-top: 1px solid #D7D7D7;
    }

    .mypage-container .mypage-form-section th,
    .mypage-container .mypage-form-section td {
      padding: 15px 15px;
      width: 100%;
      height: auto;
      display: block;
      border-top: none;
    }

    .mypage-container .mypage-form-section th {
      padding: 10px 15px 11px;
      width: 100%;
      border-bottom: none;
    }

    .mypage-container .mypage-form-section .email-box {
      margin: 0 -15px;
      flex-wrap: wrap;
    }

    .mypage-container .mypage-form-section .email-box .email-txt {
      width: 100%;
    }

    .mypage-container .mypage-form-section .email-box .email-txt .txt {
      padding: 15px;
    }

    .mypage-container .mypage-form-section .email-box .form-input {
      height: 52px;
    }

    .mypage-container .mypage-form-section .email-box .submit-button {
      width: calc(50% - 5px);
    }

    .mypage-container .mypage-form-section .email-box .submit-button:hover {
      opacity: 1;
    }

    .pointmypage {
      padding-bottom: 15px;
    }
  }

  /* history-container */
  .history-container {
    background: #F7F7F7;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .history-container.main-content {
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .history-container .history-container-wrap {
    padding: 58px 0 88px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 30px);
    max-width: 1080px;
    gap: 20px;
  }

  .history-container .history-container-wrap .history-heading {
    margin: 0 0 -3px;
    font-size: 24px;
    font-weight: 600;
  }

  .history-container .history-list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
  }

  .history-container .history-list .history-item {
    width: 100%;
    padding: 28px 30px 27px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    border-bottom: 1px solid #D7D7D7;
  }

  .history-container .history-list .history-item:last-child {
    border-bottom: none;
  }

  .history-container .history-list .history-item .col01 {
    width: 72%;
  }

  .history-container .history-list .history-item .col01 p {
    font-size: 16px;
    line-height: 1.5;
  }

  .history-container .history-list .history-item .col01 .text01 {
    margin-bottom: 10px;
  }

  .history-container .history-list .history-item .col01 .mark {
    margin-left: 31px;
    font-size: 14px;
    color: #8B8B8B;
  }

  .history-container .history-list .history-item .col02 {
    min-width: 200px;
    display: flex;
    flex: 1;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
  }

  .history-container .history-list .history-item .col02 .price {
    width: 50%;
    font-size: 16px;
  }

  .history-container .history-list .history-item .col02 .ovp {
    width: 50%;
    color: #DE3C3C;
    font-size: 12px;
  }

  .history-container .history-list .history-item .col02 .ovp.neg {
    color: #494949;
  }

  .history-container .history-list .history-item .col02 .ovp .lrg {
    margin-right: 5px;
    font-weight: 700;
    font-size: 22px;
  }

  .page-nav {
    margin-top: 21px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-nav a,
  .page-nav span {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #494949;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #D7D7D7;
    background: #FFF;
  }

  .page-nav .extend {
    width: auto;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .page-nav .current {
    background-color: #DEDEDE;
  }

  .page-nav .prev,
  .page-nav .next {
    width: 70px;
    font-size: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 19px;
  }

  .page-nav .prev {
    background-image: url(../img/arrow04.svg);
  }

  .page-nav .next {
    background-image: url(../img/arrow03.svg);
  }

  .page-nav a:hover {
    background-color: #DEDEDE;
  }

  .page-nav .pages {
    display: none;
  }

  @media (max-width: 768px) {
    .history-container .history-container-wrap {
      padding: 37px 0 40px;
      gap: 15px;
    }

    .history-container .history-container-wrap .history-heading {
      margin-bottom: 0;
      font-size: 18px;
    }

    .history-container .history-list {
      border-radius: 20px;
    }

    .history-container .history-list .history-item {
      padding: 23px 20px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .history-container .history-list .history-item .col01 {
      width: 100%;
    }

    .history-container .history-list .history-item .col01 p {
      font-size: 14px;
    }

    .history-container .history-list .history-item .col01 .text01 {
      margin-bottom: 4px;
    }

    .history-container .history-list .history-item .col01 .mark {
      margin-left: 21px;
    }

    .history-container .history-list .history-item .col02 {
      min-width: initial;
      width: 100%;
      flex: initial;
      gap: 15px;
    }

    .history-container .history-list .history-item .col02 .price {
      width: auto;
      font-size: 16px;
    }

    .history-container .history-list .history-item .col02 .ovp {
      width: auto;
      min-width: 84px;
    }

    .history-container .history-list .history-item .col02 .ovp .lrg {
      margin-right: 5px;
      font-size: 24px;
    }

    .history-container .white-button {
      max-width: 360px;
    }

    .page-nav {
      margin-top: 15px;
      gap: 8px 0;
    }

    .page-nav a,
    .page-nav span {
      border-radius: 0;
      border-right: none;
    }

    .page-nav a:last-child,
    .page-nav span:last-child {
      border-right: 1px solid #D7D7D7;
    }

    .page-nav .current,
    .page-nav .extend {
      display: none;
    }

    .page-nav .page {
      display: none;
    }

    .page-nav .pages {
      width: calc(100% - 140px);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex: 1;
      order: 1;
      gap: 10px;
      border-radius: 0;
    }

    .page-nav .pages::after {
      width: 14px;
      height: 14px;
      display: inline-block;
      background: url(../img/arrow05.svg) no-repeat center center / 100%;
      content: '';
    }

    .page-nav .prev {
      border-radius: 5px 0 0 5px;
    }

    .page-nav .next {
      order: 2;
      border-radius: 0 5px 5px 0;
    }

    .page-nav a:hover {
      background-color: #fff;
    }

    .page-nav .page-nav-txt {
      width: 100%;
      height: auto;
      text-align: center;
      color: #8B8B8B;
      font-weight: 500;
      font-size: 12px;
      border: none;
      background: transparent;
    }
  }

  /* point-top */
  .point-top {
    margin-bottom: 0;
  }

  .point-top-section {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    max-width: 1080px;
    width: calc(100% - 30px);
  }

  .point-top-section .member-section {
    padding: 28px 30px 54px;
    width: 450px;
    min-width: 0;
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.08);
  }

  .point-top-section .member-section .number {
    margin: 0 0 16px;
    color: #8B8B8B;
    font-size: 14px;
    font-weight: 400;
  }

  .point-top-section .member-section .member-info {
    display: flex;
    gap: 20px;
  }

  .point-top-section .member-section .member-info .card-img {
    width: 80px;
  }

  .point-top-section .member-section .member-info .card-img img {
    width: 100%;
  }

  .point-top-section .member-section .member-info .card-txt {
    flex: 1;
  }

  .point-top-section .member-section .member-info .card-txt .txt01 {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .point-top-section .member-section .member-info .card-txt .txt02 {
    font-size: 22px;
  }

  .point-top-section .link {
    padding-right: 24px;
    position: absolute;
    right: 30px;
    bottom: 17px;
    color: #175AA2;
    font-size: 14px;
    text-decoration: none;
    background: url(../img/arrow02.svg) no-repeat right center / 18px;
  }

  .point-top-section .link:hover {
    opacity: 0.7;
  }

  .point-top-section .point-section {
    padding: 27px 30px 54px;
    width: 610px;
    min-width: 0;
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.08);
  }

  .point-top-section .point-section .text-box01 {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
  }

  .point-top-section .point-section .text-box01 .text01 {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
    font-weight: 700;
  }

  .point-top-section .point-section .text-box01 .text01 .sub-txt02 {
    color: #004459;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    line-height: 1.5;
    font-weight: 400;
  }

  .point-top-section .point-section .text-box01 .text01 .sub-txt02 img {
    width: 20px;
    margin-bottom: 6px;
  }

  .point-top-section .point-section .text-box01 .text01 .sub-txt02 .lrg {
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
  }

  .point-top-section .point-section .text-box01 .text02 {
    width: 165px;
  }

  .point-top-section .point-section .text-box02 {
    margin-bottom: 16px;
    display: flex;
    padding: 17px 19px 16px;
    justify-content: space-between;
    gap: 20px;
    border-radius: 5px;
    border: 1px solid #D7D7D7;
    background: #F7F7F7;
  }

  .point-top-section .point-section .text-box02 .sub01,
  .point-top-section .point-section .text-box02 .sub02 {
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }

  .point-top-section .point-section .text-box02 .sub01 .text02 {
    color: #004459;
    font-size: 12px;
  }

  .point-top-section .point-section .text-box02 .sub01 .text02 .lrg {
    font-weight: 500;
    font-size: 24px;
    margin-right: 5px;
  }

  .point-top-section .point-section .text-box02 .sub02 .text02 {
    font-size: 12px;
  }

  .point-top-section .point-section .text-box02 .sub02 .text02 .lrg {
    font-size: 18px;
    font-weight: 500;
    margin-right: 6px;
  }

  .point-top-section .point-section .note {
    font-size: 12px;
    padding-left: 1em;
    text-indent: -1em;
  }

  @media (max-width: 1040px) {
    .point-top-section .point-section .text-box02 {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .point-top {
      padding-bottom: 0;
    }

    .point-top-section {
      margin-bottom: 15px;
      flex-direction: column;
      gap: 15px;
    }

    .point-top-section .member-section {
      padding: 23px 20px 22px;
      width: 100%;
    }

    .point-top-section .member-section .member-info {
      margin-bottom: 27px;
    }

    .point-top-section .member-section .member-info .card-img {
      width: 75px;
    }

    .point-top-section .link {
      margin-left: auto;
      padding: 2px 23px 0 0;
      position: relative;
      display: block;
      width: fit-content;
      right: auto;
      bottom: auto;
    }

    .point-top-section .link:hover {
      opacity: 1;
    }

    .point-top-section .point-section {
      padding: 28px 20px 22px;
      width: 100%;
    }

    .point-top-section .point-section .text-box01 {
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 8px;
    }

    .point-top-section .point-section .text-box01 .text01 {
      width: 100%;
    }

    .point-top-section .point-section .text-box01 .text01 .sub-txt02 {
      margin-bottom: 2px;
      font-size: 12px;
    }

    .point-top-section .point-section .text-box01 .text01 .sub-txt02 img {
      margin-bottom: 4px;
    }

    .point-top-section .point-section .text-box01 .text01 .sub-txt02 .lrg {
      font-size: 30px;
    }

    .point-top-section .point-section .text-box01 .text02 {
      width: 100%;
    }

    .point-top-section .point-section .text-box02 {
      gap: 6px;
    }

    .point-top-section .point-section .text-box02 .sub01,
    .point-top-section .point-section .text-box02 .sub02 {
      width: 100%;
      justify-content: space-between;
      gap: 15px;
    }

    .point-top-section .point-section .note {
      margin-bottom: 23px;
    }
  }

  /* contact */
  .contact {
    margin-bottom: 0;
    padding: 16px 15px 87px;
    gap: 15px;
    background: #F6F6F6;
  }

  .contact-container {
    padding: 54px 20px 60px;
    width: 100%;
    max-width: 1080px;
    background: #fff;
    border-radius: 30px;
  }

  .contact-container-wrap {
    margin: 0 auto;
    max-width: 880px;
  }

  .contact-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 42px;
  }

  .contact-container .info-box {
    margin-bottom: 50px;
    padding: 23px 28px 21px;
    border: 2px solid #D7D7D7;
  }

  .contact-container .info-box p {
    margin-bottom: 22px;
    line-height: 1.57;
  }

  .contact-container .info-box p:last-child {
    margin-bottom: 0;
  }

  .contact-container .heading01 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    background: #F7F7F7;
    padding: 14px 20px;
  }

  .contact-container .tel-section {
    margin-bottom: 50px;
  }

  .contact-container .tel-box {
    padding: 46px 28px 41px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 11px 10px;
    border: 2px solid #D7D7D7;
  }

  .contact-container .tel-box .mark {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #05459C;
    padding: 5px 10px 3px;
    margin-bottom: 1px;
  }

  .contact-container .tel-box a {
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    color: #05459C;
    text-decoration: none;
    display: block;
    padding-left: 35px;
    background: url(../img/tel.svg) no-repeat left center / 32px;
  }

  .contact-container .tel-box .time {
    width: 100%;
    text-align: center;
    line-height: 1.57;
    font-weight: 500;
  }

  .contact-container .form-section .heading01 {
    margin-bottom: 31px;
  }

  .contact-container .form-section .text01 {
    margin-bottom: 21px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
  }

  .contact-container .form-section .text02 {
    margin-bottom: 29px;
    line-height: 1.57;
    font-weight: 500;
  }

  .contact-container .mail-form table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #D7D7D7;
  }

  .contact-container .mail-form th,
  .contact-container .mail-form td {
    padding: 30px min(2vw, 20px);
    vertical-align: middle;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    border-bottom: 1px solid #D7D7D7;
  }

  .contact-container .mail-form th {
    width: 35%;
    padding-right: 5px;
    letter-spacing: 0.04em;
  }

  .contact-container .mail-form .must {
    margin-left: 4px;
    padding: 2px 3px 1px;
    display: inline-block;
    vertical-align: 0.1rem;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.05em;
    border-radius: 3px;
    background: #DE3C3C;
  }

  .contact-container .mail-form td {
    padding-left: 18px;
    padding-right: min(5.5vw, 55px);
  }

  .contact-container .mail-form input[type="text"],
  .contact-container .mail-form input[type="tel"],
  .contact-container .mail-form input[type="email"],
  .contact-container .mail-form textarea {
    margin: 0;
    width: 100%;
    height: 40px;
    padding: 0 19px;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    color: #494949;
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .contact-container .mail-form input::placeholder,
  .contact-container .mail-form textarea::placeholder {
    color: #ACACAC;
    opacity: 1;
  }

  .contact-container .mail-form textarea {
    height: 120px;
    padding: 20px;
    resize: vertical;
  }

  .contact-container .mail-form .name-wrap {
    display: flex;
    gap: 11px;
  }

  .contact-container .mail-form .name-wrap input[type="text"] {
    flex: 1;
  }

  .contact-container .mail-form .policy-box {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px 0;
  }

  .contact-container .mail-form .policy-box p {
    font-size: 16px;
    font-weight: 500;
  }

  .contact-container .mail-form .policy-box input[type="checkbox"] {
    display: none;
  }

  .contact-container .mail-form .policy-box .check-label {
    display: inline-block;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 600;
    background: url(../img/checkbox.svg) no-repeat left center;
    cursor: pointer;
  }

  .contact-container .mail-form .policy-box input[type="checkbox"]:checked ~ .check-label {
    background-image: url(../img/checkbox-active.svg);
  }

  .contact-container .mail-form .policy-box a {
    color: #175aa2;
  }

  .contact-container .mail-form .policy-box a:hover {
    text-decoration: none;
  }

  .contact-container .confirm {
    padding-top: 30px;
  }

  .contact-container .confirm .text01 {
    margin-bottom: 30px;
  }

  .contact-container .confirm .mail-form td {
    padding-left: 23px;
  }

  .contact-container .confirm .button-row {
    margin-top: 49px;
  }

  .contact-container .thanks .info-box {
    margin-bottom: 44px;
  }

  .contact-container .company-info .ttl {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    border-bottom: 1px solid #D7D7D7;
    padding-bottom: 13px;
    margin-bottom: 18px;
  }

  .contact-container .company-info .adr {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 600;
  }

  .contact-container .company-info .tel-box {
    justify-content: flex-start;
    border: none;
    padding: 0;
  }

  .contact-container .company-info .tel-box a {
    margin-right: 30px;
  }

  .contact-container .company-info .tel-box .time {
    width: auto;
    text-align: left;
    line-height: 1.71;
  }

  @media (max-width: 768px) {
    .contact {
      padding: 15px;
    }

    .contact-container {
      padding: 34px 20px 40px;
      border-radius: 5px;
    }

    .contact-container-wrap {
      max-width: 100%;
    }

    .contact-title {
      margin-bottom: 24px;
      font-size: 20px;
    }

    .contact-container .info-box {
      margin-bottom: 40px;
      padding: 14px 18px 11px;
    }

    .contact-container .info-box p {
      line-height: 1.66;
      font-size: 12px;
    }

    .contact-container .heading01 {
      font-size: 16px;
      line-height: 1.25;
      padding: 10px 15px;
    }

    .contact-container .tel-section {
      margin-bottom: 40px;
    }

    .contact-container .tel-box {
      padding: 38px 10px 32px;
      flex-direction: column;
      gap: 12px 10px;
    }

    .contact-container .tel-box a {
      font-size: min(9.744vw, 38px);
      padding-left: min(8.974vw, 35px);
      background-size: min(8.205vw, 32px);
    }

    .contact-container .tel-box .time {
      line-height: 1.45;
    }

    .contact-container .form-section .heading01 {
      margin-bottom: 25px;
    }

    .contact-container .form-section .text01 {
      margin-bottom: 18px;
      font-size: 14px;
      line-height: 1.57;
    }

    .contact-container .form-section .text02 {
      margin-bottom: 29px;
    }

    .contact-container .mail-form table {
      border-top: none;
    }

    .contact-container .mail-form th,
    .contact-container .mail-form td {
      padding: 0;
      width: 100%;
      display: block;
      border-bottom: none;
    }

    .contact-container .mail-form th {
      width: 100%;
      padding: 0 0 8px;
    }

    .contact-container .mail-form td {
      padding: 0 0 23px;
    }

    .contact-container .mail-form tr:last-child td {
      padding-bottom: 0;
    }

    .contact-container .mail-form td.td01 {
      margin-top: -3px;
      border-top: 1px solid #D7D7D7;
      padding: 14px 20px 38px;
    }

    .contact-container .mail-form input[type="text"],
    .contact-container .mail-form input[type="tel"],
    .contact-container .mail-form input[type="email"],
    .contact-container .mail-form textarea {
      height: 50px;
      font-size: 16px;
    }

    .contact-container .mail-form textarea {
      height: 150px;
      padding: 12px 20px;
    }

    .contact-container .mail-form .policy-box {
      margin-top: 27px;
    }

    .contact-container .mail-form .policy-box a:hover {
      text-decoration: underline;
    }

    .contact-container .mail-form .policy-box .link {
      font-size: 14px;
    }

    .contact-container .confirm {
      padding-top: 0;
    }

    .contact-container .confirm .mail-form th {
      background: #F7F7F7;
      border-top: 1px solid #D7D7D7;
      padding: 11px 15px;
    }

    .contact-container .confirm .mail-form td {
      padding: 16px 15px 15px;
      line-height: 1.45;
    }

    .contact-container .confirm .mail-form tr:first-child td {
      border-bottom: 1px solid #D7D7D7;
      padding-bottom: 14px;
    }

    .contact-container .confirm .mail-form tr:last-child td {
      padding-bottom: 15px;
      border-bottom: 1px solid #D7D7D7;
    }

    .contact-container .confirm .mail-form td a[href^="tel"] {
      color: inherit;
      text-decoration: none;
    }

    .contact-container .confirm .button-row {
      margin-top: 30px;
    }

    .contact-container .thanks .contact-title {
      margin-bottom: 35px;
    }

    .contact-container .thanks .info-box {
      margin-bottom: 32px;
    }

    .contact-container .thanks .info-box p {
      font-size: 14px;
      line-height: 1.57;
    }

    .contact-container .company-info {
      margin-bottom: 33px;
    }

    .contact-container .company-info .ttl {
      font-size: 16px;
      line-height: 1.625;
      padding-bottom: 11px;
      margin-bottom: 20px;
    }

    .contact-container .company-info .adr {
      margin-bottom: 13px;
      font-size: 14px;
      line-height: 1.57;
    }

    .contact-container .company-info .tel-box a {
      margin: 0 auto 2px;
      width: fit-content;
    }

    .contact-container .company-info .tel-box .time {
      width: 100%;
      line-height: 1.3;
      text-align: center;
    }
  }

  @media (max-width: 359px) {
    .contact-container .tel-box a {
      font-size: min(9vw, 38px);
    }
  }

  /* pw-re */
  .pw-re {
    margin-bottom: 0;
    padding: 16px 15px 87px;
    gap: 15px;
    flex: 1;
    background: #F6F6F6;
  }

  .pw-container {
    padding: 54px 20px 60px;
    width: 100%;
    max-width: 1080px;
    border-radius: 30px;
    background: #fff;
  }

  .pw-container-wrap {
    margin: 0 auto;
    max-width: 880px;
  }

  .pw-re .info-box {
    margin-bottom: 15px;
    padding: 23px 28px 21px;
    border: 2px solid #D7D7D7;
  }

  .pw-re .info-box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57;
  }

  .pw-re .error-message {
    margin-bottom: 50px;
    padding: 15px 29px 13px;
    border: 1px solid #f00;
  }

  .pw-re .error-message p {
    color: #f00;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.02em;
  }

  .pw-re .forget-section {
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 50px 0;
  }

  .forget-contents-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .forget-contents-wrap .forget-radio-input {
    display: none;
  }

  .forget-contents-wrap .forget-radio-input + .form-label {
    padding: 1px 0 0 37px;
    width: fit-content;
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    background: url(../img/radio.svg) no-repeat left top / 33px;
    cursor: pointer;
  }

  #forget-password-input:checked + .form-label {
    background-image: url(../img/radio-active.svg);
  }

  #forget-id-input:checked + .form-label {
    background-image: url(../img/radio-active.svg);
  }

  .forget-contents-wrap .forget-radio-contents {
    width: 100%;
    display: none;
  }

  #forget-password-input:checked ~ .forget-radio-contents {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }

  #forget-id-input:checked ~ .forget-radio-contents {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }

  .form-group-row {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .form-group-row .form-label {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }

  .forget-contents-wrap .button-row {
    margin: 12px 0 0;
  }

  .foget-password-input-button .white-button {
    height: 55px;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .pw-re {
      margin-bottom: 0;
      padding: 16px 15px 15px;
      gap: 10px;
    }

    .pw-container {
      padding: 34px 20px 40px;
      border-radius: 5px;
    }

    .pw-re .contact-title {
      margin-bottom: 34px;
    }

    .pw-re .info-box {
      margin-bottom: 25px;
      padding: 19px 18px 17px;
    }

    .pw-re .error-message {
      margin-bottom: 25px;
      padding: 15px 19px 13px;
    }

    .pw-re .forget-section {
      margin: 0;
      max-width: initial;
      gap: 40px 0;
    }

    .forget-contents-wrap {
      gap: 19px;
    }

    .forget-contents-wrap .forget-radio-input + .form-label {
      padding: 1px 0 0 33px;
      line-height: 1.75;
      background-size: 29px;
    }

    .forget-contents-wrap .forget-radio-contents {
      gap: 28px;
    }

    .form-group-row {
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }

    .forget-contents-wrap .button-row {
      flex-direction: column-reverse;
    }

    .foget-password-input-button .white-button {
      margin-top: -10px;
      height: 57px;
      font-size: 18px;
    }
  }

  /* pw_re_complete */
  .send-mail-message {
    margin-bottom: 20px;
    width: 100%;
    padding: 16px 30px 14px;
    background-color: #FFF8F8;
    font-weight: 700;
    font-size: 16px;
  }

  .check-mail-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 29px 28px 20px;
    border: solid 2px #d7d7d7;
  }

  .check-mail-masseage {
    margin-top: 20px;
  }

  .check-mail-wrap .check-mail {
    display: flex;
    width: 100%;
    border-top: solid 1px #d7d7d7;
    border-bottom: solid 1px #d7d7d7;
  }

  .check-mail-wrap .check-mail h3 {
    display: flex;
    align-items: center;
    width: 240px;
    height: 72px;
    padding: 0 35px 0 30px;
    background-color: #f7f7f7;
  }

  .check-mail-wrap .check-mail p {
    font-size: 16px;
    display: flex;
    align-items: center;
    max-width: 550px;
    margin-left: 30px;
    word-break: break-all;
  }

  .pw-re .login-form-section .button-row {
    margin-top: 36px;
  }

  @media (max-width: 768px) {
    .send-mail-message {
      margin-bottom: 25px;
      padding: 22px 20px 20px;
      font-size: 14px;
    }

    .check-mail-wrap {
      padding: 13px 13px 22px;
    }

    .check-mail-masseage {
      margin-top: 21px;
      font-size: 12px;
      line-height: 1.66;
    }

    .check-mail-wrap .check-mail {
      flex-direction: column;
    }

    .check-mail-wrap .check-mail:first-child {
      border-top: none;
    }

    .check-mail-wrap .check-mail h3 {
      width: 100%;
      height: auto;
      padding: 12px 15px 10px;
      font-size: 14px;
    }

    .check-mail-wrap .check-mail p {
      padding: 15px 15px 14px;
      font-size: 14px;
      line-height: 1.4;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      display: block;
    }

    .pw-re .login-form-section .button-row {
      margin-top: 40px;
    }
  }

  /* terms */
  .terms {
    margin: 0;
    padding: 16px 15px 87px;
    gap: 15px;
    flex: 1;
    background: #F6F6F6;
  }

  .terms-container {
    padding: 54px 20px 52px;
    width: 100%;
    max-width: 1080px;
    background: #fff;
    border-radius: 30px;
  }

  .terms-container-wrap {
    margin: 0 auto;
    max-width: 880px;
  }

  .terms .contact-title {
    margin-bottom: 35px;
  }

  .terms .terms-wrap {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .terms .terms-wrap .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
  }

  .terms .terms-wrap p,
  .terms .terms-wrap li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
  }

  .terms .terms-wrap .text-list {
    display: flex;
    flex-direction: column;
    counter-reset: my-counter;
  }

  .terms .terms-wrap .text-list01 {
    gap: 26px 0;
  }

  .terms .terms-wrap .text-list > li {
    padding-left: 1.5em;
    position: relative;
  }

  .terms .terms-wrap .text-list > li::before {
    content: counter(my-counter)".";
    counter-increment: my-counter;
    position: absolute;
    left: 0.3em;
    top: 0;
  }

  .terms .terms-wrap .sub-list {
    counter-reset: my-counter;
  }

  .terms .terms-wrap .sub-list li {
    padding-left: 1.55em;
    position: relative;
  }

  .terms .terms-wrap .sub-list li::before {
    content: counter(my-counter)")";
    counter-increment: my-counter;
    position: absolute;
    left: 0;
    top: 0;
  }

  .terms .terms-wrap .ta-right {
    text-align: right;
  }

  @media (max-width: 768px) {
    .terms {
      padding: 15px;
    }

    .terms-container {
      padding: 35px 20px;
      border-radius: 5px;
    }

    .terms .contact-title {
      margin-bottom: 25px;
    }

    .terms .terms-wrap {
      gap: 20px;
    }

    .terms .terms-wrap .title {
      font-size: 14px;
    }

    .terms .terms-wrap p,
    .terms .terms-wrap li {
      font-size: 14px;
    }

    .terms .terms-wrap .text-list01 {
      gap: 15px 0;
    }
  }

  /* privacy */
  .privacy .terms-wrap .title {
    font-weight: 600;
  }

  .privacy .note-list li {
    padding-left: 1em;
    text-indent: -1em;
  }

  .privacy .info-box {
    margin-top: 12px;
    padding: 25px 29px 21px;
    border: 1px solid #D7D7D7;
  }

  .privacy .info-box .info-ttl {
    padding-bottom: 13px;
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.18;
    border-bottom: 1px solid #D7D7D7;
  }

  .privacy .info-box .address {
    margin-bottom: 26px;
  }

  .privacy .info-box .sub-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
  }

  .privacy .info-box .sub-box .tel {
    margin-top: 3px;
    font-weight: 600;
    font-size: 18px;
  }

  .privacy .info-box .sub-box .tel a {
    font-size: 24px;
    color: inherit;
    text-decoration: none;
  }

  .privacy .info-box .sub-box .time {
    font-size: 14px;
    line-height: 1.71;
    font-weight: 500;
  }

  @media (min-width: 769px) {
    .privacy .terms-container {
      padding-bottom: 60px;
    }

    .privacy .info-box .sub-box .tel a[href^="tel"] {
      cursor: default;
      pointer-events: none;
    }
  }

  @media (max-width: 768px) {
    .privacy .info-box {
      margin-top: 10px;
      padding: 15px;
    }

    .privacy .info-box .info-ttl {
      padding-bottom: 10px;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .privacy .info-box .address {
      margin-bottom: 15px;
    }

    .privacy .info-box .sub-box {
      display: block;
    }

    .privacy .info-box .sub-box .tel {
      margin: 0 0 10px;
      font-size: 16px;
    }

    .privacy .info-box .sub-box .tel a {
      width: fit-content;
      display: block;
      font-size: 18px;
    }

    .privacy .info-box .sub-box .time {
      font-size: 12px;
    }
  }

  /* Maintenance Screen */
  .maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .maintenance-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
  }

  .maintenance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .maintenance-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .maintenance-title {
    font-size: 24px;
    font-weight: 600;
    color: #DE3C3C;
    margin: 0;
  }

  .maintenance-content {
    margin-bottom: 30px;
    text-align: left;
  }

  .maintenance-notice-title {
    font-size: 18px;
    font-weight: 600;
    color: #494949;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .maintenance-period {
    background: #F7F7F7;
    border: 1px solid #D7D7D7;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
  }

  .maintenance-period p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #494949;
  }

  .maintenance-dates {
    font-weight: 600 !important;
    color: #DE3C3C !important;
    margin-top: 5px !important;
  }

  .maintenance-text {
    line-height: 1.6;
    color: #494949;
  }

  .maintenance-text p {
    margin: 0 0 15px 0;
  }

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

  .maintenance-footer {
    border-top: 1px solid #D7D7D7;
    padding-top: 20px;
    text-align: center;
  }

  .maintenance-footer p {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #494949;
  }

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

  .maintenance-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #175AA2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .maintenance-loading p {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
    margin: 0;
  }

  @media (max-width: 768px) {
    .maintenance-container {
      padding: 30px 20px;
      border-radius: 10px;
      max-width: 95%;
    }

    .maintenance-title {
      font-size: 20px;
    }

    .maintenance-notice-title {
      font-size: 16px;
    }

    .maintenance-icon {
      width: 35px;
      height: 35px;
    }
  }
  @media (min-width: 768px) {
    .form-group-row {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    .form-group-row .form-label-pw-re {
      min-width: 150px;
      margin-bottom: 0;
    }
    .form-group-row .form-input {
      flex: 1;
    }
  }
