@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-05s {
  animation-delay: 0.51s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-15s {
  animation-delay: 1.5s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-25s {
  animation-delay: 2.5s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: bottom center;
  animation-name: swing;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  animation-duration: 8s !important;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(1000px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(1000px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(1000px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(1000px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -15deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 15deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/*メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #5E5E5E;
  scroll-behavior: smooth;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

* {
  box-sizing: border-box;
}

/*リセット
--------------------------------------------*/
.wrap {
  overflow: clip;
}

div.fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  div.fv {
    width: 100%;
    height: 87dvh;
  }
}
@media screen and (min-width: 769px) {
  div.fv {
    width: 100%;
    height: 89dvh;
  }
}
div.fv::before {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  div.fv::before {
    height: 0.8417508418%;
  }
}
@media screen and (min-width: 769px) {
  div.fv::before {
    height: 0.8488964346%;
  }
}
div.fv::after {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  div.fv::after {
    height: 0.1683501684%;
    top: 1.5151515152%;
  }
}
@media screen and (min-width: 769px) {
  div.fv::after {
    height: 0.1697792869%;
    top: 1.5280135823%;
  }
}
div.fv h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  div.fv h1 {
    width: 97.8666666667%;
    top: 4.3771043771%;
  }
}
@media screen and (min-width: 769px) {
  div.fv h1 {
    width: 44.3333333333%;
    top: 2.5466893039%;
  }
}
div.fv .loop {
  position: absolute;
  z-index: 2;
  left: 0;
}
@media screen and (max-width: 768px) {
  div.fv .loop {
    top: 20.8754208754%;
    height: 39.898989899%;
  }
}
@media screen and (min-width: 769px) {
  div.fv .loop {
    top: 27.1646859083%;
    height: 52.1222410866%;
  }
}
div.fv .loop .images {
  display: inline-block;
  white-space: wrap;
  height: 100%;
}
div.fv .loop .images img {
  height: 100%;
  width: auto;
}
div.fv .loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
@keyframes scroll { /* スクロールアニメーション */
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
div.fv .loop .images {
  display: flex;
  animation: scroll 30s linear infinite;
  width: 200%; /* 2セット分の幅を確保 */
}
@media screen and (max-width: 768px) {
  div.fv .loop .images {
    animation: scroll 30s linear infinite;
  }
}
@media screen and (min-width: 769px) {
  div.fv .loop .images {
    animation: scroll 50s linear infinite;
  }
}
div.fv .loop .images img {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  div.fv .loop .images img {
    margin-left: -37px;
  }
}
@media screen and (max-width: 768px) {
  div.fv .loop .images img {
    margin-left: -22px;
  }
}
div.fv div.desc {
  background: #EBCED0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  div.fv div.desc {
    height: 55.0505050505%;
  }
}
@media screen and (min-width: 769px) {
  div.fv div.desc {
    height: 37.6910016978%;
  }
}
div.fv div.desc p {
  line-height: 2;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: #0c0c0c;
}
@media screen and (max-width: 768px) {
  div.fv div.desc p {
    font-size: 2.9333333333vw;
    bottom: 11.3149847095%;
    width: 86.6666666667%;
  }
}
@media screen and (min-width: 769px) {
  div.fv div.desc p {
    font-size: 1.7991004498vh;
    bottom: 3.4755134281%;
    width: 52.75%;
  }
}

div#menu {
  position: sticky;
  background-color: #CFA5A8;
  z-index: 99;
  transform: translateY(-100%);
}
@media screen and (min-width: 769px) {
  div#menu {
    width: 100%;
    height: 11.12vh;
    top: 100%;
  }
}
@media screen and (max-width: 768px) {
  div#menu {
    width: 100%;
    height: 13dvh;
    top: 100%;
  }
}
div#menu > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div#menu P {
  color: #0C0C0C;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  div#menu P {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  div#menu P {
    font-size: 13px;
  }
}
div#menu div.menu_btn {
  display: flex;
}
@media screen and (min-width: 769px) {
  div#menu div.menu_btn {
    width: 364px;
    margin: 0 auto;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  div#menu div.menu_btn {
    width: 375px;
    margin: 0 auto;
    justify-content: space-around;
  }
}
div#menu div.menu_btn img {
  width: 150px;
}

div.onetone_top div.border::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #0C0C0C;
  position: absolute;
  margin-top: -3px;
}
div.onetone_top div.border::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0C0C0C;
  position: absolute;
  margin-top: 7px;
}
div.onetone_top h2 {
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: italic;
  color: #0C0C0C;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  div.onetone_top h2 {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  div.onetone_top h2 {
    padding-top: 25px;
  }
}
div.onetone_top h2 span {
  display: block;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color: #0C0C0C;
  text-align: center;
  letter-spacing: 0.07em;
}
div.onetone_top h2::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  background-color: #0C0C0C;
  margin: 0 auto;
  margin-top: 4px;
}
div.onetone_top h3 {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: #0C0C0C;
  text-align: center;
  font-size: 14px;
  padding-top: 9px;
}
@media screen and (min-width: 769px) {
  div.onetone_top div.onetone_bnnr {
    width: 520px;
    padding-top: 43px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.onetone_top div.onetone_bnnr {
    width: 100%;
    padding-top: 18px;
  }
}
@media screen and (min-width: 769px) {
  div.onetone_top div.selectcolor {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  div.onetone_top div.selectcolor {
    padding-bottom: 30px;
  }
}
div.onetone_top div.selectcolor p {
  text-align: center;
  letter-spacing: 0.07em;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  color: #0C0C0C;
  font-size: 17px;
}
@media screen and (min-width: 769px) {
  div.onetone_top div.selectcolor p {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  div.onetone_top div.selectcolor p {
    padding-top: 35px;
  }
}
div.onetone_top div.selectcolor div.colorlineup {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 306px;
}
div.onetone_top div.selectcolor div.colorlineup img {
  width: 80px;
  padding-top: 15px;
}

@media screen and (min-width: 769px) {
  div.onetone div.codewrap {
    padding: 41px 0 65px;
  }
}
@media screen and (max-width: 768px) {
  div.onetone div.codewrap {
    padding: 15px 0 60px;
  }
}

@media screen and (min-width: 769px) {
  div.twins div.codewrap {
    padding: 90px 0 65px;
  }
}
@media screen and (max-width: 768px) {
  div.twins div.codewrap {
    padding: 94px 0 60px;
  }
}

div#lightblue {
  background-color: #F7F8FF;
}

div.codewrap.white {
  background-color: #FFFFFF;
  width: 100%;
}

@media screen and (min-width: 769px) {
  div.code_block {
    display: flex;
    width: 700px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) {
  div.code_block.reverse {
    flex-direction: row-reverse;
  }
}

div.onetone div.style {
  width: 84%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

div.twins div.style {
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

h5 {
  letter-spacing: 0.04em;
}

div.imagearea {
  position: relative;
}
@media screen and (max-width: 768px) {
  div.imagearea {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  div.imagearea {
    width: 360px;
  }
}
div.imagearea::before {
  content: "";
  display: block;
}
div.imagearea::after {
  content: "";
  display: block;
  height: 48px;
  width: 89.3333333333%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea div.number, div.imagearea div.style, div.imagearea div.back {
  position: absolute;
}
div.imagearea div.number {
  z-index: 3;
}
div.imagearea div.back {
  width: 84%;
  z-index: 2;
}
div.imagearea div.back::before {
  content: "";
  display: block;
}
div.imagearea div.back h5 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 31px;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  text-align: center;
}
div.imagearea#blue_1::before {
  padding-top: 114.1333333333%;
}
div.imagearea#blue_1::after {
  background-color: #D5D9E9;
}
div.imagearea#blue_1 div.number {
  width: 19.2%;
  top: 3.9719626168%;
  left: 1.8666666667%;
}
div.imagearea#blue_1 div.back {
  top: 10.2803738318%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#blue_1 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#blue_1 div.back h5 {
  color: #8892B9;
}
div.imagearea#blue_2::before {
  padding-top: 120.5333333333%;
}
div.imagearea#blue_2::after {
  background-color: #D5D9E9;
}
div.imagearea#blue_2 div.number {
  width: 25.0666666667%;
  top: 1.9911504425%;
  left: 75.7333333333%;
}
div.imagearea#blue_2 div.back {
  top: 9.9557522124%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F7F8FF;
}
div.imagearea#blue_2 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#blue_2 div.back h5 {
  color: #8892B9;
}
div.imagearea#blue_3 {
  margin-bottom: 40px;
}
div.imagearea#blue_3::before {
  padding-top: 118.4%;
}
div.imagearea#blue_3::after {
  background-color: #D5D9E9;
}
div.imagearea#blue_3 div.number {
  width: 19.2%;
  top: 4.0540540541%;
  left: 1.8666666667%;
}
div.imagearea#blue_3 div.back {
  top: 10.5855855856%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
}
div.imagearea#blue_3 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#blue_3 div.back h5 {
  color: #8892B9;
}
div.imagearea#blue_3 .attention {
  position: absolute;
  width: 89%;
  top: 106.981981982%;
  margin-top: -25px;
  margin-bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#blue_3 .attention p {
  font-size: 9px;
  text-align: right;
}
div.imagearea#yellow_1::before {
  padding-top: 120.5333333333%;
}
div.imagearea#yellow_1::after {
  background-color: #F7F0D9;
}
div.imagearea#yellow_1 div.number {
  width: 19.2%;
  top: 3.7610619469%;
  left: 1.8666666667%;
}
div.imagearea#yellow_1 div.back {
  top: 9.0707964602%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#yellow_1 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#yellow_1 div.back h5 {
  color: #EBC538;
}
div.imagearea#yellow_2::before {
  padding-top: 118.6666666667%;
}
div.imagearea#yellow_2::after {
  background-color: #F7F0D9;
}
div.imagearea#yellow_2 div.number {
  width: 25.0666666667%;
  top: 0%;
  left: 75.7333333333%;
}
div.imagearea#yellow_2 div.back {
  top: 9.2134831461%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCFAF4;
}
div.imagearea#yellow_2 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#yellow_2 div.back h5 {
  color: #EBC538;
}
div.imagearea#yellow_3::before {
  padding-top: 113.6%;
}
div.imagearea#yellow_3::after {
  background-color: #F7F0D9;
}
div.imagearea#yellow_3 div.number {
  width: 19.2%;
  top: 0;
  left: 1.8666666667%;
}
div.imagearea#yellow_3 div.back {
  top: 6.8075117371%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#yellow_3 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#yellow_3 div.back h5 {
  color: #EBC538;
}
div.imagearea#blackandwhite_1::before {
  padding-top: 113.6%;
}
div.imagearea#blackandwhite_1::after {
  background-color: #D1D1D1;
}
div.imagearea#blackandwhite_1 div.number {
  width: 19.2%;
  top: 3.5211267606%;
  left: 1.8666666667%;
}
div.imagearea#blackandwhite_1 div.back {
  top: 10.3286384977%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#blackandwhite_1 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#blackandwhite_1 div.back h5 {
  color: #0C0C0C;
}
div.imagearea#blackandwhite_2::before {
  padding-top: 112%;
}
div.imagearea#blackandwhite_2::after {
  background-color: #D1D1D1;
}
div.imagearea#blackandwhite_2 div.number {
  width: 25.0666666667%;
  top: 0%;
  left: 75.7333333333%;
}
div.imagearea#blackandwhite_2 div.back {
  top: 9.0476190476%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F5F5F5;
}
div.imagearea#blackandwhite_2 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#blackandwhite_2 div.back h5 {
  color: #0C0C0C;
}
div.imagearea#blackandwhite_3::before {
  padding-top: 117.3333333333%;
}
div.imagearea#blackandwhite_3::after {
  background-color: #D1D1D1;
}
div.imagearea#blackandwhite_3 div.number {
  width: 19.2%;
  top: 4.7727272727%;
  left: 1.8666666667%;
}
div.imagearea#blackandwhite_3 div.back {
  top: 9.7727272727%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#blackandwhite_3 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#blackandwhite_3 div.back h5 {
  color: #0C0C0C;
}
div.imagearea#themepark_1::before {
  padding-top: 106.1333333333%;
}
div.imagearea#themepark_1::after {
  background-color: #E7D3D6;
}
div.imagearea#themepark_1 div.number {
  width: 19.4666666667%;
  top: -14.0703517588%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#themepark_1 div.back {
  top: 4.0201005025%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#themepark_1 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#themepark_1 div.back h5 {
  color: #D8959E;
}
div.imagearea#themepark_2::before {
  padding-top: 108%;
}
div.imagearea#themepark_2::after {
  background-color: #E7D3D6;
}
div.imagearea#themepark_2 div.number {
  width: 19.4666666667%;
  top: -15.5216284987%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#themepark_2 div.back {
  top: 2.7989821883%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF9FB;
}
div.imagearea#themepark_2 div.back::before {
  padding-top: 116.8253968254%;
}
div.imagearea#themepark_2 div.back h5 {
  color: #D8959E;
}
div.imagearea#trip_1::before {
  padding-top: 111.4666666667%;
}
div.imagearea#trip_1::after {
  background-color: #E7D3D6;
}
div.imagearea#trip_1 div.number {
  width: 19.4666666667%;
  top: -8.6124401914%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#trip_1 div.back {
  top: 8.6124401914%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#trip_1 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#trip_1 div.back h5 {
  color: #D8959E;
}
div.imagearea#trip_2::before {
  padding-top: 113.3333333333%;
}
div.imagearea#trip_2::after {
  background-color: #E7D3D6;
}
div.imagearea#trip_2 div.number {
  width: 19.4666666667%;
  top: -14.9397590361%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#trip_2 div.back {
  top: 4.3373493976%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF9FB;
}
div.imagearea#trip_2 div.back::before {
  padding-top: 118.0952380952%;
}
div.imagearea#trip_2 div.back h5 {
  color: #D8959E;
}
div.imagearea#concert_1::before {
  padding-top: 105.3333333333%;
}
div.imagearea#concert_1::after {
  background-color: #E7D3D6;
}
div.imagearea#concert_1 div.number {
  width: 19.4666666667%;
  top: -16.9620253165%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#concert_1 div.back {
  top: 3.2911392405%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
div.imagearea#concert_1 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#concert_1 div.back h5 {
  color: #D8959E;
}
div.imagearea#concert_2::before {
  padding-top: 104.5333333333%;
}
div.imagearea#concert_2::after {
  background-color: #E7D3D6;
}
div.imagearea#concert_2 div.number {
  width: 19.4666666667%;
  top: -17.8571428571%;
  left: 50%;
  transform: translateX(-50%);
}
div.imagearea#concert_2 div.back {
  top: 2.5510204082%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF9FB;
}
div.imagearea#concert_2 div.back::before {
  padding-top: 113.3333333333%;
}
div.imagearea#concert_2 div.back h5 {
  color: #D8959E;
}

@media screen and (min-width: 769px) {
  div.onetone div.creditarea {
    width: 315px;
    padding-top: 45px;
  }
}

@media screen and (min-width: 769px) {
  div.twin div.creditarea {
    width: 315px;
  }
}

@media screen and (max-width: 768px) {
  div.credit {
    margin: 0 auto;
    top: 52.2702104097%;
    left: 8%;
    width: 315px;
  }
}
div.credit p.coordinate_items {
  font-size: 17px;
  letter-spacing: 0.03em;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  width: 325px;
}
div.credit p.coordinate_items.blue {
  color: #8892B9;
  border-bottom: 1px solid #8892B9;
}
div.credit p.coordinate_items.yellow {
  color: #EBC538;
  border-bottom: 1px solid #EBC538;
}
div.credit p.coordinate_items.blackandwhite {
  color: #0C0C0C;
  border-bottom: 1px solid #0C0C0C;
}
div.credit p.coordinate_items.twin {
  color: #D8959E;
  border-bottom: 1px solid #D8959E;
}
div.credit ul.itemlist li {
  margin-top: 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
div.credit ul.itemlist li div.creditimg {
  width: 60px;
}
div.credit ul.itemlist li div.detail {
  width: 184px;
}
div.credit ul.itemlist li div.detail.comingsoon {
  width: 145px;
}
div.credit ul.itemlist li div.detail p.itemname, div.credit ul.itemlist li div.detail p.price {
  font-size: 12px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 10px;
}
div.credit ul.itemlist li div.detail p.itemname.blue, div.credit ul.itemlist li div.detail p.price.blue {
  color: #8892B9;
}
div.credit ul.itemlist li div.detail p.itemname.yellow, div.credit ul.itemlist li div.detail p.price.yellow {
  color: #EBC538;
}
div.credit ul.itemlist li div.detail p.itemname.blackandwhite, div.credit ul.itemlist li div.detail p.price.blackandwhite {
  color: #0C0C0C;
}
div.credit ul.itemlist li div.detail p.itemname.twin, div.credit ul.itemlist li div.detail p.price.twin {
  color: #D8959E;
}
div.credit ul.itemlist li div.detail p.twinsmark {
  font-size: 10px;
  color: #249ACE;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}
div.credit ul.itemlist li div.buybtn p {
  width: 52px;
  height: 20px;
  font-size: 12px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  line-height: 20px;
  padding-right: 0px;
  color: #FFFFFF;
}
div.credit ul.itemlist li div.buybtn p.comingsoon {
  width: 90px;
}
div.credit ul.itemlist li div.buybtn p.blue {
  background-color: #8892B9;
}
div.credit ul.itemlist li div.buybtn p.yellow {
  background-color: #EBC538;
}
div.credit ul.itemlist li div.buybtn p.blackandwhite {
  background-color: #0C0C0C;
}
div.credit ul.itemlist li div.buybtn p.twin {
  background-color: #D8959E;
}
div.credit ul.itemlist li div.buybtn p:hover {
  width: 52px;
  height: 20px;
  background-color: transparent;
}
div.credit ul.itemlist li div.buybtn p:hover.blue {
  color: #8892B9;
  border: 1px solid #8892B9;
}
div.credit ul.itemlist li div.buybtn p:hover.yellow {
  color: #EBC538;
  border: 1px solid #EBC538;
}
div.credit ul.itemlist li div.buybtn p:hover.blackandwhite {
  color: #0C0C0C;
  border: 1px solid #0C0C0C;
}
div.credit ul.itemlist li div.buybtn p:hover.twin {
  color: #D8959E;
  border: 1px solid #D8959E;
}
div.credit ul.itemlist li div.buybtn p.comingsoon:hover {
  width: 90px;
  height: 20px;
  background-color: transparent;
}
div.credit ul.itemlist li div.buybtn p.comingsoon:hover.blue {
  color: #8892B9;
  border: 1px solid #8892B9;
}
div.credit ul.itemlist li div.buybtn p.comingsoon:hover.yellow {
  color: #EBC538;
  border: 1px solid #EBC538;
}
div.credit ul.itemlist li div.buybtn p.comingsoon:hover.blackandwhite {
  color: #0C0C0C;
  border: 1px solid #0C0C0C;
}
div.credit ul.itemlist li div.buybtn p.comingsoon:hover.twin {
  color: #D8959E;
  border: 1px solid #D8959E;
}

#lightblue_btn {
  background-color: #F7F8FF;
}

#softyellow_btn {
  background-color: #FCFAF4;
}

#blackandwhite_btn {
  background-color: #F5F5F5;
}

#themepark_btn, #girlstrip_btn, #consert_btn {
  background-color: #FFF9FB;
}

div.category {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.category {
    margin: 0 auto;
    width: 700px;
    height: 194px;
  }
}
@media screen and (max-width: 768px) {
  div.category {
    width: 100%;
    height: 175px;
  }
}
div.category div.color_logo img, div.category div.scenelogo img {
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 769px) {
  div.category div.color_logo img, div.category div.scenelogo img {
    top: 30.9278350515%;
  }
}
@media screen and (max-width: 768px) {
  div.category div.color_logo img, div.category div.scenelogo img {
    top: 34.2857142857%;
  }
}
div.category h4 {
  z-index: 80;
  position: absolute;
  font-size: 42px;
  letter-spacing: 0.06em;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: italic;
  color: #0C0C0C;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  div.category h4 {
    top: 55.1546391753%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  div.category h4 {
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
  }
}
div.category h4 > span span {
  display: block;
  font-size: 14px;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: #0C0C0C;
  text-align: center;
  padding-top: 7px;
}
div.category img.line {
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.category img.line {
    top: 72.1649484536%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  div.category img.line {
    top: 70.2857142857%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.lightblue {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.lightblue {
    width: 53.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.softyellow {
    top: 72.1649484536%;
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.softyellow {
    width: 53.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.blackandwhite {
    top: 72.1649484536%;
    width: 36%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.blackandwhite {
    width: 65.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.themepark {
    top: 71.1340206186%;
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.themepark {
    width: 56%;
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.girlstrip {
    top: 71.1340206186%;
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.girlstrip {
    width: 49.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  div.category img.line.consert {
    top: 71.1340206186%;
    width: 21%;
  }
}
@media screen and (max-width: 768px) {
  div.category img.line.consert {
    width: 38.6666666667%;
  }
}
div.category.lightblue {
  background-color: #F7F8FF;
}
@media screen and (min-width: 769px) {
  div.category.lightblue {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  div.category.lightblue {
    margin-top: 40px;
  }
}
div.category.softyellow {
  background-color: #FCFAF4;
}
div.category.blackandwhite {
  background-color: #F5F5F5;
}
div.category.twin {
  background-color: #FFF9FB;
}

div.category::after {
  content: "";
  width: 100%;
  position: absolute;
  border-bottom: 2px dotted #0C0C0C;
}
@media screen and (min-width: 769px) {
  div.category::after {
    top: 97.9381443299%;
  }
}
@media screen and (max-width: 768px) {
  div.category::after {
    top: 97.1428571429%;
  }
}

@media screen and (min-width: 769px) {
  div.moreitem {
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  div.moreitem {
    width: 100%;
    height: 330px;
  }
}
div.moreitem p.pickupitem_title {
  font-size: 20px;
  letter-spacing: 0.02em;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #0C0C0C;
}
@media screen and (min-width: 769px) {
  div.moreitem p.pickupitem_title {
    padding-top: 50px;
    padding-bottom: 21px;
  }
}
@media screen and (max-width: 768px) {
  div.moreitem p.pickupitem_title {
    padding-top: 20px;
    padding-bottom: 22px;
  }
}
div.moreitem div.flex_item ul {
  display: flex;
  overflow: scroll;
  scrollbar-width: none;
}
@media screen and (min-width: 769px) {
  div.moreitem div.flex_item ul {
    margin-left: 365px;
    width: 690px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.moreitem div.flex_item ul {
    margin-left: 20px;
  }
}
div.moreitem div.flex_item ul li {
  margin-left: 12px;
  width: 120px;
}
div.moreitem div.flex_item ul li div.pickupitem_img {
  width: 120px;
}
div.moreitem div.flex_item ul li div.pickupitem_detail {
  color: #0C0C0C;
  line-height: 0.8em;
}
div.moreitem div.flex_item ul li div.pickupitem_detail p.brand_name {
  font-size: 10px;
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 6px;
}
div.moreitem div.flex_item ul li div.pickupitem_detail p.pickupitem_name {
  font-size: 10px;
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 6px;
}
div.moreitem div.flex_item ul li div.pickupitem_detail p.pickupitem_price {
  font-size: 10px;
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  div.moreitem div.flex_item ul li div.pickupitem_detail {
    line-height: 0.8em;
  }
}
div.moreitem.lightblue {
  background-color: #D5D9E9;
}
div.moreitem.softyellow {
  background-color: #F7F0D9;
}
div.moreitem.blackandwhite {
  background-color: #ACACAC;
}
div.moreitem.twin {
  background-color: #E7D3D6;
}

@media screen and (min-width: 769px) {
  div.twins_top {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  div.twins_top {
    margin-bottom: 30px;
  }
}
div.twins_top div.border::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #0C0C0C;
  position: absolute;
  margin-top: -3px;
}
div.twins_top div.border::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0C0C0C;
  position: absolute;
  margin-top: 7px;
}
div.twins_top h2 {
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: italic;
  color: #0C0C0C;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  div.twins_top h2 {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  div.twins_top h2 {
    padding-top: 25px;
  }
}
div.twins_top h2 span {
  display: block;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color: #0C0C0C;
  text-align: center;
  letter-spacing: 0.07em;
}
div.twins_top h2::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  background-color: #0C0C0C;
  margin: 0 auto;
  margin-top: 4px;
}
div.twins_top h3 {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: #0C0C0C;
  text-align: center;
  font-size: 14px;
  padding-top: 9px;
}
@media screen and (min-width: 769px) {
  div.twins_top div.twins_bnnr {
    width: 520px;
    padding-top: 43px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.twins_top div.twins_bnnr {
    width: 100%;
    padding-top: 18px;
  }
}
div.twins_top div.selectcolor p {
  text-align: center;
  letter-spacing: 0.07em;
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  font-style: normal;
  color: #0C0C0C;
  font-size: 17px;
}
@media screen and (min-width: 769px) {
  div.twins_top div.selectcolor p {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  div.twins_top div.selectcolor p {
    padding-top: 35px;
  }
}
div.twins_top div.selectcolor div.colorlineup {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 306px;
}
div.twins_top div.selectcolor div.colorlineup img {
  width: 80px;
  padding-top: 15px;
}

.yohaku {
  width: 100%;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .yohaku {
    padding-top: 160px;
  }
}
@media screen and (min-width: 769px) {
  .yohaku {
    padding-top: 175px;
  }
}

div.footer div.haruichi_bnr {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.footer div.haruichi_bnr {
    width: 522px;
    margin-bottom: 63px;
  }
}
@media screen and (max-width: 768px) {
  div.footer div.haruichi_bnr {
    width: 315px;
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=style.css.map */