@charset "UTF-8";
/*メディアクエリー*/
/*min関数*/
/*clamp関数*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

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

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

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

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

/*リセット
--------------------------------------------*/
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;
}

/*----setting-----*/
/*メディアクエリー
---------------------------------------------*/
/*最小フォントサイズ
---------------------------------------------*/
/*デザイン上のmaxの横幅
---------------------------------------------*/
/*使用カラー
---------------------------------------------*/
/*英字フォント
---------------------------------------------*/
/*----//setting-----*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  background: var(--key-color);
}

body {
  position: fixed;
}
body.fixed {
  overflow: hidden;
}

.en {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
  pointer-events: none;
  height: auto;
}

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

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

html.wf-active body {
  position: inherit;
}
html.wf-active div.mainArea {
  opacity: 1;
}

header {
  position: relative;
  z-index: 9999 !important;
}

div.wrap a:hover {
  opacity: 0.6;
}

/*コンテンツ*/
div.mainArea {
  background: var(--key-color);
  color: #FCF6EA;
  position: relative;
  z-index: 9999;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  div.mainArea {
    width: 100%;
    height: 200vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea {
    width: 100%;
    height: 49.375vw;
  }
}
div.mainArea::before {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.mainArea::before {
    top: 14.1333333333vw;
    right: 25.3333333333vw;
    width: 1.8666666667vw;
    height: 35.7333333333vw;
    background: url(../images/border.png);
    background-size: cover;
    background-position: center center;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea::after {
    content: "";
    display: block;
    position: absolute;
    width: 34.7222222222vw;
    height: 0.625vw;
    background: url(../images/stripe.png);
    background-size: cover;
    top: 23.6805555556vw;
    left: 8.4722222222vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.pc_border {
    width: 83.3333333333vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 1px;
    background: #fcf6ea;
  }
}
div.mainArea h1 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.mainArea h1 {
    font-size: 8.5333333333vw;
    top: 11.7333333333vw;
    left: 7.2vw;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea h1 {
    font-size: 4.1666666667vw;
    top: 6.4583333333vw;
    left: 8.6111111111vw;
    letter-spacing: 0.04em;
  }
}
div.mainArea h1 span:nth-child(1) {
  display: block;
  letter-spacing: 0.12em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  div.mainArea h1 span:nth-child(1) {
    font-size: 3.4666666667vw;
    margin-bottom: 2.6666666667vw;
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea h1 span:nth-child(1) {
    font-size: 1.3888888889vw;
    margin-bottom: 2.7777777778vw;
  }
}
div.mainArea h1 span:nth-child(2) {
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  div.mainArea h1 span:nth-child(2) {
    font-size: 5.9722222222vw;
  }
}
@media screen and (max-width: 768px) {
  div.mainArea h1 span:nth-child(2) {
    font-size: 11.7333333333vw;
  }
}
div.mainArea div.update {
  letter-spacing: 0.06em;
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.mainArea div.update {
    width: 11.7333333333vw;
    right: 8.2666666667vw;
    top: 17.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update {
    width: 4.1666666667vw;
    left: 39.1666666667vw;
    top: 9.3055555556vw;
  }
}
div.mainArea div.update span {
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.mainArea div.update span.text {
    font-size: 2.4vw;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update span.text {
    letter-spacing: 0.06em;
    font-size: 0.8333333333vw;
  }
}
div.mainArea div.update span.text::after {
  content: "";
  display: block;
  background: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div.mainArea div.update span.text::after {
    width: 3.7333333333vw;
    height: 1px;
    margin: 3.4666666667vw auto 5.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update span.text::after {
    width: 1.3888888889vw;
    height: 1px;
    margin: 1.25vw auto 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  div.mainArea div.update span.month {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update span.month {
    font-size: 1.5277777778vw;
    margin-bottom: 0.4166666667vw;
  }
}
div.mainArea div.update span.date {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div.mainArea div.update span.date {
    font-size: 8vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update span.date {
    font-size: 3.0555555556vw;
    margin-bottom: 0.4861111111vw;
  }
}
div.mainArea div.update span.weekday {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div.mainArea div.update span.weekday {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.update span.weekday {
    font-size: 0.9722222222vw;
  }
}
div.mainArea div.block03 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 {
    width: 94.6666666667vw;
    left: 50%;
    transform: translateX(-50%);
    top: 53.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 {
    width: 42.3611111111vw;
    left: 49.3055555556vw;
    top: 4.8611111111vw;
  }
}
div.mainArea div.block03 p.message {
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 p.message {
    font-size: 3.2vw;
    width: 82.9333333333vw;
    margin: 0 auto 6.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 p.message {
    writing-mode: vertical-rl;
    font-size: 1.1111111111vw;
    position: absolute;
    right: -3.3333333333vw;
    top: 50%;
    transform: translateY(-50%);
    height: 31.6666666667vw;
  }
}
div.mainArea div.block03 p.message::before {
  content: "";
  display: block;
  position: absolute;
  background: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 p.message::before {
    width: 1px;
    height: 4vw;
    transform: rotate(-33deg);
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 p.message::before {
    width: 20px;
    height: 1px;
    left: 0;
    top: 1.3888888889vw;
    transform: rotate(145deg);
  }
}
div.mainArea div.block03 p.message::after {
  content: "";
  display: block;
  position: absolute;
  background: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 p.message::after {
    width: 1px;
    height: 4vw;
    transform: rotate(33deg);
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 p.message::after {
    width: 20px;
    height: 1px;
    left: 0;
    bottom: 1.3888888889vw;
    transform: rotate(-145deg);
  }
}
div.mainArea div.block03 ul.ranking_tab {
  display: flex;
  position: relative;
  top: 1px;
}
div.mainArea div.block03 ul.ranking_tab li {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
  background: #957A74;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 ul.ranking_tab li {
    width: calc(25% - 1px);
    font-size: 2.6666666667vw;
    border: 1px solid #FCF6EA;
    border-bottom: none;
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    margin-left: -1px;
    padding: 4vw 0 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 ul.ranking_tab li {
    width: calc(25% - 1px);
    font-size: 0.9722222222vw;
    border: 1px solid #FCF6EA;
    border-bottom: none;
    border-radius: 0.6944444444vw 0.6944444444vw 0 0;
    margin-left: -1px;
    padding: 1.25vw 0 1.1111111111vw;
  }
}
div.mainArea div.block03 ul.ranking_tab li:nth-child(1) {
  margin-left: 0;
}
div.mainArea div.block03 ul.ranking_tab li.active {
  color: #957A74;
  background: #FCF6EA;
}
div.mainArea div.block03 ul.ranking_tab li.active::after {
  content: "";
  display: block;
  background: #957A74;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 ul.ranking_tab li.active::after {
    height: 5.1961524227px;
    width: 6px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    bottom: 0.8vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 ul.ranking_tab li.active::after {
    height: 5.1961524227px;
    width: 8px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    bottom: 0.1388888889vw;
  }
}
div.mainArea div.block03 div.ranking {
  background: #FCF6EA;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking {
    padding-top: 8.2666666667vw;
    padding-bottom: 16.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking {
    padding-top: 2.9166666667vw;
    padding-bottom: 5.2083333333vw;
    border-radius: 0 0 0.3472222222vw 0.3472222222vw;
  }
}
div.mainArea div.block03 div.ranking h2 {
  color: #957A74;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking h2 {
    font-size: 8vw;
    margin-bottom: 7.7333333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking h2 {
    font-size: 2.5vw;
    position: absolute;
    top: 2.6388888889vw;
    right: 3.5416666667vw;
    writing-mode: vertical-rl;
  }
}
div.mainArea div.block03 div.ranking h2 span {
  display: block;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking h2 span {
    margin-top: 2.4vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking h2 span {
    margin-top: 0.2083333333vw;
    font-size: 0.9722222222vw;
    padding-right: 1.0416666667vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone, div.mainArea div.block03 div.ranking div.pcNone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone, div.mainArea div.block03 div.ranking div.pcNone {
    width: 74.6666666667vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone, div.mainArea div.block03 div.ranking div.pcNone {
    width: 28.4722222222vw;
    margin-left: 4.0972222222vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone li, div.mainArea div.block03 div.ranking ul.spNone > div, div.mainArea div.block03 div.ranking div.pcNone li, div.mainArea div.block03 div.ranking div.pcNone > div {
  position: relative;
}
div.mainArea div.block03 div.ranking ul.spNone li p.ico_box, div.mainArea div.block03 div.ranking ul.spNone li p.label, div.mainArea div.block03 div.ranking ul.spNone li p.price, div.mainArea div.block03 div.ranking ul.spNone li p:nth-child(3), div.mainArea div.block03 div.ranking ul.spNone > div p.ico_box, div.mainArea div.block03 div.ranking ul.spNone > div p.label, div.mainArea div.block03 div.ranking ul.spNone > div p.price, div.mainArea div.block03 div.ranking ul.spNone > div p:nth-child(3), div.mainArea div.block03 div.ranking div.pcNone li p.ico_box, div.mainArea div.block03 div.ranking div.pcNone li p.label, div.mainArea div.block03 div.ranking div.pcNone li p.price, div.mainArea div.block03 div.ranking div.pcNone li p:nth-child(3), div.mainArea div.block03 div.ranking div.pcNone > div p.ico_box, div.mainArea div.block03 div.ranking div.pcNone > div p.label, div.mainArea div.block03 div.ranking div.pcNone > div p.price, div.mainArea div.block03 div.ranking div.pcNone > div p:nth-child(3) {
  display: none;
}
div.mainArea div.block03 div.ranking ul.spNone li p span, div.mainArea div.block03 div.ranking ul.spNone > div p span, div.mainArea div.block03 div.ranking div.pcNone li p span, div.mainArea div.block03 div.ranking div.pcNone > div p span {
  display: none;
}
div.mainArea div.block03 div.ranking ul.spNone li div.textOverflow, div.mainArea div.block03 div.ranking ul.spNone > div div.textOverflow, div.mainArea div.block03 div.ranking div.pcNone li div.textOverflow, div.mainArea div.block03 div.ranking div.pcNone > div div.textOverflow {
  display: none;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(-n+2), div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(-n+2), div.mainArea div.block03 div.ranking div.pcNone li:nth-child(-n+2), div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(-n+2) {
    width: 34.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(-n+2), div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(-n+2), div.mainArea div.block03 div.ranking div.pcNone li:nth-child(-n+2), div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(-n+2) {
    width: 13.1944444444vw;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(n+3), div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(n+3), div.mainArea div.block03 div.ranking div.pcNone li:nth-child(n+3), div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(n+3) {
    width: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(n+3), div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(n+3), div.mainArea div.block03 div.ranking div.pcNone li:nth-child(n+3), div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(n+3) {
    width: 8.0555555556vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone li::before, div.mainArea div.block03 div.ranking ul.spNone > div::before, div.mainArea div.block03 div.ranking div.pcNone li::before, div.mainArea div.block03 div.ranking div.pcNone > div::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: 1px solid #BEA188;
  background: #FCF6EA;
  color: #BEA188;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone li::before, div.mainArea div.block03 div.ranking ul.spNone > div::before, div.mainArea div.block03 div.ranking div.pcNone li::before, div.mainArea div.block03 div.ranking div.pcNone > div::before {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    top: -2.6666666667vw;
    left: -2.6666666667vw;
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone li::before, div.mainArea div.block03 div.ranking ul.spNone > div::before, div.mainArea div.block03 div.ranking div.pcNone li::before, div.mainArea div.block03 div.ranking div.pcNone > div::before {
    width: 2.3611111111vw;
    height: 2.3611111111vw;
    top: -0.8333333333vw;
    left: -0.8333333333vw;
    font-size: 0.6944444444vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(1)::before {
  content: "No.1";
  color: #FCF6EA;
  border: 1px solid #FCF6EA;
  background: #E3C070;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(1)::before {
    width: 9.6vw;
    height: 9.6vw;
    top: -3.2vw;
    left: -3.2vw;
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(1)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(1)::before {
    width: 3.0555555556vw;
    height: 3.0555555556vw;
    top: -0.9722222222vw;
    left: vw-(14, 1440);
    font-size: 0.8333333333vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(2)::before {
  content: "No.2";
  color: #FCF6EA;
  border: 1px solid #FCF6EA;
  background: #BEBBC4;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(2)::before {
    width: 9.6vw;
    height: 9.6vw;
    top: -3.2vw;
    left: -3.2vw;
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking ul.spNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(2)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(2)::before {
    width: 3.0555555556vw;
    height: 3.0555555556vw;
    top: -0.9722222222vw;
    left: -0.9722222222vw;
    font-size: 0.8333333333vw;
  }
}
div.mainArea div.block03 div.ranking ul.spNone li:nth-child(3)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(3)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(3)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(3)::before {
  content: "No.3";
  color: #FCF6EA;
  border: 1px solid #FCF6EA;
  background: #BFA188;
}
div.mainArea div.block03 div.ranking ul.spNone li:nth-child(4)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(4)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(4)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(4)::before {
  content: "No.4";
}
div.mainArea div.block03 div.ranking ul.spNone li:nth-child(5)::before, div.mainArea div.block03 div.ranking ul.spNone > div:nth-child(5)::before, div.mainArea div.block03 div.ranking div.pcNone li:nth-child(5)::before, div.mainArea div.block03 div.ranking div.pcNone > div:nth-child(5)::before {
  content: "No.5";
}
div.mainArea div.block03 div.ranking a.viewall {
  color: #957A74;
  text-decoration: none;
  position: absolute;
  letter-spacing: 0.06em;
  color: #FCF6EA;
  background: #957A74;
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking a.viewall {
    font-size: 2.1333333333vw;
    bottom: 4.8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 32vw;
    height: 7.4666666667vw;
    border-radius: 26.6666666667vw;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 6.6666666667vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking a.viewall {
    font-size: 0.8333333333vw;
    bottom: 1.8055555556vw;
    left: 50%;
    transform: translateX(-50%);
    width: 8.3333333333vw;
    height: 1.9444444444vw;
    border-radius: 6.9444444444vw;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 1.7361111111vw;
  }
}
div.mainArea div.block03 div.ranking a.viewall::after {
  content: "";
  display: inline-block;
  background: url(../images/arrow_wht.png);
  background-size: cover;
}
@media screen and (min-width: 769px) {
  div.mainArea div.block03 div.ranking a.viewall::after {
    width: 0.8333333333vw;
    height: 0.625vw;
    margin-left: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  div.mainArea div.block03 div.ranking a.viewall::after {
    width: 3.2vw;
    height: 2.4vw;
    margin-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block04 {
    position: absolute;
    top: 28.2638888889vw;
    left: 8.5416666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block04 p {
    font-size: 2.5vw;
    letter-spacing: 0.05em;
    margin-bottom: 2.9166666667vw;
  }
}
div.mainArea div.block04 p span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div.mainArea div.block04 p span {
    display: block;
    letter-spacing: 0.12em;
    font-size: 1.1111111111vw;
    margin-bottom: 1.3194444444vw;
  }
}
@media screen and (min-width: 769px) {
  div.mainArea div.block04 ul li a {
    display: inline-block;
    text-decoration: none;
    color: #FCF6EA;
    padding-right: 3em;
    font-size: 1.25vw;
    letter-spacing: 0.12em;
    padding-bottom: 0.8333333333vw;
    margin-bottom: 2.2916666667vw;
    border-bottom: 1px solid #FCF6EA;
    position: relative;
  }
}
div.mainArea div.block04 ul li a::before {
  content: "# ";
}
div.mainArea div.block04 ul li a::after {
  content: "";
  display: block;
}
@media screen and (min-width: 769px) {
  div.mainArea div.block04 ul li a::after {
    width: 0.8333333333vw;
    height: 0.625vw;
    background: url(../images/arrow3.png);
    background-size: cover;
    position: absolute;
    bottom: 1.0416666667vw;
    right: 0;
  }
}

div#news {
  background: #FCF4E5;
  color: #957A74;
}
@media screen and (max-width: 768px) {
  div#news {
    padding: 16vw 0;
  }
}
@media screen and (min-width: 769px) {
  div#news {
    padding: 120px 0 110px;
  }
}
div#news div.inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  div#news div.inner {
    width: 86.1333333333vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner {
    width: 960px;
    margin: 0 auto;
  }
}
div#news div.inner h2 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#news div.inner h2 {
    font-size: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner h2 {
    font-size: 56px;
    margin-bottom: 58px;
  }
}
div#news div.inner h2 span {
  display: block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#news div.inner h2 span {
    font-size: 3.2vw;
    margin-bottom: 5.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner h2 span {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.newsWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
div#news div.inner div.brandNews {
  position: relative;
}
@media screen and (max-width: 768px) {
  div#news div.inner div.brandNews {
    border-bottom: #957A74 1px solid;
    padding-bottom: 9.6vw;
    padding-top: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews {
    width: 450px;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews.borderBottom {
    border-bottom: 1px solid #957A74;
    margin-bottom: 78px;
  }
}
div#news div.inner div.brandNews h3 {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div#news div.inner div.brandNews h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 4.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews h3 {
    margin-bottom: 25px;
    font-size: 26px;
  }
}
div#news div.inner div.brandNews a.viewmore {
  position: absolute;
  text-decoration: none;
  color: #957A74;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div#news div.inner div.brandNews a.viewmore {
    right: 0;
    top: 10.1333333333vw;
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews a.viewmore {
    right: 0;
    top: 6px;
    font-size: 10px;
    padding-right: 27px;
  }
}
div#news div.inner div.brandNews a.viewmore::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/arrow_wht.png);
  background-size: cover;
  background-position: center center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews a.viewmore::before {
    width: 9px;
    height: 7px;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  div#news div.inner div.brandNews a.viewmore::before {
    top: 40%;
    right: 1.8666666667vw;
    transform: tranaslateY(-50%);
    width: 1.8666666667vw;
    height: 1.3333333333vw;
  }
}
div#news div.inner div.brandNews a.viewmore::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: #957A74;
}
@media screen and (max-width: 768px) {
  div#news div.inner div.brandNews a.viewmore::after {
    margin-left: 2.1333333333vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#news div.inner div.brandNews a.viewmore::after {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
div#news div.inner div.brandNews ul.newsArea_pc {
  display: flex;
  justify-content: space-between;
}
div#news div.inner div.brandNews ul.newsArea_pc li {
  width: 215px;
  margin-bottom: 78px;
}
div#news div.inner div.brandNews ul.newsArea_pc li a {
  color: #957A74;
  text-decoration: none;
}
div#news div.inner div.brandNews ul.newsArea_pc li a dl dt {
  margin-bottom: 15px;
}
div#news div.inner div.brandNews ul.newsArea_pc li a dd p.day {
  font-size: 11px;
  margin-bottom: 10px;
}
div#news div.inner div.brandNews ul.newsArea_pc li a dd p.day span {
  display: none;
}
div#news div.inner div.brandNews ul.newsArea_pc li a dd p.day + p {
  display: none;
}
div#news div.inner div.brandNews ul.newsArea_pc li a dd p.textOverflowTest4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.54;
}
div#news div.inner div.brandNews div.newsArea_sp {
  display: flex;
  justify-content: space-between;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child {
  width: 41.0666666667vw;
  font-size: 2.4vw;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child a {
  color: #957A74;
  text-decoration: none;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child p.news_child_image {
  margin-bottom: 2.9333333333vw;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child span.news_child_txt_date {
  letter-spacing: 0.06em;
  margin-bottom: 2.1333333333vw;
  display: block;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child span.news_child_txt_date font {
  display: none;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child span.news_child_txt_brand {
  display: none;
}
div#news div.inner div.brandNews div.newsArea_sp div.news_child div.textOverflow p {
  line-height: 1.44;
  letter-spacing: 0.08em;
}

div#featured {
  background: var(--key-color);
  color: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div#featured {
    padding: 10.6666666667vw 0 16vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured {
    padding: 100px 0 110px;
  }
}
div#featured h2 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#featured h2 {
    width: 86.1333333333vw;
    font-size: 9.6vw;
    margin: 0 auto 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured h2 {
    font-size: 56px;
    margin-bottom: 58px;
  }
}
div#featured h2 span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#featured h2 span {
    font-size: 3.2vw;
    margin-bottom: 5.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured h2 span {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.inner {
    width: 960px;
    margin: 0 auto;
  }
}
div#featured div.newarrival {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival {
    margin-bottom: 50px;
  }
}
div#featured div.newarrival ul.list, div#featured div.newarrival div.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list, div#featured div.newarrival div.list {
    box-sizing: border-box;
    padding: 0 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li, div#featured div.newarrival ul.list > div, div#featured div.newarrival div.list li, div#featured div.newarrival div.list > div {
    width: 217px;
    margin-bottom: 50px;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li, div#featured div.newarrival ul.list > div, div#featured div.newarrival div.list li, div#featured div.newarrival div.list > div {
    width: 26.9333333333vw;
    font-size: 2.4vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li:nth-child(n+4), div#featured div.newarrival ul.list > div:nth-child(n+4), div#featured div.newarrival div.list li:nth-child(n+4), div#featured div.newarrival div.list > div:nth-child(n+4) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li:nth-child(n+7), div#featured div.newarrival ul.list > div:nth-child(n+7), div#featured div.newarrival div.list li:nth-child(n+7), div#featured div.newarrival div.list > div:nth-child(n+7) {
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li:nth-child(9), div#featured div.newarrival ul.list > div:nth-child(9), div#featured div.newarrival div.list li:nth-child(9), div#featured div.newarrival div.list > div:nth-child(9) {
    display: none;
  }
}
div#featured div.newarrival ul.list li a, div#featured div.newarrival ul.list > div a, div#featured div.newarrival div.list li a, div#featured div.newarrival div.list > div a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li a::after, div#featured div.newarrival ul.list > div a::after, div#featured div.newarrival div.list li a::after, div#featured div.newarrival div.list > div a::after {
    content: "BUY";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 18px;
    color: var(--key-color);
    position: absolute;
    bottom: -2px;
    right: 0;
    background: #FCF6EA;
    border-radius: 10px;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li a::after, div#featured div.newarrival ul.list > div a::after, div#featured div.newarrival div.list li a::after, div#featured div.newarrival div.list > div a::after {
    content: "BUY";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.8666666667vw;
    height: 4.2666666667vw;
    border-radius: 2.1333333333vw;
    background: #FCF6EA;
    color: var(--key-color);
    position: absolute;
    bottom: -2px;
    right: 0;
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li div.textOverflow, div#featured div.newarrival ul.list > div div.textOverflow, div#featured div.newarrival div.list li div.textOverflow, div#featured div.newarrival div.list > div div.textOverflow {
    font-size: 12px;
    line-height: 1.18;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li p.photo, div#featured div.newarrival ul.list > div p.photo, div#featured div.newarrival div.list li p.photo, div#featured div.newarrival div.list > div p.photo {
    margin-bottom: 2.6666666667vw;
  }
}
div#featured div.newarrival ul.list li p.ico_box, div#featured div.newarrival ul.list > div p.ico_box, div#featured div.newarrival div.list li p.ico_box, div#featured div.newarrival div.list > div p.ico_box {
  display: none;
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li p.label, div#featured div.newarrival ul.list > div p.label, div#featured div.newarrival div.list li p.label, div#featured div.newarrival div.list > div p.label {
    font-size: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li p:nth-child(3), div#featured div.newarrival ul.list > div p:nth-child(3), div#featured div.newarrival div.list li p:nth-child(3), div#featured div.newarrival div.list > div p:nth-child(3) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival ul.list li p:nth-child(3), div#featured div.newarrival ul.list > div p:nth-child(3), div#featured div.newarrival div.list li p:nth-child(3), div#featured div.newarrival div.list > div p:nth-child(3) {
    margin-bottom: 1.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival ul.list li p img, div#featured div.newarrival ul.list > div p img, div#featured div.newarrival div.list li p img, div#featured div.newarrival div.list > div p img {
    margin-bottom: 12px;
  }
}
div#featured div.newarrival .allitems {
  text-decoration: none;
  display: block;
  color: var(--key-color);
  background-color: #FCF6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival .allitems {
    font-size: 3.7333333333vw;
    width: 66.6666666667vw;
    margin: 0 auto 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 26.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival .allitems {
    font-size: 14px;
    width: 280px;
    height: 58px;
    border-radius: 100px;
    margin: 60px auto 70px;
  }
}
div#featured div.newarrival .allitems::after {
  content: "";
  display: block;
  background: url(../images/arrow2.png);
  background-size: cover;
  background-position: center center;
  position: absolute;
}
@media screen and (max-width: 768px) {
  div#featured div.newarrival .allitems::after {
    width: 3.2vw;
    height: 2.6666666667vw;
    top: 50%;
    transform: translateY(-50%);
    right: 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.newarrival .allitems::after {
    width: 14px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
}
div#featured div.feature {
  position: relative;
}
div#featured div.feature.feature2::before {
  content: "";
  display: block;
  background: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div#featured div.feature.feature2::before {
    width: 86.1333333333vw;
    height: 1px;
    margin: 0 auto 14.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature.feature2::before {
    width: 100%;
    height: 1px;
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.feature.feature2 a.prev {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature.feature2 a.prev {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCF6EA;
    position: absolute;
    top: 320px;
    left: 0;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  div#featured div.feature.feature2 a.next {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature.feature2 a.next {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCF6EA;
    position: absolute;
    top: 320px;
    right: 0;
    transform: translateX(50%);
  }
}
div#featured div.feature h3 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#featured div.feature h3 {
    padding: 0 6.9333333333vw;
    font-size: 7.4666666667vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature h3 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
div#featured div.feature h3 span {
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  div#featured div.feature h3 span {
    font-size: 3.2vw;
    margin-bottom: 3.7333333333vw;
    box-sizing: border-box;
    padding: 1.8666666667vw 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature h3 span {
    font-size: 18px;
    box-sizing: border-box;
    padding: 10px 35px;
    margin-bottom: 20px;
  }
}
div#featured div.feature h3 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  div#featured div.feature h3 span::before {
    width: 1.8666666667vw;
    height: 2.6666666667vw;
    border: 1px solid #FCF6EA;
    border-right: none;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature h3 span::before {
    width: 14px;
    height: 20px;
    border: 1px solid #FCF6EA;
    border-right: none;
    border-bottom: none;
  }
}
div#featured div.feature h3 span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  div#featured div.feature h3 span::after {
    width: 1.8666666667vw;
    height: 2.6666666667vw;
    border: 1px solid #FCF6EA;
    border-left: none;
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature h3 span::after {
    width: 14px;
    height: 20px;
    border: 1px solid #FCF6EA;
    border-left: none;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  div#featured div.feature a.prev {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature a.prev {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCF6EA;
    position: absolute;
    top: 250px;
    left: 0;
    transform: translateX(-50%);
    border: 1px solid var(--key-color);
  }
}
div#featured div.feature a.prev::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--key-color);
  position: absolute;
  top: 50%;
  left: 55%;
  border-top: none;
  border-right: none;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  div#featured div.feature a.next {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature a.next {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCF6EA;
    position: absolute;
    top: 250px;
    right: 0;
    transform: translateX(50%);
    border: 1px solid var(--key-color);
  }
}
div#featured div.feature a.next::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--key-color);
  position: absolute;
  top: 50%;
  left: 45%;
  border-bottom: none;
  border-left: none;
  transform: translate(-50%, -50%) rotate(45deg);
}
div#featured div.feature ul.list {
  overflow-x: scroll;
  white-space: nowrap;
  font-size: 0;
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  padding-bottom: 60px;
}
div#featured div.feature ul.list::-webkit-scrollbar {
  display: none;
}
div#featured div.feature ul.list li {
  width: 200px;
  display: inline-block;
  margin-right: 26px;
  vertical-align: top;
  font-size: 11px;
  white-space: initial;
  position: relative;
}
div#featured div.feature ul.list li:last-child {
  margin-right: 0;
}
div#featured div.feature ul.list li a {
  color: #FCF6EA;
  text-decoration: none;
  position: relative;
  display: block;
}
div#featured div.feature ul.list li a::after {
  content: "BUY";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 18px;
  color: var(--key-color);
  position: absolute;
  bottom: -2px;
  right: 0;
  background: #FCF6EA;
  border-radius: 10px;
  letter-spacing: 0.06em;
}
div#featured div.feature ul.list li a p:nth-child(1) {
  margin-bottom: 14px;
  position: relative;
}
div#featured div.feature ul.list li a p:nth-child(1) span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #219bd9;
  color: #FCF6EA;
  padding: 0px 10px;
  box-sizing: border-box;
}
div#featured div.feature ul.list li a p:nth-child(3) {
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
div#featured div.feature ul.list li a p.ico_box {
  display: none;
}
div#featured div.feature ul.list li a div.textOverflow {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
div#featured div.feature ul.list li a div.textOverflow p {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0 !important;
}
div#featured div.feature ul.list li a p.price {
  position: relative;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
}
div#featured div.feature div.list {
  overflow-x: scroll;
  white-space: nowrap;
  font-size: 0;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list {
    padding: 0 6.9333333333vw;
  }
}
div#featured div.feature div.list::-webkit-scrollbar {
  display: none;
}
div#featured div.feature div.list > div {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list > div {
    width: 32.5333333333vw;
    margin-right: 4.2666666667vw;
    font-size: 2.9333333333vw;
    padding-bottom: 8vw;
  }
}
div#featured div.feature div.list > div a {
  color: #FCF6EA;
  position: relative;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list > div a::after {
    content: "BUY";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.8666666667vw;
    height: 4.2666666667vw;
    border-radius: 2.1333333333vw;
    background: #FCF6EA;
    color: var(--key-color);
    position: absolute;
    bottom: -2px;
    right: 0;
    font-size: 2.4vw;
  }
}
div#featured div.feature div.list > div p:nth-child(3) {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list > div p:nth-child(3) {
    margin-bottom: 2.1333333333vw;
    font-size: 2.4vw;
  }
}
div#featured div.feature div.list > div p.photo {
  position: relative;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list > div p.photo {
    margin-bottom: 2.6666666667vw;
  }
}
div#featured div.feature div.list > div p.photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  color: #219bd9;
  color: #FCF6EA;
  padding: 3px 8px;
  box-sizing: border-box;
}
div#featured div.feature div.list > div p.ico_box {
  display: none;
}
div#featured div.feature div.list > div p.label {
  overflow: hidden;
  width: 100%;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  div#featured div.feature div.list > div p.label {
    margin-bottom: 2.1333333333vw;
    line-height: 1.36;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 2.9333333333vw;
  }
}
div#featured div.feature div.list > div p.price {
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  font-size: 2.4vw;
}
div#featured div.feature .allitems {
  text-decoration: none;
  display: block;
  color: var(--key-color);
  background-color: #FCF6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#featured div.feature .allitems {
    font-size: 3.7333333333vw;
    width: 66.6666666667vw;
    margin: 0 auto 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 26.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature .allitems {
    font-size: 14px;
    width: 280px;
    height: 58px;
    border-radius: 100px;
    margin: 0 auto 70px;
  }
}
div#featured div.feature .allitems::after {
  content: "";
  display: block;
  background: url(../images/arrow2.png);
  background-size: cover;
  background-position: center center;
  position: absolute;
}
@media screen and (max-width: 768px) {
  div#featured div.feature .allitems::after {
    width: 3.2vw;
    height: 2.6666666667vw;
    top: 50%;
    transform: translateY(-50%);
    right: 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#featured div.feature .allitems::after {
    width: 14px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
}

div#staffBlog {
  background: var(--key-color);
  box-sizing: border-box;
  color: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div#staffBlog {
    padding: 16vw 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog {
    padding: 120px 0 110px;
  }
}
div#staffBlog div.inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner {
    width: 960px;
    margin: 0 auto;
  }
}
div#staffBlog div.inner h2 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner h2 {
    font-size: 9.3333333333vw;
    margin-bottom: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner h2 {
    font-size: 56px;
    margin-bottom: 58px;
  }
}
div#staffBlog div.inner h2 span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner h2 span {
    margin-bottom: 5.0666666667vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner h2 span {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
div#staffBlog div.inner a.viewMore {
  position: absolute;
  right: 0;
  color: #FCF6EA;
  letter-spacing: 0.06em;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner a.viewMore {
    top: 9.6vw;
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner a.viewMore {
    font-size: 10px;
    top: 68px;
  }
}
div#staffBlog div.inner a.viewMore::before {
  content: "";
  display: block;
  background: url(../images/arrow_wht.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner a.viewMore::before {
    width: 1.8666666667vw;
    height: 1.3333333333vw;
    right: 1.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner a.viewMore::before {
    width: 9px;
    height: 7px;
    right: 7px;
  }
}
div#staffBlog div.inner a.viewMore::after {
  content: "";
  display: inline-block;
  border: 1px solid #FCF6EA;
  border-radius: 50%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner a.viewMore::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin-left: 8px;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner a.viewMore::after {
    width: 20px;
    height: 20px;
    margin-left: 7px;
  }
}
div#staffBlog div.inner ul.blogArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li {
    width: 41.0666666667vw;
    margin-bottom: 12.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li {
    width: 217px;
  }
}
div#staffBlog div.inner ul.blogArea > li:nth-child(3), div#staffBlog div.inner ul.blogArea > li:nth-child(4) {
  margin-bottom: 0;
}
div#staffBlog div.inner ul.blogArea > li a {
  text-decoration: none;
  color: #FCF6EA;
}
div#staffBlog div.inner ul.blogArea > li a div.img {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li a div.img {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li a div.img {
    margin-bottom: 14px;
  }
}
div#staffBlog div.inner ul.blogArea > li a div.img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
div#staffBlog div.inner ul.blogArea > li a div.img img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li a p {
    font-size: 2.4vw;
    margin-bottom: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li a p {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
div#staffBlog div.inner ul.blogArea > li a p span.date {
  display: block;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li a p span.date {
    margin-bottom: 1.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li a p span.date {
    margin-bottom: 10px;
  }
}
div#staffBlog div.inner ul.blogArea > li a p span.title {
  display: block;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li a p span.title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li a p span.title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.54;
    height: 34px;
  }
}
div#staffBlog div.inner ul.blogArea > li div.staff ul {
  display: flex;
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul {
    align-items: center;
  }
}
div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(1) {
  border-radius: 50%;
  background: url(https://static.staff-start.com/17/common/user-icon/noimage.png);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(1) {
    width: 9.6vw;
    height: 9.6vw;
    margin-right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(1) {
    width: 54px;
    height: 54px;
    margin-right: 18px;
  }
}
div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(1) img {
  border-radius: 50%;
}
div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2) {
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2) {
    width: 28.8vw;
    padding-left: 2.6666666667vw;
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2) {
    width: calc(100% - 72px);
    font-size: 9px;
    box-sizing: border-box;
    padding-left: 18px;
  }
}
div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2)::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  background: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2)::before {
    height: 9.0666666667vw;
    width: 1px;
  }
}
@media screen and (min-width: 769px) {
  div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2)::before {
    height: 44px;
    width: 1px;
  }
}
div#staffBlog div.inner ul.blogArea > li div.staff ul li:nth-child(2) span {
  display: block;
  line-height: 1.625;
  letter-spacing: 0.06em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div#category {
  background: #FCF4E5;
}
@media screen and (max-width: 768px) {
  div#category {
    padding: 16vw 0;
  }
}
@media screen and (min-width: 769px) {
  div#category {
    padding: 120px 0 110px;
  }
}
@media screen and (max-width: 768px) {
  div#category div.inner {
    width: 86.1333333333vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner {
    width: 960px;
    margin: 0 auto;
  }
}
div#category div.inner h2 {
  color: #957A74;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#category div.inner h2 {
    font-size: 9.6vw;
    margin-bottom: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner h2 {
    font-size: 56px;
    margin-bottom: 48px;
  }
}
div#category div.inner h2 span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div#category div.inner h2 span {
    font-size: 3.2vw;
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner h2 span {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
div#category div.inner ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  div#category div.inner ul {
    gap: 3.7333333333vw 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner ul {
    gap: 23px 20px;
  }
}
@media screen and (max-width: 768px) {
  div#category div.inner ul li {
    width: 19.2vw;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner ul li {
    width: 86px;
  }
}
@media screen and (max-width: 768px) {
  div#category div.inner ul li:nth-child(15) {
    width: 38.4vw;
  }
}
div#category div.inner ul li a {
  color: #957A74;
  text-decoration: none;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  div#category div.inner ul li a {
    width: 19.2vw;
  }
}
@media screen and (max-width: 768px) {
  div#category div.inner ul li a p {
    font-size: 2.4vw;
    margin-top: 2.1333333333vw;
    letter-spacing: 0.06em;
    line-height: 1.33;
  }
}
@media screen and (min-width: 769px) {
  div#category div.inner ul li a p {
    font-size: 11px;
    margin-top: 16px;
    letter-spacing: 0.08em;
    line-height: 1.36;
  }
}

div#brand {
  background: var(--key-color);
  color: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div#brand {
    padding: 16vw 0;
  }
}
@media screen and (min-width: 769px) {
  div#brand {
    padding: 120px 0 110px;
  }
}
div#brand h2 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  div#brand h2 {
    font-size: 9.6vw;
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  div#brand h2 {
    font-size: 56px;
    margin-bottom: 38px;
  }
}
div#brand h2 span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  display: block;
}
@media screen and (max-width: 768px) {
  div#brand h2 span {
    font-size: 3.2vw;
    margin-bottom: 5.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#brand h2 span {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  div#brand div.inner {
    width: 86.4vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#brand div.inner {
    width: 960px;
    margin: 0 auto;
  }
}
div#brand div.inner ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  div#brand div.inner ul {
    gap: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#brand div.inner ul {
    gap: 15px;
  }
}
div#brand div.inner ul li {
  background: #fff;
}
@media screen and (max-width: 768px) {
  div#brand div.inner ul li {
    width: 40.8vw;
  }
}
@media screen and (min-width: 769px) {
  div#brand div.inner ul li {
    width: 200px;
  }
}

/* fixed MENU */
div.toggle {
  opacity: 0;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background: var(--key-color);
  position: fixed;
  box-sizing: border-box;
  border: 1px var(--key-color) solid;
  z-index: 9998;
}
@media screen and (max-width: 768px) {
  div.toggle {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.toggle {
    width: 70px;
    height: 70px;
    top: 40px;
    right: 40px;
  }
}
div.toggle::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #FCF6EA;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  div.toggle::before {
    width: 5.8666666667vw;
    left: 50%;
    transform: translateX(-50%);
    top: 5.6vw;
  }
}
@media screen and (min-width: 769px) {
  div.toggle::before {
    width: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: 29px;
  }
}
div.toggle::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #FCF6EA;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  div.toggle::after {
    width: 5.8666666667vw;
    left: 50%;
    transform: translateX(-50%);
    top: 7.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.toggle::after {
    width: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: 41px;
  }
}
div.toggle.active {
  border: 1px #FCF6EA solid;
}
div.toggle.active::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
}
div.toggle.active::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
}

div.fixed_menu {
  display: none;
  position: fixed;
  z-index: 9997;
  background: var(--key-color);
}
@media screen and (max-width: 768px) {
  div.fixed_menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu {
    top: 0;
    right: 0;
    width: 340px;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
}
div.fixed_menu div.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FCF6EA;
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner {
    width: 68%;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu div.inner {
    width: 218px;
  }
}
div.fixed_menu div.inner a.title {
  text-decoration: none;
  color: #FCF6EA;
  display: block;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner a.title {
    font-size: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu div.inner a.title {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
div.fixed_menu div.inner a.title span:nth-child(1) {
  display: block;
  line-height: 1.61;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner a.title span:nth-child(1) {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu div.inner a.title span:nth-child(1) {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner a.title span:nth-child(2) {
    font-size: 12.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu div.inner a.title span:nth-child(2) {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner ul {
    margin-top: 13.3333333333vw;
  }
}
div.fixed_menu div.inner ul li {
  line-height: 2.6666666667;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  div.fixed_menu div.inner ul li {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  div.fixed_menu div.inner ul li {
    font-size: 18px;
  }
}
div.fixed_menu div.inner ul li a {
  color: #FCF6EA;
  text-decoration: none;
}
div.fixed_menu div.inner ul li a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */