:root {
  --header-height: 80px
}

@media only screen and (max-width: 640px) {
  :root {
    --header-height: 48px
  }
}

.bdrs3 {
  border-radius: 3px
}

@media only screen and (max-width:640px) {
  .bdrs3 {
    border-radius: 2px
  }
}

.bdrs5 {
  border-radius: 5px
}

@media only screen and (max-width:640px) {
  .bdrs5 {
    border-radius: 3px
  }
}

.bdrs10 {
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .bdrs10 {
    border-radius: 5px
  }
}

@keyframes horizontal {
  0% {
    transform: translateX(-3px)
  }

  100% {
    transform: translateX(0px)
  }
}

@keyframes vertical {
  0% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0px)
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes rotation_color {
  0% {
    background: linear-gradient(133deg, rgb(0, 51, 136) 0%, rgb(0, 88, 132) 30%, rgb(0, 128, 128) 73%, rgb(0, 128, 128) 100%)
  }

  25% {
    background: linear-gradient(133deg, rgb(0, 128, 128) 0%, rgb(0, 51, 136) 30%, rgb(0, 88, 132) 73%, rgb(0, 128, 128) 100%)
  }

  50% {
    background: linear-gradient(133deg, rgb(0, 128, 128) 0%, rgb(0, 128, 128) 30%, rgb(0, 51, 136) 73%, rgb(0, 88, 132) 100%)
  }

  100% {
    background: linear-gradient(133deg, rgb(0, 88, 132) 0%, rgb(0, 128, 128) 30%, rgb(0, 128, 128) 73%, rgb(0, 51, 136) 100%)
  }
}

@keyframes gradation {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}

@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1)
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1)
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97)
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97)
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }

  to {
    -webkit-transform: none;
    transform: none
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  from {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

@keyframes rollOut {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  from {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  to {
    opacity: 0
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

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

body {
  line-height: 1
}

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

ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0)
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold
}

del {
  text-decoration: line-through
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0
}

input,
select {
  vertical-align: middle
}

html {
  height: auto;
  overflow: auto
}

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

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

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

.breadcrumb {
  padding: 10px 64px 10px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .breadcrumb {
    padding: 2vw 3vw 10px
  }
}

@media only screen and (max-width:640px) {
  .breadcrumb {
    padding: 1vw 4vw 10px
  }
}

.breadcrumb-nav_lists {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap
}

.breadcrumb-nav_lists__item,
.breadcrumb-nav_lists__item a span {
  font-size: 12px
}

@media(min-width: 48014px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-size: 14px;
    font-size: calc(-0.0000427954*100vw + 14.0547781059px)
  }
}

@media(min-width: 1280px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-size: 14px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-weight: 300;
    font-size: 14px
  }
}

@media only screen and (max-width:640px)and (min-width: 375px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-size: calc(0.0373333333*100vw + 0px)
  }
}

@media only screen and (max-width:640px)and (min-width: 750px) {

  .breadcrumb-nav_lists__item,
  .breadcrumb-nav_lists__item a span {
    font-size: 28px
  }
}

.breadcrumb-nav_lists__item {
  padding-right: 1.2em;
  margin-right: 1em;
  margin-bottom: 10px
}

@media only screen and (max-width:640px) {
  .breadcrumb-nav_lists__item {
    padding-right: 3vw;
    margin-right: 3vw;
    margin-bottom: 2px
  }
}

.breadcrumb-nav_lists__item:last-child span {
  text-decoration: none
}

.breadcrumb-nav_lists__item br {
  display: none
}

.breadcrumb-nav_lists__item span {
  font-size: inherit;
  color: inherit
}

.breadcrumb-nav_lists__item a {
  font-size: inherit;
  position: relative
}

.breadcrumb-nav_lists__item a::before {
  content: "＞";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(50%, -50%);
  vertical-align: middle;
  line-height: 1;
  font-size: inherit
}

@media only screen and (max-width:640px) {
  .breadcrumb-nav_lists__item a::before {
    right: -3vw
  }
}

.breadcrumb-nav_lists__item a span {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  text-decoration: underline;
  cursor: pointer
}

.breadcrumb-nav_lists__item a:hover span {
  opacity: .5
}

.breadcrumb-nav_lists__item:last-child a {
  text-decoration: none
}

.breadcrumb-nav_lists__item:last-child a::before {
  content: none
}

.count-2 {
  column-count: 2;
  column-gap: 50px
}

@media only screen and (max-width:640px) {
  .count-2 {
    column-count: 1
  }
}

.count-3 {
  column-count: 3;
  column-gap: 30px
}

@media only screen and (max-width:640px) {
  .count-3 {
    column-count: 1
  }
}

.count-4 {
  column-count: 4;
  column-gap: 20px
}

@media only screen and (max-width:640px) {
  .count-4 {
    column-count: 1
  }
}

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

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

.flex-start {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start
}

.flex-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end
}

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

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0
}

@media(min-width: 375px) {

  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  font,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td {
/*font-size: 20px;
font-size: calc(0.0045977011*100vw + 12.275862069px)*/
  }
}

@media(min-width: 1680px) {

  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  font,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td {
/*font-size: 20px*/
  }
}

div,
a,
ul,
li {
/*line-height: 1*/
}

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

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 500
}

.is-sns_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px
}

@media only screen and (max-width:640px) {
  .is-sns_content {
    gap: 20px
  }
}

@media only screen and (max-width:640px) {
  .is-sns_content-btn {
    width: 32px
  }
}

.is-sns_content-btn img {
  width: 100%
}

.is-contact-us_lists {
  display: flex;
  justify-content: center;
  position: relative
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists {
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw)
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    display: block
  }
}

.is-contact-us_lists:before {
  content: "";
  width: 100vw;
  height: 1px;
  background: #919191;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.is-contact-us_lists__item {
  width: 50%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item {
    width: 100%
  }
}

.is-contact-us_lists__item:not(:first-child) {
  border-left: 1px solid #919191
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item:not(:first-child) {
    border-left: 0;
    border-top: 1px solid #919191
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item:not(:first-child) {
    border-left: 0;
    border-top: 1px solid #919191
  }
}

.is-contact-us_lists__item-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 45px 0;
  position: relative
}

@media(min-width: 480px) {
  .is-contact-us_lists__item-title {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item-title {
    font-size: 24px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item-title {
    padding: 22px 0
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item-title {
    padding: 22px 0
  }
}

.is-contact-us_lists__item-title:before {
  content: "";
  width: 100vw;
  height: 1px;
  background: #919191;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)
}

.is-contact-us_lists__item .content {
  padding: 40px 96px 64px
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-contact-us_lists__item .content {
    padding: 40px 46px 50px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content {
    padding: 30px 11vw 40px
  }
}

.is-contact-us_lists__item .content .contact_lists__item .btn {
  height: 86px;
  padding: 0 42px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn {
    padding: 0 24px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn {
    height: 76px;
    width: 60%
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn {
    height: 55px;
    width: 100%;
    padding: 0 10vw
  }
}

.is-contact-us_lists__item .content .contact_lists__item .btn i {
  width: 41px
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn i {
    width: 36px
  }
}

.is-contact-us_lists__item .content .contact_lists__item .btn .text {
  font-size: 14px;
  margin-left: 1.2vw;
  font-weight: 700
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text {
    font-size: 20px;
    font-size: calc(0.0075*100vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text {
    margin-left: 3.2vw
  }
}

.is-contact-us_lists__item .content .contact_lists__item .btn .text-en {
  font-size: 17px;
  font-weight: 600
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text-en {
    font-size: 28px;
    font-size: calc(0.01375*100vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text-en {
    font-size: 28px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-contact-us_lists__item .content .contact_lists__item .btn .text-en {
    font-size: 24px
  }
}

.is-contact-us_lists__item .content .contact_lists__item .btn .arrow {
  width: 8px;
  right: 27px
}

.is-contact-us_lists__item .content .info_lists__item {
  margin-top: 50px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item .content .info_lists__item {
    margin-top: 36px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .info_lists__item {
    margin-top: 28px
  }
}

.is-contact-us_lists__item .content .info_lists__item .title {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .info_lists__item .title {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .info_lists__item .title {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item .content .info_lists__item .title {
    padding-bottom: 16px;
    margin-bottom: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .info_lists__item .title {
    padding-bottom: 12px;
    margin-bottom: 12px
  }
}

.is-contact-us_lists__item .content .info_lists__item .title:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #4a4a4a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)
}

.is-contact-us_lists__item .content .info_lists__item .text {
  font-size: 13px;
  text-align: center;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .info_lists__item .text {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .info_lists__item .text {
    font-size: 18px
  }
}

.is-contact-us_lists__item .content .info_lists__item .text small {
  display: block;
  font-size: inherit
}

.is-contact-us_lists__item .content .info_lists__item .text .address {
  font-size: inherit;
  text-decoration: underline
}

.is-contact-us_lists__item .content .info_lists__item .text .link {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: #0f67ae;
  text-decoration: underline
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .info_lists__item .text .link {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .info_lists__item .text .link {
    font-size: 16px
  }
}

.is-contact-us_lists__item .content .administrator {
  margin-top: 40px;
  font-size: 14px;
  text-align: center
}

@media(min-width: 480px) {
  .is-contact-us_lists__item .content .administrator {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-contact-us_lists__item .content .administrator {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-contact-us_lists__item .content .administrator {
    margin-top: 30px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-us_lists__item .content .administrator {
    margin-top: 24px
  }
}

.footer {
  position: relative;
  padding: 35px 0;
  background: #13354f
}

@media only screen and (max-width:640px) {
  .footer {
    padding: 23px 0 78px
  }
}

.footer_navi_lists {
  justify-content: center;
  flex-wrap: wrap
}

.footer_navi_lists__item {
  position: relative
}

.footer_navi_lists__item:not(:first-child) {
  margin-left: 20px;
  padding-left: 20px
}

@media only screen and (max-width:640px) {
  .footer_navi_lists__item:not(:first-child) {
    margin-left: 16px;
    padding-left: 16px
  }
}

.footer_navi_lists__item:not(:first-child):before {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0
}

.footer_navi_lists__item a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em
}

@media(min-width: 375px) {
  .footer_navi_lists__item a {
    font-size: 18px;
    font-size: calc(0.0045977011*100vw + 10.275862069px)
  }
}

@media(min-width: 1680px) {
  .footer_navi_lists__item a {
    font-size: 18px
  }
}

.footer_copy {
  margin-top: 24px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 10px;
  font-weight: 700
}

@media(min-width: 375px) {
  .footer_copy {
    font-size: 14px;
    font-size: calc(0.0030651341*100vw + 8.8505747126px)
  }
}

@media(min-width: 1680px) {
  .footer_copy {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .footer_copy {
    margin-top: 18px
  }
}

.is-premium .is-sns {
  display: none
}

.is-premium .is-contact-us {
  background: rgba(9, 30, 46, .96)
}

.is-premium .is-contact-us .ttl-primary .en {
  color: #fff
}

.is-premium .is-contact-us .ttl-primary .jp {
  color: #fff
}

.is-premium .is-contact-us .ttl-primary .jp:before {
  background: #fff
}

.is-premium .is-contact-us .is-contact-us_lists__item-title {
  color: #fff
}

.is-premium .is-contact-us .contact_lists__item .btn {
  background: #b2a15f
}

.is-premium .is-contact-us .info_lists__item .title {
  color: #fff
}

.is-premium .is-contact-us .info_lists__item .title:before {
  background: #fff
}

.is-premium .is-contact-us .info_lists__item .text {
  color: #fff
}

.is-premium .is-contact-us .info_lists__item .text .en {
  color: #fff
}

.is-premium .is-contact-us .info_lists__item .text .address,
.is-premium .is-contact-us .info_lists__item .text .link {
  color: #fff
}

.is-premium .is-contact-us .administrator {
  color: #fff
}

.header {
  width: 100%;
  display: block;
  background: #fff;
  position: fixed;
  z-index: 30000
}

.header-wrap {
  padding: 0 0 0 42px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .header-wrap {
    padding: 0 0 0 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .header-wrap {
    height: 80px
  }
}

@media only screen and (max-width:640px) {
  .header-wrap {
    height: 48px;
    padding: 0 0 0 3vw
  }
}

.header-wrap .logo {
  display: flex;
  align-items: center
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .header-wrap .logo {
    width: auto
  }
}

@media only screen and (max-width:640px) {
  .header-wrap .logo {
    width: auto
  }
}

.header-wrap .logo a {
  width: 142px;
  position: relative;
  z-index: 30000
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .header-wrap .logo a {
    width: 140px
  }
}

@media only screen and (max-width:640px) {
  .header-wrap .logo a {
    width: 21vw
  }
}

.header-wrap .logo a img {
  margin: 0
}

.header-wrap .logo-tagline {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  margin-left: 28px
}

@media(min-width: 480px) {
  .header-wrap .logo-tagline {
    font-size: 13px;
    font-size: calc(0.00375*100vw + 8.2px)
  }
}

@media(min-width: 1280px) {
  .header-wrap .logo-tagline {
    font-size: 13px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .header-wrap .logo-tagline {
    margin-left: 20px
  }
}

@media only screen and (max-width:640px) {
  .header-wrap .logo-tagline {
    margin-left: 4vw
  }
}

@media only screen and (min-width:780px) {
  .pc {
    display: block !important
  }

  .sp {
    display: none !important
  }

  .tb {
    display: none !important
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .pc {
    display: none !important
  }

  .sp {
    display: none !important
  }

  .tb {
    display: block !important
  }
}

@media only screen and (max-width:640px) {
  body {
    -webkit-text-size-adjust: 100%
  }

  .pc {
    display: none !important
  }

  .tb {
    display: none !important
  }

  .sp {
    display: block !important
  }
}

.wrapper {
  width: 84.5%;
  max-width: 1420px;
  margin: 0 auto;
  position: relative
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .wrapper {
    width: 88%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .wrapper {
    width: 92%
  }
}

@media only screen and (max-width:640px) {
  .wrapper {
    width: 92%
  }
}

.wrapper-m {
  max-width: 1200px
}

.wrapper-s {
  max-width: 1000px
}

.window_wrap {
  width: calc(100% - 30vw);
  max-width: 1020px;
  margin: 0 auto;
  position: relative
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .window_wrap {
    width: 88%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .window_wrap {
    width: 90%
  }
}

@media only screen and (max-width:640px) {
  .window_wrap {
    width: 90%
  }
}

.wrap-sec {
  margin-bottom: 180px
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .wrap-sec {
    margin-bottom: 120px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .wrap-sec {
    margin-bottom: 140px
  }
}

@media only screen and (max-width:640px) {
  .wrap-sec {
    margin-bottom: 120px
  }
}

.icon-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  display: block
}

@media only screen and (max-width:640px) {
  .icon-arrow {
    width: 30px;
    height: 30px
  }
}

.icon-arrow::before {
  position: absolute;
  top: 53%;
  left: 50%;
  text-align: center;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-style: normal
}

@media only screen and (max-width:640px) {
  .icon-arrow::before {
    left: 50%
  }
}

.icon-arrow-right::before {
  content: ""
}

.icon-arrow-bottom::before {
  content: ""
}

.icon-arrow-orange::before {
  color: #0f67ae
}

.icon-arrow-blue::before {
  color: #1d3751
}

.icon-arrow-wh {
  background: #0f67ae
}

.icon-arrow-wh::before {
  color: #fff
}

.icon-arrow-wh_gray {
  background: #fff
}

.icon-arrow-wh_gray::before {
  color: #d0d1d6
}

.icon-arrow-gray {
  background: #d0d1d6
}

.icon-arrow-gray::before {
  color: #fff
}

.icon-plus {
  width: 36px;
  height: 36px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  display: block
}

@media only screen and (max-width:640px) {
  .icon-plus {
    width: 32px;
    height: 32px
  }
}

.icon-plus::before {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  content: "+";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-style: normal
}

.icon-plus-gray {
  background: #d0d1d6
}

.icon-plus-gray::before {
  color: #fff
}

.primary_btn {
  width: 512px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px
}

@media only screen and (max-width:640px) {
  .primary_btn {
    width: 100%;
    margin-top: 30px
  }
}

.primary_btn :is(a,.btn) {
  all: unset;
cursor: pointer;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 700;
  background: #0f67ae;
  background: linear-gradient(to bottom, #1481d8, #0c67b0);
  border-radius: 3px;
  letter-spacing: .2em;
  position: relative
}

@media(min-width: 480px) {
  .primary_btn :is(a,.btn) {
    font-size: 20px;
    font-size: calc(0.0075*100vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .primary_btn :is(a,.btn) {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .primary_btn :is(a,.btn) {
    border-radius: 2px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .primary_btn :is(a,.btn) {
    min-width: auto
  }
}

@media only screen and (max-width:640px) {
  .primary_btn :is(a,.btn) {
    width: 90%;
    padding: 4.6vw 0;
    min-width: auto
  }
}

.primary_btn :is(a,.btn) .arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 8px
}

@media only screen and (max-width:640px) {
  .primary_btn :is(a,.btn) .arrow {
    width: 6px;
    right: 16px
  }
}

.primary_btn :is(a,.btn) .arrow svg {
  width: 100%
}

.primary_btn :is(a,.btn) .arrow svg path {
  fill: #fff
}

.primary_btn-toggle {
  width: 200px
}

.primary_btn-toggle :is(a,.btn) {
  padding: 10px 0;
  font-size: 13px;
  position: relative
}

@media(min-width: 480px) {
  .primary_btn-toggle :is(a,.btn) {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .primary_btn-toggle :is(a,.btn) {
    font-size: 16px
  }
}

.primary_btn-toggle :is(a,.btn) .toggle {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%)
}

@media only screen and (max-width:640px) {
  .primary_btn-toggle :is(a,.btn) .toggle {
    width: 12px;
    height: 12px
  }
}

.primary_btn-toggle :is(a,.btn) .toggle::before,
.primary_btn-toggle :is(a,.btn) .toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff
}

.primary_btn-toggle :is(a,.btn) .toggle::before {
  width: 100%;
  height: 1px
}

.primary_btn-toggle :is(a,.btn) .toggle::after {
  width: 1px;
  height: 100%
}

.primary_btn.is-open .toggle::after {
  transform: rotate(90deg);
  opacity: 0
}

.primary_btn-ye a {
  background: #b2a15f
}

.sbs {
  font-size: 0
}

.sbs li {
  display: inline-block;
  vertical-align: top
}

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

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

.box-link:hover {
  cursor: pointer
}

.ttl-primary {
  position: relative;
  text-align: center;
  margin-bottom: 70px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-primary {
    margin-bottom: 50px
  }
}

@media only screen and (max-width:640px) {
  .ttl-primary {
    margin-bottom: 30px
  }
}

.ttl-primary .en {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .2em;
  display: block;
  text-transform: uppercase
}

@media(min-width: 375px) {
  .ttl-primary .en {
    font-size: 24px;
    font-size: calc(0.0068965517*100vw + 12.4137931034px)
  }
}

@media(min-width: 1680px) {
  .ttl-primary .en {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .ttl-primary .en {
    font-size: 15px
  }
}

.ttl-primary .jp {
  position: relative;
  display: block;
  margin-top: 24px;
  padding-top: 22px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f67ae
}

@media(min-width: 375px) {
  .ttl-primary .jp {
    font-size: 50px;
    font-size: calc(0.014559387*100vw + 25.5402298851px)
  }
}

@media(min-width: 1680px) {
  .ttl-primary .jp {
    font-size: 50px
  }
}

@media only screen and (max-width:640px) {
  .ttl-primary .jp {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 31px
  }
}

.ttl-primary .jp::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #0e243b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-primary .jp::before {
    width: 65px
  }
}

@media only screen and (max-width:640px) {
  .ttl-primary .jp::before {
    width: 30px
  }
}

.ttl-primary-vertical .en {
  display: block
}

.ttl-primary-vertical .jp {
  display: block
}

.ttl-primary-wh .en {
  color: #fff
}

.ttl-primary-wh .jp {
  color: #fff
}

.ttl-primary-wh .jp::before {
  background: #fff
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-primary.sp-small .en {
    display: block
  }
}

@media only screen and (max-width:640px) {
  .ttl-primary.sp-small .en {
    font-size: 48px
  }
}

@media only screen and (max-width:640px)and (min-width: 375px) {
  .ttl-primary.sp-small .en {
    font-size: calc(0.128*100vw + 0px)
  }
}

@media only screen and (max-width:640px)and (min-width: 750px) {
  .ttl-primary.sp-small .en {
    font-size: 96px
  }
}

.ttl-secondary {
  text-align: center;
  font-size: 25px;
  line-height: 1.2;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 64px
}

@media(min-width: 375px) {
  .ttl-secondary {
    font-size: 40px;
    font-size: calc(0.0114942529*100vw + 20.6896551724px)
  }
}

@media(min-width: 1680px) {
  .ttl-secondary {
    font-size: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .ttl-secondary {
    margin-bottom: 50px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-secondary {
    margin-bottom: 30px
  }
}

@media only screen and (max-width:640px) {
  .ttl-secondary {
    padding-bottom: 24px;
    margin-bottom: 30px
  }
}

.ttl-secondary::before {
  content: "";
  width: 56px;
  height: 5px;
  background: #007abe;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .ttl-secondary::before {
    width: 40px;
    height: 3px
  }
}

.ttl-secondary-wh {
  color: #fff
}

.ttl-secondary small {
  font-size: 18px;
  display: block;
  line-height: 1.2;
  margin-top: 16px
}

@media(min-width: 375px) {
  .ttl-secondary small {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .ttl-secondary small {
    font-size: 27px
  }
}

.ttl-thirdly {
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaecef;
  position: relative
}

@media(min-width: 375px) {
  .ttl-thirdly {
    font-size: 36px;
    font-size: calc(0.0107279693*100vw + 17.9770114943px)
  }
}

@media(min-width: 1680px) {
  .ttl-thirdly {
    font-size: 36px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .ttl-thirdly {
    padding-bottom: 24px;
    margin-bottom: 24px
  }
}

@media only screen and (max-width:640px) {
  .ttl-thirdly {
    padding-bottom: 18px;
    margin-bottom: 18px
  }
}

.ttl-thirdly-wh {
  color: #fff
}

.ttl-thirdly.pattern01 {
  margin-bottom: 34px;
  padding-bottom: 0
}

@media only screen and (max-width:640px) {
  .ttl-thirdly.pattern01 {
    margin-bottom: 24px
  }
}

.ttl-thirdly.pattern02 {
  padding-bottom: 60px;
  margin-bottom: 50px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-thirdly.pattern02 {
    padding-bottom: 32px;
    margin-bottom: 32px
  }
}

@media only screen and (max-width:640px) {
  .ttl-thirdly.pattern02 {
    padding-bottom: 24px;
    margin-bottom: 24px
  }
}

.ttl-thirdly-s {
  padding-bottom: 26px;
  margin-bottom: 0;
  border-bottom: 0;
  text-align: left
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-thirdly-s {
    padding-bottom: 20px
  }
}

@media only screen and (max-width:640px) {
  .ttl-thirdly-s {
    padding-bottom: 20px
  }
}

.ttl-thirdly-s .jp {
  font-size: 22px;
  line-height: 1.2
}

@media(min-width: 375px) {
  .ttl-thirdly-s .jp {
    font-size: 36px;
    font-size: calc(0.0107279693*100vw + 17.9770114943px)
  }
}

@media(min-width: 1680px) {
  .ttl-thirdly-s .jp {
    font-size: 36px
  }
}

.ttl-thirdly-s .en {
  display: inline-block;
  margin-left: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-weight: 500;
  font-size: 13px
}

@media(min-width: 375px) {
  .ttl-thirdly-s .en {
    font-size: 20px;
    font-size: calc(0.0053639847*100vw + 10.9885057471px)
  }
}

@media(min-width: 1680px) {
  .ttl-thirdly-s .en {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-thirdly-s .en {
    margin-left: 8px
  }
}

@media only screen and (max-width:640px) {
  .ttl-thirdly-s .en {
    display: block;
    margin-top: 8px;
    margin-left: 0
  }
}

.ttl-thirdly-s-center {
  text-align: center
}

.ttl-quaternary {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5
}

@media(min-width: 375px) {
  .ttl-quaternary {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .ttl-quaternary {
    font-size: 27px
  }
}

@media only screen and (max-width:640px) {
  .ttl-quaternary {
    margin-bottom: 12px
  }
}

.ttl-quaternary-center {
  text-align: center
}

.ttl-fifth {
  font-size: 20px;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #1d3751;
  border-bottom: 1px solid #1d3751;
  line-height: 1.77;
  margin-bottom: 64px
}

@media(min-width: 375px) {
  .ttl-fifth {
    font-size: 36px;
    font-size: calc(0.0122605364*100vw + 15.4022988506px)
  }
}

@media(min-width: 1680px) {
  .ttl-fifth {
    font-size: 36px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ttl-fifth {
    padding: 30px 0;
    margin-bottom: 50px
  }
}

@media only screen and (max-width:640px) {
  .ttl-fifth {
    line-height: 1.6;
    padding: 24px 0;
    margin-bottom: 32px
  }
}

.ac_lists .acMenu {
  position: relative
}

.ac_lists .acMenu dt {
  line-height: 80px;
  font-size: 14px;
  font-weight: 500
}

@media(min-width: 375px) {
  .ac_lists .acMenu dt {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .ac_lists .acMenu dt {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .ac_lists .acMenu dt {
    line-height: 30px
  }
}

@media only screen and (max-width:640px) {
  .ac_lists .acMenu dt {
    line-height: normal;
    font-weight: 500
  }
}

.ac_lists .acMenu dt:hover {
  cursor: pointer
}

.ac_lists .acMenu dt span {
  display: block;
  line-height: 1.65;
  position: relative
}

.ac_lists .acMenu dd {
  width: 100%;
  display: none;
  line-height: 1.65;
  background: #fff
}

.is-archives_lists__item {
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  height: auto;
  display: flex;
  flex-direction: column
}

@media only screen and (max-width:640px) {
  .is-archives_lists__item {
    border-radius: 3px
  }
}

.is-archives_lists__item a {
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.is-archives_lists__item a .img {
  display: block;
  height: 354px;
  background: center/cover no-repeat
}

@media only screen and (max-width:640px) {
  .is-archives_lists__item a .img {
    height: 202px
  }
}

.is-archives_lists__item a .content {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  flex-grow: 1
}

@media only screen and (max-width:640px) {
  .is-archives_lists__item a .content {
    padding: 4vw
  }
}

.is-archives_lists__item a .content .title-sub,
.is-archives_lists__item a .content .title-main {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin-bottom: 6px
}

@media(min-width: 480px) {

  .is-archives_lists__item a .content .title-sub,
  .is-archives_lists__item a .content .title-main {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {

  .is-archives_lists__item a .content .title-sub,
  .is-archives_lists__item a .content .title-main {
    font-size: 18px
  }
}

.is-archives_lists__item a .content .title-main {
  font-weight: 700
}

.is-archives_lists__item a .content .price {
  margin-block: 20px 10px;
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 480px) {
  .is-archives_lists__item a .content .price {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-archives_lists__item a .content .price {
    font-size: 16px
  }
}

.is-archives_lists__item a .content .price span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.is-archives_lists__item a .content .arrow {
  margin-top: auto;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: auto;
  border: 1px solid #0f67ae;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .is-archives_lists__item a .content .arrow {
    border-radius: 2px
  }
}

.is-archives_lists__item a .content .arrow svg {
  width: 8px;
  height: auto
}

.is-archives_lists__item a .content .arrow svg path {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.is-archives_lists__item:hover {
  filter: drop-shadow(2px 10px 10px rgba(57, 57, 57, 0.4))
}

.is-archives_lists__item:hover .content {
  background: #1d3751
}

.is-archives_lists__item:hover .content .title-sub,
.is-archives_lists__item:hover .content .title-main {
  color: #fff
}

.is-archives_lists__item:hover .content .price {
  color: #fff
}

.is-archives_lists__item:hover .content .arrow {
  border: 1px solid #fff
}

.is-archives_lists__item:hover .content .arrow svg path {
  fill: #fff
}

.is-archives_lists.is-small .is-archives_lists__item .img {
  height: 170px
}

@media only screen and (max-width:640px) {
  .is-archives_lists.is-small .is-archives_lists__item .img {
    height: 85px
  }
}

@media only screen and (max-width:640px) {
  .is-archives_lists.is-small .is-archives_lists__item .content {
    padding: 3vw
  }
}

@media only screen and (max-width:640px) {
  .is-archives_lists.is-small .is-archives_lists__item .content .arrow {
    margin-top: -30px
  }
}

.is-archives_lists.is-small .is-archives_lists__item:hover .content {
  background: #1d3751
}

.is-archives_lists.is-gray .is-archives_lists__item .content {
  background: #f5f5f5
}

.article-clm .no-post {
  font-size: 18px;
  font-weight: 600;
  margin: 100px 0
}

@media(min-width: 375px) {
  .article-clm .no-post {
    font-size: 18px;
    font-size: calc(0*100vw + 18px)
  }
}

@media(min-width: 1680px) {
  .article-clm .no-post {
    font-size: 18px
  }
}

.article-clm_lists__item {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.article-clm_lists__item .thumb {
  position: relative
}

.article-clm_lists__item .thumb img {
  width: 100%;
  display: block;
  font-size: 0
}

.article-clm_lists-1 .clm_item {
  width: 100%
}

.article-clm_lists-2 {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -40px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-2 {
    margin-bottom: -32px
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-2 {
    margin-bottom: -20px
  }
}

.article-clm_lists-2 .clm_item {
  position: relative;
  width: calc((100% - 40px)/2);
  margin: 0 40px 40px 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-2 .clm_item {
    width: 100%;
    margin: 0 auto 32px
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-2 .clm_item {
    width: 100%;
    margin: 0 auto 20px
  }
}

.article-clm_lists-2 .clm_item:nth-of-type(2n) {
  margin-right: 0 !important
}

.article-clm_lists-2 .clm_item.card-2clm_lists__item .img {
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .article-clm_lists-2 .clm_item.card-2clm_lists__item .img {
    border-radius: 5px
  }
}

.article-clm_lists-2 .clm_item.card-2clm_lists__item .title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  text-align: center
}

.article-clm_lists-2 .clm_item.card-2clm_lists__item .title .text {
  font-size: 18px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, .5)
}

@media(min-width: 375px) {
  .article-clm_lists-2 .clm_item.card-2clm_lists__item .title .text {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .article-clm_lists-2 .clm_item.card-2clm_lists__item .title .text {
    font-size: 27px
  }
}

.article-clm_lists-2 .clm_item.card-2clm_lists__item .title .arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%)
}

@media only screen and (max-width:640px) {
  .article-clm_lists-2 .clm_item.card-2clm_lists__item .title .arrow {
    right: 5vw
  }
}

.article-clm_lists-2.ordered_lists {
  align-items: stretch
}

.article-clm_lists-2.ordered_lists .ordered_lists__item {
  background-color: #fff;
  padding: 37px 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item {
    padding: 3vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item {
    padding: 3vw 6vw
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item {
    padding: 5vw 6vw;
    border-radius: 5px
  }
}

.article-clm_lists-2.ordered_lists .ordered_lists__item .en {
  font-size: 22px;
  font-weight: 500;
  color: #007abe;
  width: 10%
}

@media(min-width: 375px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item .en {
    font-size: 36px;
    font-size: calc(0.0107279693*100vw + 17.9770114943px)
  }
}

@media(min-width: 1680px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item .en {
    font-size: 36px
  }
}

.article-clm_lists-2.ordered_lists .ordered_lists__item .jp {
  width: 90%;
  line-height: 1.5;
  font-size: 18px
}

@media(min-width: 375px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item .jp {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .article-clm_lists-2.ordered_lists .ordered_lists__item .jp {
    font-size: 27px
  }
}

.article-clm_lists-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-3 {
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
    /*margin-bottom: -32px*/
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-3 {
  grid-template-columns: 1fr;
  gap: 20px;
    /*align-items: stretch;
    margin-bottom: -20px*/
  }
}

.article-clm_lists-3 .clm_item {
  /*width: calc((100% - 80px)/3);
  margin: 0 40px 40px 0*/
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-3 .clm_item {
    width: calc(50% - 16px);
    margin-right: 32px;
    margin-bottom: 32px
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item {
    /*width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 16px*/
  }
}
/*
.article-clm_lists-3 .clm_item:nth-of-type(3n) {
  margin-right: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-3 .clm_item:nth-of-type(3n) {
    margin-right: 32px
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item:nth-of-type(3n) {
    margin-right: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-3 .clm_item:nth-of-type(2n) {
    margin-right: 0
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item:nth-of-type(2n) {
    margin-right: 0
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item.list-3clm_lists__item {
    width: 100%;
    margin: 0 auto 20px
  }
}*/

.article-clm_lists-4 {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 20px
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .article-clm_lists-4 {
    gap: 40px 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-4 {
    gap: 24px
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-4 {
    gap: 12px
  }
}

.article-clm_lists-4 .clm_item {
  width: calc((100% - 60px)/4)
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .article-clm_lists-4 .clm_item {
    width: calc((100% - 40px)/3)
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article-clm_lists-4 .clm_item {
    width: calc((100% - 24px)/2)
  }
}

@media only screen and (max-width:640px) {
  .article-clm_lists-4 .clm_item {
    width: calc((100% - 12px)/2)
  }
}

.is-faq_lists__items {
  margin-bottom: 40px;
  border-radius: 10px;
  background: #fff
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items {
    margin-bottom: 20px;
    border-radius: 5px
  }
}

.is-faq_lists__items:last-child {
  margin-bottom: 0
}

.is-faq_lists__items dl {
  padding: 64px 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-faq_lists__items dl {
    padding: 40px 50px
  }
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items dl {
    padding: 6vw
  }
}

.is-faq_lists__items dl dt .inner,
.is-faq_lists__items dl dd .inner {
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.is-faq_lists__items dl dt .inner .en,
.is-faq_lists__items dl dd .inner .en {
  font-size: 20px;
  color: #007abe;
  font-weight: 600;
  margin-right: 32px
}

@media(min-width: 375px) {

  .is-faq_lists__items dl dt .inner .en,
  .is-faq_lists__items dl dd .inner .en {
    font-size: 35px;
    font-size: calc(0.0114942529*100vw + 15.6896551724px)
  }
}

@media(min-width: 1680px) {

  .is-faq_lists__items dl dt .inner .en,
  .is-faq_lists__items dl dd .inner .en {
    font-size: 35px
  }
}

@media only screen and (max-width:640px) {

  .is-faq_lists__items dl dt .inner .en,
  .is-faq_lists__items dl dd .inner .en {
    margin-right: 14px
  }
}

.is-faq_lists__items dl dt .inner .text,
.is-faq_lists__items dl dd .inner .text {
  width: 86%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.818
}

@media(min-width: 375px) {

  .is-faq_lists__items dl dt .inner .text,
  .is-faq_lists__items dl dd .inner .text {
    font-size: 22px;
    font-size: calc(0.0053639847*100vw + 12.9885057471px)
  }
}

@media(min-width: 1680px) {

  .is-faq_lists__items dl dt .inner .text,
  .is-faq_lists__items dl dd .inner .text {
    font-size: 22px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-faq_lists__items dl dt .inner .text,
  .is-faq_lists__items dl dd .inner .text {
    width: 82%
  }
}

@media only screen and (max-width:640px) {

  .is-faq_lists__items dl dt .inner .text,
  .is-faq_lists__items dl dd .inner .text {
    width: 82%;
    line-height: 1.6
  }
}

.is-faq_lists__items dl dt {
  position: relative
}

.is-faq_lists__items dl dt:hover {
  cursor: pointer
}

.is-faq_lists__items dl dt .toggle {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items dl dt .toggle {
    width: 18px;
    height: 18px;
    right: -2vw
  }
}

.is-faq_lists__items dl dt .toggle::before,
.is-faq_lists__items dl dt .toggle::after {
  position: absolute;
  content: "";
  background: #007abe;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  z-index: 1;
  border-radius: 10px
}

.is-faq_lists__items dl dt .toggle::before {
  width: 98%;
  height: 3px
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items dl dt .toggle::before {
    height: 2px
  }
}

.is-faq_lists__items dl dt .toggle::after {
  width: 3px;
  height: 98%
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items dl dt .toggle::after {
    width: 2px
  }
}

.is-faq_lists__items dl dt.active .toggle {
  transform: translateY(-50%) rotate(90deg)
}

.is-faq_lists__items dl dt.active .toggle::before {
  opacity: 0
}

.is-faq_lists__items dl dd .inner {
  margin-top: 45px;
  padding-top: 32px;
  position: relative
}

@media only screen and (max-width:640px) {
  .is-faq_lists__items dl dd .inner {
    margin-top: 24px;
    padding-top: 20px
  }
}

.is-faq_lists__items dl dd .inner::before {
  content: "";
  background: #eaecef;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.is-faq_lists__items dl dd .inner .text {
  font-weight: 500
}

.is-faq_lists__items dl dd .inner .text a {
  font-size: inherit;
  color: #007abe;
  text-decoration: underline
}

.is-page-lower.is-faq .is-faq_lists__items dl,
.is-page-lower.is-history .is-faq_lists__items dl,
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists__items dl {
  padding: 40px 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-page-lower.is-faq .is-faq_lists__items dl,
  .is-page-lower.is-history .is-faq_lists__items dl,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists__items dl {
    padding: 40px 50px
  }
}

@media only screen and (max-width:640px) {

  .is-page-lower.is-faq .is-faq_lists__items dl,
  .is-page-lower.is-history .is-faq_lists__items dl,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists__items dl {
    padding: 6vw
  }
}

.is-page-lower.is-faq .is-faq_lists__items dl dd .inner,
.is-page-lower.is-history .is-faq_lists__items dl dd .inner,
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists__items dl dd .inner {
  margin-top: 35px;
  padding-top: 28px
}

@media only screen and (max-width:640px) {

  .is-page-lower.is-faq .is-faq_lists__items dl dd .inner,
  .is-page-lower.is-history .is-faq_lists__items dl dd .inner,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists__items dl dd .inner {
    margin-top: 18px;
    padding-top: 20px
  }
}

.is-page-lower.is-faq .is-faq-contact_lists,
.is-page-lower.is-history .is-faq-contact_lists,
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists {
  flex-wrap: wrap;
  justify-content: space-between
}

.is-page-lower.is-faq .is-faq-contact_lists li,
.is-page-lower.is-history .is-faq-contact_lists li,
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li {
  width: calc((100% - 32px)/3);
  margin-top: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-page-lower.is-faq .is-faq-contact_lists li,
  .is-page-lower.is-history .is-faq-contact_lists li,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li {
    width: calc((100% - 16px)/2)
  }
}

@media only screen and (max-width:640px) {

  .is-page-lower.is-faq .is-faq-contact_lists li,
  .is-page-lower.is-history .is-faq-contact_lists li,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li {
    width: 100%;
    margin-top: 12px
  }
}

.is-page-lower.is-faq .is-faq-contact_lists li:nth-of-type(n+4),
.is-page-lower.is-history .is-faq-contact_lists li:nth-of-type(n+4),
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li:nth-of-type(n+4) {
  margin-top: 16px
}

@media only screen and (max-width:640px) {

  .is-page-lower.is-faq .is-faq-contact_lists li:nth-of-type(n+4),
  .is-page-lower.is-history .is-faq-contact_lists li:nth-of-type(n+4),
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li:nth-of-type(n+4) {
    margin-top: 12px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-page-lower.is-faq .is-faq-contact_lists li:nth-of-type(n+3),
  .is-page-lower.is-history .is-faq-contact_lists li:nth-of-type(n+3),
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li:nth-of-type(n+3) {
    margin-top: 16px
  }
}

.is-page-lower.is-faq .is-faq-contact_lists li a,
.is-page-lower.is-history .is-faq-contact_lists li a,
.is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li a {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  height: 80px;
  line-height: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-page-lower.is-faq .is-faq-contact_lists li a,
  .is-page-lower.is-history .is-faq-contact_lists li a,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li a {
    height: 70px;
    line-height: 70px
  }
}

@media only screen and (max-width:640px) {

  .is-page-lower.is-faq .is-faq-contact_lists li a,
  .is-page-lower.is-history .is-faq-contact_lists li a,
  .is-page-lower.is-adhesives-and-sealants-solutions .is-faq-contact_lists li a {
    height: 48px;
    line-height: 48px
  }
}

.is-page-lower.is-adhesives-and-sealants-solutions .is-faq_lists .inner {
  display: block
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-100%)
  }
}

.loopslider_wrap {
  display: flex;
  overflow: hidden
}

.loopslider_lists {
  display: flex;
  list-style: none
}

.loopslider_lists-left {
  animation: infinity-scroll-left 45s infinite linear .5s both
}

.loopslider_lists__item {
  width: 22.2222222222vw;
  margin-right: 30px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .loopslider_lists__item {
    width: 33.3333333333vw
  }
}

@media only screen and (max-width:640px) {
  .loopslider_lists__item {
    width: 55.5555555556vw;
    margin-right: 20px
  }
}

.loopslider_lists__item>img {
  width: 100%
}

.modal {
  width: 100%;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55000
}

.modal_btn {
  width: 320px;
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 100
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .modal_btn {
    bottom: 13vh
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .modal_btn {
    bottom: 15vh
  }
}

@media only screen and (max-width:640px) {
  .modal_btn {
    width: 50%;
    bottom: 35vw;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }
}

.modal_btn .img {
  position: relative
}

.modal_btn .img::before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, .6);
  position: absolute;
  top: 0;
  left: 0
}

.modal_bg {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .8);
  position: absolute
}

.modal_content {
  width: 90%;
  max-width: 980px;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.modal_content-has_bg {
  height: auto;
  max-height: 80vh;
  padding: 60px;
  overflow: scroll;
  background: #fff
}

@media only screen and (max-width:640px) {
  .modal_content-has_bg {
    padding: 8%
  }
}

.modal_content-has_img img {
  width: 50%
}

@media only screen and (max-width:640px) {
  .modal_content-has_img img {
    width: 90%
  }
}

.modal_content .inner {
  margin-bottom: 30px
}

@media only screen and (max-width:640px) {
  .modal_content .inner {
    margin-bottom: 20px;
    display: block
  }
}

.modal_content .inner figure {
  width: 44%
}

@media only screen and (max-width:640px) {
  .modal_content .inner figure {
    width: 100%;
    margin-bottom: 20px
  }
}

.modal_content .inner .txt {
  width: calc(56% - 50px)
}

@media only screen and (max-width:640px) {
  .modal_content .inner .txt {
    width: 100%
  }
}

.modal_content .inner .txt .ttl {
  font-weight: 600;
  font-size: 18px
}

@media(min-width: 375px) {
  .modal_content .inner .txt .ttl {
    font-size: 18px;
    font-size: calc(0*100vw + 18px)
  }
}

@media(min-width: 1680px) {
  .modal_content .inner .txt .ttl {
    font-size: 18px
  }
}

.modal_content .inner .txt .content {
  font-size: 15px;
  line-height: 1.733;
  margin-bottom: 20px
}

@media(min-width: 375px) {
  .modal_content .inner .txt .content {
    font-size: 15px;
    font-size: calc(0*100vw + 15px)
  }
}

@media(min-width: 1680px) {
  .modal_content .inner .txt .content {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .modal_content .inner .txt .content {
    margin-bottom: 14px
  }
}

.modal_content .inner .txt .price {
  font-size: 18px;
  color: #1d3751
}

@media(min-width: 375px) {
  .modal_content .inner .txt .price {
    font-size: 18px;
    font-size: calc(0*100vw + 18px)
  }
}

@media(min-width: 1680px) {
  .modal_content .inner .txt .price {
    font-size: 18px
  }
}

.modal_content iframe {
  width: 100%;
  height: 520px
}

@media only screen and (max-width:640px) {
  .modal_content iframe {
    height: 220px
  }
}

.modal_content-has_txt {
  max-width: 860px;
  height: 80vh;
  overflow: scroll;
  background: #fff;
  padding: 100px
}

.modal_content-has_txt .tit-primary {
  margin-bottom: 30px
}

.modal_content-has_txt .tit-primary::before {
  content: none
}

.modal_content-has_txt .tit-primary h2 {
  text-align: center
}

.modal_content-has_txt .message {
  line-height: 2.133
}

@media only screen and (max-width:640px) {
  .modal_content-has_txt .message {
    line-height: 1.68
  }
}

.modal_content-has_txt .btn-more {
  margin-top: 56px
}

.modal .js-modal-close-btn {
  width: 60px;
  padding: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, .05) 0px 3px 6px -1px;
  transform: translateZ(0);
  background: #fff;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1000
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .modal .js-modal-close-btn {
    top: 10px;
    right: 10px
  }
}

@media only screen and (max-width:640px) {
  .modal .js-modal-close-btn {
    width: 46px;
    padding: 16px;
    top: 12px;
    right: 12px
  }
}

.is-sns_lists li {
  margin-bottom: 9px;
  text-align: center
}

.is-sns_lists li:last-child {
  margin-bottom: 0
}

.is-sns_lists li i {
  color: #0f67ae;
  font-size: 16px
}

@media(min-width: 375px) {
  .is-sns_lists li i {
    font-size: 20px;
    font-size: calc(0.0030651341*100vw + 14.8505747126px)
  }
}

@media(min-width: 1680px) {
  .is-sns_lists li i {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .table_wrap {
    overflow: scroll
  }
}

@media only screen and (max-width:640px) {
  .table_wrap {
    overflow: scroll
  }
}

.table_wrap table {
  border: 1px solid #eaecef
}

@media only screen and (max-width:640px) {
  .table_wrap table {
    width: 620px
  }
}

.table_wrap table caption {
  padding: 18px 33px;
  background: #007abe;
  border-bottom: 0;
  color: #fff;
  text-align: left
}

@media only screen and (max-width:640px) {
  .table_wrap table caption {
    padding: 10px 20px
  }
}

.table_wrap table .caption-btn {
  padding: 0
}

.table_wrap table .caption-btn .btn {
  padding: 25px 33px;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center
}

@media only screen and (max-width:640px) {
  .table_wrap table .caption-btn .btn {
    padding: 16px 20px
  }
}

.table_wrap table .caption-btn .btn .arrow {
  margin-left: 20px
}

@media only screen and (max-width:640px) {
  .table_wrap table .caption-btn .btn .arrow {
    margin-left: 12px
  }
}

@media only screen and (max-width:640px) {
  .table_wrap table.sp-w100 {
    width: 100% !important
  }
}

.table_wrap table th.is-color {
  color: #007abe
}

.table_wrap table th.is-color a {
  color: #007abe
}

.table_wrap table th.is-bg-color {
  background: #007abe !important
}

.table_wrap table th .asterisk {
  color: red
}

.table_wrap table th strong {
  color: #fff;
  font-weight: 700
}

.table_wrap table th sub {
  color: #fff
}

.table_wrap table th .btn {
  color: #007abe;
  text-decoration: underline
}

.table_wrap table td .asterisk {
  color: red;
  display: inline-block
}

.table_clm-01 {
  width: 100%;
  border-top: 1px solid #eaecef
}

.table_clm-01 tr {
  border-bottom: 1px solid #eaecef
}

.table_clm-01 tr th,
.table_clm-01 tr td {
  padding: 32px 0;
  text-align: left;
  vertical-align: middle;
  line-height: 1.45;
  position: relative
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-01 tr th,
  .table_clm-01 tr td {
    padding: 24px 0
  }
}

@media only screen and (max-width:640px) {

  .table_clm-01 tr th,
  .table_clm-01 tr td {
    padding: 12px 0
  }
}

.table_clm-01 tr th {
  color: #007abe
}

.table_clm-01 tr th .text-btn {
  color: #007abe;
  text-decoration: underline
}

.table_clm-01 tr th,
.table_clm-01 tr td:first-child {
  width: 19.4%;
  min-width: 145px;
  font-weight: 500;
  position: relative
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-01 tr th,
  .table_clm-01 tr td:first-child {
    width: 30%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-01 tr th,
  .table_clm-01 tr td:first-child {
    width: 20%;
    min-width: 80px
  }
}

.table_clm-01 tr td {
  width: 80.6%;
  word-break: break-word
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .table_clm-01 tr td {
    width: 70%
  }
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td {
    width: 80%;
    padding-left: 1em
  }
}

.table_clm-01 tr td .btn_more {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .table_clm-01 tr td .btn_more {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: block;
    margin-top: 18px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td .btn_more {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: block;
    margin-top: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .table_clm-01 tr td .btn_more a {
    width: 200px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .table_clm-01 tr td .btn_more a {
    width: 180px;
    height: 40px;
    line-height: 40px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td .btn_more a {
    width: 140px;
    height: 40px;
    line-height: 40px
  }
}

.table_clm-01 tr td .btn_more a .arrow {
  background: #f6f9fb
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td .btn_more a .arrow {
    right: 8px
  }
}

.table_clm-01 tr td .text-btn {
  text-decoration: underline
}

.table_clm-01 tr td small {
  display: block;
  font-size: 11px
}

@media(min-width: 375px) {
  .table_clm-01 tr td small {
    font-size: 18px;
    font-size: calc(0.0053639847*100vw + 8.9885057471px)
  }
}

@media(min-width: 1680px) {
  .table_clm-01 tr td small {
    font-size: 18px
  }
}

.table_clm-01 tr td strong {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.333;
  display: block
}

@media(min-width: 375px) {
  .table_clm-01 tr td strong {
    font-size: 15px;
    font-size: calc(0*100vw + 15px)
  }
}

@media(min-width: 1680px) {
  .table_clm-01 tr td strong {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td strong {
    margin: 16px 0 10px
  }

  .table_clm-01 tr td strong:first-child {
    margin-top: 0
  }
}

.table_clm-01 tr td ul {
  padding-left: 20px
}

.table_clm-01 tr td ul li {
  list-style: disc;
  font-size: 13px;
  list-style: 1.538em
}

@media(min-width: 375px) {
  .table_clm-01 tr td ul li {
    font-size: 13px;
    font-size: calc(0*100vw + 13px)
  }
}

@media(min-width: 1680px) {
  .table_clm-01 tr td ul li {
    font-size: 13px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-01 tr td ul li {
    line-height: 1.3em
  }
}

.table_clm-01 tr td ol li {
  font-size: 15px
}

@media(min-width: 375px) {
  .table_clm-01 tr td ol li {
    font-size: 15px;
    font-size: calc(0*100vw + 15px)
  }
}

@media(min-width: 1680px) {
  .table_clm-01 tr td ol li {
    font-size: 15px
  }
}

.table_clm-01 tr td table {
  width: 100%
}

.table_clm-02 {
  width: 100%;
  overflow: hidden;
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .table_clm-02 {
    border-radius: 5px
  }
}

.table_clm-02.alternate tr:nth-of-type(even) th,
.table_clm-02.alternate tr:nth-of-type(even) td {
  background: #f6f9fb
}

.table_clm-02.alternate tr:nth-of-type(even) th .arrow-hover .arrow,
.table_clm-02.alternate tr:nth-of-type(even) td .arrow-hover .arrow {
  background: #fff
}

.table_clm-02 thead tr th,
.table_clm-02 thead tr td {
  background: #007abe;
  color: #fff
}

.table_clm-02 tbody tr .arrow-hover {
  line-height: 1
}

.table_clm-02 tbody tr .arrow-hover .arrow {
  margin-left: 16px;
  background: #f6f9fb
}

@media only screen and (max-width:640px) {
  .table_clm-02 tbody tr .arrow-hover .arrow {
    margin-left: 8px
  }
}

.table_clm-02 tbody tr th,
.table_clm-02 tbody tr td {
  background: #fff
}

.table_clm-02 tbody tr th:nth-child(1) {
  color: #007abe
}

.table_clm-02 tr th,
.table_clm-02 tr td {
  padding: 18px 32px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.63;
  position: relative;
  border: 1px solid #dde1e6
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .table_clm-02 tr th,
  .table_clm-02 tr td {
    padding: 2vw
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02 tr th,
  .table_clm-02 tr td {
    padding: 1.5vw 3vw
  }
}

.table_clm-02 tr td {
  word-break: break-word
}

.table_clm-02 tr td .arrow-hover {
  display: flex;
  align-items: center
}

.table_clm-02 tr td .arrow-hover .text {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.table_clm-02 tr td .arrow-hover:hover .text {
  color: #007abe
}

.table_clm-02 tr td .btn {
  text-decoration: underline
}

.table_clm-02 tr td .btn_more .btn {
  text-decoration: none
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .table_clm-02 tr td .btn_more .btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-02 tr td .btn_more .btn {
    width: 100px;
    padding-right: 8px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .table_clm-02 tr td .btn_more .btn .arrow {
    width: 34px;
    min-width: 34px;
    height: 20px
  }
}

.table_clm-02 tr td.tac {
  text-align: center
}

.table_clm-02 tr td small {
  display: block;
  font-size: 11px;
  line-height: 1.5
}

@media(min-width: 375px) {
  .table_clm-02 tr td small {
    font-size: 18px;
    font-size: calc(0.0053639847*100vw + 8.9885057471px)
  }
}

@media(min-width: 1680px) {
  .table_clm-02 tr td small {
    font-size: 18px
  }
}

.table_clm-02 tr td ol {
  padding-left: 1em
}

.table_clm-02 tr td ol li {
  line-height: 1.4
}

.table_clm-02.pattern01 tr th:nth-child(1),
.table_clm-02.pattern01 tr td:nth-child(1) {
  width: 30%
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern01 tr th:nth-child(1),
  .table_clm-02.pattern01 tr td:nth-child(1) {
    width: 30%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern01 tr th:nth-child(1),
  .table_clm-02.pattern01 tr td:nth-child(1) {
    width: 25%
  }
}

.table_clm-02.pattern01 tr th:nth-child(2),
.table_clm-02.pattern01 tr td:nth-child(2) {
  width: 41.8%;
  font-weight: 500
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern01 tr th:nth-child(2),
  .table_clm-02.pattern01 tr td:nth-child(2) {
    width: 30%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern01 tr th:nth-child(2),
  .table_clm-02.pattern01 tr td:nth-child(2) {
    width: 45%
  }
}

.table_clm-02.pattern01 tr th:nth-child(2) .furigana,
.table_clm-02.pattern01 tr td:nth-child(2) .furigana {
  display: inline-block;
  margin-left: 10px;
  font-size: 10px
}

@media(min-width: 375px) {

  .table_clm-02.pattern01 tr th:nth-child(2) .furigana,
  .table_clm-02.pattern01 tr td:nth-child(2) .furigana {
    font-size: 16px;
    font-size: calc(0.0045977011*100vw + 8.275862069px)
  }
}

@media(min-width: 1680px) {

  .table_clm-02.pattern01 tr th:nth-child(2) .furigana,
  .table_clm-02.pattern01 tr td:nth-child(2) .furigana {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern01 tr th:nth-child(2) .furigana,
  .table_clm-02.pattern01 tr td:nth-child(2) .furigana {
    margin-left: 6px
  }
}

.table_clm-02.pattern01 tr th:nth-child(3),
.table_clm-02.pattern01 tr td:nth-child(3) {
  width: 27.3%;
  font-weight: 500
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern01 tr th:nth-child(3),
  .table_clm-02.pattern01 tr td:nth-child(3) {
    width: 30%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern01 tr th:nth-child(3),
  .table_clm-02.pattern01 tr td:nth-child(3) {
    width: 30%
  }
}

.table_clm-02.pattern02 tr th:nth-child(1),
.table_clm-02.pattern02 tr td:nth-child(1) {
  width: 18%
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern02 tr th:nth-child(1),
  .table_clm-02.pattern02 tr td:nth-child(1) {
    width: 20%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern02 tr th:nth-child(1),
  .table_clm-02.pattern02 tr td:nth-child(1) {
    width: 20%
  }
}

.table_clm-02.pattern02 tr th:nth-child(2),
.table_clm-02.pattern02 tr td:nth-child(2) {
  width: 22%
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern02 tr th:nth-child(2),
  .table_clm-02.pattern02 tr td:nth-child(2) {
    width: 26%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern02 tr th:nth-child(2),
  .table_clm-02.pattern02 tr td:nth-child(2) {
    width: 20%
  }
}

.table_clm-02.pattern02 tr th:nth-child(3),
.table_clm-02.pattern02 tr td:nth-child(3) {
  width: 60%
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .table_clm-02.pattern02 tr th:nth-child(3),
  .table_clm-02.pattern02 tr td:nth-child(3) {
    width: 54%
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern02 tr th:nth-child(3),
  .table_clm-02.pattern02 tr td:nth-child(3) {
    width: 75%
  }
}

.table_clm-02.pattern03 tr th:nth-child(1),
.table_clm-02.pattern03 tr td:nth-child(1) {
  width: 20%
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern03 tr th:nth-child(1),
  .table_clm-02.pattern03 tr td:nth-child(1) {
    width: 20%
  }
}

.table_clm-02.pattern03 tr th:nth-child(2),
.table_clm-02.pattern03 tr td:nth-child(2) {
  width: 80%
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern03 tr th:nth-child(2),
  .table_clm-02.pattern03 tr td:nth-child(2) {
    width: 80%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .table_clm-02.pattern04 {
    width: 900px
  }
}

@media only screen and (max-width:640px) {
  .table_clm-02.pattern04 {
    width: 680px
  }
}

.table_clm-02.pattern04 thead th,
.table_clm-02.pattern04 thead td {
  text-align: center
}

.table_clm-02.pattern04 thead th:nth-child(1) {
  color: #fff
}

.table_clm-02.pattern04 .position {
  width: 18%
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .table_clm-02.pattern04 .position {
    width: 16%
  }
}

.table_clm-02.pattern04 .name {
  width: 20%
}

.table_clm-02.pattern04 th,
.table_clm-02.pattern04 td {
  width: auto;
  text-align: center;
  padding: 15px 20px;
  font-size: 13px;
  padding: 1vw
}

@media(min-width: 375px) {

  .table_clm-02.pattern04 th,
  .table_clm-02.pattern04 td {
    font-size: 20px;
    font-size: calc(0.0053639847*100vw + 10.9885057471px)
  }
}

@media(min-width: 1680px) {

  .table_clm-02.pattern04 th,
  .table_clm-02.pattern04 td {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {

  .table_clm-02.pattern04 th,
  .table_clm-02.pattern04 td {
    width: auto;
    padding: 1vw 2vw
  }
}

@media only screen and (max-width:640px) {
  .tabs_scroll {
    overflow: scroll
  }
}

.tabs {
  font-size: 0
}

@media only screen and (max-width:640px) {
  .tabs {
    width: 680px
  }
}

.tabs_item {
  width: 14.2857142857%;
  background: #007abe;
  padding: 18px 0;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_item {
    padding: 14px 0
  }
}

@media only screen and (max-width:640px) {
  .tabs_item {
    padding: 8px;
    display: flex;
    flex-direction: column
  }
}

.tabs_item:not(:first-child) {
  border-left: 1px solid #fff
}

.tabs_item:first-child {
  border-radius: 10px 0 0 0
}

.tabs_item:last-child {
  border-radius: 0 10px 0 0
}

.tabs_item .icon {
  width: 64px;
  display: none
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_item .icon {
    width: 56%
  }
}

@media only screen and (max-width:640px) {
  .tabs_item .icon {
    width: 50%
  }
}

.tabs_item .icon-bl {
  display: none
}

.tabs_item .icon-wh {
  display: block
}

.tabs_item .text {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  margin-top: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .tabs_item .text {
    font-size: 21px;
    font-size: calc(0.0061302682*100vw + 10.7011494253px)
  }
}

@media(min-width: 1680px) {
  .tabs_item .text {
    font-size: 21px
  }
}

@media only screen and (max-width:640px) {
  .tabs_item .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1
  }
}

.tabs_item:hover {
  cursor: pointer;
  background: #f6f9fb
}

.tabs_item:hover .text {
  color: #007abe
}

.tabs_item:hover .icon {
  display: none
}

.tabs_item:hover .icon-bl {
  display: block
}

.tabs_item:hover .icon-wh {
  display: none
}

.tabs_item.active {
  background: #fff
}

.tabs_item.active .text {
  color: #1d3751
}

.tabs_item.active .icon {
  display: block
}

.tabs_item.active .icon-bl {
  display: none
}

.tabs_item.active .icon-wh {
  display: none
}

.tabs_content {
  background: #fff;
  display: none;
  padding: 48px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  -webkit-transition: .7s;
  -moz-transition: .7s;
  -ms-transition: .7s;
  -o-transition: .7s;
  transition: .7s
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content {
    padding: 30px
  }
}

@media only screen and (max-width:640px) {
  .tabs_content {
    padding: 24px 5vw
  }
}

.tabs_content.hidden {
  display: none;
  -webkit-transition: .7s;
  -moz-transition: .7s;
  -ms-transition: .7s;
  -o-transition: .7s;
  transition: .7s
}

.tabs_content.active {
  display: block;
  -webkit-transition: .7s;
  -moz-transition: .7s;
  -ms-transition: .7s;
  -o-transition: .7s;
  transition: .7s
}

.tabs_content#tab-1_content {
  background: url("../images/page/contents/bg-tab-1.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-2_content {
  background: url("../images/page/contents/bg-tab-2.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-3_content {
  background: url("../images/page/contents/bg-tab-3.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-4_content {
  background: url("../images/page/contents/bg-tab-4.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-5_content {
  background: url("../images/page/contents/bg-tab-5.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-6_content {
  background: url("../images/page/contents/bg-tab-6.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content#tab-7_content {
  background: url("../images/page/contents/bg-tab-7.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, .9);
  background-blend-mode: lighten
}

.tabs_content_lists {
  margin-top: 48px;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists {
    margin-top: 24px
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists {
    margin-top: 24px
  }
}

.tabs_content_lists__item {
  width: calc((100% - 80px)/3);
  margin: 0 40px 0 0;
  border-top: 1px solid #dde1e6;
  border-bottom: 1px solid #dde1e6
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists__item {
    width: calc(50% - 10px);
    margin-right: 20px
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0
  }
}

.tabs_content_lists__item:nth-of-type(3n) {
  margin-right: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists__item:nth-of-type(3n) {
    margin-right: 20px
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists__item:nth-of-type(3n) {
    margin-right: 0
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists__item:nth-of-type(2n) {
    margin-right: 0
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists__item:nth-of-type(2n) {
    margin-right: 0
  }
}

.tabs_content_lists__item:nth-child(n+4) {
  border-top: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists__item:nth-child(n+3) {
    border-top: 0
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists__item:nth-child(n+2) {
    border-top: 0
  }
}

.tabs_content_lists__item .btn {
  height: 100%;
  min-height: 100px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tabs_content_lists__item .btn {
    min-height: 70px;
    padding: 10px 0
  }
}

@media only screen and (max-width:640px) {
  .tabs_content_lists__item .btn {
    min-height: 60px;
    padding: 10px 0
  }
}

.tabs_content_lists__item .btn .text {
  line-height: 1.54
}

.tabs_content_lists__item .btn .text.underline {
  color: #007abe;
  text-decoration: underline
}

.tabs_content_lists__item .btn .arrow {
  background: #f6f9fb
}

.tabs_content_lists__item .btn:hover .text {
  color: #007abe
}

.tabs_content_lists__item.wide {
  width: 100%;
  margin-right: 0
}

.tabs_content_lists__item.wide>.btn:hover .text {
  color: #1d3751
}

.is-contact {
  z-index: 1
}

.is-contact_content {
  width: 53.5714285714vw;
  padding: 5.9523809524vw;
  margin: 0 auto;
  background: #edeef3;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  border-radius: 44px
}

@media only screen and (max-width:640px) {
  .is-contact_content {
    width: 100%
  }
}

.is-contact .table-contact {
  width: 100%
}

.is-contact .table-contact tr th,
.is-contact .table-contact tr td {
  display: block
}

.is-contact .table-contact tr th {
  font-weight: 600;
  text-align: left;
  position: relative;
  padding: 22px 0 4px
}

@media only screen and (max-width:640px) {
  .is-contact .table-contact tr th {
    padding-top: 18px
  }
}

.is-contact .table-contact tr th p {
  font-weight: 800
}

@media only screen and (max-width:640px) {
  .is-contact .table-contact tr th p {
    line-height: 1.4
  }
}

.is-contact .table-contact tr th .must {
  background: #ca141d;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
  padding: 6px 9px;
  line-height: 1;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  position: absolute;
  top: 22px;
  right: 0
}

@media(min-width: 375px) {
  .is-contact .table-contact tr th .must {
    font-size: 11px;
    font-size: calc(0*100vw + 11px)
  }
}

@media(min-width: 1680px) {
  .is-contact .table-contact tr th .must {
    font-size: 11px
  }
}

@media only screen and (max-width:640px) {
  .is-contact .table-contact tr th .must {
    top: 14px
  }
}

.is-contact .table-contact tr td {
  position: relative
}

.is-contact .table-contact tr td input[type=text],
.is-contact .table-contact tr td input[type=tel],
.is-contact .table-contact tr td input[type=email],
.is-contact .table-contact tr td textarea,
.is-contact .table-contact tr td input[type=submit],
.is-contact .table-contact tr td input[type=number],
.is-contact .table-contact tr td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.is-contact .table-contact tr td .con {
  width: 100%;
  padding: 22px 2em;
  background: #fff;
  font-size: 14px;
  border: 1px solid #e5f2f2;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px
}

@media(min-width: 375px) {
  .is-contact .table-contact tr td .con {
    font-size: 15px;
    font-size: calc(0.0007662835*100vw + 13.7126436782px)
  }
}

@media(min-width: 1680px) {
  .is-contact .table-contact tr td .con {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-contact .table-contact tr td .con {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    padding: 14px 1em
  }
}

.is-contact .table-contact tr td .con::placeholder {
  color: #c0bcb9
}

.is-contact .table-contact tr td .mess {
  width: 100%;
  max-height: 180px;
  padding: 22px 2em;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e5f2f2;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px
}

@media(min-width: 375px) {
  .is-contact .table-contact tr td .mess {
    font-size: 15px;
    font-size: calc(0.0007662835*100vw + 13.7126436782px)
  }
}

@media(min-width: 1680px) {
  .is-contact .table-contact tr td .mess {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-contact .table-contact tr td .mess {
    max-height: 120px;
    padding: 14px 1em
  }
}

.is-contact .table-contact tr td .mess::placeholder {
  color: #c0bcb9
}

.is-contact .checkbtn {
  font-size: 11px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: .2em
}

@media(min-width: 375px) {
  .is-contact .checkbtn {
    font-size: 11px;
    font-size: calc(0*100vw + 11px)
  }
}

@media(min-width: 1680px) {
  .is-contact .checkbtn {
    font-size: 11px
  }
}

.is-contact .checkbtn a {
  font-size: 11px;
  text-decoration: underline;
  color: #0f67ae;
  font-weight: 600
}

@media(min-width: 375px) {
  .is-contact .checkbtn a {
    font-size: 11px;
    font-size: calc(0*100vw + 11px)
  }
}

@media(min-width: 1680px) {
  .is-contact .checkbtn a {
    font-size: 11px
  }
}

.is-contact .btn-more {
  width: 100%
}

.is-contact .btn-more input[type=submit] {
  width: 100%;
  height: 82px;
  border: 0;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: .4em;
  font-size: 18px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  border-radius: 42px;
  background: #0f67ae
}

@media(min-width: 375px) {
  .is-contact .btn-more input[type=submit] {
    font-size: 22px;
    font-size: calc(0.0030651341*100vw + 16.8505747126px)
  }
}

@media(min-width: 1680px) {
  .is-contact .btn-more input[type=submit] {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .is-contact .btn-more input[type=submit] {
    height: 52px;
    line-height: 44px
  }
}

.is-contact .btn-more input[type=submit]:hover {
  cursor: pointer
}

.is-contact-form .wpcf7 form.sent .wpcf7-response-output {
  padding: 15px !important;
  background-color: #f3f0e9 !important;
  text-align: center !important;
  margin-bottom: 10px !important;
  border-radius: 30px !important;
  border: none !important
}

.is-contact-thanks .lead {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px
}

@media(min-width: 375px) {
  .is-contact-thanks .lead {
    font-size: 15px;
    font-size: calc(0.001532567*100vw + 12.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-contact-thanks .lead {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-contact-thanks .lead {
    margin-bottom: 10px
  }
}

.is-contact-thanks .btn_more {
  margin: 0 auto
}

.is-thanks .is-contact_wrap {
  padding: 40px
}

@media only screen and (max-width:640px) {
  .is-thanks .is-contact_wrap {
    padding: 5% 5% 7%
  }
}

.is-guidance_hdr {
  margin-bottom: 60px
}

@media only screen and (max-width:640px) {
  .is-guidance_hdr {
    margin-bottom: 40px
  }
}

.is-guidance_hdr p {
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_hdr p {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_hdr p {
    font-size: 16px
  }
}

.is-guidance_hdr p a {
  font-size: 14px;
  color: #1d3751;
  text-decoration: underline
}

@media(min-width: 375px) {
  .is-guidance_hdr p a {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_hdr p a {
    font-size: 16px
  }
}

.is-guidance_hdr p strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_hdr p strong {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_hdr p strong {
    font-size: 16px
  }
}

.is-guidance_body_lists__item {
  margin-bottom: 50px
}

.is-guidance_body_lists__item:last-child {
  margin-bottom: 0
}

.is-guidance_body_lists__item h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.556;
  margin-bottom: 12px
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item h2 {
    font-size: 20px;
    font-size: calc(0.001532567*100vw + 17.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item h2 {
    font-size: 20px
  }
}

.is-guidance_body_lists__item h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.556;
  margin-bottom: 12px
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item h3 {
    font-size: 18px;
    font-size: calc(0.001532567*100vw + 15.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item h3 {
    font-size: 18px
  }
}

.is-guidance_body_lists__item p {
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item p {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item p {
    font-size: 16px
  }
}

.is-guidance_body_lists__item p strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item p strong {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item p strong {
    font-size: 16px
  }
}

.is-guidance_body_lists__item p+.bullets {
  margin-top: 10px
}

.is-guidance_body_lists__item p+.orderd {
  margin-top: 0
}

.is-guidance_body_lists__item p+p {
  margin-top: 16px
}

.is-guidance_body_lists__item a {
  font-size: 14px;
  color: #1d3751;
  text-decoration: underline
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item a {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item a {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .orderd {
  margin-top: 1.8em
}

.is-guidance_body_lists__item .orderd_lists__item {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .orderd_lists__item {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .orderd_lists__item {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .orderd_lists__item::before {
  display: marker;
  content: "("counter(cnt) ") "
}

.is-guidance_body_lists__item .orderd_lists__item strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .orderd_lists__item strong {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .orderd_lists__item strong {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .orderd_lists__item .bullets {
  margin-top: 8px
}

.is-guidance_body_lists__item .orderd_lists__item .bullets_lists__item {
  margin-bottom: 4px
}

.is-guidance_body_lists__item .orderd_lists-txt {
  padding-left: 1em
}

.is-guidance_body_lists__item .orderd_lists-txt li {
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .orderd_lists-txt li {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .orderd_lists-txt li {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .orderd-2 {
  padding-left: 1em
}

.is-guidance_body_lists__item .orderd-2 li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .orderd-2 li {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .orderd-2 li {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .bullets {
  padding: 0 0 0 1em;
  margin-top: 2em
}

@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .bullets {
    padding-left: 1em
  }
}

.is-guidance_body_lists__item .bullets_lists__item {
  position: relative;
  list-style: none;
  padding-left: .8em;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .bullets_lists__item {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .bullets_lists__item {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .bullets_lists__item {
    padding-left: .9em;
    line-height: 1.4;
    margin-bottom: 4px
  }
}

.is-guidance_body_lists__item .bullets_lists__item strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .bullets_lists__item strong {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .bullets_lists__item strong {
    font-size: 16px
  }
}

.is-guidance_body_lists__item .bullets_lists__item::before {
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%
}

@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .bullets_lists__item::before {
    width: 4px;
    height: 4px;
    top: 9px
  }
}

.is-guidance_body_lists__item .bullets_lists__item-orange::before {
  background: #0f67ae
}

.is-guidance_body_lists__item .bullets_lists__item-gray::before {
  background: #1d3751
}

.is-guidance_body_lists__item .bullets_lists__item .btn_more {
  display: block;
  margin-top: 20px;
  text-align: right
}

.is-guidance_body_lists__item .bullets .orderd {
  margin-top: 0;
  padding: 0 0 0 1em
}

.is-guidance_body_lists__item .table_box {
  margin-top: 15px
}

@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .table_box {
    margin-top: 6px
  }
}

.is-guidance_body_lists__item .count {
  font-size: 14px;
  line-height: 1.75;
  display: block;
  padding-left: 2em
}

@media(min-width: 375px) {
  .is-guidance_body_lists__item .count {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_body_lists__item .count {
    font-size: 16px
  }
}

.is-guidance_body_lists.mt100 {
  margin-top: 100px
}

@media only screen and (max-width:640px) {
  .is-guidance_body_lists.mt100 {
    margin-top: 60px
  }
}

.is-guidance_body .enactment {
  margin-top: 40px;
  text-align: right
}

@media only screen and (max-width:640px) {
  .is-guidance_body .enactment {
    margin-top: 30px
  }
}

.is-guidance_body.mt100 {
  margin-top: 100px
}

@media only screen and (max-width:640px) {
  .is-guidance_body.mt100 {
    margin-top: 60px
  }
}

.is-guidance_ftr {
  margin-top: 60px
}

.is-guidance_ftr h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px
}

@media(min-width: 375px) {
  .is-guidance_ftr h3 {
    font-size: 15px;
    font-size: calc(0*100vw + 15px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_ftr h3 {
    font-size: 15px
  }
}

.is-guidance_ftr p {
  font-size: 14px;
  line-height: 1.75;
  text-align: right
}

@media(min-width: 375px) {
  .is-guidance_ftr p {
    font-size: 16px;
    font-size: calc(0.001532567*100vw + 13.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-guidance_ftr p {
    font-size: 16px
  }
}

.is-guidance_ftr+.is-guidance_hdr {
  margin-top: 100px
}

.is-personal_data .orderd_lists__item {
  margin-bottom: 20px
}

.icon-other {
  font-style: normal
}

.icon-other::before {
  content: "";
  color: #1d3751;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: -26px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.icon-other-gray::before {
  color: #d0d1d6
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-navi {
    width: 60%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi {
    width: auto
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-navi {
    width: auto
  }
}

.is-navi-pc {
  justify-content: flex-end
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi-pc {
    display: none
  }
}

@media only screen and (max-width:640px) {
  .is-navi-pc {
    display: none
  }
}

.is-navi-sp {
  display: none
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi-sp {
    display: block
  }
}

@media only screen and (max-width:640px) {
  .is-navi-sp {
    display: block
  }
}

.is-navi .drawer-menu {
  width: 100%;
  position: relative;
  overflow: scroll
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .is-navi .drawer-menu {
    min-height: -webkit-fill-available
  }
}

@media only screen and (max-width:640px) {
  .is-navi .drawer-menu {
    height: 120dvh
  }
}

.is-navi_head {
  justify-content: flex-end;
  align-items: center
}

.is-navi_head .navi_lang {
  margin-right: 24px;
  line-height: 1
}

.is-navi_head .navi_search {
  margin-right: 16px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi_lists {
    width: 87%;
    margin: 120px auto 6vw
  }
}

@media only screen and (max-width:640px) {
  .is-navi_lists {
    width: 87%;
    margin: 20vw auto 6vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px),
only screen and (max-width:640px) {
  .is-navi_lists__item {
    width: 100%;
    height: auto;
    line-height: 1;
    margin-right: 0;
    border-bottom: 1px solid #898f95
  }
}

.is-navi_lists__item.current .menu-title::before {
  opacity: 1
}

.is-navi_lists__item a {
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: block;
  position: relative;
  letter-spacing: .05em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-navi_lists__item a {
    padding: 0 10px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi_lists__item a {
    font-size: 20px;
    line-height: 1;
    padding: 24px 10px
  }
}

@media only screen and (max-width:640px) {
  .is-navi_lists__item a {
    line-height: 1;
    padding: 24px 10px
  }
}

.is-navi_lists__item a svg {
  width: 6px;
  height: auto;
  margin-right: 16px
}

.is-navi_lists__item a:hover {
  background: #0f67ae;
  color: #fff
}

.is-navi_lists__item-contact {
  border-left: 1px solid #e8e8e8;
  margin-left: 23px
}

.is-navi_lists__item-contact a {
  padding: 27px 23px
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .is-navi_lists__item-contact a {
    padding: 19px 10px 18px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi_lists__item-contact {
    border: 0;
    padding: 0;
    margin: 0 auto 20px
  }

  .is-navi_lists__item-contact a {
    width: 80%;
    border: 1px solid #d0d1d6;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    line-height: 80px;
    text-align: center;
    margin: 40px auto 20px
  }

  .is-navi_lists__item-contact a .icon-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    right: 16px
  }

  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 9px;
    top: 52%
  }
}

@media only screen and (min-width:641px)and (max-width:835px)and (min-width: 375px) {
  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 16px;
    font-size: calc(0.0053639847*100vw + 6.9885057471px)
  }
}

@media only screen and (min-width:641px)and (max-width:835px)and (min-width: 1680px) {
  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-navi_lists__item-contact {
    border: 0;
    padding: 0;
    margin: 0
  }

  .is-navi_lists__item-contact a {
    width: 80%;
    border: 1px solid #d0d1d6;
    padding: 15px 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    text-align: center;
    margin: 40px auto 20px
  }

  .is-navi_lists__item-contact a .icon-arrow {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 16px;
    top: calc(50% - 7px)
  }

  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 9px;
    top: 57%
  }
}

@media only screen and (max-width:640px)and (min-width: 375px) {
  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 16px;
    font-size: calc(0.0053639847*100vw + 6.9885057471px)
  }
}

@media only screen and (max-width:640px)and (min-width: 1680px) {
  .is-navi_lists__item-contact a .icon-arrow::before {
    font-size: 16px
  }
}

.is-navi_lists__item-recruit {
  background: #0f67ae;
  padding: 0 36px;
  margin-left: 0
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .is-navi_lists__item-recruit {
    padding: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi_lists__item-recruit {
    height: auto !important;
    background: none;
    padding: 0 0 30px;
    margin: 0;
    border: 0
  }
}

@media only screen and (max-width:640px) {
  .is-navi_lists__item-recruit {
    background: none;
    padding: 0 0 30px;
    margin: 0;
    border: 0
  }
}

.is-navi_lists__item-recruit a {
  color: #fff
}

@media only screen and (min-width:780px)and (max-width:1366px) {
  .is-navi_lists__item-recruit a {
    padding: 0
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-navi_lists__item-recruit a {
    width: 80%;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: #0f67ae;
    text-align: center;
    margin: 0 auto;
    line-height: 80px
  }

  .is-navi_lists__item-recruit a .icon-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    right: 16px
  }

  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 9px;
    top: 52%
  }
}

@media only screen and (min-width:641px)and (max-width:835px)and (min-width: 375px) {
  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 16px;
    font-size: calc(0.0053639847*100vw + 6.9885057471px)
  }
}

@media only screen and (min-width:641px)and (max-width:835px)and (min-width: 1680px) {
  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-navi_lists__item-recruit a {
    width: 80%;
    padding: 15px 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: #0f67ae;
    text-align: center;
    margin: 0 auto
  }

  .is-navi_lists__item-recruit a .icon-arrow {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 16px;
    top: calc(50% - 7px)
  }

  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 9px;
    top: 57%
  }
}

@media only screen and (max-width:640px)and (min-width: 375px) {
  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 16px;
    font-size: calc(0.0053639847*100vw + 6.9885057471px)
  }
}

@media only screen and (max-width:640px)and (min-width: 1680px) {
  .is-navi_lists__item-recruit a .icon-arrow::before {
    font-size: 16px
  }
}

.is-navi_lists__item-recruit:hover::before {
  content: none
}

.is-navi_lists .dead a,
.is-navi_lists .dead span {
  opacity: .3;
  filter: alpha(opacity=30);
  text-decoration: line-through;
  pointer-events: none
}

.is-navi_lists .dead a::after,
.is-navi_lists .dead span::after {
  display: none
}

.drawer-nav {
  width: 100%;
  background: rgba(255, 255, 255, .95);
  z-index: 29999
}

@media only screen and (max-width:640px) {
  .drawer-nav {
    width: 100%
  }
}

.drawer-nav_inner {
  width: 80%;
  margin: 18vw auto 0
}

@media only screen and (max-width:640px) {
  .drawer-nav_inner {
    margin-top: 32vw
  }
}

.drawer-overlay {
  background: none;
  z-index: 29000
}

.drawer--right .drawer-nav {
  right: -100%
}

.drawer-hamburger {
  width: 12.4vw;
  height: 12.4vw;
  position: fixed;
  top: 0 !important;
  right: 0 !important;
  padding: 0;
  z-index: 30002;
  -webkit-appearance: none
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .drawer-hamburger {
    width: 12vw;
    height: 10vw
  }
}

@media only screen and (max-width:640px) {
  .drawer-hamburger {
    width: 12.8vw;
    height: 12.8vw;
    right: 2vw !important
  }
}

.drawer-hamburger:hover {
  opacity: 1;
  filter: alpha(opacity=100)
}

.drawer-hamburger-icon {
  width: 51.5%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  margin: 0
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  height: 2px;
  background: #1d3751
}

@media only screen and (max-width:640px) {

  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    height: 1px
  }
}

.drawer-hamburger-icon:before {
  top: -1vw
}

.drawer-hamburger-icon:after {
  top: 1vw
}

.drawer-open .drawer-hamburger-icon {
  background: none
}

.drawer-open .drawer-hamburger-icon::before,
.drawer-open .drawer-hamburger-icon::after {
  width: 100%;
  background: #333
}

.drawer-open .drawer-hamburger-icon:before {
  left: 0
}

.drawer-open .drawer-hamburger-icon:after {
  left: 0
}

.drawer--left.drawer-open .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 277px !important
}

.drawer-nav li.anchor {
  padding: 0 0 0 50px
}

.drawer-nav li.anchor a {
  font-size: 14px
}

.drawer-nav li.cm,
.drawer-nav li.cp {
  margin: 50px 0 0 0
}

.drawer-nav li.cm a,
.drawer-nav li.cp a {
  text-indent: -1em;
  margin-left: 1em
}

.drawer-nav li.nolink .link {
  opacity: .4
}

.drawer-nav li.nolink .link:hover {
  text-decoration: none
}

.drawer-nav li .link {
  color: #fff
}

.drawer-nav li .link img {
  vertical-align: middle
}

.drawer-nav li .link span {
  font-size: 18px;
  display: block
}

.drawer-menu-item {
  padding: 5px 0
}

.drawer--left.drawer-open .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0 !important
}

@media only screen and (max-width:640px) {
  .paginavi {
    margin-top: 40px !important
  }
}

.paginavi ul {
  margin: 0 auto;
  font-size: 0;
  text-align: center
}

.paginavi ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1
}

.paginavi ul li:last-child {
  margin-right: 0
}

.paginavi ul li span,
.paginavi ul li a {
  margin: 0 16px;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {

  .paginavi ul li span,
  .paginavi ul li a {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {

  .paginavi ul li span,
  .paginavi ul li a {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {

  .paginavi ul li span,
  .paginavi ul li a {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    margin: 0 14px 14px 0
  }
}

.paginavi ul li span:hover,
.paginavi ul li a:hover {
  color: #007abe
}

.paginavi ul li span:hover i,
.paginavi ul li a:hover i {
  color: #fff
}

.paginavi ul li span i,
.paginavi ul li a i {
  display: block;
  font-size: 16px
}

@media(min-width: 375px) {

  .paginavi ul li span i,
  .paginavi ul li a i {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {

  .paginavi ul li span i,
  .paginavi ul li a i {
    font-size: 22px
  }
}

.paginavi ul .current {
  width: 40px;
  height: 40px;
  line-height: 1;
  padding-bottom: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  background: #007abe;
  font-size: 16px;
  position: relative;
  margin: 0 4px
}

@media(min-width: 375px) {
  .paginavi ul .current {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {
  .paginavi ul .current {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .paginavi ul .current {
    width: 30px;
    height: 30px;
    margin: 0 8px 0 0px
  }
}

.paginavi ul .next,
.paginavi ul .prev {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (min-width:780px) {

  .paginavi ul .next:hover::before,
  .paginavi ul .prev:hover::before {
    color: #0f67ae
  }
}

@media only screen and (max-width:640px) {

  .paginavi ul .next,
  .paginavi ul .prev {
    display: flex;
    margin: 0
  }
}

@media only screen and (max-width:640px) {

  .paginavi ul .next .arrow,
  .paginavi ul .prev .arrow {
    margin: 0
  }
}

@media only screen and (max-width:640px) {
  .paginavi ul .prev {
    margin-right: 14px
  }
}

.paginavi ul .prev .arrow {
  transform: scale(-1, 1)
}

.scroll_down {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 101
}

@media only screen and (max-width:640px) {
  .scroll_down {
    bottom: -10px
  }
}

.scroll_down span {
  font-size: 11px;
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: block
}

@media(min-width: 375px) {
  .scroll_down span {
    font-size: 13px;
    font-size: calc(0.001532567*100vw + 10.4252873563px)
  }
}

@media(min-width: 1680px) {
  .scroll_down span {
    font-size: 13px
  }
}

.scroll_down b {
  width: 45px;
  height: 52px;
  margin: 5px auto 0;
  display: block;
  background: url("../images/hexagon/line-wh.svg") center/cover no-repeat;
  position: relative
}

.scroll_down b i {
  animation: vertical 1s ease-in-out infinite alternate;
  position: absolute;
  top: 45%;
  left: calc(50% - 3px);
  display: block
}

.is-single .primary_btn-notice {
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  margin-top: 18px
}

@media(min-width: 480px) {
  .is-single .primary_btn-notice {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .primary_btn-notice {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .primary_btn-notice {
    margin-top: 12px
  }
}

.is-single .is-information {
  margin-top: 40px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-single .is-information {
    margin-top: 30px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information {
    margin-top: 10px
  }
}

.is-single .is-information .category_lists {
  display: flex;
  margin-bottom: 20px
}

@media only screen and (max-width:640px) {
  .is-single .is-information .category_lists {
    margin-bottom: 10px
  }
}

.is-single .is-information .category_lists__item {
  width: fit-content;
  padding: 7px 14px;
  display: inline-block;
  font-size: 12px;
  text-align: center;
  border-radius: 100vh;
  font-weight: 600;
  color: #fff
}

@media(min-width: 480px) {
  .is-single .is-information .category_lists__item {
    font-size: 14px;
    font-size: calc(0.0025*100vw + 10.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .category_lists__item {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .category_lists__item {
    padding: .4em 1em
  }
}

.is-single .is-information .category_lists__item.is-light-blue {
  background: #25addf
}

.is-single .is-information .category_lists__item.is-blue {
  background: #2551df
}

.is-single .is-information .category_lists__item:not(:first-child) {
  margin-left: 10px
}

@media only screen and (max-width:640px) {
  .is-single .is-information .category_lists__item:not(:first-child) {
    margin-left: 5px
  }
}

.is-single .is-information .title {
  font-size: 16px;
  line-height: 1.52;
  font-weight: 700;
  color: #0f67ae;
  margin-bottom: 40px
}

@media(min-width: 480px) {
  .is-single .is-information .title {
    font-size: 36px;
    font-size: calc(0.025*100vw + 4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .title {
    font-size: 36px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .title {
    margin-bottom: 16px
  }
}

.is-single .is-information .deadline,
.is-single .is-information .number {
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.2;
  font-feature-settings: "palt"
}

@media(min-width: 480px) {

  .is-single .is-information .deadline,
  .is-single .is-information .number {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-information .deadline,
  .is-single .is-information .number {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {

  .is-single .is-information .deadline,
  .is-single .is-information .number {
    margin-bottom: 6px
  }
}

.is-single .is-information .price {
  margin-top: 24px;
  padding-top: 6px;
  border-top: 1px solid #0f67ae
}

@media only screen and (max-width:640px) {
  .is-single .is-information .price {
    margin-top: 20px;
    padding-top: 8px
  }
}

.is-single .is-information .price__value {
  font-size: 13px
}

@media(min-width: 480px) {
  .is-single .is-information .price__value {
    font-size: 24px;
    font-size: calc(0.01375*100vw + 6.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .price__value {
    font-size: 24px
  }
}

.is-single .is-information .price__value span {
  font-size: 18px;
  color: #0f67ae;
  display: inline-block;
  margin-right: 2px
}

@media(min-width: 480px) {
  .is-single .is-information .price__value span {
    font-size: 32px;
    font-size: calc(0.0175*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .price__value span {
    font-size: 32px
  }
}

.is-single .is-information .price__number {
  display: block;
  font-size: 13px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-single .is-information .price__number {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .price__number {
    font-size: 18px
  }
}

.is-single .is-information .fuel {
  font-size: 14px;
  color: #fff;
  background: #0f67ae;
  border-radius: 3px;
  padding: 10px 12px;
  line-height: 1.2;
  display: inline-block;
  margin-top: 30px
}

@media(min-width: 480px) {
  .is-single .is-information .fuel {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .fuel {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .fuel {
    border-radius: 2px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .fuel {
    padding: .6em .8em
  }
}

.is-single .is-information .notice {
  margin-top: 20px
}

@media only screen and (max-width:640px) {
  .is-single .is-information .notice {
    margin-top: 10px
  }
}

.is-single .is-information .notice-text {
  font-size: 13px;
  font-weight: 400;
  display: block;
  line-height: 1.4;
  margin-bottom: 8px
}

@media(min-width: 480px) {
  .is-single .is-information .notice-text {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .notice-text {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .notice-text {
    margin-bottom: 6px
  }
}

.is-single .is-information .primary_btn {
  margin-top: 50px
}

@media only screen and (max-width:640px) {
  .is-single .is-information .primary_btn {
    margin-top: 30px
  }
}

.is-single .is-information .anchor_lists {
  width: 83.2%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-information .anchor_lists {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .anchor_lists {
    width: 100%;
    margin: 30px auto 0
  }
}

.is-single .is-information .anchor_lists__item {
  width: calc((100% - 30px)/4)
}

@media only screen and (max-width:640px) {
  .is-single .is-information .anchor_lists__item {
    width: calc((100% - 20px)/2)
  }
}

.is-single .is-information .anchor_lists__item a {
  display: block;
  border: 1px solid #0f67ae;
  border-radius: 3px;
  text-align: center;
  line-height: 1;
  padding: 22px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f67ae;
  position: relative
}

@media only screen and (max-width:640px) {
  .is-single .is-information .anchor_lists__item a {
    border-radius: 2px
  }
}

@media(min-width: 480px) {
  .is-single .is-information .anchor_lists__item a {
    font-size: 14px;
    font-size: calc(0.00125*100vw + 12.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-information .anchor_lists__item a {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .anchor_lists__item a {
    padding: 12.5px 10px
  }
}

.is-single .is-information .anchor_lists__item a .arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  transform: translateY(-50%) rotate(90deg)
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-information .anchor_lists__item a .arrow {
    right: 7px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-information .anchor_lists__item a .arrow {
    width: 5px;
    right: 8px
  }
}

.is-single .is-information .anchor_lists__item a .arrow svg path {
  fill: #0f67ae
}

.is-single .is-guest-introduction_content {
  display: flex;
  justify-content: space-between
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content {
    flex-direction: column-reverse
  }
}

.is-single .is-guest-introduction_content:not(:first-child) {
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content:not(:first-child) {
    margin-top: 30px
  }
}

.is-single .is-guest-introduction_content:nth-child(odd) {
  flex-direction: row-reverse
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content:nth-child(odd) {
    flex-direction: column-reverse
  }
}

.is-single .is-guest-introduction_content.has-img .text-box {
  width: 53%
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content.has-img .text-box {
    width: 100%;
    margin-top: 20px
  }
}

.is-single .is-guest-introduction_content.has-img .img {
  width: 44.5%
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content.has-img .img {
    width: 100%
  }
}

.is-single .is-guest-introduction_content.has-img .img .caption {
  font-size: 12px;
  text-align: right;
  line-height: 1.4;
  margin-top: 6px
}

@media(min-width: 480px) {
  .is-single .is-guest-introduction_content.has-img .img .caption {
    font-size: 13px;
    font-size: calc(0.00125*100vw + 11.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-guest-introduction_content.has-img .img .caption {
    font-size: 13px
  }
}

.is-single .is-guest-introduction_content .text-box {
  width: 100%
}

.is-single .is-guest-introduction_content .text-box .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 2.2
}

@media(min-width: 480px) {
  .is-single .is-guest-introduction_content .text-box .title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-guest-introduction_content .text-box .title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-guest-introduction_content .text-box .title {
    line-height: 1.86;
    margin-bottom: 10px
  }
}

.is-single .is-guest-introduction_content .text-box .text {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2
}

@media(min-width: 480px) {
  .is-single .is-guest-introduction_content .text-box .text {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-guest-introduction_content .text-box .text {
    font-size: 18px
  }
}

.is-single .is-tour-points_lists__item {
  border: 3px solid #0f67ae;
  border-radius: 3px;
  padding: 30px 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item {
    border-radius: 2px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-tour-points_lists__item {
    padding: 20px 40px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item {
    padding: 20px;
    border: 2px solid #0f67ae
  }
}

.is-single .is-tour-points_lists__item:not(:first-child) {
  margin-top: 22px
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item:not(:first-child) {
    margin-top: 10px
  }
}

.is-single .is-tour-points_lists__item .point {
  width: fit-content;
  padding: 6px 20px;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border-radius: 100vh;
  color: #fff;
  background: #0f67ae;
  line-height: 1
}

@media(min-width: 480px) {
  .is-single .is-tour-points_lists__item .point {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-tour-points_lists__item .point {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .point {
    padding: 3px 12px
  }
}

.is-single .is-tour-points_lists__item .content {
  margin-top: 24px
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .content {
    margin-top: 12px
  }
}

.is-single .is-tour-points_lists__item .content.has-img {
  display: flex;
  justify-content: space-between
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .content.has-img {
    flex-direction: column
  }
}

.is-single .is-tour-points_lists__item .content.has-img .text-box {
  width: 72%
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .content.has-img .text-box {
    width: 100%
  }
}

.is-single .is-tour-points_lists__item .content.has-img .img {
  width: 25.2%
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .content.has-img .img {
    width: 100%;
    margin-top: 12px
  }
}

.is-single .is-tour-points_lists__item .content.has-img .caption {
  font-size: 12px;
  text-align: right;
  line-height: 1.4;
  margin-top: 6px
}

@media(min-width: 480px) {
  .is-single .is-tour-points_lists__item .content.has-img .caption {
    font-size: 13px;
    font-size: calc(0.00125*100vw + 11.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-tour-points_lists__item .content.has-img .caption {
    font-size: 13px
  }
}

.is-single .is-tour-points_lists__item .content .text-box {
  width: 100%
}

.is-single .is-tour-points_lists__item .content .text-box .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px
}

@media(min-width: 480px) {
  .is-single .is-tour-points_lists__item .content .text-box .title {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-tour-points_lists__item .content .text-box .title {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points_lists__item .content .text-box .title {
    margin-bottom: 12px
  }
}

.is-single .is-tour-points_lists__item .content .text-box .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.66
}

@media(min-width: 480px) {
  .is-single .is-tour-points_lists__item .content .text-box .text {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-tour-points_lists__item .content .text-box .text {
    font-size: 18px
  }
}

.is-single .is-tour-points .free-comment {
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points .free-comment {
    margin-top: 30px
  }
}

.is-single .is-tour-points .youtube-box {
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-tour-points .youtube-box {
    margin-top: 30px
  }
}

.is-single .is-tour-points .youtube-box iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 16/9
}

.is-single .is-hotel-introduction_lists__item {
  margin-top: 27px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item {
    margin-top: 30px
  }
}

.is-single .is-hotel-introduction_lists__item details {
  border-radius: 3px;
  overflow: hidden
}

.is-single .is-hotel-introduction_lists__item details:not(:first-child) {
  margin-top: 32px
}

.is-single .is-hotel-introduction_lists__item summary {
  display: block;
  letter-spacing: .05em;
  font-size: 14px;
  align-items: center;
  cursor: pointer;
  padding: 8px 24px;
  background: #0f67ae;
  color: #fff;
  font-weight: 700;
  position: relative
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item summary {
    font-size: 24px;
    font-size: calc(0.0125*100vw + 8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item summary {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item summary {
    padding: 8px 16px
  }
}

.is-single .is-hotel-introduction_lists__item summary::-webkit-details-marker {
  display: none
}

.is-single .is-hotel-introduction_lists__item summary::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background-image: url("../images/common/icon-arrow-bottom-wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .4s
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item summary::after {
    right: 14px
  }
}

.is-single .is-hotel-introduction_lists__item details[open] {
  border-radius: 3px 3px 0 0
}

.is-single .is-hotel-introduction_lists__item details[open] summary::after {
  transform: rotate(180deg) translateY(50%)
}

.is-single .is-hotel-introduction_lists__item .content {
  border: 3px solid #0f67ae;
  padding: 42px;
  background: #fff;
  border-radius: 0 0 3px 3px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .content {
    padding: 20px;
    border: 2px solid #0f67ae
  }
}

.is-single .is-hotel-introduction_lists__item .text-box+.text-box {
  border-top: 1px solid #d0d1d6;
  margin-top: 60px;
  padding-top: 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box+.text-box {
    margin-top: 30px;
    padding-top: 30px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .img {
  margin-bottom: 40px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box .img {
    margin-bottom: 20px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .img .caption {
  font-size: 13px;
  text-align: right;
  display: block
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item .text-box .img .caption {
    font-size: 15px;
    font-size: calc(0.0025*100vw + 11.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item .text-box .img .caption {
    font-size: 15px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item .text-box-title {
    font-size: 36px;
    font-size: calc(0.0225*100vw + 7.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item .text-box-title {
    font-size: 36px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box-text {
  font-size: 13px;
  margin-top: 10px;
  line-height: 2.2;
  font-weight: 400
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item .text-box-text {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item .text-box-text {
    font-size: 18px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box-other {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.8;
  font-weight: 400
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item .text-box-other {
    font-size: 15px;
    font-size: calc(0.0025*100vw + 11.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item .text-box-other {
    font-size: 15px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .inner_lists {
  margin-top: 30px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists {
    margin-top: 12px
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item {
  margin-top: 10px;
  display: flex;
  align-items: center
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item {
    margin-top: 0
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item i {
  width: 20px
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item i {
    width: .9em
  }
}

.is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item .text {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px
}

@media(min-width: 480px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item .text {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item .text {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-hotel-introduction_lists__item .text-box .inner_lists__item .text {
    margin-left: 6px
  }
}

.is-single .is-price-list_body {
  border-radius: 10px;
  padding: 60px 72px 80px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body {
    border-radius: 5px;
    padding: 40px 20px 25px
  }
}

.is-single .is-price-list_body .price-lists__item {
  display: flex;
  background: #fff;
  border: 1px solid #0f67ae;
  border-radius: 5px;
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item {
    border-radius: 2px
  }
}

.is-single .is-price-list_body .price-lists__item:not(:first-child) {
  margin-top: 26px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item:not(:first-child) {
    margin-top: 16px
  }
}

.is-single .is-price-list_body .price-lists__item .title,
.is-single .is-price-list_body .price-lists__item .content {
  padding: 17px 10px
}

@media only screen and (max-width:640px) {

  .is-single .is-price-list_body .price-lists__item .title,
  .is-single .is-price-list_body .price-lists__item .content {
    padding: 14px 4px
  }
}

.is-single .is-price-list_body .price-lists__item .title {
  width: 138px;
  line-height: 1;
  background: #0f67ae;
  color: #fff;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .title {
    width: 68px
  }
}

.is-single .is-price-list_body .price-lists__item .content {
  position: relative;
  width: calc(100% - 138px)
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content {
    width: calc(100% - 68px);
    padding: 12px
  }
}

.is-single .is-price-list_body .price-lists__item .content.pd0 {
  padding: 0
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
  }
}

.is-single .is-price-list_body .price-lists__item .content .content_lists__item label {
  line-height: 1;
  cursor: pointer;
  font-size: 13px
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item label {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item label {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item label {
    width: 50%
  }
}

.is-single .is-price-list_body .price-lists__item .content .content_lists__item label:not(:first-child) {
  margin-left: 20px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item label:not(:first-child) {
    margin-left: 0
  }
}

.is-single .is-price-list_body .price-lists__item .content .content_lists__item label small {
  font-size: inherit
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .content_lists__item label small {
    font-size: 11px
  }
}

.is-single .is-price-list_body .price-lists__item .content .content_lists__item label input {
  margin-top: 0
}

.is-single .is-price-list_body .price-lists__item .content.select-content {
  position: relative
}

.is-single .is-price-list_body .price-lists__item .content.select-content .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  width: 7px;
  height: auto
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content.select-content .arrow {
    right: 12px;
    width: 5px
  }
}

.is-single .is-price-list_body .price-lists__item .content .select-input,
.is-single .is-price-list_body .price-lists__item .content .room-selector {
  padding: 17px 24px;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

@media only screen and (max-width:640px) {

  .is-single .is-price-list_body .price-lists__item .content .select-input,
  .is-single .is-price-list_body .price-lists__item .content .room-selector {
    padding: 12px
  }
}

.is-single .is-price-list_body .price-lists__item .content .select-input {
  font-size: 13px;
  position: relative;
  cursor: pointer
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .content .select-input {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .content .select-input {
    font-size: 16px
  }
}

.is-single .is-price-list_body .price-lists__item .content .select-input::-ms-expand {
  display: none
}

.is-single .is-price-list_body .price-lists__item .content .select-input option {
  line-height: 1;
  cursor: pointer;
  font-size: 13px
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .content .select-input option {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .content .select-input option {
    font-size: 16px
  }
}

.is-single .is-price-list_body .price-lists__item .content .select-input option[selected] {
  color: #9d9da5
}

.is-single .is-price-list_body .price-lists__item .content .room-selector {
  display: flex;
  gap: 20px;
  align-items: center
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector {
    flex-direction: column;
    align-items: start;
    gap: 6px
  }
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .room-type {
  display: flex;
  align-items: center;
  gap: 10px
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:not(:first-child) {
  margin-left: 40px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:not(:first-child) {
    margin-left: 0
  }
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:nth-child(1) .label {
  width: 80px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:nth-child(1) .label {
    width: 37vw
  }
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:nth-child(2) .label {
  width: 130px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .room-type:nth-child(2) .label {
    width: 37vw
  }
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .label {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .label {
    font-size: 16px
  }
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  color: #0f67ae;
  background: #f2f2f5;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  padding: 0
}

.is-single .is-price-list_body .price-lists__item .content .room-selector .count {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  display: inline-block
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .count {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .price-lists__item .content .room-selector .count {
    font-size: 16px
  }
}

.is-single .is-price-list_body .price-lists__item.is-vertical {
  flex-direction: column
}

.is-single .is-price-list_body .price-lists__item.is-vertical .title {
  width: 100%;
  justify-content: flex-start;
  padding-left: 24px;
  padding-right: 24px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .price-lists__item.is-vertical .title {
    padding-left: 16px;
    padding-right: 16px
  }
}

.is-single .is-price-list_body .price-lists__item.is-vertical .content {
  width: 100%
}

.is-single .is-price-list_body .tour-code {
  margin-top: 14px;
  line-height: 1;
  font-weight: 400;
  font-size: 13px
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .tour-code {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .tour-code {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .tour-code {
    margin-top: 10px
  }
}

.is-single .is-price-list_body .calendar-content,
.is-single .is-price-list_body .option-content {
  margin-top: 60px
}

@media only screen and (max-width:640px) {

  .is-single .is-price-list_body .calendar-content,
  .is-single .is-price-list_body .option-content {
    margin-top: 30px
  }
}

.is-single .is-price-list_body .calendar-content .common-title,
.is-single .is-price-list_body .option-content .common-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px
}

@media(min-width: 480px) {

  .is-single .is-price-list_body .calendar-content .common-title,
  .is-single .is-price-list_body .option-content .common-title {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-price-list_body .calendar-content .common-title,
  .is-single .is-price-list_body .option-content .common-title {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {

  .is-single .is-price-list_body .calendar-content .common-title,
  .is-single .is-price-list_body .option-content .common-title {
    margin-bottom: 4px
  }
}

.is-single .is-price-list_body .calendar-content .common-title small,
.is-single .is-price-list_body .option-content .common-title small {
  font-size: 12px;
  font-weight: 700
}

@media(min-width: 480px) {

  .is-single .is-price-list_body .calendar-content .common-title small,
  .is-single .is-price-list_body .option-content .common-title small {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-price-list_body .calendar-content .common-title small,
  .is-single .is-price-list_body .option-content .common-title small {
    font-size: 16px
  }
}

.is-single .is-price-list_body .calendar-content {
  position: relative
}

.is-single .is-price-list_body .calendar-content .calendar table {
  border-collapse: collapse;
  width: 100%
}

.is-single .is-price-list_body .calendar-content .calendar th,
.is-single .is-price-list_body .calendar-content .calendar td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center
}

.is-single .is-price-list_body .calendar-content .calendar th {
  background-color: #f4f4f4
}

.is-single .is-price-list_body .calendar-content .notice {
  width: fit-content;
  margin-left: auto;
  margin-top: 10px
}

.is-single .is-price-list_body .calendar-content .notice span {
  display: block;
  font-size: 12px;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .calendar-content .notice span {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .calendar-content .notice span {
    font-size: 16px
  }
}

.is-single .is-price-list_body .calendar-content .notice span.is-blue {
  color: #0f67ae
}

.is-single .is-price-list_body .calendar-content .notice span.is-orange {
  color: #c5630c
}

.is-single .is-price-list_body .calendar-content-table {
  margin-top: 34px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc
}

.is-single .is-price-list_body .calendar-content-table th,
.is-single .is-price-list_body .calendar-content-table td {
  border: 1px solid #ccc
}

.is-single .is-price-list_body .calendar-content-table thead {
  background: #0f67ae
}

.is-single .is-price-list_body .calendar-content-table thead th {
  font-size: 13px;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 16px
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .calendar-content-table thead th {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .calendar-content-table thead th {
    font-size: 18px
  }
}

.is-single .is-price-list_body .calendar-content-table thead th:nth-child(1) {
  width: 45%
}

.is-single .is-price-list_body .calendar-content-table thead th:nth-child(2) {
  width: 30%
}

.is-single .is-price-list_body .calendar-content-table thead th:nth-child(3) {
  width: 25%
}

.is-single .is-price-list_body .calendar-content-table tbody {
  background: #fff
}

.is-single .is-price-list_body .calendar-content-table tbody td {
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 16px
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .calendar-content-table tbody td {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .calendar-content-table tbody td {
    font-size: 16px
  }
}

.is-single .is-price-list_body .option-content .price-lists__item:not(:first-child) {
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .price-lists__item:not(:first-child) {
    margin-top: 25px
  }
}

.is-single .is-price-list_body .option-content .content_lists {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 6px 0
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .content_lists {
    flex-direction: column
  }
}

.is-single .is-price-list_body .option-content .content_lists__item {
  width: 50%
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .content_lists__item {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .content_lists__item label {
    width: 100% !important;
    margin-bottom: 4px
  }
}

.is-single .is-price-list_body .option-content .ac-content {
  margin-top: 27px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content {
    margin-top: 10px
  }
}

.is-single .is-price-list_body .option-content .ac-content details:not(:first-child) {
  margin-top: 32px
}

.is-single .is-price-list_body .option-content .ac-content summary {
  display: block;
  letter-spacing: .05em;
  text-align: center;
  font-size: 13px;
  align-items: center;
  cursor: pointer;
  padding: 9px 24px;
  background: #1d3751;
  color: #fff;
  font-weight: 700;
  position: relative
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content summary {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content summary {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content summary {
    padding: 2px 24px
  }
}

.is-single .is-price-list_body .option-content .ac-content summary::-webkit-details-marker {
  display: none
}

.is-single .is-price-list_body .option-content .ac-content summary::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background-image: url("../images/common/icon-arrow-bottom-wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .4s
}

.is-single .is-price-list_body .option-content .ac-content details[open] summary::after {
  transform: rotate(180deg) translateY(50%)
}

.is-single .is-price-list_body .option-content .ac-content .text-box {
  background-color: #fff;
  padding: 30px 40px 40px;
  border: 3px solid #1d3751
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box {
    padding: 12px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-title {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-title {
    font-size: 18px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box-title:not(:first-child) {
  margin-top: 30px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-title:not(:first-child) {
    margin-top: 18px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box-title.is-left {
  text-align: left;
  font-weight: 400
}

.is-single .is-price-list_body .option-content .ac-content .text-box-price strong {
  font-size: 24px;
  font-weight: 700;
  color: #0f67ae;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-price strong {
    font-size: 30px;
    font-size: calc(0.0075*100vw + 20.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-price strong {
    font-size: 30px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box-price small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-price small {
    font-size: 18px;
    font-size: calc(0.0075*100vw + 8.4px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-price small {
    font-size: 18px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box-text {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
  font-feature-settings: "palt"
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-text {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-text {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box-text {
    line-height: 2;
    margin-top: 8px
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box .indent {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.85
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box .indent {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box .indent {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .option-content .ac-content .text-box .indent {
    line-height: 1.6
  }
}

.is-single .is-price-list_body .option-content .ac-content .text-box .indent a {
  color: #0f67ae;
  text-decoration: underline;
  font-size: inherit
}

.is-single .is-price-list_body .total-content {
  width: 75.3%;
  margin: 60px auto 0;
  background: #fff;
  border: 3px solid #0f67ae;
  padding: 36px;
  border-radius: 3px;
  text-align: center
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .total-content {
    border-radius: 2px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .total-content {
    width: 100%;
    margin: 30px auto 0;
    border: 2px solid #0f67ae;
    padding: 16px
  }
}

.is-single .is-price-list_body .total-content .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .total-content .title {
    font-size: 24px;
    font-size: calc(0.0125*100vw + 8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .total-content .title {
    font-size: 24px
  }
}

.is-single .is-price-list_body .total-content .price {
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-size: 36px;
  font-weight: 500;
  color: #0f67ae;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .total-content .price {
    font-size: 60px;
    font-size: calc(0.03*100vw + 21.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .total-content .price {
    font-size: 60px
  }
}

.is-single .is-price-list_body .total-content .price span {
  font-size: 14px;
  font-weight: 500;
  color: #333
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .total-content .price span {
    font-size: 24px;
    font-size: calc(0.0125*100vw + 8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .total-content .price span {
    font-size: 24px
  }
}

.is-single .is-price-list_body .total-content .notice {
  margin-top: 10px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list_body .total-content .notice {
    margin-top: 0
  }
}

.is-single .is-price-list_body .total-content .notice-text {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 1.4
}

@media(min-width: 480px) {
  .is-single .is-price-list_body .total-content .notice-text {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-price-list_body .total-content .notice-text {
    font-size: 16px
  }
}

.is-single .is-price-list .primary_btn {
  margin-top: 70px
}

@media only screen and (max-width:640px) {
  .is-single .is-price-list .primary_btn {
    margin-top: 30px
  }
}

.is-single .is-schedule_lists__item:not(:first-child) {
  margin-top: 80px
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule_lists__item:not(:first-child) {
    margin-top: 40px
  }
}

.is-single .is-schedule_lists__item-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-single .is-schedule_lists__item-title {
    font-size: 18px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-schedule_lists__item-title {
    font-size: 24px
  }
}

.is-single .is-schedule .inner_lists {
  margin-top: 20px
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists {
    margin-top: 16px
  }
}

.is-single .is-schedule .inner_lists__item {
  background: #fff;
  border: 1px solid #0f67ae;
  border-radius: 5px;
  overflow: hidden
}

.is-single .is-schedule .inner_lists__item:not(:first-child) {
  margin-top: 26px
}

.is-single .is-schedule .inner_lists__item .title {
  padding: 16px;
  width: 100%;
  line-height: 1;
  background: #0f67ae;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center
}

@media(min-width: 480px) {
  .is-single .is-schedule .inner_lists__item .title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-schedule .inner_lists__item .title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists__item .title {
    padding: 8px
  }
}

.is-single .is-schedule .inner_lists__item .content {
  width: 100%;
  display: flex;
  text-align: center
}

.is-single .is-schedule .inner_lists__item .content .text,
.is-single .is-schedule .inner_lists__item .content .stay {
  font-size: 13px;
  font-weight: 400;
  padding: 28px;
  line-height: 1.4
}

@media(min-width: 480px) {

  .is-single .is-schedule .inner_lists__item .content .text,
  .is-single .is-schedule .inner_lists__item .content .stay {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-schedule .inner_lists__item .content .text,
  .is-single .is-schedule .inner_lists__item .content .stay {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {

  .is-single .is-schedule .inner_lists__item .content .text,
  .is-single .is-schedule .inner_lists__item .content .stay {
    padding: 8px
  }
}

.is-single .is-schedule .inner_lists__item .content .text {
  width: 76%;
  display: flex;
  justify-content: center;
  align-items: center
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists__item .content .text {
    width: 72%
  }
}

.is-single .is-schedule .inner_lists__item .content .stay {
  width: 24%;
  border-left: 1px solid #0f67ae;
  display: flex;
  gap: 6px;
  flex-direction: column;
  justify-content: center
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists__item .content .stay {
    width: 28%
  }
}

.is-single .is-schedule .inner_lists__item .content .stay .location {
  display: block;
  font-size: 13px;
  line-height: 1.4
}

@media(min-width: 480px) {
  .is-single .is-schedule .inner_lists__item .content .stay .location {
    font-size: 15px;
    font-size: calc(0.0025*100vw + 11.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-schedule .inner_lists__item .content .stay .location {
    font-size: 15px
  }
}

.is-single .is-schedule .inner_lists__item .content .stay .meal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-schedule .inner_lists__item .content .stay .meal {
    flex-wrap: wrap
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists__item .content .stay .meal {
    gap: 4px;
    flex-wrap: wrap
  }
}

.is-single .is-schedule .inner_lists__item .content .stay .meal .meal-icon {
  width: 40px;
  margin: 0
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-single .is-schedule .inner_lists__item .content .stay .meal .meal-icon {
    width: 24%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-schedule .inner_lists__item .content .stay .meal .meal-icon {
    width: 40%
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-schedule .inner_lists__item .content .stay .meal .meal-icon {
    width: 34%
  }
}

.is-single .is-schedule .inner_lists__item .content+.content {
  border-top: 1px solid #0f67ae
}

.is-single .is-stadium-map_content,
.is-single .is-course-map_content {
  position: relative
}

.is-single .is-stadium-map_content+.is-stadium-map_content,
.is-single .is-course-map_content+.is-stadium-map_content {
  margin-top: 40px
}

@media only screen and (max-width:640px) {

  .is-single .is-stadium-map_content+.is-stadium-map_content,
  .is-single .is-course-map_content+.is-stadium-map_content {
    margin-top: 24px
  }
}

.is-single .is-stadium-map_content+.is-course-map_content,
.is-single .is-course-map_content+.is-course-map_content {
  margin-top: 40px
}

@media only screen and (max-width:640px) {

  .is-single .is-stadium-map_content+.is-course-map_content,
  .is-single .is-course-map_content+.is-course-map_content {
    margin-top: 24px
  }
}

.is-single .is-stadium-map_content a,
.is-single .is-course-map_content a {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  display: block
}

.is-single .is-stadium-map_content a .text-box,
.is-single .is-course-map_content a .text-box {
  position: absolute;
  text-align: center;
  filter: drop-shadow(0 0 10px #000);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

@media only screen and (max-width:640px) {

  .is-single .is-stadium-map_content a .text-box,
  .is-single .is-course-map_content a .text-box {
    width: 100%
  }
}

.is-single .is-stadium-map_content a .text-box .title,
.is-single .is-course-map_content a .text-box .title {
  font-size: 15px;
  color: #fff;
  line-height: 1.2
}

@media(min-width: 480px) {

  .is-single .is-stadium-map_content a .text-box .title,
  .is-single .is-course-map_content a .text-box .title {
    font-size: 30px;
    font-size: calc(0.01875*100vw + 6px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-stadium-map_content a .text-box .title,
  .is-single .is-course-map_content a .text-box .title {
    font-size: 30px
  }
}

.is-single .is-stadium-map_content a .text-box .text,
.is-single .is-course-map_content a .text-box .text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin: 20px auto 0;
  color: #fff;
  position: relative;
  line-height: 1.2;
  position: relative;
  width: fit-content
}

@media(min-width: 480px) {

  .is-single .is-stadium-map_content a .text-box .text,
  .is-single .is-course-map_content a .text-box .text {
    font-size: 24px;
    font-size: calc(0.01375*100vw + 6.4px)
  }
}

@media(min-width: 1280px) {

  .is-single .is-stadium-map_content a .text-box .text,
  .is-single .is-course-map_content a .text-box .text {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {

  .is-single .is-stadium-map_content a .text-box .text,
  .is-single .is-course-map_content a .text-box .text {
    margin: 4px auto 0
  }
}

.is-single .is-stadium-map_content a .text-box .text .arrow,
.is-single .is-course-map_content a .text-box .text .arrow {
  margin-left: 10px
}

@media only screen and (max-width:640px) {

  .is-single .is-stadium-map_content a .text-box .text .arrow,
  .is-single .is-course-map_content a .text-box .text .arrow {
    margin-left: 6px;
    width: 5px
  }
}

.is-single .is-stadium-map_content a .text-box .text .arrow svg path,
.is-single .is-course-map_content a .text-box .text .arrow svg path {
  fill: #fff
}

.is-single .stadium-map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease
}

.is-single .stadium-map-modal.show {
  opacity: 1;
  visibility: visible
}

.is-single .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  cursor: pointer
}

.is-single .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  overflow: hidden
}

.is-single .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease
}

@media only screen and (max-width:640px) {
  .is-single .modal-close {
    top: 5px;
    right: 10px;
    width: 25px;
    height: 25px;
    font-size: 16px
  }
}

.is-single .modal-close:hover {
  background: rgba(0, 0, 0, .9)
}

.is-single .modal-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block
}

.is-single .is-travel-conditions-text {
  margin-top: 20px;
  padding-left: 1em;
  text-indent: -1em
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions-text {
    margin-top: 12px
  }
}

.is-single .is-travel-conditions .content_lists__item {
  display: flex;
  border: 1px solid #0f67ae;
  border-radius: 5px;
  overflow: hidden
}

.is-single .is-travel-conditions .content_lists__item:not(:first-child) {
  margin-top: 26px
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item:not(:first-child) {
    margin-top: 12px
  }
}

.is-single .is-travel-conditions .content_lists__item-title {
  padding: 17px 10px;
  width: 17%;
  line-height: 1.2;
  background: #0f67ae;
  color: #fff;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center
}

@media(min-width: 480px) {
  .is-single .is-travel-conditions .content_lists__item-title {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-travel-conditions .content_lists__item-title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-title {
    width: 20%;
    padding: 0 4px
  }
}

.is-single .is-travel-conditions .content_lists__item-text {
  width: 83%;
  padding: 26px 23px;
  background: #fff;
  line-height: 1.4
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-text {
    width: 80%;
    padding: 12px
  }
}

.is-single .is-travel-conditions .content_lists__item-text .icon {
  margin-bottom: 12px
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-text .icon {
    margin-bottom: 8px
  }
}

.is-single .is-travel-conditions .content_lists__item-text .icon img {
  margin: 0
}

.is-single .is-travel-conditions .content_lists__item-text .inner_lists__item {
  display: flex
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item {
    flex-direction: column
  }
}

.is-single .is-travel-conditions .content_lists__item-text .inner_lists__item:not(:first-child) {
  margin-top: 16px
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item:not(:first-child) {
    margin-top: 10px
  }
}

.is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .title {
  font-size: 13px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .title {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .title {
    font-size: 16px
  }
}

.is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .text {
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .text {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .text {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions .content_lists__item-text .inner_lists__item .text {
    margin-left: 0;
    margin-top: 4px
  }
}

.is-single .is-travel-conditions_operation {
  background: #fff;
  border: 1px solid #a6a6a6;
  border-radius: 5px;
  padding: 32px;
  width: 720px;
  margin: 40px auto 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .is-travel-conditions_operation {
    width: 84%
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions_operation {
    padding: 18px 18px 24px;
    margin: 28px auto 0;
    width: 84%
  }
}

.is-single .is-travel-conditions_operation-title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  position: relative
}

@media(min-width: 480px) {
  .is-single .is-travel-conditions_operation-title {
    font-size: 18px;
    font-size: calc(0.0025*100vw + 14.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-travel-conditions_operation-title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions_operation-title {
    padding-bottom: 16px;
    margin-bottom: 20px
  }
}

.is-single .is-travel-conditions_operation-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #4a4a4a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)
}

.is-single .is-travel-conditions_operation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions_operation-content {
    gap: 16px;
    flex-direction: column
  }
}

.is-single .is-travel-conditions_operation-content .text {
  font-size: 14px;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-single .is-travel-conditions_operation-content .text {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-single .is-travel-conditions_operation-content .text {
    font-size: 16px
  }
}

.is-single .is-travel-conditions_operation-content .img {
  width: 200px
}

@media only screen and (max-width:640px) {
  .is-single .is-travel-conditions_operation-content .img {
    width: 72%
  }
}

.is-single .is-precautions .lead {
  font-size: 14px;
  font-weight: 700;
  text-align: center
}

@media(min-width: 375px) {
  .is-single .is-precautions .lead {
    font-size: 24px;
    font-size: calc(0.0076628352*100vw + 11.1264367816px)
  }
}

@media(min-width: 1680px) {
  .is-single .is-precautions .lead {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .lead {
    line-height: 1.42
  }
}

.is-single .is-precautions .text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center
}

@media(min-width: 375px) {
  .is-single .is-precautions .text {
    font-size: 18px;
    font-size: calc(0.0038314176*100vw + 11.5632183908px)
  }
}

@media(min-width: 1680px) {
  .is-single .is-precautions .text {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .text {
    margin-top: 14px;
    line-height: 1.53
  }
}

.is-single .is-precautions .link {
  margin-top: 10px;
  text-align: center
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .link {
    margin-top: 14px
  }
}

.is-single .is-precautions .link a {
  font-size: 13px;
  color: #0f67ae;
  text-decoration: underline
}

@media(min-width: 375px) {
  .is-single .is-precautions .link a {
    font-size: 16px;
    font-size: calc(0.0022988506*100vw + 12.1379310345px)
  }
}

@media(min-width: 1680px) {
  .is-single .is-precautions .link a {
    font-size: 16px
  }
}

.is-single .is-precautions .link a:hover {
  opacity: .5
}

.is-single .is-precautions .text-box {
  height: 642px;
  margin-top: 67px;
  padding: 40px;
  border: 3px solid #1d3751;
  overflow-y: scroll
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .text-box {
    margin-top: 20px;
    height: 1229px;
    padding: 4vw
  }
}

.is-single .is-precautions .text-box_wrap {
  text-align: left
}

.is-single .is-precautions .text-box_wrap h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px
}

@media(min-width: 375px) {
  .is-single .is-precautions .text-box_wrap h4 {
    font-size: 18px;
    font-size: calc(0.0038314176*100vw + 11.5632183908px)
  }
}

@media(min-width: 1680px) {
  .is-single .is-precautions .text-box_wrap h4 {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .text-box_wrap h4 {
    margin-bottom: 6px;
    line-height: 1.46
  }
}

.is-single .is-precautions .text-box_wrap p {
  font-size: 12px;
  line-height: 1.66;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px
}

@media(min-width: 375px) {
  .is-single .is-precautions .text-box_wrap p {
    font-size: 16px;
    font-size: calc(0.0030651341*100vw + 10.8505747126px)
  }
}

@media(min-width: 1680px) {
  .is-single .is-precautions .text-box_wrap p {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .text-box_wrap p {
    margin-bottom: 4px
  }
}

.is-single .is-precautions .text-box_wrap p+h4 {
  margin-top: 40px
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .text-box_wrap p+h4 {
    margin-top: 20px
  }
}

.is-single .is-precautions .primary_btn {
  margin-top: 80px
}

@media only screen and (max-width:640px) {
  .is-single .is-precautions .primary_btn {
    margin-top: 40px
  }
}

.is-single .tags_item {
  background: #edeef3;
  padding: 9px 16px;
  line-height: 1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  font-size: 11px;
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px
}

@media(min-width: 375px) {
  .is-single .tags_item {
    font-size: 11px;
    font-size: calc(0*100vw + 11px)
  }
}

@media(min-width: 1680px) {
  .is-single .tags_item {
    font-size: 11px
  }
}

@media only screen and (max-width:640px) {
  .is-single .tags_item {
    padding: 7px 9px
  }
}

.is-single .tags_item-comp {
  color: #007abe
}

.is-single .info {
  display: flex;
  align-items: center
}

@media only screen and (max-width:640px) {
  .is-single .info {
    margin-bottom: 8px
  }
}

.is-single .info .time {
  margin-right: 24px;
  color: #9ca9b2;
  font-size: 15px
}

@media(min-width: 375px) {
  .is-single .info .time {
    font-size: 22px;
    font-size: calc(0.0053639847*100vw + 12.9885057471px)
  }
}

@media(min-width: 1680px) {
  .is-single .info .time {
    font-size: 22px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-single .info .time {
    margin-right: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-single .info .time {
    margin-right: 12px
  }
}

.is-single .info .cat {
  width: 18%;
  height: 34px;
  line-height: 34px;
  min-width: 200px;
  background: #007abe;
  color: #fff;
  border-radius: 100vh;
  margin-right: 24px;
  text-align: center;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .is-single .info .cat {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-single .info .cat {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-single .info .cat {
    min-width: 150px;
    margin-right: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .info .cat {
    width: 32vw;
    min-width: auto;
    height: 24px;
    line-height: 24px;
    margin-right: 0
  }
}

.is-single .btn_more a {
  display: block;
  margin: 50px auto 0
}

.is-single .the_content h2,
.is-single .the_content h2 span {
  position: relative;
  margin-top: 60px;
  padding-bottom: 0;
  padding-left: 40px;
  margin-bottom: 40px;
  text-align: left;
  font-size: 22px;
  line-height: 1.2
}

@media(min-width: 375px) {

  .is-single .the_content h2,
  .is-single .the_content h2 span {
    font-size: 36px;
    font-size: calc(0.0107279693*100vw + 17.9770114943px)
  }
}

@media(min-width: 1680px) {

  .is-single .the_content h2,
  .is-single .the_content h2 span {
    font-size: 36px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-single .the_content h2,
  .is-single .the_content h2 span {
    margin-top: 40px;
    margin-bottom: 20px
  }
}

@media only screen and (max-width:640px) {

  .is-single .the_content h2,
  .is-single .the_content h2 span {
    margin-top: 30px;
    padding-left: .8em;
    margin-bottom: 20px
  }
}

.is-single .the_content h2::before,
.is-single .the_content h2 span::before {
  content: "";
  width: 8px;
  height: 100%;
  background: #007abe;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

@media only screen and (max-width:640px) {

  .is-single .the_content h2::before,
  .is-single .the_content h2 span::before {
    width: 4px
  }
}

.is-single .the_content h3 {
  line-height: 1.69;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f5;
  font-size: 18px
}

@media(min-width: 375px) {
  .is-single .the_content h3 {
    font-size: 22px;
    font-size: calc(0.001532567*100vw + 17.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content h3 {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .is-single .the_content h3 {
    line-height: 1.6
  }
}

.is-single .the_content h4,
.is-single .the_content h4 span {
  font-size: 18px
}

@media(min-width: 375px) {

  .is-single .the_content h4,
  .is-single .the_content h4 span {
    font-size: 20px;
    font-size: calc(0*100vw + 18px)
  }
}

@media(min-width: 1680px) {

  .is-single .the_content h4,
  .is-single .the_content h4 span {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {

  .is-single .the_content h4,
  .is-single .the_content h4 span {
    line-height: 1.4
  }
}

.is-single .the_content h5,
.is-single .the_content h5 span {
  font-size: 18px
}

@media(min-width: 375px) {

  .is-single .the_content h5,
  .is-single .the_content h5 span {
    font-size: 18px;
    font-size: calc(0*100vw + 18px)
  }
}

@media(min-width: 1680px) {

  .is-single .the_content h5,
  .is-single .the_content h5 span {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {

  .is-single .the_content h5,
  .is-single .the_content h5 span {
    margin: 20px 0 24px;
    line-height: 1.4
  }
}

.is-single .the_content p,
.is-single .the_content span,
.is-single .the_content strong,
.is-single .the_content a,
.is-single .the_content i,
.is-single .the_content em {
  margin-bottom: 36px
}

@media only screen and (max-width:640px) {

  .is-single .the_content p,
  .is-single .the_content span,
  .is-single .the_content strong,
  .is-single .the_content a,
  .is-single .the_content i,
  .is-single .the_content em {
    margin-bottom: 20px
  }
}

.is-single .the_content p {
  margin-bottom: 60px
}

@media only screen and (max-width:640px) {
  .is-single .the_content p {
    line-height: 2;
    margin-bottom: 24px
  }
}

.is-single .the_content p:last-child {
  margin-bottom: 0
}

.is-single .the_content p span.link a {
  color: #1d3751;
  text-decoration: underline
}

.is-single .the_content p small {
  margin-top: 30px;
  font-size: 12px;
  display: block
}

@media(min-width: 375px) {
  .is-single .the_content p small {
    font-size: 12px;
    font-size: calc(0*100vw + 12px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content p small {
    font-size: 12px
  }
}

.is-single .the_content p strong {
  font-weight: 700;
  font-size: inherit
}

.is-single .the_content a {
  color: #007abe;
  text-decoration: underline
}

.is-single .the_content a em {
  color: #007abe;
  text-decoration: none;
  font-style: normal;
  display: inline-block;
  position: relative;
  margin-bottom: 0
}

.is-single .the_content a em:after,
.is-single .the_content a em::before {
  width: 12px;
  height: 12px;
  border: 1px solid #edeef3;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  border-radius: 1px;
  background: none;
  position: absolute;
  content: ""
}

.is-single .the_content a em:after {
  top: 12px;
  right: -16px
}

.is-single .the_content a em:before {
  top: 8px;
  right: -19px
}

.is-single .the_content .btn-more-link a {
  width: 100%;
  color: #fff;
  font-style: normal;
  text-decoration: none
}

.is-single .the_content .img {
  margin: 50px 0
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img {
    margin: 24px 0
  }
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img-flex {
    display: block
  }
}

.is-single .the_content .img-flex figure {
  width: calc((100% - 50px)/2)
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img-flex figure {
    width: 100%;
    margin-bottom: 20px
  }
}

.is-single .the_content .img_item figcaption {
  margin-top: 11px;
  text-align: center;
  font-size: 12px
}

@media(min-width: 375px) {
  .is-single .the_content .img_item figcaption {
    font-size: 14px;
    font-size: calc(0.001532567*100vw + 11.4252873563px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content .img_item figcaption {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img_item figcaption {
    margin-top: 4px;
    word-break: break-all
  }
}

.is-single .the_content .img_item-img {
  margin: 0
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img_item-img {
    display: block
  }
}

.is-single .the_content .img_item-img span {
  width: calc((100% - 50px)/2);
  display: block;
  margin: 0
}

@media only screen and (max-width:640px) {
  .is-single .the_content .img_item-img span {
    width: 100%;
    margin-bottom: 20px
  }
}

.is-single .the_content .img_item-img span img {
  width: 100%
}

.is-single .the_content ul {
  margin: 40px 0
}

@media only screen and (max-width:640px) {
  .is-single .the_content ul {
    margin: 24px 0
  }
}

.is-single .the_content ul li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: .6em
}

.is-single .the_content ul li::before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  background: #007abe;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%
}

@media only screen and (max-width:640px) {
  .is-single .the_content ul li::before {
    top: 11px
  }
}

.is-single .the_content ol {
  margin: 40px 0
}

.is-single .the_content ol li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-bottom: .6em;
  padding-left: 1.1em;
  position: relative
}

.is-single .the_content ol li:before {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: marker;
  content: ""counter(cnt) "";
  color: #007abe;
  position: absolute;
  left: 0
}

.is-single .the_content blockquote {
  padding: 50px;
  background: #edeef3;
  margin-bottom: 50px
}

@media only screen and (max-width:640px) {
  .is-single .the_content blockquote {
    padding: 25px;
    margin-bottom: 30px
  }
}

.is-single .the_content blockquote p {
  margin-bottom: 0
}

.is-single .the_content blockquote ul {
  margin: 0
}

.is-single .the_content blockquote ul li {
  line-height: 1.45
}

.is-single .the_content table {
  width: 100%
}

.is-single .the_content table tr th,
.is-single .the_content table tr td {
  text-align: left
}

.is-single .the_content table+p {
  margin: 10px 0 50px
}

.is-single .the_content .link {
  margin-top: 50px
}

@media only screen and (max-width:640px) {
  .is-single .the_content .link {
    margin-top: 20px;
    line-height: 1.2;
    letter-spacing: 0
  }
}

.is-single .the_content .link-right {
  text-align: right
}

.is-single .the_content .link a {
  text-decoration: none;
  color: #333;
  position: relative;
  padding-right: 20px;
  font-size: 12px
}

@media(min-width: 375px) {
  .is-single .the_content .link a {
    font-size: 16px;
    font-size: calc(0.0030651341*100vw + 10.8505747126px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content .link a {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-single .the_content .link a {
    line-height: 1.2;
    letter-spacing: 0;
    display: inline-block
  }
}

.is-single .the_content .link a::before {
  content: "";
  color: #1d3751;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 52%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

@media only screen and (max-width:640px) {
  .is-single .the_content .link a::before {
    top: 54%
  }
}

.is-single .the_content .link+p {
  margin-top: 50px
}

@media only screen and (max-width:640px) {
  .is-single .the_content .link+p {
    margin-top: 20px
  }
}

.is-single .the_content .article-contact h4 {
  font-size: 18px
}

@media(min-width: 375px) {
  .is-single .the_content .article-contact h4 {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content .article-contact h4 {
    font-size: 27px
  }
}

.is-single .the_content .article-contact h5 {
  font-size: 16px;
  font-weight: 700
}

@media(min-width: 375px) {
  .is-single .the_content .article-contact h5 {
    font-size: 24px;
    font-size: calc(0.0061302682*100vw + 13.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-single .the_content .article-contact h5 {
    font-size: 24px
  }
}

.is-single .the_content .article-contact ul li {
  padding-left: 0
}

.is-single .the_content .article-contact ul li::before {
  content: none
}

.search-form {
  background: linear-gradient(90deg, #075da2, #0f67ae);
  box-shadow: inset 0px 0px 4px 0px rgba(255, 255, 255, .4);
  filter: drop-shadow(0px 6px 10px rgba(57, 57, 57, 0.2));
  border-radius: 5px;
  padding: 30px 8.1%
}

@media only screen and (max-width:640px) {
  .search-form {
    padding: 10px 3vw 20px
  }
}

.search-form-title {
  font-size: 16px;
  color: #fff;
  font-weight: 400
}

@media(min-width: 480px) {
  .search-form-title {
    font-size: 20px;
    font-size: calc(0.005*100vw + 13.6px)
  }
}

@media(min-width: 1280px) {
  .search-form-title {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .search-form-title {
    text-align: center;
    margin-bottom: 8px
  }
}

.search-form form {
  width: 100%;
  display: flex;
  border-radius: 3px;
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .search-form form {
    border-radius: 2px
  }
}

@media only screen and (max-width:640px) {
  .search-form form {
    width: 95%;
    margin: 0 auto
  }
}

.search-form form input {
  width: calc(100% - 76px);
  padding: 18px;
  font-size: 13px
}

@media(min-width: 480px) {
  .search-form form input {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .search-form form input {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .search-form form input {
    width: calc(100% - 52px);
    padding: 10.5px
  }
}

.search-form form button {
  width: 76px;
  background: #193650;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none
}

@media only screen and (max-width:640px) {
  .search-form form button {
    width: 52px
  }
}

.search-form form button i {
  display: block;
  width: 35px;
  margin: 0 auto
}

@media only screen and (max-width:640px) {
  .search-form form button i {
    width: 48%
  }
}

.search-form_lists {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center
}

@media only screen and (max-width:640px) {
  .search-form_lists {
    gap: 8px
  }
}

.search-form_lists__item a {
  display: block;
  background: #fff;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  padding: 7px 12px;
  white-space: nowrap
}

@media only screen and (max-width:640px) {
  .search-form_lists__item a {
    border-radius: 2px
  }
}

@media(min-width: 480px) {
  .search-form_lists__item a {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .search-form_lists__item a {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .search-form_lists__item a {
    padding: .4em .5em
  }
}

.category,
.category-year {
  display: flex
}

.category_title,
.category-year_title {
  width: 10.4%
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .category_title,
  .category-year_title {
    width: 15%
  }
}

@media only screen and (max-width:640px) {

  .category_title,
  .category-year_title {
    width: 24%
  }
}

.category_lists__item span,
.category_lists__item a,
.category-year_lists__item span,
.category-year_lists__item a {
  display: block;
  background-color: #fff;
  line-height: 1
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

@media only screen and (max-width:640px) {
  .calendar-header {
    margin-bottom: 4px
  }
}

.calendar-header button {
  padding: 2px 14px;
  cursor: pointer;
  border: 1px solid #0f67ae;
  background: #fff;
  border-radius: 5px;
  font-size: 12px
}

@media only screen and (max-width:640px) {
  .calendar-header button {
    border-radius: 3px
  }
}

@media only screen and (max-width:640px) {
  .calendar-header button {
    font-size: 10px;
    padding: 2px 8px
  }
}

.calendar-header button:hover {
  color: #fff;
  background: #0f67ae
}

.calendar .current-month {
  font-size: 11px;
  font-weight: 700
}

@media(min-width: 480px) {
  .calendar .current-month {
    font-size: 20px;
    font-size: calc(0.01125*100vw + 5.6px)
  }
}

@media(min-width: 1280px) {
  .calendar .current-month {
    font-size: 20px
  }
}

.calendar .calendar-grid {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative
}

.calendar .calendar-grid .is-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 52, 76, .8);
  border: 1px solid #0f67ae;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center
}

.calendar .calendar-grid .is-overlay.open {
  display: none
}

.calendar .calendar-grid .is-overlay .text {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  font-size: 16px
}

@media(min-width: 480px) {
  .calendar .calendar-grid .is-overlay .text {
    font-size: 22px;
    font-size: calc(0.0075*100vw + 12.4px)
  }
}

@media(min-width: 1280px) {
  .calendar .calendar-grid .is-overlay .text {
    font-size: 22px
  }
}

.calendar .calendar-grid .is-overlay .text small {
  display: block;
  color: #fff;
  line-height: 1.5;
  font-size: 14px
}

@media(min-width: 480px) {
  .calendar .calendar-grid .is-overlay .text small {
    font-size: 17px;
    font-size: calc(0.00375*100vw + 12.2px)
  }
}

@media(min-width: 1280px) {
  .calendar .calendar-grid .is-overlay .text small {
    font-size: 17px
  }
}

.calendar .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  background: #1e4563
}

.calendar .weekdays span {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  padding: 6px 0
}

@media(min-width: 480px) {
  .calendar .weekdays span {
    font-size: 14px;
    font-size: calc(0.005*100vw + 7.6px)
  }
}

@media(min-width: 1280px) {
  .calendar .weekdays span {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .calendar .weekdays span {
    padding: 3px 0
  }
}

.calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  width: 100%
}

.calendar .day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 1px solid #ddd;
  text-align: center;
  position: relative;
  width: 100%;
  min-width: 0
}

@media only screen and (max-width:640px) {
  .calendar .day {
    aspect-ratio: auto
  }
}

.calendar .day:hover {
  background-color: #f0f0f0
}

.calendar .day.selected {
  background-color: #0f67ae
}

.calendar .day.selected .date-number {
  color: #fff
}

.calendar .day.selected .price {
  color: #fff
}

.calendar .day.selected .match-info {
  color: #fff;
  background: rgba(255, 255, 255, .2)
}

.calendar .day.disabled {
  cursor: not-allowed
}

.calendar .day.disabled .date-number,
.calendar .day.disabled .price {
  font-size: 0
}

.calendar .day .date-number {
  width: 100%;
  height: 41%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(30, 69, 99, .05);
  font-size: 10px;
  font-weight: 700
}

@media(min-width: 480px) {
  .calendar .day .date-number {
    font-size: 14px;
    font-size: calc(0.005*100vw + 7.6px)
  }
}

@media(min-width: 1280px) {
  .calendar .day .date-number {
    font-size: 14px
  }
}

.calendar .day .match-info {
  width: 92%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
  color: #e74c3c;
  font-weight: 600;
  padding: 4px;
  margin-top: 4px;
  background: rgba(231, 76, 60, .1);
  border-radius: 2px
}

@media only screen and (max-width:640px) {
  .calendar .day .match-info {
    font-size: 8px;
    padding: 1px 2px
  }
}

.calendar .day .price-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px
}

.calendar .day .price {
  width: 100%;
  display: flex;
  align-items: center;
  height: 59%;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2
}

@media only screen and (max-width:640px) {
  .calendar .day .price {
    transform: scale(0.8)
  }
}

.calendar .day .price.multi-price {
  color: #06c
}

.calendar .day .price.single-price {
  color: #c60
}

.calendar .day.selected .price {
  color: #fff
}

.calendar .day .month-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7em;
  color: #1e4563;
  white-space: nowrap
}

.calendar .day.disabled .month-label {
  color: #ccc
}

.category-year {
  margin-top: 32px
}

@media only screen and (max-width:640px) {
  .category-year {
    margin-top: 16px
  }
}

.category-year_wrap {
  width: 89.6%
}

.category-year_lists {
  border-radius: 10px;
  overflow: hidden;
  width: calc((100% - 64px)/5)
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .category-year_lists {
    width: calc((100% - 36px)/3)
  }
}

@media only screen and (max-width:640px) {
  .category-year_lists {
    width: calc((100% - 8px)/2);
    border-radius: 5px
  }
}

.category-year_lists__item {
  display: none
}

.category-year_lists__item.current {
  display: list-item;
  cursor: pointer;
  position: relative
}

.category-year_lists__item.current::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -40%) rotate(90deg);
  background-image: url("../images/common/chevron-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .category-year_lists__item.current::before {
    width: 8px;
    height: 16px
  }
}

@media only screen and (max-width:640px) {
  .category-year_lists__item.current::before {
    width: 6px;
    height: 12px;
    right: 12px
  }
}

.category-year_lists__item.active::before {
  transform: translate(0, -40%) rotate(-90deg)
}

.category-year_lists__item span,
.category-year_lists__item a {
  padding: 12px 16px 14px 13px
}

@media only screen and (max-width:640px) {

  .category-year_lists__item span,
  .category-year_lists__item a {
    padding: 6px 8px 8px 12px
  }
}

.anker_lists {
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  z-index: 100
}

.anker_lists__item {
  width: calc((100% - 36px)/3);
  margin: 0 18px 18px 0;
  display: flex
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .anker_lists__item {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 16px
  }
}

@media only screen and (max-width:640px) {
  .anker_lists__item {
    width: calc(50% - 4px);
    margin-right: 8px;
    margin-bottom: 8px
  }
}

.anker_lists__item:nth-of-type(3n) {
  margin-right: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .anker_lists__item:nth-of-type(3n) {
    margin-right: 16px
  }
}

@media only screen and (max-width:640px) {
  .anker_lists__item:nth-of-type(3n) {
    margin-right: 8px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .anker_lists__item:nth-of-type(2n) {
    margin-right: 0
  }
}

@media only screen and (max-width:640px) {
  .anker_lists__item:nth-of-type(2n) {
    margin-right: 0
  }
}

.anker_lists__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 30px;
  width: 100%;
  background: #fff;
  position: relative;
  font-size: 15px;
  border-radius: 10px;
  text-align: center;
  flex-grow: 1;
  line-height: 1.4;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .anker_lists__item a {
    font-size: 25px;
    font-size: calc(0.0076628352*100vw + 12.1264367816px)
  }
}

@media(min-width: 1680px) {
  .anker_lists__item a {
    font-size: 25px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .anker_lists__item a {
    padding: 10px 0 26px
  }
}

@media only screen and (max-width:640px) {
  .anker_lists__item a {
    padding: 8px 0 22px;
    border-radius: 5px
  }
}

.anker_lists__item a::before {
  content: "";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s
}

@media(min-width: 375px) {
  .anker_lists__item a::before {
    font-size: 15px;
    font-size: calc(0.0022988506*100vw + 11.1379310345px)
  }
}

@media(min-width: 1680px) {
  .anker_lists__item a::before {
    font-size: 15px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .anker_lists__item a::before {
    bottom: 4px
  }
}

@media only screen and (max-width:640px) {
  .anker_lists__item a::before {
    bottom: 2px
  }
}

.anker_lists__item a:hover {
  color: #007abe
}

.anker_lists__item a:hover::before {
  bottom: 3px;
  color: #007abe
}

.anker_lists-2clm .anker_lists__item {
  width: calc((100% - 16px)/2);
  margin: 0 16px 16px 0;
  display: flex
}

@media only screen and (max-width:640px) {
  .anker_lists-2clm .anker_lists__item {
    width: calc((100% - 8px)/2);
    margin: 0 8px 8px 0
  }
}

.anker_lists-2clm .anker_lists__item:nth-of-type(2n) {
  margin-right: 0
}

.anker_lists.move-page .anker_lists__item {
  opacity: 1
}

.anker_lists.move-page .anker_lists__item.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0
}

.anker_lists.move-page .anker_lists__item a {
  padding: 15px 0
}

.anker_lists.move-page .anker_lists__item a::before {
  transform: translateY(-50%) rotate(-90deg);
  bottom: auto;
  top: 50%;
  line-height: 1;
  left: auto;
  right: 20px
}

.anker_lists.move-page .anker_lists__item a:hover::before {
  right: 17px
}

.anker_lists.move-page .anker_lists__item.current a {
  background-color: #007abe;
  color: #fff
}

.anker_lists.move-page .anker_lists__item.current a:hover::before {
  color: #fff
}

.js-anker_lists_btn {
  width: fit-content;
  margin-left: auto;
  margin-right: auto
}

.js-anker_lists_btn.is-btn-hidden {
  display: none
}

.navi_lang {
  line-height: 1
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_lang {
    display: flex;
    justify-content: center;
    margin-top: 50px
  }
}

@media only screen and (max-width:640px) {
  .navi_lang {
    display: flex;
    justify-content: center;
    margin-top: 10.6vw
  }
}

.navi_lang a {
  font-size: 15px;
  letter-spacing: .015em;
  font-weight: 500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .navi_lang a {
    font-size: 19px;
    font-size: calc(0.0030651341*100vw + 13.8505747126px)
  }
}

@media(min-width: 1680px) {
  .navi_lang a {
    font-size: 19px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_lang a {
    font-size: 24px
  }
}

.navi_lang a i {
  font-size: 15px;
  margin-right: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .navi_lang a i {
    font-size: 18px;
    font-size: calc(0.0022988506*100vw + 14.1379310345px)
  }
}

@media(min-width: 1680px) {
  .navi_lang a i {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_lang a i {
    font-size: 24px
  }
}

.navi_lang a:hover {
  color: #007abe
}

.navi_lang a:hover i {
  color: #007abe
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_lang .slash {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin: 0 20px
  }
}

@media only screen and (max-width:640px) {
  .navi_lang .slash {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin: 0 20px
  }
}

@media only screen and (max-width:640px)and (min-width: 375px) {
  .navi_lang .slash {
    font-size: calc(0.04*100vw + 0px)
  }
}

@media only screen and (max-width:640px)and (min-width: 750px) {
  .navi_lang .slash {
    font-size: 30px
  }
}

.navi_search form {
  background: #edeef3;
  line-height: 1;
  border-radius: 100vh;
  padding: .3em .8em .4em
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_search form {
    padding: 24px 4vw
  }
}

@media only screen and (max-width:640px) {
  .navi_search form {
    display: flex;
    align-items: center;
    width: 74.6vw;
    margin: 0 auto;
    padding: 3.8vw 4vw
  }
}

.navi_search form i {
  color: #9ca9b2;
  font-size: 15px
}

@media(min-width: 375px) {
  .navi_search form i {
    font-size: 16px;
    font-size: calc(0.0007662835*100vw + 14.7126436782px)
  }
}

@media(min-width: 1680px) {
  .navi_search form i {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_search form i {
    font-size: 20px
  }
}

.navi_search form input {
  font-size: 15px;
  letter-spacing: .015em;
  cursor: text;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: textfield
}

@media(min-width: 375px) {
  .navi_search form input {
    font-size: 18px;
    font-size: calc(0.0022988506*100vw + 14.1379310345px)
  }
}

@media(min-width: 1680px) {
  .navi_search form input {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_search form input {
    font-size: 22px;
    margin-left: 2vw;
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .navi_search form input {
    margin-left: 2vw;
    width: 100%
  }
}

.navi_search form input::placeholder {
  color: #9ca9b2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-weight: 500
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_contact {
    display: none
  }
}

@media only screen and (max-width:640px) {
  .navi_contact {
    display: none
  }
}

.navi_contact a {
  color: #fff;
  background: #0f67ae;
  display: block;
  height: 80px;
  padding: 0 2.72em;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: flex;
  align-items: center
}

@media(min-width: 375px) {
  .navi_contact a {
    font-size: 18px;
    font-size: calc(0.0038314176*100vw + 11.5632183908px)
  }
}

@media(min-width: 1680px) {
  .navi_contact a {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .navi_contact a {
    padding: 0 1.5em
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_contact a {
    width: 74.6vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 22px;
    padding: 24px 0
  }
}

@media only screen and (max-width:640px) {
  .navi_contact a {
    width: 74.6vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 4.3vw 0
  }
}

.navi_contact a i {
  color: #fff;
  font-size: 15px;
  margin-right: 8px
}

@media(min-width: 375px) {
  .navi_contact a i {
    font-size: 16px;
    font-size: calc(0.0007662835*100vw + 14.7126436782px)
  }
}

@media(min-width: 1680px) {
  .navi_contact a i {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_contact a i {
    font-size: 24px;
    margin-right: 12px
  }
}

.navi_contact a:hover {
  background: #007abe
}

.navi_contact-sp {
  display: none
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .navi_contact-sp {
    display: block
  }
}

@media only screen and (max-width:640px) {
  .navi_contact-sp {
    display: block
  }
}

.navi_contact-sp_lists__item {
  margin-bottom: 60px
}

@media only screen and (max-width:640px) {
  .navi_contact-sp_lists__item {
    margin-bottom: 30px
  }
}

.navi_contact-sp_lists__item .title {
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  position: relative
}

@media(min-width: 480px) {
  .navi_contact-sp_lists__item .title {
    font-size: 28px;
    font-size: calc(0.0175*100vw + 5.6px)
  }
}

@media(min-width: 1280px) {
  .navi_contact-sp_lists__item .title {
    font-size: 28px
  }
}

.navi_contact-sp_lists__item .title a {
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translate(100%, -50%);
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  color: #0f67ae
}

@media(min-width: 480px) {
  .navi_contact-sp_lists__item .title a {
    font-size: 24px;
    font-size: calc(0.015*100vw + 4.8px)
  }
}

@media(min-width: 1280px) {
  .navi_contact-sp_lists__item .title a {
    font-size: 24px
  }
}

.contact_lists__item:not(:first-child) {
  margin-top: 20px
}

@media only screen and (max-width:640px) {
  .contact_lists__item:not(:first-child) {
    margin-top: 10px
  }
}

.contact_lists__item .btn {
  color: #fff;
  background: #0f67ae;
  display: block;
  padding: 0 2.72em;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: flex;
  align-items: center;
  position: relative
}

@media(min-width: 375px) {
  .contact_lists__item .btn {
    font-size: 18px;
    font-size: calc(0.0038314176*100vw + 11.5632183908px)
  }
}

@media(min-width: 1680px) {
  .contact_lists__item .btn {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .contact_lists__item .btn {
    padding: 0 1.5em
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .contact_lists__item .btn {
    width: 78.9vw;
    height: 90px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 15vw
  }
}

@media only screen and (max-width:640px) {
  .contact_lists__item .btn {
    width: 78.9vw;
    height: 50px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 15vw
  }
}

.contact_lists__item .btn i {
  width: 54px
}

@media only screen and (max-width:640px) {
  .contact_lists__item .btn i {
    width: 27px
  }
}

.contact_lists__item .btn .text {
  width: calc(100% - 54px);
  margin-left: 2.5vw;
  color: #fff;
  font-size: 13px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .contact_lists__item .btn .text {
    font-size: 26px;
    font-size: calc(0.01625*100vw + 5.2px)
  }
}

@media(min-width: 1280px) {
  .contact_lists__item .btn .text {
    font-size: 26px
  }
}

@media only screen and (max-width:640px) {
  .contact_lists__item .btn .text {
    width: calc(100% - 27px)
  }
}

.contact_lists__item .btn .text .text-en {
  display: block;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .1em
}

@media(min-width: 480px) {
  .contact_lists__item .btn .text .text-en {
    font-size: 30px;
    font-size: calc(0.0175*100vw + 7.6px)
  }
}

@media(min-width: 1280px) {
  .contact_lists__item .btn .text .text-en {
    font-size: 30px
  }
}

.contact_lists__item .btn .arrow {
  width: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%)
}

.contact_lists__item .btn .arrow svg path {
  fill: #fff
}

.arrow-hover:hover .arrow svg {
  transform: translateX(4px)
}

.arrow-hover:hover .arrow svg path {
  fill: #007abe
}

.arrow {
  line-height: 1;
  display: block
}

.arrow svg {
  width: 100%
}

.swiper-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 26px
}

.swiper-button .swiper-button-prev,
.swiper-button .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background: none;
  width: auto;
  height: auto;
  line-height: 1
}

.swiper-button .swiper-button-prev {
  transform: scale(-1, 1)
}

.swiper-button .swiper-pagination {
  margin: 0 48px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .swiper-button .swiper-pagination {
    gap: 10px
  }
}

@media only screen and (max-width:640px) {
  .swiper-button .swiper-pagination {
    gap: 8px;
    margin: 0 24px
  }
}

.swiper-button .swiper-pagination-bullet {
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 !important;
  background: #d0d1d6;
  opacity: 1
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .swiper-button .swiper-pagination-bullet {
    width: 10px
  }
}

@media only screen and (max-width:640px) {
  .swiper-button .swiper-pagination-bullet {
    width: 8px
  }
}

.swiper-button .swiper-pagination-bullet-active {
  background: #193650
}

.swiper-button-wh .swiper-button-prev svg path,
.swiper-button-wh .swiper-button-next svg path {
  fill: #fff
}

.swiper-button-wh .swiper-pagination-bullet {
  background: #fff
}

.swiper-button-wh .swiper-pagination-bullet-active {
  background: #193650
}

.mt1 {
  margin-top: 180px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mt1 {
    margin-top: 140px
  }
}

@media only screen and (max-width:640px) {
  .mt1 {
    margin-top: 90px
  }
}

.mt2 {
  margin-top: 120px
}

@media only screen and (max-width:640px) {
  .mt2 {
    margin-top: 60px
  }
}

.mt3 {
  margin-top: 100px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mt3 {
    margin-top: 96px
  }
}

@media only screen and (max-width:640px) {
  .mt3 {
    margin-top: 48px
  }
}

.mt4 {
  margin-top: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mt4 {
    margin-top: 96px
  }
}

@media only screen and (max-width:640px) {
  .mt4 {
    margin-top: 48px
  }
}

.mb1 {
  margin-bottom: 180px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mb1 {
    margin-bottom: 140px
  }
}

@media only screen and (max-width:640px) {
  .mb1 {
    margin-bottom: 90px
  }
}

.mb2 {
  margin-bottom: 120px
}

@media only screen and (max-width:640px) {
  .mb2 {
    margin-bottom: 60px
  }
}

.mb3 {
  margin-bottom: 100px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mb3 {
    margin-bottom: 96px
  }
}

@media only screen and (max-width:640px) {
  .mb3 {
    margin-bottom: 48px
  }
}

.mb4 {
  margin-bottom: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .mb4 {
    margin-bottom: 96px
  }
}

@media only screen and (max-width:640px) {
  .mb4 {
    margin-bottom: 48px
  }
}

.pt1 {
  padding-top: 180px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pt1 {
    padding-top: 140px
  }
}

@media only screen and (max-width:640px) {
  .pt1 {
    padding-top: 90px
  }
}

.pt2 {
  padding-top: 120px
}

@media only screen and (max-width:640px) {
  .pt2 {
    padding-top: 60px
  }
}

.pt3 {
  padding-top: 100px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pt3 {
    padding-top: 96px
  }
}

@media only screen and (max-width:640px) {
  .pt3 {
    padding-top: 48px
  }
}

.pt4 {
  padding-top: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pt4 {
    padding-top: 96px
  }
}

@media only screen and (max-width:640px) {
  .pt4 {
    padding-top: 48px
  }
}

.pb1 {
  padding-bottom: 180px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pb1 {
    padding-bottom: 140px
  }
}

@media only screen and (max-width:640px) {
  .pb1 {
    padding-bottom: 90px
  }
}

.pb2 {
  padding-bottom: 120px
}

@media only screen and (max-width:640px) {
  .pb2 {
    padding-bottom: 60px
  }
}

.pb3 {
  padding-bottom: 100px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pb3 {
    padding-bottom: 96px
  }
}

@media only screen and (max-width:640px) {
  .pb3 {
    padding-bottom: 48px
  }
}

.pb4 {
  padding-bottom: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .pb4 {
    padding-bottom: 96px
  }
}

@media only screen and (max-width:640px) {
  .pb4 {
    padding-bottom: 48px
  }
}

a.underline {
  font-size: inherit;
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

a.underline i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

a.underline:hover {
  color: #007abe
}

a.underline:hover i {
  color: #007abe
}

.text-indent {
  padding-left: 1em;
  text-indent: -1em
}

.main_lead {
  font-size: 15px;
  line-height: 1.92;
  margin: 42px 0 56px
}

@media(min-width: 375px) {
  .main_lead {
    font-size: 25px;
    font-size: calc(0.0076628352*100vw + 12.1264367816px)
  }
}

@media(min-width: 1680px) {
  .main_lead {
    font-size: 25px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .main_lead {
    margin: 20px 0 40px
  }
}

@media only screen and (max-width:640px) {
  .main_lead {
    margin: 28px 0;
    line-height: 1.73
  }
}

.main_lead a,
.main_lead a.underline {
  font-size: inherit;
  text-decoration: underline
}

.main_lead strong {
  display: inline;
  color: red
}

.main_lead.fwbold {
  font-weight: 700
}

.main_lead .fwbold {
  font-weight: 700
}

.main_lead .btn {
  display: block;
  text-decoration: underline;
  line-height: 1.5
}

.main_lead small {
  display: block;
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .main_lead small {
    margin-top: 24px
  }
}

.main_lead small a {
  text-decoration: underline
}

.main_lead small,
.main_lead small a {
  font-size: 12px;
  line-height: 1.8
}

@media(min-width: 375px) {

  .main_lead small,
  .main_lead small a {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {

  .main_lead small,
  .main_lead small a {
    font-size: 20px
  }
}

.main_lead-s {
  font-size: 14px
}

@media(min-width: 375px) {
  .main_lead-s {
    font-size: 22px;
    font-size: calc(0.0061302682*100vw + 11.7011494253px)
  }
}

@media(min-width: 1680px) {
  .main_lead-s {
    font-size: 22px
  }
}

.main_lead-wh {
  color: #fff
}

.main_lead-center {
  text-align: center
}

.main_lead-right {
  text-align: right
}

.main_lead.mt-n {
  margin-top: 0
}

.main_lead.mb-n {
  margin-bottom: 0
}

.main_lead.mb-01 {
  margin-bottom: 12px
}

@media only screen and (max-width:640px) {
  .main_lead.mb-01 {
    margin-bottom: 6px
  }
}

.btn-hover-scale {
  display: block
}

.btn-hover-scale .img {
  display: block;
  overflow: hidden
}

.btn-hover-scale .img img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.btn-hover-scale:hover .img img {
  transform: scale(1.1, 1.1)
}

.btn-hover-scale:hover .title .text {
  opacity: .5
}

.btn-hover-scale:hover .title .arrow svg {
  transform: translateX(4px)
}

.btn-hover-scale:hover .title .arrow svg path {
  fill: #007abe
}

.btn-hover-scale-overlap {
  position: relative
}

.btn-hover-scale-overlap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #007abe;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: inherit;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.btn-hover-scale-overlap:hover:before {
  opacity: .3
}

.btn-hover-scale-overlap:hover .title .text {
  opacity: 1
}

.is-brand {
  position: relative
}

.is-brand-slide {
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .is-brand-slide {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw)
  }
}

.is-brand-slide_lists__item img {
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .is-brand-slide_lists__item img {
    border-radius: 5px
  }
}

.is-brand .swiper-button {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

@media only screen and (max-width:640px) {
  .is-brand .swiper-button {
    margin-top: 20px
  }
}

.is-brand .swiper-button-next,
.is-brand .swiper-button-prev {
  position: relative;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  right: auto;
  background: none;
  border-radius: 0
}

.is-brand .swiper-button-next:hover .arrow svg,
.is-brand .swiper-button-prev:hover .arrow svg {
  transform: translateX(4px)
}

.is-brand .swiper-button-next:hover .arrow svg path,
.is-brand .swiper-button-prev:hover .arrow svg path {
  fill: #007abe
}

.is-brand .swiper-button-prev {
  transform: scale(-1, 1)
}

.is-brand .swiper-button .swiper-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.is-brand .swiper-button .swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  border-radius: 0;
  margin: 0 2.5px;
  background: #1d71a8;
  margin-top: 4px
}

@media only screen and (max-width:640px) {
  .is-brand .swiper-button .swiper-pagination-bullet {
    width: 16vw
  }
}

.bg-gray {
  background: #f2f2f5
}

.bg-black {
  background: rgba(0, 0, 0, .85)
}

.bg-pattern {
  width: 50vw;
  max-width: 846px;
  opacity: .5;
  position: absolute
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .bg-pattern {
    width: 60vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .bg-pattern {
    width: 70vw
  }
}

@media only screen and (max-width:640px) {
  .bg-pattern {
    width: 150vw
  }
}

.is-page-lower {
  background: #edeef3
}

.is-page-lower-sec {
  position: relative;
  overflow: hidden
}

.is-page-lower-sec_container {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-page-lower-sec_container {
    padding: 4vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower-sec_container {
    padding: 6vw;
    border-radius: 5px
  }
}

.is-page-lower-sec_container.pd-m {
  padding: 42px 80px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower-sec_container.pd-m {
    padding: 40px
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower-sec_container.pd-m {
    padding: 6vw
  }
}

.is-page-lower-sec_container+.is-page-lower-sec_container {
  margin-top: 64px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower-sec_container+.is-page-lower-sec_container {
    margin-top: 50px
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower-sec_container+.is-page-lower-sec_container {
    margin-top: 24px
  }
}

.is-page-lower-sec_container .inner_lists dt {
  font-weight: 700;
  margin-bottom: 6px
}

.is-page-lower-sec_container .inner_lists dd {
  padding-left: 1em;
  margin-bottom: 12px
}

@media only screen and (max-width:640px) {
  .is-page-lower-sec_container .img-scroll_wrap {
    overflow: scroll
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower-sec_container .img-scroll_wrap img {
    width: 400px;
    max-width: none
  }
}

.is-page-lower .bg-pattern01 {
  top: -234px;
  right: -344px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower .bg-pattern01 {
    top: -8vw;
    right: -23vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower .bg-pattern01 {
    top: -62vw;
    right: -55vw
  }
}

.is-page-lower .bg-pattern02 {
  top: 540px;
  left: -300px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower .bg-pattern02 {
    top: 45vw;
    left: -18vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower .bg-pattern02 {
    top: 90vw;
    left: -55vw
  }
}

.is-page-lower .bg-pattern03 {
  top: 1340px;
  right: -344px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower .bg-pattern03 {
    top: 92vw;
    right: -23vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower .bg-pattern03 {
    top: 310vw;
    right: -55vw
  }
}

.is-page-lower .bg-pattern04 {
  top: 2150px;
  left: -300px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower .bg-pattern04 {
    top: 170vw;
    left: -18vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower .bg-pattern04 {
    top: 720vw;
    left: -55vw
  }
}

.is-page-lower .bg-pattern05 {
  top: 2960px;
  right: -344px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-page-lower .bg-pattern05 {
    top: 92vw;
    right: -23vw
  }
}

@media only screen and (max-width:640px) {
  .is-page-lower .bg-pattern05 {
    top: 310vw;
    right: -55vw
  }
}

.is-page-lower.is-news-ir-news .category {
  display: none
}

.is-page-lower.is-news-ir-news .category-year {
  margin-top: 0
}

.is-page-lower.is-news-polyimide .category {
  display: none
}

.is-page-lower.is-news-polyimide .category-year {
  display: none
}

.list-1clm_lists,
.list-2clm_lists,
.list-3clm_lists {
  align-items: stretch
}

.list-1clm_lists__item,
.list-2clm_lists__item,
.list-3clm_lists__item {
  display: flex;
  flex-direction: column
}

.list-1clm_lists__item .img,
.list-2clm_lists__item .img,
.list-3clm_lists__item .img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 10px 10px 0 0
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .img,
  .list-2clm_lists__item .img,
  .list-3clm_lists__item .img {
    border-radius: 5px 5px 0 0;
    aspect-ratio: 5/2.5
  }
}

.list-1clm_lists__item .inner,
.list-2clm_lists__item .inner,
.list-3clm_lists__item .inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
  padding: 0 38px 38px;
  border-radius: 0 0 10px 10px
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .list-1clm_lists__item .inner,
  .list-2clm_lists__item .inner,
  .list-3clm_lists__item .inner {
    padding: 0 3vw 3vw
  }
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner,
  .list-2clm_lists__item .inner,
  .list-3clm_lists__item .inner {
    border-radius: 0 0 5px 5px;
    padding: 0 6vw 6vw
  }
}

.list-1clm_lists__item .inner .title,
.list-2clm_lists__item .inner .title,
.list-3clm_lists__item .inner .title {
  border-bottom: 1px solid #dde1e6;
  padding: 18px 0;
  margin-bottom: 24px
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .list-1clm_lists__item .inner .title,
  .list-2clm_lists__item .inner .title,
  .list-3clm_lists__item .inner .title {
    padding: 12px 0;
    margin-bottom: 18px
  }
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner .title,
  .list-2clm_lists__item .inner .title,
  .list-3clm_lists__item .inner .title {
    padding: 16px 0;
    margin-bottom: 16px
  }
}

.list-1clm_lists__item .inner .title.border-none,
.list-2clm_lists__item .inner .title.border-none,
.list-3clm_lists__item .inner .title.border-none {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0
}

.list-1clm_lists__item .inner .title a,
.list-1clm_lists__item .inner .title .inner_title,
.list-2clm_lists__item .inner .title a,
.list-2clm_lists__item .inner .title .inner_title,
.list-3clm_lists__item .inner .title a,
.list-3clm_lists__item .inner .title .inner_title {
  display: flex;
  justify-content: center;
  align-items: center
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner .title a,
  .list-1clm_lists__item .inner .title .inner_title,
  .list-2clm_lists__item .inner .title a,
  .list-2clm_lists__item .inner .title .inner_title,
  .list-3clm_lists__item .inner .title a,
  .list-3clm_lists__item .inner .title .inner_title {
    justify-content: space-between
  }
}

.list-1clm_lists__item .inner .title a .text,
.list-1clm_lists__item .inner .title .inner_title .text,
.list-2clm_lists__item .inner .title a .text,
.list-2clm_lists__item .inner .title .inner_title .text,
.list-3clm_lists__item .inner .title a .text,
.list-3clm_lists__item .inner .title .inner_title .text {
  font-size: 18px;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {

  .list-1clm_lists__item .inner .title a .text,
  .list-1clm_lists__item .inner .title .inner_title .text,
  .list-2clm_lists__item .inner .title a .text,
  .list-2clm_lists__item .inner .title .inner_title .text,
  .list-3clm_lists__item .inner .title a .text,
  .list-3clm_lists__item .inner .title .inner_title .text {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {

  .list-1clm_lists__item .inner .title a .text,
  .list-1clm_lists__item .inner .title .inner_title .text,
  .list-2clm_lists__item .inner .title a .text,
  .list-2clm_lists__item .inner .title .inner_title .text,
  .list-3clm_lists__item .inner .title a .text,
  .list-3clm_lists__item .inner .title .inner_title .text {
    font-size: 27px
  }
}

.list-1clm_lists__item .inner .title a .text .text-sub,
.list-1clm_lists__item .inner .title .inner_title .text .text-sub,
.list-2clm_lists__item .inner .title a .text .text-sub,
.list-2clm_lists__item .inner .title .inner_title .text .text-sub,
.list-3clm_lists__item .inner .title a .text .text-sub,
.list-3clm_lists__item .inner .title .inner_title .text .text-sub {
  display: block;
  font-size: 18px;
  text-align: center
}

.list-1clm_lists__item .inner .title a .arrow,
.list-1clm_lists__item .inner .title .inner_title .arrow,
.list-2clm_lists__item .inner .title a .arrow,
.list-2clm_lists__item .inner .title .inner_title .arrow,
.list-3clm_lists__item .inner .title a .arrow,
.list-3clm_lists__item .inner .title .inner_title .arrow {
  background: #f6f9fb;
  margin-left: 16px
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner .title a .arrow,
  .list-1clm_lists__item .inner .title .inner_title .arrow,
  .list-2clm_lists__item .inner .title a .arrow,
  .list-2clm_lists__item .inner .title .inner_title .arrow,
  .list-3clm_lists__item .inner .title a .arrow,
  .list-3clm_lists__item .inner .title .inner_title .arrow {
    margin-left: 7px
  }
}

.list-1clm_lists__item .inner .title a:hover .text,
.list-1clm_lists__item .inner .title .inner_title:hover .text,
.list-2clm_lists__item .inner .title a:hover .text,
.list-2clm_lists__item .inner .title .inner_title:hover .text,
.list-3clm_lists__item .inner .title a:hover .text,
.list-3clm_lists__item .inner .title .inner_title:hover .text {
  color: #007abe
}

.list-1clm_lists__item .inner .title .arrow-hover.wide,
.list-2clm_lists__item .inner .title .arrow-hover.wide,
.list-3clm_lists__item .inner .title .arrow-hover.wide {
  justify-content: space-between
}

.list-1clm_lists__item .inner .title .arrow-hover.wide .text,
.list-2clm_lists__item .inner .title .arrow-hover.wide .text,
.list-3clm_lists__item .inner .title .arrow-hover.wide .text {
  width: calc(100% - 48px);
  text-align: center
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner .title .arrow-hover.wide .text,
  .list-2clm_lists__item .inner .title .arrow-hover.wide .text,
  .list-3clm_lists__item .inner .title .arrow-hover.wide .text {
    width: calc(100% - 36px)
  }
}

.list-1clm_lists__item .inner .title .arrow-hover.wide .arrow,
.list-2clm_lists__item .inner .title .arrow-hover.wide .arrow,
.list-3clm_lists__item .inner .title .arrow-hover.wide .arrow {
  margin-left: 0
}

.list-1clm_lists__item .inner .title .inner_title:hover .text,
.list-2clm_lists__item .inner .title .inner_title:hover .text,
.list-3clm_lists__item .inner .title .inner_title:hover .text {
  color: #1d3751
}

.list-1clm_lists__item .inner .inner_text,
.list-2clm_lists__item .inner .inner_text,
.list-3clm_lists__item .inner .inner_text {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 1.8
}

@media(min-width: 375px) {

  .list-1clm_lists__item .inner .inner_text,
  .list-2clm_lists__item .inner .inner_text,
  .list-3clm_lists__item .inner .inner_text {
    font-size: 20px;
    font-size: calc(0.0038314176*100vw + 13.5632183908px)
  }
}

@media(min-width: 1680px) {

  .list-1clm_lists__item .inner .inner_text,
  .list-2clm_lists__item .inner .inner_text,
  .list-3clm_lists__item .inner .inner_text {
    font-size: 20px
  }
}

.list-1clm_lists__item .inner .inner_box,
.list-2clm_lists__item .inner .inner_box,
.list-3clm_lists__item .inner .inner_box {
  margin-top: 24px
}

.list-1clm_lists__item .inner .inner_box-title,
.list-2clm_lists__item .inner .inner_box-title,
.list-3clm_lists__item .inner .inner_box-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #007abe
}

@media(min-width: 480px) {

  .list-1clm_lists__item .inner .inner_box-title,
  .list-2clm_lists__item .inner .inner_box-title,
  .list-3clm_lists__item .inner .inner_box-title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {

  .list-1clm_lists__item .inner .inner_box-title,
  .list-2clm_lists__item .inner .inner_box-title,
  .list-3clm_lists__item .inner .inner_box-title {
    font-size: 18px
  }
}

.list-1clm_lists__item .inner .inner_lists+.inner_box-title,
.list-2clm_lists__item .inner .inner_lists+.inner_box-title,
.list-3clm_lists__item .inner .inner_lists+.inner_box-title {
  margin-top: 24px
}

.list-1clm_lists__item .inner .inner_lists__item:not(:first-child),
.list-2clm_lists__item .inner .inner_lists__item:not(:first-child),
.list-3clm_lists__item .inner .inner_lists__item:not(:first-child) {
  margin-top: 12px
}

.list-1clm_lists__item .inner .inner_lists__item a,
.list-2clm_lists__item .inner .inner_lists__item a,
.list-3clm_lists__item .inner .inner_lists__item a {
  display: inline-block;
  position: relative;
  font-size: 15px;
  padding-left: 1em;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {

  .list-1clm_lists__item .inner .inner_lists__item a,
  .list-2clm_lists__item .inner .inner_lists__item a,
  .list-3clm_lists__item .inner .inner_lists__item a {
    font-size: 20px;
    font-size: calc(0.0038314176*100vw + 13.5632183908px)
  }
}

@media(min-width: 1680px) {

  .list-1clm_lists__item .inner .inner_lists__item a,
  .list-2clm_lists__item .inner .inner_lists__item a,
  .list-3clm_lists__item .inner .inner_lists__item a {
    font-size: 20px
  }
}

.list-1clm_lists__item .inner .inner_lists__item a::before,
.list-2clm_lists__item .inner .inner_lists__item a::before,
.list-3clm_lists__item .inner .inner_lists__item a::before {
  content: "";
  position: absolute;
  top: .1em;
  left: 0;
  background-image: url("../images/common/chevron-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {

  .list-1clm_lists__item .inner .inner_lists__item a::before,
  .list-2clm_lists__item .inner .inner_lists__item a::before,
  .list-3clm_lists__item .inner .inner_lists__item a::before {
    width: 8px;
    height: 14px
  }
}

.list-1clm_lists__item .inner .inner_lists__item a:hover,
.list-2clm_lists__item .inner .inner_lists__item a:hover,
.list-3clm_lists__item .inner .inner_lists__item a:hover {
  color: #007abe
}

.list-1clm_lists__item .inner .inner_lists__item a:hover::before,
.list-2clm_lists__item .inner .inner_lists__item a:hover::before,
.list-3clm_lists__item .inner .inner_lists__item a:hover::before {
  background-image: url("../images/common/chevron-blue.svg")
}

.list-1clm_lists__item .inner .inner_lists__item a.small,
.list-2clm_lists__item .inner .inner_lists__item a.small,
.list-3clm_lists__item .inner .inner_lists__item a.small {
  font-size: 14px
}

@media(min-width: 375px) {

  .list-1clm_lists__item .inner .inner_lists__item a.small,
  .list-2clm_lists__item .inner .inner_lists__item a.small,
  .list-3clm_lists__item .inner .inner_lists__item a.small {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {

  .list-1clm_lists__item .inner .inner_lists__item a.small,
  .list-2clm_lists__item .inner .inner_lists__item a.small,
  .list-3clm_lists__item .inner .inner_lists__item a.small {
    font-size: 18px
  }
}

.list-1clm_lists__item .inner .inner_lists__item .inner_lists,
.list-2clm_lists__item .inner .inner_lists__item .inner_lists,
.list-3clm_lists__item .inner .inner_lists__item .inner_lists {
  padding-left: 1em;
  margin-top: 10px
}

.list-1clm_lists__item:not(:first-child) {
  margin-top: 40px
}

@media only screen and (max-width:640px) {
  .list-1clm_lists__item:not(:first-child) {
    margin-top: 20px
  }
}

.list-1clm_lists__item .img {
  aspect-ratio: 2/.6
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .list-2clm_lists .img {
    aspect-ratio: 5/2
  }
}

.list-2clm_lists .inner .title .arrow-hover.wide {
  justify-content: center
}

.list-2clm_lists .inner .title .arrow-hover.wide .text {
  width: fit-content;
  margin-right: 16px
}

.bg-darkness {
  background: linear-gradient(135deg, #1e2a3e 0%, #58667d 100%)
}

.bg-darkness .bg-pattern {
  width: 60vw;
  max-width: 1076px;
  opacity: .5;
  position: absolute;
  top: 140px;
  right: -137px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .bg-darkness .bg-pattern {
    width: 77vw;
    top: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .bg-darkness .bg-pattern {
    width: 100vw;
    top: 5vw
  }
}

@media only screen and (max-width:640px) {
  .bg-darkness .bg-pattern {
    width: 132vw;
    top: 76vw;
    left: 0;
    right: auto
  }
}

.bg-darkness .bg-pattern-lower {
  top: 50px
}

.bg-film {
  background: rgba(29, 113, 168, .07)
}

sub {
  font-size: 60%;
  line-height: 1;
  vertical-align: baseline;
  position: relative
}

sup {
  font-size: 60%;
  line-height: 1;
  vertical-align: super;
  position: relative
}

@media only screen and (max-width:640px) {
  br.sp-none {
    display: none
  }
}

.wide_img {
  display: block;
  position: relative;
  margin-right: calc(50% - 50vw)
}

.wide_img img {
  border-radius: 10px 0 0 10px
}

img.full-width {
  width: 100%
}

.order_lists {
  padding-left: 1.5em
}

.order_lists li {
  line-height: 1.5
}

.order_lists li:not(:first-child) {
  margin-top: 12px
}

.order_lists li.text-wh {
  color: #fff
}

.order_lists li.text-wh::marker {
  color: #fff
}

.order-2clm_lists,
.order-3clm_lists {
  display: flex;
  list-style: none;
  align-items: stretch
}

.order-2clm_lists__item,
.order-3clm_lists__item {
  margin-top: 0;
  background: #fff;
  border-radius: 10px;
  padding: 24px 40px
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .order-2clm_lists__item,
  .order-3clm_lists__item {
    padding: 24px 30px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .order-2clm_lists__item,
  .order-3clm_lists__item {
    padding: 4vw
  }
}

@media only screen and (max-width:640px) {

  .order-2clm_lists__item,
  .order-3clm_lists__item {
    padding: 5vw 6vw;
    border-radius: 5px
  }
}

.order-2clm_lists__item .title,
.order-3clm_lists__item .title {
  text-align: center;
  line-height: 1.2;
  font-size: 20px
}

@media(min-width: 375px) {

  .order-2clm_lists__item .title,
  .order-3clm_lists__item .title {
    font-size: 27px;
    font-size: calc(0.0053639847*100vw + 17.9885057471px)
  }
}

@media(min-width: 1680px) {

  .order-2clm_lists__item .title,
  .order-3clm_lists__item .title {
    font-size: 27px
  }
}

.order-2clm_lists__item .title strong,
.order-3clm_lists__item .title strong {
  font-size: 24px;
  line-height: 1.2;
  color: #007abe;
  margin-right: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 500
}

@media(min-width: 375px) {

  .order-2clm_lists__item .title strong,
  .order-3clm_lists__item .title strong {
    font-size: 36px;
    font-size: calc(0.0091954023*100vw + 20.5517241379px)
  }
}

@media(min-width: 1680px) {

  .order-2clm_lists__item .title strong,
  .order-3clm_lists__item .title strong {
    font-size: 36px
  }
}

.order-2clm_lists__item .text,
.order-3clm_lists__item .text {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid #eaecef
}

@media(min-width: 375px) {

  .order-2clm_lists__item .text,
  .order-3clm_lists__item .text {
    font-size: 20px;
    font-size: calc(0.0038314176*100vw + 13.5632183908px)
  }
}

@media(min-width: 1680px) {

  .order-2clm_lists__item .text,
  .order-3clm_lists__item .text {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {

  .order-2clm_lists__item .text,
  .order-3clm_lists__item .text {
    padding-top: 16px;
    margin-top: 16px
  }
}

@media only screen and (max-width:640px) {

  .order-2clm_lists__item .text,
  .order-3clm_lists__item .text {
    text-align: left
  }
}

@media only screen and (max-width:640px) {
  .order-3clm_lists__item {
    width: 100% !important;
    margin-right: 0 !important
  }
}

.normal_lists {
  list-style: disc;
  padding-left: 1.5em
}

.normal_lists li {
  line-height: 1.5
}

.normal_lists li:not(:first-child) {
  margin-top: 12px
}

.normal_lists li.text-wh {
  color: #fff
}

.normal_lists li.text-wh::marker {
  color: #fff
}

.normal_lists li b {
  font-weight: 700
}

.normal_lists li a {
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.normal_lists li a i {
  margin-left: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.normal_lists li a:hover {
  color: #007abe
}

.normal_lists li a:hover i {
  color: #007abe
}

.tag_lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 120px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tag_lists {
    margin-top: 80px
  }
}

@media only screen and (max-width:640px) {
  .tag_lists {
    margin-top: 40px
  }
}

.tag_lists li {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 16px 16px 0 !important;
  padding: .7em 2em !important;
  border-radius: 5px;
  border: 1px solid #707070
}

@media(min-width: 375px) {
  .tag_lists li {
    font-size: 20px;
    font-size: calc(0.0045977011*100vw + 12.275862069px)
  }
}

@media(min-width: 1680px) {
  .tag_lists li {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tag_lists li {
    margin: 0 12px 12px 0 !important;
    padding: .6em 1.6em !important
  }
}

@media only screen and (max-width:640px) {
  .tag_lists li {
    margin: 0 8px 8px 0 !important;
    padding: .6em 1.3em !important
  }
}

.tag_lists li:before {
  content: none !important
}

.tag_lists.is-wh li {
  border: 1px solid #fff;
  color: #fff
}

.view-more_lists__item {
  opacity: 1
}

.view-more_lists__item.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0
}

.view-more_lists_btn {
  width: fit-content;
  margin-left: auto;
  margin-right: auto
}

.view-more_lists_btn.is-btn-hidden {
  display: none
}

.is-laws-stock_lists {
  display: flex;
  list-style: none;
  align-items: stretch
}

.is-laws-stock_lists__item {
  margin-top: 0;
  background: #fff;
  border-radius: 10px;
  padding: 24px 40px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-laws-stock_lists__item {
    padding: 24px 30px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-laws-stock_lists__item {
    padding: 4vw
  }
}

@media only screen and (max-width:640px) {
  .is-laws-stock_lists__item {
    padding: 5vw 6vw;
    border-radius: 5px
  }
}

.is-laws-stock_lists__item .title {
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eaecef
}

@media(min-width: 375px) {
  .is-laws-stock_lists__item .title {
    font-size: 27px;
    font-size: calc(0.0053639847*100vw + 17.9885057471px)
  }
}

@media(min-width: 1680px) {
  .is-laws-stock_lists__item .title {
    font-size: 27px
  }
}

@media only screen and (max-width:640px) {
  .is-laws-stock_lists__item .title {
    padding-bottom: 16px;
    margin-bottom: 16px
  }
}

.is-laws-stock_lists__item .title strong {
  font-size: 24px;
  line-height: 1.2;
  color: #007abe;
  margin-right: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 500
}

@media(min-width: 375px) {
  .is-laws-stock_lists__item .title strong {
    font-size: 36px;
    font-size: calc(0.0091954023*100vw + 20.5517241379px)
  }
}

@media(min-width: 1680px) {
  .is-laws-stock_lists__item .title strong {
    font-size: 36px
  }
}

.is-laws-stock_lists__item_btn {
  display: flex;
  align-items: center;
  justify-content: center
}

@media only screen and (max-width:640px) {
  .is-laws-stock_lists__item_btn {
    justify-content: space-between
  }
}

.is-laws-stock_lists__item_btn .text {
  font-size: 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .is-laws-stock_lists__item_btn .text {
    font-size: 20px;
    font-size: calc(0.0038314176*100vw + 13.5632183908px)
  }
}

@media(min-width: 1680px) {
  .is-laws-stock_lists__item_btn .text {
    font-size: 20px
  }
}

.is-laws-stock_lists__item_btn .text i {
  margin-left: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.is-laws-stock_lists__item_btn .arrow {
  background: #f6f9fb;
  margin-left: 16px
}

.is-laws-stock_lists__item_btn.fs {
  justify-content: flex-start
}

@media only screen and (max-width:640px) {
  .is-laws-stock_lists__item_btn.fs {
    justify-content: space-between
  }
}

.is-laws-stock_lists__item_btn:hover .text {
  color: #007abe
}

.is-laws-stock_lists__item_btn:hover .text i {
  color: #007abe
}

.pdf-box .ttl-thirdly {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px
}

@media(min-width: 375px) {
  .pdf-box .ttl-thirdly {
    font-size: 24px;
    font-size: calc(0.0045977011*100vw + 16.275862069px)
  }
}

@media(min-width: 1680px) {
  .pdf-box .ttl-thirdly {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .pdf-box .ttl-thirdly {
    padding-bottom: 14px;
    margin-bottom: 14px
  }
}

.pdf-box_wrap {
  justify-content: space-between;
  align-items: center
}

@media only screen and (max-width:640px) {
  .pdf-box_wrap {
    display: block
  }
}

.pdf-box_wrap .img {
  width: 18%
}

@media only screen and (max-width:640px) {
  .pdf-box_wrap .img {
    width: 53%;
    margin: 0 auto 14px
  }
}

.pdf-box_wrap .img img {
  width: 100%
}

.pdf-box_wrap .main_lead {
  width: 77%;
  font-size: 13px
}

@media(min-width: 375px) {
  .pdf-box_wrap .main_lead {
    font-size: 16px;
    font-size: calc(0.0022988506*100vw + 12.1379310345px)
  }
}

@media(min-width: 1680px) {
  .pdf-box_wrap .main_lead {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .pdf-box_wrap .main_lead {
    width: 100%
  }
}

sub {
  top: .5ex;
  bottom: -0.25em;
  font-size: 80%;
  line-height: 1;
  vertical-align: baseline;
  position: relative
}

.eir .s_eirMatrix_item_link_el-date,
.eir .s_eirMatrix_item_link_el-title {
  display: none !important
}

.eir .s_eirMatrix_item {
  text-align: center
}

.eir .eirDataArea .eirBlock {
  border-radius: 10px;
  background: #fff;
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock {
    border-radius: 5px
  }
}

.eir .eirDataArea .eirBlock:not(:first-child) {
  margin-top: 24px
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock:not(:first-child) {
    margin-top: 12px
  }
}

.eir .eirDataArea .eirBlock .eirHeading {
  padding: 18px 33px;
  background: #007abe;
  border-bottom: 0
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .eirHeading {
    padding: 3vw 10vw 3vw 5vw
  }
}

.eir .eirDataArea .eirBlock .eirHeading span {
  color: #fff
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table .s_eirMatrix_th {
  font-size: 14px
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table .s_eirMatrix_th {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table .s_eirMatrix_th {
    font-size: 18px
  }
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table thead th {
  width: auto
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody th {
  width: 10%
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td {
  width: 15%;
  text-align: left
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-date {
  font-size: 14px;
  display: block;
  text-align: left
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-date {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-date {
    font-size: 18px
  }
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-title {
  font-size: 14px;
  color: #007abe;
  text-decoration: underline;
  text-align: left
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-title {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-title {
    font-size: 18px
  }
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_icon-pdf,
.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_icon-url,
.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_icon-zip {
  display: none
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-typeFigure img {
  width: 18px;
  display: inline-block
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-fileSize、 .s_eirMatrix_item_link_el {
  display: block;
  font-size: 14px;
  text-align: left
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-fileSize、 .s_eirMatrix_item_link_el {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .s_eirMatrix_item_link_el-fileSize、 .s_eirMatrix_item_link_el {
    font-size: 18px
  }
}

.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_size,
.eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_comment {
  font-size: 14px
}

@media(min-width: 375px) {

  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_size,
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_comment {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {

  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_size,
  .eir .eirDataArea .eirBlock .eirGroup .s_eirMatrix_table tbody td .eirItem_title_link .eirItem_comment {
    font-size: 18px
  }
}

.eir .eirDataArea .eirBlock .eirAccordionTrigger::after {
  font-size: 18px;
  font-weight: 700;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .eirAccordionTrigger::after {
    font-size: 28px;
    font-size: calc(0.0076628352*100vw + 15.1264367816px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .eirAccordionTrigger::after {
    font-size: 28px
  }
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .eirAccordionTrigger::after {
    right: 3vw
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock {
  margin-bottom: 0
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText:nth-child(even) {
  background: #f6f9fb
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText:not(:first-child) table tr th,
.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText:not(:first-child) table tr td {
  border-top: none
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table {
  width: 100%
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr th,
.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td {
  padding: 18px 32px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.63;
  position: relative;
  border: 1px solid #dde1e6
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr th,
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td {
    padding: 2vw
  }
}

@media only screen and (max-width:640px) {

  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr th,
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td {
    padding: 1.5vw 3vw
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr th {
  width: 30%
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr th {
    width: 26%
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td {
  width: 70%;
  word-break: break-word
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td {
    width: 74%
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td .arrow-hover {
  display: flex;
  align-items: center
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td .arrow-hover .text {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirText table tr td .arrow-hover:hover .text {
  color: #007abe
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem {
  align-items: center;
  margin: 0;
  padding: 18px 32px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem {
    padding: 2vw
  }
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem {
    padding: 2vw 3vw
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_head time {
  font-size: 14px
}

@media(min-width: 375px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_head time {
    font-size: 22px;
    font-size: calc(0.0061302682*100vw + 11.7011494253px)
  }
}

@media(min-width: 1680px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_head time {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_title {
    margin-top: 4px
  }
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_title .eirItem_title_link {
  text-decoration: underline;
  color: #007abe
}

.eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .eirItem_title .eirItem_title_link .s_eirModule_title_label {
  color: #007abe
}

@media only screen and (max-width:640px) {
  .eir .eirDataArea .eirBlock .s_eirQuarterBlock .s_eirList .eirItem .s_eirModule_thumbnail {
    width: 140px;
    margin-bottom: 10px
  }
}

.eir .eir_pdfNote {
  display: none
}

.eir .eir_pnexNote_item a img {
  display: inline-block
}

.is-news-polyimide .article_news .news_item,
.is-news-dx-clm3 .article_news .news_item {
  display: block;
  border: 0
}

.is-news-polyimide .article_news .news_item a .news_item_inner,
.is-news-dx-clm3 .article_news .news_item a .news_item_inner {
  flex-direction: column;
  padding: 0
}

@media only screen and (max-width:640px) {

  .is-news-polyimide .article_news .news_item a .news_item_inner,
  .is-news-dx-clm3 .article_news .news_item a .news_item_inner {
    width: 100%
  }
}

.is-news-polyimide .article_news .news_item a .news_item_inner .img img,
.is-news-dx-clm3 .article_news .news_item a .news_item_inner .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 8/5;
  border-radius: 10px
}

@media only screen and (max-width:640px) {

  .is-news-polyimide .article_news .news_item a .news_item_inner .img img,
  .is-news-dx-clm3 .article_news .news_item a .news_item_inner .img img {
    border-radius: 5px
  }
}

.is-news-polyimide .article_news .news_item a .news_item_inner .info,
.is-news-dx-clm3 .article_news .news_item a .news_item_inner .info {
  display: block;
  width: 100%;
  margin-top: 10px
}

@media only screen and (max-width:640px) {

  .is-news-polyimide .article_news .news_item a .news_item_inner .info,
  .is-news-dx-clm3 .article_news .news_item a .news_item_inner .info {
    margin-top: 5px
  }
}

.is-news-polyimide .article_news .news_item a .news_item_inner .title,
.is-news-dx-clm3 .article_news .news_item a .news_item_inner .title {
  -webkit-line-clamp: 2;
  padding-right: 0;
  line-height: 1.5
}

.is-news-polyimide .article_news .btn_more,
.is-news-dx-clm3 .article_news .btn_more {
  text-align: center
}

.is-news-dx-clm3 .article-clm_lists {
  align-items: stretch
}

.is-news-dx-clm3 .article-clm_lists__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden
}

.is-news-dx-clm3 .article-clm_lists__item.news_item a {
  flex-direction: column;
  align-items: stretch
}

.is-news-dx-clm3 .article-clm_lists__item.news_item a .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5/3
}

.is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner {
  width: 100%;
  padding: 0 40px 40px;
  align-items: flex-start
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner {
    padding: 0 24px 24px
  }
}

@media only screen and (max-width:640px) {
  .is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner {
    padding: 0 4vw 4vw
  }
}

.is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner .title {
  margin-top: 10px;
  -webkit-line-clamp: 3
}

@media only screen and (max-width:640px) {
  .is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner .title {
    margin-top: 4px
  }
}

.is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner .arrow {
  margin-top: 16px
}

@media only screen and (max-width:640px) {
  .is-news-dx-clm3 .article-clm_lists__item.news_item a .news_item_inner .arrow {
    margin-top: 8px
  }
}

.is-news-dx-clm1 .title br {
  display: none
}

.contact-btn {
  width: 100%
}

.contact-btn .btn {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .contact-btn .btn {
    border-radius: 5px
  }
}

.contact-btn .btn:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #007abe;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: inherit;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.contact-btn .btn:hover:after {
  opacity: .3
}

.contact-btn .btn:hover .img {
  transform: scale(1.1, 1.1)
}

.contact-btn .btn:hover .arrow svg {
  transform: translateX(4px)
}

.contact-btn .btn:hover .arrow svg path {
  fill: #007abe
}

.contact-btn .btn .img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.contact-btn-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.contact-btn-text .text-sub {
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
  line-height: 1.44;
  margin-bottom: 17px
}

@media(min-width: 375px) {
  .contact-btn-text .text-sub {
    font-size: 25px;
    font-size: calc(0.0068965517*100vw + 13.4137931034px)
  }
}

@media(min-width: 1680px) {
  .contact-btn-text .text-sub {
    font-size: 25px
  }
}

@media only screen and (max-width:640px) {
  .contact-btn-text .text-sub {
    line-height: 1.3;
    margin-bottom: 6px
  }
}

.contact-btn-text .text {
  display: block;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
  line-height: 1
}

@media(min-width: 375px) {
  .contact-btn-text .text {
    font-size: 27px;
    font-size: calc(0.0068965517*100vw + 15.4137931034px)
  }
}

@media(min-width: 1680px) {
  .contact-btn-text .text {
    font-size: 27px
  }
}

.contact-btn .arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 10
}

@media only screen and (max-width:640px) {
  .contact-btn .arrow {
    right: 2vw
  }
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: underline
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  padding-bottom: 5px;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
  transition: opacity .3s;
  width: 260px;
  display: block
}

@media only screen and (max-width:640px) {
  .tooltip-content {
    width: 200px
  }
}

.tooltip-content_inner {
  display: block;
  position: relative;
  background-color: #e0eaf4;
  padding: 10px 10px 14px;
  width: auto;
  line-height: 1.2
}

.tooltip-content_inner:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  border: 10px solid rgba(0, 0, 0, 0);
  border-top: 10px solid #e0eaf4
}

.tooltip-content a {
  color: #1d3751;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  display: block;
  position: relative;
  padding-left: .7em;
  transition: opacity .3s;
  line-height: 1.2
}

@media(min-width: 480px) {
  .tooltip-content a {
    font-size: 15px;
    font-size: calc(0.0025*100vw + 11.8px)
  }
}

@media(min-width: 1280px) {
  .tooltip-content a {
    font-size: 15px
  }
}

.tooltip-content a:not(:first-child) {
  margin-top: 8px
}

.tooltip-content a:hover {
  opacity: .5
}

.tooltip-content a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-30%);
  background-image: url("../images/common/chevron-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  line-height: 1;
  width: 6px;
  height: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1
}

.search-category_lists {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists {
    display: block
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists {
    display: block;
    margin-top: 23px
  }
}

.search-category_lists__item {
  width: calc((100% - 48px)/3);
  border: 1px solid #075da2;
  border-radius: 3px;
  background-color: #fff
}

@media only screen and (max-width:640px) {
  .search-category_lists__item {
    border-radius: 2px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .search-category_lists__item {
    width: calc((100% - 30px)/3)
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists__item {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists__item {
    width: 100%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists__item:not(:first-child) {
    margin-top: 16px
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists__item:not(:first-child) {
    margin-top: 12px
  }
}

.search-category_lists__item a {
  display: flex;
  height: 100%;
  padding: 18px 20px;
  align-items: center;
  position: relative
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .search-category_lists__item a {
    padding: 22px 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists__item a {
    padding: 16px
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists__item a {
    padding: 16px 6vw
  }
}

.search-category_lists__item a .icon {
  width: 10.7%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists__item a .icon {
    width: 7%
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists__item a .icon {
    width: 7%
  }
}

.search-category_lists__item a .text {
  width: 70%;
  font-size: 14px;
  font-weight: 700;
  color: #0f67ae;
  margin-left: 10px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .search-category_lists__item a .text {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .search-category_lists__item a .text {
    font-size: 18px
  }
}

.search-category_lists__item a .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%)
}

@media only screen and (max-width:640px) {
  .search-category_lists__item a .arrow {
    right: 5vw;
    width: 3vw
  }
}

.search-category_lists__item:nth-child(2) a .icon {
  width: 7.1%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-category_lists__item:nth-child(2) a .icon {
    width: 5%
  }
}

@media only screen and (max-width:640px) {
  .search-category_lists__item:nth-child(2) a .icon {
    width: 5%
  }
}

.search-category_lists__item.is-inactive {
  position: relative;
  pointer-events: none
}

.search-category_lists__item.is-inactive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 1
}

.search-category_lists__item.is-inactive::after {
  content: "現在募集中のプランはございません";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  text-align: center;
  color: #fff;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2
}

@media(min-width: 375px) {
  .search-category_lists__item.is-inactive::after {
    font-size: 18px;
    font-size: calc(0.0030651341*100vw + 12.8505747126px)
  }
}

@media(min-width: 1680px) {
  .search-category_lists__item.is-inactive::after {
    font-size: 18px
  }
}

.hidden-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out
}

.hidden-text.is-open {
  max-height: 1000px
}

.is-search-by-premium-plan {
  background: url("../images/home/bg-premium-plan.jpg") center/cover no-repeat
}

.is-search-by-premium-plan .lead {
  width: fit-content;
  margin: 0 auto;
  padding: 12px 0 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1
}

@media(min-width: 480px) {
  .is-search-by-premium-plan .lead {
    font-size: 29px;
    font-size: calc(0.01625*100vw + 8.2px)
  }
}

@media(min-width: 1280px) {
  .is-search-by-premium-plan .lead {
    font-size: 29px
  }
}

.is-search-by-premium-plan .lead::before,
.is-search-by-premium-plan .lead::after {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, #dbc15b 0%, #ad8f00 100%);
  position: absolute;
  left: 0
}

.is-search-by-premium-plan .lead::before {
  top: 0
}

.is-search-by-premium-plan .lead::after {
  bottom: 0
}

.is-search-by-premium-plan .text {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  line-height: 2
}

@media(min-width: 480px) {
  .is-search-by-premium-plan .text {
    font-size: 20px;
    font-size: calc(0.0075*100vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .is-search-by-premium-plan .text {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .text {
    margin-top: 24px
  }
}

.is-search-by-premium-plan .img_lists {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: 26px
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .img_lists {
    margin-top: 24px;
    flex-direction: column
  }
}

.is-search-by-premium-plan .img_lists__item {
  width: 527px;
  border: 5px solid;
  border-image: linear-gradient(to bottom, #afa368, #f7eab6, #cebb6f) 1
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .img_lists__item {
    width: 100%
  }
}

.is-search-by-premium-plan .img_lists__item img {
  width: 100%
}

.is-search-by-premium-plan .swiper-premium-plan {
  width: 740px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 46px
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-search-by-premium-plan .swiper-premium-plan {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-premium-plan {
    width: 100%;
    margin-top: 24px
  }
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide {
  border: 5px solid;
  border-image: linear-gradient(to bottom, #afa368, #f7eab6, #cebb6f) 1
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 296/135;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content {
  padding: 20px 26px 26px;
  background: #fff;
  position: relative
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content {
    padding: 3vw
  }
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-sub,
.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-main {
  font-size: 14px;
  line-height: 1.5
}

@media(min-width: 480px) {

  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-sub,
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-main {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {

  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-sub,
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-main {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .title .title-main {
    display: block
  }
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .place {
  font-size: 13px;
  margin-top: 2px;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .place {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .place {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .place {
    margin-top: 10px
  }
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  margin-top: 10px;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: auto;
  border: 1px solid #0f67ae;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .arrow {
    border-radius: 2px
  }
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .arrow svg {
  width: 8px;
  height: auto
}

.is-search-by-premium-plan .swiper-premium-plan .swiper-wrapper .swiper-slide .content .arrow svg path {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.is-search-by-premium-plan .swiper-button {
  margin-top: 40px
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .swiper-button {
    margin-top: 20px
  }
}

.is-search-by-premium-plan .swiper-button .swiper-pagination-bullet-active {
  background: #0f67ae
}

.is-search-by-premium-plan .primary_btn {
  width: 512px;
  margin-top: 40px;
  text-align: center
}

@media only screen and (max-width:640px) {
  .is-search-by-premium-plan .primary_btn {
    width: 100%;
    margin-top: 24px
  }
}

.is-seminar-slide {
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .is-seminar-slide {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw)
  }
}

.is-seminar_lists__item img {
  width: 100%
}

.is-seminar .swiper-button {
  margin-top: 34px
}

.is-useful-information_lists {
  display: flex;
  justify-content: center;
  gap: 30px
}

@media only screen and (max-width:640px) {
  .is-useful-information_lists {
    flex-direction: column;
    gap: 15px
  }
}

.is-useful-information_lists__item {
  width: 50%
}

@media only screen and (max-width:640px) {
  .is-useful-information_lists__item {
    width: 100%
  }
}

.is-useful-information_lists__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 38px;
  background: linear-gradient(45deg, #034490, #059acf);
  cursor: pointer;
  transition: all .3s ease;
  border: 0
}

@media only screen and (max-width:640px) {
  .is-useful-information_lists__item a {
    padding: 24px;
    min-height: 115px
  }
}

.is-useful-information_lists__item a img {
  display: block;
  width: 74px;
  margin: 0 auto
}

@media only screen and (max-width:640px) {
  .is-useful-information_lists__item a img {
    width: 44px
  }
}

.is-useful-information_lists__item a .text {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1.66
}

@media(min-width: 375px) {
  .is-useful-information_lists__item a .text {
    font-size: 24px;
    font-size: calc(0.0076628352*100vw + 11.1264367816px)
  }
}

@media(min-width: 1680px) {
  .is-useful-information_lists__item a .text {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-useful-information_lists__item a .text {
    margin-top: 4px
  }
}

.is-email-newsletter-content .title {
  text-align: center
}

.is-email-newsletter-content .title .title-sub {
  display: block;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px
}

@media(min-width: 375px) {
  .is-email-newsletter-content .title .title-sub {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-email-newsletter-content .title .title-sub {
    font-size: 20px
  }
}

.is-email-newsletter-content .title .title-main {
  display: block;
  font-size: 16px;
  font-weight: 700
}

@media(min-width: 375px) {
  .is-email-newsletter-content .title .title-main {
    font-size: 28px;
    font-size: calc(0.0091954023*100vw + 12.5517241379px)
  }
}

@media(min-width: 1680px) {
  .is-email-newsletter-content .title .title-main {
    font-size: 28px
  }
}

.is-email-newsletter-content .text {
  font-size: 12px;
  text-align: center;
  margin-top: 10px
}

@media(min-width: 375px) {
  .is-email-newsletter-content .text {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-email-newsletter-content .text {
    font-size: 20px
  }
}

.is-email-newsletter-content .btn {
  margin-top: 42px
}

@media only screen and (max-width:640px) {
  .is-email-newsletter-content .btn {
    margin-top: 24px
  }
}

.is-email-newsletter-content .btn a {
  max-width: 616px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 58px 24px;
  background: linear-gradient(45deg, #034490, #059acf);
  cursor: pointer;
  transition: all .3s ease;
  border: 0
}

@media only screen and (max-width:640px) {
  .is-email-newsletter-content .btn a {
    padding: 30px 16px
  }
}

.is-email-newsletter-content .btn a img {
  display: block;
  width: 93px;
  margin: 0
}

@media only screen and (max-width:640px) {
  .is-email-newsletter-content .btn a img {
    width: 52px
  }
}

.is-email-newsletter-content .btn a .btn-text {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-left: 35px
}

@media(min-width: 375px) {
  .is-email-newsletter-content .btn a .btn-text {
    font-size: 24px;
    font-size: calc(0.0076628352*100vw + 11.1264367816px)
  }
}

@media(min-width: 1680px) {
  .is-email-newsletter-content .btn a .btn-text {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-email-newsletter-content .btn a .btn-text {
    margin-left: 10px
  }
}

.is-recommended-plan-slide a {
  position: relative;
  display: block
}

.is-recommended-plan-slide .img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 296/135;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative
}

.is-recommended-plan-slide .title {
  position: absolute;
  inset: 0;
  z-index: 100;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .3);
}

@media(min-width: 480px) {
  .is-recommended-plan-slide .title {
    font-size: 28px;
    font-size: calc(0.0125*100vw + 12px)
  }
}

@media(min-width: 1280px) {
  .is-recommended-plan-slide .title {
    font-size: 28px
  }
}

.is-recommended-plan-slide .swiper-button {
  margin-top: 50px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-recommended-plan-slide .swiper-button {
    margin-top: 30px
  }
}

@media only screen and (max-width:640px) {
  .is-recommended-plan-slide .swiper-button {
    margin-top: 28px
  }
}

.is-category .is-recommended-plan_lists__item a img {
  display: block;
  width: 100%
}

.is-category .search-category_lists {
  width: 59.5vw;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2000
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-category .search-category_lists {
    width: 72vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-category .search-category_lists {
    width: 64vw
  }
}

@media only screen and (max-width:640px) {
  .is-category .search-category_lists {
    width: 89.3vw
  }
}

.is-category .is-description {
  text-align: center
}

.is-category .is-description .title {
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  color: #0f67ae;
  font-weight: 700;
  position: relative;
  line-height: 1.8;
  margin-bottom: 40px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px
}

@media(min-width: 375px) {
  .is-category .is-description .title {
    font-size: 32px;
    font-size: calc(0.0091954023*100vw + 16.5517241379px)
  }
}

@media(min-width: 1680px) {
  .is-category .is-description .title {
    font-size: 32px
  }
}

@media only screen and (max-width:640px) {
  .is-category .is-description .title {
    text-underline-offset: 4px
  }
}

.is-category .is-description .text {
  font-size: 12px;
  margin-top: 20px
}

@media(min-width: 375px) {
  .is-category .is-description .text {
    font-size: 18px;
    font-size: calc(0.0045977011*100vw + 10.275862069px)
  }
}

@media(min-width: 1680px) {
  .is-category .is-description .text {
    font-size: 18px
  }
}

.is-category .is-description .primary_btn {
  margin-top: 40px
}

@media only screen and (max-width:640px) {
  .is-category .is-description .primary_btn {
    margin-top: 2px
  }
}

.is-category .is-location-plan .content-01 {
  display: block
}

.is-category .is-location-plan .content-02 {
  display: none
}

.is-category .is-location-plan .toggle-btn {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
  border-radius: 10px;
  padding: 5px;
  background: #fff
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .toggle-btn {
    border-radius: 5px
  }
}

.is-category .is-location-plan .toggle-btn__item {
  width: 50%;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: all .3s ease;
  border: 0
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .toggle-btn__item {
    border-radius: 5px
  }
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .toggle-btn__item {
    padding: 8px 20px
  }
}

.is-category .is-location-plan .toggle-btn__item .text {
  font-size: 14px
}

@media(min-width: 480px) {
  .is-category .is-location-plan .toggle-btn__item .text {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-category .is-location-plan .toggle-btn__item .text {
    font-size: 18px
  }
}

.is-category .is-location-plan .toggle-btn__item.is-active {
  background: #0f67ae
}

.is-category .is-location-plan .toggle-btn__item.is-active .text {
  color: #fff
}

.is-category .is-location-plan .month-area {
  margin-bottom: 84px
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area {
    margin-bottom: 50px
  }
}

.is-category .is-location-plan .month-area__btn a {
  font-size: 14px;
  background: #fff;
  border-radius: 5px;
  padding: 12px 5px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, .3) 0px 25px 20px -20px
}

@media(min-width: 480px) {
  .is-category .is-location-plan .month-area__btn a {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-category .is-location-plan .month-area__btn a {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area__btn a {
    border-radius: 3px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-category .is-location-plan .month-area__btn a {
    padding: 10px 5px
  }
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area__btn a {
    padding: 8px 5px
  }
}

.is-category .is-location-plan .month-area__btn a:hover {
  background: #0f67ae;
  color: #fff
}

.is-category .is-location-plan .month-area_lists__item {
  margin-top: 28px
}

.is-category .is-location-plan .month-area_lists__item .text {
  font-size: 15px;
  font-weight: 700;
  color: #0f67ae;
  line-height: 1.2;
  margin-bottom: 7px;
  display: block
}

@media(min-width: 480px) {
  .is-category .is-location-plan .month-area_lists__item .text {
    font-size: 20px;
    font-size: calc(0.00625*100vw + 12px)
  }
}

@media(min-width: 1280px) {
  .is-category .is-location-plan .month-area_lists__item .text {
    font-size: 20px
  }
}

.is-category .is-location-plan .month-area_lists__item .inner_lists {
  display: flex;
  gap: 12px
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area_lists__item .inner_lists {
    flex-wrap: wrap
  }
}

.is-category .is-location-plan .month-area_lists__item .inner_lists__item {
  width: calc((100% - 132px)/12)
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area_lists__item .inner_lists__item {
    width: calc((100% - 36px)/4)
  }
}

.is-category .is-location-plan .month-area button {
  appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: auto;
}

.is-category .is-location-plan .month-area .month-area_lists__button {
  min-width: 88px;
  : block;
  font-size: 14px;
  line-height: 1.2;
  background: #fff;
  padding: 12px 5px;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center
}

@media(min-width: 480px) {
  .is-category .is-location-plan .month-area .month-area_lists__button {
    font-size: 16px;
    font-size: calc(0.0025*100vw + 12.8px)
  }
}

@media(min-width: 1280px) {
  .is-category .is-location-plan .month-area .month-area_lists__button {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-category .is-location-plan .month-area .month-area_lists__button {
    padding: 10px 5px
  }
}

@media only screen and (max-width:640px) {
  .is-category .is-location-plan .month-area .month-area_lists__button {
    padding: 8px 5px
  }
}

.is-category .is-location-plan .month-area .month-area_lists__button.is-disabled {
  cursor: default;
}

.is-category .is-location-plan .month-area .month-area_lists__button:not(.is-disabled):hover,
.is-category .is-location-plan .month-area .month-area_lists__button.is-active {
  background: #0f67ae;
  color: #fff
}

.index {
  position: relative
}

.index .is-new-plan {
  position: relative
}

.index .is-new-plan:before {
  content: "";
  width: 100%;
  height: 51%;
  background: #0f67ae;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0
}

.index .is-new-plan-slide .swiper-button {
  margin-top: 50px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .index .is-new-plan-slide .swiper-button {
    margin-top: 30px
  }
}

@media only screen and (max-width:640px) {
  .index .is-new-plan-slide .swiper-button {
    margin-top: 28px
  }
}
/* 
.index .is-search-by-event_lists__item a {
  background: #fff;
  border-radius: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: relative
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a {
    padding: 6px
  }
}

.index .is-search-by-event_lists__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, #13354f 0%, #3f77a2 100%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.index .is-search-by-event_lists__item a .img {
  hidden;
  width: 96px;
  position: relative;
  z-index: 200
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .index .is-search-by-event_lists__item a .img {
    width: 76px
  }
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a .img {
    width: 48px
  }
}

.index .is-search-by-event_lists__item a .title {
  width: calc(100% - 96px);
  padding-inline: 13px 10px;
  position: relative;
  z-index: 200
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .index .is-search-by-event_lists__item a .title {
    width: calc(100% - 76px)
  }
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a .title {
    width: calc(100% - 48px)
  }
}

.index .is-search-by-event_lists__item a .title .en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 480px) {
  .index .is-search-by-event_lists__item a .title .en {
    font-size: 16px;
    font-size: calc(0.0075*100vw + 6.4px)
  }
}

@media(min-width: 1280px) {
  .index .is-search-by-event_lists__item a .title .en {
    font-size: 16px
  }
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .index .is-search-by-event_lists__item a .title .en {
    font-size: 14px
  }
}

.index .is-search-by-event_lists__item a .title .jp {
  margin-top: 3px;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  font-feature-settings: "palt";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 480px) {
  .index .is-search-by-event_lists__item a .title .jp {
    font-size: 24px;
    font-size: calc(0.01375*100vw + 6.4px)
  }
}

@media(min-width: 1280px) {
  .index .is-search-by-event_lists__item a .title .jp {
    font-size: 24px
  }
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .index .is-search-by-event_lists__item a .title .jp {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a .title .jp {
    width: 80%;
    margin-top: 2px
  }
}

.index .is-search-by-event_lists__item a .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 200;
  width: 8px
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a .arrow {
    right: 6px
  }
}

@media only screen and (max-width:640px) {
  .index .is-search-by-event_lists__item a .arrow svg {
    width: 6px
  }
}

.index .is-search-by-event_lists__item:hover {
  filter: drop-shadow(2px 10px 10px rgba(57, 57, 57, 0.4))
}

.index .is-search-by-event_lists__item:hover a::before {
  opacity: 1
}

.index .is-search-by-event_lists__item:hover a .title .en,
.index .is-search-by-event_lists__item:hover a .title .jp {
  color: #fff
}

.index .is-search-by-event_lists__item:hover a .arrow svg path {
  fill: #fff
} */

.index .is-search-by-location {
  position: relative
}

.index .is-search-by-location_content .map {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0
}

@media only screen and (max-width:640px) {
  .index .is-search-by-location_content .map {
    width: 105%;
    margin-right: calc(50% - 50vw)
  }
}

.index .is-search-by-location_content .map img {
  width: 100%
}

@media only screen and (max-width:640px) {
  .index .is-search-by-location_content .map .country_lists {
    display: none
  }
}

.index .is-search-by-location_content .map .country_lists__item {
  position: absolute
}

.index .is-search-by-location_content .map .country_lists__item a {
  display: flex
}

.index .is-search-by-location_content .map .country_lists__item a .text {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transform-origin: center bottom;
  -webkit-transition: .8s;
  -moz-transition: .8s;
  -ms-transition: .8s;
  -o-transition: .8s;
  transition: .8s
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .index .is-search-by-location_content .map .country_lists__item a .text {
    font-size: 1.4vw
  }
}

.index .is-search-by-location_content .map .country_lists__item a .pin {
  position: relative;
  display: flex;
  justify-content: center;
  width: 16vw;
  max-width: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  transform-origin: center bottom
}

.index .is-search-by-location_content .map .country_lists__item a .pin .passive,
.index .is-search-by-location_content .map .country_lists__item a .pin .active {
  width: 100%;
  transform-origin: center bottom
}

.index .is-search-by-location_content .map .country_lists__item a .pin .passive {
  opacity: 1;
  visibility: visible;
  -webkit-transition: .1s;
  -moz-transition: .1s;
  -ms-transition: .1s;
  -o-transition: .1s;
  transition: .1s
}

.index .is-search-by-location_content .map .country_lists__item a .pin .active {
  position: absolute;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s
}

.index .is-search-by-location_content .map .country_lists__item a:hover .text {
  margin-bottom: 20px;
  transform: scale(2)
}

.index .is-search-by-location_content .map .country_lists__item a:hover .pin {
  width: 18vw;
  max-width: 180px
}

.index .is-search-by-location_content .map .country_lists__item a:hover .pin .passive {
  opacity: 0;
  visibility: hidden;
  transform: scale(0)
}

.index .is-search-by-location_content .map .country_lists__item a:hover .pin .active {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.index .is-search-by-location_content .map .country_lists .is-center {
  transform: translateX(-50%)
}

.index .is-search-by-location_content .map .country_lists .is-center a {
  align-items: center;
  flex-direction: column
}

.index .is-search-by-location_content .map .country_lists .is-center a .text {
  margin-bottom: 5px;
  text-align: center
}

.index .is-search-by-location_content .map .country_lists .is-center a:hover .text {
  margin-bottom: 30px
}

.index .is-search-by-location_content .map .country_lists .is-left {
  transform: translateX(-40%)
}

.index .is-search-by-location_content .map .country_lists .is-left a {
  align-items: center;
  flex-direction: row-reverse
}

.index .is-search-by-location_content .map .country_lists .is-left a .text {
  margin-left: 5px;
  text-align: left
}

.index .is-search-by-location_content .map .country_lists .is-left a:hover .text {
  margin-left: 50px
}

.index .is-search-by-location_content .map .country_lists .is-right {
  transform: translateX(-60%)
}

.index .is-search-by-location_content .map .country_lists .is-right a {
  align-items: center;
  flex-direction: row
}

.index .is-search-by-location_content .map .country_lists .is-right a .text {
  margin-right: 5px;
  text-align: right
}

.index .is-search-by-location_content .map .country_lists .is-right a:hover .text {
  margin-right: 50px
}

.index .is-search-by-location_content .map .country_lists .country-norway {
  bottom: 77.2%;
  left: 5%
}

.index .is-search-by-location_content .map .country_lists .country-sweden {
  bottom: 77.2%;
  left: 12%
}

.index .is-search-by-location_content .map .country_lists .country-england {
  bottom: 71.7%;
  left: 1.9%
}

.index .is-search-by-location_content .map .country_lists .country-germany {
  bottom: 70.6%;
  left: 11.6%
}

.index .is-search-by-location_content .map .country_lists .country-france {
  bottom: 68.8%;
  left: 3.2%
}

.index .is-search-by-location_content .map .country_lists .country-spain {
  bottom: 63.2%;
  left: 1.6%
}

.index .is-search-by-location_content .map .country_lists .country-italy {
  bottom: 64.3%;
  left: 10%
}

.index .is-search-by-location_content .map .country_lists .country-south-korea {
  bottom: 60.2%;
  left: 39.8%
}

.index .is-search-by-location_content .map .country_lists .country-japan {
  bottom: 60.6%;
  left: 45.1%
}

.index .is-search-by-location_content .map .country_lists .country-china {
  bottom: 58%;
  left: 35.2%
}

.index .is-search-by-location_content .map .country_lists .country-taiwan {
  bottom: 52%;
  left: 40%
}

.index .is-search-by-location_content .map .country_lists .country-thailand {
  bottom: 45.9%;
  left: 35.3%
}

.index .is-search-by-location_content .map .country_lists .country-indonesia {
  bottom: 33.6%;
  left: 37.5%
}

.index .is-search-by-location_content .map .country_lists .country-australia {
  bottom: 20.5%;
  left: 46%
}

.index .is-search-by-location_content .map .country_lists .country-america {
  bottom: 63%;
  left: 75%
}

.index .is-search-by-location_content .map .country_lists .country-brazil {
  bottom: 25%;
  left: 91.6%
}

.index .is-search-by-location_content .sp-country {
  margin-top: 4vw;
  display: none
}

@media only screen and (max-width:640px) {
  .index .is-search-by-location_content .sp-country {
    display: block
  }
}

.index .is-search-by-location_content .sp-country_lists__item {
  border: 1px solid #13354f;
  padding: 4vw;
  background: #fff
}

.index .is-search-by-location_content .sp-country_lists__item:not(:first-child) {
  margin-top: 3vw
}

.index .is-search-by-location_content .sp-country_lists__item .btn {
  display: block;
  position: relative
}

.index .is-search-by-location_content .sp-country_lists__item .btn .title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2
}

.index .is-search-by-location_content .sp-country_lists__item .btn .toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  transition: transform .3s ease
}

.index .is-search-by-location_content .sp-country_lists__item .btn .toggle:before,
.index .is-search-by-location_content .sp-country_lists__item .btn .toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #13354f
}

.index .is-search-by-location_content .sp-country_lists__item .btn .toggle:after {
  transform: translate(-50%, -50%) rotate(90deg)
}

.index .is-search-by-location_content .sp-country_lists__item .inner_lists {
  border-top: 1px solid #13354f;
  margin-top: 3vw;
  padding-top: 5vw;
  display: none
}

.index .is-search-by-location_content .sp-country_lists__item .inner_lists__item:not(:first-child) {
  margin-top: 4vw
}

.index .is-search-by-location_content .sp-country_lists__item .inner_lists__item a {
  display: flex;
  align-items: center;
  gap: 6px
}

.index .is-search-by-location_content .sp-country_lists__item .inner_lists__item a img {
  width: 14px;
  margin: 0
}

.index .is-search-by-location_content .sp-country_lists__item .inner_lists__item a .text {
  font-size: 23px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  line-height: 1.2
}

.index .is-search-by-location_content .sp-country_lists__item.is-open .inner_lists {
  display: block
}

.index .is-search-by-location_content .sp-country_lists__item.is-open .toggle {
  transform: translate(-50%, -50%) rotate(90deg)
}

.index .is-search-by-location_content .sp-country_lists__item.is-open .toggle:before {
  opacity: 0
}

.index .is-search-by-location .bg-location {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1
}

.index .is-search-by-location .bg-location img {
  width: 100%
}

.index .is-related-companies_lists {
  gap: 20px
}

@media only screen and (max-width:640px) {
  .index .is-related-companies_lists {
    gap: 12px
  }
}

.index .is-related-companies_lists img {
  width: 100%
}

.is-archives .search-category_lists {
  margin-top: 0;
  gap: 22px
}

.is-archives .icon.is-team {
  width: 34px
}

@media only screen and (max-width:640px) {
  .is-archives .icon.is-team {
    width: 28px
  }
}

.is-archives .icon.is-recommended {
  width: 21px !important
}

.is-archives .icon.is-premium {
  width: 24px
}

.is-archives .icon.is-archive {
  width: 20px
}

.is-archives .is-search-by-team-cat_lists {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.09));
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

@media only screen and (max-width:640px) {
  .is-archives .is-search-by-team-cat_lists {
    gap: 2vw
  }
}

.is-archives .is-search-by-team-cat_lists__item a {
  text-align: center;
  display: block;
  font-size: 13px;
  background: #fff;
  font-weight: 600;
  padding: .8em 1em;
  border-radius: 3px;
  line-height: 1.2;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

@media(min-width: 480px) {
  .is-archives .is-search-by-team-cat_lists__item a {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-archives .is-search-by-team-cat_lists__item a {
    font-size: 16px
  }
}

@media only screen and (max-width:640px) {
  .is-archives .is-search-by-team-cat_lists__item a {
    border-radius: 2px
  }
}

.is-archives .is-search-by-team-cat_lists__item a:hover {
  background: #0f67ae;
  color: #fff
}

.is-archives .is-search-by-team-cat_lists__item.is-active a {
  background: #0f67ae;
  color: #fff;
  pointer-events: none
}

.is-archives .is-view-past-plans .primary_btn {
  margin-top: 70px
}

@media only screen and (max-width:640px) {
  .is-archives .is-view-past-plans .primary_btn {
    margin-top: 30px
  }
}

.is-archives .is-recommended-plan_lists__item img {
  width: 100%
}

.tour-content {
  margin-top: 90px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content {
    margin-top: 50px
  }
}

@media only screen and (max-width:640px) {
  .tour-content {
    margin-top: 20px
  }
}

.tour-content-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f67ae
}

@media(min-width: 480px) {
  .tour-content-title {
    font-size: 30px;
    font-size: calc(0.015*100vw + 10.8px)
  }
}

@media(min-width: 1280px) {
  .tour-content-title {
    font-size: 30px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-title {
    margin-bottom: 10px
  }
}

.tour-content-title span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit
}

.tour-content-search {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.09))
}

@media only screen and (max-width:640px) {
  .tour-content-search {
    border-radius: 2px
  }
}

.tour-content-search-title {
  font-size: 14px;
  font-weight: 600;
  background: #0f67ae;
  color: #fff;
  width: 180px;
  text-align: center;
  padding: 7px 0;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center
}

@media(min-width: 480px) {
  .tour-content-search-title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .tour-content-search-title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-search-title {
    width: 22%
  }
}

.tour-content-search_lists {
  width: calc(100% - 180px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  padding: 10px 20px
}

@media only screen and (max-width:640px) {
  .tour-content-search_lists {
    width: 78%;
    gap: 1vw;
    padding: 10px 10px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-search_lists__item {
    width: calc(50% - 1vw)
  }
}

.tour-content-search_lists__item label {
  font-size: 12px
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.tour-content-search_lists__item label input[type="radio"] {
margin: 0;
}

@media(min-width: 480px) {
  .tour-content-search_lists__item label {
    font-size: 16px;
    font-size: calc(0.005*100vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .tour-content-search_lists__item label {
    font-size: 16px
  }
}

.tour-content-plan {
  margin-top: 18px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.09))
}

.tour-content-plan_lists {
  background: #fff;
  border-radius: 6px;
  overflow: hidden
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists {
    border-radius: 3px
  }
}

.tour-content-plan_lists__item:not(:first-child) {
  border-top: 1px solid #e0e0e0
}

.tour-content-plan_lists__item a {
  display: block;
  padding: 34px 40px;
  display: flex;
  background: #fff
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a {
    padding: 24px 30px;
    flex-direction: column
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a {
    flex-direction: column;
    padding: 4vw
  }
}

.tour-content-plan_lists__item a .country_lists {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1vw;
  margin-bottom: 14px
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .country_lists {
    margin-bottom: 8px
  }
}

.tour-content-plan_lists__item a .country_lists__item {
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  background: #eaeaea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: .2em .8em;
  gap: 10px
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .country_lists__item {
    font-size: 13px;
    font-size: calc(0.00125*100vw + 11.4px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .country_lists__item {
    font-size: 13px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .country_lists__item {
    padding: .3em 1em;
    border-radius: 4px
  }
}

.tour-content-plan_lists__item a .country_lists__item img {
  width: 30px
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .country_lists__item img {
    width: 20px
  }
}

.tour-content-plan_lists__item a .content-L {
  width: 70%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-L {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L {
    width: 100%
  }
}

.tour-content-plan_lists__item a .content-L .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px
}

.tour-content-plan_lists__item a .content-L .head .cat_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L .head .cat_lists {
    width: 50%;
    gap: 1vw
  }
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item {
  font-size: 12px;
  font-weight: 600;
  padding: .6em 1em;
  border-radius: 100vh;
  line-height: 1;
  color: #fff;
  background: #0f67ae
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-L .head .cat_lists__item {
    font-size: 14px;
    font-size: calc(0.0025*100vw + 10.8px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-L .head .cat_lists__item {
    font-size: 14px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L .head .cat_lists__item {
    padding: .4em .8em
  }
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.student-travel {
  background: #25addf
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.direct {
  background: #2551df
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.transfer {
  background: #ea1600
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.faire {
  background: #ea5f00
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.exclusive-lounge {
  background: #19344c
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.meet-and-greet {
  background: #9d9039
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.backyard-tour {
  background: #235741
}

.tour-content-plan_lists__item a .content-L .head .cat_lists__item.guest-tour {
  background: #156886
}

.tour-content-plan_lists__item a .content-L .head .country_lists {
  display: none
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-L .head .country_lists {
    display: flex
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L .head .country_lists {
    display: flex;
    width: 50%
  }
}

.tour-content-plan_lists__item a .content-L .lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-L .lead {
    font-size: 20px;
    font-size: calc(0.01*100vw + 7.2px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-L .lead {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L .lead {
    width: 82%
  }
}

.tour-content-plan_lists__item a .content-L .title {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  color: #0f67ae;
  line-height: 1.7;
  margin-top: 4px
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-L .title {
    font-size: 22px;
    font-size: calc(0.01*100vw + 9.2px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-L .title {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-L .title {
    text-underline-offset: 4px
  }
}

.tour-content-plan_lists__item a .content-R {
  width: 30%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-R {
    width: 100%
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-R {
    width: 100%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-R .country_lists {
    display: none
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-R .country_lists {
    display: none
  }
}

.tour-content-plan_lists__item a .content-R .price-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: right
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-R .price-text {
    font-size: 15px;
    font-size: calc(0.00375*100vw + 10.2px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-R .price-text {
    font-size: 15px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-R .price-text {
    text-align: left
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-R .price-text {
    text-align: left
  }
}

.tour-content-plan_lists__item a .content-R .price {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
  line-height: 1.5;
  text-align: right
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-R .price {
    font-size: 25px;
    font-size: calc(0.015*100vw + 5.8px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-R .price {
    font-size: 25px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item a .content-R .price {
    text-align: left
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item a .content-R .price {
    text-align: left
  }
}

.tour-content-plan_lists__item a .content-R .price span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit
}

.tour-content-plan_lists__item a .content-R .price small {
  font-size: 12px;
  line-height: 1.5
}

@media(min-width: 480px) {
  .tour-content-plan_lists__item a .content-R .price small {
    font-size: 20px;
    font-size: calc(0.01*100vw + 7.2px)
  }
}

@media(min-width: 1280px) {
  .tour-content-plan_lists__item a .content-R .price small {
    font-size: 20px
  }
}

.tour-content-plan_lists__item.is-premium .content-L .head .cat_lists {
  width: 100%
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item.is-premium .content-L .lead {
    width: 100%
  }
}

.tour-content-plan_lists__item.is-premium .content-R {
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .tour-content-plan_lists__item.is-premium .content-R {
    margin-top: 20px
  }
}

@media only screen and (max-width:640px) {
  .tour-content-plan_lists__item.is-premium .content-R {
    margin-top: 20px
  }
}

.tour-content .primary_btn {
  margin-top: 50px
}

@media only screen and (max-width:640px) {
  .tour-content .primary_btn {
    margin-top: 30px
  }
}

.is-store .is-store-info .map {
  width: 100%;
  height: 440px
}

.is-store .is-store-info .map iframe {
  width: 100%;
  height: 100%
}

.is-store .is-store-info .content {
  margin-top: 40px;
  display: flex;
  gap: 40px
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px
  }
}

.is-store .is-store-info .content-L {
  width: 50%
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-L {
    width: 100%
  }
}

.is-store .is-store-info .content-L .title {
  font-size: 16px;
  color: #0f67ae;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  line-height: 1.36
}

@media(min-width: 480px) {
  .is-store .is-store-info .content-L .title {
    font-size: 22px;
    font-size: calc(0.0075*100vw + 12.4px)
  }
}

@media(min-width: 1280px) {
  .is-store .is-store-info .content-L .title {
    font-size: 22px
  }
}

.is-store .is-store-info .content-L .title:before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background: #0f67ae;
  position: absolute;
  top: 0;
  left: 0
}

.is-store .is-store-info .content-L .info-lists {
  margin-top: 40px
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-L .info-lists {
    margin-top: 20px
  }
}

.is-store .is-store-info .content-L .info-lists__item {
  display: flex;
  gap: 10px;
  padding: 14px 0
}

.is-store .is-store-info .content-L .info-lists__item:not(:first-child) {
  border-top: 1px solid #bfbfbf
}

.is-store .is-store-info .content-L .info-lists__item:first-child {
  padding-top: 0
}

.is-store .is-store-info .content-L .info-lists__item dt {
  width: 100px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-store .is-store-info .content-L .info-lists__item dt {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-store .is-store-info .content-L .info-lists__item dt {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-L .info-lists__item dt {
    width: 70px
  }
}

.is-store .is-store-info .content-L .info-lists__item dd {
  width: calc(100% - 100px);
  font-size: 13px;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-store .is-store-info .content-L .info-lists__item dd {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-store .is-store-info .content-L .info-lists__item dd {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-L .info-lists__item dd {
    width: calc(100% - 70px)
  }
}

.is-store .is-store-info .content-R {
  width: 50%
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-R {
    width: 100%
  }
}

.is-store .is-store-info .content-R .other_lists {
  width: 100%
}

.is-store .is-store-info .content-R .other_lists__item {
  background: #f2f2f5;
  padding: 16px
}

@media only screen and (max-width:640px) {
  .is-store .is-store-info .content-R .other_lists__item {
    padding: 3vw
  }
}

.is-store .is-store-info .content-R .other_lists__item .title {
  font-size: 15px;
  font-weight: 700;
  color: #0f67ae;
  margin-bottom: 10px;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-store .is-store-info .content-R .other_lists__item .title {
    font-size: 18px;
    font-size: calc(0.00375*100vw + 13.2px)
  }
}

@media(min-width: 1280px) {
  .is-store .is-store-info .content-R .other_lists__item .title {
    font-size: 18px
  }
}

.is-store .is-store-info .content-R .other_lists__item .text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px
}

@media(min-width: 480px) {
  .is-store .is-store-info .content-R .other_lists__item .text {
    font-size: 16px;
    font-size: calc(0.00375*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-store .is-store-info .content-R .other_lists__item .text {
    font-size: 16px
  }
}

.is-store .is-store-info .content-R .other_lists__item .img {
  display: flex;
  justify-content: space-between
}

.is-store .is-store-info .content-R .other_lists__item .img img {
  width: 48%
}

.is-store .is-store-info .content-R .other_lists__item img {
  width: 100%;
  height: auto
}

.is-store .is-store-info .content-R .other_lists.flex {
  display: flex;
  justify-content: space-between
}

.is-store .is-store-info .content-R .other_lists.flex .other_lists__item {
  width: 48%;
  display: flex;
  flex-direction: column
}

.is-store .is-store-info .content-R .other_lists.flex .other_lists__item .title {
  flex-grow: 1
}

.is-store .is-store-info .content-R .other_lists.flex .other_lists__item .text {
  flex-grow: 1
}

.is-store .is-email-newsletter {
  background: #fff
}

.is-premium-about {
  position: relative;
  padding: 246px 0 370px
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-premium-about {
    padding: 200px 0 280px
  }
}

@media only screen and (max-width:640px) {
  .is-premium-about {
    padding: 130px 0 240px
  }
}

.is-premium-about .ttl-primary {
  margin-bottom: 60px;
  position: relative;
  z-index: 100
}

@media only screen and (max-width:640px) {
  .is-premium-about .ttl-primary {
    margin-bottom: 30px
  }
}

.is-premium-about .ttl-primary .en {
  color: #fff;
  font-size: 13px;
  font-weight: 500
}

@media(min-width: 480px) {
  .is-premium-about .ttl-primary .en {
    font-size: 18px;
    font-size: calc(0.00625*100vw + 10px)
  }
}

@media(min-width: 1280px) {
  .is-premium-about .ttl-primary .en {
    font-size: 18px
  }
}

.is-premium-about .ttl-primary .jp {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  padding-top: 0;
  margin-top: 20px
}

@media(min-width: 480px) {
  .is-premium-about .ttl-primary .jp {
    font-size: 36px;
    font-size: calc(0.0125*100vw + 20px)
  }
}

@media(min-width: 1280px) {
  .is-premium-about .ttl-primary .jp {
    font-size: 36px
  }
}

.is-premium-about .ttl-primary .jp:before {
  content: none
}

.is-premium-about .text {
  position: relative;
  z-index: 100;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: 2.5
}

@media(min-width: 480px) {
  .is-premium-about .text {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-premium-about .text {
    font-size: 18px
  }
}

.is-premium-about .img01,
.is-premium-about .img02,
.is-premium-about .img03,
.is-premium-about .img04 {
  position: absolute;
  z-index: 0
}

.is-premium-about .img01 img,
.is-premium-about .img02 img,
.is-premium-about .img03 img,
.is-premium-about .img04 img {
  width: 100%
}

.is-premium-about .img01 {
  top: 18%;
  left: -24%;
  width: 19%
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-premium-about .img01 {
    top: 20%;
    left: -2%;
    width: 13%
  }
}

@media only screen and (max-width:640px) {
  .is-premium-about .img01 {
    top: 9.5%;
    left: 2%;
    width: 27.5%
  }
}

.is-premium-about .img02 {
  top: 15%;
  right: -21%;
  width: 28%
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-premium-about .img02 {
    top: 18%;
    right: -1%;
    width: 18%
  }
}

@media only screen and (max-width:640px) {
  .is-premium-about .img02 {
    top: 6%;
    right: 2%;
    width: 40.6%
  }
}

.is-premium-about .img03 {
  top: 50%;
  left: -17%;
  width: 28%
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-premium-about .img03 {
    top: 51%;
    left: -2%;
    width: 18%
  }
}

@media only screen and (max-width:640px) {
  .is-premium-about .img03 {
    top: 72%;
    left: 2%;
    width: 40.6%
  }
}

.is-premium-about .img04 {
  top: 57%;
  right: -12%;
  width: 20%
}

@media only screen and (min-width:641px)and (max-width:1024px) {
  .is-premium-about .img04 {
    top: 55%;
    right: 4%;
    width: 13%
  }
}

@media only screen and (max-width:640px) {
  .is-premium-about .img04 {
    top: 69%;
    right: 2%;
    width: 27.5%
  }
}

.is-premium-sports-hospitality .info_lists__item:not(:first-child) {
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item:not(:first-child) {
    margin-top: 20px
  }
}

.is-premium-sports-hospitality .info_lists__item:nth-child(2n) .info_lists__item-text {
  margin-left: auto
}

.is-premium-sports-hospitality .info_lists__item-main {
  padding: 40px;
  position: relative;
  background: center/cover no-repeat;
  border: 5px solid;
  border-image: linear-gradient(to bottom, #afa368, #f7eab6, #cebb6f) 1;
  cursor: pointer
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item-main {
    padding: 4vw
  }
}

.is-premium-sports-hospitality .info_lists__item-text {
  filter: drop-shadow(0 0 5px #000);
  width: 50%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-premium-sports-hospitality .info_lists__item-text {
    width: 60%
  }
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item-text {
    width: 100%
  }
}

.is-premium-sports-hospitality .info_lists__item-text-ttl .en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: .05em;
  font-weight: 600;
  margin: 0 auto 5%;
  line-height: 1;
  background: linear-gradient(90deg, #afa368, #f7eab6, #cebb6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media(min-width: 480px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .en {
    font-size: 74px;
    font-size: calc(0.0425*100vw + 19.6px)
  }
}

@media(min-width: 1280px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .en {
    font-size: 74px
  }
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .en {
    line-height: .8
  }
}

.is-premium-sports-hospitality .info_lists__item-text-ttl .jp {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  display: block
}

@media(min-width: 480px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .jp {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .jp {
    font-size: 24px
  }
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item-text-ttl .jp {
    margin-top: 2px
  }
}

.is-premium-sports-hospitality .info_lists__item-text-copy {
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.66
}

@media(min-width: 480px) {
  .is-premium-sports-hospitality .info_lists__item-text-copy {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-premium-sports-hospitality .info_lists__item-text-copy {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item-text-copy {
    width: 82%;
    margin-top: 8px
  }
}

.is-premium-sports-hospitality .info_lists__item .arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-top: 10px;
  width: 38px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item .arrow {
    border-radius: 2px
  }
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item .arrow {
    width: 19px;
    bottom: 10px;
    right: 10px
  }
}

.is-premium-sports-hospitality .info_lists__item .arrow img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item .arrow img {
    width: 46%
  }
}

.is-premium-sports-hospitality .info_lists__item .arrow.is-open img {
  transform: rotate(180deg)
}

.is-premium-sports-hospitality .info_lists__item .tour-content-plan_lists {
  border-radius: 0 0 5px 5px;
  max-height: 0;
  overflow: scroll;
  transition: max-height .3s ease-out
}

@media only screen and (max-width:640px) {
  .is-premium-sports-hospitality .info_lists__item .tour-content-plan_lists {
    border-radius: 0 0 3px 3px
  }
}

.is-premium-sports-hospitality .info_lists__item .tour-content-plan_lists.is-open {
  max-height: 1000px
}

.is-premium-sports-hospitality .info_lists__item .tour-content-plan_lists .cat_lists__item:not(.exclusive-lounge):not(.backyard-tour):not(.meet-with-players):not(.guest-tour) {
  display: none
}

.is-premium-plan-list {
  background: rgba(9, 30, 46, .96)
}

.is-premium-back-number-content {
  overflow-y: scroll
}

.is-premium-back-number-content .tour-content-plan_lists {
  max-height: 500px;
  overflow: auto
}

.is-news .is-page-lower-sec_container {
  padding: 60px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-news .is-page-lower-sec_container {
    padding: 4vw
  }
}

@media only screen and (max-width:640px) {
  .is-news .is-page-lower-sec_container {
    padding: 6vw
  }
}

.news_item:not(:first-child) {
  margin-top: 34px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .news_item:not(:first-child) {
    margin-top: 28px
  }
}

@media only screen and (max-width:640px) {
  .news_item:not(:first-child) {
    margin-top: 28px
  }
}

.news_item a {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.news_item a .news_item_inner {
  display: flex;
  justify-content: flex-start;
  align-items: center
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner {
    display: block;
    width: 83.5%
  }
}

.news_item a .news_item_inner .info {
  display: flex;
  align-items: center
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner .info {
    margin-bottom: 8px
  }
}

.news_item a .news_item_inner .time {
  margin-right: 24px;
  color: #9ca9b2;
  font-size: 14px
}

@media(min-width: 375px) {
  .news_item a .news_item_inner .time {
    font-size: 21px;
    font-size: calc(0.0053639847*100vw + 11.9885057471px)
  }
}

@media(min-width: 1680px) {
  .news_item a .news_item_inner .time {
    font-size: 21px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .news_item a .news_item_inner .time {
    margin-right: 18px
  }
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner .time {
    margin-right: 12px
  }
}

.news_item a .news_item_inner .cat {
  width: 18%;
  min-width: 176px;
  height: 34px;
  line-height: 34px;
  min-width: 200px;
  background: #007abe;
  color: #fff;
  border-radius: 100vh;
  margin-right: 24px;
  text-align: center;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .news_item a .news_item_inner .cat {
    font-size: 18px;
    font-size: calc(0.0045977011*100vw + 10.275862069px)
  }
}

@media(min-width: 1680px) {
  .news_item a .news_item_inner .cat {
    font-size: 18px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .news_item a .news_item_inner .cat {
    min-width: 150px;
    margin-right: 16px
  }
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner .cat {
    width: 32vw;
    min-width: 120px;
    height: 24px;
    line-height: 24px;
    margin-right: 0
  }
}

.news_item a .news_item_inner .title {
  position: relative;
  width: 100%;
  padding-right: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {
  .news_item a .news_item_inner .title {
    font-size: 21px;
    font-size: calc(0.0053639847*100vw + 11.9885057471px)
  }
}

@media(min-width: 1680px) {
  .news_item a .news_item_inner .title {
    font-size: 21px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .news_item a .news_item_inner .title {
    padding-right: 20px
  }
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner .title {
    line-height: 1.7;
    width: 100%;
    padding-right: 0;
    -webkit-line-clamp: 2
  }
}

.news_item a .news_item_inner .title.pdf {
  width: 70%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .news_item a .news_item_inner .title.pdf {
    width: 55%;
    padding-right: 30px
  }
}

@media only screen and (max-width:640px) {
  .news_item a .news_item_inner .title.pdf {
    width: 100%;
    padding-right: 7vw
  }
}

.news_item a .news_item_inner .title.pdf::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  color: #1d3751;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
  font-style: normal;
  font-size: 20px
}

@media(min-width: 375px) {
  .news_item a .news_item_inner .title.pdf::before {
    font-size: 27px;
    font-size: calc(0.0053639847*100vw + 17.9885057471px)
  }
}

@media(min-width: 1680px) {
  .news_item a .news_item_inner .title.pdf::before {
    font-size: 27px
  }
}

.news_item a:hover .title {
  color: #007abe
}

.news_item a:hover .title.pdf::before {
  color: #007abe
}

.article_news .article-clm_lists__item {
  margin-top: 0;
  border-bottom: 1px solid #eaecef
}

.article_news .article-clm_lists__item:first-child {
  border-top: 1px solid #eaecef
}

.article_news .article-clm_lists__item .news_item_inner {
  justify-content: flex-start;
  padding: 28px 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .article_news .article-clm_lists__item .news_item_inner {
    padding: 20px 0
  }
}

@media only screen and (max-width:640px) {
  .article_news .article-clm_lists__item .news_item_inner {
    padding: 16px 0
  }
}

@media only screen and (max-width:640px) {
  .article_news .article-clm_lists__item .news_item_inner .info {
    margin-bottom: 3px
  }
}

.article_news .article-clm_lists__item .arrow {
  background: #f6f9fb
}

@media only screen and (max-width:640px) {

  .is-contact .table_clm-02 th:nth-child(1),
  .is-contact .table_clm-02 td:nth-child(1) {
    width: 25% !important
  }
}

@media only screen and (max-width:640px) {

  .is-contact .table_clm-02 th:nth-child(2),
  .is-contact .table_clm-02 td:nth-child(2) {
    width: 40% !important
  }
}

@media only screen and (max-width:640px) {

  .is-contact .table_clm-02 th:nth-child(3),
  .is-contact .table_clm-02 td:nth-child(3) {
    width: 32% !important
  }
}

.is-kv {
  position: relative
}

@media only screen and (max-width:640px) {
  .is-kv {
    margin-top: 48px
  }
}

.is-kv-title {
  width: 100%;
  max-width: 820px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 100
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-kv-title {
    width: 60%
  }
}

@media only screen and (max-width:640px) {
  .is-kv-title {
    width: 85%;
    transform: translate(-50%, -50%)
  }
}

.is-kv_lists__item {
  height: 47.6vw;
  display: flex;
  width: 100%
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-kv_lists__item {
    height: 600px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-kv_lists__item {
    height: 460px
  }
}

@media only screen and (max-width:640px) {
  .is-kv_lists__item {
    flex-direction: column;
    height: 532px
  }
}

.is-kv_lists__item .img {
  display: block;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat
}

@media only screen and (max-width:640px) {
  .is-kv_lists__item .img.is-pc {
    display: none
  }
}

.is-kv_lists__item .img.is-sp {
  display: none
}

@media only screen and (max-width:640px) {
  .is-kv_lists__item .img.is-sp {
    display: block
  }
}

.is-kv .swiper-pagination {
  top: auto;
  bottom: 0;
  left: auto;
  right: 13px;
  transform: translateY(130%);
  text-align: right
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-kv .swiper-pagination {
    transform: translateY(90%)
  }
}

@media only screen and (max-width:640px) {
  .is-kv .swiper-pagination {
    width: 100vw;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 100%;
    bottom: auto;
    transform: translateY(10px);
    align-items: flex-end;
    padding-right: .6%
  }
}

.is-kv .swiper-pagination-bullet {
  width: 12px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 6px !important;
  background: #d0d1d6;
  opacity: 1
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-kv .swiper-pagination-bullet {
    width: 10px;
    margin: 0 5px !important
  }
}

@media only screen and (max-width:640px) {
  .is-kv .swiper-pagination-bullet {
    width: 8px;
    margin: 0 4px !important
  }
}

.is-kv .swiper-pagination-bullet-active {
  background: #0f67ae
}

.is-kv-lower {
  background: #0f67ae
}

.is-kv-lower .kv-bg {
  width: 100%;
  height: 27vw;
  background: center/cover no-repeat
}

@media only screen and (max-width:640px) {
  .is-kv-lower .kv-bg {
    height: 53.4vw
  }
}

.is-kv-lower .kv-caption {
  position: absolute;
  bottom: 3px;
  right: 0;
  padding: 3px 9px;
  line-height: 1.4;
  font-size: 13px;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, .8), 0px 0px 5px rgba(255, 255, 255, .8), 0px 0px 5px rgba(255, 255, 255, .8);
  font-weight: 700;
  color: #000
}

@media(min-width: 480px) {
  .is-kv-lower .kv-caption {
    font-size: 15px;
    font-size: calc(0.0025*100vw + 11.8px)
  }
}

@media(min-width: 1280px) {
  .is-kv-lower .kv-caption {
    font-size: 15px
  }
}

.is-kv-lower .kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.is-kv-lower .kv-title_img {
  width: 24%;
  display: block;
  margin: 0 auto
}

@media only screen and (max-width:640px) {
  .is-kv-lower .kv-title_img {
    width: 57%
  }
}

.is-kv-lower .kv-title_img img {
  width: 100%
}

.is-kv-lower .kv-title_en {
  display: block;
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-top: -10px;
  color: #fff
}

@media(min-width: 480px) {
  .is-kv-lower .kv-title_en {
    font-size: 60px;
    font-size: calc(0.03*100vw + 21.6px)
  }
}

@media(min-width: 1280px) {
  .is-kv-lower .kv-title_en {
    font-size: 60px
  }
}

.is-kv-lower .kv-title_jp {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  color: #fff
}

@media(min-width: 480px) {
  .is-kv-lower .kv-title_jp {
    font-size: 24px;
    font-size: calc(0.01*100vw + 11.2px)
  }
}

@media(min-width: 1280px) {
  .is-kv-lower .kv-title_jp {
    font-size: 24px
  }
}

.is-kv-info {
  width: 59.5vw;
  max-width: 1000px;
  margin: -64px auto 0;
  position: relative;
  z-index: 2000
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-kv-info {
    width: 64vw
  }
}

@media only screen and (max-width:640px) {
  .is-kv-info {
    width: 89.3vw
  }
}

.is-kv-info .search-news {
  margin-top: 40px;
  border: 2px solid #ececec;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 30px
}

@media only screen and (max-width:640px) {
  .is-kv-info .search-news {
    border-radius: 2px
  }
}

@media only screen and (max-width:640px) {
  .is-kv-info .search-news {
    margin-top: 24px;
    padding: 5vw;
    display: block
  }
}

.is-kv-info .search-news-title {
  width: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1
}

@media(min-width: 480px) {
  .is-kv-info .search-news-title {
    font-size: 18px;
    font-size: calc(0.005*100vw + 11.6px)
  }
}

@media(min-width: 1280px) {
  .is-kv-info .search-news-title {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .is-kv-info .search-news-title {
    width: 100%
  }
}

.is-kv-info .search-news-text {
  width: calc(100% - 100px)
}

@media only screen and (max-width:640px) {
  .is-kv-info .search-news-text {
    width: 100%;
    margin-top: 14px
  }
}

.is-kv-info .search-news-text .title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2
}

@media(min-width: 480px) {
  .is-kv-info .search-news-text .title {
    font-size: 17px;
    font-size: calc(0.005*100vw + 10.6px)
  }
}

@media(min-width: 1280px) {
  .is-kv-info .search-news-text .title {
    font-size: 17px
  }
}

.is-kv-info .search-news-text .text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5
}

@media(min-width: 480px) {
  .is-kv-info .search-news-text .text {
    font-size: 15px;
    font-size: calc(0.00375*100vw + 10.2px)
  }
}

@media(min-width: 1280px) {
  .is-kv-info .search-news-text .text {
    font-size: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-kv-info .search-news-text .text {
    margin-top: 8px
  }
}

.is-archives .is-kv {
  background: #193650
}

.is-archives .is-kv .kv-bg {
  position: relative;
  opacity: .2;
  height: 19.2vw
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-archives .is-kv .kv-bg {
    height: 27vw
  }
}

@media only screen and (max-width:640px) {
  .is-archives .is-kv .kv-bg {
    height: 53.4vw
  }
}

.is-archives .is-kv .kv-bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(25, 54, 80, .22);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}

.is-archives .is-kv .kv-title_en {
  font-size: 12px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .2em
}

@media(min-width: 480px) {
  .is-archives .is-kv .kv-title_en {
    font-size: 20px;
    font-size: calc(0.01*100vw + 7.2px)
  }
}

@media(min-width: 1280px) {
  .is-archives .is-kv .kv-title_en {
    font-size: 20px
  }
}

.is-archives .is-kv .kv-title_jp {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  margin-top: 20px
}

@media(min-width: 480px) {
  .is-archives .is-kv .kv-title_jp {
    font-size: 60px;
    font-size: calc(0.0375*100vw + 12px)
  }
}

@media(min-width: 1280px) {
  .is-archives .is-kv .kv-title_jp {
    font-size: 60px
  }
}

@media only screen and (max-width:640px) {
  .is-archives .is-kv .kv-title_jp {
    margin-top: 10px
  }
}

.is-archives .is-kv .kv-title_jp img {
  width: 60px
}

@media only screen and (max-width:640px) {
  .is-archives .is-kv .kv-title_jp img {
    width: 30px
  }
}

.is-store .kv-bg {
  height: 16.6vw;
  position: relative
}

@media only screen and (max-width:640px) {
  .is-store .kv-bg {
    height: 53.4vw
  }
}

.is-store .kv-bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(25, 54, 80, .22);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}

.is-premium .is-kv {
  height: calc(100vh - 80px);
  background: none;
  position: relative;
  background: center/cover no-repeat
}

@media only screen and (max-width:640px) {
  .is-premium .is-kv {
    height: 53.5vw
  }
}

.is-premium .is-kv .kv-bg {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1
}

.is-premium .is-kv .kv-title {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -59%)
}

.is-premium .is-kv .kv-title .main-copy {
  width: 60vw
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-premium .is-kv .kv-title .main-copy {
    width: 95vw
  }
}

@media only screen and (max-width:640px) {
  .is-premium .is-kv .kv-title .main-copy {
    width: 100%
  }
}

.is-premium .is-kv .kv-title img {
  width: 100%
}

.is-premium .is-kv .kv-sub-copy {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0
}

.is-premium .is-kv .kv-sub-copy img {
  width: 100%
}

.is-corporate-information {
  position: relative
}

.is-corporate-information .card-2clm_lists {
  padding-bottom: 120px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-corporate-information .card-2clm_lists {
    padding-bottom: 40px
  }
}

@media only screen and (max-width:640px) {
  .is-corporate-information .card-2clm_lists {
    padding-bottom: 40px
  }
}

.is-corporate-information .list-3clm_lists {
  border-top: 1px solid #dde1e6
}

@media only screen and (max-width:640px) {
  .is-corporate-information .list-3clm_lists {
    padding-top: 40px
  }
}

.is-contents_chemicals .list-4clm_lists__item .text,
.is-contents_machinery .list-4clm_lists__item .text {
  text-align: center;
  margin-top: 12px;
  line-height: 1.5
}

.is-president-head {
  max-width: 1680px;
  margin: 0 auto;
  position: relative
}

.is-president-head-text {
  position: absolute;
  top: 50%;
  left: 19%;
  transform: translateY(-50%)
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-president-head-text {
    left: 10%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-president-head-text {
    left: 6%
  }
}

@media only screen and (max-width:640px) {
  .is-president-head-text {
    left: 6.8%;
    top: 17%;
    transform: none
  }
}

.is-president-head-text .text {
  color: #fff;
  font-size: 12px
}

@media(min-width: 375px) {
  .is-president-head-text .text {
    font-size: 28px;
    font-size: calc(0.0122605364*100vw + 7.4022988506px)
  }
}

@media(min-width: 1680px) {
  .is-president-head-text .text {
    font-size: 28px
  }
}

@media only screen and (max-width:640px) {
  .is-president-head-text .text {
    font-size: 14px;
    line-height: 1.9
  }
}

.is-president-head-text .name {
  align-items: center;
  margin-top: 55px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-president-head-text .name {
    margin-top: 3vw
  }
}

@media only screen and (max-width:640px) {
  .is-president-head-text .name {
    display: block;
    margin-top: 8vw
  }
}

.is-president-head-text .name-position {
  font-size: 15px;
  color: #fff;
  margin-right: 20px
}

@media(min-width: 375px) {
  .is-president-head-text .name-position {
    font-size: 20px;
    font-size: calc(0.0038314176*100vw + 13.5632183908px)
  }
}

@media(min-width: 1680px) {
  .is-president-head-text .name-position {
    font-size: 20px
  }
}

@media only screen and (max-width:640px) {
  .is-president-head-text .name-position {
    font-size: 12px
  }
}

.is-president-head-text .name-img {
  width: 36%
}

@media only screen and (max-width:640px) {
  .is-president-head-text .name-img {
    width: 28vw;
    margin-top: 2vw
  }
}

.is-president-title {
  font-size: 20px;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #1d3751;
  border-bottom: 1px solid #1d3751;
  line-height: 1.77;
  margin-bottom: 64px
}

@media(min-width: 375px) {
  .is-president-title {
    font-size: 36px;
    font-size: calc(0.0122605364*100vw + 15.4022988506px)
  }
}

@media(min-width: 1680px) {
  .is-president-title {
    font-size: 36px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-president-title {
    padding: 30px 0;
    margin-bottom: 50px
  }
}

@media only screen and (max-width:640px) {
  .is-president-title {
    line-height: 1.6;
    padding: 24px 0;
    margin-bottom: 32px
  }
}

.is-president .main_lead strong {
  font-size: inherit;
  font-weight: 700;
  color: #007abe
}

.is-president-split {
  justify-content: space-between;
  margin-bottom: 48px
}

@media only screen and (max-width:640px) {
  .is-president-split {
    flex-direction: column;
    margin-bottom: 24px
  }
}

.is-president-split-text {
  width: 52.5%
}

@media only screen and (max-width:640px) {
  .is-president-split-text {
    width: 100%;
    margin-top: 32px;
    order: 2
  }
}

.is-president-split-img {
  width: 43.75%
}

@media only screen and (max-width:640px) {
  .is-president-split-img {
    width: 100%;
    order: 1
  }
}

.is-president-split-img img {
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.is-president-point {
  position: relative
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-president-point {
    padding-top: 6vw
  }
}

@media only screen and (max-width:640px) {
  .is-president-point {
    padding-top: 12vw;
    margin-top: 80px
  }
}

.is-president-point-icon {
  width: 13.2%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-24%, -18%)
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-president-point-icon {
    transform: translate(-24%, -64%)
  }
}

@media only screen and (max-width:640px) {
  .is-president-point-icon {
    width: 22%;
    transform: translate(-24%, -54%)
  }
}

.is-president-name {
  width: fit-content;
  margin-left: auto;
  margin-top: 50px
}

@media only screen and (max-width:640px) {
  .is-president-name {
    margin-top: 24px
  }
}

.is-president-name-position {
  font-size: 12px;
  margin-bottom: 4px
}

@media(min-width: 375px) {
  .is-president-name-position {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-president-name-position {
    font-size: 20px
  }
}

.is-president-name-img img {
  display: block;
  width: 216px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-president-name-img img {
    width: 18vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-president-name-img img {
    width: 20vw
  }
}

@media only screen and (max-width:640px) {
  .is-president-name-img img {
    width: 34vw
  }
}

.is-japan .table_clm-02 th {
  width: 25%
}

@media only screen and (max-width:640px) {
  .is-japan .table_clm-02 th {
    width: 32%
  }
}

.is-japan .table_clm-02 td {
  width: 75%
}

@media only screen and (max-width:640px) {
  .is-japan .table_clm-02 td {
    width: 68%
  }
}

.is-japangroup .table_clm-02 th {
  width: 25%
}

@media only screen and (max-width:640px) {
  .is-japangroup .table_clm-02 th {
    width: 32%
  }
}

.is-japangroup .table_clm-02 td {
  width: 75%
}

@media only screen and (max-width:640px) {
  .is-japangroup .table_clm-02 td {
    width: 68%
  }
}

.is-overseagroup table thead th:first-child,
.is-overseagroup table tbody th:first-child {
  width: 340px
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-overseagroup table thead th:first-child,
  .is-overseagroup table tbody th:first-child {
    width: 280px
  }
}

@media only screen and (max-width:640px) {

  .is-overseagroup table thead th:first-child,
  .is-overseagroup table tbody th:first-child {
    width: 180px
  }
}

.is-exhibition-content table {
  border-radius: 0
}

.is-exhibition-content table:first-child {
  border-radius: 10px 10px 0 0
}

.is-exhibition-content table:last-child {
  border-radius: 0 0 10px 10px
}

.is-exhibition-content table tbody tr td:nth-child(1) {
  width: 24% !important
}

.is-exhibition-content table tbody tr td:nth-child(2) {
  width: 40% !important
}

.is-exhibition-content table tbody tr td:nth-child(3) {
  width: 36% !important
}

.is-iplaza-content .main_lead img {
  display: inline-block
}

.is-iplaza-content .article-clm_lists__item .text {
  text-align: center;
  margin-top: 12px;
  line-height: 1.5
}

.is-pamphlet-pamphlet {
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media only screen and (max-width:640px) {
  .is-pamphlet-pamphlet {
    flex-direction: column
  }
}

.is-pamphlet-pamphlet .img {
  width: 30%
}

@media only screen and (max-width:640px) {
  .is-pamphlet-pamphlet .img {
    width: 100%
  }
}

.is-pamphlet-pamphlet .img img {
  width: 100%;
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .is-pamphlet-pamphlet .img img {
    border-radius: 5px
  }
}

.is-pamphlet-pamphlet .text-box {
  width: 65%
}

@media only screen and (max-width:640px) {
  .is-pamphlet-pamphlet .text-box {
    width: 100%;
    margin-top: 20px
  }
}

.is-pamphlet .view-more_lists {
  justify-content: center
}

.is-pamphlet .view-more_lists__item {
  margin-left: 0;
  margin-right: 0
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-history-faq .is-faq_lists__items dl {
    padding: 5% 4% !important
  }
}

@media only screen and (max-width:640px) {
  .is-history-faq .is-faq_lists__items dl {
    padding: 6vw !important
  }
}

.is-history-faq .is-faq_lists__items dl dt .inner .text {
  display: flex;
  width: 94%
}

.is-history-faq .is-faq_lists__items dl dt .inner .text .number {
  font-size: 18px;
  color: #007abe;
  margin-right: 7px
}

@media(min-width: 375px) {
  .is-history-faq .is-faq_lists__items dl dt .inner .text .number {
    font-size: 35px;
    font-size: calc(0.0130268199*100vw + 13.1149425287px)
  }
}

@media(min-width: 1680px) {
  .is-history-faq .is-faq_lists__items dl dt .inner .text .number {
    font-size: 35px
  }
}

.is-history-faq .is-faq_lists__items dl dt .inner .text .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2
}

@media(min-width: 375px) {
  .is-history-faq .is-faq_lists__items dl dt .inner .text .title {
    font-size: 26px;
    font-size: calc(0.0076628352*100vw + 13.1264367816px)
  }
}

@media(min-width: 1680px) {
  .is-history-faq .is-faq_lists__items dl dt .inner .text .title {
    font-size: 26px
  }
}

.is-history-faq .is-faq_lists__items dl dt .inner .text .title strong {
  color: #007abe;
  font-size: inherit;
  font-weight: inherit
}

.is-history-faq .is-faq_lists__items dl dd {
  padding-bottom: 2%
}

.is-history-faq .is-faq_lists__items dl dd .inner {
  position: relative;
  padding-top: 85px !important
}

@media only screen and (max-width:640px) {
  .is-history-faq .is-faq_lists__items dl dd .inner {
    padding-top: 22% !important
  }
}

.is-history-faq .is-faq_lists__items dl dd .inner .sp-text {
  display: none
}

@media only screen and (max-width:640px) {
  .is-history-faq .is-faq_lists__items dl dd .inner .sp-text {
    width: 100%;
    display: block;
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90%;
    color: #007abe
  }
}

.is-history-container {
  width: 100%;
  position: relative
}

@media only screen and (max-width:640px) {
  .is-history-container {
    overflow-x: scroll
  }
}

.is-history-container .timeline-scroll {
  position: relative
}

@media only screen and (max-width:640px) {
  .is-history-container .timeline-scroll {
    width: 500px
  }
}

.is-history-container .timeline-scroll::before {
  content: "";
  width: 2.15%;
  height: auto;
  aspect-ratio: 1/1;
  background: #007abe;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container .timeline-scroll::before {
    width: 3%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container .timeline-scroll::before {
    width: 3%
  }
}

.is-history-container .timeline-scroll:after {
  content: "";
  width: 2.2%;
  height: auto;
  aspect-ratio: 1/1;
  border: 0;
  border-bottom: solid 5px #007abe;
  border-right: solid 5px #007abe;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 100
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container .timeline-scroll:after {
    width: 3%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container .timeline-scroll:after {
    width: 3%
  }
}

.is-history-container .timeline-container {
  display: flex
}

.is-history-container .content01,
.is-history-container .content02 {
  width: 50%;
  padding-bottom: 6%
}

.is-history-container .content01 .content_title,
.is-history-container .content02 .content_title {
  text-align: center;
  line-height: 1;
  margin-bottom: 8%;
  font-size: 130%
}

.is-history-container .content01 .content_lists__item,
.is-history-container .content02 .content_lists__item {
  position: relative
}

.is-history-container .content01 .content_lists__item::before,
.is-history-container .content01 .content_lists__item::after,
.is-history-container .content02 .content_lists__item::before,
.is-history-container .content02 .content_lists__item::after {
  background: #007abe;
  position: absolute;
  top: 56px;
  right: 0
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .is-history-container .content01 .content_lists__item::before,
  .is-history-container .content01 .content_lists__item::after,
  .is-history-container .content02 .content_lists__item::before,
  .is-history-container .content02 .content_lists__item::after {
    top: 16%
  }
}

@media only screen and (max-width:640px) {

  .is-history-container .content01 .content_lists__item::before,
  .is-history-container .content01 .content_lists__item::after,
  .is-history-container .content02 .content_lists__item::before,
  .is-history-container .content02 .content_lists__item::after {
    top: 30%
  }
}

.is-history-container .content01 .content_lists__item::before,
.is-history-container .content02 .content_lists__item::before {
  content: "";
  width: 150px;
  height: 4px;
  z-index: 0
}

.is-history-container .content01 .content_lists__item::after,
.is-history-container .content02 .content_lists__item::after {
  content: "";
  width: 4.5%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transform: translate(60%, -50%);
  z-index: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-history-container .content01 .content_lists__item::after,
  .is-history-container .content02 .content_lists__item::after {
    width: 6.2%;
    transform: translate(70%, -50%)
  }
}

@media only screen and (max-width:640px) {

  .is-history-container .content01 .content_lists__item::after,
  .is-history-container .content02 .content_lists__item::after {
    width: 6%;
    transform: translate(70%, -50%)
  }
}

.is-history-container .content01 .content_lists__item:not(:first-child),
.is-history-container .content02 .content_lists__item:not(:first-child) {
  margin-top: 6%
}

.is-history-container .content01 .content_wrap,
.is-history-container .content02 .content_wrap {
  background: #fff;
  position: relative;
  z-index: 100
}

.is-history-container .content01 .content_title,
.is-history-container .content01 .content_wrap,
.is-history-container .content02 .content_title,
.is-history-container .content02 .content_wrap {
  width: 78.5%
}

@media only screen and (max-width:640px) {

  .is-history-container .content01 .content_title,
  .is-history-container .content01 .content_wrap,
  .is-history-container .content02 .content_title,
  .is-history-container .content02 .content_wrap {
    width: 87%
  }
}

.is-history-container .content01 .timeline-content,
.is-history-container .content02 .timeline-content {
  position: relative;
  box-shadow: 0px 0px 6px rgba(195, 195, 195, .35);
  border-radius: 10px;
  padding: 5% 6%
}

.is-history-container .content01 .timeline-content .month,
.is-history-container .content02 .timeline-content .month {
  font-size: 160%;
  line-height: 1
}

.is-history-container .content01 .timeline-content .month .en,
.is-history-container .content02 .timeline-content .month .en {
  font-size: 100%;
  font-weight: 500;
  line-height: 1;
  margin-right: 4px;
  color: #007abe
}

.is-history-container .content01 .timeline-content .month .jp,
.is-history-container .content02 .timeline-content .month .jp {
  font-size: 63%;
  line-height: 1;
  color: #007abe
}

.is-history-container .content01 .timeline-content .text,
.is-history-container .content02 .timeline-content .text {
  width: 100%;
  font-size: 90%;
  margin-top: 1%;
  line-height: 1.8
}

@media only screen and (max-width:640px) {

  .is-history-container .content01 .timeline-content .text,
  .is-history-container .content02 .timeline-content .text {
    font-size: 100%
  }
}

.is-history-container .content01 .timeline-content .text .indent-text,
.is-history-container .content02 .timeline-content .text .indent-text {
  font-size: inherit;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  line-height: inherit
}

.is-history-container .content01 .timeline-content img,
.is-history-container .content02 .timeline-content img {
  width: 70%;
  margin-top: 3%;
  margin-left: 0
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-history-container .content01 .timeline-content img,
  .is-history-container .content02 .timeline-content img {
    width: 58%
  }
}

.is-history-container .content01 .timeline-content img+.text,
.is-history-container .content02 .timeline-content img+.text {
  margin-top: 5%
}

.is-history-container .content01 {
  border-right: 3px solid #007abe
}

.is-history-container .content02 {
  border-left: 3px solid #007abe
}

.is-history-container .content02 .content_title {
  margin-left: auto
}

.is-history-container .content02 .content_lists__item::before {
  right: auto;
  left: 0
}

.is-history-container .content02 .content_lists__item::after {
  right: auto;
  left: 0;
  transform: translate(-60%, -50%)
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container .content02 .content_lists__item::after {
    transform: translate(-70%, -50%)
  }
}

@media only screen and (max-width:640px) {
  .is-history-container .content02 .content_lists__item::after {
    transform: translate(-70%, -50%)
  }
}

.is-history-container .content02 .content_lists__item .content_wrap {
  margin-left: auto
}

.is-history-container-01 .content01 .content_lists__item:nth-of-type(5) {
  margin-top: 50%
}

.is-history-container-01 .content02 .content_lists__item:nth-of-type(1) {
  margin-top: 198%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-01 .content02 .content_lists__item:nth-of-type(1) {
    margin-top: 208%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-01 .content02 .content_lists__item:nth-of-type(1) {
    margin-top: 230%
  }
}

.is-history-container-02 .content01 .content_lists__item:nth-of-type(3) {
  margin-top: 76%
}

.is-history-container-02 .content01 .content_lists__item:nth-of-type(6) {
  margin-top: 44.6%
}

.is-history-container-02 .content02 .content_lists__item:nth-of-type(1) {
  margin-top: 46%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(1) {
    margin-top: 62%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(1) {
    margin-top: 62%
  }
}

.is-history-container-02 .content02 .content_lists__item:nth-of-type(3) {
  margin-top: 37%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(3) {
    margin-top: 64%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(3) {
    margin-top: 64%
  }
}

.is-history-container-02 .content02 .content_lists__item:nth-of-type(4) {
  margin-top: 123%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(4) {
    margin-top: 146%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(4) {
    margin-top: 146%
  }
}

.is-history-container-02 .content02 .content_lists__item:nth-of-type(5) {
  margin-top: 5%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(5) {
    margin-top: 12%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-02 .content02 .content_lists__item:nth-of-type(5) {
    margin-top: 30%
  }
}

.is-history-container-03 .content01 .content_lists__item:nth-of-type(2) {
  margin-top: 135%
}

.is-history-container-03 .content02 .content_lists__item:nth-of-type(1) {
  margin-top: 16%
}

.is-history-container-03 .content02 .content_lists__item:nth-of-type(4) {
  margin-top: 51%
}

.is-history-container-04 .content01 .content_lists__item:nth-of-type(1) {
  margin-top: 135%
}

.is-history-container-04 .content01 .content_lists__item:nth-of-type(2) {
  margin-top: 38.2%
}

.is-history-container-04 .content02 .content_lists__item:nth-of-type(2) {
  margin-top: 38.2%
}

.is-history-container-04 .content02 .content_lists__item:nth-of-type(3) {
  margin-top: 40%
}

.is-history-container-04 .content02 .content_lists__item:nth-of-type(4) {
  margin-top: 100%
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(4) {
    margin-top: 110%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(4) {
    margin-top: 125%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(4) {
    margin-top: 142%
  }
}

.is-history-container-04 .content02 .content_lists__item:nth-of-type(5) {
  margin-top: 66%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(5) {
    margin-top: 88%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(5) {
    margin-top: 80%
  }
}

.is-history-container-04 .content02 .content_lists__item:nth-of-type(6) {
  margin-top: 66%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(6) {
    margin-top: 86%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-04 .content02 .content_lists__item:nth-of-type(6) {
    margin-top: 86%
  }
}

.is-history-container-05 .content01 .content_lists__item:nth-of-type(1) {
  margin-top: 37.5%
}

.is-history-container-05 .content01 .content_lists__item:nth-of-type(4) {
  margin-top: 15.7%
}

.is-history-container-05 .content01 .content_lists__item:nth-of-type(11) {
  margin-top: 20.7%
}

.is-history-container-05 .content02 .content_lists__item:nth-of-type(2) {
  margin-top: 110%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-05 .content02 .content_lists__item:nth-of-type(2) {
    margin-top: 124%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-05 .content02 .content_lists__item:nth-of-type(2) {
    margin-top: 134%
  }
}

.is-history-container-05 .content02 .content_lists__item:nth-of-type(3) {
  margin-top: 280%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-history-container-05 .content02 .content_lists__item:nth-of-type(3) {
    margin-top: 450%
  }
}

@media only screen and (max-width:640px) {
  .is-history-container-05 .content02 .content_lists__item:nth-of-type(3) {
    margin-top: 480%
  }
}

.is-koubai_lists {
  justify-content: space-between;
  flex-wrap: wrap
}

.is-koubai_lists__item {
  width: 49%;
  margin-top: 0;
  margin-bottom: 24px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-koubai_lists__item {
    margin-bottom: 20px
  }
}

@media only screen and (max-width:640px) {
  .is-koubai_lists__item {
    width: 100%;
    margin-bottom: 12px
  }
}

.is-koubai_lists__item .btn {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500
}

.is-koubai_kyouyuu_kanri-text {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center
}

.is-3minutes {
  background: #fff
}

.is-3minutes .bg-pattern {
  display: none
}

.is-3minutes .is-kv-3minutes {
  padding: 182px 0
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes .is-kv-3minutes {
    padding: 14vw 0
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes .is-kv-3minutes {
    padding: 14vw 0
  }
}

.is-3minutes .is-kv-3minutes::before,
.is-3minutes .is-kv-3minutes::after {
  content: none
}

.is-3minutes .is-kv-3minutes h1 {
  opacity: 0
}

.is-3minutes-about {
  margin-bottom: 240px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-about {
    padding-top: 60px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-about {
    margin-bottom: 180px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-about {
    padding-top: 0;
    margin-bottom: 60px
  }
}

.is-3minutes-about_title {
  text-align: center;
  margin-bottom: 30px
}

.is-3minutes-about_title .title-en {
  display: block;
  font-size: 24px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-weight: 600;
  color: #007abe;
  line-height: 1;
  letter-spacing: .015em
}

@media(min-width: 375px) {
  .is-3minutes-about_title .title-en {
    font-size: 40px;
    font-size: calc(0.0122605364*100vw + 19.4022988506px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-about_title .title-en {
    font-size: 40px
  }
}

.is-3minutes-about_title .title-jp {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-top: 12px
}

@media(min-width: 375px) {
  .is-3minutes-about_title .title-jp {
    font-size: 56px;
    font-size: calc(0.0199233716*100vw + 22.5287356322px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-about_title .title-jp {
    font-size: 56px
  }
}

.is-3minutes-about_text {
  text-align: center;
  font-size: 15px;
  margin-bottom: 48px
}

@media(min-width: 375px) {
  .is-3minutes-about_text {
    font-size: 29px;
    font-size: calc(0.0107279693*100vw + 10.9770114943px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-about_text {
    font-size: 29px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-about_text {
    margin-bottom: 40px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-about_text br {
    display: none
  }
}

.is-3minutes-about_lists {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -16px;
  position: relative;
  z-index: 100
}

.is-3minutes-about_lists__item {
  width: 32%;
  margin-bottom: 16px;
  margin-left: 8px;
  margin-right: 8px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-about_lists__item {
    width: 30%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-about_lists__item {
    width: 78%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px
  }
}

.is-3minutes-content {
  position: relative;
  padding-top: 120px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-content {
    padding-top: 80px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-content {
    padding-top: 40px
  }
}

.is-3minutes-content .bg-separation {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%)
}

.is-3minutes-content .bg-icon {
  width: 30%;
  max-width: 600px;
  position: absolute;
  top: -15vw;
  right: 2%
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-content .bg-icon {
    width: 36%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-content .bg-icon {
    width: 46%;
    top: -20vw
  }
}

.is-3minutes-content .btn_more {
  text-align: center
}

.is-3minutes-content .btn_more .btn {
  width: 360px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500
}

@media(min-width: 375px) {
  .is-3minutes-content .btn_more .btn {
    font-size: 21px;
    font-size: calc(0.0038314176*100vw + 14.5632183908px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-content .btn_more .btn {
    font-size: 21px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-content .btn_more .btn {
    width: 100%
  }
}

.is-3minutes .main_title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center
}

.is-3minutes .main_title .number {
  font-size: 50px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 3%;
  margin-right: 3%;
  border-right: 2px solid #707070;
  line-height: 1.2
}

@media(min-width: 375px) {
  .is-3minutes .main_title .number {
    font-size: 130px;
    font-size: calc(0.061302682*100vw + 27.0114942529px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes .main_title .number {
    font-size: 130px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes .main_title .number {
    line-height: 1.6;
    border-right: 1px solid #707070
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes .main_title .number {
    padding-right: 6%;
    margin-right: 6%;
    line-height: 1.4;
    border-right: 1px solid #707070
  }
}

.is-3minutes .main_title .title .en {
  display: block;
  font-size: 36px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.2
}

@media(min-width: 375px) {
  .is-3minutes .main_title .title .en {
    font-size: 102px;
    font-size: calc(0.0505747126*100vw + 17.0344827586px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes .main_title .title .en {
    font-size: 102px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes .main_title .title .en {
    margin-bottom: 10px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes .main_title .title .en {
    margin-bottom: 8px
  }
}

.is-3minutes .main_title .title .jp {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4
}

@media(min-width: 375px) {
  .is-3minutes .main_title .title .jp {
    font-size: 36px;
    font-size: calc(0.0122605364*100vw + 15.4022988506px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes .main_title .title .jp {
    font-size: 36px
  }
}

.is-3minutes .sub_title {
  margin-top: 80px
}

@media only screen and (max-width:640px) {
  .is-3minutes .sub_title {
    margin-top: 30px
  }
}

.is-3minutes .sub_title img {
  width: 84px;
  margin-bottom: 8px
}

@media only screen and (max-width:640px) {
  .is-3minutes .sub_title img {
    width: 16vw
  }
}

.is-3minutes .sub_title .jp {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  padding-bottom: 22px;
  text-align: center;
  position: relative
}

@media(min-width: 375px) {
  .is-3minutes .sub_title .jp {
    font-size: 34px;
    font-size: calc(0.0122605364*100vw + 13.4022988506px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes .sub_title .jp {
    font-size: 34px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes .sub_title .jp {
    padding-bottom: 16px
  }
}

.is-3minutes .sub_title .jp::before {
  content: "";
  width: 56px;
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%)
}

@media only screen and (max-width:640px) {
  .is-3minutes .sub_title .jp::before {
    width: 40px;
    height: 4px
  }
}

.is-3minutes-01 {
  background: #e1f8e5;
  padding-bottom: 407px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-01 {
    padding-bottom: 300px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01 {
    padding-bottom: 160px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01 {
    padding-bottom: 100px
  }
}

.is-3minutes-01 .main_title .number {
  color: #01c127
}

.is-3minutes-01 .main_title .title .en {
  color: #01c127
}

.is-3minutes-01 .inner {
  position: relative
}

.is-3minutes-01 .inner-bg-icon {
  width: 40%;
  position: absolute;
  top: -120px;
  left: -20%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01 .inner-bg-icon {
    top: -70px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01 .inner-bg-icon {
    width: 50%;
    top: -2%;
    left: -28%
  }
}

.is-3minutes-01 .sub_title {
  margin-bottom: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01 .sub_title {
    margin-bottom: 40px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01 .sub_title {
    margin-bottom: 30px
  }
}

.is-3minutes-01 .sub_title .jp::before {
  background: #01c127
}

.is-3minutes-01-card-01,
.is-3minutes-01-card-02 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  gap: 60px
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .is-3minutes-01-card-01,
  .is-3minutes-01-card-02 {
    gap: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-3minutes-01-card-01,
  .is-3minutes-01-card-02 {
    gap: 30px
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01,
  .is-3minutes-01-card-02 {
    gap: 24px
  }
}

.is-3minutes-01-card-01 .card_box-01,
.is-3minutes-01-card-01 .card_box-02,
.is-3minutes-01-card-01 .card_box-03,
.is-3minutes-01-card-01 .card_box-04,
.is-3minutes-01-card-02 .card_box-01,
.is-3minutes-01-card-02 .card_box-02,
.is-3minutes-01-card-02 .card_box-03,
.is-3minutes-01-card-02 .card_box-04 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  gap: 60px
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .is-3minutes-01-card-01 .card_box-01,
  .is-3minutes-01-card-01 .card_box-02,
  .is-3minutes-01-card-01 .card_box-03,
  .is-3minutes-01-card-01 .card_box-04,
  .is-3minutes-01-card-02 .card_box-01,
  .is-3minutes-01-card-02 .card_box-02,
  .is-3minutes-01-card-02 .card_box-03,
  .is-3minutes-01-card-02 .card_box-04 {
    gap: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-3minutes-01-card-01 .card_box-01,
  .is-3minutes-01-card-01 .card_box-02,
  .is-3minutes-01-card-01 .card_box-03,
  .is-3minutes-01-card-01 .card_box-04,
  .is-3minutes-01-card-02 .card_box-01,
  .is-3minutes-01-card-02 .card_box-02,
  .is-3minutes-01-card-02 .card_box-03,
  .is-3minutes-01-card-02 .card_box-04 {
    gap: 30px
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01,
  .is-3minutes-01-card-01 .card_box-02,
  .is-3minutes-01-card-01 .card_box-03,
  .is-3minutes-01-card-01 .card_box-04,
  .is-3minutes-01-card-02 .card_box-01,
  .is-3minutes-01-card-02 .card_box-02,
  .is-3minutes-01-card-02 .card_box-03,
  .is-3minutes-01-card-02 .card_box-04 {
    gap: 24px
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01,
  .is-3minutes-01-card-01 .card_box-02,
  .is-3minutes-01-card-01 .card_box-03,
  .is-3minutes-01-card-01 .card_box-04,
  .is-3minutes-01-card-02 .card_box-01,
  .is-3minutes-01-card-02 .card_box-02,
  .is-3minutes-01-card-02 .card_box-03,
  .is-3minutes-01-card-02 .card_box-04 {
    flex-direction: column
  }
}

.is-3minutes-01-card-01 .card_box-01 .card_item,
.is-3minutes-01-card-01 .card_box-02 .card_item,
.is-3minutes-01-card-01 .card_box-03 .card_item,
.is-3minutes-01-card-01 .card_box-04 .card_item,
.is-3minutes-01-card-02 .card_box-01 .card_item,
.is-3minutes-01-card-02 .card_box-02 .card_item,
.is-3minutes-01-card-02 .card_box-03 .card_item,
.is-3minutes-01-card-02 .card_box-04 .card_item {
  position: relative
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01 .card_item img.is-pc,
  .is-3minutes-01-card-01 .card_box-02 .card_item img.is-pc,
  .is-3minutes-01-card-01 .card_box-03 .card_item img.is-pc,
  .is-3minutes-01-card-01 .card_box-04 .card_item img.is-pc,
  .is-3minutes-01-card-02 .card_box-01 .card_item img.is-pc,
  .is-3minutes-01-card-02 .card_box-02 .card_item img.is-pc,
  .is-3minutes-01-card-02 .card_box-03 .card_item img.is-pc,
  .is-3minutes-01-card-02 .card_box-04 .card_item img.is-pc {
    display: none
  }
}

.is-3minutes-01-card-01 .card_box-01 .card_item img.is-sp,
.is-3minutes-01-card-01 .card_box-02 .card_item img.is-sp,
.is-3minutes-01-card-01 .card_box-03 .card_item img.is-sp,
.is-3minutes-01-card-01 .card_box-04 .card_item img.is-sp,
.is-3minutes-01-card-02 .card_box-01 .card_item img.is-sp,
.is-3minutes-01-card-02 .card_box-02 .card_item img.is-sp,
.is-3minutes-01-card-02 .card_box-03 .card_item img.is-sp,
.is-3minutes-01-card-02 .card_box-04 .card_item img.is-sp {
  display: none
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01 .card_item img.is-sp,
  .is-3minutes-01-card-01 .card_box-02 .card_item img.is-sp,
  .is-3minutes-01-card-01 .card_box-03 .card_item img.is-sp,
  .is-3minutes-01-card-01 .card_box-04 .card_item img.is-sp,
  .is-3minutes-01-card-02 .card_box-01 .card_item img.is-sp,
  .is-3minutes-01-card-02 .card_box-02 .card_item img.is-sp,
  .is-3minutes-01-card-02 .card_box-03 .card_item img.is-sp,
  .is-3minutes-01-card-02 .card_box-04 .card_item img.is-sp {
    display: block
  }
}

.is-3minutes-01-card-01 .card_box-01 .card_box_inner,
.is-3minutes-01-card-01 .card_box-02 .card_box_inner,
.is-3minutes-01-card-01 .card_box-03 .card_box_inner,
.is-3minutes-01-card-01 .card_box-04 .card_box_inner,
.is-3minutes-01-card-02 .card_box-01 .card_box_inner,
.is-3minutes-01-card-02 .card_box-02 .card_box_inner,
.is-3minutes-01-card-02 .card_box-03 .card_box_inner,
.is-3minutes-01-card-02 .card_box-04 .card_box_inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  gap: 60px
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .is-3minutes-01-card-01 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-04 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-04 .card_box_inner {
    gap: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-3minutes-01-card-01 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-04 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-04 .card_box_inner {
    gap: 30px
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-01 .card_box-04 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-01 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-02 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-03 .card_box_inner,
  .is-3minutes-01-card-02 .card_box-04 .card_box_inner {
    gap: 24px
  }
}

.is-3minutes-01-card-01 .card_box-01 .btn_more,
.is-3minutes-01-card-01 .card_box-02 .btn_more,
.is-3minutes-01-card-01 .card_box-03 .btn_more,
.is-3minutes-01-card-01 .card_box-04 .btn_more,
.is-3minutes-01-card-02 .card_box-01 .btn_more,
.is-3minutes-01-card-02 .card_box-02 .btn_more,
.is-3minutes-01-card-02 .card_box-03 .btn_more,
.is-3minutes-01-card-02 .card_box-04 .btn_more {
  width: 100%;
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%)
}

.is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
.is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
.is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
.is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
.is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
.is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
.is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
.is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
  font-size: 12px;
  width: 55%;
  height: 48px;
  line-height: 48px
}

@media(min-width: 375px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
    font-size: 20px;
    font-size: calc(0.0061302682*100vw + 9.7011494253px)
  }
}

@media(min-width: 1680px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
    width: 64%;
    height: 40px;
    line-height: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
    width: 70%;
    height: 32px;
    line-height: 32px
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn {
    font-size: 20px;
    width: 80%
  }
}

@media only screen and (max-width:640px) {

  .is-3minutes-01-card-01 .card_box-01 .btn_more .btn .arrow,
  .is-3minutes-01-card-01 .card_box-02 .btn_more .btn .arrow,
  .is-3minutes-01-card-01 .card_box-03 .btn_more .btn .arrow,
  .is-3minutes-01-card-01 .card_box-04 .btn_more .btn .arrow,
  .is-3minutes-01-card-02 .card_box-01 .btn_more .btn .arrow,
  .is-3minutes-01-card-02 .card_box-02 .btn_more .btn .arrow,
  .is-3minutes-01-card-02 .card_box-03 .btn_more .btn .arrow,
  .is-3minutes-01-card-02 .card_box-04 .btn_more .btn .arrow {
    right: 6px
  }
}

.is-3minutes-01-card-01 {
  margin-bottom: 190px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-01-card-01 {
    margin-bottom: 100px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 {
    margin-bottom: 100px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 {
    margin-bottom: 60px
  }
}

.is-3minutes-01-card-01 .card_item-02 .fukidashi {
  width: 76.4%;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%)
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 .card_item-02 .fukidashi {
    width: 84%;
    top: -2%
  }
}

.is-3minutes-01-card-01 .card_item-03 .btn_more {
  bottom: 5%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-03 .btn_more {
    bottom: 4%
  }
}

.is-3minutes-01-card-01 .card_item-03 .btn_more .btn {
  width: 40%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-03 .btn_more .btn {
    width: 64%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 .card_item-03 .btn_more .btn {
    width: 80%
  }
}

.is-3minutes-01-card-01 .card_item-04 .btn_more {
  bottom: 5%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-04 .btn_more {
    bottom: 4%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 .card_item-04 .btn_more {
    bottom: 5%
  }
}

.is-3minutes-01-card-01 .card_item-09 .btn_more {
  bottom: 17%;
  left: 68%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-09 .btn_more {
    bottom: 8%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 .card_item-09 .btn_more {
    bottom: 12%;
    left: 50%
  }
}

.is-3minutes-01-card-01 .card_item-09 .btn_more .btn {
  width: 44%
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-09 .btn_more .btn {
    width: 56%
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-01-card-01 .card_item-09 .btn_more .btn {
    width: 80%
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-01-card-01 .card_item-09 .btn_more .btn .arrow {
    right: 6px
  }
}

.is-3minutes-02 {
  background: #faf2cc;
  padding-bottom: 280px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-02 {
    padding-bottom: 190px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-02 {
    padding-bottom: 100px
  }
}

.is-3minutes-02 .main_title .number {
  color: #d89603
}

.is-3minutes-02 .main_title .title .en {
  color: #d89603
}

@media only screen and (max-width:640px) {
  .is-3minutes-02-graph-scroll {
    overflow: scroll
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-02-graph {
    width: 550px
  }
}

.is-3minutes-03 {
  background: #fcecd7;
  padding-bottom: 220px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03 {
    padding-bottom: 190px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-03 {
    padding-bottom: 160px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03 {
    padding-bottom: 80px
  }
}

.is-3minutes-03 .main_title .number {
  color: #ea781e
}

.is-3minutes-03 .main_title .title .en {
  color: #ea781e
}

.is-3minutes-03 .sub_title {
  margin-top: 100px;
  margin-bottom: 64px
}

@media only screen and (max-width:640px) {
  .is-3minutes-03 .sub_title {
    margin-top: 60px;
    margin-bottom: 40px
  }
}

.is-3minutes-03 .sub_title img {
  width: 62px
}

@media only screen and (max-width:640px) {
  .is-3minutes-03 .sub_title img {
    width: 12vw
  }
}

.is-3minutes-03 .sub_title .jp {
  font-size: 20px
}

@media(min-width: 375px) {
  .is-3minutes-03 .sub_title .jp {
    font-size: 40px;
    font-size: calc(0.0153256705*100vw + 14.2528735632px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03 .sub_title .jp {
    font-size: 40px
  }
}

.is-3minutes-03 .sub_title .jp::before {
  background: #ea781e
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-graph .is-pc {
    display: none
  }
}

.is-3minutes-03-graph .is-sp {
  display: none
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-graph .is-sp {
    display: block
  }
}

.is-3minutes-03_lists {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists {
    display: block
  }
}

.is-3minutes-03_lists__item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 60px
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item {
    margin-top: 24px
  }
}

.is-3minutes-03_lists__item-icon {
  width: 128px;
  margin-right: 18px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03_lists__item-icon {
    width: 8vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item-icon {
    width: 13vw;
    margin-right: 14px
  }
}

.is-3minutes-03_lists__item-icon img {
  margin: 0
}

.is-3minutes-03_lists__item-text {
  width: 50%
}

.is-3minutes-03_lists__item-text .title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1
}

@media(min-width: 375px) {
  .is-3minutes-03_lists__item-text .title {
    font-size: 27px;
    font-size: calc(0.0084291188*100vw + 12.8390804598px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03_lists__item-text .title {
    font-size: 27px
  }
}

.is-3minutes-03_lists__item-text .title-01 {
  color: #d9989c
}

.is-3minutes-03_lists__item-text .title-02 {
  color: #b9a05e
}

.is-3minutes-03_lists__item-text .title-03 {
  color: #6659cc
}

.is-3minutes-03_lists__item-text .title-04 {
  color: #5d6a72
}

.is-3minutes-03_lists__item-text .inner_lists {
  margin-right: 46px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03_lists__item-text .inner_lists {
    margin-right: 2vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item-text .inner_lists {
    margin-right: 2vw
  }
}

.is-3minutes-03_lists__item-text .inner_lists__item {
  margin-top: 12px;
  line-height: 1.2;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px
}

@media(min-width: 375px) {
  .is-3minutes-03_lists__item-text .inner_lists__item {
    font-size: 22px;
    font-size: calc(0.0061302682*100vw + 11.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03_lists__item-text .inner_lists__item {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item-text .inner_lists__item {
    margin-top: 8px
  }
}

.is-3minutes-03_lists__item-img {
  width: 230px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03_lists__item-img {
    width: 14vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item-img {
    width: 25vw
  }
}

.is-3minutes-03_lists__item:nth-child(odd) {
  width: 53.5%
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item:nth-child(odd) {
    width: 100%
  }
}

.is-3minutes-03_lists__item:nth-child(even) {
  width: 39.2%
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item:nth-child(even) {
    width: 100%
  }
}

.is-3minutes-03_lists__item:nth-child(even) .is-3minutes-03_lists__item-text {
  width: 40%
}

@media only screen and (max-width:640px) {
  .is-3minutes-03_lists__item:nth-child(even) .is-3minutes-03_lists__item-text {
    width: 50%
  }
}

.is-3minutes-03_lists__item:nth-child(even) .is-3minutes-03_lists__item-text .inner_lists {
  margin-right: 10px
}

.is-3minutes-03-share {
  position: relative
}

.is-3minutes-03-share-bg-icon {
  width: 40%;
  position: absolute;
  top: -7%;
  left: -20%
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03-share-bg-icon {
    top: -182px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share-bg-icon {
    width: 50%;
    top: -52px;
    left: -27%
  }
}

.is-3minutes-03-share_lists {
  position: relative;
  z-index: 100
}

.is-3minutes-03-share_lists__item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item {
    display: block
  }
}

.is-3minutes-03-share_lists__item:not(:first-child) {
  margin-top: 80px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03-share_lists__item:not(:first-child) {
    margin-top: 60px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item:not(:first-child) {
    margin-top: 30px
  }
}

.is-3minutes-03-share_lists__item:nth-of-type(even) {
  flex-direction: row-reverse
}

.is-3minutes-03-share_lists__item.irregular {
  align-items: flex-start
}

.is-3minutes-03-share_lists__item-img {
  width: 48.8%
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-img {
    width: 100%
  }
}

.is-3minutes-03-share_lists__item-img img {
  border-radius: 10px
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-img img {
    border-radius: 5px
  }
}

.is-3minutes-03-share_lists__item-title {
  width: 46.8%
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title {
    width: 100%;
    margin-top: 24px
  }
}

.is-3minutes-03-share_lists__item-title .cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: .5em .8em;
  color: #fff;
  background: #ea781e;
  border-radius: 8px;
  margin-bottom: 14px
}

@media(min-width: 375px) {
  .is-3minutes-03-share_lists__item-title .cat {
    font-size: 20px;
    font-size: calc(0.0053639847*100vw + 10.9885057471px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03-share_lists__item-title .cat {
    font-size: 20px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-03-share_lists__item-title .cat {
    padding: .6em 1em
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title .cat {
    padding: .5em 1em;
    margin-bottom: 12px
  }
}

.is-3minutes-03-share_lists__item-title .title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #353e4d;
  padding-bottom: 20px;
  margin-bottom: 20px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03-share_lists__item-title .title {
    padding-bottom: 15px;
    margin-bottom: 15px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title .title {
    padding-bottom: 12px;
    margin-bottom: 12px
  }
}

.is-3minutes-03-share_lists__item-title .title-icon {
  width: 64px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03-share_lists__item-title .title-icon {
    width: 5vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title .title-icon {
    width: 8vw
  }
}

.is-3minutes-03-share_lists__item-title .title-text {
  width: calc(100% - 64px);
  margin-left: 10px;
  font-size: 22px;
  color: #ea781e;
  font-weight: 500;
  line-height: 1.2
}

@media(min-width: 375px) {
  .is-3minutes-03-share_lists__item-title .title-text {
    font-size: 40px;
    font-size: calc(0.0137931034*100vw + 16.8275862069px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03-share_lists__item-title .title-text {
    font-size: 40px
  }
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-03-share_lists__item-title .title-text {
    width: calc(100% - 5vw)
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title .title-text {
    width: calc(100% - 8vw)
  }
}

.is-3minutes-03-share_lists__item-title .sub-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2
}

@media(min-width: 375px) {
  .is-3minutes-03-share_lists__item-title .sub-title {
    font-size: 25px;
    font-size: calc(0.0076628352*100vw + 12.1264367816px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03-share_lists__item-title .sub-title {
    font-size: 25px
  }
}

.is-3minutes-03-share_lists__item-title .sub-text {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.45
}

@media(min-width: 375px) {
  .is-3minutes-03-share_lists__item-title .sub-text {
    font-size: 22px;
    font-size: calc(0.0061302682*100vw + 11.7011494253px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-03-share_lists__item-title .sub-text {
    font-size: 22px
  }
}

.is-3minutes-03-share_lists__item-title .sub-text+.title {
  margin-top: 30px
}

@media only screen and (max-width:640px) {
  .is-3minutes-03-share_lists__item-title .sub-text+.title {
    margin-top: 24px
  }
}

.is-3minutes-04 {
  background: #fde5e0;
  padding-bottom: 240px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-04 {
    padding-bottom: 160px
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-04 {
    padding-bottom: 100px
  }
}

.is-3minutes-04 .main_title .number {
  color: #e24c31
}

.is-3minutes-04 .main_title .title .en {
  color: #e24c31
}

.is-3minutes-04-graph {
  width: 100%
}

@media only screen and (max-width:640px) {
  .is-3minutes-04-graph .is-pc {
    display: none
  }
}

.is-3minutes-04-graph .is-sp {
  display: none
}

@media only screen and (max-width:640px) {
  .is-3minutes-04-graph .is-sp {
    display: block
  }
}

.is-3minutes-05 {
  background: #d0f0f4;
  padding-bottom: 80px
}

.is-3minutes-05 .main_title .number {
  color: #48bbca
}

.is-3minutes-05 .main_title .title .en {
  color: #48bbca
}

.is-3minutes-05-graph {
  width: 100%
}

@media only screen and (max-width:640px) {
  .is-3minutes-05-graph .is-pc {
    display: none
  }
}

.is-3minutes-05-graph .is-sp {
  display: none
}

@media only screen and (max-width:640px) {
  .is-3minutes-05-graph .is-sp {
    display: block
  }
}

.is-3minutes-footer {
  padding-top: 146px
}

@media only screen and (min-width:641px)and (max-width:1366px) {
  .is-3minutes-footer {
    padding-top: 10vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-footer {
    padding-top: 10vw
  }
}

.is-3minutes-footer-lead {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
  color: #007abe
}

@media(min-width: 375px) {
  .is-3minutes-footer-lead {
    font-size: 30px;
    font-size: calc(0.0091954023*100vw + 14.5517241379px)
  }
}

@media(min-width: 1680px) {
  .is-3minutes-footer-lead {
    font-size: 30px
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-footer-lead {
    margin-bottom: 3vw
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-footer-lead {
    margin-bottom: 5vw
  }
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .is-3minutes-footer-logo {
    width: 70%;
    margin: 0 auto
  }
}

@media only screen and (max-width:640px) {
  .is-3minutes-footer-logo {
    width: 70%;
    margin: 0 auto
  }
}

.search-results {
  padding-bottom: 180px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-results {
    padding-bottom: 140px
  }
}

@media only screen and (max-width:640px) {
  .search-results {
    padding-bottom: 90px
  }
}

.search-results ._pagenator {
  margin: 40px auto !important;
  font-size: 0 !important;
  text-align: center !important
}

@media only screen and (max-width:640px) {
  .search-results ._pagenator {
    margin: 20px auto !important
  }
}

.search-results ._pagenator ._nav {
  flex: 0 !important
}

.search-results ._pagenator ._nav._page {
  display: flex !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important
}

.search-results ._pagenator ._nav._page:last-child {
  margin-right: 0 !important
}

.search-results ._pagenator ._nav._page span,
.search-results ._pagenator ._nav._page a {
  margin: 0 16px !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 16px;
  position: relative !important;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 375px) {

  .search-results ._pagenator ._nav._page span,
  .search-results ._pagenator ._nav._page a {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {

  .search-results ._pagenator ._nav._page span,
  .search-results ._pagenator ._nav._page a {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {

  .search-results ._pagenator ._nav._page span,
  .search-results ._pagenator ._nav._page a {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    margin: 0 10px !important
  }
}

.search-results ._pagenator ._nav._page span:hover,
.search-results ._pagenator ._nav._page a:hover {
  color: #007abe !important
}

.search-results ._pagenator ._nav._page span:hover i,
.search-results ._pagenator ._nav._page a:hover i {
  color: #fff !important
}

.search-results ._pagenator ._nav._page span i,
.search-results ._pagenator ._nav._page a i {
  display: block !important;
  font-size: 16px
}

@media(min-width: 375px) {

  .search-results ._pagenator ._nav._page span i,
  .search-results ._pagenator ._nav._page a i {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {

  .search-results ._pagenator ._nav._page span i,
  .search-results ._pagenator ._nav._page a i {
    font-size: 22px
  }
}

.search-results ._pagenator ._current {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  line-height: 1 !important;
  padding-bottom: 2px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff !important;
  background: #007abe !important;
  font-size: 16px;
  position: relative !important;
  margin: 0 4px !important
}

@media(min-width: 375px) {
  .search-results ._pagenator ._current {
    font-size: 22px;
    font-size: calc(0.0045977011*100vw + 14.275862069px)
  }
}

@media(min-width: 1680px) {
  .search-results ._pagenator ._current {
    font-size: 22px
  }
}

@media only screen and (max-width:640px) {
  .search-results ._pagenator ._current {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    margin: 0 8px 0 0px !important
  }
}

.search-results ._pagenator ._nav._first {
  display: none !important
}

.search-results ._pagenator ._nav._next,
.search-results ._pagenator ._nav._prev {
  margin: 0 1em !important;
  position: relative !important;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media only screen and (max-width:640px) {

  .search-results ._pagenator ._nav._next,
  .search-results ._pagenator ._nav._prev {
    display: flex !important;
    margin: 0 .5em !important
  }
}

.search-results ._pagenator ._nav._next ._button,
.search-results ._pagenator ._nav._prev ._button {
  padding: 0 !important;
  color: #227abe !important;
  background: 0 !important;
  border: 0 !important;
  font-weight: 700 !important;
  text-decoration: underline !important
}

.search-results ._searchresults {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 80px
}

@media only screen and (min-width:641px)and (max-width:835px) {
  .search-results ._searchresults {
    padding: 4vw
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults {
    padding: 6vw;
    border-radius: 5px
  }
}

.search-results ._searchresults ._items ._item {
  margin-bottom: 0 !important
}

.search-results ._searchresults ._items ._item:not(:first-child) {
  margin-top: 50px !important;
  padding-top: 50px !important;
  border-top: 1px solid #eaecef !important
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item:not(:first-child) {
    margin-top: 30px !important;
    padding-top: 30px !important
  }
}

.search-results ._searchresults ._items ._item ._wrap {
  width: 100% !important;
  max-height: none !important
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup1 {
    padding: 0 !important;
    margin-bottom: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup1 ._seq {
  display: none
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup1 ._title {
  max-height: none !important;
  padding: 0 !important;
  overflow: unset !important;
  display: block !important;
  -webkit-box-orient: unset !important;
  word-break: normal !important;
  -webkit-line-clamp: unset !important
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup1 ._title a {
  font-weight: 700 !important;
  color: #007abe !important
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 {
    display: block !important;
    padding: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._thumbnail {
  width: 170px
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._thumbnail {
    min-width: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    width: 100% !important;
    margin-top: 20px !important
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._thumbnail:before {
    padding-top: 80% !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._thumbnail img {
  width: 160px
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._thumbnail img {
    min-width: 100% !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._snippet {
  line-height: 1.5
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._snippet {
    margin-top: 10px !important;
    padding: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup2 ._snippet em {
  font-weight: bold
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 {
    display: block !important;
    padding: 0 !important
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._filesize {
    margin-top: 10px !important;
    padding: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._filesize span {
  font-size: 15px
}

@media(min-width: 375px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._filesize span {
    font-size: 18px;
    font-size: calc(0.0022988506*100vw + 14.1379310345px)
  }
}

@media(min-width: 1680px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._filesize span {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._last_modified {
    padding: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._last_modified span {
  font-size: 15px
}

@media(min-width: 375px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._last_modified span {
    font-size: 18px;
    font-size: calc(0.0022988506*100vw + 14.1379310345px)
  }
}

@media(min-width: 1680px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup3 ._last_modified span {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 {
    padding: 0 !important
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 ._link {
    padding: 0 !important
  }
}

.search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 ._link a {
  font-size: 15px;
  color: #007abe !important;
  text-decoration: underline;
  word-break: break-all
}

@media(min-width: 375px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 ._link a {
    font-size: 18px;
    font-size: calc(0.0022988506*100vw + 14.1379310345px)
  }
}

@media(min-width: 1680px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 ._link a {
    font-size: 18px
  }
}

@media only screen and (max-width:640px) {
  .search-results ._searchresults ._items ._item ._wrap ._layoutgroup4 ._link a {
    line-height: 1.4 !important
  }
}

.is-404-content .ttl-quaternary {
  text-align: center;
  font-weight: 700
}

.is-404-content-link .text {
  text-align: center
}

.is-404-content-link .text a {
  color: #007abe
}

.fixed_nav_lists {
  position: fixed;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fixed_nav_lists:not(.is-simulator) .fixed_nav_lists__item:first-of-type {
border-top-left-radius: 10px;
overflow: hidden;
}
.fixed_nav_lists:not(.is-simulator) .fixed_nav_lists__item:last-of-type {
border-bottom-left-radius: 10px;
overflow: hidden;
}

@media(min-width: 641px) {
  .fixed_nav_lists {
    inset: var(--header-height) 0 0 auto;
    margin-block: 20px
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists {
    width: 100vw;
    inset: auto 0 0;
    border-radius: 0;
    flex-direction: row
  }
}

.fixed_nav_lists__item {
  width: 105px
}

@media only screen and (min-width: 641px)and (max-width: 1024px) {
  .fixed_nav_lists__item {
    width: 84px
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item {
    width: 33.3333%
  }
}

.fixed_nav_lists__item:not(:first-child) {
  border-top: 1px solid #80c1f5
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item:not(:first-child) {
    border-top: 0;
    border-left: 1px solid #80c1f5
  }
}

.fixed_nav_lists__item a {
  display: block;
  background: #0f67ae;
  padding: 20px 0
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 2px 0
  }
}

.fixed_nav_lists__item a picture {
  width: 62%;
  margin: 0 auto;
  display: block
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item a picture {
    text-align: center;
    width: auto
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item:nth-child(1) picture {
    width: 82%
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item:nth-child(2) picture {
    width: 76%
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item:nth-child(3) picture {
    width: 70%
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item {
  background: #0f67ae;
  padding: 18px 10px
}

@media(min-width: 641px) {
  .fixed_nav_lists.is-simulator {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding: 18px;
    background: #0f67ae;
    width: 210px;
        margin-block: 10px;
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-block: auto;
    padding: 0
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail {
    flex: 1 1 auto;
    overflow: auto
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail {
  flex: 1 1 100%;
  overflow: auto
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_accordion,
.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_accordion[open] {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  margin-block: auto
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion {
  margin-top: 27px
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion {
    margin-top: 10px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion:not(:first-child) {
  margin-top: 32px
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion summary {
  display: block;
  letter-spacing: .05em;
  text-align: center;
  font-size: 13px;
  align-items: center;
  cursor: pointer;
  padding: 9px 18px;
  background: #1d3751;
  color: #fff;
  font-weight: 700;
  position: sticky;
  top: 0;
  left: 0;
user-select: none;
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion summary::-webkit-details-marker {
  display: none
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion summary::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0 20px 0 auto;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  margin-left: 0;
  background-image: url(../images/common/icon-arrow-bottom-wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  translate: 0 15%;
  transition: transform .4s;
  transform-origin: center;
  rotate: 0deg
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion[open] summary::after {
  rotate: 180deg
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box {
  background-color: #fff;
  padding: 0 15px;
  border: 1px solid #1d3751
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box {
    padding: 12px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5
}

@media(min-width: 480px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title {
    font-size: 18px;
    font-size: calc(.625vw + 10px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title {
    font-size: 18px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title:not(:first-child) {
  margin-top: 30px
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title:not(:first-child) {
    margin-top: 18px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-title.is-left {
  text-align: left;
  font-weight: 400
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price strong {
  font-size: 24px;
  font-weight: 700;
  color: #0f67ae;
  line-height: 1.5
}

@media(min-width: 480px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price strong {
    font-size: 30px;
    font-size: calc(.75vw + 20.4px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price strong {
    font-size: 30px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5
}

@media(min-width: 480px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price small {
    font-size: 18px;
    font-size: calc(.75vw + 8.4px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-price small {
    font-size: 18px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-text {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
  font-feature-settings: "palt"
}

@media(min-width: 480px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-text {
    font-size: 18px;
    font-size: calc(.625vw + 10px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-text {
    font-size: 18px
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box-text {
    line-height: 2;
    margin-top: 8px
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box .indent {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.85
}

@media(min-width: 480px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box .indent {
    font-size: 16px;
    font-size: calc(.5vw + 9.6px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box .indent {
    font-size: 16px
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box .indent {
    line-height: 1.6
  }
}

.fixed_nav_lists__item-option-detail .fixed_nav_lists__item-option-detail_accordion .text-box .indent a {
  color: #0f67ae;
  text-decoration: underline;
  font-size: inherit
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_accordion .text-box {
  flex: 1 1 100%;
  overflow: auto
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item .fixed_nav_lists__item-title {
  color: #fff;
  font-size: 17px;
  text-align: center;
  padding: 8px 0;
  line-height: 1;
  letter-spacing: .05em;
  border: 1px solid #fff
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail .fixed_nav_lists__item-title {
  display: none
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-title {
    font-size: 17px;
    font-size: calc(.625vw + 9px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-title {
    font-size: 17px
  }
}

@media(max-width: 640px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item .fixed_nav_lists__item-title {
    display: none
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail .fixed_nav_lists__item-title {
    display: block;
    border-color: #fff rgba(0, 0, 0, 0);
    margin-block: 20px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-title {
  margin-top: 12px;
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  letter-spacing: .05em;
  color: #fff
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-title {
    font-size: 17px;
    font-size: calc(.625vw + 9px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-title {
    font-size: 17px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value {
  display: block;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  color: #fff;
  margin-top: 6px
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value {
    font-size: 30px;
    font-size: calc(1.75vw + 7.6px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value {
    font-size: 30px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: .05em;
  color: #fff
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value small {
    font-size: 17px;
    font-size: calc(.625vw + 9px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value small {
    font-size: 17px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail {
  margin-top: 18px;
  border-radius: 3px;
  overflow: hidden
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail-title {
  font-size: 11px;
  background: #19344c;
  color: #fff;
  padding: 18px;
  line-height: 1;
  letter-spacing: .1em;
  display: block;
  position: relative
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail-title {
    font-size: 12px;
    font-size: calc(.125vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail-title {
    font-size: 12px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail-title img {
  width: 10px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%)
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists {
  background: #fff;
  padding: 0 14px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item {
  padding: 12px 0
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item:not(:first-child) {
  border-top: 1px solid #ccc
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-title {
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 1.2
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-title {
    font-size: 14px;
    font-size: calc(.25vw + 10.8px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-title {
    font-size: 14px
  }
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-value {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 4px
}

@media(min-width: 480px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-value {
    font-size: 20px;
    font-size: calc(.75vw + 10.4px)
  }
}

@media(min-width: 1280px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-detail_lists__item-value {
    font-size: 20px
  }
}

.fixed_nav_lists.is-simulator a {
  border-radius: 3px;
  margin-top: 10px;
  background: #fff;
  display: block;
  position: relative
}

.fixed_nav_lists.is-simulator a picture img {
  margin-left: 10px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail {
  color: #fff;
line-height: 1.2;
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_caption {
  font-size: 17px;
  text-align: center;
  margin-block: 2px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_lists {
  display: flex;
  flex-direction: column;
  align-items: center
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item {
  display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  text-align: center;
column-gap: 4px;
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item span {
  font-size: 12px;
    width: fit-content;
    display: inline-flex;
    justify-content: center;
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item .fixed_nav_lists__item-basic-detail_item-title {
  padding: 3px 6px;
  border-radius: 999px;
  background-color: #fff;
  color: #0f67ae;
  width: 100%;
    line-height: 1.2;
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_item {
  padding-block: 10px;
  text-align: center;
  display: flex;
  flex-direction: column
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_item+.fixed_nav_lists__item-option-detail_item {
  border-top: 1px solid #ccc
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_item-title {
  font-size: 14px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  gap: 6px;
  color: #0c67b0
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link:hover {
  background-color: #eaecef
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link-icon {
  flex: 0 0 22px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link-text {
  text-align: center;
  font-size: 16px
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link-arrow {
  flex: 0 0 8px;
  transform: rotate(-90deg)
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link-text {
    font-size: 13px
  }
}

.js-simulator-basic-people-adult:empty+.js-simulator-basic-people-child:empty::before {
  content: "-"
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-simulator-toggle {
  display: none
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail .fixed_nav_lists__item-simulator-toggle::after {
  background-image: url(../images/common/icon-arrow-bottom.svg)
}

.fixed_nav_lists.is-simulator .fixed_nav_lists__item-simulator-toggle::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  background-image: url(../images/common/icon-arrow-bottom-wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists.is-simulator {
    overflow: visible
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price {
    display: flex;
    gap: 8px;
    font-size: 12px;
    height: 100%;
    align-items: center
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-title {
    text-align: left;
    flex: 0 0 auto;
    margin: 0
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value {
    margin: 0
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item {
    position: relative;
    z-index: 5;
    flex: 1 1 auto;
    width: auto
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value {
    font-size: 22px;
    word-break: break-word;
    text-align: left
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-total-price-value span {
    font-size: 12px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-simulator-toggle {
    border: none;
    padding: 0;
    appearance: none;
    font-family: inherit;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 2px 12px;
    border-radius: 2px;
    gap: 4px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail .fixed_nav_lists__item-simulator-toggle {
    color: #0f67ae;
    background-color: #fff;
    width: fit-content
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_lists {
    gap: 16px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item-title {
    flex: 0 0 120px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-basic-detail_item-value {
    flex: 1 1 auto
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item:not(.simulator-detail) .fixed_nav_lists__item-simulator-toggle {
    translate: 0 -100%;
    background-color: #0c67b0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    color: #fff
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item:not(.simulator-detail) .fixed_nav_lists__item-simulator-toggle::after {
    rotate: 180deg
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link {
    margin-top: 0;
    padding: 4px;
    height: 44px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-simulator-toggle:not(:focus) {
    outline: none
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item {
    padding: 12px 10px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail {
    position: fixed;
    inset: var(--header-height) 0 68px;
    z-index: 1;
    translate: 0 100%;
    transition: .3s ease;
    display: flex;
    flex-direction: column
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item:last-of-type {
    padding-left: 0px;
    flex: 0 0 134px
  }

  .fixed_nav_lists.is-simulator.is-open .fixed_nav_lists__item.simulator-detail {
    translate: 0%
  }

  .fixed_nav_lists.is-simulator.is-open .fixed_nav_lists__item:not(.simulator-detail) .fixed_nav_lists__item-simulator-toggle {
    display: none
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-application-link-icon {
    flex-basis: 18px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_accordion .text-box {
    padding-block: 0
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail {
    margin-top: 20px;
    font-weight: bold
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_item {
    flex-direction: row;
    justify-content: space-between;
    padding-block: 5px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item-option-detail_item-value {
    font-size: 17px
  }
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists-lower .fixed_nav_lists__item {
    width: 100%
  }
}

.fixed_nav_lists-lower .fixed_nav_lists__item:nth-child(1) picture {
  width: 80%
}

@media only screen and (max-width: 640px) {
  .fixed_nav_lists-lower .fixed_nav_lists__item:nth-child(1) picture {
    width: 32%
  }
}

.is-premium .fixed_nav_lists__item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, .6)
}

@media only screen and (max-width: 640px) {
  .is-premium .fixed_nav_lists__item:not(:first-child) {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .6)
  }
}

.is-premium .fixed_nav_lists__item a {
  background: #13354f
}

.is-search-by-event_lists__item a {
  background: #fff;
  border-radius: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding-right: 18px;
  position: relative;
  z-index: 0
}

@media only screen and (max-width: 640px) {
  .is-search-by-event_lists__item a {
    padding: 6px
  }

  .fixed_nav_lists.is-simulator .fixed_nav_lists__item.simulator-detail+.fixed_nav_lists__item {
    border: none
  }
}

.is-search-by-event_lists__item a.is-disabled {
pointer-events: none;
    color: #999;
    background: #e3e3e3;
}
.is-search-by-event_lists__item a.is-disabled .img {
    filter: grayscale(1);
    opacity: 0.3;
}
.is-search-by-event_lists__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, #13354f 0%, #3f77a2 100%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: -1
}

.is-search-by-event_lists__item a .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.is-search-by-event_lists__item a .img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  width: 96px;
  flex: 0 0 96px;
  position: relative;
  z-index: 200
}

@media only screen and (min-width: 641px)and (max-width: 1024px) {
  .is-search-by-event_lists__item a .img {
    width: 76px;
flex-basis: 76px;
  }
}

@media only screen and (max-width: 640px) {
  .is-search-by-event_lists__item a .img {
    width: 48px;
flex-basis: 48px;
  }
}

.is-search-by-event_lists__item a .title {
  flex: 1 1 auto;
  padding-inline: 13px 10px;
  position: relative;
  z-index: 200
}

.is-search-by-event_lists__item a .title .en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 480px) {
  .is-search-by-event_lists__item a .title .en {
    font-size: 16px;
    font-size: calc(.75vw + 6.4px)
  }
}

@media(min-width: 1280px) {
  .is-search-by-event_lists__item a .title .en {
    font-size: 16px
  }
}

@media only screen and (min-width: 641px)and (max-width: 1024px) {
  .is-search-by-event_lists__item a .title .en {
    font-size: 14px
  }
}

.is-search-by-event_lists__item a .title .jp {
  margin-top: 3px;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  font-feature-settings: "palt";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

@media(min-width: 480px) {
  .is-search-by-event_lists__item a .title .jp {
    font-size: 24px;
    font-size: calc(1.375vw + 6.4px)
  }
}

@media(min-width: 1280px) {
  .is-search-by-event_lists__item a .title .jp {
    font-size: 24px
  }
}

@media only screen and (min-width: 641px)and (max-width: 1024px) {
  .is-search-by-event_lists__item a .title .jp {
    font-size: 20px
  }
}

@media only screen and (max-width: 640px) {
  .is-search-by-event_lists__item a .title .jp {
    width: 80%;
    margin-top: 2px
  }
}

.is-search-by-event_lists__item a .arrow {
  width: 8px;
  flex: 0 0 8px
}

.is-search-by-event_lists__item:not(:has(.is-disabled)):hover {
  filter: drop-shadow(2px 10px 10px rgba(57, 57, 57, 0.4))
}

.is-search-by-event_lists__item:hover a:not(.is-disabled)::before {
  opacity: 1
}

.is-search-by-event_lists__item:hover a:not(.is-disabled) .title .en,
.is-search-by-event_lists__item:hover a:not(.is-disabled) .title .jp {
  color: #fff
}

.is-search-by-event_lists__item:hover a:not(.is-disabled) .arrow {
  filter: brightness(0) invert(1)
}

.index .is-search-by-location {
  position: relative
}

.primary-link {
  color: #0f67ae;
  display: inline-flex;
  align-items: center
}

.primary-link::before {
  content: "";
  width: 0;
  height: 0;
  flex: 0 0 0;
  border-style: solid;
  border-width: 3px 6px;
  font-size: 18px;
  border-color: rgba(0, 0, 0, 0);
  border-left-color: inherit;
  font-size: 18px
}

@media only screen and (max-width: 640px) {
  .primary-link {
    font-size: 13px
  }
}

.is-hidden {
  display: none
}

.is-sp {
  display: none
}

@media only screen and (max-width: 640px) {
  .is-sp {
    display: block
  }
}

.hotelClass-lists {
  border: 3px solid #0f67ae;
  padding: 35px 40px;
  margin-bottom: 30px;
  padding-left: calc(30px + 1em);
  list-style: square;
  font-size: 18px
}

.hotelClass-lists li+li {
  margin-top: 12px
}

.hotelClass-noticeLists {
  list-style: disc;
  padding-left: 1em;
  margin-top: 10px;
  font-size: 16px
}

.hotelClass-noticeLists li+li {
  margin-top: 5px
}

@media only screen and (max-width: 640px) {
  .hotelClass-lists {
    border-width: 2px;
    padding: 15px 20px;
    margin-bottom: 20px;
    padding-left: calc(20px + 1em)
  }
}

.is-single .is-price-list a:not(.btn) {
  text-decoration: underline
}

.is-single .is-price-list a:not(.btn):hover {
  text-decoration: none
}

.is-uppercase {
  text-transform: uppercase
}

.is-capitalize {
  text-transform: capitalize
}
.no-article-text {
margin-top: 15px;
font-size: 21px;
}
/* -- utility -- */
.align-center {
  text-align: center !important;
}
.align-left {
  text-align: left !important;
}
.align-right {
  text-align: right !important;
}
.m-center {
  margin-inline: auto !important;
}
.m-left {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.m-right {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.m-level0 {
  margin: 0px !important;
}
.p-level0 {
  padding: 0px !important;
}
.mblock-level0 {
  margin-block: 0px !important;
}
.pblock-level0 {
  padding-block: 0px !important;
}
.minline-level0 {
  margin-inline: 0px !important;
}
.pinline-level0 {
  padding-inline: 0px !important;
}
.mt-level0 {
  margin-top: 0px !important;
}
.pt-level0 {
  padding-top: 0px !important;
}
.mb-level0 {
  margin-bottom: 0px !important;
}
.pb-level0 {
  padding-bottom: 0px !important;
}
.mr-level0 {
  margin-right: 0px !important;
}
.pr-level0 {
  padding-right: 0px !important;
}
.ml-level0 {
  margin-left: 0px !important;
}
.pl-level0 {
  padding-left: 0px !important;
}
.gap-level1 {
  gap: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.m-level1 {
  margin: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.p-level1 {
  padding: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.mblock-level1 {
  margin-block: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pblock-level1 {
  padding-block: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.minline-level1 {
  margin-inline: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pinline-level1 {
  padding-inline: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.mt-level1 {
  margin-top: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pt-level1 {
  padding-top: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.mb-level1 {
  margin-bottom: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pb-level1 {
  padding-bottom: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.mr-level1 {
  margin-right: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pr-level1 {
  padding-right: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.ml-level1 {
  margin-left: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.pl-level1 {
  padding-left: clamp(0.25rem, -187.25rem + 250vw, 0.5rem) !important;
}
.gap-level2 {
  gap: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.m-level2 {
  margin: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.p-level2 {
  padding: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.mblock-level2 {
  margin-block: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pblock-level2 {
  padding-block: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.minline-level2 {
  margin-inline: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pinline-level2 {
  padding-inline: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.mt-level2 {
  margin-top: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pt-level2 {
  padding-top: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.mb-level2 {
  margin-bottom: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pb-level2 {
  padding-bottom: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.mr-level2 {
  margin-right: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pr-level2 {
  padding-right: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.ml-level2 {
  margin-left: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.pl-level2 {
  padding-left: clamp(0.6666666667rem, -249.3333333333rem + 333.3333333334vw, 1rem) !important;
}
.gap-level3 {
  gap: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.m-level3 {
  margin: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.p-level3 {
  padding: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.mblock-level3 {
  margin-block: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pblock-level3 {
  padding-block: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.minline-level3 {
  margin-inline: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pinline-level3 {
  padding-inline: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.mt-level3 {
  margin-top: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pt-level3 {
  padding-top: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.mb-level3 {
  margin-bottom: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pb-level3 {
  padding-bottom: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.mr-level3 {
  margin-right: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pr-level3 {
  padding-right: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.ml-level3 {
  margin-left: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.pl-level3 {
  padding-left: clamp(1rem, -374rem + 500vw, 1.5rem) !important;
}
.gap-level4 {
  gap: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.m-level4 {
  margin: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.p-level4 {
  padding: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.mblock-level4 {
  margin-block: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pblock-level4 {
  padding-block: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.minline-level4 {
  margin-inline: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pinline-level4 {
  padding-inline: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.mt-level4 {
  margin-top: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pt-level4 {
  padding-top: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.mb-level4 {
  margin-bottom: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pb-level4 {
  padding-bottom: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.mr-level4 {
  margin-right: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pr-level4 {
  padding-right: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.ml-level4 {
  margin-left: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.pl-level4 {
  padding-left: clamp(1.3333333333rem, -498.6666666667rem + 666.6666666667vw, 2rem) !important;
}
.gap-level5 {
  gap: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.m-level5 {
  margin: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.p-level5 {
  padding: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.mblock-level5 {
  margin-block: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pblock-level5 {
  padding-block: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.minline-level5 {
  margin-inline: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pinline-level5 {
  padding-inline: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.mt-level5 {
  margin-top: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pt-level5 {
  padding-top: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.mb-level5 {
  margin-bottom: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pb-level5 {
  padding-bottom: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.mr-level5 {
  margin-right: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pr-level5 {
  padding-right: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.ml-level5 {
  margin-left: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.pl-level5 {
  padding-left: clamp(1.6666666667rem, -623.3333333334rem + 833.3333333334vw, 2.5rem) !important;
}
.gap-level6 {
  gap: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.m-level6 {
  margin: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.p-level6 {
  padding: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.mblock-level6 {
  margin-block: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pblock-level6 {
  padding-block: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.minline-level6 {
  margin-inline: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pinline-level6 {
  padding-inline: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.mt-level6 {
  margin-top: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pt-level6 {
  padding-top: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.mb-level6 {
  margin-bottom: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pb-level6 {
  padding-bottom: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.mr-level6 {
  margin-right: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pr-level6 {
  padding-right: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.ml-level6 {
  margin-left: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.pl-level6 {
  padding-left: clamp(2rem, -748rem + 1000.0000000001vw, 3rem) !important;
}
.gap-level7 {
  gap: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.m-level7 {
  margin: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.p-level7 {
  padding: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.mblock-level7 {
  margin-block: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pblock-level7 {
  padding-block: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.minline-level7 {
  margin-inline: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pinline-level7 {
  padding-inline: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.mt-level7 {
  margin-top: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pt-level7 {
  padding-top: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.mb-level7 {
  margin-bottom: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pb-level7 {
  padding-bottom: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.mr-level7 {
  margin-right: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pr-level7 {
  padding-right: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.ml-level7 {
  margin-left: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.pl-level7 {
  padding-left: clamp(2.3333333333rem, -872.6666666667rem + 1166.6666666667vw, 3.5rem) !important;
}
.gap-level8 {
  gap: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.m-level8 {
  margin: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.p-level8 {
  padding: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.mblock-level8 {
  margin-block: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pblock-level8 {
  padding-block: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.minline-level8 {
  margin-inline: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pinline-level8 {
  padding-inline: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.mt-level8 {
  margin-top: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pt-level8 {
  padding-top: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.mb-level8 {
  margin-bottom: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pb-level8 {
  padding-bottom: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.mr-level8 {
  margin-right: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pr-level8 {
  padding-right: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.ml-level8 {
  margin-left: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.pl-level8 {
  padding-left: clamp(2.6666666667rem, -997.3333333334rem + 1333.3333333334vw, 4rem) !important;
}
.gap-level9 {
  gap: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.m-level9 {
  margin: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.p-level9 {
  padding: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.mblock-level9 {
  margin-block: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pblock-level9 {
  padding-block: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.minline-level9 {
  margin-inline: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pinline-level9 {
  padding-inline: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.mt-level9 {
  margin-top: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pt-level9 {
  padding-top: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.mb-level9 {
  margin-bottom: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pb-level9 {
  padding-bottom: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.mr-level9 {
  margin-right: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pr-level9 {
  padding-right: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.ml-level9 {
  margin-left: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.pl-level9 {
  padding-left: clamp(3rem, -1122.0000000001rem + 1500.0000000001vw, 4.5rem) !important;
}
.gap-level10 {
  gap: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.m-level10 {
  margin: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.p-level10 {
  padding: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.mblock-level10 {
  margin-block: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pblock-level10 {
  padding-block: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.minline-level10 {
  margin-inline: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pinline-level10 {
  padding-inline: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.mt-level10 {
  margin-top: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pt-level10 {
  padding-top: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.mb-level10 {
  margin-bottom: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pb-level10 {
  padding-bottom: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.mr-level10 {
  margin-right: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pr-level10 {
  padding-right: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.ml-level10 {
  margin-left: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.pl-level10 {
  padding-left: clamp(3.3333333333rem, -1246.6666666667rem + 1666.6666666668vw, 5rem) !important;
}
.gap-level11 {
  gap: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.m-level11 {
  margin: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.p-level11 {
  padding: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.mblock-level11 {
  margin-block: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pblock-level11 {
  padding-block: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.minline-level11 {
  margin-inline: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pinline-level11 {
  padding-inline: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.mt-level11 {
  margin-top: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pt-level11 {
  padding-top: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.mb-level11 {
  margin-bottom: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pb-level11 {
  padding-bottom: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.mr-level11 {
  margin-right: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pr-level11 {
  padding-right: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.ml-level11 {
  margin-left: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.pl-level11 {
  padding-left: clamp(3.6666666667rem, -1371.3333333334rem + 1833.3333333334vw, 5.5rem) !important;
}
.gap-level12 {
  gap: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.m-level12 {
  margin: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.p-level12 {
  padding: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.mblock-level12 {
  margin-block: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pblock-level12 {
  padding-block: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.minline-level12 {
  margin-inline: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pinline-level12 {
  padding-inline: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.mt-level12 {
  margin-top: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pt-level12 {
  padding-top: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.mb-level12 {
  margin-bottom: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pb-level12 {
  padding-bottom: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.mr-level12 {
  margin-right: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pr-level12 {
  padding-right: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.ml-level12 {
  margin-left: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.pl-level12 {
  padding-left: clamp(4rem, -1496.0000000001rem + 2000.0000000001vw, 6rem) !important;
}
.gap-level13 {
  gap: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.m-level13 {
  margin: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.p-level13 {
  padding: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.mblock-level13 {
  margin-block: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pblock-level13 {
  padding-block: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.minline-level13 {
  margin-inline: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pinline-level13 {
  padding-inline: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.mt-level13 {
  margin-top: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pt-level13 {
  padding-top: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.mb-level13 {
  margin-bottom: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pb-level13 {
  padding-bottom: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.mr-level13 {
  margin-right: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pr-level13 {
  padding-right: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.ml-level13 {
  margin-left: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.pl-level13 {
  padding-left: clamp(4.3333333333rem, -1620.6666666668rem + 2166.6666666668vw, 6.5rem) !important;
}
.gap-level14 {
  gap: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.m-level14 {
  margin: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.p-level14 {
  padding: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.mblock-level14 {
  margin-block: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pblock-level14 {
  padding-block: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.minline-level14 {
  margin-inline: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pinline-level14 {
  padding-inline: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.mt-level14 {
  margin-top: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pt-level14 {
  padding-top: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.mb-level14 {
  margin-bottom: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pb-level14 {
  padding-bottom: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.mr-level14 {
  margin-right: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pr-level14 {
  padding-right: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.ml-level14 {
  margin-left: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
.pl-level14 {
  padding-left: clamp(4.6666666667rem, -1745.3333333334rem + 2333.3333333335vw, 7rem) !important;
}
@media screen and (max-width: 640px) {
  .sp-m-center {
    margin-block: auto !important;
  }
  .sp-m-left {
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  .sp-m-right {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .sp-gap-level0 {
    gap: 0px !important;
  }
  .sp-m-level0 {
    margin: 0px !important;
  }
  .sp-p-level0 {
    padding: 0px !important;
  }
  .sp-mblock-level0 {
    margin-block: 0px !important;
  }
  .sp-pblock-level0 {
    padding-block: 0px !important;
  }
  .sp-minline-level0 {
    margin-inline: 0px !important;
  }
  .sp-pinline-level0 {
    padding-inline: 0px !important;
  }
  .sp-mt-level0 {
    margin-top: 0px !important;
  }
  .sp-pt-level0 {
    padding-top: 0px !important;
  }
  .sp-mb-level0 {
    margin-bottom: 0px !important;
  }
  .sp-pb-level0 {
    padding-bottom: 0px !important;
  }
  .sp-mr-level0 {
    margin-right: 0px !important;
  }
  .sp-pr-level0 {
    padding-right: 0px !important;
  }
  .sp-ml-level0 {
    margin-left: 0px !important;
  }
  .sp-pl-level0 {
    padding-left: 0px !important;
  }
  .sp-gap-level1 {
    gap: 0.6666666667vw !important;
  }
  .sp-m-level1 {
    margin: 0.6666666667vw !important;
  }
  .sp-p-level1 {
    padding: 0.6666666667vw !important;
  }
  .sp-mblock-level1 {
    margin-block: 0.6666666667vw !important;
  }
  .sp-pblock-level1 {
    padding-block: 0.6666666667vw !important;
  }
  .sp-minline-level1 {
    margin-inline: 0.6666666667vw !important;
  }
  .sp-pinline-level1 {
    padding-inline: 0.6666666667vw !important;
  }
  .sp-mt-level1 {
    margin-top: 0.6666666667vw !important;
  }
  .sp-pt-level1 {
    padding-top: 0.6666666667vw !important;
  }
  .sp-mb-level1 {
    margin-bottom: 0.6666666667vw !important;
  }
  .sp-pb-level1 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sp-mr-level1 {
    margin-right: 0.6666666667vw !important;
  }
  .sp-pr-level1 {
    padding-right: 0.6666666667vw !important;
  }
  .sp-ml-level1 {
    margin-left: 0.6666666667vw !important;
  }
  .sp-pl-level1 {
    padding-left: 0.6666666667vw !important;
  }
  .sp-gap-level2 {
    gap: 2.6666666667vw !important;
  }
  .sp-m-level2 {
    margin: 2.6666666667vw !important;
  }
  .sp-p-level2 {
    padding: 2.6666666667vw !important;
  }
  .sp-mblock-level2 {
    margin-block: 2.6666666667vw !important;
  }
  .sp-pblock-level2 {
    padding-block: 2.6666666667vw !important;
  }
  .sp-minline-level2 {
    margin-inline: 2.6666666667vw !important;
  }
  .sp-pinline-level2 {
    padding-inline: 2.6666666667vw !important;
  }
  .sp-mt-level2 {
    margin-top: 2.6666666667vw !important;
  }
  .sp-pt-level2 {
    padding-top: 2.6666666667vw !important;
  }
  .sp-mb-level2 {
    margin-bottom: 2.6666666667vw !important;
  }
  .sp-pb-level2 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sp-mr-level2 {
    margin-right: 2.6666666667vw !important;
  }
  .sp-pr-level2 {
    padding-right: 2.6666666667vw !important;
  }
  .sp-ml-level2 {
    margin-left: 2.6666666667vw !important;
  }
  .sp-pl-level2 {
    padding-left: 2.6666666667vw !important;
  }
  .sp-gap-level3 {
    gap: 4vw !important;
  }
  .sp-m-level3 {
    margin: 4vw !important;
  }
  .sp-p-level3 {
    padding: 4vw !important;
  }
  .sp-mblock-level3 {
    margin-block: 4vw !important;
  }
  .sp-pblock-level3 {
    padding-block: 4vw !important;
  }
  .sp-minline-level3 {
    margin-inline: 4vw !important;
  }
  .sp-pinline-level3 {
    padding-inline: 4vw !important;
  }
  .sp-mt-level3 {
    margin-top: 4vw !important;
  }
  .sp-pt-level3 {
    padding-top: 4vw !important;
  }
  .sp-mb-level3 {
    margin-bottom: 4vw !important;
  }
  .sp-pb-level3 {
    padding-bottom: 4vw !important;
  }
  .sp-mr-level3 {
    margin-right: 4vw !important;
  }
  .sp-pr-level3 {
    padding-right: 4vw !important;
  }
  .sp-ml-level3 {
    margin-left: 4vw !important;
  }
  .sp-pl-level3 {
    padding-left: 4vw !important;
  }
  .sp-gap-level4 {
    gap: 5.3333333333vw !important;
  }
  .sp-m-level4 {
    margin: 5.3333333333vw !important;
  }
  .sp-p-level4 {
    padding: 5.3333333333vw !important;
  }
  .sp-mblock-level4 {
    margin-block: 5.3333333333vw !important;
  }
  .sp-pblock-level4 {
    padding-block: 5.3333333333vw !important;
  }
  .sp-minline-level4 {
    margin-inline: 5.3333333333vw !important;
  }
  .sp-pinline-level4 {
    padding-inline: 5.3333333333vw !important;
  }
  .sp-mt-level4 {
    margin-top: 5.3333333333vw !important;
  }
  .sp-pt-level4 {
    padding-top: 5.3333333333vw !important;
  }
  .sp-mb-level4 {
    margin-bottom: 5.3333333333vw !important;
  }
  .sp-pb-level4 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sp-mr-level4 {
    margin-right: 5.3333333333vw !important;
  }
  .sp-pr-level4 {
    padding-right: 5.3333333333vw !important;
  }
  .sp-ml-level4 {
    margin-left: 5.3333333333vw !important;
  }
  .sp-pl-level4 {
    padding-left: 5.3333333333vw !important;
  }
  .sp-gap-level5 {
    gap: 6.6666666667vw !important;
  }
  .sp-m-level5 {
    margin: 6.6666666667vw !important;
  }
  .sp-p-level5 {
    padding: 6.6666666667vw !important;
  }
  .sp-mblock-level5 {
    margin-block: 6.6666666667vw !important;
  }
  .sp-pblock-level5 {
    padding-block: 6.6666666667vw !important;
  }
  .sp-minline-level5 {
    margin-inline: 6.6666666667vw !important;
  }
  .sp-pinline-level5 {
    padding-inline: 6.6666666667vw !important;
  }
  .sp-mt-level5 {
    margin-top: 6.6666666667vw !important;
  }
  .sp-pt-level5 {
    padding-top: 6.6666666667vw !important;
  }
  .sp-mb-level5 {
    margin-bottom: 6.6666666667vw !important;
  }
  .sp-pb-level5 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sp-mr-level5 {
    margin-right: 6.6666666667vw !important;
  }
  .sp-pr-level5 {
    padding-right: 6.6666666667vw !important;
  }
  .sp-ml-level5 {
    margin-left: 6.6666666667vw !important;
  }
  .sp-pl-level5 {
    padding-left: 6.6666666667vw !important;
  }
  .sp-gap-level6 {
    gap: 8vw !important;
  }
  .sp-m-level6 {
    margin: 8vw !important;
  }
  .sp-p-level6 {
    padding: 8vw !important;
  }
  .sp-mblock-level6 {
    margin-block: 8vw !important;
  }
  .sp-pblock-level6 {
    padding-block: 8vw !important;
  }
  .sp-minline-level6 {
    margin-inline: 8vw !important;
  }
  .sp-pinline-level6 {
    padding-inline: 8vw !important;
  }
  .sp-mt-level6 {
    margin-top: 8vw !important;
  }
  .sp-pt-level6 {
    padding-top: 8vw !important;
  }
  .sp-mb-level6 {
    margin-bottom: 8vw !important;
  }
  .sp-pb-level6 {
    padding-bottom: 8vw !important;
  }
  .sp-mr-level6 {
    margin-right: 8vw !important;
  }
  .sp-pr-level6 {
    padding-right: 8vw !important;
  }
  .sp-ml-level6 {
    margin-left: 8vw !important;
  }
  .sp-pl-level6 {
    padding-left: 8vw !important;
  }
  .sp-gap-level7 {
    gap: 9.3333333333vw !important;
  }
  .sp-m-level7 {
    margin: 9.3333333333vw !important;
  }
  .sp-p-level7 {
    padding: 9.3333333333vw !important;
  }
  .sp-mblock-level7 {
    margin-block: 9.3333333333vw !important;
  }
  .sp-pblock-level7 {
    padding-block: 9.3333333333vw !important;
  }
  .sp-minline-level7 {
    margin-inline: 9.3333333333vw !important;
  }
  .sp-pinline-level7 {
    padding-inline: 9.3333333333vw !important;
  }
  .sp-mt-level7 {
    margin-top: 9.3333333333vw !important;
  }
  .sp-pt-level7 {
    padding-top: 9.3333333333vw !important;
  }
  .sp-mb-level7 {
    margin-bottom: 9.3333333333vw !important;
  }
  .sp-pb-level7 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sp-mr-level7 {
    margin-right: 9.3333333333vw !important;
  }
  .sp-pr-level7 {
    padding-right: 9.3333333333vw !important;
  }
  .sp-ml-level7 {
    margin-left: 9.3333333333vw !important;
  }
  .sp-pl-level7 {
    padding-left: 9.3333333333vw !important;
  }
  .sp-gap-level8 {
    gap: 10.6666666667vw !important;
  }
  .sp-m-level8 {
    margin: 10.6666666667vw !important;
  }
  .sp-p-level8 {
    padding: 10.6666666667vw !important;
  }
  .sp-mblock-level8 {
    margin-block: 10.6666666667vw !important;
  }
  .sp-pblock-level8 {
    padding-block: 10.6666666667vw !important;
  }
  .sp-minline-level8 {
    margin-inline: 10.6666666667vw !important;
  }
  .sp-pinline-level8 {
    padding-inline: 10.6666666667vw !important;
  }
  .sp-mt-level8 {
    margin-top: 10.6666666667vw !important;
  }
  .sp-pt-level8 {
    padding-top: 10.6666666667vw !important;
  }
  .sp-mb-level8 {
    margin-bottom: 10.6666666667vw !important;
  }
  .sp-pb-level8 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sp-mr-level8 {
    margin-right: 10.6666666667vw !important;
  }
  .sp-pr-level8 {
    padding-right: 10.6666666667vw !important;
  }
  .sp-ml-level8 {
    margin-left: 10.6666666667vw !important;
  }
  .sp-pl-level8 {
    padding-left: 10.6666666667vw !important;
  }
  .sp-gap-level9 {
    gap: 12vw !important;
  }
  .sp-m-level9 {
    margin: 12vw !important;
  }
  .sp-p-level9 {
    padding: 12vw !important;
  }
  .sp-mblock-level9 {
    margin-block: 12vw !important;
  }
  .sp-pblock-level9 {
    padding-block: 12vw !important;
  }
  .sp-minline-level9 {
    margin-inline: 12vw !important;
  }
  .sp-pinline-level9 {
    padding-inline: 12vw !important;
  }
  .sp-mt-level9 {
    margin-top: 12vw !important;
  }
  .sp-pt-level9 {
    padding-top: 12vw !important;
  }
  .sp-mb-level9 {
    margin-bottom: 12vw !important;
  }
  .sp-pb-level9 {
    padding-bottom: 12vw !important;
  }
  .sp-mr-level9 {
    margin-right: 12vw !important;
  }
  .sp-pr-level9 {
    padding-right: 12vw !important;
  }
  .sp-ml-level9 {
    margin-left: 12vw !important;
  }
  .sp-pl-level9 {
    padding-left: 12vw !important;
  }
  .sp-gap-level10 {
    gap: 13.3333333333vw !important;
  }
  .sp-m-level10 {
    margin: 13.3333333333vw !important;
  }
  .sp-p-level10 {
    padding: 13.3333333333vw !important;
  }
  .sp-mblock-level10 {
    margin-block: 13.3333333333vw !important;
  }
  .sp-pblock-level10 {
    padding-block: 13.3333333333vw !important;
  }
  .sp-minline-level10 {
    margin-inline: 13.3333333333vw !important;
  }
  .sp-pinline-level10 {
    padding-inline: 13.3333333333vw !important;
  }
  .sp-mt-level10 {
    margin-top: 13.3333333333vw !important;
  }
  .sp-pt-level10 {
    padding-top: 13.3333333333vw !important;
  }
  .sp-mb-level10 {
    margin-bottom: 13.3333333333vw !important;
  }
  .sp-pb-level10 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sp-mr-level10 {
    margin-right: 13.3333333333vw !important;
  }
  .sp-pr-level10 {
    padding-right: 13.3333333333vw !important;
  }
  .sp-ml-level10 {
    margin-left: 13.3333333333vw !important;
  }
  .sp-pl-level10 {
    padding-left: 13.3333333333vw !important;
  }
  .sp-gap-level11 {
    gap: 14.6666666667vw !important;
  }
  .sp-m-level11 {
    margin: 14.6666666667vw !important;
  }
  .sp-p-level11 {
    padding: 14.6666666667vw !important;
  }
  .sp-mblock-level11 {
    margin-block: 14.6666666667vw !important;
  }
  .sp-pblock-level11 {
    padding-block: 14.6666666667vw !important;
  }
  .sp-minline-level11 {
    margin-inline: 14.6666666667vw !important;
  }
  .sp-pinline-level11 {
    padding-inline: 14.6666666667vw !important;
  }
  .sp-mt-level11 {
    margin-top: 14.6666666667vw !important;
  }
  .sp-pt-level11 {
    padding-top: 14.6666666667vw !important;
  }
  .sp-mb-level11 {
    margin-bottom: 14.6666666667vw !important;
  }
  .sp-pb-level11 {
    padding-bottom: 14.6666666667vw !important;
  }
  .sp-mr-level11 {
    margin-right: 14.6666666667vw !important;
  }
  .sp-pr-level11 {
    padding-right: 14.6666666667vw !important;
  }
  .sp-ml-level11 {
    margin-left: 14.6666666667vw !important;
  }
  .sp-pl-level11 {
    padding-left: 14.6666666667vw !important;
  }
  .sp-gap-level12 {
    gap: 16vw !important;
  }
  .sp-m-level12 {
    margin: 16vw !important;
  }
  .sp-p-level12 {
    padding: 16vw !important;
  }
  .sp-mblock-level12 {
    margin-block: 16vw !important;
  }
  .sp-pblock-level12 {
    padding-block: 16vw !important;
  }
  .sp-minline-level12 {
    margin-inline: 16vw !important;
  }
  .sp-pinline-level12 {
    padding-inline: 16vw !important;
  }
  .sp-mt-level12 {
    margin-top: 16vw !important;
  }
  .sp-pt-level12 {
    padding-top: 16vw !important;
  }
  .sp-mb-level12 {
    margin-bottom: 16vw !important;
  }
  .sp-pb-level12 {
    padding-bottom: 16vw !important;
  }
  .sp-mr-level12 {
    margin-right: 16vw !important;
  }
  .sp-pr-level12 {
    padding-right: 16vw !important;
  }
  .sp-ml-level12 {
    margin-left: 16vw !important;
  }
  .sp-pl-level12 {
    padding-left: 16vw !important;
  }
  .sp-gap-level13 {
    gap: 17.3333333333vw !important;
  }
  .sp-m-level13 {
    margin: 17.3333333333vw !important;
  }
  .sp-p-level13 {
    padding: 17.3333333333vw !important;
  }
  .sp-mblock-level13 {
    margin-block: 17.3333333333vw !important;
  }
  .sp-pblock-level13 {
    padding-block: 17.3333333333vw !important;
  }
  .sp-minline-level13 {
    margin-inline: 17.3333333333vw !important;
  }
  .sp-pinline-level13 {
    padding-inline: 17.3333333333vw !important;
  }
  .sp-mt-level13 {
    margin-top: 17.3333333333vw !important;
  }
  .sp-pt-level13 {
    padding-top: 17.3333333333vw !important;
  }
  .sp-mb-level13 {
    margin-bottom: 17.3333333333vw !important;
  }
  .sp-pb-level13 {
    padding-bottom: 17.3333333333vw !important;
  }
  .sp-mr-level13 {
    margin-right: 17.3333333333vw !important;
  }
  .sp-pr-level13 {
    padding-right: 17.3333333333vw !important;
  }
  .sp-ml-level13 {
    margin-left: 17.3333333333vw !important;
  }
  .sp-pl-level13 {
    padding-left: 17.3333333333vw !important;
  }
  .sp-gap-level14 {
    gap: 18.6666666667vw !important;
  }
  .sp-m-level14 {
    margin: 18.6666666667vw !important;
  }
  .sp-p-level14 {
    padding: 18.6666666667vw !important;
  }
  .sp-mblock-level14 {
    margin-block: 18.6666666667vw !important;
  }
  .sp-pblock-level14 {
    padding-block: 18.6666666667vw !important;
  }
  .sp-minline-level14 {
    margin-inline: 18.6666666667vw !important;
  }
  .sp-pinline-level14 {
    padding-inline: 18.6666666667vw !important;
  }
  .sp-mt-level14 {
    margin-top: 18.6666666667vw !important;
  }
  .sp-pt-level14 {
    padding-top: 18.6666666667vw !important;
  }
  .sp-mb-level14 {
    margin-bottom: 18.6666666667vw !important;
  }
  .sp-pb-level14 {
    padding-bottom: 18.6666666667vw !important;
  }
  .sp-mr-level14 {
    margin-right: 18.6666666667vw !important;
  }
  .sp-pr-level14 {
    padding-right: 18.6666666667vw !important;
  }
  .sp-ml-level14 {
    margin-left: 18.6666666667vw !important;
  }
  .sp-pl-level14 {
    padding-left: 18.6666666667vw !important;
  }
}