/* header */
.header {
  width: 100%;
  padding: 28px 0;
}

.header__container {
  text-align: center;
}

.header__img {
  max-width: 171px;
}

/* main */
.u-unq-main__primary {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 10px;
}

.u-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  height: 53px;
  margin: 40px auto 65px;
  border-radius: 7px;
  background: #6D96DC;
  box-shadow: 0px 5px 10px 0px #B1B1B1;
}

.u-close-btn__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.u-close-btn__btn::before,
.u-close-btn__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 3px;
  height: 20px;
  border-radius: 2.5px;
  background: #FFF;
}

.u-close-btn__btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.u-close-btn__btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.u-close-btn__txt {
  color: #FFF;
  font-size: 16px;
}

/* footer */
.footer {
  padding: 15px 0;
  background: #434D56;
}

.footer__txt {
  color: #FFF;
  text-align: center;
  font-size: 12px;
}

/* SP */
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .header__img {
    max-width: 89px;
  }
}
