@charset "UTF-8";

.p-ir-download-area {
    display: flex;
    gap: 96px;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-light-gray);
    border: 1px solid var(--color-gray);
    padding: 48px;
    border-radius: 20px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.p-ir-download-area__left {
    flex: 0 0 calc(50% - 48px);
    max-width: calc(50% - 48px);
}

.p-ir-download-area__right {
    flex: 0 0 calc(48% - 48px);
    max-width: calc(48% - 48px);
    position: relative;
}

.p-ir-download-area__right::before {
    content: "";
    position: absolute;
    background-color: var(--color-gray);
    z-index: 10;
    bottom: 0;
}

.p-ir-download-area__heading {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.p-news-section {
  background-color: var(--color-light-gray);
}

@media (min-width: 768px) {
  .p-ir-download-area__right::before {
    left: -48px;
    width: 1px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .p-ir-download-area {
    flex-direction: column;
    gap: 64px;
    padding: 40px 24px;
    border-radius: 10px;
    max-width: 100%;
  }
  .p-ir-download-area__left,
  .p-ir-download-area__right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .p-ir-download-area__right::before {
    left: 50%;
    width: 100%;
    height: 1px;
    top: -32px;
    transform: translateX(-50%);
  }
  .p-ir-download-area__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  #ir .u-btn--size__300 {
    max-width: unset;
  }
}