@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");
}
@font-face {
  font-family: 'toystory';
  src: url("../fonts/BangoPro.woff") format("woff"), url("../fonts/BangoPro.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;
  font-weight: 700;
  background-color: #F9F7EF;
  color: #000;
}

.p-title {
  font-size: 3.64583vw;
  line-height: 1;
  font-family: "toystory", sans-serif;
  color: #C22D2F;
  text-align: center;
  margin-bottom: 2.60417vw;
}
.p-title--white {
  color: #fff;
}
.p-title--red {
  color: #C22D2F;
}
.p-title--blue {
  color: #1C4989;
}
@media screen and (max-width: 1023px) {
  .p-title {
    font-size: 9.23077vw;
  }
}

.p-text {
  font-size: 1.17187vw;
  font-weight: 400;
  line-height: 1.6666;
}
@media screen and (max-width: 1023px) {
  .p-text {
    font-size: 3.58974vw;
    line-height: 1.7;
  }
}

.p-introduction {
  background-color: #C22D2F;
  padding: 4.29687vw 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-introduction {
    padding: 12.82051vw 0;
  }
}

.p-launch {
  padding-top: 9.11458vw;
  padding-bottom: 9.11458vw;
  background-image: url("../images/border.webp"), url("../images/border.webp");
  background-position: center 0.97656vw, center bottom 0.97656vw;
  background-repeat: repeat-x, repeat-x;
  background-size: auto 1.82292vw, auto 1.82292vw;
}
@media screen and (max-width: 1023px) {
  .p-launch {
    padding-top: 28.20513vw;
    padding-bottom: 28.20513vw;
    background-position: center 2.5641vw, center bottom 2.5641vw;
    background-size: auto 5.38462vw, auto 5.38462vw;
  }
}

.p-launch-box {
  background-color: #fff;
  width: 49.47917vw;
  padding: 3.90625vw 0;
  margin: 0 auto;
  text-align: center;
}
.p-launch-box__date {
  font-size: 1.95312vw;
  margin-bottom: 2.08333vw;
  font-weight: 700;
  color: #1C4989;
}
.p-launch-box__caption {
  font-size: 0.91146vw;
  line-height: 1.4;
  margin-bottom: 2.60417vw;
  font-weight: 400;
}
.p-launch-box__button {
  display: block;
  text-indent: -9999px;
  background: url("../images/button.webp") no-repeat center center;
  width: 20.2474vw;
  height: 4.36198vw;
  background-size: 100% auto;
  display: block;
  margin: 0 auto;
  -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;
}
.p-launch-box__button:hover {
  border-radius: 0 50% 50% 0/0 0% 50% 0;
  transform-origin: left bottom;
}
@media screen and (max-width: 1023px) {
  .p-launch-box__button:hover {
    border-radius: 0 0 0 0/0 0 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-launch-box {
    width: 89.74359vw;
    padding: 12.82051vw 0;
  }
  .p-launch-box__date {
    font-size: 5.64103vw;
    margin-bottom: 6.41026vw;
  }
  .p-launch-box__caption {
    font-size: 3.07692vw;
    margin-bottom: 7.69231vw;
  }
  .p-launch-box__button {
    background: url("../images/button_sp.webp") no-repeat center center/contain;
    width: 71.53846vw;
    height: 15.38462vw;
  }
}

.p-lineup {
  margin-top: 5.20833vw;
  text-align: center;
  margin-bottom: 3.25521vw;
}
.p-lineup__price {
  width: 23.4375vw;
  margin: 0 auto;
  margin-bottom: 1.6276vw;
}
.p-lineup__text {
  font-size: 0.91146vw;
  line-height: 1.7;
  font-weight: 400;
}
.p-lineup__text span {
  font-size: 0.78125vw;
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-lineup {
    margin-bottom: 10.25641vw;
    margin-top: 20.51282vw;
  }
  .p-lineup__price {
    width: 47.17949vw;
  }
  .p-lineup__text {
    font-size: 3.58974vw;
  }
  .p-lineup__text span {
    font-size: 3.07692vw;
  }
}

.p-section-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.91146vw;
  justify-content: center;
  align-items: stretch;
  width: 54.29687vw;
  margin: 0 auto;
}
.p-section-menu__item {
  width: 17.44792vw;
}
.p-section-menu__item[data-inview] {
  transition: none;
}
.p-section-menu__item[data-inview].is-inview:nth-child(1) {
  animation-delay: 0s;
}
.p-section-menu__item[data-inview].is-inview:nth-child(2) {
  animation-delay: 0.1s;
}
.p-section-menu__item[data-inview].is-inview:nth-child(3) {
  animation-delay: 0.2s;
}
.p-section-menu__item[data-inview].is-inview:nth-child(4) {
  animation-delay: 0.3s;
}
.p-section-menu__item[data-inview].is-inview:nth-child(5) {
  animation-delay: 0.4s;
}
.p-section-menu__item[data-inview].is-inview:nth-child(6) {
  animation-delay: 0.5s;
}
.p-section-menu__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-section-menu__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0.45573vw;
  background: url("../images/menu_arrow.webp") no-repeat center center/contain;
  width: 1.43229vw;
  height: 0.84635vw;
  transform: translate(-50%, 0);
}
.p-section-menu__link:hover::before {
  animation: fuwafuwa 1s linear infinite;
}
.p-section-menu__image {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-section-menu__list {
    gap: 7.17949vw;
    width: 89.74359vw;
  }
  .p-section-menu__item {
    width: 41.02564vw;
    margin-top: -2.5641vw;
  }
  .p-section-menu__item[data-inview] {
    transition: none;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(1) {
    animation-delay: 0s;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(2) {
    animation-delay: 0.1s;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(3) {
    animation-delay: 0.2s;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(4) {
    animation-delay: 0.3s;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(5) {
    animation-delay: 0.4s;
  }
  .p-section-menu__item[data-inview].is-inview:nth-child(6) {
    animation-delay: 0.5s;
  }
  .p-section-menu__link::before {
    width: 4.30769vw;
    height: 2.5641vw;
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -5px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.p-item-area {
  background-image: url("../images/background_item.webp");
  background-repeat: repeat;
  background-position: center top;
  background-size: 35.80729vw 17.70833vw;
  padding: 6.51042vw 0 14.97396vw;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.p-item-area:before {
  content: "";
  display: block;
  width: 100%;
  height: 9.17969vw;
  background: url("../images/accesory_background_pc_head.webp") no-repeat center bottom/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-item-area__inner {
  width: 72.91667vw;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .p-item-area {
    padding: 20.51282vw 0 38.46154vw;
  }
  .p-item-area:before {
    background: url("../images/accesory_background_sp_head.webp") no-repeat center bottom/contain;
    width: 100%;
    height: 19.48718vw;
  }
  .p-item-area__inner {
    width: 89.74359vw;
  }
}

.p-character + .p-character {
  margin-top: 7.8125vw;
}
.p-character__board {
  width: 72.91667vw;
  height: 27.99479vw;
  background: url("../images/board_pc.webp") no-repeat center center/contain;
  margin-bottom: 3.90625vw;
  position: relative;
}
.p-character__board__photo {
  position: absolute;
  left: 10.35156vw;
  top: 1.5625vw;
  width: 22.78646vw;
  display: block;
  z-index: 1;
}
.p-character__board__name {
  position: absolute;
  left: 34.17969vw;
  top: 4.36198vw;
  width: 29.36198vw;
  z-index: 1;
}
.p-character__board__sticker {
  position: absolute;
  z-index: 2;
}
.p-character__board__sticker_01_01 {
  width: 26.04167vw;
  height: 16.27604vw;
  background-image: url("../images/sticker-woody_1.png");
  background-repeat: no-repeat;
  background-size: 625vw 16.27604vw;
  background-position: 0 0;
  left: -10.80729vw;
  top: -6.83594vw;
}
.p-character__board__sticker_01_01.is-animating {
  animation: sprite-animation-01_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-01_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -598.95833vw 0;
  }
}
.p-character__board__sticker_01_02 {
  width: 20.96354vw;
  height: 19.20573vw;
  background-image: url("../images/sticker-woody_2.png");
  background-repeat: no-repeat;
  background-size: 503.125vw 19.20573vw;
  background-position: 0 0;
  left: -9.89583vw;
  top: 1.36719vw;
}
.p-character__board__sticker_01_02.is-animating {
  animation: sprite-animation-01_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-01_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -482.16146vw 0;
  }
}
.p-character__board__sticker_01_03 {
  width: 26.04167vw;
  height: 26.04167vw;
  background-image: url("../images/sticker-woody_3.png");
  background-repeat: no-repeat;
  background-size: 625vw 26.04167vw;
  background-position: 0 0;
  left: 47.07031vw;
  top: 1.95312vw;
}
.p-character__board__sticker_01_03.is-animating {
  animation: sprite-animation-01_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-01_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -598.95833vw 0;
  }
}
.p-character__board__sticker_02_01 {
  width: 21.15885vw;
  height: 22.78646vw;
  background-image: url("../images/sticker-bo-peep_1.png");
  background-repeat: no-repeat;
  background-size: 507.8125vw 22.78646vw;
  background-position: 0 0;
  left: -8.78906vw;
  top: -9.63542vw;
}
.p-character__board__sticker_02_01.is-animating {
  animation: sprite-animation-02_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-02_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -486.65365vw 0;
  }
}
.p-character__board__sticker_02_02 {
  width: 11.39323vw;
  height: 11.39323vw;
  background-image: url("../images/sticker-bo-peep_2.png");
  background-repeat: no-repeat;
  background-size: 273.4375vw 11.39323vw;
  background-position: 0 0;
  left: 0.26042vw;
  top: 7.94271vw;
}
.p-character__board__sticker_02_02.is-animating {
  animation: sprite-animation-02_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-02_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -262.04427vw 0;
  }
}
.p-character__board__sticker_02_03 {
  width: 7.48698vw;
  height: 7.16146vw;
  background-image: url("../images/sticker-bo-peep_3.png");
  background-repeat: no-repeat;
  background-size: 179.6875vw 7.16146vw;
  background-position: 0 0;
  left: -0.65104vw;
  top: 13.80208vw;
}
.p-character__board__sticker_02_03.is-animating {
  animation: sprite-animation-02_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-02_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -172.20052vw 0;
  }
}
.p-character__board__sticker_02_04 {
  width: 24.41406vw;
  height: 22.78646vw;
  background-image: url("../images/sticker-bo-peep_4.png");
  background-repeat: no-repeat;
  background-size: 585.9375vw 22.78646vw;
  background-position: 0 0;
  left: 46.9401vw;
  top: 4.55729vw;
}
.p-character__board__sticker_02_04.is-animating {
  animation: sprite-animation-02_04 1s steps(23) forwards;
  animation-delay: 0.45s;
}
@keyframes sprite-animation-02_04 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -561.52344vw 0;
  }
}
.p-character__board__sticker_03_01 {
  width: 20.18229vw;
  height: 18.88021vw;
  background-image: url("../images/sticker-buzz_1.png");
  background-repeat: no-repeat;
  background-size: 484.375vw 18.88021vw;
  background-position: 0 0;
  left: -8.46354vw;
  top: -5.85937vw;
}
.p-character__board__sticker_03_01.is-animating {
  animation: sprite-animation-03_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-03_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -464.19271vw 0;
  }
}
.p-character__board__sticker_03_02 {
  width: 22.78646vw;
  height: 19.53125vw;
  background-image: url("../images/sticker-buzz_2.png");
  background-repeat: no-repeat;
  background-size: 546.875vw 19.53125vw;
  background-position: 0 0;
  left: -10.28646vw;
  top: 2.60417vw;
}
.p-character__board__sticker_03_02.is-animating {
  animation: sprite-animation-03_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-03_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -524.08854vw 0;
  }
}
.p-character__board__sticker_03_03 {
  width: 22.78646vw;
  height: 23.4375vw;
  background-image: url("../images/sticker-buzz_3.png");
  background-repeat: no-repeat;
  background-size: 546.875vw 23.4375vw;
  background-position: 0 0;
  left: 49.15365vw;
  top: 4.10156vw;
}
.p-character__board__sticker_03_03.is-animating {
  animation: sprite-animation-03_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-03_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -524.08854vw 0;
  }
}
.p-character__board__sticker_04_01 {
  width: 26.04167vw;
  height: 21.8099vw;
  background-image: url("../images/sticker-alien_1.png");
  background-repeat: no-repeat;
  background-size: 625vw 21.8099vw;
  background-position: 0 0;
  left: -10.67708vw;
  top: -9.96094vw;
}
.p-character__board__sticker_04_01.is-animating {
  animation: sprite-animation-04_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-04_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -598.95833vw 0;
  }
}
.p-character__board__sticker_04_02 {
  width: 14.64844vw;
  height: 11.71875vw;
  background-image: url("../images/sticker-alien_2.png");
  background-repeat: no-repeat;
  background-size: 351.5625vw 11.71875vw;
  background-position: 0 0;
  left: -3.64583vw;
  top: 6.57552vw;
}
.p-character__board__sticker_04_02.is-animating {
  animation: sprite-animation-04_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-04_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -336.91406vw 0;
  }
}
.p-character__board__sticker_04_03 {
  width: 22.78646vw;
  height: 24.41406vw;
  background-image: url("../images/sticker-alien_3.png");
  background-repeat: no-repeat;
  background-size: 546.875vw 24.41406vw;
  background-position: 0 0;
  left: 49.60937vw;
  top: 3.32031vw;
}
.p-character__board__sticker_04_03.is-animating {
  animation: sprite-animation-04_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-04_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -524.08854vw 0;
  }
}
.p-character__board__sticker_05_01 {
  width: 21.8099vw;
  height: 17.90365vw;
  background-image: url("../images/sticker-hamm_1.png");
  background-repeat: no-repeat;
  background-size: 523.4375vw 17.90365vw;
  background-position: 0 0;
  left: -8.59375vw;
  top: -6.3151vw;
}
.p-character__board__sticker_05_01.is-animating {
  animation: sprite-animation-05_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-05_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -501.6276vw 0;
  }
}
.p-character__board__sticker_05_02 {
  width: 19.53125vw;
  height: 17.90365vw;
  background-image: url("../images/sticker-hamm_2.png");
  background-repeat: no-repeat;
  background-size: 468.75vw 17.90365vw;
  background-position: 0 0;
  left: -8.26823vw;
  top: 3.32031vw;
}
.p-character__board__sticker_05_02.is-animating {
  animation: sprite-animation-05_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-05_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -449.21875vw 0;
  }
}
.p-character__board__sticker_05_03 {
  width: 23.11198vw;
  height: 22.78646vw;
  background-image: url("../images/sticker-hamm_3.png");
  background-repeat: no-repeat;
  background-size: 554.6875vw 22.78646vw;
  background-position: 0 0;
  left: 49.41406vw;
  top: 4.36198vw;
}
.p-character__board__sticker_05_03.is-animating {
  animation: sprite-animation-05_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-05_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -531.57552vw 0;
  }
}
.p-character__board__sticker_06_01 {
  width: 22.78646vw;
  height: 17.90365vw;
  background-image: url("../images/sticker-rex_1.png");
  background-repeat: no-repeat;
  background-size: 546.875vw 17.90365vw;
  background-position: 0 0;
  left: -8.33333vw;
  top: -7.35677vw;
}
.p-character__board__sticker_06_01.is-animating {
  animation: sprite-animation-06_01 1s steps(23) forwards;
  animation-delay: 0s;
}
@keyframes sprite-animation-06_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -524.08854vw 0;
  }
}
.p-character__board__sticker_06_02 {
  width: 19.53125vw;
  height: 13.02083vw;
  background-image: url("../images/sticker-rex_2.png");
  background-repeat: no-repeat;
  background-size: 468.75vw 13.02083vw;
  background-position: 0 0;
  left: -7.68229vw;
  top: 4.94792vw;
}
.p-character__board__sticker_06_02.is-animating {
  animation: sprite-animation-06_02 1s steps(23) forwards;
  animation-delay: 0.15s;
}
@keyframes sprite-animation-06_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -449.21875vw 0;
  }
}
.p-character__board__sticker_06_03 {
  width: 22.78646vw;
  height: 22.78646vw;
  background-image: url("../images/sticker-rex_3.png");
  background-repeat: no-repeat;
  background-size: 546.875vw 22.78646vw;
  background-position: 0 0;
  left: 49.86979vw;
  top: 4.42708vw;
}
.p-character__board__sticker_06_03.is-animating {
  animation: sprite-animation-06_03 1s steps(23) forwards;
  animation-delay: 0.3s;
}
@keyframes sprite-animation-06_03 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -524.08854vw 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-character__board__sticker_01_01 {
    width: 58.71795vw;
    height: 36.66667vw;
    background-image: url("../images/sticker-woody_1.png");
    background-repeat: no-repeat;
    background-size: 1409.23077vw 36.66667vw;
    background-position: 0 0;
    left: -23.84615vw;
    top: -15.12821vw;
  }
  .p-character__board__sticker_01_01.is-animating {
    animation: sprite-animation-01_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-01_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1350.51282vw 0;
    }
  }
  .p-character__board__sticker_01_02 {
    width: 49.48718vw;
    height: 45.38462vw;
    background-image: url("../images/sticker-woody_2.png");
    background-repeat: no-repeat;
    background-size: 1187.69231vw 45.38462vw;
    background-position: 0 0;
    left: 37.69231vw;
    top: -14.61538vw;
  }
  .p-character__board__sticker_01_02.is-animating {
    animation: sprite-animation-01_02_sp 1s steps(23) forwards;
    animation-delay: 0.15s;
  }
  @keyframes sprite-animation-01_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1138.20513vw 0;
    }
  }
  .p-character__board__sticker_01_03 {
    width: 61.53846vw;
    height: 61.53846vw;
    background-image: url("../images/sticker-woody_3.png");
    background-repeat: no-repeat;
    background-size: 1476.92308vw 61.53846vw;
    background-position: 0 0;
    left: 28.46154vw;
    top: 43.07692vw;
  }
  .p-character__board__sticker_01_03.is-animating {
    animation: sprite-animation-01_03_sp 1s steps(23) forwards;
    animation-delay: 0.3s;
  }
  @keyframes sprite-animation-01_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1415.38462vw 0;
    }
  }
  .p-character__board__sticker_02_01 {
    width: 50vw;
    height: 53.84615vw;
    background-image: url("../images/sticker-bo-peep_1.png");
    background-repeat: no-repeat;
    background-size: 1200vw 53.84615vw;
    background-position: 0 0;
    left: -19.74359vw;
    top: -21.02564vw;
  }
  .p-character__board__sticker_02_01.is-animating {
    animation: sprite-animation-02_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-02_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1150vw 0;
    }
  }
  .p-character__board__sticker_02_02 {
    width: 34.87179vw;
    height: 34.87179vw;
    background-image: url("../images/sticker-bo-peep_2.png");
    background-repeat: no-repeat;
    background-size: 836.92308vw 34.87179vw;
    background-position: 0 0;
    left: 54.35897vw;
    top: -10vw;
  }
  .p-character__board__sticker_02_02.is-animating {
    animation: sprite-animation-02_02_sp 1s steps(23) forwards;
    animation-delay: 0.15s;
  }
  @keyframes sprite-animation-02_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -802.05128vw 0;
    }
  }
  .p-character__board__sticker_02_03 {
    width: 29.48718vw;
    height: 28.20513vw;
    background-image: url("../images/sticker-bo-peep_3.png");
    background-repeat: no-repeat;
    background-size: 707.69231vw 28.20513vw;
    background-position: 0 0;
    left: 57.4359vw;
    top: 9.74359vw;
  }
  .p-character__board__sticker_02_03.is-animating {
    animation: sprite-animation-02_03_sp 1s steps(23) forwards;
    animation-delay: 0.3s;
  }
  @keyframes sprite-animation-02_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -678.20513vw 0;
    }
  }
  .p-character__board__sticker_02_04 {
    width: 57.69231vw;
    height: 53.84615vw;
    background-image: url("../images/sticker-bo-peep_4.png");
    background-repeat: no-repeat;
    background-size: 1384.61538vw 53.84615vw;
    background-position: 0 0;
    left: 29.48718vw;
    top: 47.69231vw;
  }
  .p-character__board__sticker_02_04.is-animating {
    animation: sprite-animation-02_04_sp 1s steps(23) forwards;
    animation-delay: 0.45s;
  }
  @keyframes sprite-animation-02_04_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1326.92308vw 0;
    }
  }
  .p-character__board__sticker_03_01 {
    width: 49.48718vw;
    height: 46.41026vw;
    background-image: url("../images/sticker-buzz_1.png");
    background-repeat: no-repeat;
    background-size: 1187.69231vw 46.41026vw;
    background-position: 0 0;
    left: -20.51282vw;
    top: -14.61538vw;
  }
  .p-character__board__sticker_03_01.is-animating {
    animation: sprite-animation-03_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-03_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1138.20513vw 0;
    }
  }
  .p-character__board__sticker_03_02 {
    width: 64.61538vw;
    height: 55.89744vw;
    background-image: url("../images/sticker-buzz_2.png");
    background-repeat: no-repeat;
    background-size: 1550.76923vw 55.89744vw;
    background-position: 0 0;
    left: 26.15385vw;
    top: -22.82051vw;
  }
  .p-character__board__sticker_03_02.is-animating {
    animation: sprite-animation-03_02_sp 1s steps(23) forwards;
    animation-delay: 0.15s;
  }
  @keyframes sprite-animation-03_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1486.15385vw 0;
    }
  }
  .p-character__board__sticker_03_03 {
    width: 53.84615vw;
    height: 55.38462vw;
    background-image: url("../images/sticker-buzz_3.png");
    background-repeat: no-repeat;
    background-size: 1292.30769vw 55.38462vw;
    background-position: 0 0;
    left: 33.84615vw;
    top: 44.61538vw;
  }
  .p-character__board__sticker_03_03.is-animating {
    animation: sprite-animation-03_03_sp 1s steps(23) forwards;
    animation-delay: 0.3s;
  }
  @keyframes sprite-animation-03_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1238.46154vw 0;
    }
  }
  .p-character__board__sticker_04_01 {
    width: 60.25641vw;
    height: 50.51282vw;
    background-image: url("../images/sticker-alien_1.png");
    background-repeat: no-repeat;
    background-size: 1446.15385vw 50.51282vw;
    background-position: 0 0;
    left: -24.35897vw;
    top: -21.28205vw;
  }
  .p-character__board__sticker_04_01.is-animating {
    animation: sprite-animation-04_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-04_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1385.89744vw 0;
    }
  }
  .p-character__board__sticker_04_02 {
    width: 49.48718vw;
    height: 39.48718vw;
    background-image: url("../images/sticker-alien_2.png");
    background-repeat: no-repeat;
    background-size: 1187.69231vw 39.48718vw;
    background-position: 0 0;
    left: 39.23077vw;
    top: -12.82051vw;
  }
  .p-character__board__sticker_04_02.is-animating {
    animation: sprite-animation-04_02_sp 1s steps(23) forwards;
    animation-delay: 0.15s;
  }
  @keyframes sprite-animation-04_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1138.20513vw 0;
    }
  }
  .p-character__board__sticker_04_03 {
    width: 53.84615vw;
    height: 57.69231vw;
    background-image: url("../images/sticker-alien_3.png");
    background-repeat: no-repeat;
    background-size: 1292.30769vw 57.69231vw;
    background-position: 0 0;
    left: 35.12821vw;
    top: 43.58974vw;
  }
  .p-character__board__sticker_04_03.is-animating {
    animation: sprite-animation-04_03_sp 1s steps(23) forwards;
    animation-delay: 0.3s;
  }
  @keyframes sprite-animation-04_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1238.46154vw 0;
    }
  }
  .p-character__board__sticker_05_01 {
    width: 57.17949vw;
    height: 46.92308vw;
    background-image: url("../images/sticker-hamm_1.png");
    background-repeat: no-repeat;
    background-size: 1372.30769vw 46.92308vw;
    background-position: 0 0;
    left: -22.30769vw;
    top: -16.66667vw;
  }
  .p-character__board__sticker_05_01.is-animating {
    animation: sprite-animation-05_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-05_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1315.12821vw 0;
    }
  }
  .p-character__board__sticker_05_02 {
    width: 45.12821vw;
    height: 41.28205vw;
    background-image: url("../images/sticker-hamm_2.png");
    background-repeat: no-repeat;
    background-size: 1083.07692vw 41.28205vw;
    background-position: 0 0;
    left: 43.58974vw;
    top: -14.35897vw;
  }
  .p-character__board__sticker_05_02.is-animating {
    animation: sprite-animation-05_02_sp 1s steps(23) forwards;
    animation-delay: 0.15s;
  }
  @keyframes sprite-animation-05_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1037.94872vw 0;
    }
  }
  .p-character__board__sticker_05_03 {
    width: 54.61538vw;
    height: 53.84615vw;
    background-image: url("../images/sticker-hamm_3.png");
    background-repeat: no-repeat;
    background-size: 1310.76923vw 53.84615vw;
    background-position: 0 0;
    left: 34.10256vw;
    top: 48.46154vw;
  }
  .p-character__board__sticker_05_03.is-animating {
    animation: sprite-animation-05_03_sp 1s steps(23) forwards;
    animation-delay: 0.3s;
  }
  @keyframes sprite-animation-05_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1256.15385vw 0;
    }
  }
  .p-character__board__sticker_06_01 {
    width: 64.35897vw;
    height: 50.51282vw;
    background-image: url("../images/sticker-rex_1.png");
    background-repeat: no-repeat;
    background-size: 1544.61538vw 50.51282vw;
    background-position: 0 0;
    left: -24.61538vw;
    top: -21.53846vw;
  }
  .p-character__board__sticker_06_01.is-animating {
    animation: sprite-animation-06_01_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-06_01_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1480.25641vw 0;
    }
  }
  .p-character__board__sticker_06_02 {
    width: 48.71795vw;
    height: 32.5641vw;
    background-image: url("../images/sticker-rex_2.png");
    background-repeat: no-repeat;
    background-size: 1169.23077vw 32.5641vw;
    background-position: 0 0;
    left: 41.02564vw;
    top: -10vw;
  }
  .p-character__board__sticker_06_02.is-animating {
    animation: sprite-animation-06_02_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-06_02_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1120.51282vw 0;
    }
  }
  .p-character__board__sticker_06_03 {
    width: 53.84615vw;
    height: 53.84615vw;
    background-image: url("../images/sticker-rex_3.png");
    background-repeat: no-repeat;
    background-size: 1292.30769vw 53.84615vw;
    background-position: 0 0;
    left: 34.10256vw;
    top: 49.23077vw;
  }
  .p-character__board__sticker_06_03.is-animating {
    animation: sprite-animation-06_03_sp 1s steps(23) forwards;
    animation-delay: 0s;
  }
  @keyframes sprite-animation-06_03_sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1238.46154vw 0;
    }
  }
}
.p-character__content {
  display: flex;
  gap: 2.60417vw;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}
.p-character__content.is-inview > .p-character__item {
  opacity: 0;
  transform: translate(0, 0.32552vw);
}
.p-character__content.is-inview > .p-character__item:nth-child(1) {
  animation: inview-slidein 0.8s ease-out forwards;
  animation-delay: 0s;
}
.p-character__content.is-inview > .p-character__item:nth-child(2) {
  animation: inview-slidein 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
.p-character__item {
  width: 35.15625vw;
  height: 40.10417vw;
  background: url("../images/paper_pc.webp") no-repeat center center/contain;
  padding-top: 4.23177vw;
  opacity: 0;
  transform: translate(0, 0.32552vw);
}
.p-character__item:nth-of-type(2n) {
  margin-top: 4.55729vw;
}
.p-character:nth-of-type(2n) .p-character__content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-character + .p-character {
    margin-top: 20.51282vw;
  }
  .p-character__board {
    width: 89.74359vw;
    height: 131.28205vw;
    margin-bottom: 7.69231vw;
    background: url("../images/board_sp.webp") no-repeat center center/contain;
  }
  .p-character__board__photo {
    position: absolute;
    left: 12.30769vw;
    top: 10vw;
    width: 64.61538vw;
  }
  .p-character__board__name {
    left: 7.94872vw;
    top: 86.15385vw;
    width: 73.33333vw;
  }
  .p-character__content {
    display: flex;
    gap: 7.69231vw;
    flex-direction: column;
  }
  .p-character__content.is-inview > .p-character__item {
    opacity: 0;
    transform: translate(0, 1.28205vw);
  }
  .p-character__content.is-inview > .p-character__item:nth-child(1) {
    animation: inview-slidein-sp 0.8s ease-out forwards;
    animation-delay: 0s;
  }
  .p-character__content.is-inview > .p-character__item:nth-child(2) {
    animation: inview-slidein-sp 0.8s ease-out forwards;
    animation-delay: 0.15s;
  }
  .p-character__item {
    width: 89.74359vw;
    height: 134.10256vw;
    background: url("../images/paper_sp.webp") no-repeat center center/contain;
    padding-top: 13.07692vw;
    opacity: 0;
    transform: translate(0, 1.28205vw);
  }
  .p-character__item:nth-of-type(2n) {
    margin-top: 0;
  }
  .p-character:nth-of-type(2n) .p-character__content {
    flex-direction: column;
  }
}

.p-item {
  text-align: center;
}
.p-item__color {
  font-size: 1.17187vw;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65104vw;
}
.p-item__circle {
  display: inline-block;
  width: 1.5625vw;
  height: 1.5625vw;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: var(--circle-color);
}
.p-item__model {
  margin-top: 0.97656vw;
  font-size: 1.17187vw;
  font-weight: 400;
  text-align: center;
  font-family: "jins", sans-serif;
}
.p-item__button {
  display: block;
  margin: 0 auto;
  width: 20.2474vw;
  height: 4.36198vw;
  background: url("../images/button_buy.webp") no-repeat center center/contain;
  overflow: hidden;
  margin-top: 1.04167vw;
  -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;
}
.p-item__button:hover {
  border-radius: 0 50% 50% 0/0 0% 50% 0;
  transform-origin: left bottom;
}
@media screen and (max-width: 1023px) {
  .p-item__button:hover {
    border-radius: 0 0 0 0/0 0 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-item__color {
    font-size: 3.58974vw;
    gap: 2.05128vw;
  }
  .p-item__circle {
    width: 3.58974vw;
    height: 3.58974vw;
  }
  .p-item__model {
    font-size: 3.58974vw;
    margin-top: 5.12821vw;
  }
  .p-item__button {
    width: 71.28205vw;
    height: 15.38462vw;
    margin-top: 5.64103vw;
  }
}

.p-accessories {
  padding-top: 3.84115vw;
  padding-bottom: 7.22656vw;
  background: url("../images/accesory_background_pc_content.webp") no-repeat center top;
  background-size: 100% auto;
  height: 51.43229vw;
  position: relative;
}
.p-accessories .p-title {
  margin-bottom: 1.95312vw;
}
.p-accessories__inner {
  width: 70.3125vw;
  margin: 0 auto;
}
.p-accessories__box {
  background-color: #fff;
  border-radius: 1.95312vw;
  border: 0.65104vw solid #1C4989;
  padding: 3.0599vw 0 4.23177vw 0;
  width: 70.3125vw;
  text-align: center;
}
.p-accessories__text {
  font-size: 1.17187vw;
  font-weight: 700;
  margin-bottom: 2.08333vw;
  line-height: 1.4;
  margin-top: -0.65104vw;
}
.p-accessories__text span {
  display: block;
  font-size: 0.91146vw;
  margin-top: 0.39062vw;
}
.p-accessories__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.p-accessories__item {
  width: auto;
}
.p-accessories__image {
  display: block;
  width: auto;
  height: 17.57812vw;
}
.p-accessories__name {
  font-size: 1.17187vw;
  font-weight: 700;
  margin-top: 0.97656vw;
}
@media screen and (max-width: 1023px) {
  .p-accessories {
    padding-top: 11.53846vw;
    padding-bottom: 13.58974vw;
    background-size: auto 3.84615vw;
    background: url("../images/accesory_background_sp_content.webp") no-repeat center top;
    background-size: 100% auto;
    height: 265.25641vw;
  }
  .p-accessories__inner {
    width: 89.74359vw;
  }
  .p-accessories__box {
    border-radius: 2.5641vw;
    border: 0.51282vw solid #1C4989;
    padding: 12.30769vw 0 13.07692vw 0;
    margin: 0 auto;
    width: 89.74359vw;
  }
  .p-accessories .p-title {
    margin-bottom: 6.66667vw;
  }
  .p-accessories__text {
    font-size: 4.10256vw;
    margin-bottom: 5.64103vw;
    line-height: 1.4;
    margin-top: 0vw;
  }
  .p-accessories__text span {
    font-size: 3.07692vw;
    line-height: 1.2;
    margin-top: 2.5641vw;
  }
  .p-accessories__list {
    gap: 8.97436vw;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .p-accessories__image {
    height: auto;
    width: 64.10256vw;
  }
  .p-accessories__image--01 {
    width: 61.53846vw;
  }
  .p-accessories__image--02 {
    width: 51.28205vw;
  }
  .p-accessories__image--03 {
    width: 51.28205vw;
  }
  .p-accessories__name {
    font-size: 3.58974vw;
    margin-top: 1.53846vw;
  }
}

@keyframes inview-slidein {
  0% {
    transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes inview-slidein-sp {
  0% {
    transform: translate(0, 25px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
[data-inview] {
  opacity: 0;
  transform: translate(0, 0.32552vw);
}
[data-inview].is-inview {
  animation: inview-slidein 0.8s ease-out forwards;
}
@media screen and (max-width: 1023px) {
  [data-inview] {
    transform: translate(0, 1.28205vw);
  }
  [data-inview].is-inview {
    animation: inview-slidein-sp 0.8s ease-out forwards;
  }
}

.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;
}

@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-slide {
  width: 34.76562vw;
  margin: 0 auto;
  margin-top: 2.27865vw;
  position: relative;
}
.p-slide__image {
  display: block;
  width: 30.59896vw;
  margin: 0 auto;
  margin-bottom: 1.5625vw;
}
.p-slide__text {
  text-align: left;
  font-size: 1.04167vw;
  font-weight: 400;
  color: #000;
  width: 30.59896vw;
  height: 4.10156vw;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .p-slide {
    width: 86.66667vw;
    margin-top: 7.69231vw;
  }
  .p-slide__image {
    width: 77.94872vw;
    margin-bottom: 7.17949vw;
  }
  .p-slide__text {
    width: 77.94872vw;
    height: 16.66667vw;
  }
}

/* --- カスタマイズポイント（色・サイズはここで） --- */
:root {
  --pager-size: 10px;
  --pager-color: #c9c9c9;
  --pager-active: #333;
  --arrow-size: 1.82292vw;
  --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;
}

/* 矢印 */
.p-slide .swiper-button-prev {
  background: url("../images/arrow_left_pc.webp") no-repeat center center/contain;
}
@media screen and (max-width: 1023px) {
  .p-slide .swiper-button-prev {
    background: url("../images/arrow_left_sp.webp") no-repeat center center/contain;
  }
}

.p-slide .swiper-button-next {
  background: url("../images/arrow_right_pc.webp") no-repeat center center/contain;
}
@media screen and (max-width: 1023px) {
  .p-slide .swiper-button-next {
    background: url("../images/arrow_right_sp.webp") no-repeat center center/contain;
  }
}

.p-slide .swiper-button-prev,
.p-slide .swiper-button-next {
  width: var(--arrow-size);
  height: var(--arrow-size);
  color: var(--arrow-color);
  position: absolute;
  margin: 0;
  top: 5.72917vw;
}
@media screen and (max-width: 1023px) {
  .p-slide .swiper-button-prev,
  .p-slide .swiper-button-next {
    top: 13.58974vw;
    width: 2.4359vw;
    height: 6.41026vw;
  }
}

.p-slide .swiper-button-prev {
  left: 0vw;
}

.p-slide .swiper-button-next {
  right: 0vw;
}

/* レスポンシブ微調整（任意） */
@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: 86.66667vw !important;
    margin-top: 7.69231vw;
  }

  .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-footer {
  padding: 6.51042vw 0 7.8125vw;
  text-align: center;
  background-image: url("../images/border.webp");
  background-position: center bottom 0.97656vw;
  background-repeat: repeat-x;
  background-size: auto 1.82292vw;
}
.p-footer__copyright {
  width: 5.72917vw;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-footer {
    padding: 20.51282vw 0 25.64103vw;
    background-position: center bottom 2.5641vw;
    background-size: auto 5.38462vw;
  }
  .p-footer__copyright {
    width: 22.5641vw;
  }
}

.p-button {
  display: block;
  width: 20.2474vw;
  height: 4.36198vw;
  color: #fff;
  text-decoration: none;
  font-size: 1.17187vw;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: url("../images/button_back.webp") no-repeat center center/contain;
  overflow: hidden;
  -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;
}
.p-button:hover {
  border-radius: 0 50% 50% 0/0 0% 50% 0;
  transform-origin: left bottom;
}
@media screen and (max-width: 1023px) {
  .p-button:hover {
    border-radius: 0 0 0 0/0 0 0 0;
  }
}
.p-button--01 {
  margin-bottom: 4.55729vw;
}
.p-button--02 {
  margin-bottom: 3.71094vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.78125vw;
}
@media screen and (max-width: 1023px) {
  .p-button {
    width: 71.53846vw;
    height: 15.38462vw;
    font-size: 4.48718vw;
  }
  .p-button--01 {
    margin-bottom: 9.74359vw;
  }
  .p-button--02 {
    margin-bottom: 14.87179vw;
  }
}

.p-text-button {
  display: inline-block;
  font-size: 1.17187vw;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  -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;
}
.p-text-button:hover {
  opacity: 0.5 !important;
}
.p-text-button--01 {
  margin-bottom: 3.97135vw;
}
.p-text-button--02 {
  margin-bottom: 5.85937vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.78125vw;
}
.p-text-button--02:before {
  content: "";
  display: block;
  width: 1.5625vw;
  height: 1.5625vw;
  background: url("../images/icon_arrow.webp") no-repeat center center/contain;
}
@media screen and (max-width: 1023px) {
  .p-text-button {
    font-size: 3.58974vw;
  }
  .p-text-button--01 {
    margin-bottom: 10.25641vw;
  }
  .p-text-button--02 {
    margin-bottom: 23.07692vw;
    gap: 2.30769vw;
  }
  .p-text-button--02:before {
    content: "";
    display: block;
    width: 4.10256vw;
    height: 4.10256vw;
    background: url("../images/icon_arrow.webp") no-repeat center center/contain;
  }
}
