@charset "UTF-8";

.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* PAGE TOP
====================================== */
.pagetop {
  position: fixed;
  bottom: 1rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
  }
}
/* CTA
====================================== */
.mega-CTA {
  position: relative;
  max-width: 1280px;
  line-height: 2;
  padding: 100px 15px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {

  .mega-CTA .btn-wrap {
    margin-top: -40px;
  }
}

/* フローティング
====================================== */
.floating-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.floating-wrap ul {
}

.floating-wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fac45b;
  background: linear-gradient(
    147deg,
    rgba(250, 196, 91, 1) 0%,
    rgba(213, 55, 116, 1) 50%,
    rgba(125, 91, 185, 1) 100%
  );
  color: #fff;
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  padding: 15px 30px;
}

.floating-wrap ul li a:hover {
  background: #b0a18b;
  background: linear-gradient(
    147deg,
    rgba(125, 91, 185, 1) 0%,
    rgba(213, 55, 116, 1) 50%,
    rgba(250, 196, 91, 1) 100%
  );
}

.floating-icon {
  max-height: 50px;
  padding-right: 10px;
}

.floating-wrap ul li span.floating-cat {
  background: #fff;
  border-radius: 100vh;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 3px 20px;
  margin-right: 20px;
}

/* フローティング　キャラクター */
.shape-floating {
  max-width: 160px;
  position: absolute;
  bottom: 0;
  right: 10vw;
}

@media screen and (max-width: 1280px) {
  .shape-floating {
    max-width: 120px;
    position: absolute;
    bottom: 0;
    right: 30px;
  }
}
@media screen and (max-width: 820px) {
  .floating-wrap ul li a {
    justify-content: start;
  }

  .floating-icon {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .shape-floating {
    max-width: 80px;
    right: 10px;
  }

  .floating-wrap ul li a {
    display: block;
  }

  .floating-wrap ul li span.floating-cat {
    display: block;
    max-width: 250px;
  }
}


/* dotsを丸くカスタマイズ
====================================== */

.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dots-wrap li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #826a3e;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}