@charset "UTF-8";
/*
	サイト全体で使えるSaas変数用
*/
/*
$characters : "hellokitty", "mymelody", "kikilala", "cinnamon", "pompompurin", "kuromi", "tuxedosam", "kuririn", "pochacco", "wishmemell", "other";
*/
/*
	マージン設定
	
	usage:
	@include default-margin-bottom(1);
	@include default-margin-top(1);
	@include default-margin-left(1);
	@include default-margin-right(1);
*/
/*
	
	スマホ画像、vw
	
*/
/*
	フォント設定
	
	usage:
	@include font-default;
	@include font-item;
	@include font-price;
	@include font-description;
*/
@font-face {
  font-family: 'jins';
  src: url("../fonts/JINS_NextRegular.woff") format("woff"), url("../fonts/JINS_NextRegular.ttf") format("truetype");
}
/*
@mixin font-sans-serif{
	font-family: 'Noto Sans JP', sans-serif;
}
*/
/*
@mixin font-item {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 900;
	font-style: normal;
}
@mixin font-price {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
}
@mixin font-description {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
*/
/*
	ブレイクポイント
	
	usage:
	@include min-screen($breakpoint-pc) {
		font-size : 000;
	}
*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*
	サイト全体で使えるmixinを管理
*/
.fi {
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transform: translate(0, 30px);
}
.fi.active {
  opacity: 1;
  transform: translate(0, 0);
}

/**
 * Copyright (c) 2016 Connor Atherton
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

.ball-scale-random {
  width: 37px;
  height: 40px;
}

.ball-scale-random > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 30px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}

.ball-scale-random > div:nth-child(1) {
  margin-left: -7px;
  -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
  animation: ball-scale 1s 0.2s ease-in-out infinite;
}

.ball-scale-random > div:nth-child(3) {
  margin-left: -2px;
  margin-top: 9px;
  -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
  animation: ball-scale 1s 0.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ball-rotate {
  position: relative;
}

.ball-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
}

.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}

.ball-rotate > div:before, .ball-rotate > div:after {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: "";
  position: absolute;
  opacity: 0.8;
}

.ball-rotate > div:before {
  top: 0px;
  left: -28px;
}

.ball-rotate > div:after {
  top: 0px;
  left: 25px;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 26px;
  width: 26px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}

.ball-clip-rotate-pulse > div:first-child {
  background: #fff;
  height: 16px;
  width: 16px;
  top: 7px;
  left: -7px;
  -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  left: -16px;
  top: -2px;
  background: transparent;
  border: 2px solid;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}

.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -20px;
  top: -20px;
  border: 2px solid #000;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite;
}

.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #000 transparent #000 transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear;
}

.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}

.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.ball-scale-multiple > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite;
}

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px);
}

.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #fff;
}

.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}

.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}

.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even;
}

.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd;
}

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.ball-grid-beat {
  width: 57px;
}

.ball-grid-beat > div:nth-child(1) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
  -webkit-animation-duration: 1.45s;
  animation-duration: 1.45s;
}

.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: -0.02s;
  animation-delay: -0.02s;
  -webkit-animation-duration: 0.97s;
  animation-duration: 0.97s;
}

.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: 0.66s;
  animation-delay: 0.66s;
  -webkit-animation-duration: 1.23s;
  animation-duration: 1.23s;
}

.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: 0.64s;
  animation-delay: 0.64s;
  -webkit-animation-duration: 1.24s;
  animation-duration: 1.24s;
}

.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: -0.19s;
  animation-delay: -0.19s;
  -webkit-animation-duration: 1.13s;
  animation-duration: 1.13s;
}

.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: 0.69s;
  animation-delay: 0.69s;
  -webkit-animation-duration: 1.42s;
  animation-duration: 1.42s;
}

.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: 0.58s;
  animation-delay: 0.58s;
  -webkit-animation-duration: 1.14s;
  animation-duration: 1.14s;
}

.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: 0.21s;
  animation-delay: 0.21s;
  -webkit-animation-duration: 1.17s;
  animation-duration: 1.17s;
}

.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
}

.ball-grid-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.ball-grid-pulse {
  width: 57px;
}

.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: 0.22s;
  animation-delay: 0.22s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}

.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.64s;
  animation-delay: 0.64s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
  -webkit-animation-duration: 0.63s;
  animation-duration: 0.63s;
}

.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: -0.03s;
  animation-delay: -0.03s;
  -webkit-animation-duration: 1.24s;
  animation-duration: 1.24s;
}

.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.08s;
  animation-delay: 0.08s;
  -webkit-animation-duration: 1.37s;
  animation-duration: 1.37s;
}

.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: 0.43s;
  animation-delay: 0.43s;
  -webkit-animation-duration: 1.55s;
  animation-duration: 1.55s;
}

.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-duration: 0.97s;
  animation-duration: 0.97s;
}

.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.63s;
  animation-duration: 0.63s;
}

.ball-grid-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px;
}

.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
  animation: ball-spin-fade-loader 1s -0.96s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
  animation: ball-spin-fade-loader 1s -0.84s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
  animation: ball-spin-fade-loader 1s -0.72s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
  animation: ball-spin-fade-loader 1s -0.6s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
  animation: ball-spin-fade-loader 1s -0.48s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
  animation: ball-spin-fade-loader 1s -0.36s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
  animation: ball-spin-fade-loader 1s -0.24s infinite linear;
}

.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
  animation: ball-spin-fade-loader 1s -0.12s infinite linear;
}

.ball-spin-fade-loader > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
}

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.ball-spin-loader {
  position: relative;
}

.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  animation: ball-spin-loader 2s 0.9s infinite linear;
}

.ball-spin-loader > span:nth-child(2) {
  top: 30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  animation: ball-spin-loader 2s 1.8s infinite linear;
}

.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  animation: ball-spin-loader 2s 2.7s infinite linear;
}

.ball-spin-loader > span:nth-child(4) {
  top: -30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  animation: ball-spin-loader 2s 3.6s infinite linear;
}

.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  animation: ball-spin-loader 2s 4.5s infinite linear;
}

.ball-spin-loader > span:nth-child(6) {
  top: -30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  animation: ball-spin-loader 2s 5.4s infinite linear;
}

.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  animation: ball-spin-loader 2s 6.3s infinite linear;
}

.ball-spin-loader > span:nth-child(8) {
  top: 30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  animation: ball-spin-loader 2s 7.2s infinite linear;
}

.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green;
}

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}

.ball-zig-zag > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}

.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear;
}

.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear;
}

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}

.ball-zig-zag-deflect > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}

.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  animation: ball-zig-deflect 1.5s 0s infinite linear;
}

.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  animation: ball-zag-deflect 1.5s 0s infinite linear;
}

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: 0.48s;
  animation-delay: 0.48s;
  -webkit-animation-duration: 0.54s;
  animation-duration: 0.54s;
}

.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
  -webkit-animation-duration: 1.15s;
  animation-duration: 1.15s;
}

.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.04s;
  animation-delay: 0.04s;
  -webkit-animation-duration: 0.77s;
  animation-duration: 0.77s;
}

.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: -0.12s;
  animation-delay: -0.12s;
  -webkit-animation-duration: 0.61s;
  animation-duration: 0.61s;
}

.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px;
}

.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(2) {
  top: 13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(4) {
  top: -13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(6) {
  top: -13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
}

.line-spin-fade-loader > div:nth-child(8) {
  top: 13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
}

.line-spin-fade-loader > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px;
}

/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
.pacman {
  position: relative;
}

.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear;
}

.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear;
}

.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear;
}

.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}

.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}

.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}

.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}

.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
  animation: cube-transition 1.6s 0s infinite ease-in-out;
}

.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}

.semi-circle-spin > div {
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  width: 100%;
  height: 100%;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url('/fonts/slick.eot');
  src: url('/fonts/slick.eot?#iefix') format("embedded-opentype"), url('/fonts/slick.woff') format("woff"), url('/fonts/slick.ttf') format("truetype"), url('/fonts/slick.svg#slick') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  /*
  height: 20px;
  width: 20px;
  */
  width: 2.4vw;
  height: 4.6vw;
  max-width: 20px;
  max-height: 30px;
  text-indent: -9999px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  z-index: 100;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: clamp(-30px, -2vw, -20px);
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: clamp(-30px, -2vw, -20px);
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: clamp(-30px, -2vw, -20px);
}
[dir="rtl"] .slick-next {
  left: clamp(-30px, -2vw, -20px);
  right: auto;
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

.slick-prev {
  background-image: url("../images/common/1x/arrow-left-pink.png");
}
.is-pink .slick-prev {
  background-image: url(../images/common/1x/arrow-left-pink.png);
}
.is-red .slick-prev {
  background-image: url(../images/common/1x/arrow-left-red.png);
}
.is-purple .slick-prev {
  background-image: url(../images/common/1x/arrow-left-purple.png);
}
.is-yellow .slick-prev {
  background-image: url(../images/common/1x/arrow-left-yellow.png);
}
.is-lightblue .slick-prev {
  background-image: url(../images/common/1x/arrow-left-lightblue.png);
}
.is-green .slick-prev {
  background-image: url(../images/common/1x/arrow-left-green.png);
}
.is-blue .slick-prev {
  background-image: url(../images/common/1x/arrow-left-blue.png);
}
.is-orange .slick-prev {
  background-image: url(../images/common/1x/arrow-left-orange.png);
}
.is-black .slick-prev {
  background-image: url(../images/common/1x/arrow-left-black.png);
}
.is-white .slick-prev {
  background-image: url(../images/common/1x/arrow-left-white.png);
}

.slick-next {
  background-image: url("../images/common/1x/arrow-right-pink.png");
}
.is-pink .slick-next {
  background-image: url(../images/common/1x/arrow-right-pink.png);
}
.is-red .slick-next {
  background-image: url(../images/common/1x/arrow-right-red.png);
}
.is-purple .slick-next {
  background-image: url(../images/common/1x/arrow-right-purple.png);
}
.is-yellow .slick-next {
  background-image: url(../images/common/1x/arrow-right-yellow.png);
}
.is-lightblue .slick-next {
  background-image: url(../images/common/1x/arrow-right-lightblue.png);
}
.is-green .slick-next {
  background-image: url(../images/common/1x/arrow-right-green.png);
}
.is-blue .slick-next {
  background-image: url(../images/common/1x/arrow-right-blue.png);
}
.is-orange .slick-next {
  background-image: url(../images/common/1x/arrow-right-orange.png);
}
.is-black .slick-next {
  background-image: url(../images/common/1x/arrow-right-black.png);
}
.is-white .slick-next {
  background-image: url(../images/common/1x/arrow-right-white.png);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 35px;
}

.slick-dots {
  position: absolute;
  bottom: -20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
}
.is-pink .slick-dots li button:before {
  color: #ef889a;
}
.is-red .slick-dots li button:before {
  color: #eb5751;
}
.is-purple .slick-dots li button:before {
  color: #d0abcf;
}
.is-yellow .slick-dots li button:before {
  color: #fccf53;
}
.is-lightblue .slick-dots li button:before {
  color: #67c6df;
}
.is-green .slick-dots li button:before {
  color: #9bcb6c;
}
.is-blue .slick-dots li button:before {
  color: #78a0d4;
}
.is-orange .slick-dots li button:before {
  color: #f6ad41;
}
.is-black .slick-dots li button:before {
  color: #9e9e9f;
}
.is-white .slick-dots li button:before {
  color: #f3c7ca;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
.is-pink .slick-dots li.slick-active button:before {
  color: #ef889a;
}
.is-red .slick-dots li.slick-active button:before {
  color: #eb5751;
}
.is-purple .slick-dots li.slick-active button:before {
  color: #d0abcf;
}
.is-yellow .slick-dots li.slick-active button:before {
  color: #fccf53;
}
.is-lightblue .slick-dots li.slick-active button:before {
  color: #67c6df;
}
.is-green .slick-dots li.slick-active button:before {
  color: #9bcb6c;
}
.is-blue .slick-dots li.slick-active button:before {
  color: #78a0d4;
}
.is-orange .slick-dots li.slick-active button:before {
  color: #f6ad41;
}
.is-black .slick-dots li.slick-active button:before {
  color: #9e9e9f;
}
.is-white .slick-dots li.slick-active button:before {
  color: #f3c7ca;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.l-header,
.l-main,
.l-footer {
  /*
  position: absolute;
  left: 0;
  width: 100%;
  */
}

.l-loader {
  display: none;
  width: 100vw;
  height: 100lvh;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  pointer-events: none;
  background-size: cover;
  opacity: 0;
}
.l-loader.is-active {
  opacity: 1;
}

@keyframes dot_animation {
  0% {
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
}
@keyframes dot_animation2 {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes dot_animation3 {
  0% {
    opacity: 0;
  }
  74% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
/*
.l-wrap{
	width: 100vw;
	height: 100%;
	overflow: hidden;
}
*/
.l-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.l-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background-size: cover;
  z-index: 1;
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .l-background {
    background-size: cover;
  }
}

.l-screen {
  height: 100%;
  overflow: scroll;
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  box-sizing: border-box;
}
.l-screen.is-show {
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 1023px) {
  .l-screen--no-padding {
    padding: 0;
    padding-top: 80px;
  }
  .l-screen--opening {
    padding: 0;
    min-height: 100%;
  }
}

/*
	グリッドレイアウト
	
	usage:
	<div class="c-grid">
		<ul class="c-grid__row">
			<li class="c-grid__col--sm-6 c-grid__col--lg-4">
				grid content
			</li>
			<li class="c-grid__col--sm-6 c-grid__col--lg-4">
				grid content
			</li>
			<li class="c-grid__col--sm-6 c-grid__col--lg-4">
				grid content
			</li>
		</ul>
	</div>
	<!-- /.c-grid -->
*/
.c-grid {
  margin-bottom: clamp(20px, 10%, 60px);
}
.c-grid__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -1.65vw;
  margin-right: -1.65vw;
  margin-bottom: -1.65vw;
}
.c-grid__col--sm-1 {
  width: 8.33333%;
}
.c-grid__col--sm-2 {
  width: 16.66667%;
}
.c-grid__col--sm-3 {
  width: 25%;
}
.c-grid__col--sm-4 {
  width: 33.33333%;
}
.c-grid__col--sm-5 {
  width: 41.66667%;
}
.c-grid__col--sm-6 {
  width: 50%;
}
.c-grid__col--sm-7 {
  width: 58.33333%;
}
.c-grid__col--sm-8 {
  width: 66.66667%;
}
.c-grid__col--sm-9 {
  width: 75%;
}
.c-grid__col--sm-10 {
  width: 83.33333%;
}
.c-grid__col--sm-11 {
  width: 91.66667%;
}
.c-grid__col--sm-12 {
  width: 100%;
}

[class*='c-grid__col'] {
  box-sizing: border-box;
}

[class*='c-grid__col--sm'] {
  padding: 0 1.65vw;
  margin-bottom: 1.65vw;
}

@media screen and (min-width: 1023px) {
  .c-grid__row {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
  }
  .c-grid__col--lg-1 {
    width: 8.33333%;
  }
  .c-grid__col--lg-2 {
    width: 16.66667%;
  }
  .c-grid__col--lg-3 {
    width: 25%;
  }
  .c-grid__col--lg-4 {
    width: 33.33333%;
  }
  .c-grid__col--lg-5 {
    width: 41.66667%;
  }
  .c-grid__col--lg-6 {
    width: 50%;
  }
  .c-grid__col--lg-7 {
    width: 58.33333%;
  }
  .c-grid__col--lg-8 {
    width: 66.66667%;
  }
  .c-grid__col--lg-9 {
    width: 75%;
  }
  .c-grid__col--lg-10 {
    width: 83.33333%;
  }
  .c-grid__col--lg-11 {
    width: 91.66667%;
  }
  .c-grid__col--lg-12 {
    width: 100%;
  }

  [class*='c-grid__col--lg'] {
    padding: 0 15px;
    margin-bottom: 15px;
  }
}
/*
	inner
*/
.c-inner {
  width: 86%;
  margin: 0 auto;
}

.c-title {
  font-size: 5.5vw;
}

.c-text {
  font-size: 3.8vw;
  line-height: 1.4;
  margin-top: 1em;
}
.c-text--large {
  font-size: 5vw;
}

.c-button {
  width: 100%;
  font-size: 4.5vw;
  line-height: 1;
  padding: 1em;
  box-sizing: border-box;
  border-radius: 7.5vw;
}
.c-button--primary {
  color: #fff;
  background-color: #0b2241;
  border: 1px solid #0b2241;
}
.c-button--secondary {
  color: #000;
  background-color: #fff;
  border: 1px solid #0b2241;
}
.c-button--small {
  width: 80%;
  background-color: #0b2241;
  border: 1px solid #0b2241;
  color: #fff;
}
.c-button__item {
  margin-bottom: 10px;
}
.c-button__item:last-child {
  margin-bottom: 0;
}

.c-modal__wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
}
.c-modal__wrap.is-active {
  pointer-events: all;
  animation-name: show;
  animation-duration: .7s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.c-modal__inner {
  box-sizing: border-box;
  width: 80vw;
  background-color: #fff;
  padding: 10% 5%;
  border-radius: 6px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.is-active .c-modal__inner {
  pointer-events: all;
  animation-name: vertical_show;
  animation-duration: .3s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: .2s;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vertical_show {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
#js-show-preview {
  opacity: 1;
}
#js-show-preview:disabled {
  opacity: .5;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}
body.is-renewal .footer-navigation, body:has(.top-kv) .footer-navigation, body:has(.pagetitle) .footer-navigation, body:has(.breadcrumbs) .footer-navigation {
  margin-top: 0 !important;
}

.p-kv img {
  width: 100%;
  height: auto;
}

.p-container {
  font-family: "Noto Sans JP", sans-serif;
  color: #233C6A;
  font-weight: 700;
}

.p-introduction {
  background: url("../images/background_zootopia.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 90px;
}
.p-introduction__inner {
  display: flex;
  gap: 62px;
}
.p-introduction__description {
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.p-introduction__description h2 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
}
.p-introduction__description p {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
.p-introduction__image {
  width: 472px;
}
@media screen and (max-width: 1023px) {
  .p-introduction {
    padding-top: 20.51282vw;
    padding-bottom: 20.51282vw;
  }
  .p-introduction__inner {
    gap: 20.51282vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .p-introduction__description {
    gap: 7.69231vw;
  }
  .p-introduction__description h2 {
    font-size: 15.38462vw;
  }
  .p-introduction__description p {
    font-size: 3.84615vw;
    line-height: 7.69231vw;
  }
  .p-introduction__image {
    width: 80vw;
  }
}

.p-launch {
  background: url("../images/background_launch.png") no-repeat center center #D7C0A2;
  background-size: 1406px auto;
}
.p-launch__inner {
  width: 660px;
  margin: 0 auto;
  padding-top: 180px;
  padding-bottom: 160px;
}
.p-launch__box {
  background-color: #fff;
  border: 5px solid #233C6A;
  box-shadow: -10px 10px 0 #233C6A;
  text-align: center;
  padding: 60px 45px;
  box-sizing: border-box;
}
.p-launch__title {
  margin-bottom: 40px;
}
.p-launch__date img {
  width: 430px;
  display: block;
  margin: 0 auto;
}
.p-launch__price {
  font-family: "Londrina Solid", sans-serif;
  font-size: 60px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-launch__price span {
  display: block;
  width: 194px;
  margin-right: 18px;
}
.p-launch__price span img {
  display: block;
}
.p-launch__price > img {
  width: 199px;
}
.p-launch__price i {
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  margin-left: .1em;
}
.p-launch__button {
  display: block;
  margin: 0 auto;
  margin-top: 45px;
  margin-bottom: 45px;
  background: url("../images/button.png") no-repeat center center;
  width: 280px;
  height: 75px;
  background-size: 100% auto;
  text-indent: -9999px;
}
.p-launch__button:hover {
  background: url("../images/button_active.png") no-repeat center center;
  background-size: 100% auto;
}
.p-launch__caption {
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  margin-top: 40px;
}
.p-launch__caption span {
  font-size: 12px;
}
@media screen and (max-width: 1023px) {
  .p-launch__inner {
    width: 86.15385vw;
    padding-top: 18.46154vw;
    padding-bottom: 28.20513vw;
  }
  .p-launch__box {
    border: 1.02564vw solid #233C6A;
    box-shadow: -1.02564vw 1.02564vw 0 #233C6A;
    padding: 8.71795vw 7.69231vw;
  }
  .p-launch__title {
    margin: 0 auto;
    margin-bottom: 6.15385vw;
    width: 100%;
  }
  .p-launch__date img {
    width: 61.79487vw;
  }
  .p-launch__price {
    flex-wrap: wrap;
  }
  .p-launch__price span {
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 5.12821vw;
  }
  .p-launch__price span img {
    width: 34.10256vw;
    margin: 0 auto;
  }
  .p-launch__price > img {
    width: 34.10256vw;
  }
  .p-launch__price i {
    font-size: 6.15385vw;
    margin-left: 0em;
  }
  .p-launch__button {
    margin-top: 6.15385vw;
    margin-bottom: 10.25641vw;
    width: 58.97436vw;
    height: 15.64103vw;
  }
  .p-launch__caption {
    font-size: 3.58974vw;
    line-height: 1.1;
    margin-top: 4.10256vw;
  }
  .p-launch__caption span {
    font-size: 3.07692vw;
    display: block;
    margin-top: 1.02564vw;
  }
}

.p-section-menu {
  background-color: #D7C0A2;
  padding-bottom: 150px;
}
.p-section-menu__list {
  display: flex;
  gap: 62px;
  flex-wrap: wrap;
  justify-content: center;
  width: 1080px;
  margin: 0 auto;
}
.p-section-menu__item {
  position: relative;
  width: 505px;
}
.p-section-menu__link {
  display: block;
  text-decoration: none;
}
.p-section-menu__link div {
  background-color: #F1EEA4;
  border: 5px solid #233C6A;
  box-shadow: -5px 5px 0 #233C6A;
}
.p-section-menu__link:hover div {
  transform: translate(-5px, 5px);
  box-shadow: none;
}
.p-section-menu__tag {
  position: absolute;
  width: 180px;
  left: -40px;
  top: -45px;
}
.p-section-menu__image {
  display: block;
  border-bottom: 5px solid #233C6A;
  width: 100%;
}
.p-section-menu__text {
  font-size: 22px;
  height: 60px;
  line-height: 60px;
  display: block;
  position: relative;
  text-align: center;
  color: #233C6A;
}
.p-section-menu__text:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top: 12px solid #233C6A;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-4em, -0.2em);
}
@media screen and (max-width: 1023px) {
  .p-section-menu {
    padding-bottom: 25.12821vw;
  }
  .p-section-menu__list {
    gap: 12.82051vw;
    width: auto;
  }
  .p-section-menu__item {
    width: 85.89744vw;
  }
  .p-section-menu__link div {
    border: 0.89744vw solid #233C6A;
    box-shadow: -0.89744vw 0.89744vw 0 #233C6A;
  }
  .p-section-menu__link:hover div {
    transform: translate(-0.89744vw, 0.89744vw);
    box-shadow: none;
  }
  .p-section-menu__tag {
    width: 28.20513vw;
    left: -5.12821vw;
    top: -7.69231vw;
  }
  .p-section-menu__image {
    border-bottom: 0.84615vw solid #233C6A;
  }
  .p-section-menu__text {
    font-size: 3.71795vw;
    height: 10.25641vw;
    line-height: 10.25641vw;
  }
  .p-section-menu__text:before {
    border: 1.53846vw solid transparent;
    border-top: 2.30769vw solid #233C6A;
  }
}

@keyframes inview-slidein {
  0% {
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes inview-slidein-sp {
  0% {
    transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.wrap__flex {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
}
.wrap__card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.p-section {
  padding-bottom: 140px;
}
.p-section--01 {
  background: url("../images/round_01.svg") no-repeat center top #D44F6C;
  background-size: 100% auto;
}
.p-section--02 {
  background: url("../images/round_02.svg") no-repeat center top #089C92;
  background-size: 100% auto;
}
.p-section--03 {
  background: url("../images/round_03.svg") no-repeat center top #335797;
  background-size: 100% auto;
}
.p-section--accessories {
  background: url("../images/background_04_pc.png") no-repeat center top;
  background-size: 100% auto;
}
.p-section__inner {
  max-width: 1048px;
  margin: 0 auto;
  padding-top: 190px;
  opacity: 0;
  transform: translate(0, 100px);
}
@media screen and (max-width: 1023px) {
  .p-section__inner {
    width: 89.23077vw;
  }
}
.p-section__inner.is-inview {
  animation: inview-slidein var(--inview-dur, 1s) var(--inview-ease, cubic-bezier(0.2, 0.7, 0.2, 1)) forwards;
}
@media screen and (max-width: 1023px) {
  .p-section__inner.is-inview {
    animation: inview-slidein-sp var(--inview-dur, 1s) var(--inview-ease, cubic-bezier(0.2, 0.7, 0.2, 1)) forwards;
  }
}
.p-section__number {
  width: 200px;
  margin: 0 auto;
  display: block;
  margin-bottom: 100px;
}
.p-section__image {
  width: 1030px;
  display: block;
  margin: 0 auto;
  margin-bottom: 80px;
}
.p-section__flex {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
}
.p-section__flex-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-section__title {
  font-size: 96px;
  margin-bottom: 200px;
  font-family: "Londrina Solid", sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-section {
    padding-bottom: 23.07692vw;
  }
  .p-section--01 {
    background: url("../images/round_01.png") no-repeat center top #D44F6C;
    background-size: 100% auto;
  }
  .p-section--02 {
    background: url("../images/round_02.png") no-repeat center top #089C92;
    background-size: 100% auto;
  }
  .p-section--03 {
    background: url("../images/round_03.png") no-repeat center top #335797;
    background-size: 100% auto;
  }
  .p-section--accessories {
    background: url("../images/background_04_sp.png") no-repeat center top;
    background-size: 100% auto;
    padding-bottom: 5.12821vw;
  }
  .p-section__inner {
    width: 89.23077vw;
    padding-top: 17.69231vw;
  }
  .p-section__number {
    width: 23.07692vw;
    margin-bottom: 7.69231vw;
  }
  .p-section__image {
    width: 85.12821vw;
    margin-bottom: 17.94872vw;
  }
  .p-section__flex {
    flex-direction: column;
    gap: 18.46154vw;
  }
  .p-section__title {
    font-size: 11.28205vw;
    margin-bottom: 16.92308vw;
  }
}

@keyframes inview-up-scale {
  0% {
    transform: translate(0, 100%) scale(1.05, 1.05);
  }
  60% {
    transform: translate(0, 0) scale(1.05, 1.05);
  }
  100% {
    transform: translate(0, 0) scale(1, 1);
  }
}
@keyframes inview-popup {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  60% {
    opacity: 1;
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.p-item {
  width: 500px;
  height: 100%;
}
.p-item__character-name {
  width: 300px;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.p-item__character-image {
  width: 304px;
  height: 294px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 48px;
  overflow: hidden;
}
.p-item__character-image img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  transform: translate(0, 100%);
}
.p-item__character-image.is-inview img {
  animation: inview-popup var(--inview-dur, 0.6s) var(--inview-ease, cubic-bezier(0.2, 0.7, 0.2, 1)) forwards;
}
.p-item__character-image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: red;
}
.p-item__character-image--judy {
  background: url("../images/circle_judy_back.png") no-repeat center center/contain;
}
.p-item__character-image--nick {
  background: url("../images/circle_nick_back.png") no-repeat center center/contain;
}
.p-item__character-image--01:before {
  background: url("../images/circle_01_top.png") no-repeat center center/contain;
}
.p-item__character-image--02:before {
  background: url("../images/circle_02_top.png") no-repeat center center/contain;
}
.p-item__character-image--03:before {
  background: url("../images/circle_03_top.png") no-repeat center center/contain;
}
.p-item__box {
  border: 5px solid #233C6A;
  background: url("../images/background_scene01_modal.png") no-repeat center center/cover;
  padding: 20px;
  padding-bottom: 50px;
  height: calc(100% - 514px);
  box-sizing: border-box;
}
.p-item__container {
  position: relative;
}
.p-item__container + .p-item__container {
  margin-top: 60px;
}
.p-item__name {
  font-size: 24px;
  color: #000;
  padding-left: 25px;
  padding-top: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-item__scene {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  margin-right: 35px;
  margin-top: 25px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}
.p-item__scene.is-inview {
  animation: inview-popup var(--inview-dur, 0.6s) var(--inview-ease, cubic-bezier(0.2, 0.7, 0.2, 1)) forwards;
}
.p-item__button {
  color: #fff;
  text-decoration: none;
}
.p-item__button span {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 400;
  background-color: #248EDB;
  font-size: 32px;
  width: 298px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #233C6A;
  margin: 0 auto;
  margin-top: 32px;
  box-shadow: -5px 5px 0 #233C6A;
}
.p-item__button.is-nick span {
  background-color: #ED5300;
}
.p-item__button:hover span {
  transform: translate(-5px, 5px);
  box-shadow: none;
}
@media screen and (max-width: 1023px) {
  .p-item {
    width: 89.23077vw;
  }
  .p-item__character-name {
    width: 46.15385vw;
    margin-bottom: 6.41026vw;
  }
  .p-item__character-image {
    width: 51.28205vw;
    height: 49.74359vw;
    margin-bottom: 8.20513vw;
  }
  .p-item__box {
    border: 1.02564vw solid #233C6A;
    padding: 7.69231vw 0 8.97436vw;
    height: auto;
  }
  .p-item__container {
    position: relative;
  }
  .p-item__name {
    font-size: 3.84615vw;
    padding-left: 8.97436vw;
    padding-top: 0vw;
    margin-bottom: 2.05128vw;
  }
  .p-item__scene {
    width: 25.64103vw;
    margin-right: 7.69231vw;
    margin-top: 0vw;
    margin-bottom: 2.5641vw;
  }
  .p-item__button span {
    font-size: 5.64103vw;
    width: 52.5641vw;
    height: 16.15385vw;
    border: 0.89744vw solid #233C6A;
    margin-top: 5.64103vw;
    box-shadow: -0.89744vw 0.89744vw 0 #233C6A;
  }
  .p-item__button:hover span {
    transform: translate(-0.89744vw, 0.89744vw);
    box-shadow: none;
  }
}

.p-slide__image {
  display: block;
  margin-bottom: 20px;
}
.p-slide__text {
  text-align: center;
  height: 80px;
}
@media screen and (max-width: 1023px) {
  .p-slide__image {
    margin-bottom: 5.12821vw;
  }
  .p-slide__text {
    height: auto;
  }
}

/* --- カスタマイズポイント（色・サイズはここで） --- */
:root {
  --pager-size: 10px;
  --pager-color: #c9c9c9;
  --pager-active: #333;
  --arrow-size: 44px;
  --arrow-bg: rgba(255, 255, 255, 0.9);
  --arrow-color: #111;
  --arrow-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.swiper-nav-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .swiper-nav-wrap {
    margin-top: 2.5641vw;
  }
}

/* ページャー（ドット） */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
}

.p-slide .swiper-pagination-bullets {
  bottom: -26px;
  /* ドットの上下位置 */
}

.p-slide .swiper-pagination-bullet {
  width: var(--pager-size);
  height: var(--pager-size);
  border: 1px solid #000;
  background-color: #fff;
  opacity: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.p-slide .swiper-pagination-bullet-active {
  background-color: #000;
  transform: scale(1.15);
}

/* 矢印 */
.p-slide .swiper-button-prev,
.p-slide .swiper-button-next {
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: var(--arrow-bg);
  color: var(--arrow-color);
  position: relative;
  right: 0;
  left: 0;
  margin: 0;
}

.p-slide.is-judy .swiper-button-prev {
  background: url("../images/arrow_left_blue.png") no-repeat center center/contain;
}
.p-slide.is-judy .swiper-button-prev:hover {
  background: url("../images/arrow_left_blue_hover.png") no-repeat center center/contain;
}

.p-slide.is-judy .swiper-button-next {
  background: url("../images/arrow_right_blue.png") no-repeat center center/contain;
}
.p-slide.is-judy .swiper-button-next:hover {
  background: url("../images/arrow_right_blue_hover.png") no-repeat center center/contain;
}

.p-slide.is-nick .swiper-button-prev {
  background: url("../images/arrow_left_orange.png") no-repeat center center/contain;
}
.p-slide.is-nick .swiper-button-prev:hover {
  background: url("../images/arrow_left_orange_hover.png") no-repeat center center/contain;
}

.p-slide.is-nick .swiper-button-next {
  background: url("../images/arrow_right_orange.png") no-repeat center center/contain;
}
.p-slide.is-nick .swiper-button-next:hover {
  background: url("../images/arrow_right_orange_hover.png") no-repeat center center/contain;
}

.p-slide .swiper-button-prev::after,
.p-slide .swiper-button-next::after {
  font-size: 18px;
  /* 矢印アイコンの大きさ */
  font-weight: 700;
}

/* 矢印のホバー */
.p-slide .swiper-button-prev:hover,
.p-slide .swiper-button-next:hover {
  transform: translateY(-1px);
}

/* 画像とテキストを一体化したカード風（任意） */
.p-slide__item {
  padding: 10px;
}

/* レスポンシブ微調整（任意） */
@media screen and (max-width: 1023px) {
  :root {
    --pager-size: 2.05128vw;
    --arrow-size: 7.69231vw;
  }

  .p-slide__text {
    font-size: 0.9rem;
  }

  .p-slide {
    width: 80.76923vw !important;
  }

  .p-slide__item {
    height: auto;
    display: block;
  }

  .swiper-wrapper {
    height: auto;
  }

  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.51282vw !important;
  }
}
.p-accessories {
  margin: 0 auto;
  width: 700px;
  text-align: center;
  position: relative;
}
.p-accessories + .p-accessories {
  margin-top: 250px;
}
.p-accessories__name {
  font-size: 48px;
  border: 5px solid #233C6A;
  background-color: #D7C0A2;
  line-height: 1;
  padding: .5em 1.2em;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(-5deg);
}
.p-accessories__name--02 {
  transform: translate(-50%, -50%) rotate(5deg);
}
.p-accessories__description {
  font-size: 24px;
  margin-top: 1.5em;
}
@media screen and (max-width: 1023px) {
  .p-accessories {
    width: 89.23077vw;
  }
  .p-accessories + .p-accessories {
    margin-top: 26.92308vw;
  }
  .p-accessories__name {
    font-size: 6.15385vw;
    border: 0.76923vw solid #233C6A;
  }
  .p-accessories__description {
    font-size: 4.61538vw;
    margin-top: 1em;
  }
}

.p-footer {
  margin: 0 auto;
  width: 335px;
  text-align: center;
  padding-bottom: 200px;
  margin-top: 260px;
}
.p-footer__button {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #233C6A;
  color: #fff;
  text-decoration: none;
}
.p-footer__button + .p-footer__button {
  margin-top: 35px;
}
.p-footer__textlink {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: #233C6A;
  margin-top: 35px;
}
.p-footer__textlink:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background-color: #233C6A;
}
.p-footer__pagetop {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #233C6A;
  margin-top: 100px;
}
.p-footer__pagetop img {
  width: 20px;
  display: block;
  margin-right: .5em;
}
.p-footer__copyright {
  font-size: 12px;
  margin-top: 101px;
}
@media screen and (max-width: 1023px) {
  .p-footer {
    width: 85.89744vw;
    padding-bottom: 5.64103vw;
    margin-top: 38.46154vw;
  }
  .p-footer__button {
    height: 16.66667vw;
  }
  .p-footer__button + .p-footer__button {
    margin-top: 7.69231vw;
  }
  .p-footer__textlink {
    font-size: 3.84615vw;
    margin-top: 8.97436vw;
  }
  .p-footer__textlink:before {
    bottom: -1.28205vw;
  }
  .p-footer__pagetop {
    font-size: 3.84615vw;
    margin-top: 15.38462vw;
  }
  .p-footer__pagetop img {
    width: 4.35897vw;
  }
  .p-footer__copyright {
    font-size: 2.05128vw;
  }
}
