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

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

.animated.delay-025s {
  animation-delay: 0.25s;
}

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

.animated.delay-075s {
  animation-delay: 0.75s;
}

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

.animated.delay-125s {
  animation-delay: 1.25s;
}

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px); /* Xで中央固定 + Yで動かす */
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(1000px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(1000px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(1000px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(1000px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(1000px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -15deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 15deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

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

a img {
  border: none;
}

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

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

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

img {
  width: 100%;
  display: block;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

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

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

* {
  box-sizing: border-box;
}

/*リセット
--------------------------------------------*/
/*フォントの読み込みが遅い時にいれる
--------------------------------------------*/
.wf-loading {
  /* styles to use when web fonts are loading */
}

.wf-active {
  /* styles to use when web fonts are active */
}

.wf-inactive {
  /* styles to use when web fonts are inactive */
}

/*
--------------------------------------------*/
/*モーダル
--------------------------------------------*/
div.modal {
  z-index: 99999;
}

div.modal {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}

div.modal div.inner {
  background-color: #F1EFE9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 618px;
}

/*閉じるボタン*/
.square_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #333;
}

.square_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  background: #F1EFE9;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 10px;
}

.square_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.square_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*チャート*/
p.question {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 30px auto 20px;
}

p.question_2 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 3px auto 20px;
}

p.question_3 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 120px auto 20px;
}

p.question_4 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: -10px auto 15px;
}

p.question::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #5F320C;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_2::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #5F320C;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_3::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #5F320C;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_4::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #5F320C;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

.question ul {
  width: 90%;
  text-align: center;
  margin: 0 auto 30px;
}

.question_4 ul {
  width: 90%;
  text-align: center;
  margin: 0 auto 13px;
}

p.lato {
  padding: 20px;
  font-size: 14px;
}

p.lato_4 {
  padding: 12px;
  font-size: 14px;
}

.question ul li a {
  border: 1px solid #333;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 60px;*/
  line-height: 60px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  /*background: #F1EFE9;*/
}

.question_4 ul li a {
  border: 1px solid #333;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 60px;*/
  line-height: 26px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  /*background: #F1EFE9;*/
}

/*質問*/
div.img_01 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

div.img_01 img {
  width: 50%;
}

.choose_box .question ul li a.pattern1, .choose_box .question_2 ul li a.pattern1 {
  border: 2px solid #000;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 221px;*/
  line-height: 60px;
  text-decoration: none;
}

.choose_box .question ul li a.pattern2 {
  border: 2px solid #000;
  box-sizing: border-box;
  width: 100%;
  display: block;
  line-height: 40px;
  text-decoration: none;
}

div.pattern3 {
  box-sizing: border-box;
  width: 90%;
  display: block;
  height: 252px;
  line-height: 40px;
  text-decoration: none;
  margin-left: 5%;
}

/*//質問*/
/*戻るボタン*/
a.back_link {
  text-decoration: none;
  color: #333333;
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

span.ico-tri {
  width: 11px;
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.3s ease-out;
  height: auto;
  transform: rotate(-90deg);
  transform-origin: center;
  vertical-align: top !important;
  margin-top: -1.2px;
}

.back_text {
  font-size: 15px;
  padding-left: 6px;
}

/*//戻るボタン*/
/*結果*/
div.ar {
  width: 300px;
  margin: 0 auto;
}

/*もう一度診断する*/
.agein {
  font-size: 15px;
  padding-left: 6px;
  margin: 0 auto;
}

/*診断ボタン*/
#btn {
  position: fixed;
  z-index: 9998;
  transform: translateX(65%);
}
@media screen and (min-width: 769px) {
  #btn {
    width: 155px;
    bottom: 60px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #btn {
    width: 155px;
    top: 81.86%;
    right: 0;
  }
}

#btn.active {
  transform: translateX(0%);
}

/*戻るボタン*/
#modotubtn {
  position: fixed;
  z-index: 9998;
}
@media screen and (min-width: 769px) {
  #modotubtn {
    width: 49px;
    bottom: 6px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #modotubtn {
    width: 49px;
    top: 90%;
    right: 0;
  }
}

/*モーダルここまで
--------------------------------------------*/
/*ファーストビュー
--------------------------------------------*/
.fv {
  background-color: #F1EFE9;
}
@media screen and (min-width: 769px) {
  .fv {
    position: relative;
    z-index: 1;
  }
  .fv::before {
    content: "";
    display: block;
    padding-top: 48.6111111111%;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    position: relative;
  }
  .fv::before {
    content: "";
    display: block;
    padding-top: 285.6%;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .fv .title {
    width: 25.4451388889%;
    position: absolute;
    top: 9.1428571429%;
    left: 8.8194444444%;
  }
}
@media screen and (max-width: 768px) {
  .fv .title {
    width: 69.8666666667%;
    position: absolute;
    top: 2.5210084034%;
    left: 20%;
  }
}
.fv .intro_sentence {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .fv .intro_sentence {
    width: 24.0277777778%;
    position: absolute;
    top: 51.1428571429%;
    left: 7.2916666667%;
    line-height: 2.14;
  }
}
@media screen and (max-width: 768px) {
  .fv .intro_sentence {
    position: absolute;
    width: 83.4666666667%;
    top: 73.4827264239%;
    left: 9.3333333333%;
    line-height: 2.14;
  }
}
.fv .intro_sentence p {
  color: #333333;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fv .intro_sentence p {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 768px) {
  .fv .intro_sentence p {
    font-size: 3.7333333333vw;
  }
}
.fv .coordloop {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .fv .coordloop {
    right: 5.8333333333%;
    width: 56.1111111111%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .fv .coordloop {
    width: 100%;
    top: 19.6078431373%;
  }
}
.fv .loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
@keyframes scroll { /* スクロールアニメーション */
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.fv .loop .loopslider1 {
  display: flex;
  animation: scroll 30s linear infinite;
  width: 200%; /* 2セット分の幅を確保 */
}
@media screen and (max-width: 768px) {
  .fv .loop .loopslider1 {
    animation: scroll 30s linear infinite;
    padding-bottom: 1px;
  }
}
@media screen and (min-width: 769px) {
  .fv .loop .loopslider1 {
    animation: scroll 50s linear infinite;
    padding-bottom: 3px;
  }
}
.fv .loop .loopslider1 img {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .fv .loop .loopslider1 img {
    margin-left: 3px;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .fv .loop .loopslider1 img {
    margin-left: 1px;
    width: 94%;
  }
}
.fv .loop .loopslider2 {
  display: flex;
  animation: scroll 30s linear infinite reverse;
  width: 200%; /* 2セット分の幅を確保 */
}
@media screen and (max-width: 768px) {
  .fv .loop .loopslider2 {
    animation: scroll 30s linear infinite reverse;
  }
}
@media screen and (min-width: 769px) {
  .fv .loop .loopslider2 {
    animation: scroll 50s linear infinite reverse;
  }
}
.fv .loop .loopslider2 img {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .fv .loop .loopslider2 img {
    margin-left: 3px;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .fv .loop .loopslider2 img {
    margin-left: 1px;
    width: 94%;
  }
}

/*ファーストビューここまで
--------------------------------------------*/
/*メニュー
---------------------------------------------*/
.menu {
  background-color: #F4F4F4;
}
.menu .intro h2 {
  color: #333333;
  font-family: tt-ricordi-allegria, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .menu .intro h2 {
    font-size: 32px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu .intro h2 {
    padding-top: 55px;
    font-size: 24px;
  }
}
.menu .section {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .menu .section {
    width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .menu .section {
    width: 75.52%;
    padding-top: 30px;
    padding-bottom: 63px;
  }
}
.menu .section ul.nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 0px;
}
.menu .section ul.nav li.icon {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .menu .section ul.nav li.icon {
    width: 115px;
  }
}
@media screen and (max-width: 768px) {
  .menu .section ul.nav li.icon {
    width: 29.68%;
  }
}
.menu .section li.icon::before {
  content: "";
  height: 83.4951456311%;
  background: #fff;
  width: 100%;
  position: absolute;
  top: 12.1359223301%;
  left: 0;
}
.menu .section li.icon::after {
  content: "";
  display: block;
  padding-top: 200%;
}
.menu .section li.icon p, .menu .section li.icon a {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.menu .section li.icon p.icon_nunber {
  position: absolute;
  top: 4.854368932%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "gyst-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
@media screen and (min-width: 769px) {
  .menu .section li.icon p.icon_nunber {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .menu .section li.icon p.icon_nunber {
    font-size: 37px;
  }
}
.menu .section li.icon p.category {
  width: 100%;
  position: absolute;
  top: 24.2718446602%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .menu .section li.icon p.category {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .menu .section li.icon p.category {
    font-size: 11px;
  }
}
.menu .toSweet p {
  color: #D3895B;
}
.menu .toElegant p {
  color: #AC9641;
}
.menu .toMote p {
  color: #CE9191;
}
.menu .toHandsome {
  color: #597272;
}
.menu .toBoyish p {
  color: #94A7CE;
}
.menu .toStreet p {
  color: #A58EC6;
}

/* コンテンツ全体のレイアウト */
@media screen and (min-width: 769px) {
  .container {
    display: flex;
  }
}

/* 左の固定サイドバー */
@media screen and (min-width: 769px) {
  .sidebar {
    width: 37.7083333333%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 37.7083333333%;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*メニューここまで*/
/* 右側のメインコンテンツ 
---------------------------------------------*/
.main-content {
  background: #F1EFE9;
  overflow: clip;
}
@media screen and (min-width: 769px) {
  .main-content {
    width: 62.2916666667%;
  }
}

@media screen and (min-width: 769px) {
  .coordinate {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .coordinate {
    padding-top: 57px;
  }
}

.coordinate2 {
  background-color: #E5E4E0;
}

.body_title {
  text-align: center;
  line-height: 1;
  position: relative;
}
.body_title.toSweet {
  color: #D3895B;
}
.body_title.toElegant {
  color: #AC9641;
}
.body_title.toMote {
  color: #CE9191;
}
.body_title.toHandsome {
  color: #597272;
}
.body_title.toBoyish {
  color: #94A7CE;
}
.body_title.toStreet {
  color: #A58EC6;
}

@media screen and (min-width: 769px) {
  .body_title::before {
    content: "";
    display: block;
    padding-top: 89.2976588629%;
  }
}
@media screen and (max-width: 768px) {
  .body_title::before {
    content: "";
    display: block;
    padding-top: 196.8%;
  }
}

.subtitle {
  position: relative;
  z-index: 4;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .subtitle {
    top: 9.9875156055%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .subtitle {
    top: 14.0902872777%;
    left: 50%;
    transform: translateX(-50%);
  }
}

span.sub {
  font-family: tt-ricordi-allegria, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  span.sub {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  span.sub {
    font-size: 20px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }
}

span.number {
  font-family: "gyst-variable", sans-serif;
  font-variation-settings: "wght" 400;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  span.number {
    font-size: 95px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  span.number {
    font-size: 81px;
    text-align: center;
    display: block;
    line-height: 1;
  }
}

span.kinds {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  span.kinds {
    font-size: 22px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  span.kinds {
    font-size: 19px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-top: -9px;
  }
}

.taste_bar {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .taste_bar {
    top: 25.8426966292%;
  }
  .taste_bar.toSweet {
    width: 47.2686733556%;
  }
  .taste_bar.toElegant {
    width: 39.9108138239%;
  }
  .taste_bar.toMote {
    width: 15.607580825%;
  }
  .taste_bar.toHandsome {
    width: 30.9921962096%;
  }
  .taste_bar.toBoyish {
    width: 18.5061315496%;
  }
  .taste_bar.toStreet {
    width: 32.1070234114%;
  }
}
@media screen and (max-width: 768px) {
  .taste_bar {
    top: 27.3597811218%;
  }
  .taste_bar.toSweet {
    width: 98.1333333333%;
  }
  .taste_bar.toElegant {
    width: 95.4666666667%;
  }
  .taste_bar.toMote {
    width: 37.3333333333%;
  }
  .taste_bar.toHandsome {
    width: 74.1333333333%;
  }
  .taste_bar.toBoyish {
    width: 44.2666666667%;
  }
  .taste_bar.toStreet {
    width: 76.8%;
  }
}

.taste_bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* 横幅が違っても真ん中 */
}

.taste_bar.fadeInUp {
  animation: fadeInUpCenter 0.8s ease forwards;
}

.coord_cd1 .style1btn {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd1 .style1btn {
    top: 37.4531835206%;
    left: 22.2965440357%;
    width: 10.0579710145%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd1 .style1btn {
    top: 38.0300957592%;
    left: 8.8%;
    width: 20.5333333333%;
  }
}
.coord_cd1 .style1coord {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd1 .style1coord {
    top: 43.0711610487%;
    left: 19.397993311%;
    width: 16.6109253066%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd1 .style1coord {
    top: 43.7756497948%;
    left: 2.9333333333%;
    width: 32.2666666667%;
  }
}
.coord_cd1 .scroll_arrow1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd1 .scroll_arrow1 {
    top: 40.3245942572%;
    left: 26.6443701226%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd1 .scroll_arrow1 {
    top: 40.902872777%;
    left: 17.6%;
    width: 2.9066666667%;
  }
}
.coord_cd1 .scroll_arrow2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd1 .scroll_arrow2 {
    top: 40.5742821473%;
    left: 26.6443701226%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd1 .scroll_arrow2 {
    top: 41.1764705882%;
    left: 17.6%;
    width: 2.9066666667%;
  }
}

.coord_cd2 .style2btn {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd2 .style2btn {
    top: 40.9488139825%;
    left: 44.5930880713%;
    width: 10.0579710145%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd2 .style2btn {
    top: 41.5868673051%;
    left: 40.5333333333%;
    width: 20.5333333333%;
  }
}
.coord_cd2 .style2coord {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd2 .style2coord {
    top: 46.1922596754%;
    left: 41.248606466%;
    width: 16.6109253066%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd2 .style2coord {
    top: 47.0588235294%;
    left: 36.2666666667%;
    width: 32.2666666667%;
  }
}
.coord_cd2 .scroll_arrow1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd2 .scroll_arrow1 {
    top: 44.0699126092%;
    left: 49.0523968785%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd2 .scroll_arrow1 {
    top: 44.4596443228%;
    left: 49.6%;
    width: 2.9066666667%;
  }
}
.coord_cd2 .scroll_arrow2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd2 .scroll_arrow2 {
    top: 44.3196004994%;
    left: 49.0523968785%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd2 .scroll_arrow2 {
    top: 44.7332421341%;
    left: 49.6%;
    width: 2.9066666667%;
  }
}

.coord_cd3 .style3btn {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd3 .style3btn {
    top: 45.8177278402%;
    left: 65.2173913043%;
    width: 10.0579710145%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd3 .style3btn {
    top: 45.4172366621%;
    left: 74.4%;
    width: 20.5333333333%;
  }
}
.coord_cd3 .style3coord {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd3 .style3coord {
    top: 53.3083645443%;
    left: 61.7614269788%;
    width: 16.6109253066%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd3 .style3coord {
    top: 50.7523939808%;
    left: 68.5333333333%;
    width: 32.2666666667%;
  }
}
.coord_cd3 .scroll_arrow1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd3 .scroll_arrow1 {
    top: 48.9388264669%;
    left: 69.5652173913%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd3 .scroll_arrow1 {
    top: 48.2900136799%;
    left: 83.4666666667%;
    width: 2.9066666667%;
  }
}
.coord_cd3 .scroll_arrow2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .coord_cd3 .scroll_arrow2 {
    top: 49.1885143571%;
    left: 69.5652173913%;
    width: 1.3578595318%;
  }
}
@media screen and (max-width: 768px) {
  .coord_cd3 .scroll_arrow2 {
    top: 48.5636114911%;
    left: 83.4666666667%;
    width: 2.9066666667%;
  }
}

.animated-loop {
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.animated-loop2 {
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-delay: 0.5s; /* 0.5秒遅らせる */
  animation-iteration-count: infinite;
}

.matching {
  margin: 0 auto;
  width: 100%;
}

.profile_bar {
  position: sticky;
  top: -2px;
  z-index: 10;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .profile_bar img {
    width: 84px;
    margin-top: -160px;
    margin-left: calc(100% - 80px);
    transform: scale(1.05) translateY(2%);
  }
}
@media screen and (max-width: 768px) {
  .profile_bar img {
    width: 100%;
    margin-top: -75px;
    transform: scale(1.05) translateY(-2%);
  }
}

@media screen and (min-width: 769px) {
  .style1 {
    margin-top: -84px;
  }
}

.slider, .sliderfade {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .slider, .sliderfade {
    width: 388.99px;
  }
}
@media screen and (max-width: 768px) {
  .slider, .sliderfade {
    width: 88.5333333333%;
  }
}

.slider img {
  width: 100%;
}

.slick-dots {
  text-align: right;
}

@media screen and (min-width: 769px) {
  .slick-dots li button {
    width: 58.58px !important;
    height: 3.51px !important;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 50px !important;
    height: 3px !important;
  }
}

.slick-dots li {
  margin: 0px 4px !important;
}
@media screen and (min-width: 769px) {
  .slick-dots li {
    width: 58.58px !important;
    height: 3.51px !important;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    width: 50px !important;
    height: 3px !important;
  }
}

.slick-dots li button:before {
  font-size: 0px !important;
  border-radius: 3px;
  background-color: #ccc;
  opacity: 1 !important;
}
@media screen and (min-width: 769px) {
  .slick-dots li button:before {
    width: 58.58px !important;
    height: 3.51px !important;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 50px !important;
    height: 3px !important;
  }
}

.slick-dots li.slick-active button:before {
  background-color: #898989;
}

.stylepoint {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .stylepoint {
    width: 380px;
    padding-top: 52px;
  }
}
@media screen and (max-width: 768px) {
  .stylepoint {
    width: 85.0666666667%;
    padding-top: 55px;
  }
}
.stylepoint p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333333;
  font-size: 12px;
  line-height: 1.83;
}

.credit {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .credit {
    width: 357.46px;
    padding-top: 42px;
    padding-bottom: 121px;
  }
}
@media screen and (max-width: 768px) {
  .credit {
    width: 85.0666666667%;
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.credit a {
  color: #333333;
  display: flex;
}
.credit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.credit li {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .credit li {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .credit li {
    width: 150px;
  }
}
.credit li img {
  width: 56px;
}
.credit li .creditimg {
  width: 56px;
}
.credit .detail {
  margin-left: 10px;
  align-items: center;
}
.credit .detail p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  line-height: 1.8;
}

div.itemlist {
  background-color: #F4F4F4;
}
div.itemlist p.caption {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 auto;
  text-align: center;
}
div.itemlist p.caption.toSweet {
  color: #D3895B;
}
div.itemlist p.caption.toElegant {
  color: #AC9641;
}
div.itemlist p.caption.toMote {
  color: #CE9191;
}
div.itemlist p.caption.toHandsome {
  color: #597272;
}
div.itemlist p.caption.toBoyish {
  color: #94A7CE;
}
div.itemlist p.caption.toStreet {
  color: #A58EC6;
}
@media screen and (min-width: 769px) {
  div.itemlist p.caption {
    font-size: 20px;
    padding-top: 104px;
    padding-bottom: 60px;
    width: 300px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  div.itemlist p.caption {
    font-size: 18px;
    padding-top: 69px;
    padding-bottom: 20px;
    width: 300px;
    line-height: 1.5;
  }
}
div.itemlist div.item_top {
  margin: 0 auto;
  width: 79%;
  position: relative;
}
div.itemlist div.item_top span.right {
  position: absolute;
  top: 123px;
  right: -10px;
}
div.itemlist div.item_top span.right img {
  width: 36px;
}
div.itemlist div.item_top span.left {
  position: absolute;
  top: 123px;
  left: -10px;
}
div.itemlist div.item_top span.left img {
  width: 36px;
}
div.itemlist div.item_scroll_pc {
  width: 94%;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 64px;
  overflow-x: scroll;
}
div.itemlist div.item_scroll_pc ul.item_pc {
  width: 100%;
  display: flex;
  white-space: nowrap;
  margin: 20px 0 !important;
  overflow-x: scroll;
  cursor: grab; /* ドラッグ操作のカーソル */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* テキスト選択を防ぐ */
}
div.itemlist div.item_scroll_pc ul.item_pc li {
  width: 198px;
  padding-right: 20px;
}
div.itemlist div.item_scroll_pc ul.item_pc li a {
  color: #333333;
  font-size: 12px;
  text-decoration: none;
  position: relative;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_pc ul.item_pc li a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 213px;
  width: auto;
}
div.itemlist div.item_scroll_pc ul.item_pc li a div.textOverflow {
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
}
div.itemlist div.item_scroll_pc ul.item_pc li a p.price {
  padding-top: 7px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_pc ul.item_pc li a p.price span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_pc ul.item_pc li a:nth-child(1) p:nth-child(1) span {
  display: none;
}
div.itemlist div.item_scroll_pc ul.item_pc li p:nth-child(3) {
  display: block !important;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  padding-top: 15px;
}
div.itemlist div.item_scroll_pc div.item_scroll_pc:active {
  cursor: grabbing; /* クリック時のカーソル */
}
div.itemlist div.item_scroll_sp {
  box-sizing: border-box;
}
div.itemlist div.item_scroll_sp div.item_sp {
  overflow-x: scroll;
  white-space: nowrap;
  margin: 20px 0 !important;
  padding-left: 17px;
}
div.itemlist div.item_scroll_sp div.item_sp div {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  width: 150px;
  padding-right: 10px;
}
div.itemlist div.item_scroll_sp div.item_sp div a {
  color: #333333;
  font-size: 12px;
  text-decoration: none;
  position: relative;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_sp div.item_sp div a p.label {
  padding-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
}
div.itemlist div.item_scroll_sp div.item_sp div a p.price {
  padding-top: 7px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_sp div.item_sp div a p.price span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div.itemlist div.item_scroll_sp div.item_sp div p.photo span {
  display: none;
}
div.itemlist div.item_scroll_sp div.item_sp div p:nth-child(3) {
  display: block !important;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  padding-top: 15px;
}
div.itemlist div.item_scroll_pc::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
div.itemlist ul.item_pc::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
div.itemlist div.item_sp::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
@media screen and (min-width: 769px) {
  div.itemlist div.morebtn {
    padding-top: 64px;
    padding-bottom: 141px;
  }
}
@media screen and (max-width: 768px) {
  div.itemlist div.morebtn {
    padding-top: 45px;
    padding-bottom: 84px;
  }
}
div.itemlist div.morebtn a {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
  line-height: 65px;
}
@media screen and (max-width: 768px) {
  div.itemlist div.morebtn a {
    width: 294px;
    height: 66px;
  }
}
@media screen and (min-width: 769px) {
  div.itemlist div.morebtn a {
    width: 507px;
    height: 66px;
  }
}
div.itemlist div.morebtn a.toSweet {
  background-color: #D3895B;
}
div.itemlist div.morebtn a.toElegant {
  background-color: #AC9641;
}
div.itemlist div.morebtn a.toMote {
  background-color: #CE9191;
}
div.itemlist div.morebtn a.toHandsome {
  background-color: #597272;
}
div.itemlist div.morebtn a.toBoyish {
  background-color: #94A7CE;
}
div.itemlist div.morebtn a.toStreet {
  background-color: #A58EC6;
}

.topics {
  background-color: #F1EFE9;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .topics {
    padding-top: 104px;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  .topics {
    padding-top: 90px;
    padding-bottom: 37px;
  }
}
.topics .topics_title h3 {
  z-index: 4;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .topics .topics_title h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .topics .topics_title h3 {
    font-size: 18px;
  }
}
.topics .topics_title h3.toSweet {
  color: #D3895B;
}
.topics .topics_title h3.toElegant {
  color: #AC9641;
}
.topics .topics_title h3.toMote {
  color: #CE9191;
}
.topics .topics_title h3.toHandsome {
  color: #597272;
}
.topics .topics_title h3.toBoyish {
  color: #94A7CE;
}
.topics .topics_title h3.toStreet {
  color: #A58EC6;
}
.topics .topics_title img {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .topics .topics_title img {
    width: 274px;
    margin-top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .topics .topics_title img {
    width: 240px;
    margin-top: -12px;
  }
}
.topics div.recent_topics {
  padding-bottom: 83px;
  margin: 0 auto;
  /*吹き出し*/
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics {
    width: 300.58px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics {
    width: 359px;
    padding-top: 65px;
  }
}
.topics div.recent_topics ul.topics_img img {
  padding-bottom: 10px;
}
.topics div.recent_topics li.topics_base {
  position: relative;
}
.topics div.recent_topics div.arrow_box {
  position: absolute;
  font-size: 11px;
  text-align: left;
  line-height: 1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics div.arrow_box {
    top: 257px;
    width: 255px;
  }
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics div.arrow_box {
    top: 300px;
    width: 313px;
  }
}
.topics div.recent_topics div.arrow_box .QandA_q {
  line-height: 1.8;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}
.topics div.recent_topics div.arrow_box .QandA_q .bold {
  font-weight: 600;
}
.topics div.recent_topics div.arrow_box .QandA_q a {
  text-decoration: underline;
  color: #333333;
}
.topics div.recent_topics .slick-prev {
  top: 37%;
  z-index: 2;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .slick-prev {
    transform: translateX(50%);
  }
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .slick-prev {
    transform: translateX(-50%);
  }
}
.topics div.recent_topics .slick-next {
  top: 37%;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .slick-next {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .slick-next {
    transform: translateX(50%);
  }
}
.topics div.recent_topics .slick-next:before, .topics div.recent_topics .slick-prev:before {
  display: none;
}
.topics div.recent_topics .credit_box {
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .credit_box {
    width: 352px;
  }
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .credit_box {
    width: 290px;
  }
}
.topics div.recent_topics .credit_box a {
  color: #333333;
}
.topics div.recent_topics .credit_box p {
  color: #333333;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .credit_box p {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .credit_box p {
    margin-bottom: 8px;
  }
}
.topics div.recent_topics .credit_box .acc_2 {
  padding-top: 3.71px;
}
.topics div.recent_topics .credit_box span {
  display: block;
  color: #FFFFFF;
  background-color: #000;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .credit_box span {
    width: 71.47px;
    height: 23.43px;
    font-size: 12px;
    line-height: 23.43px;
  }
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .credit_box span {
    width: 61px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
  }
}
@media screen and (min-width: 769px) {
  .topics div.recent_topics .credit_box .comingsoon {
    width: 95px;
  }
}
@media screen and (max-width: 768px) {
  .topics div.recent_topics .credit_box .comingsoon {
    width: 80px;
  }
}

.secondperson {
  background-color: #E5E4E0 !important;
}
@media screen and (max-width: 768px) {
  .secondperson {
    padding-bottom: 120px;
  }
}

.profile {
  background-color: #F1EFE9;
}
@media screen and (min-width: 769px) {
  .profile {
    padding-bottom: 135px;
  }
}
@media screen and (max-width: 768px) {
  .profile {
    padding-bottom: 120px;
  }
}
.profile .profilebox {
  background-color: #FAF8F2;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .profile .profilebox {
    width: 508.27px;
  }
}
@media screen and (max-width: 768px) {
  .profile .profilebox {
    width: 340px;
  }
}
.profile .brand {
  padding-top: 22px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .profile .brand {
    width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .profile .brand {
    width: 299px;
  }
}
.profile .brand p {
  display: flex;
  justify-content: space-between;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
  font-size: 9px;
  padding-bottom: 5px;
}
.profile .brand p:nth-child(2) {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}
.profile .brand p span {
  display: block;
  color: #333333;
}
.profile .brand::after {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 0.25px solid #333333;
}
@media screen and (min-width: 769px) {
  .profile .brand::after {
    width: 459.06px;
    margin-top: 9px;
  }
}
@media screen and (max-width: 768px) {
  .profile .brand::after {
    width: 298px;
    margin-top: 14px;
  }
}
.profile .sns {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .profile .sns {
    width: 445px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns {
    width: 299px;
    padding-bottom: 22px;
  }
}
@media screen and (min-width: 769px) {
  .profile .sns .profileimg {
    width: 31.5816396797%;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .profileimg {
    width: 107px;
  }
}
.profile .sns .profileimg img {
  border-radius: 80px;
}
.profile .sns .name p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
  font-size: 9px;
}
@media screen and (min-width: 769px) {
  .profile .sns .name p {
    padding-top: 18px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .name p {
    padding-top: 25px;
  }
}
.profile .sns .name p .whitebox {
  position: relative;
  display: block;
  background-color: #FFFFFF;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .profile .sns .name p .whitebox {
    width: 162px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .name p .whitebox {
    width: 143px;
    height: 20px;
  }
}
.profile .sns .name p .whitebox span {
  position: absolute;
  display: inline-block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  text-align: left;
  color: #333333;
  right: 0px;
  bottom: 0px;
}
.profile .sns .name p::after {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 0.25px solid #333333;
}
@media screen and (min-width: 769px) {
  .profile .sns .name p::after {
    width: 255.52px;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .name p::after {
    width: 167px;
    padding-bottom: 13px;
  }
}
.profile .sns .instagram p, .profile .sns .stasta p {
  justify-content: space-between;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
  font-size: 9px;
  padding-top: 25px;
}
.profile .sns .instagram p .whitebox, .profile .sns .stasta p .whitebox {
  position: relative;
  display: block;
  background-color: #FFFFFF;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .profile .sns .instagram p .whitebox, .profile .sns .stasta p .whitebox {
    width: 162px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .instagram p .whitebox, .profile .sns .stasta p .whitebox {
    width: 143px;
    height: 20px;
  }
}
.profile .sns .instagram p .whitebox span, .profile .sns .stasta p .whitebox span {
  position: absolute;
  display: inline-block;
  display: block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  text-align: left;
  background-color: #FFFFFF;
  color: #333333;
  right: 20px;
  bottom: 0px;
}
.profile .sns .instagram p .whitebox .next, .profile .sns .stasta p .whitebox .next {
  position: absolute;
  display: block;
  right: 0;
}
@media screen and (min-width: 769px) {
  .profile .sns .instagram p .whitebox .next, .profile .sns .stasta p .whitebox .next {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .instagram p .whitebox .next, .profile .sns .stasta p .whitebox .next {
    width: 10px;
  }
}
.profile .sns .instagram::after, .profile .sns .stasta::after {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 0.25px solid #333333;
}
@media screen and (min-width: 769px) {
  .profile .sns .instagram::after, .profile .sns .stasta::after {
    width: 255.52px;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px) {
  .profile .sns .instagram::after, .profile .sns .stasta::after {
    width: 167px;
    padding-bottom: 13px;
  }
}

.typing1 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  /*border-right: 2px solid black; /* カーソル風 */
  width: 0;
  visibility: hidden;
  position: absolute; /* 位置を固定 */
  left: 50%; /* 画面の中央に配置 */
  transform: translateX(-50%); /* 中心を維持 */
}

.typing1.active {
  border-right: none;
}

/* タイピングアニメーション */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* スクロールで発火するとクラスが追加され、アニメーションが適用される */
.typing1.active {
  visibility: visible;
  animation: typing 1s steps(30) forwards, blink 1s infinite;
}

.typing2 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  /*border-right: 2px solid black; /* カーソル風 */
  width: 0;
  visibility: hidden;
  position: absolute; /* 位置を固定 */
  left: 50%; /* 画面の中央に配置 */
  transform: translateX(-50%); /* 中心を維持 */
}

.typing2.active {
  border-right: none;
}

/* タイピングアニメーション */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* スクロールで発火するとクラスが追加され、アニメーションが適用される */
.typing2.active {
  visibility: visible;
  animation: typing 3s steps(30) forwards, blink 2s infinite;
}

footer {
  z-index: 1;
}/*# sourceMappingURL=style.css.map */