@charset "UTF-8";
@keyframes horizontal {
  0% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes vertical {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

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

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}
@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: none;
  }
  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: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  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-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: none;
  }
}
.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: none;
  }
}
.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: none;
  }
}
.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-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, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.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) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) 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);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    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-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 {
  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);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.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: none;
    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: none;
    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: none;
    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: none;
    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: none;
    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-name: hinge;
}

/* 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: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

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

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 2;
  font-size: 10px;
  letter-spacing: 0.08em;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

html {
  height: auto;
  overflow: auto;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.flex {
  display: -ms-flex;
  display: flex;
}

.flex-stretch {
  justify-content: space-between;
  align-items: center;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: flex-end;
}

.flex-center {
  align-items: center;
}

.flex-center-middle {
  justify-content: center;
  align-items: center;
}

.flex-reverse {
  flex-flow: row-reverse;
}

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, font, 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 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0;
}
@media (min-width: 480px) {
  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, font, 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 {
    font-size: 15px;
    font-size: calcFluidFontSize(15px, 15px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  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, font, 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 {
    font-size: 15px;
  }
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.footer {
  width: 100%;
  position: relative;
  margin-top: 12.5vw;
}
@media only screen and (max-width:640px) {
  .footer {
    margin-top: 29.6vw;
  }
}
.footer::before {
  width: calc(100% - 80px);
  height: 124px;
  content: "";
  position: absolute;
  left: 40px;
  top: -122px;
  background: url("../images/common/ftr-illust.svg") center/cover no-repeat;
  z-index: -1;
}
@media only screen and (max-width:640px) {
  .footer::before {
    width: 90%;
    height: 62px;
    background: url("../images/common/ftr-illust-sp.svg") center/cover no-repeat;
    top: -62px;
    left: 5%;
  }
}
.footer-nav {
  background: #f5f4f2;
  padding: 4.7619047619vw 0;
}
@media only screen and (max-width:640px) {
  .footer-nav {
    padding: 9.3333333333vw 5.6vw;
  }
}
@media only screen and (max-width:640px) {
  .footer-nav .flex {
    width: 100%;
    display: block;
  }
}
.footer-nav_lists__item {
  margin-right: 4.1666666667vw;
}
@media only screen and (max-width:640px) {
  .footer-nav_lists__item {
    margin: 0 0 22px;
  }
}
.footer-nav_lists__item:last-child {
  margin-bottom: 0;
}
.footer-nav_lists__item a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #009B73;
  padding-left: 16px;
}
@media (min-width: 480px) {
  .footer-nav_lists__item a {
    font-size: 22px;
    font-size: calcFluidFontSize(16px, 22px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .footer-nav_lists__item a {
    font-size: 22px;
  }
}
@media only screen and (max-width:640px) {
  .footer-nav_lists__item a {
    padding-left: 11px;
  }
}
.footer-nav_lists__item a::before {
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  background: #009B73;
  border-radius: 50%;
}
@media only screen and (max-width:640px) {
  .footer-nav_lists__item a::before {
    width: 4px;
    height: 4px;
    top: calc(50% - 2px);
  }
}
.footer-nav_lists__item .sub-lists {
  margin: 8px 0 0 20px;
  border-left: 1px solid rgba(112, 112, 112, 0.3);
}
.footer-nav_lists__item .sub-lists_item {
  line-height: 1;
  margin-bottom: 22px;
}
@media only screen and (max-width:640px) {
  .footer-nav_lists__item .sub-lists_item {
    margin-bottom: 14px;
  }
}
.footer-nav_lists__item .sub-lists_item a {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding-left: 11px;
}
@media (min-width: 480px) {
  .footer-nav_lists__item .sub-lists_item a {
    font-size: 18px;
    font-size: calcFluidFontSize(14px, 18px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .footer-nav_lists__item .sub-lists_item a {
    font-size: 18px;
  }
}
.footer-nav_lists__item .sub-lists_item a::before {
  content: none;
}
.footer-nav_lists-1 li {
  margin-bottom: 42px;
}
@media only screen and (max-width:640px) {
  .footer-nav_lists-1 li {
    margin-bottom: 0;
  }
}
.footer-nav_lists-3 li {
  margin-bottom: 32px;
}
@media only screen and (max-width:640px) {
  .footer-nav_lists-3 li {
    margin-bottom: 0;
  }
}
.footer .copyright {
  background: #009B73;
  color: #fff;
  line-height: 1.5;
  font-size: 10px;
  text-align: center;
  padding: 18px 0 22px;
}
@media (min-width: 480px) {
  .footer .copyright {
    font-size: 14px;
    font-size: calcFluidFontSize(10px, 14px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .footer .copyright {
    font-size: 14px;
  }
}

.header {
  position: relative;
}
.header h1 img, .header .bg img {
  width: 100%;
}
.header.lpindex {
  width: 100%;
  padding-top: 56.25%;
}
.header.lpindex iframe {
  top: 0;
  left: 0;
}
.header-menorca h1 {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width:640px) {
  .header-menorca h1 {
    width: 80%;
    max-width: 672px;
  }
}
.header-menorca h1 span {
  display: block;
}

@media only screen and (min-width:780px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width:640px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.wrapper {
  width: 1020px;
  min-width: 1020px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width:640px) {
  .wrapper {
    width: 90%;
    min-width: auto;
  }
}

.btn-more {
  position: relative;
  text-align: center;
}
.btn-more a {
  width: 100%;
  padding: 16px 0;
  display: block;
  font-style: normal;
  position: relative;
  color: #313E8C;
  font-size: 18px;
  text-align: center;
  border-radius: 44px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
@media (min-width: 480px) {
  .btn-more a {
    font-size: 24px;
    font-size: calcFluidFontSize(18px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .btn-more a {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .btn-more a {
    padding: 7px 0;
  }
}
.btn-more a span {
  font-size: 18px;
}
@media (min-width: 480px) {
  .btn-more a span {
    font-size: 24px;
    font-size: calcFluidFontSize(18px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .btn-more a span {
    font-size: 24px;
  }
}
.btn-more-has_line-blue a {
  border: 2px solid #54c3f1;
  color: #54c3f1;
}
.btn-more-has_arw a .icon-arw {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width:640px) {
  .btn-more-has_arw a .icon-arw {
    width: 15px;
  }
}
.btn-more-has_bg a {
  color: #fff;
}
.btn-more-has_bg-grade a {
  background: rgb(0, 141, 199);
  background: linear-gradient(0deg, rgb(0, 141, 199) 0%, rgb(0, 141, 199) 30%, rgb(84, 195, 241) 100%);
}
.btn-more-has_bg-grade a span {
  color: #fff;
}
.btn-more-has_illust a .icon-illust {
  width: 41px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(-50%, -50%);
  display: block;
}
@media only screen and (max-width:640px) {
  .btn-more-has_illust a .icon-illust {
    width: 30px;
  }
}
.btn-more-has_icon-plus a .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 30px;
  display: block;
}
.btn-more-has_icon-plus a .icon::before, .btn-more-has_icon-plus a .icon::after {
  content: "";
  position: absolute;
  background: #54c3f1;
}
.btn-more-has_icon-plus a .icon::before {
  width: 2px;
  height: 20px;
  top: 0;
  left: calc(50% - 1px);
}
.btn-more-has_icon-plus a .icon::after {
  width: 20px;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
}

a {
  transition: 0.5s;
}
a:hover, a:focus {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.box-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 100%;
  z-index: 10;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -9999px;
}
.box-link:hover {
  cursor: pointer;
}

.ac_lists .acMenu {
  position: relative;
}
.ac_lists .acMenu dt {
  font-size: 14px;
  letter-spacing: 0;
  display: block;
}
@media (min-width: 480px) {
  .ac_lists .acMenu dt {
    font-size: 18px;
    font-size: calcFluidFontSize(14px, 18px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .ac_lists .acMenu dt {
    font-size: 18px;
  }
}
.ac_lists .acMenu dt:hover {
  cursor: pointer;
}
.ac_lists .acMenu dd {
  display: none;
}
.ac_lists .acMenu dd a {
  font-size: 14px;
  letter-spacing: 0;
}
@media (min-width: 480px) {
  .ac_lists .acMenu dd a {
    font-size: 18px;
    font-size: calcFluidFontSize(14px, 18px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .ac_lists .acMenu dd a {
    font-size: 18px;
  }
}

.modal {
  width: 100%;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55000;
}
.modal_btn {
  width: 320px;
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 100;
}
@media only screen and (min-width:780px) and (max-width:1366px) {
  .modal_btn {
    bottom: 13vh;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .modal_btn {
    bottom: 15vh;
  }
}
@media only screen and (max-width:640px) {
  .modal_btn {
    width: 50%;
    bottom: 35vw;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.modal_btn .img {
  position: relative;
}
.modal_btn .img::before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.modal_bg {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
}
.modal_content {
  width: 90%;
  height: 90vh;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 100;
  overflow: scroll;
}
@media only screen and (max-width:640px) {
  .modal_content {
    border-radius: 10px;
    padding: 7% 5%;
  }
}
.modal_content .ttl {
  margin-bottom: -41px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:640px) {
  .modal_content .ttl {
    width: 80%;
    margin: 0 auto -23px;
  }
}
.modal_content .content {
  position: relative;
  z-index: 1;
}
.modal_content .content span {
  display: block;
}
.modal_content .content span.content-img1 {
  position: relative;
}
.modal_content .content-img2 {
  position: relative;
}
.modal_content .content-img2 .table {
  width: 88%;
  position: absolute;
  top: 0;
  left: 6%;
  overflow: auto;
  white-space: nowrap;
}
.modal_content .content-img2 .table i {
  width: 490px;
  display: block;
}
.modal .js-modal-close-btn {
  position: fixed;
  top: calc(5% + 40px);
  right: calc(5% + 40px);
  z-index: 1000;
  display: block;
}
@media only screen and (max-width:640px) {
  .modal .js-modal-close-btn {
    width: 25px;
    top: calc(5vh + 10px);
    right: calc(5% + 10px);
  }
}
.modal .js-modal-close-btn:hover {
  cursor: pointer;
}

.table_clm {
  width: 100%;
}
.table_clm tr th, .table_clm tr td {
  text-align: left;
  border-bottom: 2px solid #727171;
  padding: 20px 0;
}
@media only screen and (max-width:640px) {
  .table_clm tr th, .table_clm tr td {
    display: block;
    padding: 0;
  }
}
.table_clm tr th {
  width: 30%;
  font-weight: 700;
  position: relative;
  font-size: 14px;
  letter-spacing: -0.05em;
}
@media (min-width: 480px) {
  .table_clm tr th {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr th {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr th {
    width: 100%;
    border-bottom: 0;
    padding-top: 6px;
  }
}
.table_clm tr td {
  width: 70%;
  line-height: 1.563;
  font-size: 14px;
}
@media (min-width: 480px) {
  .table_clm tr td {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td {
    width: 100%;
    line-height: 1.24;
    padding-bottom: 10px;
  }
}
.table_clm tr td .box {
  margin-bottom: 20px;
}
.table_clm tr td .box .strong {
  font-size: 14px;
  font-weight: 800;
  color: #54c3f1;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
@media (min-width: 480px) {
  .table_clm tr td .box .strong {
    font-size: 20px;
    font-size: calcFluidFontSize(14px, 20px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td .box .strong {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td .box .strong {
    line-height: 1.24;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td .box .img_txt {
    display: block;
  }
}
.table_clm tr td .box .img_txt .img {
  width: 40%;
}
@media only screen and (max-width:640px) {
  .table_clm tr td .box .img_txt .img {
    width: 100%;
  }
}
.table_clm tr td .box .img_txt .img img {
  border-radius: 10px;
}
.table_clm tr td .box .img_txt .txt {
  width: 58%;
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td .box .img_txt .txt {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td .box .img_txt .txt {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td .box .img_txt .txt {
    width: 100%;
    line-height: 1.24;
    margin-top: 10px;
  }
}
.table_clm tr td dl {
  border-bottom: 2px solid #727171;
  padding-bottom: 18px;
  margin-bottom: 16px;
}
@media only screen and (max-width:640px) {
  .table_clm tr td dl {
    margin-top: 10px;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.table_clm tr td dl:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.table_clm tr td dl dt {
  width: 4em;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .table_clm tr td dl dt {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td dl dt {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td dl dt {
    line-height: 1.3;
  }
}
.table_clm tr td dl dd {
  width: calc(100% - 10px - 4em);
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td dl dd {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td dl dd {
    font-size: 16px;
  }
}
.table_clm tr td .icon {
  width: 33px;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width:640px) {
  .table_clm tr td .icon {
    width: 20px;
  }
}
.table_clm tr td .indent {
  line-height: 1.563;
  font-size: 14px;
  padding-left: 1em;
  display: block;
}
@media (min-width: 480px) {
  .table_clm tr td .indent {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td .indent {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td .indent {
    line-height: 1.24;
  }
}
.table_clm tr td .indent span {
  padding-left: 1em;
  display: inline-block;
}
.table_clm tr td ul {
  padding-left: 1em;
}
@media only screen and (max-width:640px) {
  .table_clm tr td ul {
    padding-left: 1.5em;
  }
}
.table_clm tr td ul li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td ul li {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td ul li {
    line-height: 1.24;
  }
}
.table_clm tr td ul li::marker {
  font-size: 0.6em;
}
@media only screen and (max-width:640px) {
  .table_clm tr td ul li::marker {
    font-size: 1em;
  }
}
.table_clm tr td ol {
  padding-left: 1em;
}
.table_clm tr td ol li {
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td ol li {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td ol li {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td ol li {
    line-height: 1.24;
  }
}
.table_clm tr td span {
  color: #e4002b;
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td span {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td span {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td span {
    line-height: 1.24;
  }
}
.table_clm tr td a {
  text-decoration: underline;
  word-break: break-all;
  color: #2364ba;
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .table_clm tr td a {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .table_clm tr td a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm tr td a {
    line-height: 1.24;
  }
}
.table_clm tr:last-child th, .table_clm tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}
.table_clm tr:first-child th, .table_clm tr:first-child td {
  padding-top: 0;
}

.page-navi {
  margin: 6.8452380952vw auto 3.869047619vw;
}
@media only screen and (max-width:640px) {
  .page-navi_lists {
    flex-wrap: wrap;
  }
}
.page-navi_lists__item {
  width: calc((100% - 39px) / 4);
}
@media only screen and (max-width:640px) {
  .page-navi_lists__item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
}
.page-navi_lists__item a {
  text-align: center;
  font-size: 14px;
  border-radius: 10px;
  background: #fff;
  color: #2364ba;
  display: block;
  padding: 10px 0;
}
@media (min-width: 480px) {
  .page-navi_lists__item a {
    font-size: 20px;
    font-size: calcFluidFontSize(14px, 20px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .page-navi_lists__item a {
    font-size: 20px;
  }
}
.page-navi_lists__item a .icon-arw {
  display: block;
  margin-top: 2px;
}

.section-box {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(24deg, #c5c5c5 0%, #dadada 25%, #a0a0a0 75%, #dddddd 100%);
  padding: 10px;
  margin-bottom: 5.9523809524vw;
}
@media only screen and (max-width:640px) {
  .section-box {
    border-radius: 15px;
    padding: 6px;
  }
}
.section-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: #fff;
  z-index: -1;
}
.section-box .ttl-bg {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 2px 0;
  background: url("../images/menorca/title-bg.png") center/cover;
  border-radius: 12px 12px 0 0;
  position: relative;
}
@media (min-width: 480px) {
  .section-box .ttl-bg {
    font-size: 48px;
    font-size: calcFluidFontSize(24px, 48px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box .ttl-bg {
    font-size: 48px;
  }
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg {
    border-radius: 8px 8px 0 0;
    line-height: 1.4;
  }
}
.section-box .ttl-bg .ic-star {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  position: relative;
}
@media (min-width: 480px) {
  .section-box .ttl-bg .ic-star {
    font-size: 48px;
    font-size: calcFluidFontSize(24px, 48px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box .ttl-bg .ic-star {
    font-size: 48px;
  }
}
.section-box .ttl-bg .ic-star::before, .section-box .ttl-bg .ic-star::after {
  content: "";
  background: center/cover no-repeat;
  position: absolute;
}
.section-box .ttl-bg .ic-star::before {
  background-image: url(../images/kewpiecollection/ttl-illust_l.svg);
  top: -10px;
  left: -59px;
  transform: translate(-100%, 0%);
  width: 59px;
  height: 59px;
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg .ic-star::before {
    width: 1.25em;
    height: 1.25em;
    top: -0.25em;
    left: -0.35em;
  }
}
.section-box .ttl-bg .ic-star::after {
  content: "";
  background-image: url(../images/kewpiecollection/ttl-illust_r.svg);
  position: absolute;
  top: -5px;
  right: -54px;
  transform: translate(100%, 0%);
  width: 75px;
  height: 72px;
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg .ic-star::after {
    width: 1em;
    height: 1em;
    top: 0.35em;
    right: -0.5em;
  }
}
.section-box .ttl-bg.more:hover {
  cursor: pointer;
}
.section-box .ttl-bg.more .icon-toggle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% - 15px);
  right: 30px;
  transition: 0.5s;
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg.more .icon-toggle {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
    right: 10px;
  }
}
.section-box .ttl-bg.more .icon-toggle::before, .section-box .ttl-bg.more .icon-toggle::after {
  position: absolute;
  content: "";
  background: #fff;
  transition: 0.5s;
}
.section-box .ttl-bg.more .icon-toggle::before {
  width: 30px;
  height: 3px;
  top: calc(50% - 2px);
  left: 0;
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg.more .icon-toggle::before {
    width: 15px;
    height: 2px;
    top: calc(50% - 1px);
  }
}
.section-box .ttl-bg.more .icon-toggle::after {
  width: 3px;
  height: 30px;
  top: 0;
  left: calc(50% - 2px);
}
@media only screen and (max-width:640px) {
  .section-box .ttl-bg.more .icon-toggle::after {
    width: 2px;
    height: 15px;
    left: calc(50% - 1px);
  }
}
.section-box .ttl-bg.more.active .icon-toggle::before {
  overflow: hidden;
  display: none;
}
.section-box .ttl-bg.more.active .icon-toggle::after {
  transform: rotate(270deg);
}
.section-box .content {
  background: #fff;
  padding: 40px 50px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width:640px) {
  .section-box .content {
    padding: 3% 5% 12%;
  }
}
.section-box .content.opne-content {
  display: none;
}
.section-box.summary .opne-content, .section-box.notes .opne-content {
  display: block;
}
.section-box.contact .content .ttl, .section-box.contact .content .tel, .section-box.contact .content .date, .section-box.contact .content a, .section-box.contact .content small {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.section-box.contact .content .ttl {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.406;
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .section-box.contact .content .ttl {
    font-size: 32px;
    font-size: calcFluidFontSize(15px, 32px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .ttl {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .ttl {
    line-height: 1.3333;
    margin-top: 12px;
    margin-bottom: 5px;
  }
}
.section-box.contact .content .tel {
  margin: 24px 0 16px;
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .tel {
    margin-top: 10px;
  }
}
.section-box.contact .content .tel a {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 480px) {
  .section-box.contact .content .tel a {
    font-size: 32px;
    font-size: calcFluidFontSize(18px, 32px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .tel a {
    font-size: 32px;
  }
}
.section-box.contact .content .tel a .icon {
  width: 74px;
  display: inline-block;
  vertical-align: middle;
  margin: -8px 6px 0 0;
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .tel a .icon {
    width: 1.8em;
  }
}
.section-box.contact .content .tel small {
  font-size: 15px;
  display: block;
}
@media (min-width: 480px) {
  .section-box.contact .content .tel small {
    font-size: 18px;
    font-size: calcFluidFontSize(15px, 18px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .tel small {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .tel small {
    line-height: 1;
    margin-top: 6px;
  }
}
.section-box.contact .content .date {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.667;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .section-box.contact .content .date {
    font-size: 24px;
    font-size: calcFluidFontSize(12px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .date {
    font-size: 24px;
  }
}
.section-box.contact .content .txt {
  font-size: 12px;
  line-height: 1.563;
  margin-bottom: 14px;
}
@media (min-width: 480px) {
  .section-box.contact .content .txt {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .txt {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .txt {
    line-height: 1.24;
  }
}
.section-box.contact .content .attention p {
  font-size: 12px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .section-box.contact .content .attention p {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .attention p {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .attention p {
    line-height: 1.5;
  }
}
.section-box.contact .content .attention blockquote {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.563;
  padding: 30px;
  background: #fcfbf4;
}
@media (min-width: 480px) {
  .section-box.contact .content .attention blockquote {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .section-box.contact .content .attention blockquote {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .section-box.contact .content .attention blockquote {
    padding: 5%;
    line-height: 1.24;
    margin-top: 8px;
  }
}

.l-simple-footer .l-fsnav__list__itm__link {
  font-size: 13px !important;
}

@media only screen and (max-width:640px) {
  .l-fsnav__list__itm {
    line-height: 1;
  }
  .l-simple-footer .l-fsnav__list__itm__link {
    line-height: 1 !important;
  }
  .l-simple-footer a img {
    margin: auto;
  }
}
header .closed-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #59c3ef;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2.0833333333vw;
  font-size: 2.0833333333vw;
  text-align: center;
}
@media only screen and (max-width:640px) {
  header .closed-txt {
    padding: 4vw 2.6666666667vw;
    font-size: 4vw;
  }
}

.is-index {
  width: 100%;
  padding: 5.119047619vw 0;
  background: url("../images/index/bg-pc.jpg") center/cover no-repeat;
  position: relative;
}
.is-index .closed-txt {
  border: 3px solid #59c3ef;
  background-color: #fff;
  padding: 2.0833333333vw;
  letter-spacing: -.03em;
  font-size: 18px;
  text-align: center;
  margin: 2.9761904762vw auto;
  color:#727171;
}
.is-index .closed-txt span {
  letter-spacing: -.03em;
  font-size:30px;
  color:#727171;
}
@media only screen and (max-width:640px) {
  .is-index .closed-txt {
    padding: 4.6666666667vw;
    font-size: 4.26666667vw;
    margin: 6.6666666667vw auto;
  }
  .is-index .closed-txt span {
      font-size: 5.3333333vw;
  }
  .is-index .star {
    display: block;
    mix-blend-mode: screen;
  }
}
@media only screen and (max-width:640px) {
  .is-index .star {
    mix-blend-mode: normal;
  }
}
.is-index .star_shape {
  position: absolute;
  z-index: 1;
}
.is-index .star_shape-1 {
  top: 19.0476190476vw;
  left: 3.5714285714vw;
}
@media only screen and (max-width:640px) {
  .is-index .star_shape-1 {
    width: 30%;
    top: 40vw;
    left: -6.6666666667vw;
  }
}
.is-index .star_shape-2 {
  top: 5.3571428571vw;
  right: 5.3571428571vw;
}
@media only screen and (max-width:640px) {
  .is-index .star_shape-2 {
    width: 20%;
    top: 0;
    right: 0;
  }
}
.is-index .star_shape-3 {
  top: 49.4047619048vw;
  right: 7.7380952381vw;
}
@media only screen and (max-width:640px) {
  .is-index .star_shape-3 {
    width: 30%;
  }
}
.is-index-ttl {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:640px) {
  .is-index-ttl {
    width: 98%;
    margin: 0 auto;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-index-ttl h2, .is-index-ttl p {
    width: 90%;
    margin: 0 auto;
  }
}
.is-index-ttl h2 {
  margin-bottom: 2.380952381vw;
}
@media only screen and (max-width:640px) {
  .is-index-ttl p {
    width: 92%;
    margin: 0 auto;
  }
}
.is-index-link {
  margin-top: 4.7619047619vw;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-index-link {
    width: 90%;
    min-width: auto;
  }
}
.is-index-link_box {
  width: 100%;
  position: relative;
}
.is-index-link_box .btn {
  position: absolute;
  right: 2.380952381vw;
}
@media only screen and (max-width:640px) {
  .is-index-link_box .btn {
    width: 80%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.is-index-link_box-1 {
  margin-bottom: 2.9761904762vw;
}
.is-index-link_box-1 .btn {
  bottom: 130px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-index-link_box-1 .btn {
    width: 38%;
    bottom: 8vw;
  }
}
@media only screen and (max-width:640px) {
  .is-index-link_box-1 .btn {
    bottom: 10px;
  }
}
.is-index-link_box-2 .btn {
  bottom: 80px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-index-link_box-2 .btn {
    width: 38%;
    bottom: 8vw;
  }
}
@media only screen and (max-width:640px) {
  .is-index-link_box-2 .btn {
    bottom: 79.2vw;
  }
}

.bnr a {
  display: block;
  width: 420px;
  padding: 0 10px;
  margin: 4.7619047619vw auto 0;
}
@media only screen and (max-width:640px) {
  .bnr a {
    width: 94%;
  }
}

.lpindex .kv_scroll {
  position: absolute;
  right: 20px;
  bottom: 50px;
  width: 21px;
}
@media only screen and (max-width:640px) {
  .lpindex .kv_scroll {
    right: 2vw;
    bottom: 6.6666666667vw;
    width: 2.4vw;
  }
}

.is-kv {
  position: relative;
}

.is-kewpiecollection {
  width: 100%;
  padding: 5.119047619vw 0;
  background: url("../images/menorca/bg-pc.jpg") center top/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.is-kewpiecollection .closed-txt {
  border: 3px solid #59c3ef;
  background-color: #fff;
  padding: 2.0833333333vw;
  font-size: 2.0833333333vw;
  text-align: center;
  margin-bottom: 2.9761904762vw;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .closed-txt {
    padding: 4.6666666667vw;
    font-size: 4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.is-kewpiecollection .star {
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .star {
    left: 10%;
  }
}
.is-kewpiecollection .howto .content .lead {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .lead {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .lead {
    font-size: 16px;
  }
}
.is-kewpiecollection .howto .content .lead-1 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.is-kewpiecollection .howto .content .lead-1 b {
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  line-height: 1.515;
  font-weight: 800;
  color: #727171;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .lead-1 b {
    font-size: 33px;
    font-size: calcFluidFontSize(17px, 33px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .lead-1 b {
    font-size: 33px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .lead-1 b {
    margin-bottom: 20px;
  }
}
.is-kewpiecollection .howto .content .lead-1 span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.is-kewpiecollection .howto .content .box-howto {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px dotted #727171;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists {
    display: block;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item {
  width: calc((100% - 23px) / 2);
  border: 5px solid #8d8d8e;
  border-radius: 20px;
  margin-right: 23px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item {
    width: 100%;
    padding: 5%;
    margin-bottom: 20px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item:last-child {
  margin-right: 0;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item:last-child {
    margin-bottom: 0;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #54c3f1;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item h3 {
    font-size: 33px;
    font-size: calcFluidFontSize(22px, 33px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item h3 {
    font-size: 33px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .img {
  margin-bottom: 20px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .img {
    width: 30%;
    margin: 0 auto 20px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .lead {
  font-size: 14px;
  line-height: 1.375;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead {
    text-align: left;
    letter-spacing: -0.05em;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .lead span {
  font-size: 14px;
  line-height: 1.375;
  font-weight: 600;
  color: #54c3f1;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead span {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead span {
    font-size: 16px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .lead small {
  margin-top: 12px;
  display: block;
  font-size: 13px;
  line-height: 1.333;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead small {
    font-size: 15px;
    font-size: calcFluidFontSize(13px, 15px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .lead small {
    font-size: 15px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more {
  margin-top: auto;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more .icon-illust {
    width: 20px;
    left: 30px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more span {
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more span {
    font-size: 24px;
    font-size: calcFluidFontSize(16px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more span {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item .btn-more .icon-arw {
    width: 10px;
    right: 10px;
  }
}
.is-kewpiecollection .howto .content .box-howto .step_lists__item:first-child .lead {
  margin-top: 24px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .step_lists__item:first-child .lead {
    margin-top: 0;
  }
}
.is-kewpiecollection .howto .content .box-howto .notes {
  font-size: 12px;
  line-height: 1.583;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .notes {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .notes {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .notes {
    margin-top: 14px;
    line-height: 1.25;
  }
}
.is-kewpiecollection .howto .content .box-howto .notes strong {
  font-size: 12px;
  line-height: 1.583;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .notes strong {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .notes strong {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .notes strong {
    line-height: 1.25;
  }
}
.is-kewpiecollection .howto .content .box-howto .notes small {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.583;
  display: block;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-howto .notes small {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-howto .notes small {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-howto .notes small {
    line-height: 1.25;
    margin-top: 9px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ttl {
  border-radius: 25px;
  text-align: center;
  background: #54c3f1;
  padding: 11px 0;
  line-height: 1;
  margin-bottom: 26px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ttl {
    margin-bottom: 16px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ttl span {
  color: #fff;
  line-height: 1;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  position: relative;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .ttl span {
    font-size: 28px;
    font-size: calcFluidFontSize(18px, 28px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .ttl span {
    font-size: 28px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ttl span {
    padding-left: 20px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ttl span::before {
  width: 37px;
  height: 34px;
  content: "";
  position: absolute;
  top: calc(50% - 17px);
  left: -47px;
  background: url("../images/mustbuy/icon-notes.svg") center/cover no-repeat;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ttl span::before {
    width: 20px;
    height: 18px;
    top: calc(50% - 9px);
    left: -5px;
  }
}
.is-kewpiecollection .howto .content .box-notes .main-lead {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.667;
  text-align: center;
  margin-bottom: 22px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .main-lead {
    font-size: 24px;
    font-size: calcFluidFontSize(14px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .main-lead {
    font-size: 24px;
  }
}
.is-kewpiecollection .howto .content .box-notes .main-lead span {
  color: #54c3f1;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.667;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .main-lead span {
    font-size: 24px;
    font-size: calcFluidFontSize(14px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .main-lead span {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box {
    display: block;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box .img {
  width: 48%;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .img {
    width: 100%;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box .txt {
  width: 48%;
  font-size: 12px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .txt {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .txt {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .txt {
    width: 100%;
    margin-top: 14px;
    line-height: 1.25;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #f2f2e6;
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl span {
  display: inline-block;
  background: #fff;
  position: relative;
  padding: 0 24px 0 53px;
  font-size: 18px;
  font-weight: 800;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-ttl span {
    font-size: 32px;
    font-size: calcFluidFontSize(18px, 32px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-ttl span {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-ttl span {
    padding: 0 12px 0 30px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl span::before {
  width: 38px;
  height: 38px;
  content: "";
  position: absolute;
  top: calc(50% - 19px);
  left: 12px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-ttl span::before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 5px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl.good span::before {
  background: url("../images/kewpiecollection/icon-circle.svg") center/cover no-repeat;
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ttl.ng span::before {
  background: url("../images/kewpiecollection/icon-cross.svg") center/cover no-repeat;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box_lists {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box_lists__item {
    width: calc((100% - 10px) / 2);
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box .notes {
  font-size: 12px;
  line-height: 1.563;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .notes {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .notes {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box .notes {
    line-height: 1.25;
    letter-spacing: -0.05em;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box-good {
  margin-top: 50px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-good {
    margin-top: 10px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box-ng {
  margin-top: 20px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box-ng {
    margin-top: 10px;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box:last-child .ex-box_lists {
  margin-bottom: 16px;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box:last-child .ex-box_lists {
    align-items: center;
    flex-wrap: wrap;
  }
}
.is-kewpiecollection .howto .content .box-notes .ex-box:last-child .ex-box_lists__item {
  width: calc((100% - 80px) / 6);
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .howto .content .box-notes .ex-box:last-child .ex-box_lists__item {
    width: calc((100% - 20px) / 3);
    margin-bottom: 5px;
  }
}
.is-kewpiecollection .subject .lead {
  font-size: 12px;
  line-height: 1.563;
  margin-top: 14px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .subject .lead {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .subject .lead {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .subject .lead {
    line-height: 1.5;
  }
}
.is-kewpiecollection .subject .lead small {
  font-size: 12px;
  line-height: 1.563;
  margin-top: 11px;
  display: block;
}
@media (min-width: 480px) {
  .is-kewpiecollection .subject .lead small {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .subject .lead small {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .subject .lead small {
    line-height: 1.5;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .subject .ex-box_lists {
    align-items: center;
    flex-wrap: wrap;
  }
}
.is-kewpiecollection .subject .ex-box_lists__item {
  margin-right: 5px;
}
.is-kewpiecollection .subject .ex-box_lists__item:last-child {
  margin-right: 0;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .subject .ex-box_lists__item {
    width: 20%;
    margin-right: 0;
  }
  .is-kewpiecollection .subject .ex-box_lists__item:nth-child(n+6) {
    width: 16.6666666667%;
  }
}
.is-kewpiecollection .summary .table_clm tr td .img_txt .txt {
  font-size: 11px;
}
@media (min-width: 480px) {
  .is-kewpiecollection .summary .table_clm tr td .img_txt .txt {
    font-size: 14px;
    font-size: calcFluidFontSize(11px, 14px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-kewpiecollection .summary .table_clm tr td .img_txt .txt {
    font-size: 14px;
  }
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .summary .table_clm tr td .img_txt .txt {
    margin-top: -15px;
  }
}
.is-kewpiecollection .summary .table_clm tr td span.sp_smalltxt {
  color: #333;
}
@media only screen and (max-width:640px) {
  .is-kewpiecollection .summary .table_clm tr td span.sp_smalltxt {
    font-size: 13px;
  }
}
@media only screen and (max-width:640px) and (min-width: 480px) {
  .is-kewpiecollection .summary .table_clm tr td span.sp_smalltxt {
    font-size: 14px;
    font-size: calcFluidFontSize(13px, 14px, 480px, 1280px, px);
  }
}
@media only screen and (max-width:640px) and (min-width: 1280px) {
  .is-kewpiecollection .summary .table_clm tr td span.sp_smalltxt {
    font-size: 14px;
  }
}

.is-menorca {
  width: 100%;
  padding: 5.119047619vw 0;
  background: url("../images/menorca/bg-pc.jpg") center top/cover no-repeat;
  position: relative;
}
.is-menorca .closed-txt {
  border: 3px solid #59c3ef;
  background-color: #fff;
  padding: 2.0833333333vw;
  font-size: 2.0833333333vw;
  text-align: center;
  margin-bottom: 2.9761904762vw;
}
@media only screen and (max-width:640px) {
  .is-menorca .closed-txt {
    padding: 4.6666666667vw;
    font-size: 4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.is-menorca .star {
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .is-menorca .star {
    left: 10%;
  }
}
.is-menorca-quiz-outline .ttl {
  text-align: center;
}
.is-menorca-quiz-outline .ttl span {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  position: relative;
  color: #727171;
  display: inline-block;
}
@media (min-width: 480px) {
  .is-menorca-quiz-outline .ttl span {
    font-size: 48px;
    font-size: calcFluidFontSize(30px, 48px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz-outline .ttl span {
    font-size: 48px;
  }
}
.is-menorca-quiz-outline .ttl span::before {
  width: 100%;
  height: 6px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/menorca/ttl-bg.png");
}
.is-menorca-quiz-outline_btn_lists {
  margin: 40px auto 60px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline_btn_lists {
    margin: 30px auto 40px;
    display: block;
  }
}
.is-menorca-quiz-outline_btn_lists__item {
  width: 390px;
  margin: 0 10px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline_btn_lists__item {
    width: 84%;
    margin: 0 auto 20px;
  }
}
.is-menorca-quiz-outline_btn_lists__item a {
  width: 100%;
}
.is-menorca-quiz-outline-box {
  position: relative;
}
.is-menorca-quiz-outline-box .ttl {
  margin-bottom: -47px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline-box .ttl {
    width: 80%;
    margin: 0 auto -25px;
  }
}
.is-menorca-quiz-outline-box .inner {
  width: 87%;
  position: absolute;
  bottom: 50px;
  left: 4.1666666667vw;
}
.is-menorca-quiz-outline-box .inner .btn-more {
  width: 380px;
  margin: 50px auto 0;
}
.is-menorca-quiz-outline-box .bg {
  position: relative;
}
.is-menorca-quiz-outline-box .bg img {
  width: 100%;
}
.is-menorca-quiz-outline-box .bg a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.is-menorca-quiz-outline-box-2 {
  margin-top: 100px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline-box-2 {
    margin-top: 30px;
  }
}
.is-menorca-quiz-outline-box-2 .inner {
  bottom: 60px;
}
.is-menorca-quiz-outline .notes {
  font-size: 12px;
  line-height: 1.583;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .is-menorca-quiz-outline .notes {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz-outline .notes {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline .notes {
    margin-top: 14px;
    line-height: 1.25;
  }
}
.is-menorca-quiz-outline .notes strong {
  font-size: 12px;
  line-height: 1.583;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-menorca-quiz-outline .notes strong {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz-outline .notes strong {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline .notes strong {
    line-height: 1.25;
  }
}
.is-menorca-quiz-outline .notes small {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.583;
  display: block;
}
@media (min-width: 480px) {
  .is-menorca-quiz-outline .notes small {
    font-size: 12px;
    font-size: calcFluidFontSize(12px, 12px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz-outline .notes small {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz-outline .notes small {
    line-height: 1.25;
    margin-top: 9px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .page-navi_lists__item a {
    line-height: 1.143;
    padding: 18px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .page-navi_lists__item a .icon-arw {
    width: 10px;
    margin: 8px auto 0;
  }
}
.is-menorca-quiz .page-navi_lists__item:nth-child(3) a {
  padding: 10px 0;
}
.is-menorca-quiz .howto .content {
  padding-top: 20px;
}
.is-menorca-quiz .howto .content .lead {
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .lead {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .lead {
    font-size: 16px;
  }
}
.is-menorca-quiz .howto .content .lead-1 {
  text-align: center;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.is-menorca-quiz .howto .content .lead-1 b {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.515;
  font-weight: 800;
  color: #727171;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .lead-1 b {
    font-size: 33px;
    font-size: calcFluidFontSize(18px, 33px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .lead-1 b {
    font-size: 33px;
  }
}
.is-menorca-quiz .howto .content .lead-1 span {
  margin-left: 10px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .lead-1 span {
    width: 70px;
    margin-left: 0;
    position: absolute;
    top: -25px;
    right: -10px;
  }
}
.is-menorca-quiz .howto .content .lead-2 {
  line-height: 2.188;
  margin-bottom: 40px;
  font-weight: 800;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .lead-2 {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .lead-2 {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .lead-2 {
    margin-bottom: 20px;
    line-height: 1.667;
    letter-spacing: -0.05em;
  }
}
.is-menorca-quiz .howto .content .lead-2 a {
  font-size: 12px;
  font-weight: 800;
  line-height: 2.188;
  font-family: "Noto Serif JP", serif;
  color: #2364ba;
  text-decoration: underline;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .lead-2 a {
    font-size: 16px;
    font-size: calcFluidFontSize(12px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .lead-2 a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .lead-2 a {
    line-height: 1.667;
    letter-spacing: -0.05em;
  }
}
.is-menorca-quiz .howto .content .box {
  border-bottom: 1px solid #727171;
  margin-bottom: 50px;
  padding-bottom: 70px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.is-menorca-quiz .howto .content .box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.is-menorca-quiz .howto .content .box h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #54c3f1;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .box h3 {
    font-size: 33px;
    font-size: calcFluidFontSize(22px, 33px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .box h3 {
    font-size: 33px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists {
    display: block;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item {
  width: calc((100% - 38px) / 3);
  border: 5px solid #54c3f1;
  border-radius: 20px;
  margin-right: 19px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.is-menorca-quiz .howto .content .box .step_lists__item .ttl {
  display: block;
  background: #54c3f1;
  border-radius: 14px 14px 0 0;
  font-style: normal;
  color: #fff;
  text-align: center;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 800;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .ttl {
    font-size: 24px;
    font-size: calcFluidFontSize(14px, 24px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .ttl {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .ttl {
    border-radius: 2px 2px 0 0;
    padding: 2px 0;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item .inner {
  padding: 40px 19px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner {
    padding: 7% 0;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item .inner .img {
  margin-bottom: 20px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner .img {
    width: 30%;
    margin: 0 auto 20px;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item .inner p {
  font-size: 14px;
  line-height: 1.375;
  font-weight: 600;
  color: #333;
  text-align: center;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p {
    font-size: 16px;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item .inner p span {
  font-size: 14px;
  line-height: 1.375;
  font-weight: 600;
  color: #54c3f1;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p span {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p span {
    font-size: 16px;
  }
}
.is-menorca-quiz .howto .content .box .step_lists__item .inner p small {
  margin-top: 12px;
  display: block;
  font-size: 13px;
  line-height: 1.333;
}
@media (min-width: 480px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p small {
    font-size: 15px;
    font-size: calcFluidFontSize(13px, 15px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p small {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item .inner p small {
    width: 90%;
    margin: 12px auto 0;
    text-align: left;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item:nth-child(2) .inner .img {
    width: 20%;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .step_lists__item:last-child .img {
    width: 40%;
  }
}
.is-menorca-quiz .howto .content .box .btn-more {
  width: 390px;
  margin: 60px auto 0;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .howto .content .box .btn-more {
    width: 100%;
    margin-top: 30px;
  }
}
.is-menorca-quiz .notes .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  color: #54c3f1;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-menorca-quiz .notes .ttl {
    font-size: 30px;
    font-size: calcFluidFontSize(15px, 30px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .notes .ttl {
    font-size: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .ttl {
    margin-bottom: 10px;
  }
}
.is-menorca-quiz .notes .box {
  margin-bottom: 60px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box {
    margin-bottom: 30px;
  }
}
.is-menorca-quiz .notes .box:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box_bullet_lists {
    padding-left: 1.5em;
  }
}
.is-menorca-quiz .notes .box_bullet_lists__item {
  list-style: disc;
  font-size: 14px;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .is-menorca-quiz .notes .box_bullet_lists__item {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .notes .box_bullet_lists__item {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box_bullet_lists__item {
    line-height: 1.24;
  }
}
.is-menorca-quiz .notes .box_bullet_lists__item::marker {
  font-size: 0.6em;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box_bullet_lists__item::marker {
    font-size: 1em;
  }
}
.is-menorca-quiz .notes .box_bullet_lists__item span {
  color: #e4002b;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box_bullet_lists__item span {
    line-height: 1.24;
  }
}
.is-menorca-quiz .notes .box_bullet_lists__item.red {
  color: #e4002b;
}
.is-menorca-quiz .notes .box_count_lists {
  list-style-type: none;
  counter-reset: list-counter;
}
.is-menorca-quiz .notes .box_count_lists__item {
  counter-increment: list-counter;
  font-size: 14px;
  line-height: 1.563;
  position: relative;
  padding-left: 20px;
}
@media (min-width: 480px) {
  .is-menorca-quiz .notes .box_count_lists__item {
    font-size: 16px;
    font-size: calcFluidFontSize(14px, 16px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .notes .box_count_lists__item {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box_count_lists__item {
    line-height: 1.24;
  }
}
.is-menorca-quiz .notes .box_count_lists__item::before {
  content: "(" counter(list-counter) ")";
  position: absolute;
  left: 0;
}
.is-menorca-quiz .notes .box .link {
  margin-top: 26px;
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box .link {
    margin-top: 10px;
  }
}
.is-menorca-quiz .notes .box .link a {
  color: #2364ba;
  font-size: 14px;
  text-decoration: underline;
  line-height: 1.563;
}
@media (min-width: 480px) {
  .is-menorca-quiz .notes .box .link a {
    font-size: 20px;
    font-size: calcFluidFontSize(14px, 20px, 480px, 1280px, px);
  }
}
@media (min-width: 1280px) {
  .is-menorca-quiz .notes .box .link a {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca-quiz .notes .box .link a {
    line-height: 1.24;
  }
}
@media only screen and (max-width:640px) {
  .is-menorca #notes .ttl-bg .ic-star::before, .is-menorca #notes .ttl-bg .ic-star::after {
    display: none;
  }
}

@media only screen and (max-width:640px) {
  .ImageMap1-sp {
    position: absolute;
    top: 35vw;
    left: 18vw;
    width: 41vw;
    height: 8vw;
  }
  .ImageMap2-sp {
    position: absolute;
    top: 468vw;
    left: 6vw;
    width: 41vw;
    height: 8vw;
  }
}/*# sourceMappingURL=import.css.map */