.line-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;

  &.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .line-popup__content {
    width: 1200px;
    max-width: 90%;
    max-height: 90%;
    position: relative;

    .line-popup__close-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #F2F3F6;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: -14px;
      right: -14px;
      border: none;
      z-index: 11;
    }

    .line-popup__image-container {
      width: 100%;

      .line-popup__image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;

        &.pc {
          display: block;
        }

        &.sp {
          display: none;
        }

        @media screen and (max-width: 750px) {
          &.pc {
            display: none;
          }

          &.sp {
            display: block;
          }
        }
      }
    }
  }
}
