@media screen and (min-width: 767px) {
  .section {
    position: relative;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    margin-top: 60vh;
    max-height: 120vh;
  }

  .sliderArea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .regular.slider {
    width: 100%;
    margin: 0 auto;
  }

  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }

  .slick-slide img {
    width: 100%;
  }

  .slick-active,
  .slick-current {
    opacity: 1;
  }

  .globalbanner {
    width: 100%;
    max-width: 250px;
    margin: 70px auto 0;
    padding-top: 0;
    height: auto;
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
  }

  .globalbanner img {
    width: 100%;
  }

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    position: relative;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    margin-top: 65vh;
    max-height: 120vh;
  }

  .sliderArea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .regular.slider {
    width: 100%;
    margin: 0 auto;
  }

  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }

  .slick-slide img {
    width: 100%;
  }

  .slick-active,
  .slick-current {
    opacity: 1;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .globalbanner {
    width: 80%;
    margin: 70px auto;
    padding-top: 0;
    height: auto;
  }

  .globalbanner img {
    width: 100%;
  }
}