@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-03s {
  animation-delay: 0.3s;
}

.animated.delay-06s {
  animation-delay: 0.6s;
}

.animated.delay-09s {
  animation-delay: 0.9s;
}

.animated.delay-12s {
  animation-delay: 1.2s;
}

.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-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, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@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: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) 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(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.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, -45deg);
    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, 45deg);
    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;
}

/*
 * jQuery FlexSlider v2.7.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: "flexslider-icon";
  src: url("../fonts/flexslider-icon.eot");
  src: url("../fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("../fonts/flexslider-icon.woff") format("woff"), url("../fonts/flexslider-icon.ttf") format("truetype"), url("../fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 30px;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 20px;
  height: 20px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #999;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 900;
  text-indent: -9999px;
  transform: rotate(180deg);
}

.flex-direction-nav a.flex-next:before {
  transform: rotate(0deg);
}

.flex-direction-nav .flex-prev {
  left: -5px;
}

.flex-direction-nav .flex-next {
  right: -5px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 0.7;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 0.7;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-paging li a.flex-active {
  border: 1px solid #000;
  position: relative;
  display: block;
}
.flex-control-paging li a.flex-active::before {
  text-indent: 0;
  content: "";
  font-weight: 900;
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  -webkit-transform: translateX(-50%) rotate(90deg);
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*リセット
--------------------------------------------*/
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;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/*fonts
---------------------------------------------*/
/*
font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 500;
font-style: normal;
*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-feature-settings: "palt";
  color: #1c1c1c;
  background: #FFFEFC;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.angie {
  font-family: angie-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.angie_it {
  font-family: angie-sans, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.relation {
  font-family: relation-two, sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

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

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

.header {
  width: 100%;
  margin-top: 10px;
}

main p.desc {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main p.desc {
    font-size: 12px;
    padding: 100px 0;
  }
}
@media screen and (min-width: 769px) {
  main p.desc {
    font-size: 14px;
    padding: 100px 0;
  }
}
main ul.menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  main ul.menu {
    width: 92.2666666667%;
    margin: 0 auto 105px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu {
    width: 548px;
    margin: 0 auto 200px;
  }
}
main ul.menu li {
  position: relative;
}
@media screen and (max-width: 768px) {
  main ul.menu li {
    width: 22.8323699422%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu li {
    width: 22.2672064777%;
    margin-bottom: 30px;
  }
}
main ul.menu li a {
  text-decoration: none;
}
main ul.menu li p.number {
  font-family: angie-sans, sans-serif;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  line-height: 1;
  top: 0;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main ul.menu li p.number {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu li p.number {
    font-size: 23px;
  }
}
main ul.menu li p.number span {
  font-style: italic;
}
@media screen and (max-width: 768px) {
  main ul.menu li p.number span {
    font-size: 10px;
    display: inline-block;
    margin-right: 2px;
    position: relative;
    top: -3px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu li p.number span {
    font-size: 14px;
    display: inline-block;
    margin-right: 2px;
    position: relative;
    top: -3px;
  }
}
@media screen and (max-width: 768px) {
  main ul.menu li div.img {
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu li div.img {
    margin-bottom: 4px;
  }
}
main ul.menu li p.brand {
  font-family: angie-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main ul.menu li p.brand {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  main ul.menu li p.brand {
    font-size: 16px;
  }
}
main div.block .bg {
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #fff 37%, #FAFAF2 30%, #FAFAF2 100%);
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.title {
    padding: 0 14px;
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.title {
    width: 554px;
    margin: 0 auto 40px;
    padding: 0 36px;
  }
}
main div.block div.wrap div.title .title_container {
  font-family: angie-sans, sans-serif;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #1c1c1c;
  justify-content: center;
}
main div.block div.wrap div.title .title_container .title_brand {
  writing-mode: vertical-rl;
  font-size: 10px;
}
main div.block div.wrap div.title .title_container .title_num {
  font-size: 45px;
  font-style: italic;
}
main div.block div.wrap div.title .title_container h2 {
  font-size: 45px;
  margin-left: 30px;
}
main div.block div.wrap div.title .title_item {
  margin-top: 10px;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.title .title_item {
    font-size: 16px;
  }
}
main div.block div.wrap div.title .title_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
main div.block div.wrap div.title .title_item .main_btn {
  color: #fff;
  padding: 4px 18px;
  margin-left: 30px;
  background-color: #E0CE6C;
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.title .title_item .main_btn {
    margin-left: 34px;
  }
}
main div.block div.wrap a.itemimg {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap a.itemimg {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap a.itemimg {
    width: 240px;
    margin: 0 auto 75px;
  }
}
@media screen and (max-width: 768px) {
  main div.block div.wrap a.itemimg div.img {
    margin-bottom: 20px;
    width: 53.3333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap a.itemimg div.img {
    margin-bottom: 25px;
  }
}
main div.block div.wrap div.compare {
  border: #1c1c1c solid 1px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare {
    border-radius: 3%;
    width: 311px;
    margin: 0 auto;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare {
    border-radius: 10px;
    margin-bottom: 70px;
    width: 424px;
    margin: 0 auto;
    padding-bottom: 24px;
  }
}
main div.block div.wrap div.compare > p {
  position: absolute;
  text-align: center;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare > p {
    font-size: 14px;
    margin-bottom: 20px;
    top: -10px;
    background-color: #FAFAF2;
    width: 275px;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare > p {
    margin-bottom: 30px;
    width: 270px;
    top: -10px;
    background-color: #FAFAF2;
  }
}
main div.block div.wrap div.compare ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul {
    width: 80.8%;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul {
    display: block;
    width: 342px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul li {
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li {
    width: 346px;
    font-size: 14px;
    display: flex;
    margin: 20px auto 0;
    gap: 20px;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li div.img {
    width: 77px;
    margin-bottom: 10px;
  }
}
main div.block div.wrap div.compare ul li div.img img {
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul li div.img img {
    margin-bottom: 10px;
    width: 90px;
    margin: 0 auto;
  }
}
main div.block div.wrap div.compare ul li div.staff_name {
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li div.staff_name {
    text-align: center;
  }
}
main div.block div.wrap div.compare ul li p.profile {
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul li p.profile {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li p.profile {
    font-size: 14px;
    width: 200px;
  }
}
main div.block div.wrap div.compare ul li p.profile span.height {
  font-size: 20px;
  background: linear-gradient(transparent 75%, #E3D37A 75%);
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li p.profile a {
    font-size: 16px;
  }
}
main div.block div.wrap div.compare ul li p.profile a.instagram {
  display: inline-block;
  white-space: nowrap;
}
main div.block div.wrap div.compare ul li p.profile a.instagram span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  main div.block div.wrap div.compare ul li p.profile a.instagram span {
    width: 13px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul li p.profile a.instagram span {
    width: 13px;
    margin-right: 5px;
    margin-left: 33px;
  }
}
main div.block div.wrap div.compare ul li p.profile a.instagram span img {
  display: inline-block;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  main div.block div.wrap div.compare ul li p.profile a.instagram span img {
    top: 4px;
  }
}
@media screen and (max-width: 768px) {
  main div.block .coorde_container {
    margin: 90px 0 120px;
  }
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container {
    width: 741px;
    margin: 90px auto 120px !important;
    display: flex;
  }
}
main div.block .coorde_container div.month {
  margin-bottom: 20px;
  margin-left: 10px;
  width: 65.3333333333%;
  font-family: angie-sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container div.month {
    order: 2;
    width: 271px;
  }
}
main div.block .coorde_container div.month .month_detail {
  position: relative;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container div.month .month_detail {
    margin-left: 20px;
  }
}
main div.block .coorde_container div.month .month_detail .large {
  font-size: 80px;
  font-style: italic;
}
main div.block .coorde_container div.month .month_detail .degree {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 16px;
}
main div.block .coorde_container div.month .month_detail .celsius {
  font-size: 11px;
}
main div.block .coorde_container div.month .month_detail::after {
  content: "";
  display: block;
  border-bottom: #EBD265 solid 1px;
}
main div.block .coorde_container div.month .month_relation {
  font-family: relation-two, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #EBD265;
  font-size: 26px;
  margin: 5px 0 0 6px;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container div.month .month_relation {
    margin-left: 20px;
  }
}
main div.block .coorde_container .coorde_imgbox {
  width: 93.3333333333%;
  position: relative;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container .coorde_imgbox {
    width: 459px;
  }
}
main div.block .coorde_container .coorde_imgbox img.codeimg {
  border-radius: 0 130px 0 0;
}
main div.block .coorde_container .coorde_imgbox .measure {
  position: absolute;
  width: 11%;
  top: 3.8%;
}
main div.block .coorde_container .coorde_imgbox .coorde_memo {
  margin: 10px 0 40px;
  text-align: center;
  font-size: 12px;
  color: #6F6F6F;
  letter-spacing: 0.1rem;
}
main div.block .coorde_container ul.coorde_credit {
  font-size: 12px;
  width: 93.3333333333%;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container ul.coorde_credit {
    width: 100%;
    margin-top: 150px;
  }
}
main div.block .coorde_container ul.coorde_credit li {
  margin: 0 0 20px 8%;
}
main div.block .coorde_container ul.coorde_credit .sample {
  font-size: 10px;
  color: #6F6F6F;
}
main div.block .coorde_container ul.coorde_credit li > a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
main div.block .coorde_container ul.coorde_credit a.no-touch {
  color: #6f6f6f;
}
main div.block .coorde_container ul.coorde_credit .credit_btn {
  color: #fff;
  background-color: #1c1c1c;
  padding: 3px 16px;
}
main div.block .coorde_container ul.coorde_credit .credit_btn.soon {
  background-color: #c6c6c6;
}
main div.block .coorde_container {
  margin: 90px 0 120px;
}
main div.block .coorde_container.right div.month {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: 10px;
  width: 65.3333333333%;
  font-family: angie-sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container.right div.month {
    width: 271px;
  }
}
main div.block .coorde_container.right div.month .month_detail {
  position: relative;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container.right div.month .month_detail {
    margin-right: 20px;
    margin-left: 0;
  }
}
main div.block .coorde_container.right div.month .month_detail .large {
  font-size: 80px;
  font-style: italic;
}
main div.block .coorde_container.right div.month .month_detail .degree {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 16px;
}
main div.block .coorde_container.right div.month .month_detail .celsius {
  font-size: 11px;
}
main div.block .coorde_container.right div.month .month_detail::after {
  content: "";
  display: block;
  border-bottom: #EBD265 solid 1px;
}
main div.block .coorde_container.right div.month .month_relation {
  font-family: relation-two, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #EBD265;
  font-size: 26px;
  margin: 5px 0 0 6px;
}
main div.block .coorde_container.right .coorde_imgbox {
  width: 93.3333333333%;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container.right .coorde_imgbox {
    width: 459px;
  }
}
main div.block .coorde_container.right .coorde_imgbox img.codeimg {
  border-radius: 130px 0 0 0;
}
main div.block .coorde_container.right .coorde_imgbox .measure {
  position: absolute;
  width: 11%;
  top: 3.8%;
  right: 0;
}
main div.block .coorde_container.right .coorde_imgbox .coorde_memo {
  margin: 10px 0 40px;
  text-align: center;
  font-size: 12px;
  color: #6F6F6F;
  letter-spacing: 0.1rem;
}
main div.block .coorde_container.right ul.coorde_credit {
  font-size: 12px;
  width: 93.3333333333%;
}
main div.block .coorde_container.right ul.coorde_credit li {
  margin: 0 0 20px 8%;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container.right ul.coorde_credit li {
    margin: 0 0 20px 0;
  }
}
main div.block .coorde_container.right ul.coorde_credit li > a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
main div.block .coorde_container.right ul.coorde_credit .credit_btn {
  color: #fff;
  background-color: #1c1c1c;
  padding: 3px 16px;
}
@media screen and (min-width: 769px) {
  main div.block .coorde_container.right {
    flex-direction: row-reverse;
  }
}
main div.block div.coordinate {
  position: relative;
}
@media screen and (max-width: 768px) {
  main div.block div.coordinate {
    width: 81.6%;
    margin: 0 auto 42px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.coordinate {
    width: 100%;
    margin: 0 auto 46px;
  }
}
main div.block div.coordinate::before {
  content: "";
  display: block;
}
@media screen and (max-width: 768px) {
  main div.block div.coordinate::before {
    padding-top: 131.3725490196%;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.coordinate::before {
    padding-top: 131.3725490196%;
  }
}
main div.block div.coordinate::after {
  content: "";
  display: block;
  background: #5C725F;
  width: 96.0784313725%;
  position: absolute;
  top: 0;
  left: 0;
  height: 97%;
}
main div.block div.coordinate.winter::after {
  background: #6E4F51;
}
main div.block div.coordinate div.fadearea {
  width: 96.0784313725%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  main div.block div.coordinate div.fadearea {
    bottom: -30px;
  }
}
@media screen and (max-width: 768px) {
  main div.block div.coordinate div.fadearea {
    bottom: -8%;
  }
}
main div.block div.coordinate p {
  font-family: classico-urw, sans-serif !important;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main div.block div.coordinate p {
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    top: 2.482587%;
    color: #fff;
    line-height: 1;
    z-index: 3;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.coordinate p {
    left: 50%;
    transform: translateX(-50%);
    font-size: 44px;
    top: 3.1%;
    color: #fff;
    line-height: 1;
    z-index: 3;
  }
}
main div.block div.coordinate p span {
  transform: translateY(100%);
  display: inline-block;
  transition: 1s;
}
main div.block div.coordinate p.active span {
  transform: translateY(0%);
}
main div.block div.credit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main div.block div.credit {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.credit {
    margin-bottom: 100px;
  }
}
main div.block div.credit div.mainitem {
  font-family: classico-urw, sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  main div.block div.credit div.mainitem {
    font-size: 14px;
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.credit div.mainitem {
    font-size: 16px;
    margin: 0 auto 22px;
  }
}
main div.block div.credit div.mainitem span {
  text-decoration: underline;
}
main div.block div.credit ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main div.block div.credit ul {
    width: 78.1333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.credit ul {
    width: 414px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  main div.block div.credit ul li {
    width: 41.638225256%;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  main div.block div.credit ul li {
    font-size: 14px;
  }
}
main div.block div.credit ul li > span {
  display: block;
  margin-bottom: 10px;
}
main div.block div.credit ul li p a {
  display: block;
  line-height: 2;
  text-decoration: none;
}
main div.block div.credit ul li p a span {
  display: inline-block;
  text-decoration: underline;
}

div.searchArea ul.selector {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.searchArea ul.selector {
    width: 98.3333333333%;
    margin: 0 auto 2px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea ul.selector {
    width: 96.8%;
    margin: 0 auto 2px;
  }
}
div.searchArea ul.selector li {
  position: relative;
  background: #F2F0ED;
  text-align: center;
  cursor: pointer;
  border-radius: 3px 3px 0 0;
}
@media screen and (min-width: 769px) {
  div.searchArea ul.selector li {
    width: 49.6610169492%;
    height: 67px;
    line-height: 67px;
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea ul.selector li {
    width: 49.0358126722%;
    height: 57px;
    line-height: 57px;
    font-size: 18px;
  }
}
div.searchArea ul.selector li.active {
  box-shadow: 3px -3px 5px rgba(218, 218, 218, 0.2);
}
@media screen and (min-width: 769px) {
  div.searchArea ul.selector li.active {
    background: #EDEBE8;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea ul.selector li.active {
    background: #EDEBE8;
  }
}
div.searchArea ul.selector li.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #EDEBE8;
  position: absolute;
  bottom: -2px;
  left: 0;
}
div.searchArea div.back {
  background: #FAFAF2;
}
div.searchArea div.back div.low_inner, div.searchArea div.back div.high_inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner, div.searchArea div.back div.high_inner {
    padding: 140px 0 140px;
    width: 550px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner, div.searchArea div.back div.high_inner {
    padding: 90px 0 120px;
    width: 94.6666666667%;
  }
}
div.searchArea div.back div.low_inner h4, div.searchArea div.back div.high_inner h4 {
  position: relative;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner h4, div.searchArea div.back div.high_inner h4 {
    margin-bottom: 70px;
    letter-spacing: 5px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner h4, div.searchArea div.back div.high_inner h4 {
    margin-bottom: 45px;
  }
}
div.searchArea div.back div.low_inner h4 span, div.searchArea div.back div.high_inner h4 span {
  position: relative;
  z-index: 2;
  border-bottom: #D3B720 solid 1px;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner h4 span, div.searchArea div.back div.high_inner h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner h4 span, div.searchArea div.back div.high_inner h4 span {
    font-size: 23px;
  }
}
div.searchArea div.back div.low_inner h4::before, div.searchArea div.back div.high_inner h4::before {
  content: "KEYWORD";
  color: #D3B720;
  font-family: angie-sans, sans-serif !important;
  font-weight: 400;
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner h4::before, div.searchArea div.back div.high_inner h4::before {
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    z-index: 1;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner h4::before, div.searchArea div.back div.high_inner h4::before {
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    top: 28px;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.keywordArea, div.searchArea div.back div.high_inner div.keywordArea {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.keywordArea, div.searchArea div.back div.high_inner div.keywordArea {
    padding-bottom: 90px;
  }
}
div.searchArea div.back div.low_inner div.keywordArea ul, div.searchArea div.back div.high_inner div.keywordArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.searchArea div.back div.low_inner div.keywordArea ul li, div.searchArea div.back div.high_inner div.keywordArea ul li {
  text-align: center;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.keywordArea ul li, div.searchArea div.back div.high_inner div.keywordArea ul li {
    width: 177px;
    height: 42px;
    line-height: 42px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.keywordArea ul li, div.searchArea div.back div.high_inner div.keywordArea ul li {
    width: 47.8873239437%;
    height: 38px;
    line-height: 38px;
    margin-bottom: 8px;
  }
}
div.searchArea div.back div.low_inner div.keywordArea ul li a, div.searchArea div.back div.high_inner div.keywordArea ul li a {
  border: #1c1c1c 1px solid;
  color: #1c1c1c;
  text-decoration: none;
  transition: 1s;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.keywordArea ul li a, div.searchArea div.back div.high_inner div.keywordArea ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.keywordArea ul li a, div.searchArea div.back div.high_inner div.keywordArea ul li a {
    font-size: 12px;
  }
}
div.searchArea div.back div.low_inner div.keywordArea ul li a:hover, div.searchArea div.back div.low_inner div.keywordArea ul li a.hover, div.searchArea div.back div.high_inner div.keywordArea ul li a:hover, div.searchArea div.back div.high_inner div.keywordArea ul li a.hover {
  background: #D3B720;
  border: #D3B720 solid 1px !important;
  color: #1c1c1c;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.itemArea, div.searchArea div.back div.high_inner div.itemArea {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.itemArea, div.searchArea div.back div.high_inner div.itemArea {
    padding-bottom: 90px;
  }
}
div.searchArea div.back div.low_inner div.itemArea h4::before, div.searchArea div.back div.high_inner div.itemArea h4::before {
  content: "POPULAR ITEM";
}
div.searchArea div.back div.low_inner div.itemArea ul, div.searchArea div.back div.low_inner div.itemArea > div, div.searchArea div.back div.high_inner div.itemArea ul, div.searchArea div.back div.high_inner div.itemArea > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.itemArea ul li, div.searchArea div.back div.low_inner div.itemArea ul div, div.searchArea div.back div.low_inner div.itemArea > div li, div.searchArea div.back div.low_inner div.itemArea > div div, div.searchArea div.back div.high_inner div.itemArea ul li, div.searchArea div.back div.high_inner div.itemArea ul div, div.searchArea div.back div.high_inner div.itemArea > div li, div.searchArea div.back div.high_inner div.itemArea > div div {
    width: 175px;
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.itemArea ul li, div.searchArea div.back div.low_inner div.itemArea ul div, div.searchArea div.back div.low_inner div.itemArea > div li, div.searchArea div.back div.low_inner div.itemArea > div div, div.searchArea div.back div.high_inner div.itemArea ul li, div.searchArea div.back div.high_inner div.itemArea ul div, div.searchArea div.back div.high_inner div.itemArea > div li, div.searchArea div.back div.high_inner div.itemArea > div div {
    width: 31.8309859155%;
    margin-bottom: 18px;
    font-size: 10px;
  }
}
div.searchArea div.back div.low_inner div.itemArea ul li a, div.searchArea div.back div.low_inner div.itemArea ul div a, div.searchArea div.back div.low_inner div.itemArea > div li a, div.searchArea div.back div.low_inner div.itemArea > div div a, div.searchArea div.back div.high_inner div.itemArea ul li a, div.searchArea div.back div.high_inner div.itemArea ul div a, div.searchArea div.back div.high_inner div.itemArea > div li a, div.searchArea div.back div.high_inner div.itemArea > div div a {
  text-align: left !important;
  display: block;
  text-decoration: none;
  text-align: center;
}
div.searchArea div.back div.low_inner div.itemArea ul li a img, div.searchArea div.back div.low_inner div.itemArea ul div a img, div.searchArea div.back div.low_inner div.itemArea > div li a img, div.searchArea div.back div.low_inner div.itemArea > div div a img, div.searchArea div.back div.high_inner div.itemArea ul li a img, div.searchArea div.back div.high_inner div.itemArea ul div a img, div.searchArea div.back div.high_inner div.itemArea > div li a img, div.searchArea div.back div.high_inner div.itemArea > div div a img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.itemArea ul li a img, div.searchArea div.back div.low_inner div.itemArea ul div a img, div.searchArea div.back div.low_inner div.itemArea > div li a img, div.searchArea div.back div.low_inner div.itemArea > div div a img, div.searchArea div.back div.high_inner div.itemArea ul li a img, div.searchArea div.back div.high_inner div.itemArea ul div a img, div.searchArea div.back div.high_inner div.itemArea > div li a img, div.searchArea div.back div.high_inner div.itemArea > div div a img {
    margin-bottom: 5px;
  }
}
div.searchArea div.back div.low_inner div.itemArea ul li a img + span, div.searchArea div.back div.low_inner div.itemArea ul div a img + span, div.searchArea div.back div.low_inner div.itemArea > div li a img + span, div.searchArea div.back div.low_inner div.itemArea > div div a img + span, div.searchArea div.back div.high_inner div.itemArea ul li a img + span, div.searchArea div.back div.high_inner div.itemArea ul div a img + span, div.searchArea div.back div.high_inner div.itemArea > div li a img + span, div.searchArea div.back div.high_inner div.itemArea > div div a img + span {
  display: none;
}
div.searchArea div.back div.low_inner div.itemArea ul li a p.brand, div.searchArea div.back div.low_inner div.itemArea ul div a p.brand, div.searchArea div.back div.low_inner div.itemArea > div li a p.brand, div.searchArea div.back div.low_inner div.itemArea > div div a p.brand, div.searchArea div.back div.high_inner div.itemArea ul li a p.brand, div.searchArea div.back div.high_inner div.itemArea ul div a p.brand, div.searchArea div.back div.high_inner div.itemArea > div li a p.brand, div.searchArea div.back div.high_inner div.itemArea > div div a p.brand {
  text-align: left;
}
div.searchArea div.back div.low_inner div.itemArea ul li a p.price, div.searchArea div.back div.low_inner div.itemArea ul div a p.price, div.searchArea div.back div.low_inner div.itemArea > div li a p.price, div.searchArea div.back div.low_inner div.itemArea > div div a p.price, div.searchArea div.back div.high_inner div.itemArea ul li a p.price, div.searchArea div.back div.high_inner div.itemArea ul div a p.price, div.searchArea div.back div.high_inner div.itemArea > div li a p.price, div.searchArea div.back div.high_inner div.itemArea > div div a p.price {
  text-align: left;
  text-decoration: underline;
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.itemArea ul li a p.price, div.searchArea div.back div.low_inner div.itemArea ul div a p.price, div.searchArea div.back div.low_inner div.itemArea > div li a p.price, div.searchArea div.back div.low_inner div.itemArea > div div a p.price, div.searchArea div.back div.high_inner div.itemArea ul li a p.price, div.searchArea div.back div.high_inner div.itemArea ul div a p.price, div.searchArea div.back div.high_inner div.itemArea > div li a p.price, div.searchArea div.back div.high_inner div.itemArea > div div a p.price {
    margin-top: 10px;
  }
}
div.searchArea div.back div.low_inner div.itemArea a.all, div.searchArea div.back div.high_inner div.itemArea a.all {
  display: block;
  color: #1c1c1c;
  transition: 1s;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.itemArea a.all, div.searchArea div.back div.high_inner div.itemArea a.all {
    margin-top: 60px;
    border: #1c1c1c solid 1px;
    text-align: center;
    width: 419px;
    height: 54px;
    margin: 60px auto 0;
    text-align: center;
    line-height: 54px;
    text-decoration: none;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.itemArea a.all, div.searchArea div.back div.high_inner div.itemArea a.all {
    margin-top: 40px;
    border: #1c1c1c solid 1px;
    text-align: center;
    width: 271px;
    height: 43px;
    margin: 40px auto 0;
    text-align: center;
    line-height: 43px;
    text-decoration: none;
    font-size: 12px;
  }
}
div.searchArea div.back div.low_inner div.itemArea a.all:hover, div.searchArea div.back div.low_inner div.itemArea a.all.hover, div.searchArea div.back div.high_inner div.itemArea a.all:hover, div.searchArea div.back div.high_inner div.itemArea a.all.hover {
  background: #D3B720;
  border: #D3B720 solid 1px !important;
  color: #1c1c1c;
}
div.searchArea div.back div.low_inner div.stylingArea h4::before, div.searchArea div.back div.high_inner div.stylingArea h4::before {
  content: "STYLING";
}
div.searchArea div.back div.low_inner div.stylingArea ul, div.searchArea div.back div.high_inner div.stylingArea ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li, div.searchArea div.back div.high_inner div.stylingArea ul li {
    width: 175px;
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li, div.searchArea div.back div.high_inner div.stylingArea ul li {
    width: 31.8309859155%;
    margin-bottom: 18px;
    font-size: 10px;
  }
}
div.searchArea div.back div.low_inner div.stylingArea ul li a, div.searchArea div.back div.high_inner div.stylingArea ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
}
div.searchArea div.back div.low_inner div.stylingArea ul li a p.height, div.searchArea div.back div.high_inner div.stylingArea ul li a p.height {
  text-align: left;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li a p.height, div.searchArea div.back div.high_inner div.stylingArea ul li a p.height {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li a p.height, div.searchArea div.back div.high_inner div.stylingArea ul li a p.height {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
div.searchArea div.back div.low_inner div.stylingArea ul li a p.brand, div.searchArea div.back div.high_inner div.stylingArea ul li a p.brand {
  text-align: left;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li a p.brand, div.searchArea div.back div.high_inner div.stylingArea ul li a p.brand {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.stylingArea ul li a p.brand, div.searchArea div.back div.high_inner div.stylingArea ul li a p.brand {
    margin-bottom: 5px;
  }
}
div.searchArea div.back div.low_inner div.stylingArea ul li a p.name, div.searchArea div.back div.high_inner div.stylingArea ul li a p.name {
  text-align: left;
  text-decoration: underline;
}
div.searchArea div.back div.low_inner div.stylingArea a.all, div.searchArea div.back div.high_inner div.stylingArea a.all {
  display: block;
  color: #1c1c1c;
  transition: 1s;
}
@media screen and (min-width: 769px) {
  div.searchArea div.back div.low_inner div.stylingArea a.all, div.searchArea div.back div.high_inner div.stylingArea a.all {
    font-size: 14px;
    margin-top: 60px;
    border: #1c1c1c solid 1px;
    text-align: center;
    width: 419px;
    height: 54px;
    margin: 60px auto 0;
    text-align: center;
    line-height: 54px;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  div.searchArea div.back div.low_inner div.stylingArea a.all, div.searchArea div.back div.high_inner div.stylingArea a.all {
    margin-top: 40px;
    font-size: 12px;
    border: #1c1c1c solid 1px;
    text-align: center;
    width: 271px;
    height: 43px;
    margin: 40px auto 0;
    text-align: center;
    line-height: 43px;
    text-decoration: none;
  }
}
div.searchArea div.back div.low_inner div.stylingArea a.all:hover, div.searchArea div.back div.low_inner div.stylingArea a.all.hover, div.searchArea div.back div.high_inner div.stylingArea a.all:hover, div.searchArea div.back div.high_inner div.stylingArea a.all.hover {
  background: #D3B720;
  border: #D3B720 solid 1px !important;
  color: #1c1c1c;
}

@media screen and (min-width: 769px) {
  footer div.foot_brand_area {
    margin-top: 0px !important;
  }
}

/*========= レイアウトのためのCSS ===============*/
a {
  color: #1c1c1c;
}

a:hover {
  text-decoration: none;
}

/*アニメーション*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0.6;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shinyshiny {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes gold {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/*slick */
.slick-dots {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .slick-dots {
    bottom: -22px;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -16px;
  }
}/*# sourceMappingURL=style.css.map */