@charset "UTF-8";

/* TOPアニメーション */
.imgEffectAnime_fadeIn {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.0s;
  animation-duration: 1.0s;
  -webkit-animation-name: imgEffectAnime_fadeIn;
  animation-name: imgEffectAnime_fadeIn;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- top-dowm ------------------------------*/
.imgEffectAnime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: imgEffectAnime;
  animation-name: imgEffectAnime;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-225px);
    -ms-transform: translateY(-225px);
    transform: translateY(-225px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-225px);
    -ms-transform: translateY(-225px);
    transform: translateY(-225px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- left-right ------------------------------*/
.imgEffectAnime_left_right {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-name: imgEffectAnime_left_right;
  animation-name: imgEffectAnime_left_right;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_left_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20vw);
    -ms-transform: translateX(-20vw);
    transform: translateX(-20vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes imgEffectAnime_left_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20vw);
    -ms-transform: translateX(-20vw);
    transform: translateX(-20vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* img effect  ------- right - left ------------------------------*/
.imgEffectAnime_right_left {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-name: imgEffectAnime_right_left;
  animation-name: imgEffectAnime_right_left;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_right_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20vw);
    -ms-transform: translateX(20vw);
    transform: translateX(20vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes imgEffectAnime_right_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20vw);
    -ms-transform: translateX(20vw);
    transform: translateX(20vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* img effect  ------- _bottom_top ------------------------------*/
.imgEffectAnime_bottom_top {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 045s;
  animation-duration: 0.45s;
  -webkit-animation-name: imgEffectAnime_bottom_top;
  animation-name: imgEffectAnime_bottom_top;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_bottom_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_bottom_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* img effect  ------- cover fade in ------------------------------*/
.imgEffectAnime_bg_cover {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.0s;
  animation-duration: 1.0s;
  -webkit-animation-name: imgEffectAnime_bg_cover;
  animation-name: imgEffectAnime_bg_cover;
  visibility: visible !important;
}

@-webkit-keyframes imgEffectAnime_bg_cover {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 0.7;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffectAnime_bg_cover {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  80% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.imgEffect_Anime_top_bottom {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: imgEffect_Anime_top_bottom;
  animation-name: imgEffect_Anime_top_bottom;
  visibility: visible !important;
}

@-webkit-keyframes imgEffect_Anime_top_bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes imgEffect_Anime_top_bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.ball {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0 0 0 0;
  border-radius: 50%;
}

.img_ball_area .ball {
  width: 50px;
  height: 25px;
  margin: 0 0 0 -25px;
  border-radius: 50%;
}

.L_ball_area .dots_ball {
  -webkit-animation: moveX_dots_L 9s infinite linear alternate, moveY_dots_L 8s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_dots_L 9s infinite linear alternate, moveY_dots_L 8s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.M_ball_area .dots_ball {
  -webkit-animation: moveX_dots_M 8.5s infinite linear alternate, moveY_dots_M 6s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_dots_M 8.5s infinite linear alternate, moveY_dots_M 6s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.img_ball {
  -webkit-animation: moveX_img 5s infinite linear alternate, moveY_img 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_img 5s infinite linear alternate, moveY_img 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.img_ball_1 {
  -webkit-animation: moveX_img_1 5s infinite linear alternate, moveY_img_1 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_img_1 5s infinite linear alternate, moveY_img_1 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.img_ball_2 {
  -webkit-animation: moveX_img_2 5s infinite linear alternate, moveY_img_2 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_img_2 5s infinite linear alternate, moveY_img_2 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.img_ball_3 {
  -webkit-animation: moveX_img_3 5s infinite linear alternate, moveY_img_3 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_img_3 5s infinite linear alternate, moveY_img_3 5s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.small_ball {
  -webkit-animation: moveX_small 8.5s infinite linear alternate, moveY_small 8s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
  animation: moveX_small 8.5s infinite linear alternate, moveY_small 8s infinite linear alternate, cubic-bezier(0, 0, 0.3, 1) alternate;
}

.ball:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: inherit;
}

.img_ball_area .ball:after {
  content: '';
  display: block;
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: inherit;
}

@-webkit-keyframes moveX_dots_L {
  0% {
    left: calc(0% - (15px * 2));
  }

  100% {
    left: calc((100% - 20.5vw) + (15px * 2));
  }
}

@-webkit-keyframes moveY_dots_L {
  0% {
    top: calc(0% - (15px * 2));
  }

  100% {
    top: calc((100% - 20.5vw) + (15px * 2));
  }
}

@keyframes moveX_dots_L {
  0% {
    left: calc(0% - (15px * 2));
  }

  100% {
    left: calc((100% - 20.5vw) + (15px * 2));
  }
}

@keyframes moveY_dots_L {
  0% {
    top: calc(0% - (15px * 2));
  }

  100% {
    top: calc((100% - 20.5vw) + (15px * 2));
  }
}

@supports (-ms-ime-align: auto) {
  @-webkit-keyframes moveX_dots_L {
    0% {
      left: -4%;
    }

    100% {
      left: 82%;
    }
  }

  @keyframes moveX_dots_L {
    0% {
      left: -4%;
    }

    100% {
      left: 82%;
    }
  }

  @-webkit-keyframes moveY_dots_L {
    0% {
      top: -5%;
    }

    100% {
      top: 68%;
    }
  }

  @keyframes moveY_dots_L {
    0% {
      top: -5%;
    }

    100% {
      top: 68%;
    }
  }
}

@keyframes moveX_dots_L {
  0% {
    left: -4%;
  }

  100% {
    left: 82%;
  }
}

@keyframes moveY_dots_L {
  0% {
    top: -5%;
  }

  100% {
    top: 68%;
  }
}

@-webkit-keyframes moveX_dots_M {
  0% {
    left: calc(0% - (15px * 2));
  }

  100% {
    left: calc((100% - 12.5vw) + (15px * 2));
  }
}

@-webkit-keyframes moveY_dots_M {
  0% {
    top: calc(0% - (15px * 2));
  }

  100% {
    top: calc((100% - 12.5vw) + (15px * 2));
  }
}

@keyframes moveX_dots_M {
  0% {
    left: calc(0% - (15px * 2));
  }

  100% {
    left: calc((100% - 12.5vw) + (15px * 2));
  }
}

@keyframes moveY_dots_M {
  0% {
    top: calc(0% - (15px * 2));
  }

  100% {
    top: calc((100% - 12.5vw) + (15px * 2));
  }
}

@supports (-ms-ime-align: auto) {
  @-webkit-keyframes moveX_dots_M {
    0% {
      left: -4%;
    }

    100% {
      left: 90%;
    }
  }

  @keyframes moveX_dots_M {
    0% {
      left: -4%;
    }

    100% {
      left: 90%;
    }
  }

  @-webkit-keyframes moveY_dots_M {
    0% {
      top: -5%;
    }

    100% {
      top: 82%;
    }
  }

  @keyframes moveY_dots_M {
    0% {
      top: -5%;
    }

    100% {
      top: 82%;
    }
  }
}

@keyframes moveX_dots_M {
  0% {
    left: -4%;
  }

  100% {
    left: 90%;
  }
}

@keyframes moveY_dots_M {
  0% {
    top: -5%;
  }

  100% {
    top: 82%;
  }
}

@-webkit-keyframes moveX_img_1 {
  0% {
    left: 6%;
  }

  100% {
    left: 9%;
  }
}

@-webkit-keyframes moveY_img_1 {
  0% {
    top: 12%;
  }

  100% {
    top: 15%;
  }
}

@keyframes moveX_img_1 {
  0% {
    left: 6%;
  }

  100% {
    left: 9%;
  }
}

@keyframes moveY_img_1 {
  0% {
    top: 12%;
  }

  100% {
    top: 15%;
  }
}

@-webkit-keyframes moveX_img_2 {
  0% {
    left: 62%;
  }

  100% {
    left: 65%;
  }
}

@-webkit-keyframes moveY_img_2 {
  0% {
    top: -2%;
  }

  100% {
    top: 0%;
  }
}

@keyframes moveX_img_2 {
  0% {
    left: 62%;
  }

  100% {
    left: 65%;
  }
}

@keyframes moveY_img_2 {
  0% {
    top: -2%;
  }

  100% {
    top: 0%;
  }
}

@-webkit-keyframes moveX_img_3 {
  0% {
    left: 83%;
  }

  100% {
    left: 85%;
  }
}

@-webkit-keyframes moveY_img_3 {
  0% {
    top: 70%;
  }

  100% {
    top: 73%;
  }
}

@keyframes moveX_img_3 {
  0% {
    left: 83%;
  }

  100% {
    left: 85%;
  }
}

@keyframes moveY_img_3 {
  0% {
    top: 70%;
  }

  100% {
    top: 73%;
  }
}

@media screen and (min-width: 1480px) {
  @-webkit-keyframes moveX_img_1 {
    0% {
      left: 16%;
    }

    100% {
      left: 19%;
    }
  }

  @-webkit-keyframes moveY_img_1 {
    0% {
      top: 12%;
    }

    100% {
      top: 15%;
    }
  }

  @keyframes moveX_img_1 {
    0% {
      left: 16%;
    }

    100% {
      left: 19%;
    }
  }

  @keyframes moveY_img_1 {
    0% {
      top: 12%;
    }

    100% {
      top: 15%;
    }
  }

  @-webkit-keyframes moveX_img_2 {
    0% {
      left: 74%;
    }

    100% {
      left: 78%;
    }
  }

  @-webkit-keyframes moveY_img_2 {
    0% {
      top: -2%;
    }

    100% {
      top: 0%;
    }
  }

  @keyframes moveX_img_2 {
    0% {
      left: 74%;
    }

    100% {
      left: 78%;
    }
  }

  @keyframes moveY_img_2 {
    0% {
      top: -2%;
    }

    100% {
      top: 0%;
    }
  }

  @-webkit-keyframes moveX_img_3 {
    0% {
      left: 83%;
    }

    100% {
      left: 85%;
    }
  }

  @-webkit-keyframes moveY_img_3 {
    0% {
      top: 60%;
    }

    100% {
      top: 63%;
    }
  }

  @keyframes moveX_img_3 {
    0% {
      left: 83%;
    }

    100% {
      left: 85%;
    }
  }

  @keyframes moveY_img_3 {
    0% {
      top: 60%;
    }

    100% {
      top: 63%;
    }
  }
}

@-webkit-keyframes moveX_small {
  0% {
    left: -40%;
  }

  100% {
    left: 140%;
  }
}

@-webkit-keyframes moveY_small {
  0% {
    top: -40%;
  }

  100% {
    top: 140%;
  }
}

@keyframes moveX_small {
  0% {
    left: -40%;
  }

  100% {
    left: 140%;
  }
}

@keyframes moveY_small {
  0% {
    top: -40%;
  }

  100% {
    top: 140%;
  }
}

.L_ball_area>.ball:nth-child(1),
.L_ball_area>.ball:nth-child(2),
.L_ball_area>.ball:nth-child(3),
.L_ball_area>.ball:nth-child(4),
.L_ball_area>.ball:nth-child(1):after,
.L_ball_area>.ball:nth-child(2):after,
.L_ball_area>.ball:nth-child(3):after,
.L_ball_area>.ball:nth-child(4):after {
  width: 20.5vw;
  height: 20.5vw;
}

.M_ball_area>.ball:nth-child(1),
.M_ball_area>.ball:nth-child(2),
.M_ball_area>.ball:nth-child(3),
.M_ball_area>.ball:nth-child(4),
.M_ball_area>.ball:nth-child(1):after,
.M_ball_area>.ball:nth-child(2):after,
.M_ball_area>.ball:nth-child(3):after,
.M_ball_area>.ball:nth-child(4):after {
  width: 12.5vw;
  height: 12.5vw;
}

.ball_area>.ball:after,
.small_ball_area>.ball:after {
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

.ball_area>.ball:after,
.small_ball_area>.ball:after {
  background-image: -webkit-radial-gradient(#e5006e 16.3%, transparent 33%), -webkit-radial-gradient(#e5006e 16.3%, transparent 33%);
  background-image: -o-radial-gradient(#e5006e 16.3%, transparent 33%), -o-radial-gradient(#e5006e 16.3%, transparent 33%);
  background-image: radial-gradient(#e5006e 16.3%, transparent 33%), radial-gradient(#e5006e 16.3%, transparent 33%);
}

.ball_area>.ball:nth-child(1):after,
.small_ball_area>.ball:nth-child(1):after {
  background-image: -webkit-radial-gradient(#f2a931 16.5%, transparent 33%), -webkit-radial-gradient(#f2a931 16.5%, transparent 33%);
  background-image: -o-radial-gradient(#f2a931 16.5%, transparent 33%), -o-radial-gradient(#f2a931 16.5%, transparent 33%);
  background-image: radial-gradient(#f2a931 16.5%, transparent 33%), radial-gradient(#f2a931 16.5%, transparent 33%);
}

.ball_area>.ball:nth-child(2):after,
.small_ball_area>.ball:nth-child(2):after {
  background-image: -webkit-radial-gradient(#4db04d 16.5%, transparent 33%), -webkit-radial-gradient(#4db04d 16.5%, transparent 33%);
  background-image: -o-radial-gradient(#4db04d 16.5%, transparent 33%), -o-radial-gradient(#4db04d 16.5%, transparent 33%);
  background-image: radial-gradient(#4db04d 16.5%, transparent 33%), radial-gradient(#4db04d 16.5%, transparent 33%);
}

.ball_area>.ball:nth-child(3):after,
.small_ball_area>.ball:nth-child(3):after {
  background-image: -webkit-radial-gradient(#2daedf 16.5%, transparent 33%), -webkit-radial-gradient(#2daedf 16.5%, transparent 33%);
  background-image: -o-radial-gradient(#2daedf 16.5%, transparent 33%), -o-radial-gradient(#2daedf 16.5%, transparent 33%);
  background-image: radial-gradient(#2daedf 16.5%, transparent 33%), radial-gradient(#2daedf 16.5%, transparent 33%);
}

.L_ball_area>.ball:nth-child(4):after {
  background-image: -webkit-radial-gradient(#f2a931 16.5%, transparent 33%), -webkit-radial-gradient(#f2a931 16.5%, transparent 33%);
  background-image: -o-radial-gradient(#f2a931 16.5%, transparent 33%), -o-radial-gradient(#f2a931 16.5%, transparent 33%);
  background-image: radial-gradient(#f2a931 16.5%, transparent 33%), radial-gradient(#f2a931 16.5%, transparent 33%);
}

.M_ball_area>.ball:nth-child(4):after {
  background-image: -webkit-radial-gradient(#4db04d 16.5%, transparent 33%), -webkit-radial-gradient(#4db04d 16.5%, transparent 33%);
  background-image: -o-radial-gradient(#4db04d 16.5%, transparent 33%), -o-radial-gradient(#4db04d 16.5%, transparent 33%);
  background-image: radial-gradient(#4db04d 16.5%, transparent 33%), radial-gradient(#4db04d 16.5%, transparent 33%);
}

.L_ball_area>.ball:nth-child(1),
.small_ball_area>.ball:nth-child(1) {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.L_ball_area>.ball:nth-child(2),
.small_ball_area>.ball:nth-child(2) {
  animation-delay: -4s;
  -webkit-animation-delay: -4s;
}

.L_ball_area>.ball:nth-child(3),
.small_ball_area>.ball:nth-child(3) {
  animation-delay: -8s;
  -webkit-animation-delay: -8s;
}

.L_ball_area>.ball:nth-child(4),
.small_ball_area>.ball:nth-child(4) {
  animation-delay: -12s;
  -webkit-animation-delay: -12s;
}

.L_ball_area>.ball:nth-child(5),
.small_ball_area>.ball:nth-child(5) {
  animation-delay: -16s;
  -webkit-animation-delay: -16s;
}

.L_ball_area>.ball:nth-child(6),
.small_ball_area>.ball:nth-child(6) {
  animation-delay: -20s;
  -webkit-animation-delay: -20s;
}

.L_ball_area>.ball:nth-child(7),
.small_ball_area>.ball:nth-child(7) {
  animation-delay: -24s;
  -webkit-animation-delay: -24s;
}

.L_ball_area>.ball:nth-child(8),
.small_ball_area>.ball:nth-child(8) {
  animation-delay: -28s;
  -webkit-animation-delay: -28s;
}

.M_ball_area>.ball:nth-child(1) {
  animation-delay: -12s;
  -webkit-animation-delay: -12s;
}

.M_ball_area>.ball:nth-child(2) {
  animation-delay: -15s;
  -webkit-animation-delay: -15s;
}

.M_ball_area>.ball:nth-child(3) {
  animation-delay: -18s;
  -webkit-animation-delay: -18s;
}

.M_ball_area>.ball:nth-child(4) {
  animation-delay: -21s;
  -webkit-animation-delay: -21s;
}

.img_ball_area>.ball:nth-child(1):after {
  background-color: rgba(0, 0, 0, 0.2);
  background: url(img/cover_img_1.png) no-repeat center center;
  background-size: cover;
  width: 24vw;
  height: 24vw;
}

.img_ball_area>.ball:nth-child(2):after {
  background-color: rgba(0, 0, 0, 0.2);
  background: url(img/cover_img_5.png) no-repeat center center;
  background-size: cover;
  width: 23vw;
  height: 23vw;
}

.img_ball_area>.ball:nth-child(3):after {
  background-color: rgba(0, 0, 0, 0.2);
  background: url(img/cover_img_3.png) no-repeat center center;
  background-size: cover;
  width: 29vw;
  height: 29vw;
}

.img_ball_area>.ball:nth-child(1) {
  animation-delay: 0s;
  -webkit-animation-delay: -50s;
}

.img_ball_area>.ball:nth-child(2) {
  animation-delay: 0.5s;
  -webkit-animation-delay: -30s;
}

.img_ball_area>.ball:nth-child(3) {
  animation-delay: 1.4s;
  -webkit-animation-delay: 0s;
}

@media screen and (min-width: 1480px) {
  .img_ball_area>.ball:nth-child(1):after {
    width: 380px;
    height: 380px;
  }

  .img_ball_area>.ball:nth-child(2):after {
    width: 350px;
    height: 350px;
  }

  .img_ball_area>.ball:nth-child(3):after {
    width: 480px;
    height: 480px;
  }
}

.small_ball_area>.ball:nth-child(1):after,
.small_ball_area>.ball:nth-child(2):after,
.small_ball_area>.ball:nth-child(3):after,
.small_ball_area>.ball:nth-child(4):after,
.small_ball_area>.ball:nth-child(5):after {
  width: 5vw;
  height: 5vw;
  background-image: -webkit-radial-gradient(#e5006e 16.3%, transparent 33%), -webkit-radial-gradient(#e5006e 16.3%, transparent 33%);
  background-image: -o-radial-gradient(#e5006e 16.3%, transparent 33%), -o-radial-gradient(#e5006e 16.3%, transparent 33%);
  background-image: radial-gradient(#e5006e 16.3%, transparent 33%), radial-gradient(#e5006e 16.3%, transparent 33%);
}

.small_ball_area>.ball:nth-child(1):after {
  background-color: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: url(img/ball_logo.svg) no-repeat center center;
  background-size: 130px auto;
  background-size: contain;
  width: 8vw;
  height: 8vw;
}

@media screen and (max-width: 768px) {

  .L_ball_area>.ball:nth-child(1),
  .L_ball_area>.ball:nth-child(2),
  .L_ball_area>.ball:nth-child(3),
  .L_ball_area>.ball:nth-child(4),
  .L_ball_area>.ball:nth-child(1):after,
  .L_ball_area>.ball:nth-child(2):after,
  .L_ball_area>.ball:nth-child(3):after,
  .L_ball_area>.ball:nth-child(4):after {
    width: 26vw;
    height: 26vw;
  }

  .M_ball_area>.ball:nth-child(1),
  .M_ball_area>.ball:nth-child(2),
  .M_ball_area>.ball:nth-child(3),
  .M_ball_area>.ball:nth-child(4),
  .M_ball_area>.ball:nth-child(1):after,
  .M_ball_area>.ball:nth-child(2):after,
  .M_ball_area>.ball:nth-child(3):after,
  .M_ball_area>.ball:nth-child(4):after {
    width: 16vw;
    height: 16vw;
  }

  @-webkit-keyframes moveX_dots_L {
    0% {
      left: calc(0% - (15px * 2));
    }

    100% {
      left: calc((100% - 26vw) + (15px * 2));
    }
  }

  @-webkit-keyframes moveY_dots_L {
    0% {
      top: calc(0% - (15px * 2));
    }

    100% {
      top: calc((100% - 26vw) + (15px * 2));
    }
  }

  @keyframes moveX_dots_L {
    0% {
      left: calc(0% - (15px * 2));
    }

    100% {
      left: calc((100% - 26vw) + (15px * 2));
    }
  }

  @keyframes moveY_dots_L {
    0% {
      top: calc(0% - (15px * 2));
    }

    100% {
      top: calc((100% - 26vw) + (15px * 2));
    }
  }

  @-webkit-keyframes moveX_dots_M {
    0% {
      left: calc(0% - (15px * 2));
    }

    100% {
      left: calc((100% - 16vw) + (15px * 2));
    }
  }

  @-webkit-keyframes moveY_dots_M {
    0% {
      top: calc(0% - (15px * 2));
    }

    100% {
      top: calc((100% - 16vw) + (15px * 2));
    }
  }

  @keyframes moveX_dots_M {
    0% {
      left: calc(0% - (15px * 2));
    }

    100% {
      left: calc((100% - 16vw) + (15px * 2));
    }
  }

  @keyframes moveY_dots_M {
    0% {
      top: calc(0% - (15px * 2));
    }

    100% {
      top: calc((100% - 16vw) + (15px * 2));
    }
  }

  .img_ball_area>.ball:nth-child(1):after {
    width: 41vw;
    height: 41vw;
  }

  .img_ball_area>.ball:nth-child(2):after {
    width: 39vw;
    height: 39vw;
  }

  .img_ball_area>.ball:nth-child(3):after {
    width: 47vw;
    height: 47vw;
  }

  @-webkit-keyframes moveX_img_1 {
    0% {
      left: 4%;
    }

    100% {
      left: 7%;
    }
  }

  @-webkit-keyframes moveY_img_1 {
    0% {
      top: 18%;
    }

    100% {
      top: 21%;
    }
  }

  @keyframes moveX_img_1 {
    0% {
      left: 4%;
    }

    100% {
      left: 7%;
    }
  }

  @keyframes moveY_img_1 {
    0% {
      top: 18%;
    }

    100% {
      top: 21%;
    }
  }

  @-webkit-keyframes moveX_img_2 {
    0% {
      left: 60%;
    }

    100% {
      left: 63%;
    }
  }

  @-webkit-keyframes moveY_img_2 {
    0% {
      top: -2%;
    }

    100% {
      top: 0%;
    }
  }

  @keyframes moveX_img_2 {
    0% {
      left: 60%;
    }

    100% {
      left: 63%;
    }
  }

  @keyframes moveY_img_2 {
    0% {
      top: -2%;
    }

    100% {
      top: 0%;
    }
  }

  @-webkit-keyframes moveX_img_3 {
    0% {
      left: 80%;
    }

    100% {
      left: 83%;
    }
  }

  @-webkit-keyframes moveY_img_3 {
    0% {
      top: 72%;
    }

    100% {
      top: 75%;
    }
  }

  @keyframes moveX_img_3 {
    0% {
      left: 80%;
    }

    100% {
      left: 83%;
    }
  }

  @keyframes moveY_img_3 {
    0% {
      top: 72%;
    }

    100% {
      top: 75%;
    }
  }
}

@media screen and (max-width: 480px) {

  .L_ball_area>.ball:nth-child(1),
  .L_ball_area>.ball:nth-child(2),
  .L_ball_area>.ball:nth-child(3),
  .L_ball_area>.ball:nth-child(4),
  .L_ball_area>.ball:nth-child(1):after,
  .L_ball_area>.ball:nth-child(2):after,
  .L_ball_area>.ball:nth-child(3):after,
  .L_ball_area>.ball:nth-child(4):after {
    width: 35.5vw;
    height: 35.5vw;
  }

  .M_ball_area>.ball:nth-child(1),
  .M_ball_area>.ball:nth-child(2),
  .M_ball_area>.ball:nth-child(3),
  .M_ball_area>.ball:nth-child(4),
  .M_ball_area>.ball:nth-child(1):after,
  .M_ball_area>.ball:nth-child(2):after,
  .M_ball_area>.ball:nth-child(3):after,
  .M_ball_area>.ball:nth-child(4):after {
    width: 18.5vw;
    height: 18.5vw;
  }

  .small_ball_area>.ball:nth-child(1):after,
  .small_ball_area>.ball:nth-child(2):after,
  .small_ball_area>.ball:nth-child(3):after,
  .small_ball_area>.ball:nth-child(4):after,
  .small_ball_area>.ball:nth-child(5):after {
    width: 10vw;
    height: 10vw;
  }

  @-webkit-keyframes moveX_dots_L {
    0% {
      left: calc(0% - 15px);
    }

    100% {
      left: calc((100% - 35.5vw) + (15px));
    }
  }

  @-webkit-keyframes moveY_dots_L {
    0% {
      top: calc(0% - 15px);
    }

    100% {
      top: calc((100% - 35.5vw) + (15px));
    }
  }

  @keyframes moveX_dots_L {
    0% {
      left: calc(0% - 15px);
    }

    100% {
      left: calc((100% - 35.5vw) + (15px));
    }
  }

  @keyframes moveY_dots_L {
    0% {
      top: calc(0% - 15px);
    }

    100% {
      top: calc((100% - 35.5vw) + (15px));
    }
  }

  @-webkit-keyframes moveX_dots_M {
    0% {
      left: calc(0% - 15px);
    }

    100% {
      left: calc((100% - 18.5vw) + (15px));
    }
  }

  @-webkit-keyframes moveY_dots_M {
    0% {
      top: calc(0% - 15px);
    }

    100% {
      top: calc((100% - 18.5vw) + (15px));
    }
  }

  @keyframes moveX_dots_M {
    0% {
      left: calc(0% - 15px);
    }

    100% {
      left: calc((100% - 18.5vw) + (15px));
    }
  }

  @keyframes moveY_dots_M {
    0% {
      top: calc(0% - 15px);
    }

    100% {
      top: calc((100% - 18.5vw) + (15px));
    }
  }

  .small_ball_area>.ball:nth-child(1):after {
    background-color: inherit;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: url(img/ball_logo.svg) no-repeat center center;
    background-size: 130px auto;
    background-size: contain;
    width: 18vw;
    height: 18vw;
  }

  .img_ball_area>.ball:nth-child(1):after {
    width: 39vw;
    height: 39vw;
  }

  .img_ball_area>.ball:nth-child(2):after {
    width: 41vw;
    height: 41vw;
  }

  .img_ball_area>.ball:nth-child(3):after {
    width: 63vw;
    height: 63vw;
  }

  @-webkit-keyframes moveX_img_1 {
    0% {
      left: 22%;
    }

    100% {
      left: 25%;
    }
  }

  @-webkit-keyframes moveY_img_1 {
    0% {
      top: 44%;
    }

    100% {
      top: 47%;
    }
  }

  @keyframes moveX_img_1 {
    0% {
      left: 22%;
    }

    100% {
      left: 25%;
    }
  }

  @keyframes moveY_img_1 {
    0% {
      top: 44%;
    }

    100% {
      top: 47%;
    }
  }

  @-webkit-keyframes moveX_img_2 {
    0% {
      left: 76%;
    }

    100% {
      left: 80%;
    }
  }

  @-webkit-keyframes moveY_img_2 {
    0% {
      top: 2%;
    }

    100% {
      top: 5%;
    }
  }

  @keyframes moveX_img_2 {
    0% {
      left: 76%;
    }

    100% {
      left: 80%;
    }
  }

  @keyframes moveY_img_2 {
    0% {
      top: 2%;
    }

    100% {
      top: 5%;
    }
  }

  @-webkit-keyframes moveX_img_3 {
    0% {
      left: 97%;
    }

    100% {
      left: 100%;
    }
  }

  @-webkit-keyframes moveY_img_3 {
    0% {
      top: 82%;
    }

    100% {
      top: 85%;
    }
  }

  @keyframes moveX_img_3 {
    0% {
      left: 97%;
    }

    100% {
      left: 100%;
    }
  }

  @keyframes moveY_img_3 {
    0% {
      top: 82%;
    }

    100% {
      top: 85%;
    }
  }
}

@media screen and (max-width: 320px) {
  @-webkit-keyframes moveX_img_2 {
    0% {
      left: 77%;
    }

    100% {
      left: 81%;
    }
  }

  @-webkit-keyframes moveY_img_2 {
    0% {
      top: 4%;
    }

    100% {
      top: 7%;
    }
  }

  @keyframes moveX_img_2 {
    0% {
      left: 77%;
    }

    100% {
      left: 81%;
    }
  }

  @keyframes moveY_img_2 {
    0% {
      top: 4%;
    }

    100% {
      top: 7%;
    }
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(4);
    transform: scale(4);
  }

  25% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  45% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  65% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  85% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(4);
    transform: scale(4);
  }

  25% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  45% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  65% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  85% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(80deg);
    transform: perspective(400px) rotateY(80deg);
  }

  50% {
    opacity: 0;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }

  82% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  90% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(80deg);
    transform: perspective(400px) rotateY(80deg);
  }

  50% {
    opacity: 0;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }

  82% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  90% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  80% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  90% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  80% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  90% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  80% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  90% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  80% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  90% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 基本スタイル --------------------- */
html {
  font-size: 16px;
  color: #1c1c1c;
}

body {
  width: 100%;
  height: 100%;
  /* overflow: hidden */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  /* font-weight: bold */
  color: #1c1c1c;
}

h2 {
  text-align: center;
  font-size: 4.125rem;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 3.2rem;
  }
}

h2 span {
  font-size: 1.625rem;
}

@media screen and (max-width: 480px) {
  h2 span {
    font-size: 1.4rem;
  }
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.8;
  font-size: 1.125rem;
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.button {
  margin: 0 auto;
  display: block;
  width: 320px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #e5006e;
  color: #fff;
  font-size: 1.1rem;
}

.button:link,
.button:hover,
.button:visited,
.button:active {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .button {
    height: 46px;
    line-height: 46px;
    width: 90%;
  }
}

.pc_tb_only {
  display: block;
}

.sp_only {
  display: none;
}

.br_pc_only {
  display: inline-block;
}

.br_pc_tb_only {
  display: inline-block;
}

.br_sp_tb_only {
  display: none;
}

.br_sp_only {
  display: none;
}

.obj-cover {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  -o-object-position: center right;
  object-position: center right;
}

/*768px以下 ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .br_pc_only {
    display: none;
  }

  .br_sp_tb_only {
    display: inline-block;
  }
}

/*480px以下 ------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 5%;
  }

  .pc_tb_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .br_pc_tb_only {
    display: none;
  }

  .br_sp_only {
    display: inline-block;
  }
}

/* 全コンテンツ共通 --------------------- */
h2 {
  margin-bottom: 76px;
}

h2 span {
  margin-top: 18px;
  display: block;
}

@media screen and (max-width: 480px) {
  h2 {
    margin-bottom: 56px;
  }

  h2 span {
    margin-top: 14px;
  }
}

/* ---------------------------------------- */
/* ------------ top_cover ----------------- */
/* ---------------------------------------- */
.top_wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 56px);
  border: 14px solid #e5006e;
}

@media screen and (max-width: 480px) {
  .top_wrap {
    height: calc(100vh - 90px);
    border: 9px solid #e5006e;
  }
}

@media screen and (max-width: 320px) {
  .top_wrap {
    height: calc(100vh - 20px);
  }
}

.top_wrap {
  z-index: 4;
}

.cover_area {
  position: absolute;
  z-index: 5;
}

.cover_area_bg {
  position: absolute;
  z-index: 4;
}

.ball_area {
  position: absolute;
  z-index: 2;
}

.img_ball_area {
  position: absolute;
  z-index: 3;
}

.small_ball_area {
  position: absolute;
  z-index: 1;
  z-index: 2;
}

/* ---------------------------------------- */
.cover_area {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cover_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  max-height: 660px;
  min-height: 380px;
  text-align: center;
  color: #e5006e;
}

@media screen and (min-width: 1400px) {
  .cover_wrap {
    width: 1000px;
  }
}

.cover_area_bg {
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-animation: bounceIn 1500ms ease both;
  -webkit-animation-play-state: paused;
  -moz-animation: bounceIn 1500ms ease both;
  -moz-animation-play-state: paused;
  -o-animation: bounceIn 1500ms ease both;
  -o-animation-play-state: paused;
  -webkit-animation: fadeOut 1500ms ease both;
  animation: fadeOut 1500ms ease both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.ball_area,
.img_ball_area,
.small_ball_area {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------- */
/* 各アニメーション */
/* @-webkit-keyframes bounceIn */
/* @-moz-keyframes bounceIn */
/* @-o-keyframes bounceIn */
/* ※後から修正すること！！！！！！ */
.cover_inner {
  position: relative;
  height: 100%;
}

.cover_inner h1 {
  position: absolute;
  top: calc(50% - 10%);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65%;
}

.cover_inner h1 img {
  display: block;
  width: 100%;
  opacity: 0;
  position: relative;
  -webkit-animation: bounceIn 1000ms ease both;
  -webkit-animation-play-state: paused;
  -moz-animation: bounceIn 1000ms ease both;
  -moz-animation-play-state: paused;
  -o-animation: bounceIn 1000ms ease both;
  -o-animation-play-state: paused;
  animation: bounceIn 1000ms ease both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.cover_inner .top_label {
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  color: #fff;
  width: 18%;
}

.cover_inner .top_label img {
  width: 100%;
  position: relative;
  opacity: 0;
  -webkit-animation: bounceIn 1500ms ease both;
  -webkit-animation-play-state: paused;
  -moz-animation: bounceIn 1500ms ease both;
  -moz-animation-play-state: paused;
  -o-animation: bounceIn 1500ms ease both;
  -o-animation-play-state: paused;
  -webkit-animation: flipInY 1500ms ease both;
  animation: flipInY 1500ms ease both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.cover_inner .top_lead {
  position: absolute;
  top: 0;
  right: 0;
  width: 12.3%;
}

.cover_inner .top_lead img {
  width: 100%;
  position: relative;
  -webkit-animation: bounceIn 1200ms ease both;
  -webkit-animation-play-state: paused;
  -moz-animation: bounceIn 1200ms ease both;
  -moz-animation-play-state: paused;
  -o-animation: bounceIn 1200ms ease both;
  -o-animation-play-state: paused;
  -webkit-animation: bounceInDown 1200ms ease both;
  animation: bounceInDown 1200ms ease both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.cover_inner .top_bottom_p {
  position: absolute;
  width: 50%;
  bottom: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cover_inner .top_bottom_p img {
  width: 100%;
  position: relative;
  -webkit-animation: bounceIn 1200ms ease both;
  -webkit-animation-play-state: paused;
  -moz-animation: bounceIn 1200ms ease both;
  -moz-animation-play-state: paused;
  -o-animation: bounceIn 1200ms ease both;
  -o-animation-play-state: paused;
  -webkit-animation: bounceInUp 1200ms ease both;
  animation: bounceInUp 1200ms ease both;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

/* ---------------------------------------- */
@media screen and (max-width: 991px) {
  .cover_wrap {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .cover_wrap {
    width: 90%;
    height: 74vh;
  }

  .cover_wrap h1 {
    width: 74%;
    top: calc(60% - 10%);
  }

  .cover_wrap .top_label {
    width: 23%;
    top: 20%;
  }

  .cover_wrap .top_lead {
    width: 18%;
  }

  .cover_inner .top_bottom_p {
    width: 65%;
    bottom: 10%;
  }
}

@media screen and (max-width: 480px) {
  .cover_wrap {
    width: 80%;
    height: 84%;
  }

  .cover_wrap h1 {
    width: 86%;
    top: calc(60% - 5%);
  }

  .cover_wrap .top_label {
    width: 33%;
    top: 5%;
  }

  .cover_wrap .top_lead {
    width: 21%;
    right: 0;
  }

  .cover_wrap .top_bottom_p {
    bottom: 5%;
    width: 80%;
  }
}

@media screen and (max-width: 320px) {
  .cover_wrap {
    width: 80%;
    height: 86%;
  }

  .cover_wrap .top_label {
    width: 33%;
    top: 13%;
  }

  .cover_wrap .top_lead {
    width: 24%;
    right: 0;
  }

  .cover_wrap .top_bottom_p {
    bottom: 8%;
  }
}

/* ---------------------------------------- */
/* ------------ countdown ----------------- */
/* ---------------------------------------- */
.countdown {
  position: relative;
  margin: 150px auto;
  padding-top: 58px;
  width: 100%;
  height: 68px;
  text-align: center;
  color: #fff;
  font-size: 1.562rem;
  z-index: 10;
}

.countdown_inner {
  display: inline-block;
  padding: 0 40px;
  background-color: #e5006e;
  line-height: 68px;
}

.countdown_inner p {
  display: inline-block;
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  .countdown {
    position: relative;
    width: 80%;
    height: auto;
    margin: 10px auto 150px;
    padding-top: 6px;
    font-size: 1.562rem;
  }

  .countdown_inner {
    display: inline-block;
    width: 100%;
    padding: 9px 32px 13px;
    line-height: inherit;
  }

  .countdown_inner p {
    display: block;
    margin-bottom: 4px;
    font-size: 22px;
  }

  #CDT {
    display: inline-block;
  }
}

@media screen and (max-width: 420px) {
  .countdown {
    position: relative;
    padding-top: 8px;
    width: 80%;
  }

  .countdown_inner {
    display: inline-block;
    padding: 10px 20px;
  }

  .countdown_inner p {
    margin-bottom: 0;
  }
}

/* ---------------------------------------- */
/* ------------ banner ------------------- */
/* ---------------------------------------- */
.top_news .top_news_wrap {
  margin-top: 2px;
  padding-left: 120px;
  text-align: left;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .top_news .top_news_wrap {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .top_news .top_news_wrap {
    margin-top: 0;
    padding-left: 0;
    font-size: 0.8125rem;
  }
}

/* section.news_under_banners */
section.news_under_banners {
  padding: 40px 20px;
}

section.news_under_banners ul {
  font-size: 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

section.news_under_banners ul li {
  display: inline-block;
  vertical-align: top;
  width: calc(96%/2);
  margin-right: 4%;
  margin-bottom: 25px;
}

section.news_under_banners ul li img {
  max-width: 100%;
  width: 100%;
}

section.news_under_banners ul li:nth-child(2n) {
  margin-right: 0;
}

/* 580 */
@media (max-width: 580px) {
  section.news_under_banners {
    padding: 20px 20px 0px 20px;
  }
}

/* TOPPAGE article */
artcile.news_add_info {
  margin-bottom: 120px;
  position: relative;
  padding: 0 20px;
  display: block;
  z-index: 9;
}

artcile.news_add_info p.news0713 {
  position: relative;
  z-index: 9;
  max-width: 700px;
  margin: 0 auto;
  background: #fffca6;
  border: 3px solid #d92d67;
  padding: 15px;
}

artcile.news_add_info p.news0713 strong {
  background: linear-gradient(transparent 60%, #ff9999 40%) !important;
}

.price_attention a,
artcile.news_add_info p.news0713 a {
  color: blue;
  text-decoration: underline;
}

.price_attention a:hover,
artcile.news_add_info p.news0713 a:hover {
  color: orange;
  text-decoration: none;
}

/* 580 */
@media (max-width: 580px) {
  artcile.news_add_info p.news0713 {
    font-size: 14px;
  }
}

/* ---------------------------------------- */
/* ------------ concept ------------------- */
/* ---------------------------------------- */
.concept {
  margin: 150px auto 0;
  width: 1200px;

}

.concept_inner {
  position: relative;
  margin-bottom: 0px;
}

.img_xtrem {
  position: absolute;
  top: 4%;
  left: 5%;
  width: 200px;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .concept {
    margin: 30px auto 0;
    width: 100%;
  }

  .img_xtrem {
    width: 150px;
    top: -60px;
  }
}

@media screen and (max-width: 480px) {}

.img_xtrem img {
  width: 100%;
}

.concept_part {
  position: relative;
  width: 100%;
  height: 100%;
}

.concept_part .item_text {
  position: absolute;
  display: inline-block;
  width: 50%;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 5% 0 5%;
  z-index: 5;
}

.concept_part .item_text h3 {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.75rem;
  /* font-weight: bolder */
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 480px) {
  .concept_part .item_text h3 {
    font-size: 1.4rem;
    margin: 13px 0;
  }
}

@media screen and (max-width: 320px) {
  .concept_part .item_text h3 {
    font-size: 1.3rem;
  }
}

.concept_part .item_text .tugaike_reading {
  position: relative;
}

.concept_part .item_text .tugaike_reading::after {
  position: absolute;
  content: "・";
  display: inline-block;
  top: -20px;
  left: 0;
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  .concept_part .item_text .tugaike_reading::after {
    top: -14px;
  }
}

.concept_part .item_text p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.0625rem;
}

@media screen and (max-width: 480px) {
  .concept_part .item_text p {
    font-size: 1rem;
  }
}

.concept_part .item_text span.concept_summary {
  line-height: 1.6;
  font-size: 1.25rem;
  /* font-weight: bolder */
  color: #e5006e;
}

@media screen and (max-width: 480px) {
  .concept_part .item_text span.concept_summary {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 1.1rem;
  }
}

.concept_part .item_img {
  float: right;
  width: 50%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.concept_part .item_img .img_area {
  height: 100%;
  background-size: cover;
  position: relative;
}

.concept_part .item_img .img_area img {
  width: 100%;
  height: auto;
  /* object-fit: contain */
  /* object-fit: cover */
  /* font-family: 'object-fit: cover;' */
}

.concept_part .item_img::before {
  content: '';
  position: absolute;
  display: block;
  top: -120px;
  right: 0;
  width: 50%;
  height: 120px;
  background: white;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 2;
}

.concept_part .item_img::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -120px;
  right: 0;
  width: 50%;
  height: 22%;
  background: white;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: 0;
}

@media screen and (max-width: 480px) {
  .concept_part .item_img::after {
    height: 25%;
  }
}

@media screen and (max-width: 786px) {
  .concept_part.concept_3.concept_3_2 .item_text {
    margin-top: 40px;
  }
}

.concept_part.concept_3.concept_3_2 .item_text {
  left: 50%;
  margin-top: 4%;
  padding: 0 5% 0 5%;
}

.concept_part.concept_3.concept_3_3 .item_text {
  margin-top: 50px;
}

.concept_part.concept_3.concept_3_2 .item_img {
  position: inherit;
  float: left;
}

.concept_part.concept_3.concept_3_2 .item_img::before {
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: 2;
}

.concept_part.concept_3.concept_3_2 .item_img::after {
  /* bottom: 3%;
  left: 0; */
  width: 100%;
  /* height: 25%; */
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 2;
}

.concept_3_2,
.concept_3_3 {
  margin-top: -15%;
}

/* 480px以下 --------------------------------------------------- */
@media screen and (max-width: 480px) {
  .concept {
    margin-top: 50px;
  }

  .concept_3_2,
  .concept_3_3 {
    margin-top: 0;
  }

  .concept_part {
    height: auto;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-flex-direction: column-reverse */
    /* flex-direction: column-reverse */
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .concept_part .item_text {
    position: inherit;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0 5% 0 5%;
    margin-bottom: 24px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .concept_part .item_img {
    position: inherit;
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
  }

  .concept_part .item_img::before {
    /* content: none */
    width: 100%;
  }

  .concept_part .item_img::after {
    /* content: none */
    width: 100%;
    bottom: -24.5%;
  }

  .concept_part .img_area {
    height: auto !important;
  }

  .concept_part .img_area img {
    width: 100% !important;
    height: auto;
  }

  .concept_part.concept_3.concept_3_2 .item_text {
    left: 0;
  }

  .concept_part.concept_3.concept_3_2 .item_img {
    float: none;
  }
}

/* ---------------------------------------- */
/* ------------ activity ------------------ */
/* ---------------------------------------- */
.activity {
  position: relative;
  transform: translateY(-120px);
}

.activity:after {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  /* こども / ボール */
  /* background-image: url("https:/*d18iejsgoqvrsa.cloudfront.net/img/activity_bg_img2.png"), url("https:/*d18iejsgoqvrsa.cloudfront.net/img/activity_bg_img3.png") */
  /* background-repeat: no-repeat, no-repeat, no-repeat */
  /* background-position: 124% 100%, 95% 100% */
  /* background-size: 42% auto, 400px auto */
  /* */
  /* @media screen and (max-width: 1780px) */
  /*   background-position: 100% 100%, 95% 100% */
  /*   background-size: 31% auto, 400px auto */
  /* @media screen and (max-width: 1480px) */
  /*   background-position: 100% 100%, 95% 100% */
  /*   background-size: 29% auto, 400px auto */
  /* @media screen and (max-width: 1200px) */
  /*   background-position: 100% 101%, 92% 96% */
  /*   background-size: 35% auto, 226px auto */
  /* @media screen and (max-width: 1020px) */
  /*   background-position: 100% 101%, 92% 96% */
  /*   background-size: 40% auto, 226px auto */
  /* @media screen and (max-width: 768px) */
  /*   background-position: 100% 101%, 92% 96% */
  /*   background-size: 293px auto, 226px auto */
  /* @media screen and (max-width: 480px) */
  /*   background-position: 133% 100%, 95% 100% */
  /*   background-size: 260px auto, 200px auto */
}

/* ttl_bg_ボール画像 / コンテンツpadding-bottom */
.activity_inner {
  background-image: url(img/activity_bg_img1.png);
  background-repeat: no-repeat;
  background-position: -25% 0%;
  background-size: 35% auto;
}

@media screen and (max-width: 768px) {
  .activity_inner {
    background-position: -35% 3%;
    background-size: 50% auto;
  }

  .activity {
    transform: unset;
  }
}

.activity_inner h2 {
  position: relative;
  z-index: 10;
  margin-bottom: -5%;
  line-height: 1.1;
  padding-top: 50px;
  text-align: left;
  font-size: 7.5rem;
  text-align: left;
  color: #e5006e;
  /* @media screen and (max-width: 1280px) */
  /*   margin-bottom: -40px */
}

@media screen and (max-width: 980px) {
  .activity_inner h2 {
    margin-bottom: -3%;
  }
}

@media screen and (max-width: 650px) {
  .activity_inner h2 {
    font-size: 14vw;
  }
}

@media screen and (max-width: 480px) {
  .activity_inner h2 {
    margin-bottom: 0;
    font-size: 16vw;
    padding-top: 80px;
  }
}

.activity_inner h2 span {
  display: inline-block;
  margin-left: -20px;
  color: #1c1c1c;
  font-size: 1.45rem;
  /* @media screen and (max-width: 768px) */
  /*   font-size: 1.45rem */
}

@media screen and (max-width: 480px) {
  .activity_inner h2 span {
    margin-left: -2%;
    font-size: 3.5vw;
  }
}

.activity_area {
  /* display: flex */
  /* flex-shrink: 3 */
  position: relative;
  width: 1200px;
  margin: 0 auto 80px;
  text-align: left;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  .activity_area {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 50px;
  }
}

/* アクティビティーhover設定 */
a.activity_modal {
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

a.activity_modal:hover {
  -webkit-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  transition: 0.5s linear;
}

.activity_read_more {
  position: relative;
  display: inline-block;
  color: #ccc;
  margin-top: 14px;
}

.activity_read_more:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 2px;
  right: -30px;
  bottom: 0;
  background-color: #ccc;
}

.activity_read_more:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 2px;
  right: -30px;
  bottom: 3px;
  background-color: #ccc;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.activity_modal img {
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

.activity_modal:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.activity_modal:hover .activity_read_more {
  color: #e5006e;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.activity_modal:hover .activity_read_more::before,
.activity_modal:hover .activity_read_more::after {
  background-color: #e5006e;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.activity_part {
  float: left;
  width: calc(100% / 3);
  overflow: hidden;
  box-sizing: border-box;
}

.activity_part.--half {
  width: calc(100% / 2);
}

@media only screen and (max-width: 768px) {
  .activity_part.--half {
    width: 100%;
  }
}

.activity_part img {
  width: 100%;
  height: auto;
}

.activity_part .activity_text {
  position: relative;
  padding: 0px 30px 0 20px;
  z-index: 2;
}

.activity_part .activity_text::before {
  content: "";
  position: absolute;
  top: -470px;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: white;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: -1;
}

.activity_part.activity_cd1 .activity_text::before {
  top: -465px;
}

.activity_part.activity_cd1 .activity_text::after {
  top: -22px;
}

.activity_part.activity_cd3 .activity_text::before {
  top: -475px;
}

.activity_part.activity_cd3 .activity_text::after {
  top: -33px;
}

@media screen and (max-width: 768px) {
  .activity_part.activity_cb3,
  .activity_part.activity_cd3,
  .activity_part.activity_ce2 {
    padding-top: 30px;
  }
}

.activity_part.activity_ce1 {
  padding-top: 90px;
}

@media screen and (max-width: 768px) {
  .activity_part.activity_ce1 {
    padding-top: 30px;
  }
}

.activity_part.activity_ce1 .activity_text::before {
  top: -457px;
}

.activity_part.activity_ce1 .activity_text::after {
  top: -17px;
}

.activity_part.activity_ce2 .activity_text::before {
  top: -475px;
}

.activity_part.activity_ce2 .activity_text::after {
  top: -34px;
}

@media screen and (max-width: 768px) {
  .activity_part .activity_text::before {
    content: none;
  }
}

.activity_part .activity_text::after {
  content: "";
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: 18rem;
  background-color: #fff;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .activity_part .activity_text::after {
    content: none;
  }
}

.activity_part .activity_text .label {
  position: absolute;
  top: calc(-4.5rem - 20px);
  right: 15px;
}

.activity_part.activity_cd1 .activity_text .label,
.activity_part.activity_cd3 .activity_text .label {
  top: calc(-6.5rem - 20px);
}

@media screen and (max-width: 768px) {
  .activity_part.activity_cd1 .activity_text .label,
  .activity_part.activity_cd3 .activity_text .label {
    top: calc(-4.5rem - 20px);
  }
}

.activity_part .activity_text .label_inner {
  position: relative;
  display: table;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #e5006e;
}

.activity_part .activity_text .label_inner::after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  border: 1px solid #fff;
}

.activity_part .activity_text .label_inner span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: normal;
}

.activity_part h3 {
  margin: 16px 0;
  font-size: 2rem;
}

@media screen and (max-width: 1240px) {
  .activity_part h3 {
    font-size: 1.7rem;
  }
}

.activity_part p {
  /* font-size: 1.0625rem */
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 1240px) {
  .activity_part p {
    font-size: 0.95rem;
  }
}

.activity_1 h3 {
  color: #f2a931;
}

.activity_2 h3 {
  color: #4db04d;
}

.activity_3 h3 {
  color: #ea338b;
}

.activity_4 h3 {
  color: #2daedf;
}


.activity_cb1 h3 {
  color: #4eb14f;
}

.activity_cb2 h3 {
  color: #ffc000;
}

.activity_cb3 h3 {
  color: #ff3344;
}

.activity_cd1 h3 {
  color: #c65911;
}

.activity_cd2 h3 {
  color: #ea348b;
}

.activity_cd3 h3 {
  color: #39afdf;
}

.activity_ce1 h3 {
  color: #7bce0d;
}

.activity_ce2 h3 {
  color: #608dee;
}

.activity_ce3 h3 {
  color: #ff6611;
}

.activity_3 .activity_text .label_inner span {
  font-size: 0.75rem;
}

/*768px以下 ------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .activity_area {
    margin-bottom: 0;
  }

  .activity_part {
    width: 50%;
    height: 740px;
  }

  .activity_part:nth-of-type(1),
  .activity_part:nth-of-type(2) {
    height: 760px;
  }
}

@media screen and (max-width: 720px) {
  .activity_area {
    margin-bottom: 20px;
  }

  .activity_part {
    height: 660px;
  }

  .activity_part:nth-of-type(1),
  .activity_part:nth-of-type(2) {
    height: 710px;
  }
}

@media screen and (max-width: 640px) {
  .activity_area {
    margin-bottom: 0px;
  }

  .activity_part {
    height: 620px;
  }
}

@media screen and (max-width: 480px) {
  .activity_part {
    width: 100%;
    height: auto;
    /* margin-bottom: 30px; */
  }

  .activity_part:nth-of-type(1),
  .activity_part:nth-of-type(2) {
    height: auto;
    /* margin-bottom: 10px; */
  }

  .activity_part .activity_text .label {
    top: calc(-5rem - 18px);
    right: 5%;
  }

  .activity_part .activity_text {
    padding: 0 5%;
  }
}

@media screen and (max-width: 320px) {
  .activity_part p {
    font-size: 1rem;
  }
}

/* ------------ video --------------------- */
.video_area {
  width: 100%;
  text-align: center;
}

.video_part {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .video_part {
    /* width: 90% */
  }
}

@media screen and (max-width: 480px) {
  .video_area {
    padding: 0 5%;
  }

  .video_part {
    width: 100%;
  }
}

/* ------------ map ----------------------- */
.map_area {
  text-align: center;
  margin: 0 0 80px;
  padding: 120px 0 170px;
}

@media screen and (max-width: 768px) {
  .map_area {
    margin: 0 0 38px;
    padding: 100px 0 130px;
  }
}

@media screen and (max-width: 480px) {
  .map_area {
    margin: 0 0 28px;
    padding: 80px 0 100px;
  }
}

.map_area a.botton {
  display: inline-block;
  width: 320px;
  height: 60px;
  line-height: 60px;
  background-color: #e5006e;
  color: #fff;
  font-size: 1.1rem;
  /* &::before */
  /*   content: "" */
  /*   position: relative */
  /*   display: inline-block */
  /*   top: 5px */
  /*   left: -20px */
  /*   width: 91px */
  /*   height: 41px */
  /*   background: url( https:/*d18iejsgoqvrsa.cloudfront.net/img/map_icon@2x.png) no-repeat top left */
  /*   background-size: 100% */
}

/*480px以下 ------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .map_area a {
    width: 90%;
    height: 76px;
    line-height: 76px;
  }

  .map_area a::before {
    width: 91px;
    height: 41px;
    top: 10px;
    left: -24px;
  }
}

/* ---------------------------------------- */
/* ------------ price --------------------- */
/* ---------------------------------------- */
.price {
  position: relative;
  /* overflow: hidden */
  width: 100%;
  padding: 80px 0;
}

.price:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 200px);
  background: #f2f0f1;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -1;
}

.price_inner {
  margin: 0 auto 100px;
  padding: 76px 5% 80px;
  text-align: left;
  background-color: #fff;
}

/* テーブル */
.price_list_part .wrap {
  display: flex;
  justify-content: space-between;
}

.price_list_part .table {
  width: 45%;
  text-align: center;
  font-weight: normal;
}

.price_list_part .three .table {
  width: 27%;
  margin-top: 60px;
}

.price_list_part .table dl {
  display: flex;
  line-height: 35px;
}

.price_list_part .table .wid20 {
  width: 20%;
}

.price_list_part .table .wid40 {
  width: 40%;
}

.price_list_part .table .wid33 {
  width: calc(100% / 3);
}

.price_list_part .table .wid66 {
  width: calc(100% / 3 * 2);
}

.price_list_part .table dl dt {
  border-right: 2px solid #000;
  position: relative;
}

.price_list_part .table dl dd {
  border-right: 2px solid #000;
}

.price_list_part .table .back-color dt:last-child {
  border-right: unset;
}

.price_list_part .table dl .box:last-child dd {
  border-right: unset;
}

.price_list_part .table dl .dot {
  border-bottom: 2px dotted #000;
}

.price_list_part .table dl.line {
  border-top: 2px solid #000;
}

.price_list_part .table .cell2 {
  padding-top: 20px;
}

.price_list_part .table .box dd {
  text-align: right;
  padding-right: 3px;
}

.price_list_part .tobidas .back-color {
  background-color: #4eb14f;
  color: #fff;
}

.price_list_part .humidas .back-color {
  background-color: #ea348b;
  color: #fff;
}

.price_list_part .kabedas .back-color {
  background-color: #c65911;
  color: #fff;
}

.price_list_part .kogidas .back-color {
  background-color: #ffc000;
  color: #fff;
}

.price_list_part .potyadas .back-color {
  background-color: #39afdf;
  color: #fff;
}

.price_list_part .amidas .back-color {
  background-color: #ff3344;
  color: #fff;
}

.price_list_part .tentsauna .back-color {
  background-color: #ff6611;
  color: #fff;
}

.price_list_part .cyclepark .back-color {
  background-color: #e45b27;
  color: #fff;
}

.price_list_part .cyclepark.table dt p {
  width: 300px;
}

.price_list_part .buggy .back-color {
  background-color: #7bce0d;
  color: #fff;
}

.price_list_part .buggy.table dt p {
  width: 300px;
}

.price_list_part .trampoline .back-color {
  background-color: #608dee;
  color: #fff;
}

.price_list_part .table dt p {
  position: absolute;
  left: 10px;
  top: -45px;
  color: #000;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 250px;
  text-align: left;
  transform: rotate(-15deg);
}

.price_list_part .table p.note {
  font-size: 14px;
  text-align: left;
  margin: 5px 0;
}

.price_list_part p.note2 {
  font-weight: normal;
  color: #f00;
  font-size: 18px;
}

@media screen and (max-width: 841px) {
  .price_wrap {
    margin: 0 20px;
  }

  .price_inner.container {
    width: 100%;
  }

  .price_inner {
    padding: 50px 20px;
    margin-bottom: 50px;
  }

  .price_list_part .wrap {
    display: block;
  }

  .price_list_part .table {
    width: 100%;
    margin-bottom: 50px;
  }

  .price_list_part .three .table {
    width: 60%;
  }

  .price_list_part .table .box dd {
    font-size: 12px;
  }

  .price_list_part .table .box dl {
    line-height: 30px;
  }

  .price_list_part .table dt p {
    left: 0;
    top: -45px;
    font-size: 26px;
    letter-spacing: unset;
  }

  .price_list_part .table p.note {
    font-size: 12px;
  }

  .price_list_part p.note2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .price_list_part .three .table {
    width: 100%;
  }
}

/* price 定義リスト テスト ----------------- */
.price_list_part {
  margin-bottom: 20px;
}

.price_list {
  width: 100%;
  position: relative;
}

.price_list:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  left: 0;
  top: calc(70px + 1px);
  background-color: #fff;
  z-index: 2;
}

.price_list:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 2px;
  background-color: #fff;
  z-index: 2;
}

.price_list dt {
  float: left;
  width: 6rem;
  font-size: 1.125rem;
  text-align: left;
  border-bottom: 1px solid #333;
}

.price_list dd {
  float: left;
  width: calc((100% - 6rem) / 4);
  font-size: 1.125rem;
  border-bottom: 1px solid #333;
}

.price_list .actibity_category {
  position: relative;
  border-bottom: 1px solid #333;
  color: #fff;
  font-weight: normal;
}

.price_list .actibity_category dt {
  height: 70px;
}

.price_list .actibity_category dd {
  height: 70px;
  padding-top: 10px;
  text-align: center;
}

.price_list .actibity_category dd:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.price_list .actibity_category .category_1 {
  background-color: #f2a931;
}

.price_list .actibity_category .category_2 {
  background-color: #4db04d;
}

.price_list .actibity_category .category_3 {
  background-color: #2daedf;
}

.price_list .actibity_category .category_4 {
  background-color: #ccc;
}

.price_list .actibity_category .category_5 {
  background-color: #ea338b;
}

.price_list .actibity_category .category_6 {
  background-color: #dfea33;
}

/* .price_list .actibity_category .category_3::after {
  content: "(夏期のみ)";
  font-size: 0.8rem; } */
.price_list .actibity_category .num {
  display: block;
  margin-bottom: 4px;
}

.price_list .actibity_category .name {
  display: block;
}

.price_list .price_type:first-of-type {
  border-top: 1px solid #333;
}

.price_list .price_type:last-of-type {
  border-bottom: 1px solid #333;
}

.price_list .price_type dt {
  padding: 14px 5px;
  border-right: 1px solid #333;
}

.price_list .price_type dd {
  padding: 14px;
  text-align: right;
}

.price_list .price_type dd:not(:last-of-type) {
  border-right: 1px solid #333;
}

@media screen and (max-width: 1200px) {

  .price_list dt,
  .price_list dd {
    font-size: 1rem;
  }
}

@media screen and (max-width: 610px) {
  .price_list dt {
    width: 3rem;
    padding: 0;
    height: 4rem;
  }

  .price_list dd {
    width: calc((100% - 3rem) / 4);
    height: 4rem;
  }

  .price_list dt,
  .price_list dd {
    font-size: 1rem;
  }

  .price_list .price_type dd {
    padding: 20px 8px;
  }
}

@media screen and (max-width: 520px) {
  .price_list:before {
    top: calc(190px + 1px);
  }

  .price_list .actibity_category dd,
  .price_list .actibity_category dt {
    padding-top: 1rem;
    height: 190px;
  }

  .price_list .actibity_category .name {
    display: inline-block;
    vertical-align: top;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-top: 0.5rem;
  }

  .price_list .actibity_category .category_3::after {
    position: relative;
    top: 3px;
    left: 42%;
    vertical-align: top;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
  }

  .price_list dt {
    width: 2rem;
    padding: 0;
    height: 5.5rem;
  }

  .price_list dd {
    width: calc((100% - 2rem) / 4);
    height: 5.5rem;
  }

  .price_list .price_type dd {
    padding: 30px 3px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .price_list:before {
    top: calc(180px + 1px);
  }

  .price_list .actibity_category dd,
  .price_list .actibity_category dt {
    height: 180px;
  }
}

@media screen and (max-width: 320px) {
  .price_list {
    width: 106%;
    margin-left: -3%;
  }

  .price_list dt,
  .price_list dd {
    font-size: 0.9rem;
  }
}

/* price 注意書き ----------------- */
.price_attention {
  text-align: left;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 40px;
}

.price_attention li {
  margin-bottom: 8px;
  margin-left: 1rem;
  line-height: 1.4;
}

.price_attention li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: -0.15rem;
  left: -0.5rem;
  width: 3px;
  height: 3px;
  /* margin: 0.3rem 0.5rem 0 -10px */
  vertical-align: middle;
  border-radius: 50%;
  background-color: #1c1c1c;
}

@media screen and (max-width: 768px) {
  .price_attention {
    text-align: left;
  }
}

/* price セット料金 ----------------- */
.prise_bottom_part {
  font-size: 1rem;
}

.prise_bottom_part dl {
  border-top: 2px solid #1c1c1c;
  border-bottom: 2px solid #1c1c1c;
}

.prise_bottom_part .div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.prise_bottom_part .div:not(:last-of-type) {
  border-bottom: 1px solid #1c1c1c;
}

.prise_bottom_part .div dt,
.prise_bottom_part .div dd {
  padding: 5px 0;
}

.prise_bottom_part .div dt {
  /* float: left */
  width: 9rem;
  line-height: 1.8;
  position: relative;
}

.prise_bottom_part .div dt::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 0;
  width: 1px;
  height: calc(100% - 10px);
  background-color: #1c1c1c;
}

.prise_bottom_part .div dd {
  width: calc(100% - 9rem);
  line-height: 1.8;
  margin-left: 10px;
}

.prise_bottom_part .div dd p {
  margin-left: 1rem;
  font-size: 1rem;
}

.prise_bottom_part .div dd p::before {
  content: "";
  position: relative;
  display: inline-block;
  top: -0.15rem;
  left: -0.5rem;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #1c1c1c;
}

.prise_bottom_part .div dd .consentForm {
  display: flex;
  width: 100%;
}

.prise_bottom_part .div dd .consentForm a {
  display: inline-block;
  margin: 6px 0;
  padding: 4px 12px;
  background-color: #e5006e;
}

.prise_bottom_part .div dd .consentForm a:link,
.prise_bottom_part .div dd .consentForm a:visited,
.prise_bottom_part .div dd .consentForm a:hover,
.prise_bottom_part .div dd .consentForm a:active {
  color: #fff;
}

.prise_bottom_part .div dd .consentForm::before {
  content: none;
}

.setmenu img {
  height: 80px;
  width: auto;
  margin: 9px 18px 4px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 3px solid rgba(0, 0, 0, 0.25);
}

.setmenu img:first-of-type {
  margin-left: 7px;
}

.setmenu .link_tel {
  pointer-events: none;
}

@media screen and (max-width: 480px) {
  .prise_bottom_part {
    font-size: 1rem !important;
  }

  .prise_bottom_part .div {
    display: block;
    padding: 10px 0;
  }

  .prise_bottom_part .div dt {
    width: 100%;
    padding: 5px 0 0;
  }

  .prise_bottom_part .div dt::after {
    content: none;
  }

  .prise_bottom_part .div dd {
    width: 100%;
    margin-left: 0;
  }

  .prise_bottom_part .div dd p {
    font-size: 1rem;
  }

  .setmenu img {
    height: 74px;
    width: auto;
    margin: 6px 8px 0 0;
  }

  .setmenu img:first-of-type {
    margin-left: 4px;
  }

  .setmenu .link_tel {
    pointer-events: auto;
  }
}

.price_list_part {
  margin-bottom: 20px;
}

.price_list {
  width: 100%;
  position: relative;
}

.price_list:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  left: 0;
  top: calc(70px + 1px);
  background-color: #fff;
  z-index: 2;
}

.price_list:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 2px;
  background-color: #fff;
  z-index: 2;
}

.price_list dt {
  float: left;
  width: 6rem;
  font-size: 1.125rem;
  text-align: left;
  height: 60px;
  border-bottom: 1px solid #333;
}

.price_list dd {
  float: left;
  width: calc((100% - 6rem) / 4);
  font-size: 1.125rem;
  height: 60px;
  border-bottom: 1px solid #333;
}

.price_list dd small {
  font-size: 14px;
}

.price_list .actibity_category {
  position: relative;
  border-bottom: 1px solid #333;
  color: #fff;
  font-weight: normal;
}

.price_list .actibity_category dt {
  height: 70px;
}

.price_list .actibity_category dd {
  height: 70px;
  padding-top: 10px;
  text-align: center;
}

.price_list .actibity_category dd:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.price_list .actibity_category .category_1 {
  background-color: #f2a931;
}

.price_list .actibity_category .category_2 {
  background-color: #4db04d;
}

.price_list .actibity_category .category_3 {
  background-color: #2daedf;
}

.price_list .actibity_category .category_4 {
  background-color: #ccc;
}

.price_list .actibity_category .category_5 {
  background-color: #ea338b;
}

.price_list .actibity_category .category_6 {
  background-color: #dfea33;
}

/* .price_list .actibity_category .category_3::after {
        content: "(夏期のみ)";
        font-size: 0.8rem; } */
.price_list .actibity_category .num {
  display: block;
  margin-bottom: 4px;
}

.price_list .actibity_category .name {
  display: block;
}

.price_list .price_type:first-of-type {
  border-top: 1px solid #333;
}

.price_list .price_type:last-of-type {
  border-bottom: 1px solid #333;
}

.price_list .price_type dt {
  padding: 14px 5px;
  border-right: 1px solid #333;
}

.price_list .price_type dd {
  padding: 14px;
  text-align: right;
}

.price_list .price_type dd:not(:last-of-type) {
  border-right: 1px solid #333;
}

@media screen and (max-width: 1200px) {

  .price_list dt,
  .price_list dd {
    font-size: 1rem;
  }
}

@media screen and (max-width: 610px) {
  .price_list dt {
    width: 3rem;
    padding: 0;
    height: 4rem;
  }

  .price_list dd {
    width: calc((100% - 3rem) / 4);
    height: 4rem;
  }

  .price_list dt,
  .price_list dd {
    font-size: 1rem;
  }

  .price_list .price_type dd {
    padding: 20px 8px;
  }
}

@media screen and (max-width: 520px) {
  .price_list:before {
    top: calc(190px + 1px);
  }

  .price_list .actibity_category dd,
  .price_list .actibity_category dt {
    padding-top: 1rem;
    height: 190px;
  }

  .price_list .actibity_category .name {
    display: inline-block;
    vertical-align: top;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-top: 0.5rem;
  }

  .price_list .actibity_category .category_3::after {
    position: relative;
    top: 3px;
    left: 42%;
    vertical-align: top;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
  }

  .price_list dt {
    width: 2rem;
    padding: 0;
    height: 5.5rem;
  }

  .price_list dd {
    width: calc((100% - 2rem) / 4);
    height: 5.5rem;
  }

  .price_list .price_type dd {
    padding: 30px 3px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .price_list:before {
    top: calc(180px + 1px);
  }

  .price_list .actibity_category dd,
  .price_list .actibity_category dt {
    height: 180px;
  }
}

@media screen and (max-width: 320px) {
  .price_list {
    width: 106%;
    margin-left: -3%;
  }

  .price_list dt,
  .price_list dd {
    font-size: 0.9rem;
  }
}


/* pricelist new */
.price_list_new {
  width: 100%;
  position: relative;
}

.price_list_new .actibity_category {
  position: relative;
  border-bottom: 1px solid #333;
  color: #000;
}

.price_list_new dt {
  float: left;
  width: 5%;
  font-size: 16px;
  text-align: left;
  border-bottom: 1px solid #333;
}

.price_list_new dd {
  float: left;
  width: calc((100% - 5%) / 4);
  font-size: 16px;
  height: 80px;
  border-bottom: 1px solid #333;
}

.price_list_new .actibity_category dd {
  height: 100px;
  text-align: center;
}



/* ---------------------------------------- */
/* ------------ open ---------------------- */
/* ---------------------------------------- */
.open {
  position: relative;
  margin: -100px 0 0 0;
  text-align: center;
  /* ↓上部の背景傾斜 */
  /* ↓背景画像配置用 */
}

.open::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2f0f1;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -1;
}

.open::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: -20px;
  /* ダイブマン、サークル */
  background: url(img/open_bg_img.png), url(img/open_bg_circle.png);
  background-repeat: no-repeat, no-repeat;
  /* background-position: 0px -120px , -30px -100px */
  background-position: 0px -35px, -30px -100px;
  /* background-size: 45% auto , 30% auto */
  background-size: 42% auto, 30% auto;
  z-index: -2;
}

@media only screen and (max-width: 1480px) {
  .open::after {
    /* background-position: 60px -68px , -20px -50px */
    background-position: -40px -40px, -20px -80px;
    /* background-size: 580px auto , 400px */
    background-size: 525px auto, 400px;
  }
}

@media only screen and (max-width: 768px) {
  .open::after {
    /* background-position: -20px -75px , -60px -80px */
    background-position: -20px -20px, -60px -80px;
    /* background-size: 500px auto , 320px auto */
    background-size: 440px auto, 320px auto;
  }
}

@media only screen and (max-width: 480px) {
  .open::after {
    /* background-position: -20px -26px , -40px -60px */
    background-position: -20px -0px, -30px 0px;
    background-size: 200px auto, 158px auto;
  }
}

.open_inner {
  margin: 0 auto;
  padding: 15% 0 2%;
}

.open_time span {
  display: block;
}

.open_time span:nth-of-type(1) {
  margin-bottom: 10px;
  font-size: 2.4rem;
  color: #e5006e;
}

.open_time span:nth-of-type(2) {
  margin-bottom: 45px;
  font-size: 1.0625rem;
  color: #e5006e;
}

.open_time span:nth-of-type(3) {
  margin-bottom: 40px;
  line-height: 1.4;
  font-size: 1.375rem;
}

.open_time span:nth-of-type(4) {
  line-height: 1.8;
  font-size: 1.0625rem;
  padding-bottom: 95px;
}

@media only screen and (max-width: 768px) {
  .open_inner {
    padding: 33% 10px 11%;
  }

  .open_time span:nth-of-type(2) {
    margin-bottom: 30px;
  }

  .open_time span:nth-of-type(3) {
    margin-bottom: 25px;
  }

  .open_time span:nth-of-type(4) {
    line-height: 1.8;
    padding-bottom: 95px;
  }
}


/* ---------------------------------------- */
/* ------------ access -------------------- */
/* ---------------------------------------- */
.access {
  position: relative;
  pointer-events: none;
}

.access:before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 60%;
  background: #e5006e;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: -4;
  pointer-events: none;
}

.access_wrap {
  position: relative;
  z-index: 0;
  /* padding-top: 200px */
}

.access_wrap_top {
  z-index: 2;
}

.access_inner {
  /* padding-top: 200px */
}

/* ---------------------------------------- */
.access_wrap_top {
  position: relative;
  margin-top: 0px;
  padding: 180px 0 240px;
}

@media only screen and (max-width: 1020px) {
  .access_wrap_top {
    padding: 120px 0 170px;
  }
}

@media only screen and (max-width: 768px) {
  .access_wrap_top {
    padding: 90px 0 170px;
  }
}

@media only screen and (max-width: 480px) {
  .access_wrap_top {
    padding: 20px 0 100px;
  }
}

/* VACANCY - 本日の空き状況 */
.vacancy {
  position: relative;
  width: 100%;
  padding: 20px 0 160px 0;
  margin-top: 180px;
}

.vacancy .box {
  width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .vacancy {
    margin-top: 100px;
  }

  .vacancy .box {
    width: 100%;
  }
}

.vacancy p.txt {
  font-weight: normal;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
}

.vacancy:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2f0f1;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -1;
}

.vacancy h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.vacancy .table {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  align-items: flex-end;
}

.vacancy .table .col {
  width: 20%;
  box-sizing: border-box;
}

.vacancy .table .time {
  width: 20%;
}

.vacancy .table ul {
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}

.vacancy .table ul li {
  padding: 20px 0;
  border-bottom: 1px solid #333;
  background-color: #fff;
}

.vacancy .table .potyadas ul {
  border-right: 1px solid #333;
}

.vacancy .table .time li {
  padding: 20px 78px;
  white-space: nowrap;
}

.vacancy .last-update {
  text-align: right;
  margin-bottom: 30px;
  font-size: 16px;
}

.vacancy .note {
  width: 50%;
  margin: 50px 0 0 auto;
}

.vacancy .note h4 {
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 10px;
}

.vacancy .note p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .vacancy h3 {
    font-size: 11px;
  }

  .vacancy .table .time li {
    padding: 20.5px 2px;
    font-size: 12px;
    border-right: 1px solid #333;
  }

  .vacancy .table ul li {
    font-size: 13px;
  }

  .vacancy .table .time {
    width: auto;
  }

  .vacancy .note {
    width: 100%;
  }

  .vacancy .note h4 {
    text-align: center;
    font-size: 16px;
  }

  .vacancy .note p {
    font-size: 12px;
  }

  .vacancy .last-update {
    font-size: 12px;
  }
}

/* ゴンドラ */
.access_wrap_top>.gondora {
  position: absolute;
  top: 310px;
  right: 100px;
}

@media only screen and (max-width: 1020px) {
  .access_wrap_top>.gondora {
    top: 194px;
    right: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .access_wrap_top>.gondora {
    top: 169px;
    right: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .access_wrap_top>.gondora {
    top: 86px;
    right: 1px;
  }
}

.access_wrap_top>.gondora img {
  width: 350px;
}

@media only screen and (max-width: 1020px) {
  .access_wrap_top>.gondora img {
    width: 350px;
  }
}

@media only screen and (max-width: 768px) {
  .access_wrap_top>.gondora img {
    width: 330px;
  }
}

@media only screen and (max-width: 480px) {
  .access_wrap_top>.gondora img {
    width: 190px;
  }
}

/* コンテンツ上部の傾斜:pink */
/* .access_wrap_top:before */
/*   content: '' */
/*   position: absolute */
/*   top: -100px */
/*   left: 0 */
/*   width: 100% */
/*   height: 60% */
/*   background: $base_color */
/*   /* -webkit-transform-origin: left center */
/*   /* -ms-transform-origin: left center */
/*   /* transform-origin: left center */
/*   /* -webkit-transform: rotate(3deg) */
/*   /* -ms-transform: rotate(3deg) */
/*   /* transform: rotate(3deg) */
/*   -webkit-transform: skewY(-8deg) */
/*   transform: skewY(-8deg) */
/*   transform-origin: bottom right */
/*   z-index: -4 */
/*   pointer-events: none */
/* コンテンツ背景の傾斜:白 */
.access_wrap:before {
  position: absolute;
  content: '';
  display: block;
  /* top: 350px */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -3;
  pointer-events: none;
}

/* コンテンツ下部の傾斜: pink */
/* 背景画像の指定 --------------------- */
.access_inner {
  position: relative;
  padding-top: 70px;
  padding-bottom: 10px;
  z-index: -1;
  /* 自転車 / ボール と コンテンツpadding-bottom */
  background-image: url(img/access_bg_img.png), url(img/access_bg_circle.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 100% -1%, 110% 110%;
  background-size: 229px auto, 30% auto;
}

@media only screen and (max-width: 1120px) {
  .access_inner {
    background-position: 100% -1%, 110% 100%;
    background-size: 250px auto, 30% auto;
  }
}

@media only screen and (max-width: 768px) {
  .access_inner {
    padding-top: 90px;
    padding-bottom: 40px;
    background-position: 100% 0%, 120% 105%;
    background-size: 160px auto, 40% auto;
  }
}

@media only screen and (max-width: 480px) {
  .access_inner {
    padding-top: 80px;
    padding-bottom: 10px;
    background-position: 105% -1%, 124% 103%;
    background-size: 27% auto, 48% auto;
  }
}

.access_wrap_top h2 {
  margin-bottom: 0;
  color: #fff;
}

/* access コンテンツ中身 ---------------------------------------- */
.access_part {
  margin-bottom: 86px;
  font-size: 1rem;
}

.access_part h3 {
  font-size: 1.625rem;
  margin-bottom: 40px;
}

.access_part p {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .access_part h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/* 各アクセス ----------------- */
.access_item_dl dl .item_part {
  margin-bottom: 40px;
}

.access_item_dl dl dt {
  float: left;
  width: 56px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: relative;
  border: 1px solid #000;
  background-color: #fff;
}

.access_item_dl dl dt::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -13px;
  top: 0;
  border-left: 12px solid #000;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  /* for Edge  ---------------- */
}

@supports (-ms-ime-align: auto) {
  .access_item_dl dl dt::before {
    right: -12px;
    top: -1px;
    border-left: 12px solid #000;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
  }
}

.access_item_dl dl dt::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -12px;
  top: 0;
  border-left: 12px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  /* for Edge  ---------------- */
}

@supports (-ms-ime-align: auto) {
  .access_item_dl dl dt::after {
    right: -11px;
    top: -1px;
    border-left: 12px solid #fff;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
  }
}

.access_item_dl dl dd {
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 88px;
}

.access_item_dl dl span.access_dd {
  background-color: #fff;
  padding: 1px 2px 0 0;
}

.span_station {
  color: #e5006e;
}

.busTime {
  pointer-events: auto !important;
}

.busTime a {
  display: inline-block;
  font-size: 1rem;
  text-decoration: underline;
  /* color: #ccc */
  font-weight: normal;
  pointer-events: auto !important;
}

_:-ms-lang(x)::-ms-backdrop,
.access_item_dl dl dt::before {
  right: -12px;
  top: -1px;
  border-left: 12px solid #000;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
}

_:-ms-lang(x)::-ms-backdrop,
.access_item_dl dl dt::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -11px;
  top: -1px;
  border-left: 12px solid #fff;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
}

@media screen and (max-width: 767px) {
  .access_part.access_route dl .item_part {
    margin-bottom: 24px;
  }

  .access_part.access_route dl dt {
    width: 90px;
    float: none;
    margin-bottom: 12px;
    height: 36px;
    line-height: 36px;
  }

  .access_part.access_route dl dt::before {
    right: -11px;
    border-left: 10px solid #000;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
  }

  .access_part.access_route dl dt::after {
    right: -10px;
    border-left: 10px solid #fff;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
  }

  .access_part.access_route dl dd {
    padding-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .access_part.access_route {
    margin-bottom: 66px;
  }

  .access_part.access_route dl .item_part {
    margin-bottom: 16px;
  }
}

/* パーキング ----------------- */
.parking {
  width: 100%;
}

.parking h3 {
  margin-bottom: -1rem;
}

.parking_map {
  float: left;
  width: 400px;
  margin-bottom: 30px;
}

.parking_map img {
  width: 100%;
}

.parking_dl {
  float: left;
  width: calc(100% - 400px);
  padding-left: 40px;
}

.parking_dl dl {
  margin-bottom: 10px;
}

.parking_dl dt {
  float: left;
  width: 6rem;
  line-height: 1.5;
}

.parking_dl dt::after {
  content: "：";
}

.parking_dl dd {
  padding-left: 6rem;
  line-height: 1.5;
}

/*480px以下 ------------------------------------------------------------------- */
@media screen and (max-width: 1020px) {
  .parking_dl dl {
    margin-bottom: 30px;
  }

  .parking_dl dt {
    width: 100%;
    margin-bottom: 6px;
  }

  .parking_dl dd {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .parking_map {
    width: 100%;
    float: none;
  }

  .parking_dl {
    float: none;
    width: 100%;
    padding-left: 0;
  }

  .parking_dl dl {
    margin-bottom: 10px;
  }

  .parking_dl dt {
    float: left;
    width: 6rem;
    margin-bottom: 0;
    height: auto;
  }

  .parking_dl dd {
    width: auto;
    padding-left: 6rem;
  }
}

/* ---------------------------------------- */
/* ------------ news ---------------------- */
/* ---------------------------------------- */
.news {
  position: relative;
  /* overflow: hidden */
  width: 100%;
  margin: 10% 0 0;
  padding: 80px 0 0 0;
}

.news:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2f0f1;
  -webkit-transform: skewY(8deg);
  -ms-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: 0;
}

@media screen and (max-width: 480px) {
  .news:before {
    height: 95%;
  }
}

.news_wrap {
  position: relative;
  z-index: 1;
}

.news {
  font-size: 1rem;
}

.news_inner {
  width: 65%;
  margin: 100px auto 120px;
}

.news_inner dl {
  margin-bottom: 24px;
}

.news_inner dl dt {
  width: 8rem;
  float: left;
  line-height: 1.8;
}

.news_inner dl dd {
  padding-left: 8rem;
  line-height: 1.8;
}

/*768px以下 ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .news_inner {
    width: 80%;
  }

  .news_inner dl {
    margin-bottom: 24px;
  }

  .news_inner dl dt {
    float: none;
    margin-bottom: 6px;
  }

  .news_inner dl dd {
    padding-left: 0;
  }
}

/*480px以下 ----------------------------- */
@media screen and (max-width: 480px) {
  .news {
    margin: 12% 0 0;
  }

  .news_inner {
    width: 100%;
  }
}

/* ---------------------------------------- */
/* ------------ goto pagetop -------------- */
/* ---------------------------------------- */
.page_top_wrap {
  position: relative;
  z-index: 100;
}

.page_top {
  position: fixed;
  bottom: 20px;
  right: 14px;
}

.page_top a {
  display: block;
  width: 80px;
  height: 80px;
  -moz-transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.page_top a:hover {
  opacity: 0.8;
}

.page_top a img {
  width: 80px;
}

@media screen and (max-width: 480px) {
  .page_top {
    bottom: 30px;
    right: 0;
  }

  .page_top a img {
    width: 50px;
    height: 50px;
  }
}

/* ---------------------------------------- */
/* ------------ footer -------------------- */
/* ---------------------------------------- */
footer {
  background-color: #333333;
  padding: 50px 0 0 0;
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

footer .footerinner {
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  footer .footerinner div {
    display: flex;
    align-items: center;
  }

  footer .footerinner div:first-child {
    justify-content: space-around;
    padding: 0 100px;
    margin-bottom: 40px;
  }

  footer .footerinner div:last-child {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

footer img {
  margin: 0 auto;
}

@media (max-width: 767px) {
  footer img {
    width: 230px;
    height: 92px;
  }
}

footer .address {
  margin-top: 30px;
  color: #fff;
  line-height: 2em;
  font-size: 15px;
}

footer .address a {
  color: #fff;
}

@media (max-width: 767px) {
  footer .address {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  footer .address {
    text-align: left;
  }
}

footer .termslink {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 20px 0;
  font-size: 15px;
}

footer .termslink li {
  margin: 0 10px;
  line-height: 1.5em;
}

footer .termslink a {
  color: #767676;
  line-height: 1.5em;
}

footer small {
  color: #767676;
  font-size: 12.5px;
}

/* --------------------- */
/* 404ページ */
/* --------------------- */
.page_404 {
  position: relative;
  z-index: 10;
  min-height: 50vh;
  text-align: center;
  background-color: #fff;
  padding: 20% 3%;
}

.page_404 h1 {
  margin: 0;
  font-size: 3rem;
}

.page_404 p {
  margin-bottom: 40px;
}

.page_404 span.page_404_gototop a {
  display: inline-block;
  padding: 14px 28px;
  background-color: #e5006e;
  color: #fff;
}

.page_404 span.page_404_gototop a:hover,
.page_404 span.page_404_gototop a:visited,
.page_404 span.page_404_gototop a:active {
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .page_404 {
    padding: 35% 3%;
  }

  .page_404 h1 {
    font-size: 2rem;
  }
}

/* --------------------- */
/* 追加 トップニュース 緊急ニュース */
/* --------------------- */
.top_news {
  position: relative;
  z-index: 5;
  margin: 10px auto;
  font-weight: normal;
  text-align: center;
}

.top_news .top_news_label {
  float: left;
  width: 100px;
  padding: 6px 8px;
  color: #fff;
  background-color: #e5006e;
}

.top_news .top_news_inner {
  margin-top: 2px;
  padding-left: 120px;
  text-align: left;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.top_news .top_newa_data {
  margin-right: 0.8rem;
}

@media screen and (max-width: 768px) {
  .top_news.container {
    width: 94%;
  }

  .top_news .top_news_inner {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .top_news .top_news_label {
    display: none;
  }

  .top_news .top_news_inner {
    margin-top: 0;
    padding-left: 0;
    font-size: 0.8125rem;
  }
}

/* --------------------- */
/* 追加 MAP */
/* --------------------- */
.map_wrap {
  width: 100%;
}

.map_body {
  width: 100%;
  margin-bottom: 180px;
}

.map_body img {
  width: 100%;
  margin-bottom: 50px;
}

.map_body .button_part {
  padding: 20px 0 50px;
}

@media screen and (max-width: 768px) {
  .map_body {
    margin-bottom: 140px;
  }

  .map_body .button_part {
    padding: 0px 0 0px;
  }
}

@media screen and (max-width: 480px) {
  .map_body {
    margin-bottom: 120px;
  }
}

/* --------------------- */
/* 追加 モーダル */
/* --------------------- */
/* --------------------- */
/* 追加 topページ内 FAQ */
/* --------------------- */
.top_faq {
  position: relative;
  margin-bottom: 150px;
  z-index: 0;
}

.top_faq::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 150%;
  background: #e5006e;
  -webkit-transform: skewY(-8deg);
  -ms-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 0;
}

/* .top_faq::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 180%;
  background: #e5006e;
  z-index: 0; } */
.top_faq .top_faq_inner {
  position: relative;
  margin-bottom: -90px;
  z-index: 1;
}

.top_faq h2 {
  padding: 100px 0 0px;
}

.top_faq .button {
  background-color: #fff;
  color: #1c1c1c;
}

@media screen and (max-width: 768px) {
  .top_faq .top_faq_inner {
    margin-bottom: -60px;
  }

  .top_faq {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  .top_faq h2 {
    padding: 60px 0 0px;
  }
}

/* --------------------- */
/* 追加 FAQページ */
/* --------------------- */
.faq_wrap h2 {
  margin-top: 80px;
}

.faq_wrap footer:before {
  content: none;
}

.faq_header_part {
  text-align: center;
}

.faq_inner {
  position: relative;
  padding-bottom: 120px;
  background-color: #fff;
  z-index: 1;
}

.faq_category_list li {
  display: inline-block;
  margin-bottom: 10px;
}

.faq_category_list .button {
  margin: 0 20px 0 0;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: inherit;
  padding: 10px 30px 10px 24px;
  font-size: 0.825rem;
}

.faq_category_list .button::before {
  content: "";
  display: inline;
  position: relative;
  margin-right: 4px;
  top: 15px;
  left: 0px;
  width: 0;
  height: 0;
  border-top: 9px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid transparent;
}

.faq_category_box {
  padding-top: 40px;
}

.faq_category_box h3 {
  position: relative;
  padding: 10px 18px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  background-color: #f2f0f1;
}

.faq_category_box h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  position: relative;
  top: 2px;
  left: -5px;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  background: url(img/list_mark.gif) no-repeat center center;
  background-size: contain;
}

.faq_box_list li:not(:last-of-type) {
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.faq_box_list dt {
  position: relative;
  margin-bottom: 4px;
  padding-left: 50px;
  line-height: 1.6;
  font-size: 1rem;
}

.faq_box_list dt::before {
  position: absolute;
  content: " Q.";
  top: -1px;
  left: 20px;
  font-size: 1.05rem;
  color: #e5006e;
}

.faq_box_list dd {
  position: relative;
  margin-bottom: 10px;
  padding-left: 50px;
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: normal;
}

.faq_box_list dd::before {
  position: absolute;
  content: " A.";
  top: 0;
  left: 20px;
  font-size: 1rem;
}

.faq_box_list dd strong {
  color: #e5006e;
}

.faq_bottom_part {
  margin-top: 80px;
}

@media screen and (max-width: 480px) {
  .faq_wrap h2 {
    margin-top: 50px;
  }

  .faq_inner {
    padding-bottom: 80px;
  }

  .faq_category_box {
    padding-top: 20px;
  }

  .faq_category_list .button {
    margin: 0 8px 0 0;
    padding: 10px 20px 10px 16px;
  }

  .faq_box_list dt,
  .faq_box_list dd {
    padding-left: 24px;
  }

  .faq_box_list dt::before,
  .faq_box_list dd::before {
    left: 0;
  }

  .faq_bottom_part {
    margin-top: 60px;
  }
}

/* contact */
.contact {
  padding: 200px 0 100px;
}

.contact .contact_inner p {
  text-align: center;
}

.contact img {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .contact img {
    width: 50px;
  }
}

#gnav {
  height: 100px;
}

/* header */
#top-head {
  font-size: 14px;
  top: -100px;
  position: absolute;
  width: auto;
  height: 100px;
  margin: 100px auto 0;
  padding: 20px 0 20px;
  line-height: 1;
  z-index: 999;
}

#top-head .inner {
  position: relative;
}

#top-head .logo {
  float: left;
  font-size: 36px;
}

/* Btn Hover */
#global-nav ul li:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  bottom: -20px;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

#global-nav ul li:hover:after {
  background: #ccc;
  bottom: -18px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  left: 17px;
  top: 18px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle p {
  position: relative;
  display: inline-block;
  top: -6px;
  left: 1px;
  line-height: 1;
  font-size: 0.7rem;
  font-weight: normal;
  color: #fff;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 10px;
}

#nav-toggle span:nth-child(3) {
  top: 20px;
}

#top-head,
.inner {
  max-width: 100%;
  padding: 0;
}

#top-head {
  top: 40px;
  position: fixed;
  height: 84px;
  margin-top: 0;
}

/* Fixed reset */
#top-head.fixed {
  padding-top: 0;
  background: transparent;
}

#mobile-head {
  background: #333;
  width: 70px;
  height: 70px;
  z-index: 999;
  position: relative;
}

#top-head .logo {
  position: absolute;
  color: #333;
  font-size: 26px;
}

#global-nav {
  position: absolute;
  /* é–‹ã„ã¦ãªã„ã¨ãã¯ç”»é¢å¤–ã«é…ç½® */
  left: -300px;
  background: #e5006e;
  top: -40px;
  width: 300px;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  padding: 10px 0;
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.open_nav #global-nav {
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
}

#global-nav ul {
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
}

#nav-toggle {
  display: block;
}

/* #nav-toggle åˆ‡ã‚Šæ›¿ãˆã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
.open_nav #mobile-head {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.open_nav #nav-toggle p {
  display: none;
}

.open_nav #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}

.open_nav #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open_nav #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/*480px以下 ----------------------------------------------------- */
@media screen and (max-width: 480px) {
  #global-nav {
    left: -160px;
    width: 160px;
    top: -24px;
  }

  #top-head {
    top: 24px;
  }

  .open_nav #global-nav {
    -webkit-transform: translateX(160px);
    -ms-transform: translateX(160px);
    transform: translateX(160px);
  }

  #nav-toggle {
    left: 12px;
    top: 11px;
  }

  #nav-toggle p {
    left: 3px;
  }

  #mobile-head {
    width: 60px;
    height: 60px;
  }
}

.logo {
  width: 170px;
  margin-top: 100px;
  top: -80px;
  left: 88px;
}

.logo img {
  width: 100%;
}

.menu_list {
  margin-top: 150px;
  padding: 0px 48px 0 44px;
  text-align: left;
  color: #fff;
}

.menu_list li {
  margin-bottom: 18px;
}

.menu_list a {
  display: inline-block;
  color: #fff;
}

.menu_list .menu_en {
  font-size: 1.3rem;
  color: #fff;
}

.menu_list .menu_jn {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.5rem;
  color: #fff;
}

/*768px以下 ----------------------------------------------------- */
@media screen and (max-width: 768px) {
  .logo {
    width: 160px;
  }
}

/*480px以下 ----------------------------------------------------- */
@media screen and (max-width: 480px) {
  .logo {
    width: 80px;
    margin-top: 0px;
    left: 56px;
    top: 20px;
  }

  .menu_list {
    margin-top: 64px;
    padding: 32px;
  }

  .menu_list li {
    margin-bottom: 16px;
  }

  .menu_list a {
    font-size: 1.2rem;
  }

  .menu_list a span.menu_en {
    font-size: 1.4rem;
  }

  .menu_list a span.menu_jn {
    margin-top: 1px;
    font-size: 0.7rem;
    font-weight: normal;
  }
}

/*320px以下 ----------------------------------------------------- */
@media screen and (max-width: 320px) {
  .logo {
    margin-top: 0px;
  }

  .menu_list {
    margin-top: 54px;
  }

  .menu_list li {
    margin-bottom: 14px;
  }
}

/* --------------------- */
/* 追加 モーダル */
/* --------------------- */
body {
  overflow-y: scroll;
}

/* 開く時の.bodyのアニメーション */
@-webkit-keyframes modalwindow_body_in {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes modalwindow_body_in {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes modalwindow_body_out {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes modalwindow_body_out {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.modalwindow {
  /* オーバーレイ＆スクロール領域になるレイヤー */
  display: none;
  position: fixed;
  top: 180px;
  left: 0;
  overflow: auto;
  z-index: 1001;
  width: 100%;
  /* スマホでスワイプして指を離すまでの間下部の背景が無くなるため余分に指定 */
  height: 108%;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 100px solid transparent;
  cursor: pointer;
  opacity: 1;
}

.modalwindow.no_overlay_close {
  cursor: default;
}

.modalwindow.lock .close_modal {
  background: #ccc;
}

.modalwindow .body {
  /* ウィンドウ自体 アニメーションなどで装飾 */
  position: relative;
  width: 60%;
  margin: 30px auto 30px;
  left: 0;
  top: 230px;
  background: #fff;
  border-radius: 4px;
  cursor: default;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-animation: 200ms modalwindow_body_out;
  animation: 200ms modalwindow_body_out;
}

.modalwindow .body .modal_content {
  padding: 34px;
}

.modalwindow .body>footer {
  padding: 10px;
  background: #fcfcfc;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #e5e5e5;
}

.modalwindow.is_visible .body {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-animation: 400ms modalwindow_body_in;
  animation: 400ms modalwindow_body_in;
}

@media screen and (max-width: 768px) {
  .modalwindow {
    top: 0;
  }

  .modalwindow .body {
    position: relative;
    width: calc(100% - 30px);
    margin: 15px;
    top: 0;
    left: 0;
  }

  .modalwindow .body .modal_content {
    padding: 20px;
  }
}

.modal_close_part {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e5006e;
  z-index: 2;
  pointer-events: auto;
}

.close_modal {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.close_modal::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 36px;
  height: 4px;
  top: 22px;
  left: 7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}

.close_modal::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 36px;
  height: 4px;
  top: 22px;
  left: 7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .modal_close_part {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
  }

  .close_modal::before {
    width: 24px;
    top: 18px;
    left: 8px;
  }

  .close_modal::after {
    width: 24px;
    top: 18px;
    left: 8px;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 32px;
  z-index: 2;
  pointer-events: auto;
}

.modal_content {
  position: relative;
}

.video-comingSoon {
  position: relative;
}

.video-comingSoon::after {
  content: "coming soon";
  position: absolute;
  display: inline-block;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

.video-comingSoon:before {
  content: "";
  position: absolute;
  display: table-cell;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.video-comingSoon:before .iframe_wrap {
  pointer-events: none !important;
}

.video-comingSoon:before .iframe_wrap iframe {
  pointer-events: none !important;
}

.video-comingSoon:before span {
  display: block;
  text-align: center;
  margin-top: 26%;
  color: #fff;
  font-size: 2rem;
}

.modal_text_box {
  width: 100%;
}

.modal_text_box .modal_text_left {
  float: left;
  width: calc((100% / 3) * 2);
}

.modal_text_box .modal_text_left p {
  margin-bottom: 8px;
}

.modal_text_box .modal_text_left {
  padding-right: 7%;
}

.modal_text_box h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.modal_text_box h2 {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.025rem;
}

.modal_text_box p {
  font-size: 0.875rem;
}

.modal_text_box .modal_text_right {
  float: left;
  width: calc(100% / 3);
}

.modal_text_box .modal_text_right {
  font-size: 0.8125rem;
}

.modal_text_box .modal_text_right li {
  margin-bottom: 20px;
}

.modal_text_box .modal_text_right dt {
  margin-bottom: 8px;
}

.modal_text_box .modal_text_right dt::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  background: url(img/list_mark.gif) no-repeat center center;
  background-size: contain;
}

.modal_text_box .modal_text_right dd {
  margin-bottom: 8px;
  font-weight: normal;
}

.modalwindow:nth-of-type(1) h1,
.modalwindow:nth-of-type(1) h2 {
  color: #f2a931;
}

.modalwindow:nth-of-type(2) h1,
.modalwindow:nth-of-type(2) h2 {
  color: #4db04d;
}

.modalwindow:nth-of-type(3) h1,
.modalwindow:nth-of-type(3) h2 {
  color: #ea338b;
}

.modalwindow:nth-of-type(4) h1,
.modalwindow:nth-of-type(4) h2 {
  color: #2daedf;
}

@media screen and (max-width: 768px) {
  .modal-content {
    padding: 32px;
  }

  .modal_text_box .modal_text_left {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .modal_text_box .modal_text_right {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .modal-content {
    padding: 4%;
  }
}

/* 予約ページ */
.reserved {
  padding: 100px 0;
  width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.reserved h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

.reserved .section {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-around;
}

.reserved .section a {
  font-size: 20px;
  padding: 10px 0 5px;
  border-bottom: 3px solid #fff;
}

.reserved .section a.current {
  border-bottom-color: #f00;
  font-weight: bold;
}

.reserved .section a:hover {
  border-bottom-color: #f00;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .reserved {
    padding: 50px 10px;
    width: 100%;
  }
}


/* add */
.new {
  text-align: center;
  margin: 100px auto 200px;
  font-size: 24px;
  padding: 0 20px;
  line-height: 1.5;
}

.new dl {
  width: 1000px;
  margin: 0 auto;
}

.new dt {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .new {
    font-size: 20px;
    margin: 50px auto;
  }

  .new dl {
    width: 100%;
  }

  .new dt {
    margin-bottom: 10px;
  }
}

.price_list_part img {
  width: 100%;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}


/*
  20230938 追記
*/
/* .activity_ce1.activity_part .activity_text::before {
  top: -486px;
}
.activity_ce1.activity_part .activity_text::after {
  top: -33px;
}
.activity_cb3.activity_part .activity_text::before {
  top: -470px;
}
.activity_cb3.activity_part .activity_text::after {
  top: -17px;
} */
@media only screen and (max-width: 768px) {
  .concept_3.concept_part .item_img::before {
    top: -96px;
  }

  .concept_3.concept_part .item_img {
    padding-top: 20px;
  }

  .map_wrap {
    margin-top: 80px;
  }

  .concept_3.concept_part .item_img .img_area::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -22%;
    right: 0;
    width: 100%;
    height: 22%;
    background: white;
    transform-origin: top right;
    transform: skewY(8deg);
    z-index: 0;
  }

  .concept_3_2.concept_part .item_img .img_area::after {
    transform-origin: top left;
    transform: skewY(-8deg);
  }
}

@media only screen and (min-width: 768px) {
  .concept_part {
    max-height: 57%;
  }

  .concept {
    margin-top: 134px;
  }

  .concept_part {
    max-height: 610px;
  }

  .concept_3_2,
  .concept_3_3 {
    margin-top: -83px;
  }

  .concept_part .item_img {
    height: unset;
  }

  .activity {
    transform: none;
  }
}

.concept_3.concept_part .item_img .img_area {
  height: unset;
}

.concept_part .item_img::after {
  display: none;
}