  .accessArea {
    background: #fff;
    padding: 20px 0 80px;
  }

  .accessArea__inner {
    max-width: 45%;
    width: 45%;
    margin: 0 auto;
  }

  .accessArea__title {
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    color: #000;
    margin-bottom: 40px;
    font-family: inherit;
  }

  .accessArea__banner {
    position: relative;
    width: 100%;
    min-height: 250px;
  }

  .accessArea__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
  }

  .accessArea__overlay {
    position: relative;
    width: 100%;
    min-height: 250px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .accessArea__overlay-inner {
    max-width: 1000px;
    width: 100%;
    display: flex;
    padding: 30px 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .accessArea__main-text {
    flex: 1;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .accessArea__times {
    flex: 2;
    color: #fff;
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .accessArea__table {
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-collapse: collapse;
  }

  .accessArea__table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .accessArea__table td.time {
    text-align: right;
    padding-left: 20px;
  }

  .accessArea__note {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.4;
    opacity: 0.9;
    text-align: left;
  }

  .accessArea__map {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    margin-bottom: 40px;
  }

  .accessArea__btnWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .accessArea__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 860px;
    padding: 20px 28px;
    border-radius: 50px;
    background: #2b1f1c;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    gap: 12px;
    margin: 0 30px;
  }

  .accessArea__btn:hover {
    background: #3d2c28;
    opacity: 1;
    color: #fff;
  }

  .accessArea__btn__icon-left,
  .accessArea__btn__icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #fff;
  }

  .accessArea__btn__label {
    flex: 1;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
  }

  .accessArea__btn--disabled {
    background: #9e9e9e !important;
    cursor: not-allowed;
    pointer-events: none;
  }

  .accessArea__btn--disabled:hover {
    background: #9e9e9e !important;
    opacity: 1;
  }

  .accessArea__btn-note {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 10px 0 0;
  }

  @media (max-width: 768px) {
    .accessArea__inner {
      max-width: 95%;
      width: 95%;
    }

    .accessArea__overlay-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 30px 20px;
      text-align: left;
    }

    .accessArea__banner {
      min-height: 300px;
    }

    .accessArea__bg {
      height: 100%;
      min-height: 300px;
    }

    .accessArea__overlay {
      min-height: 300px;
      height: auto;
    }

    .accessArea__times {
      flex: none;
      width: 100%;
      max-width: 100%;
    }

    .accessArea__table td {
      text-align: left;
    }

    .accessArea__note {
      text-align: left;
    }

    .accessArea__title {
      font-size: 32px;
    }

    .accessArea__main-text {
      font-size: 32px;
    }

    .accessArea__table {
      font-size: 16px;
    }

    .accessArea__note {
      font-size: 13px;
    }

    .accessArea__btn {
      width: 100%;
      max-width: 100%;
      padding: 16px 20px;
    }

    .accessArea__btn__label {
      font-size: 17px;
      font-size: 1.7rem;
    }

    .accessArea__btn__icon-left,
    .accessArea__btn__icon-right {
      width: 32px;
      height: 32px;
    }

    .accessArea__btn__icon-left svg,
    .accessArea__btn__icon-right svg {
      width: 16px;
      height: 16px;
    }

    .accessArea__btn-note {
      font-size: 13px;
    }
  }
