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

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

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

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, 100% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, 100% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

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

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

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

html {
  height: auto;
  overflow: auto;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: clip;
  margin: 0;
  background-color: #F4F4F4;
}

body::-webkit-scrollbar, #fixed-area::-webkit-scrollbar {
  display: none;
  width: 0.5em;
}
body::-webkit-scrollbar-track, #fixed-area::-webkit-scrollbar-track {
  box-shadow: #F4F4F4;
}
body::-webkit-scrollbar-thumb, #fixed-area::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}

.swiper_clm-kv::-webkit-scrollbar {
  display: none;
}

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

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

.breadcrumbs {
  margin-top: 60px;
  margin-bottom: 30px;
  overflow: auto;
}
.breadcrumbs p {
  display: -ms-flex;
  display: flex;
  align-items: center;
}
.breadcrumbs span {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}
.breadcrumbs i {
  font-size: 12px;
  color: #000000;
  display: inline-block;
}
@media (min-width: 480px) {
  .breadcrumbs i {
    font-size: 14px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .breadcrumbs i {
    font-size: 12px;
  }
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #000000;
}
@media (min-width: 480px) {
  .breadcrumbs a, .breadcrumbs span {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .breadcrumbs a, .breadcrumbs span {
    font-size: 15px;
  }
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs .current-item {
  width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width:640px) {
  .breadcrumbs {
    margin-top: 100px;
    margin-bottom: 0;
  }
}

.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: -ms-flex;
  display: flex;
}

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

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

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

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

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

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.12em;
}
@media (min-width: 480px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    font-size: 16px;
  }
}

.tw {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}

.en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}

.is-other .split {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  position: relative;
  right: 0;
  width: auto;
  align-items: center;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-other .split {
    margin-top: 80px;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split {
    margin-top: 50px;
    flex-wrap: wrap;
    width: 100%;
  }
}
.is-other .split-L .primary_btn, .is-other .split-R .primary_btn {
  margin-top: 60px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-other .split-L .primary_btn, .is-other .split-R .primary_btn {
    margin-top: 50px;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-L .primary_btn, .is-other .split-R .primary_btn {
    margin-top: 40px;
  }
}
.is-other .split-L .primary_btn .btn, .is-other .split-R .primary_btn .btn {
  padding: 0;
  justify-content: center;
}
.is-other .split-L {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .is-other .split-L {
    width: 100%;
    text-align: center;
  }
}
.is-other .split-L .article-clm_lists__item .date {
  text-align: center;
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9D9D9D;
  font-weight: 500;
}
@media (min-width: 480px) {
  .is-other .split-L .article-clm_lists__item .date {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-other .split-L .article-clm_lists__item .date {
    font-size: 12px;
  }
}
.is-other .split-L .article-clm_lists__item .title {
  display: inline-block;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.14em;
  line-height: 1.4;
  position: relative;
  margin-left: 20px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .is-other .split-L .article-clm_lists__item .title {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .is-other .split-L .article-clm_lists__item .title {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-L .article-clm_lists__item .title {
    margin-left: 0;
  }
}
.is-other .split-L .article-clm_lists__item .title::before {
  content: "｜";
  position: absolute;
  left: -22px;
  color: #9D9D9D;
}
@media only screen and (max-width:640px) {
  .is-other .split-L .article-clm_lists__item .title::before {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-R {
    width: 100%;
    border-left: 0;
    padding: 50px 6vw 0;
  }
}
.is-other .split-R .contact-lead {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .is-other .split-R .contact-lead {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-other .split-R .contact-lead {
    font-size: 16px;
  }
}
.is-other .split-reverse {
  display: -ms-flex;
  display: flex;
  margin-top: 0;
  margin-bottom: 90px;
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse {
    width: 100%;
    margin-bottom: 2px;
  }
}
.is-other .split-reverse .split-L {
  margin-left: -9.72%;
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse .split-L {
    margin-left: 0;
  }
}
.is-other .split-reverse .split-L img {
  width: 100%;
}
.is-other .split-reverse .split-R {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse .split-R {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse .split-R .sec_btn {
    display: inline-block;
  }
}
.is-other .split-reverse .split-R h2 {
  margin-bottom: 30px;
}
.is-other .split-reverse .split-R .en {
  font-size: 20px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 500;
  display: block;
  color: #000;
  text-align: left;
  padding-left: 0;
}
@media (min-width: 480px) {
  .is-other .split-reverse .split-R .en {
    font-size: 35px;
    font-size: calc(0.0225 * 100vw + 9.2px);
  }
}
@media (min-width: 1280px) {
  .is-other .split-reverse .split-R .en {
    font-size: 38px;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse .split-R .en {
    text-align: center;
  }
}
.is-other .split-reverse .split-R .tw {
  margin-top: 3px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  color: #9D9D9D;
}
@media (min-width: 480px) {
  .is-other .split-reverse .split-R .tw {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-other .split-reverse .split-R .tw {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-other .split-reverse .split-R .tw {
    margin-top: 1em;
  }
}
.is-other .split-reverse .split-R .text-content {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 500;
}
.is-other .split-reverse .split-R .text-content a {
  text-decoration: underline;
}
.is-other .split-reverse .split-R .text-content a:hover {
  opacity: 0.7;
}

.footer {
  padding: 0 30px 20px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .footer {
    margin-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .footer {
    flex-wrap: wrap;
    padding: 0 6vw 4vw;
    margin-top: 60px;
  }
}
.footer-copyright, .footer-text {
  width: 33.3333333333%;
}
@media only screen and (max-width:640px) {
  .footer-copyright, .footer-text {
    order: 2;
    width: 100%;
  }
}
.footer-copyright {
  font-size: 13px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 700;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 480px) {
  .footer-copyright {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .footer-copyright {
    font-size: 13px;
  }
}
.footer-sns {
  margin-top: 30px;
}
.footer-sns .is-sns_lists__item:not(:first-child) {
  margin-left: 38px;
}
@media only screen and (max-width:640px) {
  .footer-sns .is-sns_lists__item:not(:first-child) {
    margin-left: 10px;
  }
}
@media only screen and (max-width:640px) {
  .footer-sns {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}
.footer-sns .is-sns_lists {
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .footer-sns .is-sns_lists {
    justify-content: flex-start;
  }
}
.footer-text {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .footer-text {
    text-align: center;
  }
}
.footer-text .btn {
  font-size: 13px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 500;
  text-decoration: underline;
}
@media (min-width: 480px) {
  .footer-text .btn {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .footer-text .btn {
    font-size: 13px;
  }
}
.footer-text span {
  display: inline-block;
  margin: 0 20px;
}
.footer-text .is-sns_lists {
  display: inline-flex;
  padding-left: 1em;
}
@media only screen and (max-width:640px) {
  .footer-text .is-sns_lists {
    padding-left: 0;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.footer-text .is-sns_lists__item a {
  text-decoration: none;
}
.footer_ftr {
  justify-content: space-between;
  align-items: baseline;
  margin-top: 100px;
}
@media only screen and (max-width:640px) {
  .footer_ftr {
    flex-wrap: wrap;
    margin-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .footer_ftr p {
    text-align: center;
  }
}
.footer-go-top-top .triangle {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .footer-go-top-top {
    margin: 0 auto 60px;
    padding-right: 2px;
  }
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 20px 12px;
  border-color: transparent transparent #000000 transparent;
}

.header {
  position: relative;
  z-index: 1000;
}
.header_inner {
  width: 100%;
  padding: 0px 9px;
}
@media only screen and (max-width:640px) {
  .header_inner:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    margin-left: -30px;
    height: 57px;
    background-color: #f4f4f4;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .header_inner {
    padding: 24px;
  }
}
.header-L, .header-R {
  width: 40%;
}
.header-C {
  width: 20%;
}
@media only screen and (max-width:640px) {
  .header-C {
    width: 40%;
    position: fixed;
    right: 70px;
    top: 24px;
  }
}
.header-L .logo {
  width: 170px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .header-L .logo {
    width: 160px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .header-L .logo {
    width: 24vw;
  }
}
@media only screen and (max-width:640px) {
  .header-L .logo {
    width: 100px;
    top: 15px;
    position: fixed;
  }
}
.header-L .logo img {
  width: 100%;
}
@media only screen and (min-width:780px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
}
@media only screen and (max-width:640px) {
  body {
    text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.wrapper-1 {
  padding: 50px 9.72% 30px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .wrapper-1 {
    padding: 30px 60px;
  }
}
@media only screen and (max-width:640px) {
  .wrapper-1 {
    padding: 0 30px;
  }
}

.wrapper-2 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1160px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .wrapper-2 {
    width: 88%;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .wrapper-2 {
    width: 90%;
  }
}
.wrapper-3 {
  width: 84%;
  margin: 0 auto;
  position: relative;
  max-width: 1160px;
}
@media only screen and (max-width:640px) {
  .wrapper-3 {
    width: 90%;
  }
}

.wrapper-4 {
  width: 83%;
  margin: 0 auto;
  position: relative;
  max-width: 1146px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .wrapper-4 {
    width: 88%;
  }
}
@media only screen and (max-width:640px) {
  .wrapper-4 {
    width: 90%;
  }
}

.wrapper-5 {
  width: 50%;
  margin: 0 auto;
  position: relative;
  max-width: 720px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .wrapper-5 {
    width: 74%;
  }
}
@media only screen and (max-width:640px) {
  .wrapper-5 {
    width: 88%;
  }
}

.window_wrap {
  width: calc(100% - 11vw);
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width:780px) and (max-width:1366px) {
  .window_wrap {
    width: calc(100% - 80px);
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .window_wrap {
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width:640px) {
  .window_wrap {
    width: calc(100% - 16vw);
  }
}

.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: 14px;
  height: 7px;
  display: inline-block;
}
.icon-arrow-wh {
  background: url("../images/common/icon-arrow-r.svg") center/cover no-repeat;
}

.primary_btn {
  text-align: left;
  display: inline-block;
  position: relative;
}
.primary_btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: 1s;
}
.primary_btn .btn {
  transition: 0.5s;
  position: relative;
  min-width: 164px;
  display: inline-block;
  line-height: 1;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .primary_btn .btn {
    padding: 2vw 4vw;
  }
}
@media only screen and (max-width:640px) {
  .primary_btn .btn {
    min-width: auto;
    padding: 2vw 4vw 2vw 8vw;
  }
}
.primary_btn .btn .en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  text-align: left;
  line-height: 1;
  display: block;
}
.primary_btn .btn .tw {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: right;
  font-weight: 700;
  margin-right: 20px;
}
@media (min-width: 480px) {
  .primary_btn .btn .tw {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .primary_btn .btn .tw {
    font-size: 16px;
  }
}
.primary_btn .btn .arrow {
  width: 21px;
  margin-left: 75px;
}
.primary_btn .btn:hover {
  opacity: 0.6;
}

.secondary_btn .btn {
  display: -ms-flex;
  display: flex;
  align-items: center;
  width: fit-content;
}
@media only screen and (max-width:640px) {
  .secondary_btn .btn {
    width: auto;
    justify-content: center;
  }
}
.secondary_btn .btn .jp {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .secondary_btn .btn .jp {
    font-size: 18px;
    font-size: calc(0.0025 * 100vw + 14.8px);
  }
}
@media (min-width: 1280px) {
  .secondary_btn .btn .jp {
    font-size: 18px;
  }
}
.secondary_btn .btn .angle {
  display: inline-block;
  margin-left: 24px;
  background-color: #fff;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  height: 260vw;
  display: block;
  overflow: scroll;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .secondary_btn .btn .angle {
    margin-left: 16px;
  }
}
@media only screen and (max-width:640px) {
  .secondary_btn .btn .angle {
    width: 50px;
    height: 50px;
    background-size: 40%;
    margin-left: 14px;
  }
}
@media only screen and (max-width:640px) {
  .secondary_btn .btn .angle img {
    width: 40%;
  }
}
.sec_btn {
  margin-top: 30px;
}
.sec_btn .btn {
  display: block;
  width: 160px;
  height: 48px;
  line-height: 44px;
  background-color: #000;
  color: #fff;
  position: relative;
  text-align: center;
}
.sec_btn .btn .tw {
  font-weight: 400;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 13px !important;
  margin-top: 0 !important;
  color: #fff !important;
}
.sec_btn .btn:after {
  content: "\f105";
  position: relative;
  left: 20px;
  top: 1px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}

.is-kv-front .more-btn_text-content {
  display: flex;
  align-items: center;
  width: 180px;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid;
}
@media only screen and (max-width:640px) {
  .is-kv-front .more-btn_text-content {
    margin: 16px auto 0;
  }
}
.is-kv-front .more-btn_text-content .text {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 500;
}
.is-kv-front .swiper_clm-kv .text-content-foot .more-btn_text-content {
  color: #fff;
  width: auto;
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-bottom: 0;
}
@media only screen and (max-width:640px) {
  .is-kv-front .swiper_clm-kv .text-content-foot .more-btn_text-content {
    display: none;
  }
}
.is-kv-front .swiper_clm-kv .text-content-foot .more-btn_text-content p {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}
.is-kv-front .swiper_clm-kv .text-content-foot .more-btn_text-content .arrow {
  padding-left: 10px;
}

a {
  transition: 0.5s;
}
a:hover, a:focus {
  opacity: 0.7;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 30000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
}
@media only screen and (max-width:640px) {
  .cursor {
    display: none;
  }
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  background: rgba(252, 185, 0, 0.5);
}

.menu-wh {
  background: rgba(205, 114, 113, 0.5);
}

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

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

.is-tags_lists {
  font-size: 0;
}
.is-tags_lists__item {
  margin: 20px 20px 0 0;
  display: inline-block;
  line-height: 1;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-tags_lists__item {
    margin: 10px 10px 0 0;
  }
}
@media only screen and (max-width:640px) {
  .is-tags_lists__item {
    margin: 6px 6px 0 0;
  }
}
.is-tags_lists__item a {
  display: block;
  color: #fff;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 23px;
  padding: 15px 26px;
  line-height: 1;
  font-size: 14px;
  font-style: normal;
}
@media (min-width: 480px) {
  .is-tags_lists__item a {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-tags_lists__item a {
    font-size: 16px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-tags_lists__item a {
    padding: 11px 19px;
  }
}
@media only screen and (max-width:640px) {
  .is-tags_lists__item a {
    padding: 8px 12px;
  }
}
.is-tags_lists__item a:hover {
  color: #707070;
  background: #fff;
  opacity: 1;
}

.primary_title {
  margin-bottom: 60px;
  position: relative;
  line-height: 1.5;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .primary_title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width:640px) {
  .primary_title {
    margin-bottom: 40px;
  }
}
.primary_title .en,
.primary_title .tw {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  position: relative;
  text-align: center;
}
.primary_title .en {
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #9D9D9D;
  padding-left: 1em;
  font-weight: 500;
}
@media (min-width: 480px) {
  .primary_title .en {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .primary_title .en {
    font-size: 16px;
  }
}
.primary_title .tw {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
@media (min-width: 480px) {
  .primary_title .tw {
    font-size: 28px;
    font-size: calc(0.01 * 100vw + 15.2px);
  }
}
@media (min-width: 1280px) {
  .primary_title .tw {
    font-size: 28px;
  }
}
.primary_title-contact .en {
  font-size: 28px;
  color: #000;
  padding-left: 0;
}
@media (min-width: 480px) {
  .primary_title-contact .en {
    font-size: 32px;
    font-size: calc(0.005 * 100vw + 25.6px);
  }
}
@media (min-width: 1280px) {
  .primary_title-contact .en {
    font-size: 32px;
  }
}
.primary_title-contact .tw {
  font-size: 15px;
  color: #9D9D9D;
  margin-top: 5px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .primary_title-contact .tw {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .primary_title-contact .tw {
    font-size: 16px;
  }
}
.primary_title-lower {
  margin-bottom: 0;
  position: relative;
}
.primary_title-lower::before {
  content: "";
  width: 492px;
  height: 514px;
  background: radial-gradient(#fff 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 75%);
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width:640px) {
  .primary_title-lower::before {
    width: 90vw;
    height: 90vw;
    top: 0;
    background: radial-gradient(#fff 0%, rgba(255, 255, 255, 0.75) 40%, rgba(255, 255, 255, 0) 65%);
  }
}
.primary_title-lower::before {
  top: -50%;
}
.primary_title-lower .tw {
  margin-bottom: 14px;
  color: #000000;
}
.primary_title-lower .en {
  margin-bottom: 0;
  font-weight: 500;
}
.primary_title-wh .en,
.primary_title-wh .jp,
.primary_title-wh .jp-en_text {
  color: #fff;
}
.primary_title .circle {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  width: 278px;
  height: 278px;
  margin-top: 20vh;
  position: relative;
  line-height: 290px;
  display: inline-block;
  transition: 1s;
}
@media only screen and (max-width:640px) {
  .primary_title .circle {
    width: 180px;
    height: 180px;
    line-height: 180px;
    margin-top: 0;
  }
}
.primary_title .circle .tw {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
}
.primary_title .circle:hover {
  -webkit-transform: scale(0.5);
  transform: scale(0.63);
}

.secondary_title {
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-top: 16px;
  padding: 5px 16px;
  background-color: #000;
  color: #fff;
}
@media (min-width: 480px) {
  .secondary_title {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .secondary_title {
    font-size: 12px;
  }
}
.secondary_title-visual {
  background-color: #000;
}
.secondary_title-space {
  background-color: #ac975e;
}
.secondary_title-event {
  background-color: #8e6391;
}
.is-about .primary_title {
  line-height: 1;
}
.is-about .primary_title h2 {
  display: inline-block;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  line-height: 1;
  padding: 0.416em 0.2667em;
  background-color: #000;
  font-size: 28px;
}
@media (min-width: 480px) {
  .is-about .primary_title h2 {
    font-size: 60px;
    font-size: calc(0.04 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .is-about .primary_title h2 {
    font-size: 60px;
  }
}
.is-about_why h3 {
  font-family: "kiro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .is-about_why h3 {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-about_why h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_why h3 {
    text-align: center;
  }
}
.is-about_why .en {
  font-family: "kiro", sans-serif;
  font-weight: 700;
  text-transform: none;
}
.is-about_why .tw {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-left: 15px;
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-about_why .tw {
    font-size: 32px;
    font-size: calc(0.02 * 100vw + 6.4px);
  }
}
@media (min-width: 1280px) {
  .is-about_why .tw {
    font-size: 32px;
  }
}
.is-about_what .primary_title {
  text-align: center;
  font-family: "kiro", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
@media (min-width: 480px) {
  .is-about_what .primary_title {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-about_what .primary_title {
    font-size: 32px;
  }
}
.is-about_what .primary_title .tw {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-left: 30px;
  font-weight: 700;
}
@media only screen and (max-width:640px) {
  .is-about_what .primary_title .tw {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) and (min-width: 480px) {
  .is-about_what .primary_title .tw {
    font-size: 32px;
    font-size: calc(0.0175 * 100vw + 9.6px);
  }
}
@media only screen and (max-width:640px) and (min-width: 1280px) {
  .is-about_what .primary_title .tw {
    font-size: 32px;
  }
}
.is-about_what ul {
  width: auto;
}
@media only screen and (max-width:640px) {
  .is-about_what ul {
    text-align: left;
  }
}
.is-about_what .article-works-tag_lists li a {
  font-size: 14px;
}
@media (min-width: 480px) {
  .is-about_what .article-works-tag_lists li a {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-about_what .article-works-tag_lists li a {
    font-size: 16px;
  }
}
.is-about_what .c-services__wrap {
  text-align: center;
}
.is-about_what .c-services__title {
  font-size: 16px;
  padding-left: 0;
}
@media (min-width: 480px) {
  .is-about_what .c-services__title {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-about_what .c-services__title {
    font-size: 16px;
  }
}
.is-about_what .c-services__title::before {
  position: relative;
}
.is-about_what .c-services__item .lead {
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-about_what .c-services__item .lead {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-about_what .c-services__item .lead {
    font-size: 16px;
  }
}

.is-works-other .title {
  text-align: left;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-top: 5px;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-works-other .title {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-works-other .title {
    font-size: 12px;
  }
}

.ac_lists .acMenu {
  position: relative;
}
.ac_lists .acMenu dt {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding: 9px 34px 9px 16px;
  line-height: 1;
  border-radius: 4px;
}
@media (min-width: 480px) {
  .ac_lists .acMenu dt {
    font-size: 14px;
    font-size: calc(0.0025 * 100vw + 10.8px);
  }
}
@media (min-width: 1280px) {
  .ac_lists .acMenu dt {
    font-size: 14px;
  }
}
.ac_lists .acMenu dt:hover {
  cursor: pointer;
}
.ac_lists .acMenu dt::before {
  content: "\f107";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 7px;
  color: #707070;
  transform: translate(-50%, -50%);
}
.ac_lists .acMenu dt.active {
  outline: 1px solid red;
}
.ac_lists .acMenu dt.active::before {
  content: "\f106";
}
.ac_lists .acMenu dd {
  width: 150%;
  display: none;
}
.ac_lists .acMenu dd a {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: block;
  text-align: center;
}
@media (min-width: 480px) {
  .ac_lists .acMenu dd a {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .ac_lists .acMenu dd a {
    font-size: 13px;
  }
}

.article-clm .no-article {
  text-align: center;
  font-weight: 700;
  margin: 80px 0 60px;
}
@media only screen and (max-width:640px) {
  .article-clm .no-article {
    margin-bottom: 30px;
  }
}
.article-clm .no-article-wh {
  color: #fff;
}
.article-clm_lists__item {
  position: relative;
  transition: 0.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 {
  display: -ms-flex;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.article-clm_lists-2 .clm_item {
  width: calc((100% - 60px) / 2);
  margin: 0 60px 60px 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .article-clm_lists-2 .clm_item {
    width: calc((100% - 40px) / 2);
    margin: 0 40px 50px 0;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .article-clm_lists-2 .clm_item {
    width: calc((100% - 30px) / 2);
    margin: 0 30px 40px 0;
  }
}
@media only screen and (max-width:640px) {
  .article-clm_lists-2 .clm_item {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.article-clm_lists-2 .clm_item:nth-of-type(2n) {
  margin-right: 0 !important;
}
.article-clm_lists-3 {
  display: -ms-flex;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .article-clm_lists-3 {
    display: block;
  }
}
.article-clm_lists-3 .clm_item {
  width: calc((100% - 120px) / 3);
  margin: 0 15px 15px 0;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .article-clm_lists-3 .clm_item {
    width: 50%;
  }
}
@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item {
    width: 100%;
  }
}
.article-clm_lists-4 {
  display: -ms-flex;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width:640px) {
  .article-clm_lists-4 {
    justify-content: space-between;
  }
}
.article-clm_lists-4 .clm_item {
  width: calc((100% - 90px) / 4);
  margin: 0 30px 0 0;
}
.article-clm_lists-4 .clm_item-archives {
  width: calc((100% - 64px) / 4);
  margin: 0 16px 16px 0;
}
@media only screen and (max-width:640px) {
  .article-clm_lists-4 .clm_item {
    width: calc((100% - 8px) / 2);
    margin: 0 0 8px 0 !important;
  }
}
@media only screen and (max-width:640px) {
  .article-clm_lists-4 .clm_item:nth-of-type(3n) {
    margin-right: 8%;
  }
}
@media only screen and (max-width:640px) {
  .article-clm_lists-4 .clm_item:nth-of-type(2n) {
    margin-right: 0 !important;
  }
}

.is-language_lists {
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width:640px) {
  .is-language_lists {
    align-items: flex-start;
  }
}
.is-language_lists__item {
  text-align: center;
  margin: 0 5px;
}
.is-language_lists__item .btn {
  color: #9D9D9D;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 12px !important;
  display: block;
  position: relative;
  border-bottom: 1px solid #9D9D9D;
  transition: 1s;
}
.is-language_lists__item .btn:hover {
  color: #000;
  border-bottom: 0;
}
.is-language_lists__item.current .btn {
  font-size: 20px;
  color: #000000;
  border-bottom: 0;
}
@media (min-width: 480px) {
  .is-language_lists__item.current .btn {
    font-size: 20px;
    font-size: calc(0 * 100vw + 20px);
  }
}
@media (min-width: 1280px) {
  .is-language_lists__item.current .btn {
    font-size: 20px;
  }
}

.modal {
  width: 100%;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55000;
}
.modal_bg {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 50000;
}
.modal .modal_content {
  width: calc(100% - 120px);
  height: calc(100% - 120px);
  background-color: #fff;
  padding: 120px;
  max-width: 1440px;
  max-height: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50000;
  overflow: scroll;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .modal .modal_content {
    padding: 8vw;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .modal .modal_content {
    width: calc(100% - 10vw);
    height: calc(100% - 10vw);
    padding: 8vw 6vw;
  }
}
@media only screen and (max-width:640px) {
  .modal .modal_content {
    width: calc(100% - 10vw);
    height: calc(100% - 10vw);
    display: block;
    padding: 18px 5vw;
    overflow-x: hidden;
  }
}
.modal .modal_content .sec-slide {
  padding: 0;
}
.modal .modal_content .sec-slide img {
  width: 100%;
}
.modal .modal_content_head {
  display: -ms-flex;
  display: flex;
}
@media only screen and (max-width:640px) {
  .modal .modal_content_head {
    flex-direction: column;
  }
}
.modal .modal_content_head-L {
  width: 40%;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .modal .modal_content_head-L {
    width: 30%;
  }
}
@media only screen and (max-width:640px) {
  .modal .modal_content_head-L {
    width: 100%;
  }
}
.modal .modal_content_head-L img {
  width: 100%;
}
.modal .modal_content_head-R {
  width: 60%;
  padding-left: 80px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .modal .modal_content_head-R {
    width: 70%;
    padding-left: 5vw;
  }
}
@media only screen and (max-width:640px) {
  .modal .modal_content_head-R {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
}
.modal .modal_content_head-R-head {
  align-items: flex-end;
  justify-content: space-between;
}
.modal .modal_content_head-R-name .jp {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 480px) {
  .modal .modal_content_head-R-name .jp {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .modal .modal_content_head-R-name .jp {
    font-size: 32px;
  }
}
.modal .modal_content_head-R-name .en {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "kiro", sans-serif;
  font-weight: 700;
  font-weight: 700;
  letter-spacing: 0.19em;
  color: #C6C6C6;
  line-height: 1;
}
@media (min-width: 480px) {
  .modal .modal_content_head-R-name .en {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .modal .modal_content_head-R-name .en {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .modal .modal_content_head-R-name .en {
    margin-top: 14px;
  }
}
.modal .modal_content_head-R-introduction {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D0D0D0;
  font-size: 15px;
  line-height: 1.77;
}
@media (min-width: 480px) {
  .modal .modal_content_head-R-introduction {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .modal .modal_content_head-R-introduction {
    font-size: 18px;
  }
}
.modal .js-modal-close-btn {
  width: 60px;
  padding: 20px;
  border-radius: 50%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  background: #fff;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 60000;
}
@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: 2vw;
    right: 2vw;
  }
}

.is-sns_lists__item {
  width: 24px;
  height: 24px;
}
.is-sns_lists__item:not(:first-child) {
  margin-left: 10px;
}
.is-sns_lists__item .btn {
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.is-sns_lists__item .fa-envelope,
.is-sns_lists__item .fa-facebook-f,
.is-sns_lists__item .fa-twitter,
.is-sns_lists__item .fa-instagram,
.is-sns_lists__item .fa-line {
  display: inline-block;
  font-size: 20px;
}
@media (min-width: 480px) {
  .is-sns_lists__item .fa-envelope,
  .is-sns_lists__item .fa-facebook-f,
  .is-sns_lists__item .fa-twitter,
  .is-sns_lists__item .fa-instagram,
  .is-sns_lists__item .fa-line {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-sns_lists__item .fa-envelope,
  .is-sns_lists__item .fa-facebook-f,
  .is-sns_lists__item .fa-twitter,
  .is-sns_lists__item .fa-instagram,
  .is-sns_lists__item .fa-line {
    font-size: 24px;
  }
}
.test {
  list-style-type: disc;
}

.table_title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 40px;
}
@media (min-width: 480px) {
  .table_title {
    font-size: 22px;
    font-size: calc(0.0025 * 100vw + 18.8px);
  }
}
@media (min-width: 1280px) {
  .table_title {
    font-size: 22px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .table_title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_title {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:640px) {
  .table_title {
    margin-top: 50px;
    margin-bottom: 16px;
  }
}
.table_title.table-mt {
  margin-top: 80px;
}
@media only screen and (max-width:640px) {
  .table_title.table-mt {
    margin-top: 50px;
  }
}

.table_clm-1 {
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 56px 100px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-1 {
    padding: 3vw 6vw;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-1 {
    border-radius: 24px;
    padding: 2vw 4vw;
  }
}
.table_clm-1_lists__item {
  display: -ms-flex;
  display: flex;
  padding: 1.6em 0;
}
@media only screen and (max-width:640px) {
  .table_clm-1_lists__item {
    padding: 1.2em 0;
  }
}
.table_clm-1_lists__item:not(:first-child) {
  position: relative;
  border-top: 1px solid #C6C6C6;
}
.table_clm-1_lists__item dt,
.table_clm-1_lists__item dd,
.table_clm-1_lists__item dd span {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (min-width: 480px) {
  .table_clm-1_lists__item dt,
  .table_clm-1_lists__item dd,
  .table_clm-1_lists__item dd span {
    font-size: 20px;
    font-size: calc(0.00625 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .table_clm-1_lists__item dt,
  .table_clm-1_lists__item dd,
  .table_clm-1_lists__item dd span {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-1_lists__item dt,
  .table_clm-1_lists__item dd,
  .table_clm-1_lists__item dd span {
    line-height: 1.5;
  }
}
.table_clm-1_lists__item dt {
  font-weight: 700;
  color: #9D9D9D;
  width: 18%;
  max-width: 180px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-1_lists__item dt {
    width: 20%;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-1_lists__item dt {
    width: 28%;
  }
}
.table_clm-1_lists__item dd {
  width: 82%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-1_lists__item dd {
    width: 80%;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-1_lists__item dd {
    width: 72%;
  }
}
.table_clm-1_lists__item dd span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.table_clm-2 {
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 56px 100px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-2 {
    padding: 3vw 6vw;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2 {
    border-radius: 24px;
    padding: 2vw 4vw;
  }
}
.table_clm-2_lists__item {
  display: -ms-flex;
  display: flex;
  padding: 1.6em 0;
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item {
    padding: 1.2em 0;
  }
}
.table_clm-2_lists__item:not(:first-child) {
  position: relative;
  border-top: 1px solid #C6C6C6;
}
.table_clm-2_lists__item dt,
.table_clm-2_lists__item dt span,
.table_clm-2_lists__item dd {
  font-size: 15px;
  vertical-align: middle;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dt,
  .table_clm-2_lists__item dt span,
  .table_clm-2_lists__item dd {
    font-size: 20px;
    font-size: calc(0.00625 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dt,
  .table_clm-2_lists__item dt span,
  .table_clm-2_lists__item dd {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item dt,
  .table_clm-2_lists__item dt span,
  .table_clm-2_lists__item dd {
    line-height: 1.5;
  }
}
.table_clm-2_lists__item dt {
  width: 32%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .table_clm-2_lists__item dt {
    width: 40%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-2_lists__item dt {
    width: 50%;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item dt {
    width: 60%;
  }
}
.table_clm-2_lists__item dt span {
  font-size: 14px;
  display: block;
  font-weight: 700;
  background-color: #9D9D9D;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  padding: 0.3em;
  width: 70%;
  max-width: 220px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dt span {
    font-size: 19px;
    font-size: calc(0.00625 * 100vw + 11px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dt span {
    font-size: 19px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-2_lists__item dt span {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item dt span {
    width: 86%;
    padding: 0.4em;
  }
}
.table_clm-2_lists__item dd {
  width: 70%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .table_clm-2_lists__item dd {
    width: 60%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .table_clm-2_lists__item dd {
    width: 50%;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item dd {
    width: 40%;
  }
}
.table_clm-2_lists__item dd strong {
  color: #BEB19F;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  display: inline-block;
  margin-left: 6px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dd strong {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dd strong {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-2_lists__item dd strong {
    display: block;
    margin-left: 0;
  }
}
.table_clm-2_lists__item dd small {
  display: block;
}
.table_clm-2_lists__item dd a {
  text-decoration: underline;
  word-break: break-all;
  color: #A92017;
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dd a {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dd a {
    font-size: 15px;
  }
}
.table_clm-2_lists__item dd i {
  color: #A92017;
}
.table_clm-2_lists__item dd ul {
  padding-left: 20px;
}
.table_clm-2_lists__item dd ul li {
  list-style: disc;
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dd ul li {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dd ul li {
    font-size: 15px;
  }
}
.table_clm-2_lists__item dd ol li {
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dd ol li {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dd ol li {
    font-size: 15px;
  }
}
.table_clm-2_lists__item dd table {
  width: 100%;
}
.table_clm-2_lists__item dd .postscript {
  font-size: 13px;
}
@media (min-width: 480px) {
  .table_clm-2_lists__item dd .postscript {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .table_clm-2_lists__item dd .postscript {
    font-size: 13px;
  }
}

.table_clm-3 {
  width: 100%;
  border-collapse: collapse;
}
.table_clm-3 tr th, .table_clm-3 tr td {
  font-size: 13px;
  vertical-align: middle;
  padding: 0.9em 1.8em;
  text-align: left;
  border: 1px solid #C8CFCF;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .table_clm-3 tr th, .table_clm-3 tr td {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr th, .table_clm-3 tr td {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .table_clm-3 tr th, .table_clm-3 tr td {
    padding: 0.5em;
    line-height: 1.5;
  }
}
.table_clm-3 tr th {
  width: 36%;
  font-weight: 700;
  text-align: center;
}
.table_clm-3 tr th span {
  font-size: 12px;
  display: block;
  margin-top: 8px;
  line-height: 1.8;
  font-weight: 400;
}
@media (min-width: 480px) {
  .table_clm-3 tr th span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr th span {
    font-size: 12px;
  }
}
.table_clm-3 tr td {
  width: 16%;
  text-align: center;
}
.table_clm-3 tr td.bold {
  font-weight: 700;
}
.table_clm-3 tr td small {
  display: block;
  font-size: 11px;
}
@media (min-width: 480px) {
  .table_clm-3 tr td small {
    font-size: 13px;
    font-size: calc(0.0025 * 100vw + 9.8px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td small {
    font-size: 13px;
  }
}
.table_clm-3 tr td a {
  text-decoration: underline;
  word-break: break-all;
  color: #A92017;
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-3 tr td a {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td a {
    font-size: 15px;
  }
}
.table_clm-3 tr td i {
  color: #A92017;
}
.table_clm-3 tr td strong {
  font-weight: 600;
  font-size: 15px;
  display: block;
}
@media (min-width: 480px) {
  .table_clm-3 tr td strong {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td strong {
    font-size: 15px;
  }
}
.table_clm-3 tr td ul {
  padding-left: 20px;
}
.table_clm-3 tr td ul li {
  list-style: disc;
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-3 tr td ul li {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td ul li {
    font-size: 15px;
  }
}
.table_clm-3 tr td ol li {
  font-size: 15px;
}
@media (min-width: 480px) {
  .table_clm-3 tr td ol li {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td ol li {
    font-size: 15px;
  }
}
.table_clm-3 tr td table {
  width: 100%;
}
.table_clm-3 tr td .postscript {
  font-size: 13px;
}
@media (min-width: 480px) {
  .table_clm-3 tr td .postscript {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .table_clm-3 tr td .postscript {
    font-size: 13px;
  }
}

.is-contact-notice .text {
  font-size: 15px;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
  line-height: 1.77;
}
@media (min-width: 480px) {
  .is-contact-notice .text {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-contact-notice .text {
    font-size: 16px;
  }
}
.is-contact-notice .text .tel {
  font-weight: 700;
  color: #BEB19F;
  text-decoration: underline;
}

.is-form-content .seconday-title {
  margin-bottom: 40px;
}
@media only screen and (max-width:640px) {
  .is-form-content .seconday-title {
    margin-bottom: 24px;
  }
}

.is-thanks p {
  margin-bottom: 60px;
  font-size: 18px;
}
@media only screen and (max-width:640px) {
  .is-thanks p {
    font-size: 14px;
  }
}

.is-contact {
  z-index: 1;
  margin-bottom: 100px;
}
@media only screen and (max-width:640px) {
  .is-contact .conv_flex {
    display: block;
  }
}
.is-contact .conv .conv_item-tel {
  margin-right: 20px;
}
@media only screen and (max-width:640px) {
  .is-contact .conv .conv_item-tel ul li {
    width: calc(50% - 5px);
  }
}
.is-contact .contact_wrap__sec {
  margin-top: 160px;
}
@media only screen and (max-width:640px) {
  .is-contact .contact_wrap__sec {
    margin-top: 60px;
  }
}
.is-contact .contact_wrap__sec .contact-table {
  width: 100%;
}
.is-contact .contact_wrap__sec .contact-table tr:last-child td:last-child {
  margin-bottom: 0;
}
.is-contact .contact_wrap__sec .contact-table tr td {
  display: block;
  margin-bottom: 8px;
}
@media only screen and (max-width:640px) {
  .is-contact .contact_wrap__sec .contact-table tr td {
    margin-bottom: 8px;
  }
}
.is-contact .contact_wrap__sec .contact-table tr td:last-child {
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-contact .contact_wrap__sec .contact-table tr td:last-child {
    margin-bottom: 24px;
  }
}
.is-contact .contact_wrap__sec .contact-table tr td p {
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-contact .contact_wrap__sec .contact-table tr td p {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-contact .contact_wrap__sec .contact-table tr td p {
    font-size: 15px;
  }
}
.is-contact .contact_wrap__sec .contact-table tr td sup {
  font-size: 10px;
  color: #9D9D9D;
  display: inline-block;
  margin: 0 0 0 4px;
}
@media (min-width: 480px) {
  .is-contact .contact_wrap__sec .contact-table tr td sup {
    font-size: 10px;
    font-size: calc(0 * 100vw + 10px);
  }
}
@media (min-width: 1280px) {
  .is-contact .contact_wrap__sec .contact-table tr td sup {
    font-size: 10px;
  }
}
.is-contact .contact_wrap__sec .contact-table tr td .must {
  font-weight: 700;
  background: #000000;
  font-size: 11px;
  color: #fff;
  padding: 2px 8px;
  display: inline-block;
  float: right;
}
@media (min-width: 480px) {
  .is-contact .contact_wrap__sec .contact-table tr td .must {
    font-size: 13px;
    font-size: calc(0.0025 * 100vw + 9.8px);
  }
}
@media (min-width: 1280px) {
  .is-contact .contact_wrap__sec .contact-table tr td .must {
    font-size: 13px;
  }
}
@media only screen and (max-width:640px) {
  .is-contact .contact_wrap__sec .contact-table tr td .must {
    padding: 2px 9px;
  }
}
.is-contact .contact_wrap iframe {
  width: 100%;
  height: 600px;
}
.is-contact .contact_wrap .subscribe-image {
  display: none !important;
}

.wpcf7 {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.wpcf7 input[type=text]::placeholder, .wpcf7 input[type=tel]::placeholder, .wpcf7 input[type=email]::placeholder, .wpcf7 textarea::placeholder, .wpcf7 input[type=submit]::placeholder, .wpcf7 input[type=number]::placeholder, .wpcf7 .wpcf7-select::placeholder {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  color: #9F9F9F;
}
@media (min-width: 480px) {
  .wpcf7 input[type=text]::placeholder, .wpcf7 input[type=tel]::placeholder, .wpcf7 input[type=email]::placeholder, .wpcf7 textarea::placeholder, .wpcf7 input[type=submit]::placeholder, .wpcf7 input[type=number]::placeholder, .wpcf7 .wpcf7-select::placeholder {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 input[type=text]::placeholder, .wpcf7 input[type=tel]::placeholder, .wpcf7 input[type=email]::placeholder, .wpcf7 textarea::placeholder, .wpcf7 input[type=submit]::placeholder, .wpcf7 input[type=number]::placeholder, .wpcf7 .wpcf7-select::placeholder {
    font-size: 15px;
  }
}
@media only screen and (max-width:1366px) {
  .wpcf7 input[type=text], .wpcf7 input[type=tel], .wpcf7 input[type=email], .wpcf7 textarea, .wpcf7 input[type=submit], .wpcf7 input[type=number], .wpcf7 .wpcf7-select {
    appearance: none;
    border-radius: 0;
  }
}
.wpcf7 .wpcf7-select {
  -webkit-appearance: none;
}
.wpcf7 i {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  font-size: 15px;
  font-size: 1.5rem;
}
.wpcf7 .cm_jp {
  font-size: 15px;
  font-family: "yu-mincho-pr6n", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin: 0 2em 0 0;
}
@media (min-width: 480px) {
  .wpcf7 .cm_jp {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .cm_jp {
    font-size: 15px;
  }
}
.wpcf7 .cm_jp:last-child {
  margin: 0 1em 0 0;
}
.wpcf7 .con, .wpcf7 .mess, .wpcf7 .cm {
  width: 100%;
  padding: 18px 2em;
  border: 1px solid #C7C7C7;
  font-size: 15px;
  background: #fff;
  outline: none;
  color: #000000;
  cursor: pointer;
}
@media (min-width: 480px) {
  .wpcf7 .con, .wpcf7 .mess, .wpcf7 .cm {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .con, .wpcf7 .mess, .wpcf7 .cm {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .con, .wpcf7 .mess, .wpcf7 .cm {
    padding: 14px 1em;
  }
}
.wpcf7 .cm {
  width: 30%;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width:640px) {
  .wpcf7 .cm {
    width: 24%;
    padding: 22px 13px;
  }
}
.wpcf7 .select_lists {
  display: -ms-flex;
  display: flex;
  align-items: center;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .select_lists {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists {
    flex-wrap: wrap;
  }
}
.wpcf7 .select_lists__item {
  display: -ms-flex;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .select_lists__item {
    width: 50%;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists__item {
    width: 50%;
    margin-bottom: 10px;
  }
}
.wpcf7 .select_lists__item:not(:first-child) {
  padding-left: 50px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .wpcf7 .select_lists__item:not(:first-child) {
    padding-left: 36px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists__item:not(:first-child) {
    padding-left: 10px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .select_lists__item:nth-child(3n) {
    padding-left: 0;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists__item:nth-child(3n) {
    padding-left: 0;
  }
}
.wpcf7 .select_lists__item .title,
.wpcf7 .select_lists__item .unit {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}
.wpcf7 .select_lists__item .wpcf7-form-control-wrap {
  margin: 0 10px;
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists__item .wpcf7-form-control-wrap {
    margin: 0 6px;
  }
}
.wpcf7 .select_lists__item .wpcf7-form-control-wrap input {
  width: 70px;
  padding: 0.4em 1.2em;
  height: 57px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .select_lists__item .wpcf7-form-control-wrap input {
    width: 80px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .select_lists__item .wpcf7-form-control-wrap input {
    padding: 0.4em 0.8em;
    width: 60px;
    height: 50px;
  }
}
.wpcf7 .select_notice {
  font-size: 12px;
  font-weight: 700;
  color: #BEB19F;
}
@media (min-width: 480px) {
  .wpcf7 .select_notice {
    font-size: 14px;
    font-size: calc(0.0025 * 100vw + 10.8px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .select_notice {
    font-size: 14px;
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  text-align: center !important;
}
.wpcf7 select {
  width: 100%;
  padding: 22px 30px;
  border: 1px solid #363535;
  font-size: 15px;
  background: #292828;
  color: #b6b6b6;
  border-radius: 0;
  position: relative;
  cursor: pointer;
}
@media (min-width: 480px) {
  .wpcf7 select {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 select {
    font-size: 15px;
  }
}
.wpcf7 .wpcf7-radio {
  display: inline-block;
  margin-top: 18px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .wpcf7-radio {
    margin-top: 10px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .wpcf7-radio {
    margin-top: 10px;
  }
}
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
  margin-right: 20px;
}
.wpcf7 .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.wpcf7 input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.wpcf7 .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #C7C7C7;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}
.wpcf7 input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #383838; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}
.wpcf7 .radio .wpcf7-list-item, .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: 7px;
}
.wpcf7 .radio .wpcf7-list-item span, .wpcf7 .wpcf7-checkbox .wpcf7-list-item span {
  font-size: 15px;
}
@media (min-width: 480px) {
  .wpcf7 .radio .wpcf7-list-item span, .wpcf7 .wpcf7-checkbox .wpcf7-list-item span {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .radio .wpcf7-list-item span, .wpcf7 .wpcf7-checkbox .wpcf7-list-item span {
    font-size: 15px;
  }
}
.wpcf7 .radio .wpcf7-list-item:last-child, .wpcf7 .wpcf7-checkbox .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7 .checkbtn {
  font-size: 11px;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .wpcf7 .checkbtn {
    font-size: 11px;
    font-size: calc(0 * 100vw + 11px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .checkbtn {
    font-size: 11px;
  }
}
.wpcf7 .checkbtn a {
  font-size: 11px;
  font-family: "Noto Serif TC", serif;
  text-decoration: underline;
  color: #EF4C4C;
  font-weight: 500;
  display: inline-block;
  margin-left: 5px;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .wpcf7 .checkbtn a {
    font-size: 11px;
    font-size: calc(0 * 100vw + 11px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .checkbtn a {
    font-size: 11px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .checkbtn .wpcf7-list-item {
    margin: 0;
  }
}
.wpcf7 input[type=checkbox] {
  margin-right: 10px;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 700;
  color: #BEB19F;
  display: block;
  margin-top: 7px;
}
@media (min-width: 480px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 15px;
  }
}
.wpcf7 .mess {
  height: 200px;
}
.wpcf7 .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;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 #contactSub #submit {
  width: 100%;
  height: 82px;
  line-height: 56px;
  color: #fff;
  font-size: 18px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  background: #D95858;
  appearance: none;
  border: 1px solid #D95858;
  transition: 0.5s;
  cursor: pointer;
}
@media (min-width: 480px) {
  .wpcf7 #contactSub #submit {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 #contactSub #submit {
    font-size: 20px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 #contactSub #submit {
    height: 60px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 #contactSub #submit {
    height: 60px;
  }
}
.wpcf7 #contactSub #submit:disabled {
  cursor: not-allowed;
}
.wpcf7 #contactSub #submit:hover {
  background: transparent;
  color: #D95858;
}

.is-guidance .main_content {
  max-width: 1200px;
  margin: 100px auto 0;
}
.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: 15px;
  line-height: 2.2;
}
@media (min-width: 480px) {
  .is-guidance_hdr p {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_hdr p {
    font-size: 16px;
  }
}
.is-guidance .notice {
  margin-top: 28px;
}
.is-guidance .notice p {
  font-size: 14px;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .is-guidance .notice p {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .is-guidance .notice p {
    font-size: 15px;
  }
}
.is-guidance_body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .is-guidance_body h3 {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 15.2px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width:640px) {
  .is-guidance_body h3 {
    letter-spacing: 0;
  }
}
.is-guidance_body_sec {
  margin-bottom: 160px;
}
@media only screen and (max-width:640px) {
  .is-guidance_body_sec {
    margin-bottom: 80px;
  }
}
.is-guidance_body_lists__item {
  margin-bottom: 60px;
}
@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item {
    margin-bottom: 40px;
    margin-left: 1.5em;
  }
}
.is-guidance_body_lists__item:last-child {
  margin-bottom: 0;
}
.is-guidance_body_lists__item h4 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 480px) {
  .is-guidance_body_lists__item h4 {
    font-size: 24px;
    font-size: calc(0.0025 * 100vw + 18.8px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body_lists__item h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item h4 {
    margin-bottom: 20px;
    line-height: 1.38;
  }
}
.is-guidance_body_lists__item p {
  line-height: 2.25;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance_body_lists__item p {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body_lists__item p {
    font-size: 15px;
  }
}
.is-guidance_body_lists__item .h-txt {
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance_body_lists__item .h-txt {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body_lists__item .h-txt {
    font-size: 15px;
  }
}
.is-guidance_body_lists__item .b-txt {
  display: block;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance_body_lists__item .b-txt {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body_lists__item .b-txt {
    font-size: 15px;
  }
}
.is-guidance_body_lists__item .orderd {
  padding: 0 0 0 2em;
  margin-top: 2em;
}
@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .orderd {
    padding: 0 0 0 1em;
  }
}
.is-guidance_body_lists__item .orderd_item {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-bottom: 0.8em;
}
.is-guidance_body_lists__item .orderd_item::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
.is-guidance_body_lists__item .orderd .bullets {
  margin-top: 0;
  padding: 0 0 0 1em;
}
.is-guidance_body_lists__item .bullets {
  padding: 0 0 0 2em;
  margin-top: 2em;
}
.is-guidance_body_lists__item .bullets_item {
  position: relative;
  list-style: none;
  padding-left: 1.1em;
  margin-bottom: 0.2em;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance_body_lists__item .bullets_item {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-guidance_body_lists__item .bullets_item {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .bullets_item {
    padding-left: 0.9em;
    line-height: 1.4;
    margin-bottom: 4px;
  }
}
.is-guidance_body_lists__item .bullets_item::before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 0.9em;
  left: 0;
  content: "";
  background: #000000;
  border-radius: 50%;
}
@media only screen and (max-width:640px) {
  .is-guidance_body_lists__item .bullets_item::before {
    width: 4px;
    height: 4px;
    top: 9px;
  }
}
.is-guidance_body_lists__item .bullets .orderd {
  margin-top: 0;
  padding: 0 0 0 1em;
}
.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__ftr {
  padding: 48px;
  background: #FFF;
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .is-guidance__ftr {
    padding: 4vw 6vw;
    margin-top: 30px;
  }
}
.is-guidance__ftr h3 {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-guidance__ftr h3 {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-guidance__ftr h3 {
    font-size: 16px;
  }
}
.is-guidance__ftr .name {
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance__ftr .name {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-guidance__ftr .name {
    font-size: 16px;
  }
}
.is-guidance__ftr p {
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-guidance__ftr p {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-guidance__ftr p {
    font-size: 16px;
  }
}

@media only screen and (max-width:640px) {
  .is-transaction-law .is-guidance_body .table_col tr th, .is-transaction-law .is-guidance_body .table_col tr td {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .is-transaction-law .is-guidance_body .table_col tr th {
    padding-bottom: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-transaction-law .is-guidance_body .table_col tr td {
    padding-top: 0;
  }
}

.icon-lifeivent {
  width: 46px;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width:640px) {
  .icon-lifeivent {
    width: 45px;
  }
}

.icon-other {
  width: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-left: 4px;
}
.icon-other::after, .icon-other::before {
  width: 12px;
  height: 12px;
  border: 1px solid #FAFAFA;
  border-radius: 1px;
  background: none;
  position: absolute;
  content: "";
}
.icon-other::after {
  top: -4px;
  left: 0;
}
.icon-other::before {
  top: -8px;
  left: 4px;
}

.icon-line {
  width: 22px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-line-bk {
  background: url("../images/common/icon-line-bk.svg") 0 0/cover no-repeat;
}

.icon-line_music {
  width: 26px;
  height: 26px;
  background: url("../images/common/icon-linemusic_bk.svg") 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-play {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #fff;
  font-style: normal;
}
.icon-play::before, .icon-play::after {
  position: absolute;
  color: #fff;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.icon-play::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}

.icon-plus {
  width: 9px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: 50px;
}
@media only screen and (max-width:640px) {
  .icon-plus {
    right: 30px;
  }
}
.icon-plus::before {
  width: 1px;
  height: 9px;
  z-index: 1;
  content: "";
  background: #fff;
  position: absolute;
  top: -4px;
  left: 4px;
}

.icon-plus_circle {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  position: absolute;
  left: calc(50% - 42px);
  bottom: -42px;
}
@media only screen and (max-width:640px) {
  .icon-plus_circle {
    width: 54px;
    height: 54px;
    left: calc(50% - 27px);
    bottom: -27px;
  }
}
.icon-plus_circle::before, .icon-plus_circle::after {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-plus_circle::before {
  width: 1px;
  height: 22px;
}
.icon-plus_circle::after {
  width: 22px;
  height: 1px;
}

.is-nav {
  z-index: 1000;
}
.is-nav-ftr_wrapper {
  align-items: flex-end;
  padding: 0 10%;
  width: 100%;
  position: absolute;
  bottom: 30px;
}
.is-nav .pc-only {
  display: block;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-nav .pc-only {
    display: none !important;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .pc-only {
    display: none !important;
  }
}
.is-nav .sp-only {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-nav .sp-only {
    display: block !important;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .sp-only {
    display: block !important;
  }
}
.is-nav .is-main-nav_lists {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.is-nav .is-main-nav_lists__item {
  margin-left: 30px;
  position: relative;
}
.is-nav .is-main-nav_lists__item .btn {
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 400;
  transition: 0.6s;
  position: relative;
}
@media (min-width: 480px) {
  .is-nav .is-main-nav_lists__item .btn {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-nav .is-main-nav_lists__item .btn {
    font-size: 20px;
  }
}
.is-nav .is-main-nav_lists__item .btn:hover:before {
  opacity: 1;
  visibility: visible;
}
.is-nav .drawer-nav {
  width: 33.333%;
  max-width: 480px;
  background-image: url("../images/common/bg.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  background-color: #0056a8;
  background-blend-mode: lighten;
  z-index: -10;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-nav .drawer-nav {
    width: 60%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-nav .drawer-nav {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav {
    width: 100%;
    height: 100%;
  }
}
.is-nav .drawer-nav .drawer-menu {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-menu {
    width: 100%;
    border-left: 0;
  }
}
.is-nav .drawer-nav .drawer-menu_inner {
  height: 100%;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-menu_inner {
    flex-direction: column-reverse;
    height: auto;
  }
}
.is-nav .drawer-nav .drawer-nav_content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.is-nav .drawer-nav .drawer-nav_content .footer-sns i {
  color: #fff;
}
.is-nav .drawer-nav .drawer-nav_content .header-L {
  width: 58%;
}
.is-nav .drawer-nav .drawer-nav_content .header-R {
  width: 42%;
}
.is-nav .drawer-nav .drawer-nav_content .header-R .logo .btn {
  display: block;
}
.is-nav .drawer-nav .drawer-nav_content .header-R .logo .btn img {
  margin-left: 0;
}
.is-nav .drawer-nav .drawer-nav_content .is-nav-ftr {
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content .is-nav-ftr {
    padding-bottom: 30px;
  }
}
.is-nav .drawer-nav .drawer-nav_lists {
  margin: 27.86% auto 12.7% 15.88%;
}
.is-nav .drawer-nav .drawer-nav_lists__item {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
  text-align: left;
}
.is-nav .drawer-nav .drawer-nav_lists__item::before {
  content: none;
}
.is-nav .drawer-nav .drawer-nav_lists__item .btn {
  font-size: 24px;
  line-height: 1.2;
}
.is-nav .drawer-nav .drawer-nav_lists__item .btn .en {
  font-size: 24px;
  color: #fff;
  line-height: 1.33;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .btn .en {
    font-size: 30px;
    font-size: calc(0.0075 * 100vw + 20.4px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .btn .en {
    font-size: 30px;
  }
}
.is-nav .drawer-nav .drawer-nav_lists__item .btn .tw {
  font-size: 13px;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-left: 20px;
  line-height: 1.33;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .btn .tw {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .btn .tw {
    font-size: 15px;
  }
}
.is-nav .drawer-nav .drawer-nav_lists__item .sub li::before {
  content: "";
  width: 10px;
  height: 1px;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
  background-color: #fff;
}
.is-nav .drawer-nav .drawer-nav_lists__item .sub li .en {
  font-size: 14px;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .sub li .en {
    font-size: 20px;
    font-size: calc(0.0075 * 100vw + 10.4px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .sub li .en {
    font-size: 20px;
  }
}
.is-nav .drawer-nav .drawer-nav_lists__item .sub li .tw {
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-left: 20px;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .sub li .tw {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_lists__item .sub li .tw {
    font-size: 12px;
  }
}
.is-nav .drawer-nav .drawer-nav_lists__item .sub li a {
  line-height: 1.33;
}
.is-nav .drawer-nav .drawer-nav_lists__item .sub li:last-child {
  margin-bottom: 10px;
}
.is-nav .text {
  color: #fff;
  position: absolute;
  top: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 700;
  left: 50%;
  opacity: 1;
  transform: translateX(-50%);
}
@media only screen and (max-width:640px) {
  .is-nav .text {
    font-size: 12px;
  }
}
.is-nav .text2 {
  opacity: 0;
}
@media only screen and (max-width:640px) {
  .is-nav .text {
    top: 5px;
  }
}

.drawer-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
  display: none !important;
  background: none;
  z-index: 29000;
}

.drawer--right .drawer-nav {
  right: -100%;
  z-index: 1;
}
@media only screen and (max-width:640px) {
  .drawer--right .drawer-nav {
    right: -100%;
  }
}

.drawer--left .drawer-nav {
  left: -100%;
}
@media only screen and (max-width:640px) {
  .drawer--left .drawer-nav {
    left: -100%;
  }
}

.drawer-hamburger {
  width: 101px;
  height: 108px;
  top: 0px;
  right: 0px !important;
  padding: 0;
  z-index: 30002;
  appearance: none;
  background-color: #0056a8;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger {
    width: 58px;
    height: 57px;
  }
}
.drawer-hamburger-icon, .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  background: #fff;
  height: 1px;
}
.drawer-hamburger-icon {
  width: 50%;
  position: absolute;
  top: 60%;
  right: 50%;
  transform: translate(50%, -50%);
  margin: 0;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon {
    top: 60%;
  }
}
.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  left: auto;
  right: 0;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon::before {
    top: -5px;
  }
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon::after {
    top: 5px;
  }
}
.drawer-hamburger:hover {
  background-color: rgba(0, 87, 168, 0.1803921569) !important;
}

.drawer-open .drawer-hamburger-icon {
  background: none;
}
.drawer-open .drawer-hamburger-icon::before, .drawer-open .drawer-hamburger-icon::after {
  width: 100%;
  background: #fff;
}
.drawer-open .drawer-hamburger-icon::before {
  left: 0;
}
.drawer-open .drawer-hamburger-icon::after {
  left: 0;
}
.drawer-open .text {
  opacity: 0;
}
.drawer-open .text2 {
  display: block;
  color: #fff;
  position: absolute;
  top: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
@media only screen and (max-width:640px) {
  .drawer-open .text2 {
    font-size: 12px;
    top: 5px;
  }
}

.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;
}
.drawer-nav li.cm a, .drawer-nav li.cp a {
  text-indent: -1em;
  margin-left: 1em;
}
.drawer-nav li.nolink .link {
  opacity: 0.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;
  color: #fff;
}

.drawer-menu-item {
  padding: 5px 0;
}

.drawer--left.drawer-open .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0 !important;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.paginavi ul {
  font-size: 0;
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .paginavi ul {
    margin-top: 40px;
  }
}
.paginavi ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 0 0;
}
.paginavi ul li:last-child {
  margin-right: 0;
}
.paginavi ul li a {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  display: block;
  color: #C6C6C6;
  text-align: center;
  position: relative;
  transition: 0.5s;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 480px) {
  .paginavi ul li a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .paginavi ul li a {
    font-size: 16px;
  }
}
.paginavi ul li a:hover {
  color: #000000;
}
.paginavi ul li a:hover i::before {
  opacity: 0.7;
}
.paginavi ul li a i {
  color: #9D9D9D;
  display: block;
  font-size: 16px;
  padding-left: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
@media (min-width: 480px) {
  .paginavi ul li a i {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .paginavi ul li a i {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .paginavi ul li a i {
    transform: translate(-55%, -55%);
  }
}
.paginavi ul li a i::before {
  content: "";
  background-image: url("../images/common/chevron.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  vertical-align: middle;
}
@media only screen and (max-width:640px) {
  .paginavi ul li a i::before {
    width: 1rem;
  }
}
.paginavi ul li a.prev i::before {
  transform: scale(-1, 1);
}
.paginavi ul li .dots {
  line-height: 0;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  color: #C6C6C6;
}
@media (min-width: 480px) {
  .paginavi ul li .dots {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .paginavi ul li .dots {
    font-size: 16px;
  }
}
.paginavi ul .current {
  color: #000000;
  display: block;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  border-bottom: 1px solid #000000;
}
.paginavi ul .next, .paginavi ul .prev {
  position: relative;
  transition: 0.5s;
  margin: 0 10px;
}
@media only screen and (min-width:780px) {
  .paginavi ul .next:hover::before, .paginavi ul .prev:hover::before {
    color: #9D9D9D;
  }
}

.scroll_down {
  position: absolute;
  bottom: 0;
  left: 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: "futura-pt", sans-serif;
  font-weight: 400;
  display: block;
}
@media (min-width: 480px) {
  .scroll_down span {
    font-size: 13px;
    font-size: calc(0.0025 * 100vw + 9.8px);
  }
}
@media (min-width: 1280px) {
  .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;
}

.icon-search-container {
  width: 74px;
  height: 74px;
  position: absolute;
  top: 0;
  right: 0;
  transition: width 0.2s ease-out;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .icon-search-container {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width:640px) {
  .icon-search-container {
    width: 54px;
    height: 54px;
    top: auto;
    bottom: 0;
    right: 0;
  }
}
.icon-search-container .fa-search {
  width: 74px;
  height: 74px;
  color: #fff;
  line-height: 74px;
  font-size: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 480px) {
  .icon-search-container .fa-search {
    font-size: 24px;
    font-size: calc(0.01 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .icon-search-container .fa-search {
    font-size: 24px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .icon-search-container .fa-search {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width:640px) {
  .icon-search-container .fa-search {
    width: 54px;
    height: 54px;
    line-height: 54px;
    padding-left: 2px;
  }
}
.icon-search-container .fa-times-circle {
  opacity: 0;
  color: #aaa;
  font-size: 20px;
  position: absolute;
  top: 12px;
  right: 8px;
  transition: opacity 0.2s ease-out;
  cursor: pointer;
}
.icon-search-container .search-input {
  width: 0;
  cursor: default;
  position: absolute;
  left: 0;
  padding: 27px 40px 27px 78px;
  border: none;
  outline: none;
  font-size: 12px;
  color: #000000;
  line-height: 20px;
  background: none;
  transition: width 0.2s ease-out;
  top: 1px;
}
@media (min-width: 480px) {
  .icon-search-container .search-input {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .icon-search-container .search-input {
    font-size: 15px;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .icon-search-container .search-input {
    padding: 0 10px 0 60px;
    line-height: 74px;
  }
}
@media only screen and (max-width:640px) {
  .icon-search-container .search-input {
    padding: 0 10px 0 40px;
    line-height: 54px;
  }
}
.icon-search-container .search-input::placeholder {
  color: #fff;
}
.icon-search-container.active {
  width: 340px;
  background: #fff;
}
@media only screen and (max-width:640px) {
  .icon-search-container.active {
    width: 200px;
  }
}
.icon-search-container.active .fa-times-circle {
  opacity: 1;
}
.icon-search-container.active .search-input {
  width: 340px;
  background: #fff;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .icon-search-container.active .search-input {
    background: none;
  }
}
@media only screen and (max-width:640px) {
  .icon-search-container.active .search-input {
    width: 200px;
    background: none;
  }
}
.icon-search-container.active .fa-search {
  position: absolute;
  top: 1px;
  left: 1px;
  color: #000000;
  background: #fff;
  z-index: 2;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .icon-search-container.active .fa-search {
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width:640px) {
  .icon-search-container.active .fa-search {
    top: 0;
    left: 0;
  }
}

.ui-autocomplete {
  width: 200px;
  position: relative;
  background: #252525;
  box-shadow: 0 0 0 #fff, 0 0 0 #ccc, 0 0 1px #222;
  z-index: 100000 !important;
  text-align: left;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (max-width:640px) {
  .ui-autocomplete {
    width: 110px;
  }
}
.ui-autocomplete li {
  background: none;
  border: none;
  padding: 3px 12px;
}
.ui-autocomplete li a {
  text-decoration: none;
}
.ui-autocomplete li:hover {
  cursor: pointer;
  opacity: 0.7;
  border: none;
}

.is-single-hdr {
  margin: 0 0 60px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-single-hdr {
    margin: 0 0 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-hdr {
    margin: 0 0 30px;
  }
}
.is-single-hdr .thumb img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.is-single-body {
  position: relative;
  margin-bottom: 60px;
}
.is-single-body .date {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
  color: #70644F;
  letter-spacing: 0.1em;
}
@media (min-width: 480px) {
  .is-single-body .date {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .date {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .date {
    margin-bottom: 40px;
  }
}
.is-single-body .post-title {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 20px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #9D9D9D;
}
@media (min-width: 480px) {
  .is-single-body .post-title {
    font-size: 28px;
    font-size: calc(0.01 * 100vw + 15.2px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .post-title {
    font-size: 28px;
  }
}
.is-single-body .the_content {
  margin-top: 42px;
  margin-bottom: 100px;
}
.is-single-body .the_content h2, .is-single-body .the_content h3, .is-single-body .the_content h4, .is-single-body .the_content h5, .is-single-body .the_content h6, .is-single-body .the_content p, .is-single-body .the_content a, .is-single-body .the_content span, .is-single-body .the_content strong, .is-single-body .the_content i, .is-single-body .the_content li, .is-single-body .the_content em, .is-single-body .the_content blockquote {
  color: #0F1D22;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-single-body .the_content h2, .is-single-body .the_content h3, .is-single-body .the_content h4, .is-single-body .the_content h5, .is-single-body .the_content h6, .is-single-body .the_content p, .is-single-body .the_content a, .is-single-body .the_content span, .is-single-body .the_content strong, .is-single-body .the_content i, .is-single-body .the_content li, .is-single-body .the_content em, .is-single-body .the_content blockquote {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .the_content h2, .is-single-body .the_content h3, .is-single-body .the_content h4, .is-single-body .the_content h5, .is-single-body .the_content h6, .is-single-body .the_content p, .is-single-body .the_content a, .is-single-body .the_content span, .is-single-body .the_content strong, .is-single-body .the_content i, .is-single-body .the_content li, .is-single-body .the_content em, .is-single-body .the_content blockquote {
    font-size: 16px;
  }
}
.is-single-body .the_content h2 {
  padding: 7px 1.2em;
  background: #000;
  line-height: 1.69;
  color: #fff;
  font-weight: 700;
  margin: 60px 0;
  font-size: 18px;
}
@media (min-width: 480px) {
  .is-single-body .the_content h2 {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .the_content h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-single-body .the_content h2 {
    margin: 30px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content h2 {
    padding: 5%;
    margin: 30px 0;
  }
}
.is-single-body .the_content h3 {
  padding: 8px 0;
  margin: 60px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .is-single-body .the_content h3 {
    font-size: 18px;
    font-size: calc(0.0025 * 100vw + 14.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .the_content h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content h3 {
    margin: 40px 0 20px;
  }
}
.is-single-body .the_content h4 {
  margin: 60px 0 30px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-single-body .the_content h4 {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .the_content h4 {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content h4 {
    margin: 40px 0 20px;
  }
}
.is-single-body .the_content h5 {
  margin: 60px 0 38px;
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-single-body .the_content h5 {
    font-size: 13px;
    font-size: calc(0.00125 * 100vw + 11.4px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .the_content h5 {
    font-size: 13px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content h5 {
    margin: 40px 0 24px;
  }
}
.is-single-body .the_content p, .is-single-body .the_content span, .is-single-body .the_content strong, .is-single-body .the_content a, .is-single-body .the_content i, .is-single-body .the_content em {
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content p, .is-single-body .the_content span, .is-single-body .the_content strong, .is-single-body .the_content a, .is-single-body .the_content i, .is-single-body .the_content em {
    margin-bottom: 24px;
  }
}
.is-single-body .the_content p {
  line-height: 2.25;
  letter-spacing: 0.06em;
}
.is-single-body .the_content a {
  color: #747474;
  text-decoration: underline;
}
.is-single-body .the_content img {
  margin-bottom: 50px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-single-body .the_content img {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content img {
    margin-bottom: 24px !important;
  }
}
.is-single-body .the_content ul {
  padding-left: 30px;
  margin: 40px 0;
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content ul {
    margin: 30px 0;
  }
}
.is-single-body .the_content ul li {
  list-style: disc;
  font-weight: 400;
  line-height: 2;
}
.is-single-body .the_content ol {
  padding-left: 30px;
  margin: 40px 0;
}
.is-single-body .the_content ol li {
  list-style: decimal;
}
.is-single-body .the_content strong {
  font-weight: 700;
}
.is-single-body .the_content blockquote {
  padding: 24px 30px;
  background: #fff;
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content blockquote {
    padding: 6%;
  }
}
.is-single-body .the_content blockquote p {
  color: #000000;
  margin-bottom: 0;
}
@media only screen and (max-width:640px) {
  .is-single .primary_btn {
    margin-top: 40px;
  }
}
.is-single .primary_btn .btn {
  margin: 0 auto;
}
.is-single-works {
  margin-bottom: 40px;
}
.is-single-works-head {
  justify-content: space-between;
  align-items: center;
  padding: 38px 30px 30px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-head {
    padding: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-head {
    padding: 18px 6vw 24px;
    display: block;
  }
}
.is-single-works-head-return {
  display: -ms-flex;
  display: flex;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width:640px) {
  .is-single-works-head-return {
    width: fit-content;
  }
}
.is-single-works-head-return .arrow img {
  margin-right: 30px;
  display: inline-block;
  width: 5px;
  transform: rotate(180deg);
}
.is-single-works-head-return .text {
  font-family: "Noto Serif TC", serif;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-single-works-head-return .text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-head-return .text {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-head-return .text {
    font-size: 13px;
  }
}
.is-single-works-head_lists {
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-works-head_lists {
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.is-single-works-head_lists__item {
  margin-left: 30px;
}
@media only screen and (max-width:640px) {
  .is-single-works-head_lists__item {
    width: calc((100% - 30px) / 2);
    margin-bottom: 8px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-head_lists__item:nth-of-type(odd) {
    margin-left: 0;
  }
}
.is-single-works-head_lists__item .btn {
  padding-bottom: 2px;
  border-bottom: 1px solid #000000;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-works-head_lists__item .btn {
    justify-content: space-between;
  }
}
.is-single-works-head_lists__item .btn .text {
  font-family: "Noto Serif TC", serif;
  font-size: 12px;
  margin-right: 24px;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-single-works-head_lists__item .btn .text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-head_lists__item .btn .text {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-head_lists__item .btn .text {
    font-size: 13px;
  }
}
.is-single-works-head_lists__item .btn .arrow img {
  display: inline-block;
  width: 5px;
  transform: rotate(90deg);
}
.is-single-works-body .thumb img {
  width: 100%;
}
.is-single-works-body .head {
  padding-top: 118px;
  padding-right: 24.5%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-body .head {
    margin-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .head {
    margin-top: 30px;
    margin-bottom: 60px;
    padding-top: 0;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.is-single-works-body .head-title {
  font-size: 20px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .is-single-works-body .head-title {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-body .head-title {
    font-size: 24px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-single-works-body .head-title {
    padding-right: 40px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-body .head-title {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .head-title {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .head-title-pc {
    display: none;
  }
}
.is-single-works-body .head-title-sp {
  display: none;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-single-works-body .head-title-sp {
    display: block;
  }
}
.is-single-works-body .head .tag_lists {
  margin-bottom: 24px;
}
.is-single-works-body .head .article-works-tag_lists {
  text-align: left;
  width: 100%;
  justify-content: flex-start;
  margin: 30px auto;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-body .head .article-works-tag_lists {
    margin-top: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .head .article-works-tag_lists {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}
.is-single-works-body .share_btn {
  margin-top: 30px;
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-works-body .share_btn {
    margin-top: 24px;
  }
}
.is-single-works-body .share_btn-title {
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-right: 20px;
}
@media (min-width: 480px) {
  .is-single-works-body .share_btn-title {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-body .share_btn-title {
    font-size: 12px;
  }
}
.is-single-works-body .share_btn-title:after {
  content: "";
  width: 10px;
  display: inline-block;
  height: 1px;
  background-color: #C9C9C9;
  margin-left: 20px;
  margin-bottom: 4px;
}
@media only screen and (max-width:640px) {
  .is-single-works-body .share_btn-title:after {
    margin-right: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .share_btn-title {
    margin-right: 0;
  }
}
.is-single-works-body .share_btn_lists {
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.is-single-works-body .credit-title,
.is-single-works-body .philosophy-title,
.is-single-works-body .gallery-title {
  font-size: 24px;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 480px) {
  .is-single-works-body .credit-title,
  .is-single-works-body .philosophy-title,
  .is-single-works-body .gallery-title {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-body .credit-title,
  .is-single-works-body .philosophy-title,
  .is-single-works-body .gallery-title {
    font-size: 32px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-single-works-body .credit-title,
  .is-single-works-body .philosophy-title,
  .is-single-works-body .gallery-title {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-body .credit-title,
  .is-single-works-body .philosophy-title,
  .is-single-works-body .gallery-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body .credit-title,
  .is-single-works-body .philosophy-title,
  .is-single-works-body .gallery-title {
    margin-bottom: 24px;
  }
}
.is-single-works-body .credit-client,
.is-single-works-body .credit-create span,
.is-single-works-body .philosophy-text {
  font-size: 12px;
  text-align: center;
}
@media (min-width: 480px) {
  .is-single-works-body .credit-client,
  .is-single-works-body .credit-create span,
  .is-single-works-body .philosophy-text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-works-body .credit-client,
  .is-single-works-body .credit-create span,
  .is-single-works-body .philosophy-text {
    font-size: 12px;
  }
}
.is-single-works-body-credit {
  margin-top: 30px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-works-body-credit {
    margin-top: 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body-credit {
    margin-top: 50px;
  }
}
.is-single-works-body-credit .credit-client {
  text-align: center;
}
.is-single-works-body-credit .credit-create {
  width: 60%;
  margin: 30px auto 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .is-single-works-body-credit .credit-create {
    width: 100%;
  }
}
.is-single-works-body-credit .credit-create span {
  margin: 0 15px;
}
@media only screen and (max-width:640px) {
  .is-single-works-body-philosophy, .is-single-works-body-gallery {
    margin-top: 30px;
  }
}
.is-single-works-body-philosophy {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.is-single-works-body-philosophy .philosophy-text {
  text-align: left;
}
.is-single-works-body-philosophy .philosophy-text-left {
  flex: 1;
}
@media only screen and (max-width:640px) {
  .is-single-works-body-philosophy .philosophy-text-left {
    font-weight: 700;
  }
}
.is-single-works-body-philosophy .philosophy-text-right {
  flex: 2;
}
@media only screen and (max-width:640px) {
  .is-single-works-body-philosophy .philosophy-text-right {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body-philosophy .philosophy-text {
    text-align: left;
    flex: auto;
    width: 100%;
  }
}
.is-single-works-body-gallery .the_content {
  margin-top: 0 !important;
  padding: 0 0 60px 40px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-single-works-body-gallery .the_content {
    border-left: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-works-body-gallery .the_content {
    width: 100%;
    padding: 0;
    border-left: 0;
  }
}
.is-single-works-body-gallery .the_content img {
  margin-bottom: 10px;
  width: 100%;
}
.is-single-works-body-gallery .head {
  padding-right: 0;
}

.is-works-other-title {
  text-align: center;
  font-size: 24px;
  font-family: "Noto Serif TC", serif;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media (min-width: 480px) {
  .is-works-other-title {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .is-works-other-title {
    font-size: 32px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-works-other-title {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-works-other-title {
    margin-top: 50px;
    margin-bottom: 24px;
  }
}

.is-single-works-wrapper {
  position: relative; /*position stickyの基点にするため relativeをかける*/
  display: flex; /*左エリア、右エリア横並び指定*/
  flex-wrap: wrap; /*ボックスの折り返し可*/
}
#fixed-area {
  position: -webkit-sticky; /*Safari用*/
  position: sticky;
  overflow: scroll;
  top: 0;
  /*横半分50%　縦を100vhにする*/
  width: 35%;
  height: 100vh;
}
@media only screen and (max-width:640px) {
  #fixed-area .article-works_lists__item .tag_lists {
    margin-bottom: 0;
  }
}
@media only screen and (max-width:640px) {
  #fixed-area {
    position: relative !important; /*position stickyを解除*/
    width: 100%; /*横幅を100%にして1列に見せる*/
    height: 100%; /*縦幅を100vh⇒40vh　※任意の高さに設定可能*/
  }
}

#container {
  /*横半分50%にする*/
  width: 65%;
}
@media only screen and (max-width:640px) {
  #container {
    width: 100%; /*横幅を100%にして1列に見せる*/
  }
}
#container .head {
  padding-top: 0;
}

.bg-main {
  width: 100vw;
  height: 810px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width:640px) {
  .bg-main {
    position: fixed;
    height: 100vh;
  }
}

.mt1 {
  margin-top: 120px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .mt1 {
    margin-top: 100px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .mt1 {
    margin-top: 80px;
  }
}
@media only screen and (max-width:640px) {
  .mt1 {
    margin-top: 70px;
  }
}

.mt2 {
  margin-top: 100px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .mt2 {
    margin-top: 80px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .mt2 {
    margin-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .mt2 {
    margin-top: 40px;
  }
}

.pl1 {
  padding-left: 120px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pl1 {
    padding-left: 8.33vw;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .pl1 {
    padding-left: 7vw;
  }
}
@media only screen and (max-width:640px) {
  .pl1 {
    padding-left: 6vw;
  }
}

.pr1 {
  padding-right: 120px;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pr1 {
    padding-right: 8.33vw;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .pr1 {
    padding-right: 7vw;
  }
}
@media only screen and (max-width:640px) {
  .pr1 {
    padding-right: 6vw;
  }
}

.main-lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .main-lead {
    font-size: 30px;
    font-size: calc(0.01 * 100vw + 17.2px);
  }
}
@media (min-width: 1280px) {
  .main-lead {
    font-size: 30px;
  }
}
@media only screen and (max-width:640px) {
  .main-lead {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.main-text {
  margin-bottom: 40px;
}
@media only screen and (max-width:640px) {
  .main-text {
    margin-bottom: 24px;
  }
}

.tag_lists {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .tag_lists {
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding-bottom: 20px;
  }
}
.tag_lists__item {
  line-height: 1.2;
  list-style: none;
}
@media only screen and (max-width:640px) {
  .tag_lists__item {
    flex-shrink: 0;
  }
}
.tag_lists__item:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width:640px) {
  .tag_lists__item:not(:last-child) {
    margin-right: 18px;
  }
}
.tag_lists__item .btn {
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .tag_lists__item .btn {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .tag_lists__item .btn {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .tag_lists__item .btn {
    letter-spacing: 0.06em;
  }
}

@media only screen and (max-width:640px) {
  .sp-tag_lists {
    margin-top: 24px;
  }
}

.swiper-button {
  justify-content: space-between;
  align-items: center;
  width: 180px;
  margin: 30px auto 10px;
}
.swiper-button .swiper-button-prev,
.swiper-button .swiper-button-next {
  background: transparent;
  width: 34px;
  height: 34px;
  border: 1px solid #D6D6D6;
  position: relative;
  border-radius: 50%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .swiper-button .swiper-button-prev,
  .swiper-button .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width:640px) {
  .swiper-button .swiper-button-prev,
  .swiper-button .swiper-button-next {
    width: 42px;
    height: 42px;
    top: 0;
  }
}
.swiper-button .swiper-button-prev {
  left: 0;
}
.swiper-button .swiper-button-prev::after {
  color: #000;
  content: "\f104";
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
  width: 10px;
  font-style: normal;
}
.swiper-button .swiper-button-next {
  right: 0;
}
@media only screen and (max-width:640px) {
  .swiper-button .swiper-button-next {
    margin-left: 12px;
  }
}
.swiper-button .swiper-button-next::after {
  color: #000;
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
  width: 10px;
  font-style: normal;
}
.swiper-button .swiper-pagination {
  position: relative;
  display: inline-block;
}
.swiper-button .swiper-pagination-bullet {
  display: none;
  border-radius: 0;
  background: 0;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 10px;
  width: auto;
  height: auto;
}
.swiper-button .swiper-pagination-bullet-active {
  display: block;
  padding-right: 1em;
}
.swiper-button .total {
  display: inline-block;
  font-size: 10px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}

.page-nav_lists {
  justify-content: center;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .page-nav_lists {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .page-nav_lists {
    display: block;
    margin: 0 5%;
  }
}
.page-nav_lists__item {
  width: 21%;
  margin: 0 10px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .page-nav_lists__item {
    width: 43%;
    margin: 0 10px 10px;
  }
}
@media only screen and (max-width:640px) {
  .page-nav_lists__item {
    width: 100%;
    margin: 0 0 10px;
  }
}
.page-nav_lists__item .btn {
  width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3em;
  padding: 0 0 10px;
  height: 88px;
  line-height: 1.4;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media (min-width: 480px) {
  .page-nav_lists__item .btn {
    font-size: 13px;
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1280px) {
  .page-nav_lists__item .btn {
    font-size: 13px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .page-nav_lists__item .btn {
    height: 80px;
  }
}
@media only screen and (max-width:640px) {
  .page-nav_lists__item .btn {
    height: 50px;
    padding: 0;
  }
}
.page-nav_lists__item .btn::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .page-nav_lists__item .btn::before {
    bottom: 4px;
  }
}
@media only screen and (max-width:640px) {
  .page-nav_lists__item .btn::before {
    inset: 50% 20px auto auto;
    transform: translateY(-50%) rotate(90deg);
  }
}
.page-nav.ajust {
  margin-bottom: 80px;
  transform: translateY(-50%);
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .page-nav.ajust {
    transform: translateY(-25%);
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:640px) {
  .page-nav.ajust {
    transform: translateY(-12%);
    margin-bottom: 40px;
  }
}

.sec-pl {
  padding-left: 6%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-pl {
    padding-left: 7%;
  }
}
@media only screen and (max-width:640px) {
  .sec-pl {
    padding-left: 5%;
  }
}

.sec-pl2 {
  padding-left: 8.3%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-pl2 {
    padding-left: 7%;
  }
}

.sec-pr {
  padding-right: 6%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-pr {
    padding-right: 7%;
  }
}
@media only screen and (max-width:640px) {
  .sec-pr {
    padding-right: 5%;
  }
}

.sec-pr2 {
  padding-right: 8.3%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-pr2 {
    padding-right: 7%;
  }
}

.sec-split {
  display: -ms-flex;
  display: flex;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-split {
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .sec-split {
    display: block;
  }
}
.sec-split-L {
  width: 320px;
  position: relative;
  z-index: 50;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .sec-split-L {
    width: 280px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-split-L {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .sec-split-L {
    width: 100%;
  }
}
.sec-split-L .main-lead {
  width: 75%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-split-L .main-lead {
    width: 100%;
    padding-right: 6%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) and (min-width:641px) and (max-width:835px) {
  .sec-split-L .main-lead {
    padding-right: 7%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) and (max-width:640px) {
  .sec-split-L .main-lead {
    padding-right: 5%;
  }
}
@media only screen and (max-width:640px) {
  .sec-split-L .main-lead {
    width: 100%;
    padding-right: 6%;
  }
}
@media only screen and (max-width:640px) and (min-width:641px) and (max-width:835px) {
  .sec-split-L .main-lead {
    padding-right: 7%;
  }
}
@media only screen and (max-width:640px) and (max-width:640px) {
  .sec-split-L .main-lead {
    padding-right: 5%;
  }
}
.sec-split-L .swiper-button {
  margin-top: 180px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-split-L .swiper-button {
    margin-top: 30px;
    justify-content: flex-end;
    padding-right: 6%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) and (min-width:641px) and (max-width:835px) {
  .sec-split-L .swiper-button {
    padding-right: 7%;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) and (max-width:640px) {
  .sec-split-L .swiper-button {
    padding-right: 5%;
  }
}
@media only screen and (max-width:640px) {
  .sec-split-L .swiper-button {
    margin-top: 30px;
    justify-content: flex-end;
    padding-right: 6%;
  }
}
@media only screen and (max-width:640px) and (min-width:641px) and (max-width:835px) {
  .sec-split-L .swiper-button {
    padding-right: 7%;
  }
}
@media only screen and (max-width:640px) and (max-width:640px) {
  .sec-split-L .swiper-button {
    padding-right: 5%;
  }
}
.sec-split-L .swiper-button-prev, .sec-split-L .swiper-button-next {
  position: relative;
}
@media only screen and (max-width:640px) {
  .sec-split-L .swiper-button-prev, .sec-split-L .swiper-button-next {
    top: 0;
  }
}
.sec-split-L .swiper-button-prev {
  left: auto;
}
.sec-split-L .swiper-button-next {
  right: auto;
}
.sec-split-R {
  margin-top: 30px;
  width: calc(100% - 320px);
  overflow: hidden;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .sec-split-R {
    width: calc(100% - 280px);
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-split-R {
    margin-top: 20px;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .sec-split-R {
    margin-top: 20px;
    width: 100%;
  }
}

.sec-sprit-lower {
  display: -ms-flex;
  display: flex;
  position: relative;
  padding-left: 8.3%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-sprit-lower {
    padding-left: 7%;
  }
}
@media only screen and (max-width:640px) {
  .sec-sprit-lower {
    display: block;
    padding-left: 6%;
    padding-right: 0;
  }
}
@media only screen and (max-width:640px) and (min-width:641px) and (max-width:835px) {
  .sec-sprit-lower {
    padding-left: 7%;
  }
}
@media only screen and (max-width:640px) and (max-width:640px) {
  .sec-sprit-lower {
    padding-left: 5%;
  }
}
.sec-sprit-lower-L {
  width: 70%;
  position: relative;
  z-index: 100;
  margin-top: 40px;
  padding-right: 6%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-sprit-lower-L {
    width: 62%;
  }
}
@media only screen and (max-width:640px) {
  .sec-sprit-lower-L {
    width: 100%;
    padding-right: 6%;
  }
}
@media only screen and (max-width:640px) and (min-width:641px) and (max-width:835px) {
  .sec-sprit-lower-L {
    padding-right: 7%;
  }
}
@media only screen and (max-width:640px) and (max-width:640px) {
  .sec-sprit-lower-L {
    padding-right: 5%;
  }
}
.sec-sprit-lower-R {
  width: 30%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-sprit-lower-R {
    width: 38%;
  }
}
@media only screen and (max-width:640px) {
  .sec-sprit-lower-R {
    width: 100%;
    margin-top: 60px;
  }
}
.sec-sprit-lower-R .img {
  margin-bottom: 40px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .sec-sprit-lower-R .img {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .sec-sprit-lower-R .img {
    margin-bottom: 24px;
  }
}
.sec-sprit-lower-R .img img {
  width: 100%;
  margin: 0 0 0 auto;
}

.sec-vertical {
  width: 100%;
}
.sec-vertical_lists__item {
  height: 220px;
  margin-bottom: 1px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec-vertical_lists__item::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item {
    height: 200px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item {
    height: auto;
  }
}
.sec-vertical_lists__item .btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn {
    padding: 32px 0 24px;
  }
}
.sec-vertical_lists__item .btn .content {
  padding-left: 6.3%;
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .content {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.sec-vertical_lists__item .btn .head {
  margin-bottom: 20px;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item .btn .head {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head {
    display: block;
    margin-bottom: 12px;
  }
}
.sec-vertical_lists__item .btn .head .title {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #fff;
}
@media (min-width: 480px) {
  .sec-vertical_lists__item .btn .head .title {
    font-size: 34px;
    font-size: calc(0.01 * 100vw + 21.2px);
  }
}
@media (min-width: 1280px) {
  .sec-vertical_lists__item .btn .head .title {
    font-size: 34px;
  }
}
.sec-vertical_lists__item .btn .head .child_lists {
  align-items: center;
  margin-left: 48px;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item .btn .head .child_lists {
    margin-left: 30px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .child_lists {
    margin-left: 0;
    margin-top: 12px;
  }
}
.sec-vertical_lists__item .btn .head .child_lists__item {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-weight: 700;
  margin-right: 20px;
  letter-spacing: 0.3em;
  color: #fff;
}
@media (min-width: 480px) {
  .sec-vertical_lists__item .btn .head .child_lists__item {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .sec-vertical_lists__item .btn .head .child_lists__item {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .child_lists__item {
    margin-right: 12px;
    letter-spacing: 0.2em;
  }
}
.sec-vertical_lists__item .btn .head .child_lists__item:not(:first-child) {
  padding-left: 28px;
  position: relative;
}
.sec-vertical_lists__item .btn .head .child_lists__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #9D9D9D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .child_lists__item:not(:first-child)::before {
    width: 6px;
    height: 6px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .child_lists__item:not(:first-child) {
    padding-left: 20px;
  }
}
.sec-vertical_lists__item .btn .head .logo {
  margin-left: 40px;
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .logo {
    margin-left: 0;
    margin-top: 14px;
  }
}
.sec-vertical_lists__item .btn .head .logo-01 {
  width: 80px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item .btn .head .logo-01 {
    width: 70px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .logo-01 {
    width: 60px;
  }
}
.sec-vertical_lists__item .btn .head .logo-02 {
  width: 140px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item .btn .head .logo-02 {
    width: 120px;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head .logo-02 {
    width: 110px;
  }
}
.sec-vertical_lists__item .btn .head.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head.reverse {
    display: -ms-flex;
    display: flex;
  }
}
.sec-vertical_lists__item .btn .head.reverse .logo {
  margin-left: 0;
  margin-right: 40px;
  margin-top: 0;
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .head.reverse .logo {
    margin-right: 24px;
  }
}
.sec-vertical_lists__item .btn .text {
  width: 550px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}
@media (min-width: 480px) {
  .sec-vertical_lists__item .btn .text {
    font-size: 13px;
    font-size: calc(0.00125 * 100vw + 11.4px);
  }
}
@media (min-width: 1280px) {
  .sec-vertical_lists__item .btn .text {
    font-size: 13px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .sec-vertical_lists__item .btn .text {
    width: 80%;
  }
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .text {
    width: 100%;
  }
}
.sec-vertical_lists__item .btn .icon {
  position: absolute;
  top: 50%;
  right: 6.3%;
  transform: translate(-50%, 0) scale(-1, 1);
}
@media only screen and (max-width:640px) {
  .sec-vertical_lists__item .btn .icon {
    top: 40px;
    transform: scale(-1, 1);
  }
}

.is-page-kv {
  width: 94%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 56.25vw;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-kv {
    height: 70vw;
  }
}
@media only screen and (max-width:640px) {
  .is-page-kv {
    height: 90vw;
  }
}
.is-page-kv img {
  width: 100%;
}

.is-about .slider .swiper_clm-side-1 img {
  width: 100%;
  max-height: 179px;
}
.is-about_why {
  margin-bottom: 100px;
  margin-top: 114px;
  position: relative;
}
.is-about_why .is-content h4 {
  font-size: 16px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-about_why .is-content h4 {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-about_why .is-content h4 {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_why {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.is-about_why .img {
  right: -140px;
  top: 0;
  position: absolute;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.is-about_why .lead {
  margin-bottom: 30px;
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-about_why .lead {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-about_why .lead {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_why .lead {
    margin-top: 10px;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-about .article-works-tag_lists {
    flex-wrap: wrap !important;
    margin: 30px auto;
  }
}
.is-about_our_member {
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .is-about_our_member {
    margin-top: 60px;
  }
}
.is-about_our_member .is-content {
  border-top: 1px solid #DDDDDD;
}
.is-about_our_member .is-content .member-list-item {
  padding: 60px 0;
  border-bottom: 1px solid #DDDDDD;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .member-list-item {
    padding: 30px 0;
  }
}
.is-about_our_member .is-content .member-list-item-1 .split-R .lead {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .member-list-item-1 .split-R .lead {
    text-align: left;
  }
}
.is-about_our_member .is-content .member-list-item-2 .split-L {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .member-list-item-2 .split-L {
    text-align: left;
  }
}
.is-about_our_member .is-content .member-list-item-2 .split-L .is-sns .flex {
  justify-content: flex-end;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .member-list-item-2 .split-L .is-sns .flex {
    justify-content: flex-start;
  }
}
.is-about_our_member .is-content .member-list-item-2 .split-R .lead {
  float: left;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .member-list-item-2 .flex-reverse {
    flex-direction: row;
  }
}
.is-about_our_member .is-content .txt {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .txt {
    flex-wrap: wrap;
  }
}
.is-about_our_member .is-content .txt .position {
  color: #898989;
  font-size: 14px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  padding-left: 3px;
  padding-right: 3px;
}
@media (min-width: 480px) {
  .is-about_our_member .is-content .txt .position {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-about_our_member .is-content .txt .position {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .txt .position {
    margin-bottom: 5px;
  }
}
.is-about_our_member .is-content .txt .member_name {
  font-size: 32px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-about_our_member .is-content .txt .member_name {
    font-size: 36px;
    font-size: calc(0.005 * 100vw + 29.6px);
  }
}
@media (min-width: 1280px) {
  .is-about_our_member .is-content .txt .member_name {
    font-size: 36px;
  }
}
.is-about_our_member .is-content .txt .member_name-en {
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  margin-top: 16px;
  margin: 16px 3px 0;
}
@media (min-width: 480px) {
  .is-about_our_member .is-content .txt .member_name-en {
    font-size: 36px;
    font-size: calc(0.005 * 100vw + 29.6px);
  }
}
@media (min-width: 1280px) {
  .is-about_our_member .is-content .txt .member_name-en {
    font-size: 36px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .txt .member_name-en {
    padding: 0;
    margin: 13px 0 0;
  }
}
.is-about_our_member .is-content .txt .member .is-sns_lists__item:not(:first-child) {
  margin-left: 0;
}
.is-about_our_member .is-content .txt .member-sns {
  margin-top: 32px;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .txt .member-sns {
    margin-top: 0;
  }
}
.is-about_our_member .is-content .txt .img {
  text-align: right;
  line-height: 1;
  margin-bottom: 30px;
}
.is-about_our_member .is-content .txt img {
  margin: 0;
  display: inline-block;
}
.is-about_our_member .is-content .txt .lead {
  width: 67%;
  float: right;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-about_our_member .is-content .txt .lead {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-about_our_member .is-content .txt .lead {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .txt .lead {
    width: 100%;
    float: auto;
  }
}
.is-about_our_member .is-content .split-L {
  width: 42.4vw;
}
.is-about_our_member .is-content .split-R {
  width: 57.6vw;
  right: 0;
  max-width: 670px;
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .split-R {
    margin-top: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-about_our_member .is-content .split-L, .is-about_our_member .is-content .split-R {
    width: 100%;
  }
}
.is-about .is-works .article-works {
  margin-bottom: 0;
}
.is-about .is-works .clm_item {
  margin: 0 30px 0 0;
}
.is-about .is-sns_lists__item:not(:first-child) {
  margin-left: 24px;
}

.is-works {
  padding-top: 50px;
  margin-bottom: 100px;
}

.no-foot .foot {
  display: none;
}

@media only screen and (max-width:640px) {
  .sp-none {
    display: none;
  }
}

@media only screen and (min-width:780px) {
  .article-works-other_lists__item:nth-of-type(4) {
    display: block;
    margin-right: 0;
    position: absolute !important;
    right: 0px;
    width: 280px;
    height: 280px;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .article-works-other_lists__item:nth-of-type(4) {
    position: relative !important;
    margin-right: auto;
    margin: 0 auto !important;
    height: 100px;
  }
}
@media only screen and (max-width:640px) {
  .article-works-other_lists__item:nth-of-type(4) {
    display: block;
    width: calc((100% - 32px) / 2);
    height: auto;
    position: relative !important;
  }
}
@media only screen and (max-width:640px) {
  .article-works-other_lists__item:nth-of-type(5) {
    width: 280px;
    height: 60px;
    margin: 0 auto;
  }
}
.article-works-cat_lists {
  padding-left: 23px;
}
.article-works-cat_lists li a,
.article-works-cat_lists li span {
  line-height: 1;
  margin-bottom: 9px;
  color: #868686;
  transition: 1s;
  font-size: 12px;
}
@media (min-width: 480px) {
  .article-works-cat_lists li a,
  .article-works-cat_lists li span {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .article-works-cat_lists li a,
  .article-works-cat_lists li span {
    font-size: 15px;
  }
}
.article-works-cat_lists li:hover a,
.article-works-cat_lists li:hover span {
  color: #000;
}
@media only screen and (max-width:640px) {
  .article-works-cat_lists li {
    margin-right: 2em;
    white-space: nowrap;
  }
}
.article-works-cat_lists .current {
  position: relative;
}
.article-works-cat_lists .current a,
.article-works-cat_lists .current span {
  color: #000000;
}
.article-works-cat_lists .current:before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #adadad;
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
}
.article-works .text-content-foot {
  opacity: 0;
  transition: 1s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.article-works .text-content-foot:hover {
  opacity: 1;
}
.article-works .article-works_lists, .article-works .article-works-other_lists {
  align-items: stretch;
}
.article-works .article-works_lists .col-1, .article-works .article-works_lists .col-2, .article-works .article-works-other_lists .col-1, .article-works .article-works-other_lists .col-2 {
  width: 50%;
}
.article-works .article-works_lists .col-1 .article-clm_lists__item, .article-works .article-works_lists .col-2 .article-clm_lists__item, .article-works .article-works-other_lists .col-1 .article-clm_lists__item, .article-works .article-works-other_lists .col-2 .article-clm_lists__item {
  margin: 0 16px 16px 0;
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item, .article-works .article-works_lists .col-2 .article-clm_lists__item, .article-works .article-works-other_lists .col-1 .article-clm_lists__item, .article-works .article-works-other_lists .col-2 .article-clm_lists__item {
    margin: 0 0 8px 0;
  }
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-1, .article-works .article-works_lists .col-2, .article-works .article-works-other_lists .col-1, .article-works .article-works-other_lists .col-2 {
    width: 100%;
  }
}
.article-works .article-works_lists .col-1 .article-clm_lists__item, .article-works .article-works-other_lists .col-1 .article-clm_lists__item {
  width: 100%;
}
.article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot {
  padding: 17.4%;
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot {
    padding: 30px;
  }
}
.article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
    font-size: 20px;
    font-size: calc(0.01 * 100vw + 7.2px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-1 .article-clm_lists__item, .article-works .article-works-other_lists .col-1 .article-clm_lists__item {
    margin-right: 0;
  }
}
.article-works .article-works_lists .col-2 .article-clm_lists__item, .article-works .article-works-other_lists .col-2 .article-clm_lists__item {
  width: calc((100% - 32px) / 2);
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-2 .article-clm_lists__item, .article-works .article-works-other_lists .col-2 .article-clm_lists__item {
    width: calc((100% - 8px) / 2);
  }
}
.article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot {
  padding: 15.8% 10.8%;
}
.article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot .title {
  font-size: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot .title {
    font-size: 13px;
    font-size: calc(0.00125 * 100vw + 11.4px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot .title {
    font-size: 13px;
  }
}
.article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left {
  flex: 1;
}
.article-works .article-works_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-works .article-works_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-works .article-works-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-works .article-works-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right {
  flex: 1;
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists .col-2, .article-works .article-works_lists .col-3, .article-works .article-works-other_lists .col-2, .article-works .article-works-other_lists .col-3 {
    justify-content: space-between;
  }
}
.article-works .article-works_lists__item, .article-works .article-works-other_lists__item {
  position: relative;
}
.article-works .article-works_lists__item .text-content-foot-text, .article-works .article-works-other_lists__item .text-content-foot-text {
  display: -ms-flex;
  display: flex;
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists__item .text-content-foot-text, .article-works .article-works-other_lists__item .text-content-foot-text {
    display: none;
  }
}
.article-works .article-works_lists__item .text-content-foot-item-left, .article-works .article-works-other_lists__item .text-content-foot-item-left {
  flex: 1;
}
.article-works .article-works_lists__item .text-content-foot-item-right, .article-works .article-works-other_lists__item .text-content-foot-item-right {
  flex: 2;
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists__item .text-content-foot-item-left, .article-works .article-works_lists__item .text-content-foot-item-right, .article-works .article-works-other_lists__item .text-content-foot-item-left, .article-works .article-works-other_lists__item .text-content-foot-item-right {
    width: 50%;
    flex: auto;
  }
}
.article-works .article-works_lists__item:nth-of-type(4n), .article-works .article-works-other_lists__item:nth-of-type(4n) {
  margin-right: 0;
}
.article-works .article-works_lists__item .text-content, .article-works .article-works-other_lists__item .text-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 1s;
}
.article-works .article-works_lists__item .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .text-content-head .tag_lists__item {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  padding: 6px 16px;
  margin-right: 12px;
  margin-bottom: 6px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .text-content-head .tag_lists__item {
    font-size: 12px;
    font-size: calc(0.0025 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .text-content-head .tag_lists__item {
    font-size: 12px;
  }
}
.article-works .article-works_lists__item .text-content-head .tag_lists__item-pick_up, .article-works .article-works-other_lists__item .text-content-head .tag_lists__item-pick_up {
  display: none;
}
.article-works .article-works_lists__item .text-content-head .arrow, .article-works .article-works-other_lists__item .text-content-head .arrow {
  width: 10%;
}
.article-works .article-works_lists__item .text-content-head .arrow img, .article-works .article-works-other_lists__item .text-content-head .arrow img {
  margin-right: 0;
}
.article-works .article-works_lists__item .text-content-foot, .article-works .article-works-other_lists__item .text-content-foot {
  text-align: left;
}
.article-works .article-works_lists__item .text-content-foot p,
.article-works .article-works_lists__item .text-content-foot span, .article-works .article-works-other_lists__item .text-content-foot p,
.article-works .article-works-other_lists__item .text-content-foot span {
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 10px;
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .text-content-foot p,
  .article-works .article-works_lists__item .text-content-foot span, .article-works .article-works-other_lists__item .text-content-foot p,
  .article-works .article-works-other_lists__item .text-content-foot span {
    font-size: 12px;
    font-size: calc(0.0025 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .text-content-foot p,
  .article-works .article-works_lists__item .text-content-foot span, .article-works .article-works-other_lists__item .text-content-foot p,
  .article-works .article-works-other_lists__item .text-content-foot span {
    font-size: 12px;
  }
}
.article-works .article-works_lists__item .text-content-foot .title, .article-works .article-works-other_lists__item .text-content-foot .title {
  font-weight: 700;
  font-size: 10px;
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .text-content-foot .title, .article-works .article-works-other_lists__item .text-content-foot .title {
    font-size: 14px;
    font-size: calc(0.005 * 100vw + 7.6px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .text-content-foot .title, .article-works .article-works-other_lists__item .text-content-foot .title {
    font-size: 14px;
  }
}
.article-works .article-works_lists__item .text-content .title, .article-works .article-works-other_lists__item .text-content .title {
  font-size: 10px;
  position: relative;
  line-height: 1.5;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .text-content .title, .article-works .article-works-other_lists__item .text-content .title {
    font-size: 14px;
    font-size: calc(0.005 * 100vw + 7.6px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .text-content .title, .article-works .article-works-other_lists__item .text-content .title {
    font-size: 14px;
  }
}
.article-works .article-works_lists__item .text-content:hover, .article-works .article-works-other_lists__item .text-content:hover {
  opacity: 0.6;
}
.article-works .article-works_lists__item .thumb:hover img, .article-works .article-works-other_lists__item .thumb:hover img {
  transition: 1s;
}
.article-works .article-works_lists__item .btn, .article-works .article-works-other_lists__item .btn {
  display: block;
}
.article-works .article-works_lists__item .btn .text-content, .article-works .article-works-other_lists__item .btn .text-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  transition: 0.6s;
}
.article-works .article-works_lists__item .btn .text-content-head, .article-works .article-works-other_lists__item .btn .text-content-head {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}
.article-works .article-works_lists__item .btn .text-content-head .tag_lists, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists {
  width: 90%;
}
.article-works .article-works_lists__item .btn .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 10px;
  margin-right: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .btn .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item {
    font-size: 12px;
    font-size: calc(0.0025 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .btn .text-content-head .tag_lists__item, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item {
    font-size: 12px;
  }
}
.article-works .article-works_lists__item .btn .text-content-head .tag_lists__item-space, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item-space {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-works .article-works_lists__item .btn .text-content-head .tag_lists__item-visual, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item-visual {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-works .article-works_lists__item .btn .text-content-head .tag_lists__item-event, .article-works .article-works-other_lists__item .btn .text-content-head .tag_lists__item-event {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-works .article-works_lists__item .btn .text-content-head .arrow, .article-works .article-works-other_lists__item .btn .text-content-head .arrow {
  width: 10%;
}
.article-works .article-works_lists__item .btn .text-content-head .arrow img, .article-works .article-works-other_lists__item .btn .text-content-head .arrow img {
  margin-right: 0;
}
.article-works .article-works_lists__item .more-btn, .article-works .article-works-other_lists__item .more-btn {
  width: 100%;
  height: 100%;
}
.article-works .article-works_lists__item .more-btn .thumb img, .article-works .article-works-other_lists__item .more-btn .thumb img {
  width: 100%;
}
.article-works .article-works_lists__item .more-btn_text-content, .article-works .article-works-other_lists__item .more-btn_text-content {
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  margin-left: 28.9%;
  transform: translateY(-50%);
  border-bottom: 1px solid #000;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .article-works .article-works_lists__item .more-btn_text-content, .article-works .article-works-other_lists__item .more-btn_text-content {
    margin-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .article-works .article-works_lists__item .more-btn_text-content, .article-works .article-works-other_lists__item .more-btn_text-content {
    margin-left: 25%;
  }
}
.article-works .article-works_lists__item .more-btn_text-content .text, .article-works .article-works-other_lists__item .more-btn_text-content .text {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .article-works .article-works_lists__item .more-btn_text-content .text, .article-works .article-works-other_lists__item .more-btn_text-content .text {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-works .article-works_lists__item .more-btn_text-content .text, .article-works .article-works-other_lists__item .more-btn_text-content .text {
    font-size: 16px;
  }
}
.article-works .article-works_lists__item .more-btn_text-content .arrow, .article-works .article-works-other_lists__item .more-btn_text-content .arrow {
  margin-left: 40px;
}
.article-works .article-works_lists__item .more-btn:hover, .article-works .article-works_lists__item .more-btn:focus, .article-works .article-works-other_lists__item .more-btn:hover, .article-works .article-works-other_lists__item .more-btn:focus {
  opacity: 0.6;
}
.article-works-tag_lists {
  width: 50.83vw;
  margin: 60px auto;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .article-works-tag_lists {
    width: 1000px;
    white-space: nowrap;
  }
}
.article-works-tag_lists .current a span {
  color: #000000;
}
.article-works-tag_lists li {
  transition: 1s;
}
.article-works-tag_lists li a {
  letter-spacing: 0.14em;
  font-size: 12px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 480px) {
  .article-works-tag_lists li a {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-works-tag_lists li a {
    font-size: 12px;
  }
}
.article-works-tag_lists li a .en {
  text-transform: uppercase;
  margin-left: 1em;
}
.article-works-tag_lists li a span {
  font-size: 12px;
  color: #adadad;
  transition: 0.2s;
}
@media (min-width: 480px) {
  .article-works-tag_lists li a span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-works-tag_lists li a span {
    font-size: 12px;
  }
}
.article-works-tag_lists li a:hover span {
  color: #000000;
}
.article-works-tag_lists li:after {
  content: "/";
  margin: 0 10px;
  color: #adadad;
}
.article-works-tag_lists li:last-child:after {
  content: "";
}
.article-works-lower {
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .article-works-lower {
    margin-top: 0;
  }
}
@media only screen and (max-width:640px) {
  .article-works-lower .article-clm_lists-4 {
    justify-content: space-between;
  }
}
.article-works-foot {
  margin-top: 60px;
}
.article-works-taxonomy {
  margin-top: 30px;
}
@media only screen and (max-width:640px) {
  .article-works-taxonomy {
    margin-top: 20px;
  }
}
.article-works .clm_item-archives .btn:hover {
  opacity: 1;
}
.article-works .clm_item-archives .text-content-foot-text:nth-child(3) {
  display: none;
}
.article-works .clm_item-archives .more-btn_text-content {
  bottom: 30px;
  top: auto;
  right: 30px;
  width: auto;
  left: auto;
  margin-left: 0;
  transform: translateY(0);
  border-bottom: 0;
}
@media only screen and (max-width:640px) {
  .article-works .clm_item-archives .more-btn_text-content {
    display: none;
  }
}
.article-works .clm_item-archives .more-btn_text-content p {
  font-size: 12px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}
.article-works .clm_item-archives .more-btn_text-content .arrow {
  margin-left: 20px;
  padding-top: 8px;
}
.article-works-kv_lists a:hover {
  opacity: 1;
}
.article-works-kv_lists .text-content-foot-text {
  display: -ms-flex;
  display: flex;
}
.article-works-kv_lists .text-content-foot-text:first-child, .article-works-kv_lists .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 180px;
}
.article-works-kv_lists .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 180px;
}
.article-works-kv_lists .text-content-foot-text:last-child {
  display: none;
}
.article-works-kv_lists .text-content-foot-text p,
.article-works-kv_lists .text-content-foot-text a,
.article-works-kv_lists .text-content-foot-text span {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .article-works-kv_lists .text-content-foot-text p,
  .article-works-kv_lists .text-content-foot-text a,
  .article-works-kv_lists .text-content-foot-text span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-works-kv_lists .text-content-foot-text p,
  .article-works-kv_lists .text-content-foot-text a,
  .article-works-kv_lists .text-content-foot-text span {
    font-size: 12px;
  }
}
.article-works-kv_lists .text-content-foot-item-left, .article-works-kv_lists .text-content-foot-item-right {
  flex: 1;
}
.article-works-kv_lists .text-content-foot .works-lead-kv p {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .article-works-kv_lists .text-content-foot .works-lead-kv p {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-works-kv_lists .text-content-foot .works-lead-kv p {
    font-size: 12px;
  }
}
.article-news {
  margin-bottom: 50px;
}
@media only screen and (max-width:640px) {
  .article-news {
    margin-bottom: 0;
  }
}
.article-news_lists {
  border-top: 1px solid #E0DFDB;
}
.article-news_lists__item {
  border-bottom: 1px solid #E0DFDB;
}
.article-news_lists__item .btn {
  display: -ms-flex;
  display: flex;
  align-items: center;
  padding: 28px 0;
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn {
    padding: 20px 0 14px;
    flex-wrap: wrap;
  }
}
.article-news_lists__item .btn .date {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  margin-right: 25px;
}
@media (min-width: 480px) {
  .article-news_lists__item .btn .date {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .article-news_lists__item .btn .date {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn .date {
    margin-bottom: 2px;
  }
}
.article-news_lists__item .btn .title {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 15px;
  position: relative;
  line-height: 2;
}
@media (min-width: 480px) {
  .article-news_lists__item .btn .title {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .article-news_lists__item .btn .title {
    font-size: 15px;
  }
}
.article-news .paginavi {
  margin-top: 60px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .article-news .paginavi {
    margin-top: 50px;
  }
}
@media only screen and (max-width:640px) {
  .article-news .paginavi {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
.hover:hover {
  opacity: 1;
}
.hover .the_content {
  color: #fff;
}
.hover .list {
  position: absolute;
  bottom: 0;
  left: 0;
}
.hover .list p {
  color: #fff;
}
.hover .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
}

.tag_lists__item-pick_up {
  display: none;
}

.pick_up {
  display: none;
}

.is-about {
  position: relative;
  padding-top: 27px;
  padding-bottom: 100px;
}
@media only screen and (max-width:640px) {
  .is-about {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
.is-about_wrap {
  display: -ms-flex;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width:640px) {
  .is-about_wrap {
    flex-wrap: wrap;
  }
}
.is-about-title, .is-about-lead, .is-about-text {
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.is-about-title {
  font-size: 28px;
  letter-spacing: 0.5em;
}
@media (min-width: 480px) {
  .is-about-title {
    font-size: 32px;
    font-size: calc(0.005 * 100vw + 25.6px);
  }
}
@media (min-width: 1280px) {
  .is-about-title {
    font-size: 32px;
  }
}
.is-about-lead {
  font-size: 20px;
  letter-spacing: 0.6em;
  margin: 0 100px;
  padding-top: 50px;
}
@media (min-width: 480px) {
  .is-about-lead {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-about-lead {
    font-size: 24px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-about-lead {
    margin: 0 80px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-about-lead {
    margin: 0 60px;
  }
}
@media only screen and (max-width:640px) {
  .is-about-lead {
    margin: 0 30px 0 0;
  }
}
.is-about-text {
  font-size: 15px;
  letter-spacing: 0.5em;
  line-height: 3;
  padding-top: 120px;
}
@media (min-width: 480px) {
  .is-about-text {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-about-text {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-about-text {
    padding-top: 50px;
    line-height: 2.7;
  }
}
.is-about-text strong {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  position: relative;
}
.is-about-text strong:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -6px;
  background-color: #000000;
}
.is-about .bg-text {
  width: 53.2%;
  max-width: 940px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-about .bg-text {
    width: 66%;
  }
}
@media only screen and (max-width:640px) {
  .is-about .bg-text {
    width: 90%;
  }
}
.is-about .bg-text img {
  width: 100%;
}

.is-kv {
  width: 100vw;
  margin-top: -111px;
  left: -140px;
  z-index: 0;
  position: relative;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-kv {
    left: -60px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv {
    left: -30px;
  }
}
.is-kv-wrapper {
  position: relative;
}
.is-kv-wrapper h2 {
  font-size: 36px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  z-index: 10000;
  top: 50%;
  left: 9.7%;
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .is-kv-wrapper h2 {
    font-size: 60px;
    font-size: calc(0.03 * 100vw + 21.6px);
  }
}
@media (min-width: 1280px) {
  .is-kv-wrapper h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .is-kv-wrapper h2 {
    top: calc(50% - 60px);
  }
}
@media only screen and (max-width:640px) {
  .is-kv-wrapper h2 {
    position: fixed;
    color: rgba(217, 217, 217, 0.3);
    text-align: center;
    left: 50%;
    z-index: -1000;
    transform: translate(-50%, -50%);
  }
}
.is-kv-front .is-kv-contact {
  text-align: center;
  position: relative;
  z-index: -1;
  margin-top: 30vh;
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv-contact {
    margin-top: 0;
  }
}
.is-kv-front .is-kv-contact img {
  width: 100vw;
  z-index: -1;
}
.is-kv-front .is-kv-contact .primary_title {
  margin-bottom: 0;
  margin-top: -60px;
  padding-bottom: 50px;
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv-contact .primary_title {
    padding-bottom: 140px;
  }
}
.is-kv-front .is-kv_title {
  display: -ms-flex;
  display: flex;
  flex-direction: row-reverse;
  z-index: 100;
}
.is-kv-front .is-kv_title-01, .is-kv-front .is-kv_title-02, .is-kv-front .is-kv_title-03 {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3.47%;
  height: 100%;
  color: #909090;
  text-align: center;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 400;
}
.is-kv-front .is-kv_title-01 img, .is-kv-front .is-kv_title-02 img, .is-kv-front .is-kv_title-03 img {
  width: 100%;
}
.is-kv-front .is-kv_title-01, .is-kv-front .is-kv_title-03 {
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv_title-01, .is-kv-front .is-kv_title-03 {
    font-size: 14px;
    font-size: calc(0.0025 * 100vw + 10.8px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv_title-01, .is-kv-front .is-kv_title-03 {
    font-size: 14px;
  }
}
.is-kv-front .is-kv_title-01 {
  letter-spacing: 1.5em;
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv_title-01 {
    letter-spacing: 1em;
    bottom: 132px;
    top: auto;
    writing-mode: inherit;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}
.is-kv-front .is-kv_title-02 {
  font-size: 36px;
  letter-spacing: 0.6em;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv_title-02 {
    font-size: 48px;
    font-size: calc(0.015 * 100vw + 28.8px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv_title-02 {
    font-size: 48px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-kv-front .is-kv_title-02 {
    margin: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv_title-02 {
    margin: 16px;
  }
}
.is-kv-front .is-kv_title-03 {
  letter-spacing: 0.7em;
  margin-top: 83px;
  text-orientation: upright;
}
.is-kv-front .is-kv_scroll {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-kv-front .is-kv_scroll {
    width: 70px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-kv-front .is-kv_scroll {
    width: 60px;
  }
}
.is-kv-front .is-kv_scroll .text {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 11px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv_scroll .text {
    font-size: 12px;
    font-size: calc(0.00125 * 100vw + 10.4px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv_scroll .text {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv_scroll .text {
    font-size: 15px;
  }
}
.is-kv-front .is-kv_scroll .animation {
  margin-top: 13px;
  display: block;
  position: relative;
  width: 1px;
  height: 60px;
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv_scroll .animation {
    height: 50px;
  }
}
.is-kv-front .is-kv_scroll .animation:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #000000;
}
.is-kv-front .is-sns {
  position: absolute;
  bottom: 40px;
  right: 30px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-kv-front .is-sns {
    bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-sns {
    bottom: 20px;
    right: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-sns_lists {
    flex-direction: column;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-sns_lists__item {
    margin-left: 0;
    margin-top: 10px;
  }
}
.is-kv-front-contact .primary_title {
  text-align: center;
}
.is-kv-front-contact .primary_title .en {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .is-kv-front-contact .primary_title .en {
    font-size: 32px;
    font-size: calc(0.02 * 100vw + 6.4px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front-contact .primary_title .en {
    font-size: 32px;
  }
}
.is-kv-front-contact .primary_title .tw {
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-kv-front-contact .primary_title .tw {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front-contact .primary_title .tw {
    font-size: 16px;
  }
}
.is-kv-lower {
  height: 200px;
  position: absolute;
  top: -200px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: right;
}
@media only screen and (max-width:640px) {
  .is-kv-lower {
    top: -200px;
    height: 200px;
  }
}
.is-kv-lower .primary_title {
  margin: 60px 0;
}
@media only screen and (max-width:640px) {
  .is-kv-lower .primary_title {
    margin: 40px 0;
  }
}
.is-kv-lower-about, .is-kv-lower-contact-us, .is-kv-lower-post, .is-kv-lower-privacy-policy {
  top: 0;
}
.is-kv-title {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
}
.is-kv-title span {
  display: block;
}
.is-kv-title .tw {
  font-size: 14px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-kv-title .tw {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-kv-title .tw {
    font-size: 16px;
  }
}
.is-kv-title .en {
  font-size: 20px;
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-kv-title .en {
    font-size: 26px;
    font-size: calc(0.0075 * 100vw + 16.4px);
  }
}
@media (min-width: 1280px) {
  .is-kv-title .en {
    font-size: 26px;
  }
}

.pararaxArea {
  position: relative;
  height: 810px;
  width: 100vw;
  margin-bottom: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .pararaxArea {
    margin-bottom: 0;
  }
}
.pararaxArea .pararaxItem {
  position: absolute;
  cursor: pointer;
  border: 2px solid rgba(217, 217, 217, 0);
  transition: border-color 1s;
}
.pararaxArea .pararaxItem:hover {
  border-color: #d9d9d9;
}
.pararaxArea .pararaxItem .text-content-foot {
  padding: 10px !important;
}
.pararaxArea .pararaxItem:nth-child(1) {
  display: none;
}
.pararaxArea .pararaxItem:nth-child(2) {
  top: 130px;
  left: 74.5%;
  width: 227px;
  height: 227px;
  transition: transform 0.6s linear 0.008s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 80.5%;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(2) {
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(3) {
  top: 561px;
  left: 16.3%;
  width: 135px;
  height: 135px;
  transition: transform 0.5s linear 0.004s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 7.3%;
    top: 575px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(3) {
    top: 691px;
    left: 12.7%;
    width: 80px;
    height: 80px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(4) {
  top: 66px;
  left: 25.7%;
  width: 135px;
  height: 135px;
  transition: transform 0.3s linear 0s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(4) {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(4) {
    top: 140px;
    left: 12.7%;
    width: 80px;
    height: 80px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(5) {
  top: 457px;
  left: 68.3%;
  width: 135px;
  height: 135px;
  transition: transform 0.6s linear 0.008s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(5) {
    width: 100px;
    height: 100px;
    left: 78.3%;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(5) {
    width: 80px;
    height: 80px;
    top: 720px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(6) {
  top: 692px;
  left: 70.9%;
  width: 227px;
  height: 227px;
  transition: transform 0.5s linear 0.004s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(6) {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(6) {
    width: 100px;
    height: 100px;
  }
}
.pararaxArea .pararaxItem:nth-child(7) {
  top: 859px;
  left: 35.7%;
  width: 227px;
  height: 227px;
  transition: transform 0.3s linear 0s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(7) {
    top: 720px;
    left: 20%;
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(7) {
    width: 100px;
    height: 100px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(8) {
  top: 1019px;
  left: 64%;
  width: 227px;
  height: 227px;
  transition: transform 0.8s linear 0.01s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(8) {
    top: 946px;
    left: 58%;
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(8) {
    width: 100px;
    height: 100px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(9) {
  top: 944px;
  left: 16.3%;
  width: 135px;
  height: 135px;
  transition: transform 0.6s linear 0.005s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(9) {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(9) {
    width: 80px;
    height: 80px;
    display: none;
  }
}
.pararaxArea .pararaxItem:nth-child(10) {
  top: 1216px;
  left: 45.3%;
  width: 135px;
  height: 135px;
  transition: transform 1s linear 0.2s;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .pararaxArea .pararaxItem:nth-child(10) {
    top: 1150px;
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width:640px) {
  .pararaxArea .pararaxItem:nth-child(10) {
    width: 80px;
    height: 80px;
    display: none;
  }
}
.pararaxArea .pararaxItem-swiper {
  top: 227px;
  width: 410px;
  height: 410px;
}
.pararaxArea .centerObj {
  position: absolute;
  z-index: 100;
  width: 80px;
  height: 80px;
}
.pararaxArea .centerObj img {
  width: 100%;
}

.cover-arrow {
  margin: 0 auto;
  display: block;
  position: relative;
}
.cover-arrow-pages {
  padding-bottom: 200px;
}
.cover-arrow-single .is-kv-lower-works {
  top: 0;
}
.cover-arrow-post {
  margin-bottom: 60px;
}
.cover-arrow .is-kv-post .is-kv-title {
  position: relative;
  margin: 160px auto 0;
}

.cat-wrapper {
  background: #eaeaea;
  padding: 50px;
  position: relative;
  margin-top: 200px;
}
@media only screen and (max-width:640px) {
  .cat-wrapper {
    padding: 1em;
  }
}
.cat-wrapper .split-L {
  padding-right: 100px;
}
@media only screen and (max-width:640px) {
  .cat-wrapper .split-L {
    padding-right: 0;
  }
}
.cat-wrapper h3 {
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1;
}
@media (min-width: 480px) {
  .cat-wrapper h3 {
    font-size: 20px;
    font-size: calc(0.0075 * 100vw + 10.4px);
  }
}
@media (min-width: 1280px) {
  .cat-wrapper h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .cat-wrapper h3 {
    margin-bottom: 1em;
  }
}
.cat-wrapper .article-works-tag_lists {
  margin: 0;
  justify-content: flex-start;
}
@media only screen and (max-width:640px) {
  .cat-wrapper .article-works-tag_lists {
    padding-top: 1em;
    border-top: 1px solid #d9d9d9;
  }
}

.top_kv-works .article-clm_lists__item .text-content-foot {
  opacity: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
}
.top_kv-works .article-clm_lists__item .text-content-foot .title {
  width: 90%;
  font-size: 15px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.top_kv-works .article-clm_lists__item .text-content-foot .more-btn_text-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 0;
  justify-content: center;
}
.top_kv-works .article-clm_lists__item .text-content-foot .more-btn_text-content .text {
  color: #fff;
  font-size: 12px;
}
.top_kv-works .article-clm_lists__item .text-content-foot .more-btn_text-content .arrow {
  padding-top: 4px;
  padding-left: 1em;
}
.top_kv-works .article-clm_lists__item:hover .text-content-foot {
  opacity: 1;
}

.swiper_clm-kv {
  position: absolute;
  top: 260px;
  width: 30.6vw;
  max-width: 380px;
  overflow: hidden;
  left: 50%;
  padding: 30px;
  transform: translateX(-50%);
  z-index: 100;
}
@media only screen and (min-width:641px) and (max-width:1366px) {
  .swiper_clm-kv {
    width: 460px;
  }
}
@media only screen and (max-width:640px) {
  .swiper_clm-kv {
    width: 100vw;
    overflow: auto;
  }
}
.swiper_clm-kv .swiper-slide {
  transform: scale(1);
}
.swiper_clm-kv .swiper-slide:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}
.swiper_clm-kv .text-content {
  position: relative !important;
}
.swiper_clm-kv .text-content-head .title {
  position: absolute;
  top: -30px;
  left: 0px;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .swiper_clm-kv .text-content-head .title {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .swiper_clm-kv .text-content-head .title {
    font-size: 15px;
  }
}
.swiper_clm-kv .text-content-head .tag_lists {
  position: absolute;
  top: 0;
  left: 0;
}
.swiper_clm-kv .text-content-head .tag_lists__item {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  padding: 6px 16px;
  margin-right: 12px;
  margin-bottom: 6px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 480px) {
  .swiper_clm-kv .text-content-head .tag_lists__item {
    font-size: 12px;
    font-size: calc(0.0025 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .swiper_clm-kv .text-content-head .tag_lists__item {
    font-size: 12px;
  }
}
.swiper_clm-kv .text-content-head .tag_lists__item-pick_up {
  display: none;
}
.swiper_clm-kv a:hover {
  opacity: 1;
}
.swiper_clm-kv .text-content-foot {
  padding: 30px;
}
.swiper_clm-kv .text-content-foot-text {
  display: -ms-flex;
  display: flex;
}
.swiper_clm-kv .text-content-foot-text:first-child, .swiper_clm-kv .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 180px;
}
.swiper_clm-kv .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 180px;
}
.swiper_clm-kv .text-content-foot-text:last-child {
  display: none;
}
.swiper_clm-kv .text-content-foot-text p,
.swiper_clm-kv .text-content-foot-text a,
.swiper_clm-kv .text-content-foot-text span {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .swiper_clm-kv .text-content-foot-text p,
  .swiper_clm-kv .text-content-foot-text a,
  .swiper_clm-kv .text-content-foot-text span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .swiper_clm-kv .text-content-foot-text p,
  .swiper_clm-kv .text-content-foot-text a,
  .swiper_clm-kv .text-content-foot-text span {
    font-size: 12px;
  }
}
.swiper_clm-kv .text-content-foot-item-left, .swiper_clm-kv .text-content-foot-item-right {
  flex: 1;
}
.swiper_clm-kv .text-content-foot .works-lead-kv p {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .swiper_clm-kv .text-content-foot .works-lead-kv p {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .swiper_clm-kv .text-content-foot .works-lead-kv p {
    font-size: 12px;
  }
}

.is-page-about-accommodation-plan {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 70px 26px;
  border-radius: 24px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-accommodation-plan {
    width: 88%;
    padding: 4vw 5vw;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan {
    width: 92%;
    padding: 7vw 5vw 4vw;
  }
}
.is-page-about-accommodation-plan.bg-pattern {
  background-color: rgba(255, 255, 255, 0.3);
}
.is-page-about-accommodation-plan .seconday-title {
  margin-bottom: 24px;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan .seconday-title {
    margin-bottom: 12px;
  }
}
.is-page-about-accommodation-plan_btn_lists {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_btn_lists {
    flex-direction: column;
  }
}
.is-page-about-accommodation-plan_btn_lists__item {
  margin-right: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-accommodation-plan_btn_lists__item {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_btn_lists__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.is-page-about-accommodation-plan_btn_lists__item .btn {
  display: -ms-flex;
  display: flex;
  background-color: #fff;
  border: 1px solid #000000;
  padding: 14px 20px 14px 28px;
  border-radius: 60px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn {
    padding: 1.5vw 2.5vw 1.5vw 2.4vw;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn {
    padding: 3vw 3.5vw 3vw 6vw;
  }
}
.is-page-about-accommodation-plan_btn_lists__item .btn .text {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  margin-right: 6px;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn .text {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn .text {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn .text {
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    width: 90%;
  }
}
.is-page-about-accommodation-plan_btn_lists__item .btn .arrow {
  width: 1em;
  transform: rotate(90deg);
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_btn_lists__item .btn .arrow {
    width: 1.2em;
  }
}
.is-page-about-accommodation-plan_body_lists__item {
  margin-top: 80px;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item {
    margin-top: 40px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit {
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit {
    flex-direction: column;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit {
    flex-direction: column;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L {
  width: 40%;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-L {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-L {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-L .primary_title {
    margin-bottom: 18px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .single-img,
.is-page-about-accommodation-plan_body_lists__item .sprit-L .main-slide-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide,
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail {
  overflow: hidden;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide .swiper-slide,
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide {
  cursor: pointer;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail {
  margin-top: 10px;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide {
  opacity: 0.4;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide .thumb-slide-img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide .thumb-slide-img {
    height: 120px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-L .swiper-plan_slide-thumbnail .swiper-slide .thumb-slide-img {
    height: 70px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R {
  width: 60%;
  padding-left: 80px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R {
    padding-left: 50px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R {
    width: 100%;
    margin-top: 24px;
    padding-left: 0;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .main-text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.77;
  font-weight: 500;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .main-text {
    font-size: 18px;
    font-size: calc(0.0025 * 100vw + 14.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .main-text {
    font-size: 18px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .main-text {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .main-text {
    margin-bottom: 24px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail {
  padding: 40px 60px 28px;
  border-radius: 20px;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail {
    padding: 6vw 8vw 3vw;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail.bg-pattern {
  background-color: rgba(255, 255, 255, 0.4);
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item {
  display: -ms-flex;
  display: flex;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item:not(:first-child) {
  margin-top: 24px;
  padding-top: 24px;
  position: relative;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0.6;
  background-image: linear-gradient(to right, #868686, #868686 6px, transparent 6px, transparent 12px);
  background-size: 12px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .title {
  width: 23%;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .title {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .title {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .title {
    width: 26%;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text {
  width: 77%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text {
    width: 74%;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text .notice {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text .notice {
    font-size: 14px;
    font-size: calc(0.00125 * 100vw + 12.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail_lists__item .text .notice {
    font-size: 14px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists {
  margin-top: 24px;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists__item {
  margin-right: 12px;
  margin-bottom: 12px;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists__item {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
.is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists__item .btn {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #000000;
  border-radius: 40px;
  letter-spacing: 0.02em;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists__item .btn {
    font-size: 14px;
    font-size: calc(0.00125 * 100vw + 12.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-plan_body_lists__item .sprit-R .detail .link_lists__item .btn {
    font-size: 14px;
  }
}
.is-page-about-accommodation-plan_body_lists__item#plan05 .link_lists__item.house-rule, .is-page-about-accommodation-plan_body_lists__item#plan05 .link_lists__item.amenity {
  display: none;
}
.is-page-about-accommodation-info {
  padding: 160px 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-accommodation-info {
    padding: 140px 0;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-info {
    padding: 80px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-info {
    padding: 40px 0 80px;
  }
}
.is-page-about-accommodation-info .seconday-title {
  margin-bottom: 16px;
}
.is-page-about-accommodation-info .house-rule_lists,
.is-page-about-accommodation-info .amenity_lists {
  margin-bottom: 80px;
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-info .house-rule_lists,
  .is-page-about-accommodation-info .amenity_lists {
    margin-bottom: 50px;
  }
}
.is-page-about-accommodation-info .house-rule_lists__item,
.is-page-about-accommodation-info .amenity_lists__item {
  padding: 40px 50px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-page-about-accommodation-info .house-rule_lists__item,
  .is-page-about-accommodation-info .amenity_lists__item {
    padding: 30px 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-info .house-rule_lists__item,
  .is-page-about-accommodation-info .amenity_lists__item {
    padding: 6vw 8vw;
  }
}
.is-page-about-accommodation-info .house-rule_lists__item:not(:first-child),
.is-page-about-accommodation-info .amenity_lists__item:not(:first-child) {
  margin-top: 16px;
}
.is-page-about-accommodation-info .house-rule_lists__item .title,
.is-page-about-accommodation-info .amenity_lists__item .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-info .house-rule_lists__item .title,
  .is-page-about-accommodation-info .amenity_lists__item .title {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-info .house-rule_lists__item .title,
  .is-page-about-accommodation-info .amenity_lists__item .title {
    font-size: 20px;
  }
}
.is-page-about-accommodation-info .house-rule_lists__item .text,
.is-page-about-accommodation-info .amenity_lists__item .text {
  font-size: 15px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .is-page-about-accommodation-info .house-rule_lists__item .text,
  .is-page-about-accommodation-info .amenity_lists__item .text {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-accommodation-info .house-rule_lists__item .text,
  .is-page-about-accommodation-info .amenity_lists__item .text {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-accommodation-info .house-rule_lists__item .text,
  .is-page-about-accommodation-info .amenity_lists__item .text {
    margin-top: 12px;
    line-height: 1.7;
  }
}

.c-services {
  background: var(--bg);
  color: var(--fg);
  padding: clamp(32px, 6vw, 80px) 20px;
}
.c-services__wrap {
  max-width: var(--maxw);
  margin-inline: auto;
}
.c-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .c-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.c-services__item {
  padding-bottom: 30px;
}
.c-services__title {
  font-size: clamp(16px, 2.1vw, 16px);
  line-height: 1.35;
  font-weight: 600;
  position: relative;
  padding-left: 1.3em;
}
.c-services__title::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.05em);
  font-size: 1em;
  line-height: 1;
}
.c-services__meta {
  margin: 6px 0 0;
  padding-left: calc(1.3em + 6px);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
}
.c-services__meta li {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
}
@media (min-width: 480px) {
  .c-services__meta li {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .c-services__meta li {
    font-size: 16px;
  }
}
.c-services__meta li:not(:last-child)::after {
  content: "／";
  margin-left: var(--gap-sm);
  opacity: 0.7;
}

.is-content .block-2 .flex {
  gap: 60px;
}
@media only screen and (max-width:640px) {
  .is-content .block-2 .flex {
    flex-wrap: wrap;
  }
}
.is-content .block-2 .col-1, .is-content .block-2 .col-2 {
  width: 50%;
}
@media only screen and (max-width:640px) {
  .is-content .block-2 .col-1, .is-content .block-2 .col-2 {
    width: 100%;
  }
}
.is-content .block-2 .ttl {
  font-family: "kiro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .is-content .block-2 .ttl {
    font-size: 40px;
    font-size: calc(0.025 * 100vw + 8px);
  }
}
@media (min-width: 1280px) {
  .is-content .block-2 .ttl {
    font-size: 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-content .block-2 .ttl {
    text-align: center;
  }
}
.is-content .block-2 .ttl-sub {
  font-family: "kiro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 2em;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 480px) {
  .is-content .block-2 .ttl-sub {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-content .block-2 .ttl-sub {
    font-size: 20px;
  }
}/*# sourceMappingURL=import.min.css.map */