@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
---------------------------------------------*/
/*
source han sans japanese
font-family: source-han-sans-japanese, sans-serif;
font-weight: 400;
font-style: normal;

kelper std
font-family: kepler-std, serif;
font-weight: 300;
font-style: normal;

light italic
font-family: kepler-std, serif;
font-weight: 300;
font-style: italic;

medium
font-family: kepler-std, serif;
font-weight: 500;
font-style: normal;

*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-feature-settings: "palt";
  color: #333333;
  font-size: 12px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #F4F4EE;
}

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

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

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

a:hover {
  opacity: 0.7;
}

@keyframes loop {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
div.fixed {
  width: 100%;
  height: 100vh;
  background: #F4F2EF;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (min-width: 821px) {
  .main {
    overflow: hidden;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .main .mainImg .slick-slide {
    width: 44vw !important;
  }
}
@media screen and (max-width: 820px) {
  .main div.looptext {
    margin-top: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  .main div.looptext {
    margin-top: 3.125vw;
    margin-bottom: 5.2083333333vw;
  }
}
.main div.looptext ul li {
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .main div.looptext ul li {
    font-size: 8.8vw;
  }
}
@media screen and (min-width: 821px) {
  .main div.looptext ul li {
    font-size: 4.0277777778vw;
    white-space: nowrap;
  }
}
.main h1 {
  position: relative;
}
@media screen and (max-width: 820px) {
  .main h1 {
    margin-bottom: 31.4666666667vw;
  }
}
@media screen and (min-width: 821px) {
  .main h1 {
    margin-bottom: 11.8055555556vw;
  }
}
.main h1 span {
  display: block;
  z-index: 2;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 820px) {
  .main h1 span {
    width: 90.6666666667vw;
    top: 10.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  .main h1 span {
    top: 2.7777777778vw;
    width: 41.6666666667vw;
  }
}
.main p.desc {
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .main p.desc {
    font-size: 3.7333333333vw;
    width: 84vw;
    margin: 0 auto 8vw;
  }
}
@media screen and (min-width: 821px) {
  .main p.desc {
    width: 37.0833333333vw;
    margin: 0 auto 2.0833333333vw;
    font-size: 1.1111111111vw;
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .main p.desc:last-child {
    margin: 0 auto 21.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  .main p.desc:last-child {
    margin: 0 auto 7.6388888889vw;
  }
}

main {
  position: relative;
  width: 100%;
}
main div#fixedmenu {
  position: absolute;
  height: 100%;
  z-index: 999;
}
@media screen and (max-width: 820px) {
  main div#fixedmenu {
    width: 9.3333333333vw;
    left: 85.3333333333vw;
    top: 150px;
  }
}
@media screen and (min-width: 821px) {
  main div#fixedmenu {
    width: 3.4722222222vw;
    left: 83.3333333333vw;
    top: 200px;
  }
}
main div#fixedmenu ul {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 820px) {
  main div#fixedmenu ul li {
    margin-bottom: 1.0666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div#fixedmenu ul li {
    margin-bottom: 0.2777777778vw;
  }
}
main div#fixedmenu ul li img {
  border-radius: 50%;
  border: 3px solid transparent;
}
main div#fixedmenu ul li.active img {
  border: 3px solid #B2B157;
}
@media screen and (max-width: 820px) {
  main div.block {
    margin-top: 26.6666666667vw;
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block {
    margin-top: 9.7222222222vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (max-width: 820px) {
  main div.block .content {
    margin: -32vw auto 0;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content {
    width: 66.6666666667vw;
    margin: -6.9444444444vw auto 0;
    display: flex;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea {
    width: 19.4444444444vw;
    margin-right: 4.1666666667vw;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .heading_sticky {
    position: sticky;
    top: 0;
    margin-bottom: 17.3611111111vw;
  }
}
main div.block .content div.headingArea h2 {
  position: relative;
  color: #B2B157;
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: italic;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea h2 {
    font-size: 11.2vw;
    width: 69.3333333333vw;
    margin: 0 auto 4vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea h2 {
    font-size: 3.4722222222vw;
    margin: 0 auto 0.9722222222vw 1.0416666667vw;
  }
}
main div.block .content div.headingArea h2 span.num {
  display: block;
  writing-mode: vertical-rl;
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: normal;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea h2 span.num {
    font-size: 4.2666666667vw;
    left: -8.8vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea h2 span.num {
    font-size: 1.1111111111vw;
    white-space: nowrap;
    left: -2.0833333333vw;
  }
}
main div.block .content div.headingArea h2 span.brand {
  text-decoration: underline;
  display: block;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea h2 span.brand {
    font-size: 6.4vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea h2 span.brand {
    font-size: 2.2222222222vw;
    margin-bottom: 0.6944444444vw;
  }
}
main div.block .content div.headingArea ul.profile {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile {
    width: 69.3333333333vw;
    margin: 0 auto;
    justify-content: space-between;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile {
    margin-bottom: 1.6666666667vw;
    margin-left: 1.0416666667vw;
  }
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:first-child {
    width: 13.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:first-child {
    width: 4.1666666667vw;
    margin-right: 1.3888888889vw;
  }
}
main div.block .content div.headingArea ul.profile > li:first-child img {
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child {
    width: 53.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child {
    position: relative;
    width: 11.5277777778vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child p {
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child p {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child p {
    font-size: 1.6666666667vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child p span {
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child p span {
    font-size: 2.6666666667vw;
    margin-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child p span {
    font-size: 0.9722222222vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child ul {
  display: flex;
  position: relative;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul {
    font-size: 1.1111111111vw;
    margin-bottom: 0.9722222222vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child ul li {
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: normal;
}
main div.block .content div.headingArea ul.profile > li:last-child ul li:first-child {
  margin-right: 4.2666666667vw;
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul li:first-child {
    margin-right: 1.1111111111vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child ul li a {
  color: #000;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul li a {
    font-size: 0.9722222222vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child ul li a span {
  display: inline-block;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul li a span {
    width: 4.2666666667vw;
    margin-right: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child ul li a span {
    width: 1.1111111111vw;
    margin-right: 0.3472222222vw;
  }
}
main div.block .content div.headingArea ul.profile > li:last-child a.chatbtn {
  display: block;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea ul.profile > li:last-child a.chatbtn {
    width: 50.6666666667vw;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea ul.profile > li:last-child a.chatbtn {
    width: 13.1944444444vw;
  }
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea .link {
    width: 50.6666666667vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link {
    margin-left: 1.0416666667vw;
  }
}
main div.block .content div.headingArea .link ul {
  display: flex;
  position: relative;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea .link ul {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
    margin-left: 6.4vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link ul {
    font-size: 1.1111111111vw;
    margin-bottom: 0.9722222222vw;
  }
}
main div.block .content div.headingArea .link ul li {
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: normal;
}
main div.block .content div.headingArea .link ul li:first-child {
  margin-right: 4.2666666667vw;
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link ul li:first-child {
    margin-right: 1.1111111111vw;
  }
}
main div.block .content div.headingArea .link ul li a {
  color: #333;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea .link ul li a {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link ul li a {
    font-size: 0.9722222222vw;
  }
}
main div.block .content div.headingArea .link ul li a span {
  display: inline-block;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea .link ul li a span {
    width: 4.2666666667vw;
    margin-right: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link ul li a span {
    width: 1.1111111111vw;
    margin-right: 0.3472222222vw;
  }
}
main div.block .content div.headingArea .link a.chatbtn {
  display: block;
}
@media screen and (max-width: 820px) {
  main div.block .content div.headingArea .link a.chatbtn {
    width: 50.6666666667vw;
    margin-top: 4vw;
    margin-left: 6.4vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.headingArea .link a.chatbtn {
    width: 13.1944444444vw;
  }
}
@media screen and (max-width: 820px) {
  main div.block .content div.imgArea {
    padding-top: 18.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.imgArea {
    width: 42.9861111111vw;
    overflow: hidden;
    padding-top: 1.3888888889vw;
  }
}
main div.block .content div.imgArea .img01 {
  position: relative;
}
@media screen and (max-width: 820px) {
  main div.block .content div.imgArea .img01 {
    width: 100%;
    margin-bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.imgArea .img01 {
    width: 34.4444444444vw;
    margin-right: 4.1666666667vw;
  }
}
main div.block .content div.imgArea .img01 span {
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: italic;
  display: block;
  position: absolute;
  top: -1.3888888889vw;
  left: 1.3888888889vw;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  main div.block .content div.imgArea .img01 span {
    font-size: 8.5333333333vw;
    top: -4vw;
    left: 4vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.imgArea .img01 span {
    font-size: 2.2222222222vw;
    top: -1.3888888889vw;
    left: 1.3888888889vw;
  }
}
@media screen and (max-width: 820px) {
  main div.block .content div.imgArea .img02 {
    width: 66.6666666667vw;
    margin: 0 auto 8vw;
  }
}
@media screen and (min-width: 821px) {
  main div.block .content div.imgArea .img02 {
    width: 31.25vw;
  }
}
@media screen and (min-width: 821px) {
  main #block01 {
    margin-top: 0vw;
  }
}
main .detail {
  background: #fff;
  box-sizing: border-box;
  border-top: #dadada solid 1px;
  border-bottom: #dadada solid 1px;
  position: sticky;
  z-index: 99;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  main .detail {
    padding: 4vw 0;
    top: calc(100% - 32vw);
    height: 32vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail {
    width: 100%;
    padding: 1.0416666667vw 0;
    top: calc(100% - 7.6388888889vw);
    height: 7.6388888889vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul {
    width: 89.3333333333vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul {
    width: 43.4027777778vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(1) {
    width: 16vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(1) {
    width: 4.1666666667vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(2) {
    width: 36.8vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(2) {
    width: 18.0555555556vw;
    margin: 0 1.7361111111vw;
  }
}
main .detail ul li:nth-child(2) span {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(2) span {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(2) span {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(2) span:nth-child(1) {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(2) span:nth-child(1) {
    margin-bottom: 0.3472222222vw;
  }
}
main .detail ul li:nth-child(2) span:nth-child(2) {
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(2) span:nth-child(2) {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(2) span:nth-child(2) {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(2) span:nth-child(3) {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(2) span:nth-child(3) {
    font-size: 0.9722222222vw;
  }
}
main .detail ul li:nth-child(3) {
  background: #B2B157;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: kepler-std, serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(3) {
    width: 26.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(3) {
    width: 8.3333333333vw;
    height: 2.7777777778vw;
    border-radius: 1.3888888889vw;
    font-size: 0.9722222222vw;
  }
}
main .detail ul li:nth-child(3)::before {
  content: none;
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(3)::before {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
    margin-right: 0.5555555556vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(3)::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    margin-right: 2.1333333333vw;
  }
}
main .detail ul li:nth-child(3) span {
  position: relative;
}
@media screen and (min-width: 821px) {
  main .detail ul li:nth-child(3) span {
    top: 0.1388888889vw;
  }
}
@media screen and (max-width: 820px) {
  main .detail ul li:nth-child(3) span {
    top: 0.2666666667vw;
  }
}
main .detail ul li.none {
  background: #fff;
}
main .detail ul li.none::before {
  content: "";
  background: none;
}
main p.explain {
  line-height: 2;
}
@media screen and (max-width: 820px) {
  main p.explain {
    width: 77.3333333333vw;
    margin: 4vw 4vw 13.3333333333vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 821px) {
  main p.explain {
    width: 100%;
    margin: 1.0416666667vw auto 0;
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 820px) {
  main ul.slider {
    margin-bottom: 53.3333333333vw !important;
  }
}
@media screen and (min-width: 821px) {
  main ul.slider {
    width: 43.0555555556vw;
    margin: 6.25vw auto 13.8888888889vw !important;
  }
}
@media screen and (min-width: 821px) {
  main ul.slider .slick-list {
    padding: 0 30% 0 0 !important;
  }
}
@media screen and (max-width: 820px) {
  main ul.slider .slick-list li {
    padding: 0 4vw;
  }
}
@media screen and (min-width: 821px) {
  main ul.slider .slick-list li {
    margin-right: 3.3333333333vw;
  }
}
@media screen and (max-width: 820px) {
  main ul.slider .slick-list li img {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  main ul.slider .slick-list li img {
    margin-bottom: 1.3888888889vw;
  }
}
main ul.slider .slick-list li p {
  line-height: 2;
}
@media screen and (min-width: 821px) {
  main ul.slider .slick-list li p {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 820px) {
  main ul.slider .slick-list li p {
    font-size: 3.2vw;
    margin-bottom: 6.6666666667vw;
  }
}
main ul.slider .slick-dots {
  bottom: -5px !important;
}
@media screen and (min-width: 821px) {
  main ul.slider .slick-dots {
    bottom: -30px !important;
  }
}
main .other_credit .item {
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  main .other_credit .item {
    width: 86.6666666667vw;
    margin-top: -16vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item {
    width: 43.4027777778vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
main .other_credit .item a {
  display: block;
  height: auto;
  box-sizing: border-box;
  z-index: 99;
  color: #5A5A5A;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  main .other_credit .item a {
    padding: 3.2vw 0;
    top: calc(100% - 28.2666666667vw);
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a {
    width: calc(50% - 0.6944444444vw);
    margin: 0 0.3472222222vw 1.3888888889vw 0;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul {
    width: 89.3333333333vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(1) {
    width: 13.3333333333vw;
    margin-right: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(1) {
    width: 3.4722222222vw;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(2) {
    width: 72vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(2) {
    width: 13.4027777778vw;
    margin-left: 0.3472222222vw;
  }
}
main .other_credit .item a ul li:nth-child(2) span {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(2) span {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(2) span {
    font-size: 0.7638888889vw;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(1) {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(1) {
    margin-bottom: 0.3472222222vw;
  }
}
main .other_credit .item a ul li:nth-child(2) span:nth-child(2) {
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(2) {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(2) {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(3) {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(2) span:nth-child(3) {
    font-size: 0.9722222222vw;
  }
}
main .other_credit .item a ul li:nth-child(3) {
  background: #9F6F47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: kepler-std, serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(3) {
    width: 26.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(3) {
    width: 13.8888888889vw;
    height: 2.7777777778vw;
    border-radius: 2.0833333333vw;
    font-size: 0.9722222222vw;
  }
}
main .other_credit .item a ul li:nth-child(3)::before {
  content: none;
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(3)::before {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
    margin-right: 0.5555555556vw;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(3)::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    margin-right: 2.1333333333vw;
  }
}
main .other_credit .item a ul li:nth-child(3) span {
  position: relative;
}
@media screen and (min-width: 821px) {
  main .other_credit .item a ul li:nth-child(3) span {
    top: 0.1388888889vw;
  }
}
@media screen and (max-width: 820px) {
  main .other_credit .item a ul li:nth-child(3) span {
    top: 0.2666666667vw;
  }
}
main .other_credit .item a ul li.none {
  background: #fff;
}
main .other_credit .item a ul li.none::before {
  content: "";
  background: none;
}
main .other_credit .item a ul li .price {
  text-decoration: underline;
}

div#allitem {
  background: #ADAC71;
  color: #fff;
}
@media screen and (min-width: 821px) {
  div#allitem {
    padding: 7.2916666667vw 0;
    margin-top: 9.7222222222vw;
  }
}
@media screen and (max-width: 820px) {
  div#allitem {
    padding: 28vw 0;
    margin-top: 37.3333333333vw;
  }
}
div#allitem > p {
  font-family: kepler-std, serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 820px) {
  div#allitem > p {
    font-size: 6.4vw;
    text-align: center;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 821px) {
  div#allitem > p {
    font-size: 1.6666666667vw;
    text-align: center;
    margin-bottom: 1.7361111111vw;
  }
}
div#allitem .allitemlist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist {
    width: 68.0555555556vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 820px) {
  div#allitem .allitemlist li, div#allitem .allitemlist > div {
    width: 33.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist li, div#allitem .allitemlist > div {
    width: 12.5vw;
    margin-bottom: 1.3888888889vw;
  }
}
div#allitem .allitemlist li a, div#allitem .allitemlist > div a {
  color: #fff;
  text-decoration: none;
}
div#allitem .allitemlist li a img, div#allitem .allitemlist > div a img {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist li a img, div#allitem .allitemlist > div a img {
    margin-bottom: 0.6944444444vw;
  }
}
div#allitem .allitemlist li a p, div#allitem .allitemlist > div a p {
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  div#allitem .allitemlist li a p, div#allitem .allitemlist > div a p {
    padding: 0 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist li a p, div#allitem .allitemlist > div a p {
    padding: 0 0.6944444444vw;
    font-size: 0.7638888889vw;
  }
}
div#allitem .allitemlist li a p.ico_box, div#allitem .allitemlist > div a p.ico_box {
  display: none;
}
div#allitem .allitemlist li a p.price, div#allitem .allitemlist > div a p.price {
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  div#allitem .allitemlist li a p.price span, div#allitem .allitemlist > div a p.price span {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist li a p.price span, div#allitem .allitemlist > div a p.price span {
    font-size: 0.9722222222vw;
  }
}
div#allitem .allitemlist li a p img + span, div#allitem .allitemlist > div a p img + span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  background: #219bd9;
  color: #fff;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (min-width: 821px) {
  div#allitem .allitemlist li a p img + span, div#allitem .allitemlist > div a p img + span {
    font-size: 12px;
    padding: 0 10px;
    left: 0.78125vw;
  }
}
@media screen and (max-width: 820px) {
  div#allitem .allitemlist li a p img + span, div#allitem .allitemlist > div a p img + span {
    left: 2.6666666667vw;
    padding: 3px 8px;
    font-size: 10px;
  }
}
div#allitem a.btnall {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  div#allitem a.btnall {
    width: 81.3333333333vw;
    margin: 13.3333333333vw auto 0;
    font-size: 3.2vw;
    text-align: center;
    height: 16vw;
    border-radius: 8vw;
  }
}
@media screen and (min-width: 821px) {
  div#allitem a.btnall {
    width: 21.1805555556vw;
    margin: 3.4722222222vw auto 0;
    font-size: 0.8333333333vw;
    text-align: center;
    height: 4.1666666667vw;
    border-radius: 2.0833333333vw;
  }
}

main ul.slick-dots li {
  padding: 0;
  margin: 0;
}

.slick-dots li.slick-active button:before {
  color: #B2B157 !important;
}

.slick-dots li button:before {
  color: #B2B157 !important;
}

iframe {
  max-width: 1920px !important;
  width: 100%;
}

.slick-dots li button::before {
  font-size: 9px !important;
}

.commonIndex {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  background-color: #676F67;
}
.commonIndex * {
  line-height: 1.6;
  letter-spacing: 0;
}
.commonIndex a {
  color: inherit;
  transition: all 0.6s;
  text-decoration: none;
}
.commonIndex a:active {
  opacity: 0.6;
}
@media screen and (min-width: 1001px) {
  .commonIndex a:hover {
    opacity: 0.6;
  }
}
.commonIndex img {
  width: 100%;
}
.commonIndex ul {
  list-style: none;
}
@media screen and (min-width: 700px) {
  .commonIndex {
    font-size: 12px;
  }
}
.commonIndex__inner {
  width: 85.0666666667%;
  margin: 0 auto;
  padding: 19.7% 0 22.8%;
}
@media screen and (min-width: 700px) {
  .commonIndex__inner {
    padding: 9.4% 0 13.6%;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__inner {
    max-width: 574px;
    padding: 100px 0 60px;
  }
}
.commonIndex__main {
  padding-bottom: 14.1%;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 700px) {
  .commonIndex__main {
    padding-bottom: 10.5%;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__main {
    padding-bottom: 34px;
  }
}
.commonIndex__mainTitle {
  font-size: clamp(49px, 13vw, 52px);
  font-family: fino-sans, sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 0.6;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 700px) {
  .commonIndex__mainTitle {
    font-size: 49px;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__mainTitle {
    font-size: 60px;
    line-height: 0.65;
  }
}
.commonIndex__mainList {
  margin-top: 8.6%;
}
@media screen and (min-width: 700px) {
  .commonIndex__mainList {
    width: 75.2%;
    margin: 9.6% auto 0;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__mainList {
    width: 84.5%;
    margin-top: 34px;
  }
}
.commonIndex__mainList li + li {
  margin-top: 8.6%;
}
@media screen and (min-width: 1001px) {
  .commonIndex__mainList {
    margin-top: 27.5px;
  }
}
.commonIndex__listTitle {
  display: flex;
  align-items: center;
  font-size: clamp(29px, 7.7vw, 32px);
  font-family: fino-sans, sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media screen and (min-width: 700px) {
  .commonIndex__listTitle {
    font-size: 29px;
  }
}
.commonIndex__lh {
  padding-bottom: 5px;
  line-height: 0.8;
}
@media screen and (min-width: 1001px) {
  .commonIndex__lh {
    padding-bottom: 0;
    line-height: 1.5;
  }
}
.commonIndex__brackets {
  font-size: clamp(16px, 4.26vw, 20px);
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: italic;
}
@media screen and (min-width: 700px) {
  .commonIndex__brackets {
    font-size: 16px;
  }
}
.commonIndex__campaign {
  margin-top: 14.1%;
}
@media screen and (min-width: 700px) {
  .commonIndex__campaign {
    width: 75.2%;
    margin: 10.5% auto 0;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__campaign {
    width: 84.5%;
    margin-top: 34px;
  }
}
.commonIndex__campaignList {
  margin-top: 6.83%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 7vw;
}
@media screen and (min-width: 700px) {
  .commonIndex__campaignList {
    margin-top: 5.1%;
    row-gap: 2.5vw;
  }
}
@media screen and (min-width: 1001px) {
  .commonIndex__campaignList {
    margin-top: 16px;
    row-gap: 50px;
  }
}
.commonIndex__campaignList li {
  width: 48%;
}
@media screen and (min-width: 1001px) {
  .commonIndex__campaignList li {
    width: 230px;
  }
}
.commonIndex__campaignText {
  margin-top: 10%;
}
@media screen and (min-width: 1001px) {
  .commonIndex__campaign {
    margin-top: 18px;
  }
}/*# sourceMappingURL=style.css.map */