@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: "myriad-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
}

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

@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;
  }
}

/*コンテンツ*/
div.load {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}

/* fv */
@media screen and (min-width: 769px) {
  .fv {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) {
  .fv ul.img_main {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .fv div.desc_box {
    position: relative;
    width: 50%;
  }
}
.fv div.desc {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fv div.desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fv div.desc {
    margin: 18.6666666667vw 0 16vw;
  }
}
.fv div.desc h1 {
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .fv div.desc h1 {
    font-size: min(3.3333333333vw, 40px);
    line-height: 1.6666666667;
    margin-bottom: min(3.75vw, 45px);
  }
}
@media screen and (max-width: 768px) {
  .fv div.desc h1 {
    font-size: 8.5333333333vw;
    margin-bottom: 8.2666666667vw;
    line-height: 1.4285714286;
  }
}
.fv div.desc h1 span {
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 769px) {
  .fv div.desc h1 span {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .fv div.desc h1 span {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv div.desc p {
    font-size: min(1.4166666667vw, 17px);
    line-height: 2.3125;
  }
}
@media screen and (max-width: 768px) {
  .fv div.desc p {
    font-size: 3.7333333333vw;
    line-height: 2.5;
  }
}

/*navi*/
@media screen and (min-width: 769px) {
  nav {
    margin: min(13.3333333333vw, 160px) auto min(11.6666666667vw, 140px);
    display: flex;
    justify-content: center;
    width: 768px;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  nav {
    width: 84.8vw;
    margin: 0 auto 21.3333333333vw;
  }
}
nav ul {
  margin: 0 auto;
  display: flex;
}
@media screen and (min-width: 769px) {
  nav ul {
    width: min(76.6666666667vw, 920px);
    gap: min(0.8333333333vw, 10px);
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  nav ul {
    width: 84.8vw;
  }
}
nav ul li {
  flex: 1;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  nav ul li {
    width: auto;
    height: min(22.1666666667vw, 266px);
  }
}
@media screen and (max-width: 768px) {
  nav ul li {
    width: 29.0666666667vw;
    margin: 0 -15px;
  }
}
nav ul li img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  width: auto;
}
@media screen and (min-width: 769px) {
  nav ul li img {
    height: min(22.25vw, 267px);
  }
}
@media screen and (max-width: 768px) {
  nav ul li img {
    height: 60.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  nav .nav_top li:nth-last-of-type(5) {
    margin-left: -5px;
  }
  nav .nav_top li:nth-last-of-type(4) {
    margin-left: -18px;
  }
  nav .nav_top li:nth-last-of-type(3) {
    margin-left: -16px;
  }
  nav .nav_top li:nth-last-of-type(2) {
    margin-left: -20px;
  }
  nav .nav_top li:nth-last-of-type(1) {
    margin-left: -34px;
  }
}
@media screen and (max-width: 768px) {
  nav .nav_top {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  nav .nav_bottom li:nth-last-of-type(5) {
    margin-left: -5px;
  }
  nav .nav_bottom li:nth-last-of-type(4) {
    margin-left: -47px;
  }
  nav .nav_bottom li:nth-last-of-type(3) {
    margin-left: -55px;
  }
  nav .nav_bottom li:nth-last-of-type(2) {
    margin-left: -25px;
  }
  nav .nav_bottom li:nth-last-of-type(1) {
    margin-left: -18px;
  }
}
@media screen and (max-width: 768px) {
  nav .nav_bottom li:nth-last-of-type(5) {
    margin-left: -5px;
  }
  nav .nav_bottom li:nth-last-of-type(4) {
    margin-left: -27px;
  }
  nav .nav_bottom li:nth-last-of-type(3) {
    margin-left: -26px;
  }
  nav .nav_bottom li:nth-last-of-type(2) {
    margin-left: -2px;
  }
  nav .nav_bottom li:nth-last-of-type(1) {
    margin-left: 0px;
  }
}

/* credit */
@media screen and (min-width: 769px) {
  ul.credit li {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  ul.credit li {
    line-height: 1.7142857143;
  }
}
ul.credit li a {
  text-decoration: none;
  color: #242424;
  position: relative;
  display: flex;
}
@media screen and (min-width: 769px) {
  ul.credit li a {
    width: min(20.8333333333vw, 250px);
    font-size: min(1.25vw, 15px);
  }
}
@media screen and (max-width: 768px) {
  ul.credit li a {
    font-size: 3.7333333333vw;
    width: 60vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  ul.credit li a span.name {
    margin-right: min(1.4166666667vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  ul.credit li a span.name {
    margin-right: min(1.0833333333vw, 13px);
  }
}
ul.credit li a::after {
  content: "BUY";
  text-decoration: underline;
  position: absolute;
  right: 0;
  top: 0;
}
ul.credit li a.store::after {
  content: "store only";
  text-decoration: none;
}
ul.credit li a.soon::after {
  content: "coming soon";
  text-decoration: none;
}

/* background color */
div#style1.style1::before {
  background: #F9F4D9;
}

div#style2.style2::before {
  background: #024F9D;
}

div#style3.style3::before {
  background: #ACD0E8;
}

div#style45.style45::before {
  background: #F9F4D9;
}

div#style78.style78::before {
  background: #FFEDF4;
}

div#style12.style12::before {
  background: #E2F4FF;
}

div#style14.style14::before {
  background: #FFEDF4;
}

.style1 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style1 {
    height: min(102.5833333333vw, 1231px);
  }
}
@media screen and (max-width: 768px) {
  .style1 {
    height: 205.6vw;
  }
}
.style1::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style1::before {
    width: min(67.5833333333vw, 811px);
    height: min(102.5833333333vw, 1231px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style1::before {
    width: 100%;
    height: 205.6vw;
  }
}
@media screen and (min-width: 769px) {
  .style1 .img1 {
    width: min(52.0833333333vw, 625px);
    margin: 0 auto 60px;
    padding-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .style1 .img1 {
    width: 100%;
    margin: 0px 0 30px;
    padding-top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style1 .img2 {
    width: min(31.25vw, 375px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style1 .img2 {
    width: 60vw;
    margin: 0 auto;
  }
}

.style2 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style2 {
    height: min(148.3333333333vw, 1780px);
    width: 811px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style2 {
    height: 325.3333333333vw;
  }
}
.style2 .box-yellow {
  background: #FFF6C5;
}
.style2 .imgGroup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style2 .imgGroup {
    top: min(8.3333333333vw, 100px);
    width: min(44.5vw, 534px);
  }
}
@media screen and (max-width: 768px) {
  .style2 .imgGroup {
    top: 21.3333333333vw;
    width: 92vw;
  }
}
.style2 .img3 {
  position: absolute;
  z-index: 2;
  transform: rotate(7deg);
}
@media screen and (min-width: 769px) {
  .style2 .img3 {
    width: min(14.6666666667vw, 176px);
    top: min(69.25vw, 831px);
    right: min(9.3333333333vw, 112px);
  }
}
@media screen and (max-width: 768px) {
  .style2 .img3 {
    width: 28.2666666667vw;
    top: 149.3333333333vw;
    right: 5.3333333333vw;
  }
}
.style2 .img4 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style2 .img4 {
    width: min(34.6666666667vw, 416px);
    top: min(75.25vw, 903px);
  }
}
@media screen and (max-width: 768px) {
  .style2 .img4 {
    width: 66.6666666667vw;
    top: 162.6666666667vw;
  }
}
.style2 .img5 {
  position: absolute;
  transform: rotate(-7deg);
}
@media screen and (min-width: 769px) {
  .style2 .img5 {
    width: min(14.6666666667vw, 176px);
    top: min(97.4166666667vw, 1169px);
    left: min(9.3333333333vw, 112px);
  }
}
@media screen and (max-width: 768px) {
  .style2 .img5 {
    width: 28.2666666667vw;
    top: 206.9333333333vw;
    left: 5.3333333333vw;
  }
}
.style2 .credit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style2 .credit {
    top: min(130.0833333333vw, 1561px);
  }
}
@media screen and (max-width: 768px) {
  .style2 .credit {
    top: 272vw;
  }
}
.style2 .credit li a {
  color: #fff !important;
}
.style2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style2::before {
    width: min(67.5833333333vw, 811px);
    height: min(148.3333333333vw, 1780px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style2::before {
    width: 100%;
    height: 325.3333333333vw;
  }
}

.style3 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style3 {
    height: min(110.75vw, 1329px);
    width: min(67.5833333333vw, 811px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style3 {
    height: 226.1333333333vw;
  }
}
.style3 .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
  background: #FFF6C5;
}
@media screen and (min-width: 769px) {
  .style3 .container {
    top: min(8.3333333333vw, 100px);
    width: min(48.0833333333vw, 577px);
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .style3 .container {
    width: 92vw;
    top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style3 .container .inner {
    width: 66.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .style3 .container .inner {
    width: 40vw;
    padding: 15px 7px;
  }
}
@media screen and (min-width: 769px) {
  .style3 .container .img1 {
    padding: 25px 0 25px 25px;
  }
}
@media screen and (min-width: 769px) {
  .style3 .container .img2 {
    padding: 25px 25px 25px 0;
  }
}
.style3 .img3 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style3 .img3 {
    top: min(45.3333333333vw, 544px);
    width: min(21.3333333333vw, 256px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style3 .img3 {
    top: 90.9333333333vw;
    left: 34.6666666667vw;
    width: 41.0666666667vw;
  }
}
.style3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style3::before {
    width: min(67.5833333333vw, 811px);
    height: min(110.75vw, 1329px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style3::before {
    width: 100%;
    height: 226.1333333333vw;
  }
}
.style3 .credit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style3 .credit {
    top: min(100.3333333333vw, 1204px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit {
    top: 198.4vw;
  }
}
@media screen and (min-width: 769px) {
  .style3 ul.credit__position {
    width: min(5.6666666667vw, 68px);
  }
}
@media screen and (max-width: 768px) {
  .style3 ul.credit__position {
    width: 18.1333333333vw;
  }
}
.style3 ul.credit__position a {
  text-decoration: none;
  color: #242424;
  position: relative;
}
@media screen and (min-width: 769px) {
  .style3 ul.credit__position a {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .style3 ul.credit__position a {
    font-size: 3.7333333333vw;
    margin: 0 auto;
  }
}
.style3 ul.credit__position a li {
  display: flex;
  justify-content: end;
  gap: 4px; /* 商品名と価格の間隔 */
}
@media screen and (min-width: 769px) {
  .style3 ul.credit__position a li {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .style3 ul.credit__position a li {
    line-height: 1.7142857143;
  }
}
@media screen and (min-width: 769px) {
  .style3 ul.credit__position a span.name {
    margin-right: min(1.4166666667vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  .style3 ul.credit__position a span.name {
    margin-right: min(1.0833333333vw, 13px);
  }
}
.style3 ul.credit__position a .buy {
  display: block;
  text-align: right;
  text-decoration: underline;
}
.style3 ul.credit__position a .store {
  display: block;
  text-align: right;
  text-decoration: none;
}
.style3 .credit {
  /* shirt */
  /* bag */
  /* pants */
}
.style3 .credit__top {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style3 .credit__top {
    top: min(54.4166666667vw, 653px);
    left: min(14.1666666667vw, 170px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__top {
    top: 101.3333333333vw;
    left: 12vw;
  }
}
.style3 .credit__top .line::after {
  content: "";
  position: absolute;
  bottom: -25px; /* 右下に配置 */
  right: -20px;
  height: 1px;
  background-color: #1a1a1a;
  transform: rotate(51deg); /* 斜めに */
  transform-origin: right bottom;
}
@media screen and (min-width: 769px) {
  .style3 .credit__top .line::after {
    width: min(2.0833333333vw, 25px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__top .line::after {
    width: 6.6666666667vw;
  }
}
.style3 .credit__right {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style3 .credit__right {
    top: min(58.1666666667vw, 698px);
    left: min(45.5833333333vw, 547px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__right {
    top: 108.5333333333vw;
    left: 76.5333333333vw;
  }
}
.style3 .credit__right .line::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #1a1a1a;
  bottom: 15px; /* 左下に配置 */
  transform: rotate(-51deg); /* 斜めに */
  transform-origin: right bottom;
}
@media screen and (min-width: 769px) {
  .style3 .credit__right .line::after {
    width: min(2.0833333333vw, 25px);
    left: min(-3.5833333333vw, -43px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__right .line::after {
    width: 6.6666666667vw;
    left: -37px;
  }
}
.style3 .credit__left {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style3 .credit__left {
    top: min(78.0833333333vw, 937px);
    left: min(13.3333333333vw, 160px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__left {
    top: 152vw;
    left: 10.6666666667vw;
  }
}
.style3 .credit__left .line::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #1a1a1a;
  top: -15px; /* 右上に配置 */
  transform: rotate(-51deg); /* 斜めに */
  transform-origin: right bottom;
}
@media screen and (min-width: 769px) {
  .style3 .credit__left .line::after {
    left: min(6.0833333333vw, 73px);
    width: min(2.0833333333vw, 25px);
  }
}
@media screen and (max-width: 768px) {
  .style3 .credit__left .line::after {
    left: 63px;
    width: 6.6666666667vw;
  }
}

.style45 {
  position: relative;
  /* pc6枚*/
}
@media screen and (min-width: 769px) {
  .style45 {
    height: min(186.0833333333vw, 2233px);
    width: min(67.5833333333vw, 811px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style45 {
    width: 100%;
    height: 380.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .style45 .img1 {
    width: min(52.0833333333vw, 625px);
    margin: 0 auto;
  }
}
.style45::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style45::before {
    width: min(67.5833333333vw, 811px);
    height: min(186.0833333333vw, 2233px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style45::before {
    width: 100%;
    height: 380.2666666667vw;
  }
}
.style45 .scrollBox {
  margin-top: 30px;
  margin-top: 8vw;
}
.style45 .scroll-infinity {
  margin-bottom: 15px;
}
.style45 .img2__box {
  width: min(67.6666666667vw, 812px);
  margin: 25px auto 20px;
}
.style45 .img2__top {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
}
.style45 .img2__top li {
  width: calc((100% - 50px) / 3); /* 3列、左右25px分除外 */
  box-sizing: border-box;
}
.style45 .img2__top li.margin-sides {
  margin-left: 25px;
  margin-right: 25px;
}
@media screen and (min-width: 769px) {
  .style45 .credit {
    width: min(20.8333333333vw, 250px);
    margin: 0 auto;
  }
}
.style45 .img5-1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style45 .img5-1 {
    width: min(24.5vw, 294px);
    top: min(105vw, 1260px);
    left: min(9.6666666667vw, 116px);
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-1 {
    width: 46.9333333333vw;
    top: 220.8vw;
    left: 5.3333333333vw;
  }
}
.style45 .img5-2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style45 .img5-2 {
    width: min(22.1666666667vw, 266px);
    top: min(129.4166666667vw, 1553px);
    right: min(6.6666666667vw, 80px);
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-2 {
    width: 42.4vw;
    top: 270.9333333333vw;
    right: 0;
    left: auto;
  }
}
.style45 .img5-3 {
  position: absolute;
  display: flex;
  align-items: end;
}
@media screen and (min-width: 769px) {
  .style45 .img5-3 {
    top: min(145vw, 1740px);
    gap: min(4.8333333333vw, 58px);
    left: min(6.75vw, 81px);
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-3 {
    top: 296.2666666667vw;
    gap: 6.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style45 .img5-3__left {
    width: min(24.5vw, 294px);
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-3__left {
    width: 46.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style45 .img5-3 .credit {
    width: min(21.5833333333vw, 259px);
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-3 .credit {
    width: 38.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .style45 .img5-3 .credit li a {
    width: min(12.0833333333vw, 145px);
  }
}
@media screen and (max-width: 768px) {
  .style45 .img5-3 .credit li a {
    width: 38.6666666667vw;
  }
}
.style45 .img5-3 .credit li a.store::after {
  content: "";
}
@media screen and (max-width: 768px) {
  .style45 .img5-3 .credit li a {
    font-size: 3.4666666667vw;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}
@media screen and (min-width: 769px) {
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
  }
}

.scroll-infinity__item {
  width: 33.3333333333vw;
  margin-right: 15px;
}

.scroll-infinity__item > img {
  width: 100%;
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--right {
  animation: infinity-scroll-right 20s infinite linear 0.5s both;
}
@media screen and (min-width: 769px) {
  .scroll-infinity__list--right {
    animation: infinity-scroll-right 30s infinite linear 0.5s both;
  }
}

.scroll-infinity__item {
  width: 33.3333333333vw;
  margin-right: 15px;
}

.scroll-infinity__item > img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .style6 {
    margin: min(8.3333333333vw, 100px) auto;
  }
}
@media screen and (max-width: 768px) {
  .style6 {
    margin: 21.3333333333vw auto;
  }
}
.style6 .flex_container {
  display: flex;
}
@media screen and (min-width: 769px) {
  .style6 .flex_container {
    gap: 54px;
    width: min(55.9166666667vw, 671px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style6 .flex_container {
    gap: 15px;
    width: 100%;
  }
}
.style6 .flex_container .inner__color {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .style6 .flex_container .inner__color {
    width: min(20.0833333333vw, 241px);
    gap: 23px;
  }
}
@media screen and (max-width: 768px) {
  .style6 .flex_container .inner__color {
    width: 36vw;
  }
}
.style6 .flex_container .inner__color .yellow::before {
  display: block;
  content: "";
  background-color: #F9F4D9;
}
@media screen and (min-width: 769px) {
  .style6 .flex_container .inner__color .yellow::before {
    width: min(17.1666666667vw, 206px);
    height: min(18.0833333333vw, 217px);
  }
}
@media screen and (max-width: 768px) {
  .style6 .flex_container .inner__color .yellow::before {
    width: 30.6666666667vw;
    height: 37.3333333333vw;
  }
}
.style6 .flex_container .inner__color .red::before {
  display: block;
  content: "";
  background-color: #D7351D;
}
@media screen and (min-width: 769px) {
  .style6 .flex_container .inner__color .red::before {
    width: min(17.1666666667vw, 206px);
    height: min(12.9166666667vw, 155px);
    margin-left: 35PX;
  }
}
@media screen and (max-width: 768px) {
  .style6 .flex_container .inner__color .red::before {
    width: 30.6666666667vw;
    height: 26.6666666667vw;
    margin-left: 20PX;
  }
}
@media screen and (min-width: 769px) {
  .style6 .flex_container .inner__img {
    width: min(31.25vw, 375px);
  }
}
@media screen and (max-width: 768px) {
  .style6 .flex_container .inner__img {
    width: 60vw;
  }
}
@media screen and (min-width: 769px) {
  .style6 .img2 {
    width: min(24.5vw, 294px);
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .style6 .img2 {
    width: 46.9333333333vw;
    margin: 30px auto 0;
  }
}

.style78 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style78 {
    height: min(181vw, 2172px);
    width: min(67.5833333333vw, 811px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style78 {
    height: 355.4666666667vw;
  }
}
.style78::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style78::before {
    width: min(67.5833333333vw, 811px);
    height: min(181vw, 2172px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style78::before {
    width: 100%;
    height: 355.4666666667vw;
  }
}
.style78 .flex_container {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .style78 .flex_container {
    gap: 48px;
    padding-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .flex_container {
    gap: 15px;
    padding-top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style78 .flex_container .inner__img1 {
    width: min(22.1666666667vw, 266px);
    margin-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .flex_container .inner__img1 {
    width: 42.6666666667vw;
    margin-top: 10.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style78 .flex_container .inner__img2 {
    width: min(22.1666666667vw, 266px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .flex_container .inner__img2 {
    width: 42.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .style78 .img3 {
    width: min(52.0833333333vw, 625px);
    margin: min(5vw, 60px) auto 0;
  }
}
@media screen and (max-width: 768px) {
  .style78 .img3 {
    width: 100%;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .style78 .img4 {
    width: min(52.0833333333vw, 625px);
    margin: 0 auto min(5vw, 60px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .img4 {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.style78 .img5 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style78 .img5 {
    width: min(19.25vw, 231px);
    right: min(6.5vw, 78px);
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .style78 .img5 {
    width: 36.8vw;
    top: 252.8vw;
    right: 0;
    left: auto;
  }
}
.style78 .img6 {
  position: absolute;
  display: flex;
  align-items: end;
}
@media screen and (min-width: 769px) {
  .style78 .img6 {
    top: min(139.0833333333vw, 1669px);
    left: min(10.9166666667vw, 131px);
    gap: min(2.5vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .img6 {
    top: 269.6vw;
    left: 7.2vw;
    gap: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .style78 .img6__left {
    width: min(25.0833333333vw, 301px);
  }
}
@media screen and (max-width: 768px) {
  .style78 .img6__left {
    width: 48vw;
  }
}
@media screen and (max-width: 768px) {
  .style78 .img6 .credit {
    width: 38.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .style78 .img6 .credit li a {
    width: 38.6666666667vw;
  }
}
.style78 .img6 .credit li a.store::after {
  content: "";
}
@media screen and (max-width: 768px) {
  .style78 .img6 .credit li a {
    font-size: 3.4666666667vw;
  }
}

.style9 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style9 {
    height: min(88.25vw, 1059px);
    margin: min(8.3333333333vw, 100px) auto;
    width: min(55.9166666667vw, 671px);
  }
}
@media screen and (max-width: 768px) {
  .style9 {
    height: 172.5333333333vw;
    margin: 21.3333333333vw auto;
  }
}
.style9 .yellow::before {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  background-color: #F9F4D9;
}
@media screen and (min-width: 769px) {
  .style9 .yellow::before {
    width: min(17.25vw, 207px);
    height: min(16.6666666667vw, 200px);
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .style9 .yellow::before {
    width: 30.9333333333vw;
    height: 34.4vw;
    right: 0;
  }
}
.style9 .blue::before {
  position: absolute;
  background-color: #ACD0E8;
  display: block;
  content: "";
}
@media screen and (min-width: 769px) {
  .style9 .blue::before {
    left: 0;
    top: min(42.4166666667vw, 509px);
    width: min(10.75vw, 129px);
    height: min(12.4166666667vw, 149px);
  }
}
@media screen and (max-width: 768px) {
  .style9 .blue::before {
    left: 0;
    top: 87.4666666667vw;
    width: 19.2vw;
    height: 25.6vw;
  }
}
.style9 .img1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style9 .img1 {
    width: min(28.25vw, 339px);
    top: min(1.75vw, 21px);
    left: min(4.4166666667vw, 53px);
  }
}
@media screen and (max-width: 768px) {
  .style9 .img1 {
    width: 54.1333333333vw;
    top: 6.4vw;
    left: 5.8666666667vw;
  }
}
.style9 .img2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style9 .img2 {
    width: min(22.0833333333vw, 265px);
    top: min(20.1666666667vw, 242px);
    left: min(27.25vw, 327px);
  }
}
@media screen and (max-width: 768px) {
  .style9 .img2 {
    width: 42.6666666667vw;
    top: 43.7333333333vw;
    left: 44.2666666667vw;
  }
}
.style9 .img3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style9 .img3 {
    width: min(25.0833333333vw, 301px);
    top: min(54.6666666667vw, 656px);
  }
}
@media screen and (max-width: 768px) {
  .style9 .img3 {
    width: 48vw;
    top: 108.2666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .style10 {
    margin: min(8.3333333333vw, 100px) auto;
    height: min(50.9166666667vw, 611px);
  }
}
@media screen and (max-width: 768px) {
  .style10 {
    margin: 21.3333333333vw auto;
    height: 104vw;
  }
}
.style10 .flex__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .style10 .flex__container {
    gap: 25px;
    margin-bottom: min(8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .style10 .flex__container {
    gap: 15px;
  }
}
@media screen and (min-width: 769px) {
  .style10 .flex__container .img1 {
    width: min(29.1666666667vw, 350px);
  }
}
@media screen and (max-width: 768px) {
  .style10 .flex__container .img1 {
    width: 56vw;
  }
}
@media screen and (min-width: 769px) {
  .style10 .flex__inner {
    width: min(17.9166666667vw, 215px);
  }
}
@media screen and (max-width: 768px) {
  .style10 .flex__inner {
    width: 32vw;
  }
}
@media screen and (min-width: 769px) {
  .style10 .flex__inner li:nth-of-type(2) {
    margin: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .style10 .flex__inner li:nth-of-type(2) {
    margin: 15px 0;
  }
}

@media screen and (min-width: 769px) {
  .style11 {
    margin: min(8.3333333333vw, 100px) auto;
    width: min(67.5833333333vw, 811px);
    padding: min(8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .style11 {
    margin: 21.3333333333vw auto;
  }
}
.style11 .scrollBox {
  background: #1a1a1a;
  padding: 2px 0;
}
@media screen and (min-width: 769px) {
  .style11 .scrollBox {
    width: 90%;
    margin: 0 auto;
    padding: 2px;
  }
}
.style11 .scrollBox > .scroll-infinity:nth-of-type(2) {
  padding: 2px 0;
}
@media screen and (min-width: 769px) {
  .style11 .scroll-infinity__item {
    width: 16.6666666667vw;
    margin-right: 2px;
  }
}
@media screen and (max-width: 768px) {
  .style11 .scroll-infinity__item {
    width: 33.3333333333vw;
    margin-right: 2px;
  }
}

.style12 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style12 {
    width: min(67.5833333333vw, 811px);
    height: min(94.4166666667vw, 1133px); /* 背景色の高さ */
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style12 {
    width: 100%;
    height: 192.2666666667vw; /* 背景色の高さ */
  }
}
.style12::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style12::before {
    width: min(67.5833333333vw, 811px);
    height: min(94.4166666667vw, 1133px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style12::before {
    width: 100%;
    height: 192.2666666667vw; /* 背景色の高さ */
  }
}
.style12 .img1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style12 .img1 {
    right: min(7.75vw, 93px);
    top: min(8.3333333333vw, 100px);
    width: min(35.4166666667vw, 425px);
  }
}
@media screen and (max-width: 768px) {
  .style12 .img1 {
    right: 0;
    top: 21.3333333333vw;
    width: 68vw;
  }
}
.style12 .img2 {
  position: absolute;
  transform: rotate(14deg);
}
@media screen and (min-width: 769px) {
  .style12 .img2 {
    width: min(18vw, 216px);
    top: min(10.3333333333vw, 124px);
    left: min(9.8333333333vw, 118px);
  }
}
@media screen and (max-width: 768px) {
  .style12 .img2 {
    width: 34.6666666667vw;
    top: 24.5333333333vw;
    left: 6.9333333333vw;
  }
}
.style12 .img3 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style12 .img3 {
    width: min(24.5vw, 294px);
    top: min(40vw, 480px);
    left: min(12vw, 144px);
  }
}
@media screen and (max-width: 768px) {
  .style12 .img3 {
    width: 46.9333333333vw;
    top: 80.2666666667vw;
    left: 10.1333333333vw;
  }
}
.style12 .img4 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style12 .img4 {
    width: min(18vw, 216px);
    top: min(62vw, 744px);
    left: min(40.3333333333vw, 484px);
  }
}
@media screen and (max-width: 768px) {
  .style12 .img4 {
    width: 34.6666666667vw;
    top: 124.8vw;
    left: 61.3333333333vw;
  }
}

.style13 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style13 {
    width: min(67.5833333333vw, 811px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .style13::before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    z-index: -1;
    width: min(67.5833333333vw, 811px);
    height: min(106.9166666667vw, 1283px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.style13 .flex__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .style13 .flex__container {
    margin: 100px auto;
    gap: 40px;
    width: min(29.25vw, 351px);
  }
}
@media screen and (max-width: 768px) {
  .style13 .flex__container {
    margin: 80px auto;
    gap: 30px;
    width: 56vw;
  }
}
@media screen and (min-width: 769px) {
  .style13 .flex__container .img1, .style13 .flex__container .img4 {
    width: min(21.8333333333vw, 262px);
  }
}
@media screen and (max-width: 768px) {
  .style13 .flex__container .img1, .style13 .flex__container .img4 {
    width: 42.1333333333vw;
  }
}
.style13 .img5 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style13 .img5 {
    width: min(16.5vw, 198px);
    top: min(24.1666666667vw, 290px);
    left: min(6.6666666667vw, 80px);
  }
}
@media screen and (max-width: 768px) {
  .style13 .img5 {
    width: 31.4666666667vw;
    top: 54.1333333333vw;
    left: 2.6666666667vw;
  }
}
.style13 .img6 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style13 .img6 {
    width: min(12vw, 144px);
    top: min(47.5833333333vw, 571px);
    right: min(9.75vw, 117px);
  }
}
@media screen and (max-width: 768px) {
  .style13 .img6 {
    width: 22.9333333333vw;
    top: 119.4666666667vw;
    right: 6.6666666667vw;
  }
}

.style14 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style14 {
    height: min(104.5vw, 1254px); /* 背景色の高さ */
  }
}
@media screen and (max-width: 768px) {
  .style14 {
    width: 100%;
    height: 206.9333333333vw; /* 背景色の高さ */
  }
}
.style14 .flex__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .style14 .flex__container {
    gap: 60px;
    padding-top: min(8.3333333333vw, 100px);
    max-width: 625px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .style14 .flex__container {
    gap: 30px;
    padding-top: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .style14 .flex__container .img3 {
    width: min(30.5833333333vw, 367px);
  }
}
@media screen and (max-width: 768px) {
  .style14 .flex__container .img3 {
    width: 58.6666666667vw;
  }
}
.style14 .flex__boxTop {
  display: flex;
}
@media screen and (min-width: 769px) {
  .style14 .flex__boxTop .img1, .style14 .flex__boxTop .img2 {
    width: min(26.0833333333vw, 313px);
  }
}
@media screen and (max-width: 768px) {
  .style14 .flex__boxTop .img1, .style14 .flex__boxTop .img2 {
    width: 49.8666666667vw;
  }
}
.style14 .flex__boxBottom {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 769px) {
  .style14 .flex__boxBottom {
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  .style14 .flex__boxBottom .img4, .style14 .flex__boxBottom .img5, .style14 .flex__boxBottom .img6 {
    width: min(15vw, 180px);
  }
}
@media screen and (max-width: 768px) {
  .style14 .flex__boxBottom .img4, .style14 .flex__boxBottom .img5, .style14 .flex__boxBottom .img6 {
    width: 28.8vw;
  }
}
.style14::before {
  content: "";
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .style14::before {
    width: min(67.5833333333vw, 811px);
    height: min(104.5vw, 1254px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .style14::before {
    width: 100%;
    height: 206.9333333333vw; /* 背景色の高さ */
  }
}

.style15 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .style15 {
    height: min(98.9166666667vw, 1187px);
    margin: min(8.3333333333vw, 100px) auto;
    width: 811px;
  }
}
@media screen and (max-width: 768px) {
  .style15 {
    height: 186.4vw;
    margin: 21.3333333333vw auto;
  }
}
.style15 .img1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .style15 .img1 {
    width: min(25vw, 300px);
  }
}
@media screen and (max-width: 768px) {
  .style15 .img1 {
    width: 48vw;
  }
}
.style15 .img2 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style15 .img2 {
    width: min(22vw, 264px);
    top: min(53vw, 636px);
    left: min(8.8333333333vw, 106px);
  }
}
@media screen and (max-width: 768px) {
  .style15 .img2 {
    width: 42.6666666667vw;
    top: 97.0666666667vw;
    left: 4vw;
  }
}
.style15 .img3 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .style15 .img3 {
    width: min(22.1666666667vw, 266px);
    top: min(38.3333333333vw, 460px);
    right: min(8.5vw, 102px);
  }
}
@media screen and (max-width: 768px) {
  .style15 .img3 {
    width: 42.6666666667vw;
    top: 72vw;
    right: 4.5333333333vw;
  }
}
.style15 .img4 {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
}
@media screen and (min-width: 769px) {
  .style15 .img4 {
    top: min(73vw, 876px);
    left: min(8vw, 96px);
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .style15 .img4 {
    top: 136.8vw;
    left: 4vw;
    gap: 7.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .style15 .img4__left {
    width: min(19.3333333333vw, 232px);
  }
}
@media screen and (max-width: 768px) {
  .style15 .img4__left {
    width: 37.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .style15 .img4 .credit {
    width: 38.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .style15 .img4 .credit li a {
    width: 38.6666666667vw;
    font-size: 3.4666666667vw;
  }
}

div.blockA {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.blockA {
    width: min(76.6666666667vw, 920px);
    height: min(103.3333333333vw, 1240px);
    margin: 0 auto min(20vw, 240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockA {
    height: 237.0666666667vw;
    margin: 0 auto 48vw;
  }
}
div.blockA::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  div.blockA::before {
    width: min(63.3333333333vw, 760px);
    height: min(103.3333333333vw, 1240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockA::before {
    width: 69.3333333333vw;
    height: 237.0666666667vw;
  }
}
div.blockA div.inner1 {
  display: flex;
}
@media screen and (min-width: 769px) {
  div.blockA div.inner1 {
    align-items: center;
    padding-top: min(8.3333333333vw, 100px);
    margin-bottom: min(5vw, 60px);
  }
}
@media screen and (max-width: 768px) {
  div.blockA div.inner1 {
    flex-direction: column;
    width: 89.3333333333vw;
    margin: 0 auto;
    padding-top: 13.3333333333vw;
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockA div.inner1 div.img1 {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  div.blockA div.inner1 div.img1 {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockA div.inner1 ul.credit {
    width: 50%;
    box-sizing: border-box;
    padding-left: min(6.6666666667vw, 80px);
  }
}
div.blockA div.inner2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.blockA div.inner2 {
    width: min(53.3333333333vw, 640px);
    margin-left: auto;
    margin-right: min(5vw, 60px);
  }
}
@media screen and (max-width: 768px) {
  div.blockA div.inner2 {
    width: 78.6666666667vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.blockA div.inner2 div {
    width: min(25.8333333333vw, 310px);
  }
}
@media screen and (max-width: 768px) {
  div.blockA div.inner2 div {
    width: 37.8666666667vw;
  }
}

@media screen and (min-width: 769px) {
  div.blockB {
    margin-bottom: min(20vw, 240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockB {
    margin-bottom: 48vw;
  }
}
div.blockB div.inner1 {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.blockB div.inner1 {
    width: min(66.6666666667vw, 800px);
    margin: 0 auto min(20vw, 240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockB div.inner1 {
    width: 89.3333333333vw;
    margin: 0 auto 48vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockB div.inner1 div {
    width: min(32.5vw, 390px);
  }
}
@media screen and (max-width: 768px) {
  div.blockB div.inner1 div {
    width: 43.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockB div.inner2 div {
    width: min(41.6666666667vw, 500px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.blockB div.inner2 div {
    width: 78.6666666667vw;
    margin: 0 auto;
  }
}

div.blockC {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.blockC {
    width: min(76.6666666667vw, 920px);
    height: min(103.3333333333vw, 1240px);
    margin: 0 auto min(20vw, 240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockC {
    height: 237.0666666667vw;
    margin-bottom: 48vw;
  }
}
div.blockC::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  div.blockC::before {
    width: min(63.3333333333vw, 760px);
    height: min(103.3333333333vw, 1240px);
  }
}
@media screen and (max-width: 768px) {
  div.blockC::before {
    width: 69.3333333333vw;
    height: 237.0666666667vw;
  }
}
div.blockC div.inner1 {
  display: flex;
}
@media screen and (min-width: 769px) {
  div.blockC div.inner1 {
    flex-direction: row-reverse;
    align-items: center;
    padding-top: min(8.3333333333vw, 100px);
    margin-bottom: min(5vw, 60px);
  }
}
@media screen and (max-width: 768px) {
  div.blockC div.inner1 {
    flex-direction: column;
    padding-top: 13.3333333333vw;
    margin: 0 auto 13.3333333333vw;
    width: 89.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockC div.inner1 div.img1 {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  div.blockC div.inner1 div.img1 {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  div.blockC div.inner1 ul.credit {
    width: 50%;
    box-sizing: border-box;
    padding-left: min(12.4166666667vw, 149px);
  }
}
div.blockC div.inner2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.blockC div.inner2 {
    width: min(53.3333333333vw, 640px);
    margin-left: min(5vw, 60px);
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  div.blockC div.inner2 {
    width: 78.6666666667vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.blockC div.inner2 div {
    width: min(25.8333333333vw, 310px);
  }
}
@media screen and (max-width: 768px) {
  div.blockC div.inner2 div {
    width: 37.8666666667vw;
  }
}

.toModal {
  position: relative;
  cursor: pointer;
}
.toModal span {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .toModal span {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .toModal span {
    width: min(3.3333333333vw, 40px);
    height: min(3.3333333333vw, 40px);
    bottom: min(1.6666666667vw, 20px);
    right: min(1.6666666667vw, 20px);
  }
}
.toModal span::before {
  content: "";
  display: block;
  background: #1a1a1a;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.toModal span::after {
  content: "";
  display: block;
  background: #1a1a1a;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .toModal span.small {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}

.staffcredit {
  background: url(../images/staffcredit.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(26, 26, 26, 0.4117647059);
}
@media screen and (max-width: 768px) {
  .staffcredit {
    width: 74.9333333333vw;
    height: 133.3333333333vw;
    margin: 0 auto 22.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .staffcredit {
    width: min(39.1666666667vw, 470px);
    height: min(69.6666666667vw, 836px);
    margin: 0 auto min(8.6666666667vw, 104px);
  }
}
.staffcredit p {
  text-align: center;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .staffcredit p {
    font-size: min(1.5vw, 18px);
    position: absolute;
    top: 40%;
    line-height: 1.8888888889;
  }
}
@media screen and (max-width: 768px) {
  .staffcredit p {
    font-size: 2.9333333333vw;
    position: absolute;
    top: 40%;
    line-height: 2.7272727273;
  }
}

div#foot a.allitem {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  color: #1a1a1a;
  border: solid 1px;
}
@media screen and (max-width: 768px) {
  div#foot a.allitem {
    width: 60vw;
    height: 13.8666666667vw;
    font-size: 3.4666666667vw;
    margin: 0 auto 22.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div#foot a.allitem {
    width: min(33.3333333333vw, 400px);
    height: min(6vw, 72px);
    font-size: min(1.5vw, 18px);
    margin: 0 auto min(8.6666666667vw, 104px);
  }
}
div#foot ul.linklist {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  div#foot ul.linklist {
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  div#foot ul.linklist {
    margin-bottom: min(2.75vw, 33px);
  }
}
@media screen and (max-width: 768px) {
  div#foot ul.linklist li {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div#foot ul.linklist li {
    font-size: min(1.25vw, 15px);
  }
}
div#foot ul.linklist li a {
  text-decoration: none;
  color: #242424;
}
@media screen and (min-width: 769px) {
  div#foot ul.linklist li::after {
    content: "/";
    display: inline-block;
    padding-left: min(1.0833333333vw, 13px);
    padding-right: min(1.0833333333vw, 13px);
  }
}
@media screen and (max-width: 768px) {
  div#foot ul.linklist li::after {
    content: "/";
    display: inline-block;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
div#foot ul.linklist li:last-child::after {
  display: none;
}
div#foot a.logo {
  display: block;
}
@media screen and (min-width: 769px) {
  div#foot a.logo {
    width: min(12.1666666667vw, 146px);
    margin: 0 auto min(7.9166666667vw, 95px);
  }
}
@media screen and (max-width: 768px) {
  div#foot a.logo {
    width: 26.6666666667vw;
    margin: 0 auto 14.6666666667vw;
  }
}
div#foot p.copy {
  text-align: center;
}
@media screen and (min-width: 769px) {
  div#foot p.copy {
    font-size: min(0.8333333333vw, 10px);
    margin-bottom: min(5.8333333333vw, 70px);
  }
}
@media screen and (max-width: 768px) {
  div#foot p.copy {
    font-size: 2.1333333333vw;
    margin-bottom: 6.4vw;
  }
}

.modal {
  display: none;
}
@media screen and (min-width: 769px) {
  .modal {
    width: 100%;
    height: 100vh;
    background: #E5E9EC;
    position: fixed;
    top: 0;
    left: 0;
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (max-width: 768px) {
  .modal {
    overflow: scroll;
    width: 100%;
    height: 100vh;
    background: #E5E9EC;
    position: fixed;
    top: 0;
    left: 0;
    font-size: min(1.1666666667vw, 14px);
  }
}
.modal::before {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .modal::before {
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .modal::before {
    height: 100%;
    width: 34.0277777778vw;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner {
    height: calc(100vh - 160px);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 80px 0;
    position: relative;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner {
    margin: 80px 0;
    padding: 50px 0;
    background-color: #fff;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .imgArea {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner .imgArea {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .creditArea {
    width: 40%;
    gap: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner .creditArea {
    width: 100%;
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .creditArea .titleArea {
    text-align: center;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner .creditArea .titleArea {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .creditArea .title {
    font-size: 32px;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner .creditArea .title {
    font-size: 30px;
    font-weight: 600;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .creditArea .sub_title {
    font-size: 14px;
    font-weight: 300;
  }
}
@media screen and (max-width: 768px) {
  .modal .box_inner .inner .creditArea .sub_title {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
  }
}
@media screen and (min-width: 769px) {
  .modal .box_inner .inner .creditArea .credit {
    box-sizing: border-box;
    font-size: 1.0416666667vw;
  }
}
.modal a.close {
  display: block;
  position: absolute;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .modal a.close {
    top: 17.5px;
    right: 5%;
    width: 11.2vw;
    height: 11.2vw;
  }
}
@media screen and (min-width: 769px) {
  .modal a.close {
    top: 0.8333333333vw;
    right: 3.3333333333vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
.modal a.close::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #242424;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal a.close::after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #242424;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* animation */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}/*# sourceMappingURL=style.css.map */