@charset "UTF-8";
.red {
  color: #7d0d00;
}

.strong {
  font-weight: 700;
  font-size: inherit;
}

.white {
  color: #fff;
}

@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);
  }
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.textanimation span {
  animation: showText 3s backwards;
  display: inline-block;
}

.textanimation > span {
  overflow: hidden;
}

.textanimation > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

.btn-contact a {
  display: inline-block;
  font-family: "source-han-sans-traditional", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #2F4858;
  padding: 14px 21px;
  border-radius: 5px;
}
@media (min-width: 480px) {
  .btn-contact a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .btn-contact a {
    font-size: 16px;
  }
}
.btn-contact i {
  width: 35px;
  background-color: #2F4858;
  height: 1px;
  position: relative;
  display: inline-block;
}
.btn-contact i:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F4858;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn-readmore {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2F4858;
  width: 28.8%;
  margin: 60px auto;
  cursor: pointer;
  padding-bottom: 1em;
}
@media only screen and (max-width:640px) {
  .btn-readmore {
    width: 50%;
  }
}
.btn-readmore a {
  width: 100%;
  text-align: left;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #2F4858;
}
.btn-readmore:hover i:before {
  transform: translateX(31px);
}
.btn-readmore i {
  width: 35px;
  background-color: #2F4858;
  height: 1px;
  top: 50%;
  display: inline-block;
  position: relative;
}
.btn-readmore i:before {
  transition: transform 0.3s linear;
  display: inline-block;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F4858;
  top: -3px;
  transform: translateX(0);
  left: 0;
}

.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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.5;
  font-size: 10px;
  letter-spacing: 0.14em;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  font-family: "Noto Sans TC", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  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 {
    font-size: 9px;
  }
}
@media only screen and (max-width:640px) {
  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 {
    font-size: 8px;
  }
}

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

img {
  max-width: 100%;
  object-fit: cover;
}

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

.breadcrumbs {
  padding-top: 270px;
  margin-bottom: 60px;
  overflow: auto;
}
.breadcrumbs p {
  display: -ms-flex;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .breadcrumbs p {
    justify-content: center;
  }
}
.breadcrumbs span {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}
.breadcrumbs i {
  font-size: 12px;
  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: 12px;
  font-family: "source-han-sans-traditional", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 480px) {
  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
  }
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs .current-item {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width:640px) {
  .breadcrumbs {
    padding-top: 200px;
  }
}

.is-kv-lower-archive .breadcrumbs {
  padding-top: 0;
  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-stretch-top {
  justify-content: space-between;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}

.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: "source-han-sans-traditional", sans-serif;
  font-weight: 400;
  color: #2F4858;
  letter-spacing: 0.14em;
}

.tw {
  font-family: "source-han-sans-traditional", sans-serif;
}

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

.is-other .split {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  position: relative;
  right: 0;
  width: 100vw;
  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%;
}
@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: "Roboto", sans-serif;
  font-size: 12px;
  color: #c1c1c1;
  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: "Zen Maru Gothic", 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: #c1c1c1;
}
@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;
  justify-content: space-between;
}
@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: 50%;
  padding-left: 8%;
}
@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: "Roboto", sans-serif;
  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: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #c1c1c1;
}
@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: "Roboto", sans-serif;
  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 {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.16);
  text-align: center;
  position: relative;
  z-index: 3;
}
.footer .is-main-nav_lists-footer ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px auto 60px;
}
.footer .is-main-nav_lists-footer ul li a {
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .footer .is-main-nav_lists-footer ul li a {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .footer .is-main-nav_lists-footer ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .footer {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .footer-copyright, .footer-text {
    order: 2;
    width: 100%;
  }
}
.footer-copyright {
  font-size: 12px;
  font-family: "source-han-sans-traditional", sans-serif;
  font-weight: 400;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 480px) {
  .footer-copyright {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .footer-copyright {
    font-size: 12px;
  }
}
.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 .claim {
  opacity: 0.24;
  font-size: 11px;
  margin-top: 5em;
  margin-bottom: 2em;
}
@media (min-width: 480px) {
  .footer .claim {
    font-size: 11px;
    font-size: calc(0 * 100vw + 11px);
  }
}
@media (min-width: 1280px) {
  .footer .claim {
    font-size: 11px;
  }
}
.footer-text ul {
  display: flex;
  gap: 20px;
}
.footer-text-L {
  text-align: center;
}
.footer-text-R {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .footer-text {
    text-align: center;
  }
}
.footer-text .btn {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  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;
}
@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;
}
@media only screen and (max-width:640px) {
  .footer-text {
    margin: 30px auto;
  }
}
.footer_ftr {
  padding: 4.21% 0 2.11%;
  margin: 0 9.83%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width:640px) {
  .footer_ftr {
    flex-wrap: wrap;
    padding-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .footer_ftr p {
    text-align: center;
  }
}
.footer-go-to-top {
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: #fff000;
  border-radius: 8px;
  color: #000;
}
.footer-go-to-top .triangle {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .footer-go-to-top {
    margin: 0 auto 60px;
    padding-left: 2px;
  }
}
.footer-go-to-top i {
  font-size: 3.2rem;
  line-height: 70px;
}

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

.header {
  width: 100%;
  position: fixed;
  padding: 30px 140px 30px 30px;
  top: 0;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width:640px) {
  .header {
    padding: 0;
    left: 0;
    transform: none;
  }
}
.header .logo {
  background-color: #fff;
  border-radius: 0 0 65px 65px;
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 0;
}
@media only screen and (max-width:640px) {
  .header .logo {
    top: 0;
    transform: translateX(-50%);
  }
}
.header .logo a {
  padding: 11px 30px;
  display: block;
}
@media only screen and (max-width:640px) {
  .header-navi-btn {
    margin-right: 0;
  }
}
.header-navi-btn-phone {
  margin-right: 30px;
}
@media only screen and (max-width:640px) {
  .header-navi-btn-phone {
    margin-right: 0;
  }
}
.header-navi-btn a {
  display: inline-block;
  padding: 1em 23px 1em 30px;
  background-color: #fff;
  color: #2F4858;
  font-weight: 700;
  font-size: 13px;
  border-radius: 32px;
}
@media (min-width: 480px) {
  .header-navi-btn a {
    font-size: 16px;
    font-size: calc(0.00375 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .header-navi-btn a {
    font-size: 16px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .header-navi-btn a .en {
    font-size: 12px;
  }
}
.header-navi-btn-contact a:hover i:before {
  transform: translateX(31px);
}
.header-navi-btn-contact a i {
  width: 35px;
  background-color: #2F4858;
  height: 1px;
  position: relative;
  margin-bottom: 4px;
  display: inline-block;
  margin-left: 25px;
}
.header-navi-btn-contact a i:before {
  transition: transform 0.3s linear;
  display: inline-block;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F4858;
  top: -3px;
  transform: translateX(0);
  left: 0;
}
.header-navi-btn-kv {
  font-size: 16px !important;
  background-color: #42C9B2 !important;
  color: #fff !important;
}
.header-navi-btn-kv i {
  background-color: #fff !important;
}
.header-navi-btn-kv i:before {
  background-color: #fff !important;
}
.header_inner {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: -1;
}
.header_inner .box {
  min-width: 159px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .header_inner .box {
    min-width: auto;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .header_inner .box {
    min-width: auto;
  }
}
@media only screen and (max-width:640px) {
  .header_inner .box {
    min-width: auto;
  }
}
.header-R {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .header-R {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  .header-R {
    display: none;
    justify-content: flex-start;
  }
}
.header-R .logo img {
  max-width: inherit;
}
.header-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width:640px) {
  .header-fixed {
    left: 0;
    display: flex;
  }
}
.header-fixed .btn-more {
  border-radius: 21px 0 0 0;
}
@media only screen and (max-width:640px) {
  .header-fixed .btn-more {
    display: flex;
    border-radius: 0;
    width: 50%;
    margin: 0;
    justify-content: center;
  }
}
.header-fixed .btn-more-download {
  margin-bottom: -18px;
  background-color: #36b1c7;
}
@media only screen and (max-width:640px) {
  .header-fixed .btn-more-download {
    margin-bottom: 0;
  }
}
.header-fixed .btn-more-contact {
  background-color: #f15a21;
}
.header-fixed .btn-more a {
  writing-mode: vertical-lr;
  width: 58px;
  height: 182px;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .header-fixed .btn-more a {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .header-fixed .btn-more a {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .header-fixed .btn-more a {
    writing-mode: horizontal-tb;
    width: 100%;
    height: 62px;
  }
}
.header-fixed .btn-more a i {
  margin-right: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width:640px) {
  .header-fixed .btn-more a i {
    margin-bottom: 0;
  }
}
.header_wrapper-sp {
  display: flex;
  justify-content: space-between;
  padding: 5%;
}
.header_wrapper-sp img {
  margin: 0;
  width: 70%;
}

.main_content {
  padding: 0 140px;
  margin: 100px auto 160px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .main_content {
    padding: 0 5%;
    margin: 60px auto;
  }
}

@media only screen and (min-width:768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .tb {
    display: block !important;
  }
  .sp {
    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: 0 100px;
  margin: 0 auto;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .wrapper-1 {
    padding: 0 10%;
  }
}
@media only screen and (max-width:640px) {
  .wrapper-1 {
    padding: 0 5%;
  }
}

.wrapper-2 {
  margin: 100px auto 160px;
  padding: 0;
  z-index: 0;
  position: relative;
}
.wrapper-3 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 9.83% !important;
  background-image: none !important;
}
.wrapper-3::before {
  content: "";
  width: 100vw;
  height: calc(100% - 60px);
  background-color: #f5f5f5;
  position: absolute;
  left: 50%;
  top: calc(50% + 60px);
  transform: translate(-50%, -50%);
}
.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:1024px) {
  .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:768px) 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:768px) 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;
  }
}

.wrapper-single {
  max-width: 928px;
  margin: 0 auto;
}

.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 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.primary_btn .btn {
  transition: 0.5s;
  position: relative;
  width: 200px;
  height: 50px;
  min-width: 200px;
  line-height: 50px;
  background-color: #42C9B2;
  border: 1px solid #42C9B2;
  border-radius: 5px;
}
@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 i {
  margin-left: 10px;
}
.primary_btn .btn .en {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  text-align: center;
  color: #fff;
  line-height: 1;
  display: block;
}
@media (min-width: 480px) {
  .primary_btn .btn .en {
    font-size: 18px;
    font-size: calc(0.0025 * 100vw + 14.8px);
  }
}
@media (min-width: 1280px) {
  .primary_btn .btn .en {
    font-size: 18px;
  }
}
.primary_btn .btn .tw {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
@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:hover {
  opacity: 0.6;
  transition: 1s;
}
.primary_btn .btn:hover .tw {
  color: #fff;
}
.primary_btn .btn:hover::after {
  transition: 1s;
  left: 10px;
  background-color: #fff;
}
.primary_btn-wh .btn {
  color: #fff;
  border: 1px solid #fff;
}
.primary_btn-wh .btn .en {
  color: #fff;
}
.primary_btn-wh .btn .arrow {
  color: #fff;
}

.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: "Zen Maru Gothic", 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 .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;
}

.btn-more {
  border-radius: 38px;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .btn-more {
    margin: 0 10px;
  }
}
.btn-more-phone a {
  letter-spacing: 0.04em;
}
.btn-more a {
  width: 208px;
  height: 62px;
  font-size: 16px;
  font-weight: 700;
  line-height: 62px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .btn-more a {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .btn-more a {
    font-size: 20px;
  }
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .btn-more a {
    text-align: center;
    width: 175px;
  }
}
@media only screen and (max-width:640px) {
  .btn-more a {
    height: 55px;
  }
}
.btn-more a i {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 480px) {
  .btn-more a i {
    font-size: 22px;
    font-size: calc(0.005 * 100vw + 15.6px);
  }
}
@media (min-width: 1280px) {
  .btn-more a i {
    font-size: 22px;
  }
}
.btn-more-download {
  background: #2F4858;
}
.btn-more-contact {
  background: #51b848;
}

.line-gray {
  display: inline-block;
  background-color: #f2f2f2;
  width: 100%;
  height: 1px;
}

#copyLinkButton {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 58px;
  height: 58px;
  padding-left: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #42C9B2;
  cursor: pointer;
  transition: 0.5s;
}
@media only screen and (max-width:640px) {
  #copyLinkButton {
    margin-top: 30px;
    position: relative;
    right: auto;
    bottom: auto;
    width: 29px;
    height: 29px;
    padding-left: 6px;
    float: right;
  }
}
#copyLinkButton i {
  color: #42C9B2;
  font-size: 15px;
}
#copyLinkButton:hover {
  background: #42C9B2;
}
#copyLinkButton:hover i {
  color: #fff;
}

.is-obatour-plan-top-list {
  margin: 85px auto 76px;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-obatour-plan-top-list {
    margin: 60px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-obatour-plan-top-list {
    margin: 60px 0;
  }
}
.is-obatour-plan-top__txt {
  letter-spacing: 0.1em;
  font-family: "source-han-sans-traditional", sans-serif;
  line-height: 1.5;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-obatour-plan-top__txt {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-obatour-plan-top__txt {
    font-size: 16px;
  }
}

.top-list-item {
  width: calc(33.3333333333% - 30px);
  margin: 0 30px 0 0;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  position: relative;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .top-list-item {
    justify-content: flex-start;
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
}
.top-list-item:last-child {
  margin: 0;
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (max-width:640px) {
  .top-list-item:last-child {
    margin: 0;
  }
}
@media only screen and (max-width:640px) {
  .top-list-item {
    width: 100%;
    margin: 30px auto;
  }
}
.top-list-item:nth-of-type(2) {
  border: 1px solid #2F4858;
}
.top-list-item:nth-of-type(2) .top-list-item__discount {
  background-color: #2F4858;
}
.top-list-item:nth-of-type(2) .top-list-item__title {
  color: #2F4858;
}
.top-list-item:nth-of-type(2) .top-list-item__price {
  color: #2F4858;
}
.top-list-item:nth-of-type(2) .top-list-item__details {
  margin-bottom: 50px;
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (max-width:640px) {
  .top-list-item:nth-of-type(2) .top-list-item__details {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (max-width:640px) {
  .top-list-item:nth-of-type(2) {
    margin-right: 0;
  }
}
.top-list-item:not(:nth-child(2)) {
  margin-top: 20px;
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (max-width:640px) {
  .top-list-item:not(:nth-child(2)) {
    margin-top: 30px;
  }
}
.top-list-item--custom .top-list-item__price {
  color: #000;
  font-family: "source-han-sans-traditional", sans-serif;
  font-size: 3rem;
}
.top-list-item__price {
  font-size: 3.2rem;
  color: #000;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
.top-list-item__price span {
  font-size: 16px;
  color: inherit;
  font-weight: 700;
}
@media (min-width: 480px) {
  .top-list-item__price span {
    font-size: 18px;
    font-size: calc(0.0025 * 100vw + 14.8px);
  }
}
@media (min-width: 1280px) {
  .top-list-item__price span {
    font-size: 18px;
  }
}
.top-list-item__original-price {
  font-size: 1.2rem;
  color: #bebebe;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
.top-list-item__original-price span {
  font-family: "source-han-sans-traditional", sans-serif;
  padding-right: 1em;
  color: inherit;
  font-weight: inherit;
  letter-spacing: 0.04rem;
}
.top-list-item__discount {
  padding: 14px 0 9px;
  background-color: #000;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
.top-list-item__discount span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "m-plus-rounded-1c", sans-serif;
}
.top-list-item__recommendation {
  font-size: 1.2rem;
  margin: 0 30px;
  font-weight: 700;
  font-family: "source-han-sans-traditional", sans-serif;
}
.top-list-item__title {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 10px 0;
  letter-spacing: 0.04em;
}
.top-list-item__details {
  text-align: center;
  margin: 30px auto;
  min-height: 150px;
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (max-width:640px) {
  .top-list-item__details {
    min-height: auto;
  }
}
.top-list-item__features {
  margin: 0 30px 30px;
  padding: 30px 0;
  border-top: 1px solid #ebebeb;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .top-list-item__features {
    min-height: auto;
  }
}
@media only screen and (max-width:640px) {
  .top-list-item__features {
    min-height: auto;
  }
}
.top-list-item__features ul {
  list-style: none;
  padding: 0;
}
.top-list-item__feature {
  font-size: 1.2rem;
  font-family: "source-han-sans-traditional", sans-serif;
  font-weight: 500;
  margin: 5px 0;
  list-style-type: disc;
  margin-left: 1.2em;
}
.top-list-item__contract {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.top-list-item__contract span {
  font-family: "source-han-sans-traditional", sans-serif;
  font-size: 12px;
  margin-right: 10px;
}
@media (min-width: 480px) {
  .top-list-item__contract span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .top-list-item__contract span {
    font-size: 12px;
  }
}
.top-list-item__bar {
  position: absolute;
  right: -21px;
  top: -21px;
  width: 30px;
  height: 9px;
  border-radius: 14px;
  background-color: #2F4858;
  transform: rotate(-48deg);
}
.top-list-item__bar::before, .top-list-item__bar::after {
  content: "";
  position: absolute;
  background-color: #2F4858;
  border-radius: 14px;
  width: 30px;
  height: 9px;
  right: 0;
}
.top-list-item__bar::before {
  transform: rotate(-25deg);
  top: -21px;
}
.top-list-item__bar::after {
  transform: rotate(25deg);
  top: 21px;
}

.is-how-to-apply-wrapper {
  margin: 76px auto 160px;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-how-to-apply-wrapper {
    margin: 60px auto 120px;
  }
}
@media only screen and (max-width:640px) {
  .is-how-to-apply-wrapper {
    margin: 60px auto 100px;
  }
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps-list__item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.steps-list__item:last-child {
  margin-bottom: 0;
}
.steps-list__marker {
  font-family: "source-han-sans-traditional", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 35px;
  color: #2F4858;
  position: relative;
}
.steps-list__marker::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2F4858;
  right: -1.5rem;
  top: 1.5rem;
}
.steps-list__content {
  font-size: 2rem;
  font-family: "source-han-sans-traditional", sans-serif;
}
.steps-list__content a {
  font-family: inherit;
  font-size: inherit;
  color: #2F4858;
  font-weight: 700;
}

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

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

.post_tag {
  display: block;
  position: absolute;
  top: -10px;
  left: 10px;
  color: #fff;
  border-radius: 13px;
  font-size: 12px;
  font-family: "source-han-sans-traditional", sans-serif;
  padding: 4px 16px 6px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .post_tag {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .post_tag {
    font-size: 12px;
  }
}
.post_tag_busan {
  background-color: #D5358D;
}
.post_tag_seoul {
  background-color: #2F4858;
}
@media only screen and (max-width:640px) {
  .post_tag {
    top: -10px;
    left: -10px;
    border-radius: 16px;
  }
}

.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 {
  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: 10px 10px 0 0;
  }
}
.is-tags_lists__item a {
  display: block;
  border-radius: 23px;
  font-style: normal;
}
@media only screen and (max-width:640px) {
  .is-tags_lists__item a {
    padding: 0;
  }
}
.is-tags_lists__item a:hover {
  color: #2F4858;
  background: #fff;
  opacity: 1;
}

.archive-hdr {
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
  margin: 0 auto;
}
.archive-hdr-ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  color: #2F4858;
}
@media (min-width: 480px) {
  .archive-hdr-ttl {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .archive-hdr-ttl {
    font-size: 32px;
  }
}
.archive-hdr-ttl i {
  font-size: inherit;
  padding-right: 15px;
  color: #2F4858;
}
.archive-hdr .article-product-tag_lists,
.archive-hdr .article-course-tag_lists,
.archive-hdr .article-blog-tag_lists {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .archive-hdr .article-product-tag_lists,
  .archive-hdr .article-course-tag_lists,
  .archive-hdr .article-blog-tag_lists {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 0;
  }
}
.archive-hdr .article-product-tag_lists .is-tags_lists__item-busan a,
.archive-hdr .article-course-tag_lists .is-tags_lists__item-busan a,
.archive-hdr .article-blog-tag_lists .is-tags_lists__item-busan a {
  background: url("../images/common/tag-busan.jpg") center/cover no-repeat;
}
.archive-hdr .article-product-tag_lists .is-tags_lists__item-seoul a,
.archive-hdr .article-course-tag_lists .is-tags_lists__item-seoul a,
.archive-hdr .article-blog-tag_lists .is-tags_lists__item-seoul a {
  background: url("../images/common/tag-seoul.jpg") center/cover no-repeat;
}
.archive-hdr .article-product-tag_lists .current .tag-link,
.archive-hdr .article-course-tag_lists .current .tag-link,
.archive-hdr .article-blog-tag_lists .current .tag-link {
  opacity: 1;
}
.archive-hdr .article-product-tag_lists li,
.archive-hdr .article-course-tag_lists li,
.archive-hdr .article-blog-tag_lists li {
  margin-right: 20px;
  margin-bottom: 20px;
}
.archive-hdr .article-product-tag_lists li:last-child,
.archive-hdr .article-course-tag_lists li:last-child,
.archive-hdr .article-blog-tag_lists li:last-child {
  margin-right: 0;
}
.archive-hdr .article-product-tag_lists li a,
.archive-hdr .article-course-tag_lists li a,
.archive-hdr .article-blog-tag_lists li a {
  display: inline-block;
  padding: 27px 50px;
  border-radius: 10px;
  transition: 1s;
  background: #2F4858;
  opacity: 0.5;
}
@media only screen and (max-width:640px) {
  .archive-hdr .article-product-tag_lists li a,
  .archive-hdr .article-course-tag_lists li a,
  .archive-hdr .article-blog-tag_lists li a {
    padding: 13px 25px;
  }
}
.archive-hdr .article-product-tag_lists li a:hover,
.archive-hdr .article-course-tag_lists li a:hover,
.archive-hdr .article-blog-tag_lists li a:hover {
  opacity: 1;
}
.archive-hdr .article-product-tag_lists li a .tw,
.archive-hdr .article-course-tag_lists li a .tw,
.archive-hdr .article-blog-tag_lists li a .tw {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}
@media (min-width: 480px) {
  .archive-hdr .article-product-tag_lists li a .tw,
  .archive-hdr .article-course-tag_lists li a .tw,
  .archive-hdr .article-blog-tag_lists li a .tw {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .archive-hdr .article-product-tag_lists li a .tw,
  .archive-hdr .article-course-tag_lists li a .tw,
  .archive-hdr .article-blog-tag_lists li a .tw {
    font-size: 12px;
  }
}
.archive-hdr-about {
  padding: 0 9.83%;
}
@media only screen and (max-width:640px) {
  .archive-hdr-about {
    padding: 0 5%;
  }
}
.archive-hdr-about .article-course-tag_lists {
  width: 50%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media only screen and (max-width:640px) {
  .archive-hdr-about .article-course-tag_lists {
    width: 100%;
  }
}
.archive-hdr-about .article-course-tag_lists .is-tags_lists__item a {
  padding: 3px 16px 4px 16px;
  border: 1px solid #fff;
}
.archive-hdr-about .article-course-tag_lists .is-tags_lists__item a .tw {
  color: #fff;
  font-size: 12px;
}
.archive-hdr-about-right {
  justify-content: flex-end;
  margin-left: calc(50% - 140px);
}
@media only screen and (max-width:640px) {
  .archive-hdr-about-right {
    margin-left: 0;
  }
}
.archive-hdr-about .lead {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .archive-hdr-about .lead {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .archive-hdr-about .lead {
    font-size: 16px;
  }
}
.archive-hdr-about .lead-tw {
  width: 50%;
}
@media only screen and (max-width:640px) {
  .archive-hdr-about .lead-tw {
    width: 100%;
  }
}
.archive-hdr-about .lead-en {
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
}

.hero-ttl-small {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (min-width: 480px) {
  .hero-ttl-small {
    font-size: 28px;
    font-size: calc(0.01 * 100vw + 15.2px);
  }
}
@media (min-width: 1280px) {
  .hero-ttl-small {
    font-size: 28px;
  }
}
.hero-ttl-small .dot {
  width: 3px;
  height: 3px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #000;
  margin: 0 12px 3px;
}
.hero-ttl-main {
  font-size: 16px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  color: #fff;
  margin-top: 45px;
  line-height: 2;
}
@media (min-width: 480px) {
  .hero-ttl-main {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .hero-ttl-main {
    font-size: 20px;
  }
}
.hero-ttl-main .sub {
  margin-top: -2em;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: #fff;
}
@media (min-width: 480px) {
  .hero-ttl-main .sub {
    font-size: 14px;
    font-size: calc(0.0025 * 100vw + 10.8px);
  }
}
@media (min-width: 1280px) {
  .hero-ttl-main .sub {
    font-size: 14px;
  }
}

.archive-ttl {
  font-size: 24px;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
@media (min-width: 480px) {
  .archive-ttl {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .archive-ttl {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .archive-ttl {
    margin-top: 1em;
  }
}
.archive-ttl .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  margin-right: 20px;
}

.primary_title {
  margin-bottom: 0.625em;
  position: relative;
  line-height: 1.5;
  font-size: 32px;
}
@media (min-width: 480px) {
  .primary_title {
    font-size: 48px;
    font-size: calc(0.02 * 100vw + 22.4px);
  }
}
@media (min-width: 1280px) {
  .primary_title {
    font-size: 48px;
  }
}
@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: block;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  text-align: center;
}
.primary_title .en {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #42C9B2;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  align-items: center;
}
@media (min-width: 480px) {
  .primary_title .en {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .primary_title .en {
    font-size: 20px;
  }
}
.primary_title .en .line {
  width: 60px;
  height: 1px;
  background-color: #000;
  opacity: 0.1;
  margin-right: 10px;
  display: inline-block;
}
.primary_title .tw {
  font-size: 32px;
  color: #2F4858;
  font-family: "source-han-sans-traditional", sans-serif;
  font-weight: 700;
}
@media (min-width: 480px) {
  .primary_title .tw {
    font-size: 64px;
    font-size: calc(0.04 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .primary_title .tw {
    font-size: 64px;
  }
}
.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: #c1c1c1;
  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-lead {
  margin-bottom: 3.75em;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 480px) {
  .primary_title-lead {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .primary_title-lead {
    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: #2F4858;
}
.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;
  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;
  }
}
.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: "Zen Maru Gothic", 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: "Roboto", sans-serif;
  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: 36px;
  line-height: 1.2;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .is-about_why h3 {
    font-size: 48px;
    font-size: calc(0.015 * 100vw + 28.8px);
  }
}
@media (min-width: 1280px) {
  .is-about_why h3 {
    font-size: 48px;
  }
}
.is-about_what .primary_title {
  text-align: center;
}
.is-about_what ul {
  width: auto;
}
.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-works-other .title {
  text-align: left;
  font-family: "Zen Maru Gothic", 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: "Roboto", sans-serif;
  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: #2F4858;
  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 {
  display: block;
  font-size: 0;
  border-radius: 5px;
}
.article-clm_lists-1 .clm_item {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
.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 60px 60px 0;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .article-clm_lists-3 .clm_item {
    width: calc((100% - 80px) / 2);
  }
}
@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-3 .clm_item:nth-of-type(3n) {
  margin-right: 0;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .article-clm_lists-3 .clm_item:nth-of-type(3n) {
    margin-right: 30px;
  }
}
@media only screen and (max-width:640px) {
  .article-clm_lists-3 .clm_item:nth-of-type(3n) {
    margin-right: 30px;
  }
}
.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;
  }
}

.article-archive-blog_lists {
  justify-content: space-between;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .article-archive-blog_lists .article-clm_lists__item {
    width: calc((100% - 80px) / 2);
  }
}
@media only screen and (max-width:640px) {
  .article-archive-blog_lists .article-clm_lists__item {
    margin: 0 0 40px 0 !important;
  }
}
.article-blog-lower .paginavi ul {
  margin-top: -10px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}

.archive-keyword {
  width: 50%;
  margin: 60px auto 160px;
}
@media only screen and (max-width:640px) {
  .archive-keyword {
    width: 100%;
    margin: 30px auto 80px;
  }
}
.archive-keyword ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .archive-keyword ul {
    flex-wrap: wrap;
  }
}
.archive-keyword ul li a {
  padding: 3px 16px;
  border: 1px solid #2F4858;
  border-radius: 27px;
}
.archive-keyword ul li a span {
  color: #2F4858;
  font-size: 12px;
}
.archive_flow h2 {
  text-align: center;
}
.archive_flow_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .archive_flow_lists {
    margin-top: 30px;
  }
}
.archive_flow_lists__item {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  border-radius: 10px;
  padding: 60px;
  gap: 60px;
}
@media only screen and (max-width:640px) {
  .archive_flow_lists__item {
    flex-direction: column;
    padding: 10%;
    gap: 30px;
  }
}
.archive_flow_lists__item .step {
  width: 20%;
}
@media only screen and (max-width:640px) {
  .archive_flow_lists__item .step {
    width: 100%;
  }
}
.archive_flow_lists__item .step p {
  font-size: 12px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 480px) {
  .archive_flow_lists__item .step p {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .archive_flow_lists__item .step p {
    font-size: 16px;
  }
}
.archive_flow_lists__item .step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
@media (min-width: 480px) {
  .archive_flow_lists__item .step h3 {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .archive_flow_lists__item .step h3 {
    font-size: 32px;
  }
}
.archive_flow_lists__item .content {
  width: 80%;
}
@media only screen and (max-width:640px) {
  .archive_flow_lists__item .content {
    width: 100%;
  }
}
.archive_flow_lists__item .content p {
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .archive_flow_lists__item .content p {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .archive_flow_lists__item .content p {
    font-size: 16px;
  }
}
.archive_flow_lists__item .content .btn-readmore {
  margin: 0;
  position: absolute;
  bottom: 25px;
  right: 25px;
  border-bottom: 1px solid #fff;
  width: 180px;
  padding-bottom: 10px;
}
@media only screen and (max-width:640px) {
  .archive_flow_lists__item .content .btn-readmore {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
}
.archive_flow_lists__item .content .btn-readmore i {
  background-color: #fff;
}
.archive_flow_lists__item .content .btn-readmore i::before {
  background-color: #fff;
}
.archive_flow_lists__item p, .archive_flow_lists__item h3, .archive_flow_lists__item i, .archive_flow_lists__item a {
  color: #fff;
}
.archive_flow_lists__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.archive_flow_lists__item-1 {
  background: url("../images/flow/bg-flow-1.jpg") center/cover no-repeat;
}
.archive_flow_lists__item-2 {
  background: url("../images/flow/bg-flow-2.jpg") center/cover no-repeat;
}
.archive_flow_lists__item-3 {
  background: url("../images/flow/bg-flow-3.jpg") center/cover no-repeat;
}
.archive_flow_lists__item-4 {
  background: url("../images/flow/bg-flow-4.jpg") center/cover no-repeat;
}
.archive_flow_lists__item-5 {
  background: url("../images/flow/bg-flow-5.jpg") center/cover no-repeat;
}

.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: "Roboto", sans-serif;
  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: #2F4858;
  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:1024px) {
  .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:1024px) {
  .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:1024px) {
  .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 #42C9B2;
  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 .btn {
  width: 35px;
  height: 34px;
  border: 1px solid rgba(47, 72, 88, 0.2);
  border-radius: 50%;
  text-align: center;
  display: block;
}
.is-sns_lists__item .btn i {
  font-size: 11px;
  display: block;
  line-height: 34px;
  color: #2F4858;
  padding-left: 2px;
}
@media (min-width: 480px) {
  .is-sns_lists__item .btn i {
    font-size: 11px;
    font-size: calc(0 * 100vw + 11px);
  }
}
@media (min-width: 1280px) {
  .is-sns_lists__item .btn i {
    font-size: 11px;
  }
}
.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-phone-alt,
.is-sns_lists__item .fa-line {
  display: inline-block;
}
.is-sns_lists__item .fa-phone-alt {
  border: 1px solid #F15A21;
  color: #F15A21;
}
.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: #c1c1c1;
  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: #c1c1c1;
  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-contact .wrapper-3 {
  width: 69%;
  padding: 0 !important;
  margin-top: 160px;
  margin-bottom: 100px;
}
@media only screen and (max-width:640px) {
  .is-contact .wrapper-3 {
    width: 100%;
    margin-top: 60px;
    padding: 0 5% !important;
  }
}
.is-contact .wrapper-3::before {
  display: none;
}

.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 {
  position: relative;
  z-index: 3;
}
@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 .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: 500;
  color: #2F4858;
}
@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: #c1c1c1;
  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;
  color: #EF3131;
  font-size: 11px;
  display: inline-block;
}
@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;
  }
}
.is-contact .contact_wrap__sec .contact-table .select .wpcf7-form-control-wrap {
  -webkit-appearance: none;
}
.is-contact .contact_wrap__sec .contact-table .select .wpcf7-form-control-wrap::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 12px;
  pointer-events: none;
}
@media (min-width: 480px) {
  .is-contact .contact_wrap__sec .contact-table .select .wpcf7-form-control-wrap::after {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-contact .contact_wrap__sec .contact-table .select .wpcf7-form-control-wrap::after {
    font-size: 20px;
  }
}
.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-size: 15px;
  color: #ACACAC;
}
@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 input[type=text] option,
.wpcf7 input[type=tel] option,
.wpcf7 input[type=email] option,
.wpcf7 textarea option,
.wpcf7 input[type=submit] option,
.wpcf7 input[type=number] option,
.wpcf7 .wpcf7-select option {
  width: auto;
}
.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 #d8d8d8;
  font-size: 15px;
  background: #f3f5f5;
  outline: none;
  color: #000;
  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: "Zen Maru Gothic", 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: 20px 20px;
  border: 1px solid #2F4858;
  font-size: 15px;
  background: #EFEFEF;
  color: #2F4858;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .wpcf7 .wpcf7-radio {
    margin-top: 10px;
    gap: 30px;
  }
}
@media only screen and (max-width:640px) {
  .wpcf7 .wpcf7-radio {
    margin-top: 10px;
    gap: 20px;
  }
}
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  color: #2F4858;
}
@media (min-width: 480px) {
  .wpcf7 .wpcf7-list-item-label {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 .wpcf7-list-item-label {
    font-size: 15px;
  }
}
.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: 30px;
  margin-bottom: auto;
  margin-right: 10px;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 30px;
}
.wpcf7 input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #2F4858; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 6px #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: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
  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: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  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: 500;
  color: #EF3131;
  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: 82px;
  color: #fff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.26em;
  background: #42C9B2;
  appearance: none;
  border: 1px solid #42C9B2;
  transition: 0.5s;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 480px) {
  .wpcf7 #contactSub #submit {
    font-size: 26px;
    font-size: calc(0.01 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .wpcf7 #contactSub #submit {
    font-size: 26px;
  }
}
@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: #42C9B2;
}

.is-guidance .main_content {
  max-width: 1200px;
  margin: 100px auto;
}
.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: #2F4858;
  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: 50px;
  height: 50px;
  background: rgba(255, 16, 16, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  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 ul {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.is-nav .is-main-nav_lists ul li {
  margin-right: 1em;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-nav .is-main-nav_lists ul {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
}
.is-nav .is-main-nav_lists a {
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .is-nav .is-main-nav_lists a {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-nav .is-main-nav_lists a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists a {
    display: block;
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) and (min-width: 480px) {
  .is-nav .is-main-nav_lists a {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media only screen and (max-width:640px) and (min-width: 1280px) {
  .is-nav .is-main-nav_lists a {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists a:after {
    content: "\f105";
    position: absolute;
    right: 0px;
    top: 1px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
  }
}
@media only screen and (max-width:640px) and (max-width:640px) {
  .is-nav .is-main-nav_lists a:after {
    top: 50%;
    transform: translateY(-50%);
  }
}
.is-nav .is-main-nav_lists .menu-item {
  position: relative;
  display: block;
  margin-right: 20px;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists .menu-item {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.is-nav .is-main-nav_lists .menu-item a {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  position: relative;
  white-space: nowrap;
  color: #fff;
  font-family: "source-han-sans-traditional", sans-serif;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists .menu-item a {
    display: block;
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) and (min-width: 480px) {
  .is-nav .is-main-nav_lists .menu-item a {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media only screen and (max-width:640px) and (min-width: 1280px) {
  .is-nav .is-main-nav_lists .menu-item a {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists .menu-item a:after {
    content: "\f105";
    position: absolute;
    right: 0px;
    top: 1px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
  }
}
.is-nav .is-main-nav_lists-footer {
  margin-right: 30px;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists-footer {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
    padding-left: 10%;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item {
  margin-right: 30px;
  text-align: left;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists-footer .menu-item {
    margin-right: 0;
    width: 50%;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item:nth-of-type(1) {
  position: absolute;
  right: 77%;
  top: 0;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists-footer .menu-item:nth-of-type(1) {
    position: relative;
    right: auto;
    top: auto;
    width: 50%;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 162%;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .is-nav .is-main-nav_lists-footer .menu-item:nth-of-type(2) {
    position: relative;
    right: auto;
    top: auto;
    width: 50%;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  margin-bottom: 3px;
  border-radius: 50%;
  background-color: #c4c4c4;
  margin-right: 10px;
}
.is-nav .is-main-nav_lists-footer .menu-item a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .is-nav .is-main-nav_lists-footer .menu-item a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-nav .is-main-nav_lists-footer .menu-item a {
    font-size: 16px;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item-has-children .sub-menu a {
  font-weight: 500;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-nav .is-main-nav_lists-footer .menu-item-has-children .sub-menu a {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-nav .is-main-nav_lists-footer .menu-item-has-children .sub-menu a {
    font-size: 12px;
  }
}
.is-nav .is-main-nav_lists-footer .menu-item-has-children .menu-item {
  position: relative;
}
.is-nav .is-main-nav_lists-footer .menu-item-has-children .menu-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
  background-color: transparent;
}
.is-nav .is-main-nav_lists-footer .menu-item-has-children .menu-item:nth-of-type(1) {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
}
.is-nav .is-main-nav_lists-footer .menu-item-has-children .menu-item:nth-of-type(2) {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
}
.is-nav .drawer-nav {
  width: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  background: #fff;
  height: 100vh;
  z-index: -10;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-nav .drawer-nav {
    width: 100%;
  }
}
@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-menu-ftr {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-menu-ftr {
    display: none;
  }
}
.is-nav .drawer-nav .drawer-menu-ftr .is-sns_lists {
  gap: 10px;
}
.is-nav .drawer-nav .drawer-menu-ftr .is-sns_lists__item {
  min-width: auto;
  padding-left: 0;
}
.is-nav .drawer-nav .drawer-menu-ftr .is-sns_lists__item .btn {
  text-align: center;
  margin-bottom: 0;
}
.is-nav .drawer-nav .drawer-menu-ftr .txt {
  text-align: right;
  font-weight: 400;
  font-size: 12px;
  color: #2F4858;
  margin-bottom: 30px;
}
.is-nav .drawer-nav .drawer-menu-ftr_logo {
  margin-bottom: 20px;
  display: block;
  text-align: right;
}
.is-nav .drawer-nav .drawer-nav_content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 110px 60px 60px 80px;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-nav .drawer-nav .drawer-nav_content {
    padding: 10%;
  }
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content {
    padding: 10%;
  }
}
.is-nav .drawer-nav .drawer-nav_content .flex {
  gap: 100px;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content .flex {
    gap: 30px;
    padding: 5%;
    flex-direction: column-reverse;
  }
}
.is-nav .drawer-nav .drawer-nav_content .img {
  position: relative;
  height: 100%;
}
.is-nav .drawer-nav .drawer-nav_content .img img {
  display: block;
  border-radius: 140px 30px 30px 30px;
  position: relative;
}
.is-nav .drawer-nav .drawer-nav_content .img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #42C9B2;
  border-radius: 140px 30px 30px 30px;
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist {
    gap: 0;
  }
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li {
  width: 21%;
  margin-right: 0;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li {
    width: 100%;
  }
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a {
  color: #2F4858;
  margin-bottom: 1.2em;
  font-size: 24px;
  font-weight: 700;
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a span {
  display: block;
  color: #42C9B2;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a span {
    font-size: 16px;
    font-size: calc(0.00375 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a span {
    font-size: 16px;
  }
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a span::before {
  content: "";
  display: inline-block;
  left: -10px;
  top: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #42C9B2;
  position: relative;
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a {
    font-size: 36px;
    font-size: calc(0.015 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_mainlist li a {
    font-size: 36px;
  }
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist {
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist {
    display: block;
    margin-top: -2em;
  }
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist li {
  width: 100%;
}
.is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist li a {
  font-size: 16px;
  padding-left: calc(2em - 20px);
}
@media (min-width: 480px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist li a {
    font-size: 24px;
    font-size: calc(0.01 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .is-nav .drawer-nav .drawer-nav_content .drawer-nav_sublist li a {
    font-size: 24px;
  }
}
.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 .logo {
  text-align: center;
  margin-bottom: 60px;
}
.is-nav .drawer-nav .drawer-nav_lists .logo a {
  display: inline-block;
}
.is-nav .text {
  color: #fff;
  position: absolute;
  top: 16px;
  font-family: "Roboto", sans-serif;
  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;
  }
}

.footer .is-nav .is-main-nav_lists a {
  color: #000;
}
.footer .is-main-nav_lists-footer {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin: 30px auto 60px;
  flex-wrap: wrap;
}
.footer .is-main-nav_lists-footer a {
  font-size: 12px;
  font-weight: 700;
  color: #2F4858;
}
@media (min-width: 480px) {
  .footer .is-main-nav_lists-footer a {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .footer .is-main-nav_lists-footer a {
    font-size: 12px;
  }
}

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

.drawer--right .drawer-nav {
  right: -100%;
  z-index: 100;
}
@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: 90px;
  height: 90px;
  top: 0px;
  right: 0px !important;
  padding: 0;
  z-index: 30002;
  appearance: none;
  border-radius: 0 0 0 20px;
  background-color: #42C9B2;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger {
    width: 60px;
    height: 60px;
  }
}
.drawer-hamburger-icon, .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  background: #fff;
  height: 2px;
}
.drawer-hamburger-icon {
  width: 50%;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  margin: 0;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon {
    top: 50%;
  }
}
.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  left: auto;
  right: 0;
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon::before {
    top: -8px;
  }
}
@media only screen and (max-width:640px) {
  .drawer-hamburger-icon::after {
    top: 8px;
  }
}
.drawer-hamburger:hover {
  background-color: #42C9B2;
  opacity: 0.6;
}

.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: "Roboto", sans-serif;
  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 10px 0 0;
}
.paginavi ul li:last-child {
  margin-right: 0;
}
.paginavi ul li .page-numbers {
  border: 1px solid #2F4858;
  color: #2F4858;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.paginavi ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  display: block;
  color: #A0A0A0;
  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;
  text-decoration: none;
}
@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: #2F4858;
}
.paginavi ul li a:hover i::before {
  opacity: 0.7;
}
.paginavi ul li a i {
  color: #c1c1c1;
  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: "Roboto", sans-serif;
  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: #fff !important;
  background: #2F4858;
  display: block;
  position: relative;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}
@media (min-width: 480px) {
  .paginavi ul .current {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .paginavi ul .current {
    font-size: 16px;
  }
}
.paginavi ul .next, .paginavi ul .prev {
  position: relative;
  transition: 0.5s;
  margin: 0 10px;
}
@media only screen and (min-width:768px) {
  .paginavi ul .next:hover::before, .paginavi ul .prev:hover::before {
    color: #c1c1c1;
  }
}

.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: "Roboto", sans-serif;
  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: #2F4858;
  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:1024px) {
  .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:1024px) {
  .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: #2F4858;
  background: #fff;
  z-index: 2;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .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-inner {
  padding: 60px;
}
@media only screen and (max-width:640px) {
  .is-single-inner {
    padding: 5%;
    display: block;
  }
}
.is-single-blog {
  position: relative;
  z-index: 3;
}
.is-single-blog-wrapper {
  position: relative;
}
.is-single-blog .primary_title .tw {
  text-align: left;
}
.is-single-blog .article-blog .article-blog_lists {
  border-top: 0;
  padding-top: 0;
}
.is-single-blog .btn-more {
  position: absolute;
  right: 9.83%;
  top: 35px;
}
@media only screen and (max-width:640px) {
  .is-single-blog .btn-more {
    position: relative;
    right: auto;
    top: auto;
  }
}
.is-single-hdr {
  margin-bottom: 60px;
}
.is-single-hdr .post-number {
  font-size: 12px;
  color: #42C9B2;
  font-weight: 500;
}
.is-single-hdr .post-number span {
  font-family: "Roboto", sans-serif;
}
.is-single-hdr .col-l {
  flex: 2;
  border-right: 1px solid #F0F0F0;
  position: relative;
  padding-right: 60px;
}
@media only screen and (max-width:640px) {
  .is-single-hdr .col-l {
    border-right: 0;
    padding-right: 0;
  }
}
.is-single-hdr .col-l .post-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
  color: #2F4858;
}
@media (min-width: 480px) {
  .is-single-hdr .col-l .post-title {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .col-l .post-title {
    font-size: 20px;
  }
}
.is-single-hdr .col-l .article-course-tag_lists {
  margin-bottom: 20px;
}
.is-single-hdr .col-l .article-course-tag_lists li {
  font-size: 12px;
  padding: 4px 16px;
  color: #2F4858;
  border: 1px solid #2F4858;
  border-radius: 27px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.is-single-hdr .col-l .article-course-tag_lists li:last-child {
  margin-right: 0;
}
.is-single-hdr .col-l .post_tag {
  display: inline-block;
  padding: 0;
  position: relative;
  left: auto;
  top: auto;
  font-size: 12px;
  color: rgba(47, 72, 88, 0.3);
}
.is-single-hdr .col-l .post_tag-area i {
  padding-right: 10px;
  font-size: 12px;
}
.is-single-hdr .col-l .post_tag-area i:before {
  color: rgba(47, 72, 88, 0.3);
}
@media (min-width: 480px) {
  .is-single-hdr .col-l .post_tag-area i {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .col-l .post_tag-area i {
    font-size: 16px;
  }
}
@media (min-width: 480px) {
  .is-single-hdr .col-l .post_tag {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .col-l .post_tag {
    font-size: 16px;
  }
}
.is-single-hdr .col-r {
  flex: 1;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .is-single-hdr .col-r {
    flex: auto;
    padding: 0;
    clear: both;
  }
}
.is-single-hdr .col-r .price {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2F4858;
}
@media (min-width: 480px) {
  .is-single-hdr .col-r .price {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .col-r .price {
    font-size: 20px;
  }
}
.is-single-hdr .col-r .txt {
  font-size: 12px;
  font-weight: 500;
  color: #2F4858;
  line-height: 2;
  margin-bottom: 20px;
}
.is-single-hdr .col-r .btn-cta {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  background-color: #42C9B2;
  font-size: 14px;
  border-radius: 6px;
}
@media (min-width: 480px) {
  .is-single-hdr .col-r .btn-cta {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .col-r .btn-cta {
    font-size: 16px;
  }
}
.is-single-hdr .col-r .btn-cta:hover {
  opacity: 0.6;
}
.is-single-hdr .thumb {
  padding: 0 9.83%;
}
@media only screen and (max-width:640px) {
  .is-single-hdr .thumb {
    padding: 0 5%;
  }
}
.is-single-hdr .thumb .to-price {
  display: inline-block;
  float: right;
  margin-bottom: 22px;
  color: #2F4858;
  text-decoration: underline;
}
.is-single-hdr .thumb .to-price i {
  color: #2F4858;
}
.is-single-hdr .thumb img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .is-single-hdr .thumb img {
    border-radius: 6px;
  }
}
.is-single-hdr .post-title {
  color: #2F4858;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
  padding: 0 9.83%;
}
@media (min-width: 480px) {
  .is-single-hdr .post-title {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .post-title {
    font-size: 32px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-single-hdr .post-title {
    margin: 60px auto;
  }
}
@media only screen and (max-width:640px) {
  .is-single-hdr .post-title {
    margin: 30px auto;
    padding: 0 5%;
  }
}
.is-single-hdr .the_content {
  text-align: center;
  width: 67%;
  margin: 100px auto;
  font-size: 14px;
}
@media (min-width: 480px) {
  .is-single-hdr .the_content {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr .the_content {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-hdr .the_content {
    margin: 60px auto;
  }
}
@media only screen and (max-width:640px) {
  .is-single-hdr-product .flex {
    flex-wrap: wrap;
  }
}
.is-single-hdr-product .col-l {
  flex: 1;
  width: 50%;
  margin-right: 15px;
}
@media only screen and (max-width:640px) {
  .is-single-hdr-product .col-l {
    margin-right: 0;
    width: 100%;
  }
}
.is-single-hdr-product .col-l .thumb {
  padding: 0;
}
.is-single-hdr-product .col-l .thumb img {
  border-radius: 10px;
}
.is-single-hdr-product .col-r {
  flex: 1;
  margin-left: 15px;
  background-color: #fff;
  padding: 60px;
  border-radius: 10px;
}
@media only screen and (max-width:640px) {
  .is-single-hdr-product .col-r {
    flex: auto;
    padding: 30px;
    margin-left: 0;
  }
}
.is-single-hdr-product .inner-l, .is-single-hdr-product .inner-r {
  display: inline-block;
}
.is-single-hdr-product .inner-l {
  padding-right: 19.1%;
}
.is-single-hdr-product .swiper-slide {
  border-radius: 10px;
}
.is-single-hdr-product li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 20px;
}
.is-single-hdr-product li a {
  color: #2F4858;
  text-decoration: underline;
  line-height: 1;
}
.is-single-hdr-product li a i {
  color: #2F4858;
  padding-left: 10px;
}
.is-single-hdr-product p,
.is-single-hdr-product a {
  display: inline-block;
  font-size: 14px;
}
@media (min-width: 480px) {
  .is-single-hdr-product p,
  .is-single-hdr-product a {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-hdr-product p,
  .is-single-hdr-product a {
    font-size: 16px;
  }
}
.is-single-hdr .the_short_content {
  margin-top: 20px;
}
.is-single-hdr .the_short_content ul {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -2em;
  padding-left: 2em;
}
.is-single-hdr .the_short_content ul li {
  font-weight: 500;
  font-size: 12px;
  color: #2F4858;
  margin-bottom: 0.5em;
}
.is-single-body {
  position: relative;
  z-index: 3;
}
.is-single-body .the_content {
  padding: 60px;
  background: #fff;
  border-radius: 30px;
}
@media only screen and (max-width:640px) {
  .is-single-body .the_content {
    border-radius: 15px;
    padding: 10%;
    margin: 0 5%;
  }
}
.is-single-body .inner h2 {
  padding: 11px 0 14px;
  background: #2F4858;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  border-radius: 5px;
}
@media (min-width: 480px) {
  .is-single-body .inner h2 {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-single-body .inner h2 {
    margin: 30px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .inner h2 {
    padding: 5%;
    margin: 30px 0;
  }
}
.is-single-body .inner h3 {
  padding-left: 15px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
  color: #2F4858;
  position: relative;
}
@media (min-width: 480px) {
  .is-single-body .inner h3 {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner h3 {
    font-size: 20px;
  }
}
.is-single-body .inner h3:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #2F4858;
  border-radius: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.is-single-body .inner h4 {
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 700;
  color: #2F4858;
}
@media (min-width: 480px) {
  .is-single-body .inner h4 {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner h4 {
    font-size: 16px;
  }
}
.is-single-body .inner h5 {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #2F4858;
}
@media (min-width: 480px) {
  .is-single-body .inner h5 {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner h5 {
    font-size: 16px;
  }
}
.is-single-body .inner p,
.is-single-body .inner span,
.is-single-body .inner strong,
.is-single-body .inner a,
.is-single-body .inner em {
  font-weight: 400;
  font-size: inherit;
  font-weight: inherit;
  margin-bottom: 30px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width:640px) {
  .is-single-body .inner p,
  .is-single-body .inner span,
  .is-single-body .inner strong,
  .is-single-body .inner a,
  .is-single-body .inner em {
    margin-bottom: 24px;
  }
}
.is-single-body .inner p {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 13px;
}
@media (min-width: 480px) {
  .is-single-body .inner p {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner p {
    font-size: 15px;
  }
}
.is-single-body .inner a {
  color: #747474;
  text-decoration: underline;
}
.is-single-body .inner img {
  border-radius: 5px;
  margin-bottom: 60px;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-single-body .inner img {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .inner img {
    margin-bottom: 24px !important;
  }
}
.is-single-body .inner ul {
  padding-left: 30px;
  margin: 0 0 30px 0;
  list-style-type: none;
  padding: 0;
}
@media only screen and (max-width:640px) {
  .is-single-body .inner ul {
    margin: 30px 0;
  }
}
.is-single-body .inner ul li {
  position: relative;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 2;
  padding-left: 15px;
  font-size: 13px;
}
@media (min-width: 480px) {
  .is-single-body .inner ul li {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner ul li {
    font-size: 15px;
  }
}
.is-single-body .inner ul li:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: 5px;
  top: 1em;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #000;
}
.is-single-body .inner ul li ul {
  margin-top: 10px;
  margin-bottom: 16px;
}
.is-single-body .inner ul li ul li {
  font-size: 13px;
}
@media (min-width: 480px) {
  .is-single-body .inner ul li ul li {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner ul li ul li {
    font-size: 15px;
  }
}
.is-single-body .inner ul li ul li::before {
  background-color: transparent;
  border: 1px solid #000;
}
.is-single-body .inner ol {
  padding-left: 30px;
  margin: 40px 0;
}
.is-single-body .inner ol li {
  list-style: decimal;
}
.is-single-body .inner strong {
  font-weight: 700;
}
.is-single-body .inner blockquote {
  padding: 30px;
  background: #F5FBFF;
  border-radius: 18px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.67;
}
@media (min-width: 480px) {
  .is-single-body .inner blockquote {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner blockquote {
    font-size: 12px;
  }
}
.is-single-body .inner blockquote li {
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-single-body .inner blockquote li {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner blockquote li {
    font-size: 12px;
  }
}
.is-single-body .inner blockquote p {
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.67;
  color: #2F4858;
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .is-single-body .inner blockquote p {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner blockquote p {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body .inner blockquote {
    padding: 6%;
  }
}
.is-single-body .inner table {
  margin-bottom: 60px;
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 0;
  border-radius: 5px;
  border-collapse: separate; /* 讓 border-radius 生效 */
  border-spacing: 0; /* 防止內部單元格有間隙 */
}
.is-single-body .inner table td {
  vertical-align: middle; /* 垂直置中 */
  padding: 17px 32px;
  font-size: 14px;
  color: #2F4858;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
@media (min-width: 480px) {
  .is-single-body .inner table td {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-single-body .inner table td {
    font-size: 16px;
  }
}
.is-single-body .inner table tr {
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.is-single-body .inner table tr:first-child td:first-child {
  border-right: 1px solid rgba(204, 204, 204, 0.5);
}
.is-single-body img {
  border-radius: 5px;
  margin-bottom: 60px;
}
.is-single-body .date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  color: #70644f;
  letter-spacing: 0.04em;
}
@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: 10px;
  }
}
.is-single-body-table .product li {
  display: inline-block;
}
.is-single-body-table .product li a {
  padding: 10px 20px;
  border-radius: 22px;
  background: #f8f8f8;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-single-body-table .product li a {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-body-table .product li a {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-body-table .product li a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.is-single-body-table .col {
  border-top: 1px solid #dedede;
  padding: 2em 0;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-body-table .col {
    padding: 1em 0;
  }
}
.is-single-body-table .col:last-of-type {
  border-bottom: 1px solid #dedede;
}
.is-single-body-table .col-l, .is-single-body-table .col-r {
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-single-body-table .col-l, .is-single-body-table .col-r {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-body-table .col-l, .is-single-body-table .col-r {
    font-size: 16px;
  }
}
.is-single-body-table .col-l {
  flex-basis: 130px;
  border-right: 1px solid #dedede;
  font-weight: 500;
}
@media only screen and (max-width:640px) {
  .is-single-body-table .col-l {
    flex-basis: auto;
    flex: 1;
  }
}
.is-single-body-table .col-r {
  margin-left: 60px;
}
@media only screen and (max-width:640px) {
  .is-single-body-table .col-r {
    margin-left: 30px;
    flex: 2;
  }
}
.is-single-body-table .col-r a {
  display: inline-block;
  font-size: 12px;
  padding: 0;
}
@media (min-width: 480px) {
  .is-single-body-table .col-r a {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-body-table .col-r a {
    font-size: 16px;
  }
}
.is-single-body-table .col-r span {
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-single-body-table .col-r span {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-body-table .col-r span {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-single .primary_btn {
    margin-top: 40px;
  }
}
.is-single .primary_btn .btn {
  margin: 0 auto;
}
.is-single-product .post-navigation {
  margin-top: 120px;
}
.is-single-product .is-tags {
  margin-top: 20px;
}
.is-single-product .is-tags_lists__item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.is-single-product .is-tags_lists__item a {
  padding: 10px 20px;
  background: #f8f8f8;
  border-radius: 22px;
  text-decoration: none;
}
.is-single-product .is-tags_lists__item a .tw {
  font-size: 12px;
  color: #000;
}
@media (min-width: 480px) {
  .is-single-product .is-tags_lists__item a .tw {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-product .is-tags_lists__item a .tw {
    font-size: 12px;
  }
}
.is-single-course {
  margin-bottom: 40px;
}
.is-single-course .mySwiper {
  position: relative;
  padding: 60px 0 0;
}
@media only screen and (max-width:640px) {
  .is-single-course .mySwiper {
    padding: 5% 0 0;
  }
}
.is-single-course .mySwiper .swiper-slide {
  opacity: 1;
  border-radius: 15px;
}
.is-single-course .mySwiper .swiper-slide img {
  max-height: 346px;
}
@media only screen and (max-width:640px) {
  .is-single-course .mySwiper .swiper-slide {
    height: auto;
  }
}
.is-single-course .mySwiper .swiper-pagination-bullets {
  bottom: 10px;
}
.is-single-course .mySwiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 2px;
}
.is-single-course-wrapper {
  width: 81.2%;
  max-width: 926px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width:640px) {
  .is-single-course-wrapper {
    width: 90%;
    max-width: auto;
  }
}
.is-single-course-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-course-head {
    padding: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-head {
    padding: 18px 6vw 24px;
    display: block;
  }
}
.is-single-course-head-return {
  display: -ms-flex;
  display: flex;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid #2F4858;
}
@media only screen and (max-width:640px) {
  .is-single-course-head-return {
    width: fit-content;
  }
}
.is-single-course-head-return .arrow img {
  margin-right: 30px;
  display: inline-block;
  width: 5px;
  transform: rotate(180deg);
}
.is-single-course-head-return .text {
  font-family: "Noto Serif TC", serif;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-single-course-head-return .text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-head-return .text {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-head-return .text {
    font-size: 13px;
  }
}
.is-single-course-head_lists {
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-course-head_lists {
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.is-single-course-head_lists__item {
  margin-left: 30px;
}
@media only screen and (max-width:640px) {
  .is-single-course-head_lists__item {
    width: calc((100% - 30px) / 2);
    margin-bottom: 8px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-head_lists__item:nth-of-type(odd) {
    margin-left: 0;
  }
}
.is-single-course-head_lists__item .btn {
  padding-bottom: 2px;
  border-bottom: 1px solid #2F4858;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-single-course-head_lists__item .btn {
    justify-content: space-between;
  }
}
.is-single-course-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-course-head_lists__item .btn .text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-head_lists__item .btn .text {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-head_lists__item .btn .text {
    font-size: 13px;
  }
}
.is-single-course-head_lists__item .btn .arrow img {
  display: inline-block;
  width: 5px;
  transform: rotate(90deg);
}
.is-single-course-body .thumb img {
  width: 100%;
  border-radius: 15px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-course-body .head {
    margin-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .head {
    margin-top: 30px;
    margin-bottom: 60px;
    padding-top: 0;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.is-single-course-body .head-title {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .is-single-course-body .head-title {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-body .head-title {
    font-size: 24px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-single-course-body .head-title {
    padding-right: 40px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-course-body .head-title {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .head-title {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .head-title-pc {
    display: none;
  }
}
.is-single-course-body .head-title-sp {
  display: none;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-single-course-body .head-title-sp {
    display: block;
  }
}
.is-single-course-body .head .tag_lists {
  margin-bottom: 24px;
}
.is-single-course-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-course-body .head .article-works-tag_lists {
    margin-top: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .head .article-works-tag_lists {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}
.is-single-course-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-course-body .share_btn {
    margin-top: 24px;
  }
}
.is-single-course-body .share_btn-title {
  font-size: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin-right: 20px;
}
@media (min-width: 480px) {
  .is-single-course-body .share_btn-title {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-body .share_btn-title {
    font-size: 12px;
  }
}
.is-single-course-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-course-body .share_btn-title:after {
    margin-right: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .share_btn-title {
    margin-right: 0;
  }
}
.is-single-course-body .share_btn_lists {
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.is-single-course-body .credit-title,
.is-single-course-body .philosophy-title,
.is-single-course-body .gallery-title {
  font-size: 24px;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 480px) {
  .is-single-course-body .credit-title,
  .is-single-course-body .philosophy-title,
  .is-single-course-body .gallery-title {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-body .credit-title,
  .is-single-course-body .philosophy-title,
  .is-single-course-body .gallery-title {
    font-size: 32px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-single-course-body .credit-title,
  .is-single-course-body .philosophy-title,
  .is-single-course-body .gallery-title {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-course-body .credit-title,
  .is-single-course-body .philosophy-title,
  .is-single-course-body .gallery-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body .credit-title,
  .is-single-course-body .philosophy-title,
  .is-single-course-body .gallery-title {
    margin-bottom: 24px;
  }
}
.is-single-course-body .credit-client,
.is-single-course-body .credit-create span,
.is-single-course-body .philosophy-text {
  font-size: 12px;
  text-align: center;
}
@media (min-width: 480px) {
  .is-single-course-body .credit-client,
  .is-single-course-body .credit-create span,
  .is-single-course-body .philosophy-text {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-single-course-body .credit-client,
  .is-single-course-body .credit-create span,
  .is-single-course-body .philosophy-text {
    font-size: 12px;
  }
}
.is-single-course-body-credit {
  margin-top: 30px;
}
@media only screen and (min-width:641px) and (max-width:835px) {
  .is-single-course-body-credit {
    margin-top: 40px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body-credit {
    margin-top: 50px;
  }
}
.is-single-course-body-credit .credit-client {
  text-align: center;
}
.is-single-course-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-course-body-credit .credit-create {
    width: 100%;
  }
}
.is-single-course-body-credit .credit-create span {
  margin: 0 15px;
}
@media only screen and (max-width:640px) {
  .is-single-course-body-philosophy, .is-single-course-body-gallery {
    margin-top: 30px;
  }
}
.is-single-course-body-philosophy {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
.is-single-course-body-philosophy .philosophy-text {
  text-align: left;
}
.is-single-course-body-philosophy .philosophy-text-left {
  flex: 1;
}
@media only screen and (max-width:640px) {
  .is-single-course-body-philosophy .philosophy-text-left {
    font-weight: 700;
  }
}
.is-single-course-body-philosophy .philosophy-text-right {
  flex: 2;
}
@media only screen and (max-width:640px) {
  .is-single-course-body-philosophy .philosophy-text-right {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body-philosophy .philosophy-text {
    text-align: left;
    flex: auto;
    width: 100%;
  }
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-single-course-body-gallery .the_content {
    border-left: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-single-course-body-gallery .the_content {
    padding: 0;
    border-left: 0;
  }
}
.is-single-course-body-gallery .the_content img {
  margin-bottom: 10px;
}
.is-single-course-body-gallery .head {
  padding-right: 0;
}
.is-single-btm {
  text-align: center;
  margin-top: 120px;
}
.is-single-btm h6 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .is-single-btm h6 {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-btm h6 {
    font-size: 24px;
  }
}
.is-single-btm .btn-contact {
  margin: 0 auto;
}
.is-single-btm .btn-contact a {
  display: inline-block;
  padding: 19px 43px;
  font-size: 12px;
  border: 1px solid #2F4858;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2F4858;
  text-decoration: none;
}
@media (min-width: 480px) {
  .is-single-btm .btn-contact a {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-single-btm .btn-contact a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-single-btm .btn-contact a {
    padding: 10px 20px;
  }
}
.is-single-btm .btn-contact a i {
  color: #2F4858;
  margin-bottom: 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: 33.3333%;
  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: 66.6666%;
}
@media only screen and (max-width:640px) {
  #container {
    width: 100%; /*横幅を100%にして1列に見せる*/
  }
}
#container .head {
  padding-top: 0;
}

.back-to-top {
  position: fixed;
  bottom: 5%;
  z-index: 1000;
  right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  text-align: center;
  border-radius: 50%;
  border: 0 solid #42C9B2;
  background-color: #42C9B2;
  color: #fff;
  transition: 0.5s;
}
.back-to-top i {
  color: #fff;
}
.back-to-top:hover {
  opacity: 0.5;
}

.is-recent {
  padding: 60px 140px;
  background-color: #FBFBFB;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-recent {
    padding: 30px 5%;
  }
}
.is-recent .primary_title {
  color: #42C9B2;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 480px) {
  .is-recent .primary_title {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-recent .primary_title {
    font-size: 20px;
  }
}
.is-recent .primary_title span {
  display: block;
  font-size: 32px;
  color: #2F4858;
  margin-bottom: 1em;
}
@media (min-width: 480px) {
  .is-recent .primary_title span {
    font-size: 64px;
    font-size: calc(0.04 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-recent .primary_title span {
    font-size: 64px;
  }
}
.is-recent .mySwiper2 .swiper-button-next2, .is-recent .mySwiper2 .swiper-button-prev2 {
  position: absolute;
  top: 120px;
  border: 1px solid #2F4858;
}
@media only screen and (max-width:640px) {
  .is-recent .mySwiper2 .swiper-button-next2, .is-recent .mySwiper2 .swiper-button-prev2 {
    top: 85px;
  }
}
.is-recent .mySwiper2 .swiper-button-next2:after, .is-recent .mySwiper2 .swiper-button-prev2:after {
  color: #2F4858;
}
.is-recent .mySwiper2 .swiper-button-next2 {
  right: 140px;
}
@media only screen and (max-width:640px) {
  .is-recent .mySwiper2 .swiper-button-next2 {
    right: 30px;
  }
}
.is-recent .mySwiper2 .swiper-button-prev2 {
  right: 224px;
  left: auto;
}
@media only screen and (max-width:640px) {
  .is-recent .mySwiper2 .swiper-button-prev2 {
    right: 70px;
  }
}
.bg-main {
  width: 100vw;
  height: 810px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
  overflow: hidden;
  width: 960px;
  height: 960px;
  border-radius: 50%;
  background-color: #f8f8f8;
}
@media only screen and (max-width:640px) {
  .bg-main {
    position: fixed;
    height: 100vh;
    background-image: url("../images/common/bg_sp.png");
  }
}

.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:1024px) {
  .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:1024px) {
  .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: "Roboto", sans-serif;
  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: "Roboto", sans-serif;
}

.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: "Zen Maru Gothic", 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: "Roboto", sans-serif;
  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: "Roboto", sans-serif;
  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: #c1c1c1;
  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-page-service .bg-number, .is-page-about .bg-number {
  position: absolute;
  top: 0;
  right: -9.83%;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 150px;
  color: #c4c4c4;
  opacity: 0.2;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-page-service .bg-number, .is-page-about .bg-number {
    font-size: 280px;
    font-size: calc(0.1625 * 100vw + 72px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .bg-number, .is-page-about .bg-number {
    font-size: 280px;
  }
}
.is-page-service .is-service-subttl, .is-page-about .is-service-subttl {
  position: relative;
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
  padding-top: 40px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-top: 0 !important;
}
@media (min-width: 480px) {
  .is-page-service .is-service-subttl, .is-page-about .is-service-subttl {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-subttl, .is-page-about .is-service-subttl {
    font-size: 32px;
  }
}
.is-page-service .is-service-subttl-left, .is-page-about .is-service-subttl-left {
  text-align: left !important;
}
.is-page-service .is-service-text, .is-page-about .is-service-text {
  position: relative;
}
.is-page-service .is-service-text-kv, .is-page-about .is-service-text-kv {
  width: 53.2%;
  margin: 0 auto 160px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-text-kv, .is-page-about .is-service-text-kv {
    width: 90%;
    margin: 0 auto 60px;
  }
}
.is-page-service .is-service-text h4, .is-page-about .is-service-text h4 {
  font-size: 20px;
  position: relative;
  margin-top: 100px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text h4, .is-page-about .is-service-text h4 {
    font-size: 32px;
    font-size: calc(0.015 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text h4, .is-page-about .is-service-text h4 {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-text h4, .is-page-about .is-service-text h4 {
    margin-top: 30px;
  }
}
.is-page-service .is-service-text .lead, .is-page-about .is-service-text .lead {
  text-align: center;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text .lead, .is-page-about .is-service-text .lead {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text .lead, .is-page-about .is-service-text .lead {
    font-size: 16px;
  }
}
.is-page-service .is-service-text .subttl, .is-page-about .is-service-text .subttl {
  background-color: transparent;
  display: block;
  margin-left: 0;
  padding: 0.67em 1.17em 0.67em 0;
}
.is-page-service .is-service-text .subttl .splitbar, .is-page-about .is-service-text .subttl .splitbar {
  margin: 0 20px 0 0;
}
.is-page-service .is-service-text .tag, .is-page-about .is-service-text .tag {
  font-size: 11px;
  position: absolute;
  top: -10px;
  left: -20px;
  width: 50px;
  height: 30px;
  font-weight: 700;
  padding-top: 3px;
  text-align: center;
  background-color: #2F4858;
  border-radius: 8px;
  color: #fff;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text .tag, .is-page-about .is-service-text .tag {
    font-size: 15px;
    font-size: calc(0.005 * 100vw + 8.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text .tag, .is-page-about .is-service-text .tag {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-text .tag, .is-page-about .is-service-text .tag {
    width: 30px;
    height: 20px;
    padding-top: 1px;
  }
}
.is-page-service .is-service-text .tag-red, .is-page-about .is-service-text .tag-red {
  font-size: 12px;
  background-color: #f0675f;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text .tag-red, .is-page-about .is-service-text .tag-red {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text .tag-red, .is-page-about .is-service-text .tag-red {
    font-size: 16px;
  }
}
.is-page-service .is-service-text .tag-table, .is-page-about .is-service-text .tag-table {
  position: relative;
  display: block;
  margin-left: 20px;
}
.is-page-service .is-service-text-small, .is-page-about .is-service-text-small {
  font-size: 12px;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text-small, .is-page-about .is-service-text-small {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text-small, .is-page-about .is-service-text-small {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-text-small, .is-page-about .is-service-text-small {
    margin-bottom: 30px;
  }
}
.is-page-service .is-service-text .txt-small, .is-page-about .is-service-text .txt-small {
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
}
@media (min-width: 480px) {
  .is-page-service .is-service-text .txt-small, .is-page-about .is-service-text .txt-small {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-text .txt-small, .is-page-about .is-service-text .txt-small {
    font-size: 15px;
  }
}
.is-page-service .is-service-text .primary_title, .is-page-about .is-service-text .primary_title {
  width: 100%;
}
.is-page-service .is-service-text .primary_title .tw, .is-page-about .is-service-text .primary_title .tw {
  text-align: left;
  letter-spacing: 0.12em;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-text, .is-page-about .is-service-text {
    flex-wrap: wrap;
  }
}
.is-page-service .is-service-table, .is-page-about .is-service-table {
  width: 100%;
  position: relative;
  z-index: 101;
  border: 1px solid #d7e6f8;
  border-radius: 18px;
  overflow: hidden;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-table, .is-page-about .is-service-table {
    overflow: scroll;
  }
}
.is-page-service .is-service-table .center, .is-page-about .is-service-table .center {
  text-align: center;
}
.is-page-service .is-service-table .right, .is-page-about .is-service-table .right {
  text-align: right;
}
.is-page-service .is-service-table .border-none-bottom, .is-page-about .is-service-table .border-none-bottom {
  border-bottom: 0;
}
.is-page-service .is-service-table .border-none-right, .is-page-about .is-service-table .border-none-right {
  border-right: 0;
}
.is-page-service .is-service-table th,
.is-page-service .is-service-table td, .is-page-about .is-service-table th,
.is-page-about .is-service-table td {
  vertical-align: middle;
  border-bottom: 1px solid #d7e6f8;
  border-right: 1px solid #d7e6f8;
  white-space: nowrap;
}
.is-page-service .is-service-table table, .is-page-about .is-service-table table {
  width: 100%;
}
.is-page-service .is-service-table th, .is-page-about .is-service-table th {
  padding: 2.53em 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 480px) {
  .is-page-service .is-service-table th, .is-page-about .is-service-table th {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-table th, .is-page-about .is-service-table th {
    font-size: 15px;
  }
}
.is-page-service .is-service-table td, .is-page-about .is-service-table td {
  font-size: 14px;
  padding: 1em;
}
@media (min-width: 480px) {
  .is-page-service .is-service-table td, .is-page-about .is-service-table td {
    font-size: 15px;
    font-size: calc(0.00125 * 100vw + 13.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-table td, .is-page-about .is-service-table td {
    font-size: 15px;
  }
}
.is-page-service .is-service-table td:first-child, .is-page-about .is-service-table td:first-child {
  font-weight: 700;
}
.is-page-service .is-service-table-wrapper, .is-page-about .is-service-table-wrapper {
  position: relative;
}
.is-page-service .is-service-feature, .is-page-about .is-service-feature {
  position: relative;
  z-index: 3;
  padding: 0 9.83%;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-feature, .is-page-about .is-service-feature {
    padding: 0 5%;
  }
}
.is-page-service .is-service-feature:before, .is-page-about .is-service-feature:before {
  content: "";
  position: absolute;
  top: 422px;
  left: 0;
  width: 100%;
  height: 648px;
  background-image: url("../images/service/service-map.png");
}
.is-page-service .is-service-feature h4, .is-page-about .is-service-feature h4 {
  margin-top: 60px;
}
.is-page-service .is-service-feature .en,
.is-page-service .is-service-feature .lead, .is-page-about .is-service-feature .en,
.is-page-about .is-service-feature .lead {
  text-align: left;
}
.is-page-service .is-service-feature .lead, .is-page-about .is-service-feature .lead {
  margin-bottom: 60px;
}
.is-page-service .is-service-feature h5, .is-page-about .is-service-feature h5 {
  font-size: 16px;
  color: #6c6c6c;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-feature h5, .is-page-about .is-service-feature h5 {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-feature h5, .is-page-about .is-service-feature h5 {
    font-size: 20px;
  }
}
.is-page-service .is-service-feature h5::before, .is-page-about .is-service-feature h5::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #6c6c6c;
  margin-bottom: 5px;
  margin-right: 10px;
}
.is-page-service .is-service-feature .is-service-text, .is-page-about .is-service-feature .is-service-text {
  width: 100%;
}
.is-page-service .is-service-feature .is-service-text .lead, .is-page-about .is-service-feature .is-service-text .lead {
  width: 66.12%;
}
.is-page-service .is-service-feature .is-service-text img, .is-page-about .is-service-feature .is-service-text img {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 140px 140px 0 0;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-feature .is-service-text img, .is-page-about .is-service-feature .is-service-text img {
    margin-top: 60px;
    width: 90%;
    position: relative;
  }
}
.is-page-service .is-service-feature .is-service-aera-lists, .is-page-about .is-service-feature .is-service-aera-lists {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin-bottom: 60px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-feature .is-service-aera-lists, .is-page-about .is-service-feature .is-service-aera-lists {
    width: 100%;
  }
}
.is-page-service .is-service-feature .is-service-aera-lists li, .is-page-about .is-service-feature .is-service-aera-lists li {
  padding: 10px 30px;
  background-color: #000000;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 22px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-feature .is-service-aera-lists li, .is-page-about .is-service-feature .is-service-aera-lists li {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-feature .is-service-aera-lists li, .is-page-about .is-service-feature .is-service-aera-lists li {
    font-size: 16px;
  }
}
.is-page-service .is-service-feature .btn a, .is-page-about .is-service-feature .btn a {
  font-size: 16px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  background: linear-gradient(45deg, #055498, #36d3ef);
  padding: 17px 43px 16px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-feature .btn a, .is-page-about .is-service-feature .btn a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-feature .btn a, .is-page-about .is-service-feature .btn a {
    font-size: 16px;
  }
}
.is-page-service .is-service-feature .btn i, .is-page-about .is-service-feature .btn i {
  color: #fff;
  margin-right: 10px;
}
.is-page-service .is-service-feature .bg-txt, .is-page-about .is-service-feature .bg-txt {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #c4c4c4;
  opacity: 0.2;
  position: absolute;
  right: 60px;
  top: 0;
}
@media (min-width: 480px) {
  .is-page-service .is-service-feature .bg-txt, .is-page-about .is-service-feature .bg-txt {
    font-size: 80px;
    font-size: calc(0.05 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-feature .bg-txt, .is-page-about .is-service-feature .bg-txt {
    font-size: 80px;
  }
}
.is-page-service .is-service-review, .is-page-about .is-service-review {
  position: relative;
  margin: 0 0 160px;
  padding: 60px 8.4%;
  background-color: #fff;
  z-index: 3;
  border-radius: 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-review, .is-page-about .is-service-review {
    margin: 0 auto;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-review, .is-page-about .is-service-review {
    margin: 0 auto;
    padding: 30px 5%;
    border-radius: 10px;
  }
}
.is-page-service .is-service-review .bg-txt, .is-page-about .is-service-review .bg-txt {
  position: absolute;
  font-size: 60px;
  color: #fff;
  opacity: 1;
  width: 100%;
  text-align: center;
  top: -1.1em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  right: 50%;
  transform: translateX(50%);
}
@media (min-width: 480px) {
  .is-page-service .is-service-review .bg-txt, .is-page-about .is-service-review .bg-txt {
    font-size: 122px;
    font-size: calc(0.065 * 100vw + 28.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-review .bg-txt, .is-page-about .is-service-review .bg-txt {
    font-size: 112px;
  }
}
.is-page-service .is-service-review h4 .bg-number, .is-page-about .is-service-review h4 .bg-number {
  right: -22.67%;
  top: 84px;
  opacity: 0.11;
}
.is-page-service .is-service-review .review-lists-item, .is-page-about .is-service-review .review-lists-item {
  display: flex;
  margin-bottom: 70px;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-review .review-lists-item, .is-page-about .is-service-review .review-lists-item {
    flex-wrap: wrap;
    word-wrap: 90%;
    justify-content: center;
    margin: 30px auto;
  }
}
.is-page-service .is-service-review .review-lists-item:last-child, .is-page-about .is-service-review .review-lists-item:last-child {
  margin-bottom: 0;
}
.is-page-service .is-service-review .review-lists-item .profile, .is-page-about .is-service-review .review-lists-item .profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-review .review-lists-item .profile, .is-page-about .is-service-review .review-lists-item .profile {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.is-page-service .is-service-review .review-lists-item .profile img, .is-page-about .is-service-review .review-lists-item .profile img {
  width: 84px;
  border-radius: 50%;
  margin-bottom: 5px;
}
.is-page-service .is-service-review .review-lists-item .profile span, .is-page-about .is-service-review .review-lists-item .profile span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-page-service .is-service-review .review-lists-item .profile span, .is-page-about .is-service-review .review-lists-item .profile span {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-review .review-lists-item .profile span, .is-page-about .is-service-review .review-lists-item .profile span {
    font-size: 16px;
  }
}
.is-page-service .is-service-review .review-lists-item .txt, .is-page-about .is-service-review .review-lists-item .txt {
  font-size: 12px;
  display: block;
  z-index: 10;
  width: 100%;
  background: #efefef;
  border-radius: 10px;
  padding: 25px 30px;
  min-height: 100px;
  position: relative;
  margin-left: 15px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-review .review-lists-item .txt, .is-page-about .is-service-review .review-lists-item .txt {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-review .review-lists-item .txt, .is-page-about .is-service-review .review-lists-item .txt {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-review .review-lists-item .txt, .is-page-about .is-service-review .review-lists-item .txt {
    margin-left: 0;
    margin-top: 15px;
    padding: 10px 20px;
  }
}
.is-page-service .is-service-review .review-lists-item .txt:before, .is-page-about .is-service-review .review-lists-item .txt:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 20px;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #efefef; /* 更改背景顏色為 #EFEFEF */
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-review .review-lists-item .txt:before, .is-page-about .is-service-review .review-lists-item .txt:before {
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    border-top: 0;
    border-bottom: 15px solid #efefef;
    border-right: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid rgba(0, 0, 0, 0);
  }
}
.is-page-service .is-service-brand, .is-page-about .is-service-brand {
  position: relative;
  text-align: center;
  margin-bottom: 160px;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-brand, .is-page-about .is-service-brand {
    padding: 0;
    margin-bottom: 60px;
  }
}
.is-page-service .is-service-brand .is-service-subttl, .is-page-about .is-service-brand .is-service-subttl {
  padding-top: 0;
}
.is-page-service .is-service-brand .brand-lists, .is-page-about .is-service-brand .brand-lists {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-brand .brand-lists, .is-page-about .is-service-brand .brand-lists {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-brand .brand-lists, .is-page-about .is-service-brand .brand-lists {
    flex-wrap: wrap;
  }
}
.is-page-service .is-service-brand .brand-lists-item, .is-page-about .is-service-brand .brand-lists-item {
  display: block;
  width: 280px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(45deg, #055498, #36d3ef);
  border-radius: 10px;
  position: relative;
  margin-right: 16px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-brand .brand-lists-item, .is-page-about .is-service-brand .brand-lists-item {
    width: 49%;
    margin: 0 2% 2% 0;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-brand .brand-lists-item, .is-page-about .is-service-brand .brand-lists-item {
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-brand .brand-lists-item:nth-of-type(2n), .is-page-about .is-service-brand .brand-lists-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-brand .brand-lists-item:last-of-type, .is-page-about .is-service-brand .brand-lists-item:last-of-type {
    margin-bottom: 0;
  }
}
.is-page-service .is-service-brand .brand-lists-item a, .is-page-about .is-service-brand .brand-lists-item a {
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: #fff;
  line-height: 80px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-brand .brand-lists-item a, .is-page-about .is-service-brand .brand-lists-item a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-brand .brand-lists-item a, .is-page-about .is-service-brand .brand-lists-item a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-brand .brand-lists-item a, .is-page-about .is-service-brand .brand-lists-item a {
    line-height: 60px;
  }
}
.is-page-service .is-service-brand .brand-lists-item:nth-of-type(4n), .is-page-about .is-service-brand .brand-lists-item:nth-of-type(4n) {
  margin-right: 0;
}
.is-page-service .is-service-brand .brand-lists-item i, .is-page-about .is-service-brand .brand-lists-item i {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 16px;
  color: #fff;
}
@media (min-width: 480px) {
  .is-page-service .is-service-brand .brand-lists-item i, .is-page-about .is-service-brand .brand-lists-item i {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-brand .brand-lists-item i, .is-page-about .is-service-brand .brand-lists-item i {
    font-size: 16px;
  }
}
.is-page-service .is-service-contact, .is-page-about .is-service-contact {
  position: relative;
  z-index: 3;
  margin-right: 9.83%;
  padding-left: 9.83%;
  padding-top: 107px;
  padding-bottom: 106px;
  background-image: url("../images/service/service-contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 60px 60px 0;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-contact, .is-page-about .is-service-contact {
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.is-page-service .is-service-contact:before, .is-page-about .is-service-contact:before {
  content: "";
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 0 60px 60px 0;
}
.is-page-service .is-service-contact .is-service-subttl, .is-page-about .is-service-contact .is-service-subttl {
  padding-top: 0;
  text-align: left;
  color: #fff;
  margin-bottom: 22px;
}
.is-page-service .is-service-contact .lead, .is-page-about .is-service-contact .lead {
  color: #fff;
  margin-bottom: 30px;
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-contact .lead, .is-page-about .is-service-contact .lead {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-contact .lead, .is-page-about .is-service-contact .lead {
    font-size: 16px;
  }
}
.is-page-service .is-service-01, .is-page-service .is-service-02, .is-page-about .is-service-01, .is-page-about .is-service-02 {
  position: relative;
  z-index: 5;
  margin: 0 9.83%;
}
.is-page-service .is-service-01 .primary_title, .is-page-service .is-service-02 .primary_title, .is-page-about .is-service-01 .primary_title, .is-page-about .is-service-02 .primary_title {
  margin-bottom: -25px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01, .is-page-service .is-service-02, .is-page-about .is-service-01, .is-page-about .is-service-02 {
    margin: 0 5%;
  }
}
.is-page-service .is-service-01 .container, .is-page-service .is-service-02 .container, .is-page-about .is-service-01 .container, .is-page-about .is-service-02 .container {
  background: #fff;
  border-radius: 10px;
  padding: 60px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container, .is-page-service .is-service-02 .container, .is-page-about .is-service-01 .container, .is-page-about .is-service-02 .container {
    padding: 30px;
  }
}
.is-page-service .is-service-01 .container .plan_content, .is-page-service .is-service-02 .container .plan_content, .is-page-about .is-service-01 .container .plan_content, .is-page-about .is-service-02 .container .plan_content {
  display: flex;
  justify-content: space-around;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-01 .container .plan_content, .is-page-service .is-service-02 .container .plan_content, .is-page-about .is-service-01 .container .plan_content, .is-page-about .is-service-02 .container .plan_content {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container .plan_content, .is-page-service .is-service-02 .container .plan_content, .is-page-about .is-service-01 .container .plan_content, .is-page-about .is-service-02 .container .plan_content {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-L, .is-page-service .is-service-02 .container .plan_content .col-L, .is-page-about .is-service-01 .container .plan_content .col-L, .is-page-about .is-service-02 .container .plan_content .col-L {
  flex: 1;
  margin-right: 3.8%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-01 .container .plan_content .col-L, .is-page-service .is-service-02 .container .plan_content .col-L, .is-page-about .is-service-01 .container .plan_content .col-L, .is-page-about .is-service-02 .container .plan_content .col-L {
    flex: auto;
    margin-right: 0;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container .plan_content .col-L, .is-page-service .is-service-02 .container .plan_content .col-L, .is-page-about .is-service-01 .container .plan_content .col-L, .is-page-about .is-service-02 .container .plan_content .col-L {
    flex: auto;
    margin-right: 0;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-L img, .is-page-service .is-service-02 .container .plan_content .col-L img, .is-page-about .is-service-01 .container .plan_content .col-L img, .is-page-about .is-service-02 .container .plan_content .col-L img {
  border-radius: 10px;
  width: 100%;
  height: 326px;
  margin-bottom: 30px;
}
.is-page-service .is-service-01 .container .plan_content .col-L .tag li, .is-page-service .is-service-02 .container .plan_content .col-L .tag li, .is-page-about .is-service-01 .container .plan_content .col-L .tag li, .is-page-about .is-service-02 .container .plan_content .col-L .tag li {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px 20px;
  background-color: #f8f8f8;
  border-radius: 22px;
}
.is-page-service .is-service-01 .container .plan_content .col-R, .is-page-service .is-service-02 .container .plan_content .col-R, .is-page-about .is-service-01 .container .plan_content .col-R, .is-page-about .is-service-02 .container .plan_content .col-R {
  flex: 1;
  margin-left: 3.8%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-01 .container .plan_content .col-R, .is-page-service .is-service-02 .container .plan_content .col-R, .is-page-about .is-service-01 .container .plan_content .col-R, .is-page-about .is-service-02 .container .plan_content .col-R {
    flex: auto;
    margin-left: 0;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container .plan_content .col-R, .is-page-service .is-service-02 .container .plan_content .col-R, .is-page-about .is-service-01 .container .plan_content .col-R, .is-page-about .is-service-02 .container .plan_content .col-R {
    flex: auto;
    margin-left: 0;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-R h5, .is-page-service .is-service-02 .container .plan_content .col-R h5, .is-page-about .is-service-01 .container .plan_content .col-R h5, .is-page-about .is-service-02 .container .plan_content .col-R h5 {
  font-size: 20px;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-01 .container .plan_content .col-R h5, .is-page-service .is-service-02 .container .plan_content .col-R h5, .is-page-about .is-service-01 .container .plan_content .col-R h5, .is-page-about .is-service-02 .container .plan_content .col-R h5 {
    font-size: 20px;
    font-size: calc(0 * 100vw + 20px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-01 .container .plan_content .col-R h5, .is-page-service .is-service-02 .container .plan_content .col-R h5, .is-page-about .is-service-01 .container .plan_content .col-R h5, .is-page-about .is-service-02 .container .plan_content .col-R h5 {
    font-size: 20px;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-R-table, .is-page-service .is-service-02 .container .plan_content .col-R-table, .is-page-about .is-service-01 .container .plan_content .col-R-table, .is-page-about .is-service-02 .container .plan_content .col-R-table {
  width: 100%;
  position: relative;
  z-index: 101;
  border-collapse: separate;
  overflow: hidden;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table, .is-page-service .is-service-02 .container .plan_content .col-R-table, .is-page-about .is-service-01 .container .plan_content .col-R-table, .is-page-about .is-service-02 .container .plan_content .col-R-table {
    width: 100%;
    overflow: scroll;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table, .is-page-service .is-service-02 .container .plan_content .col-R-table, .is-page-about .is-service-01 .container .plan_content .col-R-table, .is-page-about .is-service-02 .container .plan_content .col-R-table {
    width: 100%;
    overflow: scroll;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-R-table .center, .is-page-service .is-service-02 .container .plan_content .col-R-table .center, .is-page-about .is-service-01 .container .plan_content .col-R-table .center, .is-page-about .is-service-02 .container .plan_content .col-R-table .center {
  text-align: center;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table .right, .is-page-service .is-service-02 .container .plan_content .col-R-table .right, .is-page-about .is-service-01 .container .plan_content .col-R-table .right, .is-page-about .is-service-02 .container .plan_content .col-R-table .right {
  text-align: right;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table .border-none-bottom, .is-page-service .is-service-02 .container .plan_content .col-R-table .border-none-bottom, .is-page-about .is-service-01 .container .plan_content .col-R-table .border-none-bottom, .is-page-about .is-service-02 .container .plan_content .col-R-table .border-none-bottom {
  border-bottom: 0;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table .border-none-right, .is-page-service .is-service-02 .container .plan_content .col-R-table .border-none-right, .is-page-about .is-service-01 .container .plan_content .col-R-table .border-none-right, .is-page-about .is-service-02 .container .plan_content .col-R-table .border-none-right {
  border-right: 0;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:first-child th, .is-page-service .is-service-02 .container .plan_content .col-R-table tr:first-child th, .is-page-about .is-service-01 .container .plan_content .col-R-table tr:first-child th, .is-page-about .is-service-02 .container .plan_content .col-R-table tr:first-child th {
  border-radius: 10px 0 0 0;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:first-child td, .is-page-service .is-service-02 .container .plan_content .col-R-table tr:first-child td, .is-page-about .is-service-01 .container .plan_content .col-R-table tr:first-child td, .is-page-about .is-service-02 .container .plan_content .col-R-table tr:first-child td {
  border-radius: 0 10px 0 0;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:first-child th,
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:first-child td, .is-page-service .is-service-02 .container .plan_content .col-R-table tr:first-child th,
.is-page-service .is-service-02 .container .plan_content .col-R-table tr:first-child td, .is-page-about .is-service-01 .container .plan_content .col-R-table tr:first-child th,
.is-page-about .is-service-01 .container .plan_content .col-R-table tr:first-child td, .is-page-about .is-service-02 .container .plan_content .col-R-table tr:first-child th,
.is-page-about .is-service-02 .container .plan_content .col-R-table tr:first-child td {
  background-color: #efefef;
  border-top: 1px solid #efefef;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:last-child th, .is-page-service .is-service-02 .container .plan_content .col-R-table tr:last-child th, .is-page-about .is-service-01 .container .plan_content .col-R-table tr:last-child th, .is-page-about .is-service-02 .container .plan_content .col-R-table tr:last-child th {
  border-radius: 0 0 0 10px;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table tr:last-child td, .is-page-service .is-service-02 .container .plan_content .col-R-table tr:last-child td, .is-page-about .is-service-01 .container .plan_content .col-R-table tr:last-child td, .is-page-about .is-service-02 .container .plan_content .col-R-table tr:last-child td {
  border-radius: 0 0 10px 0;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table th,
.is-page-service .is-service-01 .container .plan_content .col-R-table td, .is-page-service .is-service-02 .container .plan_content .col-R-table th,
.is-page-service .is-service-02 .container .plan_content .col-R-table td, .is-page-about .is-service-01 .container .plan_content .col-R-table th,
.is-page-about .is-service-01 .container .plan_content .col-R-table td, .is-page-about .is-service-02 .container .plan_content .col-R-table th,
.is-page-about .is-service-02 .container .plan_content .col-R-table td {
  vertical-align: middle;
  white-space: nowrap;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table table, .is-page-service .is-service-02 .container .plan_content .col-R-table table, .is-page-about .is-service-01 .container .plan_content .col-R-table table, .is-page-about .is-service-02 .container .plan_content .col-R-table table {
  width: 100%;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table th, .is-page-service .is-service-02 .container .plan_content .col-R-table th, .is-page-about .is-service-01 .container .plan_content .col-R-table th, .is-page-about .is-service-02 .container .plan_content .col-R-table th {
  text-align: left;
  padding: 1.4em 30px;
  font-size: 12px;
  font-weight: 700;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-left: 1px solid #efefef;
}
@media (min-width: 480px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table th, .is-page-service .is-service-02 .container .plan_content .col-R-table th, .is-page-about .is-service-01 .container .plan_content .col-R-table th, .is-page-about .is-service-02 .container .plan_content .col-R-table th {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table th, .is-page-service .is-service-02 .container .plan_content .col-R-table th, .is-page-about .is-service-01 .container .plan_content .col-R-table th, .is-page-about .is-service-02 .container .plan_content .col-R-table th {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table th, .is-page-service .is-service-02 .container .plan_content .col-R-table th, .is-page-about .is-service-01 .container .plan_content .col-R-table th, .is-page-about .is-service-02 .container .plan_content .col-R-table th {
    padding: 0.4em 10px;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-R-table td, .is-page-service .is-service-02 .container .plan_content .col-R-table td, .is-page-about .is-service-01 .container .plan_content .col-R-table td, .is-page-about .is-service-02 .container .plan_content .col-R-table td {
  font-size: 12px;
  padding: 1em;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
@media (min-width: 480px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table td, .is-page-service .is-service-02 .container .plan_content .col-R-table td, .is-page-about .is-service-01 .container .plan_content .col-R-table td, .is-page-about .is-service-02 .container .plan_content .col-R-table td {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-01 .container .plan_content .col-R-table td, .is-page-service .is-service-02 .container .plan_content .col-R-table td, .is-page-about .is-service-01 .container .plan_content .col-R-table td, .is-page-about .is-service-02 .container .plan_content .col-R-table td {
    font-size: 12px;
  }
}
.is-page-service .is-service-01 .container .plan_content .col-R-table td:first-child, .is-page-service .is-service-02 .container .plan_content .col-R-table td:first-child, .is-page-about .is-service-01 .container .plan_content .col-R-table td:first-child, .is-page-about .is-service-02 .container .plan_content .col-R-table td:first-child {
  font-weight: 700;
}
.is-page-service .is-service-01 .container .plan_content .col-R-table-wrapper, .is-page-service .is-service-02 .container .plan_content .col-R-table-wrapper, .is-page-about .is-service-01 .container .plan_content .col-R-table-wrapper, .is-page-about .is-service-02 .container .plan_content .col-R-table-wrapper {
  position: relative;
}
.is-page-service .is-service-01 .bg-txt, .is-page-service .is-service-02 .bg-txt, .is-page-about .is-service-01 .bg-txt, .is-page-about .is-service-02 .bg-txt {
  margin-top: 60px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  text-align: center;
  color: rgba(196, 196, 196, 0.2);
  font-weight: 700;
  display: block;
}
@media (min-width: 480px) {
  .is-page-service .is-service-01 .bg-txt, .is-page-service .is-service-02 .bg-txt, .is-page-about .is-service-01 .bg-txt, .is-page-about .is-service-02 .bg-txt {
    font-size: 80px;
    font-size: calc(0.05 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-01 .bg-txt, .is-page-service .is-service-02 .bg-txt, .is-page-about .is-service-01 .bg-txt, .is-page-about .is-service-02 .bg-txt {
    font-size: 80px;
  }
}
.is-page-service .is-service-01 .en, .is-page-service .is-service-02 .en, .is-page-about .is-service-01 .en, .is-page-about .is-service-02 .en {
  justify-content: center;
}
.is-page-service .is-service-flow, .is-page-about .is-service-flow {
  margin: 60px auto 160px;
  padding: 0 9.83%;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-flow, .is-page-about .is-service-flow {
    padding: 0 5%;
  }
}
.is-page-service .is-service-flow .bg-txt, .is-page-about .is-service-flow .bg-txt {
  margin-top: 60px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: rgba(196, 196, 196, 0.2);
  font-weight: 700;
  display: block;
  text-align: left;
}
@media (min-width: 480px) {
  .is-page-service .is-service-flow .bg-txt, .is-page-about .is-service-flow .bg-txt {
    font-size: 80px;
    font-size: calc(0.05 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-flow .bg-txt, .is-page-about .is-service-flow .bg-txt {
    font-size: 80px;
  }
}
.is-page-service .is-service-flow .primary_title, .is-page-about .is-service-flow .primary_title {
  margin-bottom: 60px;
}
.is-page-service .is-service-flow .primary_title .en,
.is-page-service .is-service-flow .primary_title .tw, .is-page-about .is-service-flow .primary_title .en,
.is-page-about .is-service-flow .primary_title .tw {
  text-align: left;
}
.is-page-service .is-service-flow .primary_title .en, .is-page-about .is-service-flow .primary_title .en {
  justify-content: flex-start;
}
.is-page-service .is-service-flow_lists__item, .is-page-about .is-service-flow_lists__item {
  width: 100%;
  display: table;
  margin-bottom: 40px;
  border-radius: 10px;
  position: relative;
}
.is-page-service .is-service-flow_lists__item:before, .is-page-about .is-service-flow_lists__item:before {
  content: "";
  border: 1px solid rgba(173, 173, 173, 0.3);
  position: absolute;
  border-radius: 10px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.is-page-service .is-service-flow_lists__item:after, .is-page-about .is-service-flow_lists__item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-flow_lists__item, .is-page-about .is-service-flow_lists__item {
    outline-offset: -5px;
    padding: 8% 0;
    margin-bottom: 20px;
  }
}
.is-page-service .is-service-flow_lists__item h3,
.is-page-service .is-service-flow_lists__item p,
.is-page-service .is-service-flow_lists__item i, .is-page-about .is-service-flow_lists__item h3,
.is-page-about .is-service-flow_lists__item p,
.is-page-about .is-service-flow_lists__item i {
  color: #fff;
}
.is-page-service .is-service-flow_lists__item .step, .is-page-about .is-service-flow_lists__item .step {
  padding-top: 33px;
  padding-left: 46px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  position: relative;
  z-index: 5;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 5%;
  display: inline-block;
}
@media (min-width: 480px) {
  .is-page-service .is-service-flow_lists__item .step, .is-page-about .is-service-flow_lists__item .step {
    font-size: 48px;
    font-size: calc(0.01 * 100vw + 35.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-flow_lists__item .step, .is-page-about .is-service-flow_lists__item .step {
    font-size: 48px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-flow_lists__item .step, .is-page-about .is-service-flow_lists__item .step {
    padding-top: 10px;
    padding-left: 5%;
  }
}
.is-page-service .is-service-flow_lists__item .step i, .is-page-about .is-service-flow_lists__item .step i {
  font-size: 13px;
  font-style: normal;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-flow_lists__item .step i, .is-page-about .is-service-flow_lists__item .step i {
    font-size: 16px;
    font-size: calc(0.00375 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-flow_lists__item .step i, .is-page-about .is-service-flow_lists__item .step i {
    font-size: 16px;
  }
}
.is-page-service .is-service-flow_lists__item .step::before, .is-page-about .is-service-flow_lists__item .step::before {
  width: 1px;
  height: 60px;
  transform: rotate(45deg);
  background: #fff;
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
}
.is-page-service .is-service-flow_lists__item .content, .is-page-about .is-service-flow_lists__item .content {
  position: relative;
  z-index: 5;
  display: block;
  margin-left: 13.9%;
  padding-bottom: 94px;
  margin-right: 13.9%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-flow_lists__item .content, .is-page-about .is-service-flow_lists__item .content {
    margin-top: 5%;
    padding-bottom: 5%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-flow_lists__item .content, .is-page-about .is-service-flow_lists__item .content {
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 0;
    margin-top: 10%;
  }
}
.is-page-service .is-service-flow_lists__item .content h3, .is-page-about .is-service-flow_lists__item .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-page-service .is-service-flow_lists__item .content h3, .is-page-about .is-service-flow_lists__item .content h3 {
    font-size: 32px;
    font-size: calc(0.01 * 100vw + 19.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-flow_lists__item .content h3, .is-page-about .is-service-flow_lists__item .content h3 {
    font-size: 32px;
  }
}
.is-page-service .is-service-flow_lists__item .content p, .is-page-about .is-service-flow_lists__item .content p {
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-page-service .is-service-flow_lists__item .content p, .is-page-about .is-service-flow_lists__item .content p {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-flow_lists__item .content p, .is-page-about .is-service-flow_lists__item .content p {
    font-size: 18px;
  }
}
.is-page-service .is-service-flow_lists__item .content .lead, .is-page-about .is-service-flow_lists__item .content .lead {
  margin-bottom: 10px;
}
.is-page-service .is-service-flow_lists__item-1, .is-page-about .is-service-flow_lists__item-1 {
  background: url("../images/service/flow1.jpg") center/cover no-repeat;
}
.is-page-service .is-service-flow_lists__item-2, .is-page-about .is-service-flow_lists__item-2 {
  background: url("../images/service/flow2.jpg") center/cover no-repeat;
}
.is-page-service .is-service-flow_lists__item-3, .is-page-about .is-service-flow_lists__item-3 {
  background: url("../images/service/flow3.jpg") center/cover no-repeat;
}
.is-page-service .is-service-btn-container, .is-page-about .is-service-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-service .is-service-btn-container, .is-page-about .is-service-btn-container {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-btn-container, .is-page-about .is-service-btn-container {
    flex-wrap: wrap;
  }
}
.is-page-service .is-service-btn-container .btn, .is-page-about .is-service-btn-container .btn {
  margin-top: 45px;
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-btn-container .btn, .is-page-about .is-service-btn-container .btn {
    margin-top: 20px;
  }
}
.is-page-service .is-service-btn-container .btn a, .is-page-about .is-service-btn-container .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 15px 0;
  border: 1px solid #2F4858;
  border-radius: 3px;
  font-size: 12px;
  color: #2F4858;
  font-weight: 400;
  transition: 1s;
}
@media (min-width: 480px) {
  .is-page-service .is-service-btn-container .btn a, .is-page-about .is-service-btn-container .btn a {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-service .is-service-btn-container .btn a, .is-page-about .is-service-btn-container .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-service .is-service-btn-container .btn a, .is-page-about .is-service-btn-container .btn a {
    margin: 10px;
    padding: 10px;
  }
}
.is-page-service .is-service-btn-container .btn .line, .is-page-about .is-service-btn-container .btn .line {
  transition: 1s;
  display: inline-block;
  width: 30px;
  height: 1px;
  padding-left: 10px;
  background-color: #2F4858;
  margin-bottom: 5px;
}
.is-page-service .is-service-btn-container .btn-tel a, .is-page-about .is-service-btn-container .btn-tel a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding: 19px 43px;
  line-height: 1;
}
.is-page-service .is-service-btn-container .btn-tel a:hover, .is-page-about .is-service-btn-container .btn-tel a:hover {
  color: #fff;
  background-color: #2F4858;
}
.is-page-service .is-service-btn-container .btn-tel i, .is-page-about .is-service-btn-container .btn-tel i {
  color: inherit;
  padding-right: 10px;
}

.reverse {
  flex-direction: row-reverse;
}
.reverse .profile {
  margin-right: 0;
  margin-left: 16px;
}
.reverse .txt {
  margin-left: 0;
  margin-right: 15px;
}
@media only screen and (max-width:640px) {
  .reverse .txt {
    margin-right: 0;
  }
}
.reverse .txt::before {
  left: auto !important;
  right: -15px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: none !important;
  border-left: 15px solid #efefef; /* 更改背景顏色為 #EFEFEF */
}
@media only screen and (max-width:640px) {
  .reverse .txt::before {
    left: 50% !important;
    right: auto;
    border-top: 0 !important;
    border-bottom: 15px solid #efefef !important;
    border-right: 15px solid rgba(0, 0, 0, 0) !important;
    border-left: 15px solid rgba(0, 0, 0, 0) !important;
  }
}

.is-clm {
  margin-bottom: 11.23%;
}
.is-clm-about {
  margin-bottom: 0;
}
.is-clm .slider .swiper_clm-side-1 img {
  width: 100%;
  max-height: 179px;
}
.is-clm_why {
  margin-bottom: 100px;
  margin-top: 114px;
  position: relative;
}
.is-clm_why .is-content h4 {
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
}
@media (min-width: 480px) {
  .is-clm_why .is-content h4 {
    font-size: 24px;
    font-size: calc(0.0075 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-clm_why .is-content h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-clm_why {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.is-clm_why .img {
  right: -140px;
  top: 0;
  position: absolute;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.is-clm_why .lead {
  width: 60%;
}
@media only screen and (max-width:640px) {
  .is-clm_why .lead {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-clm .article-works-tag_lists {
    flex-wrap: wrap !important;
    margin: 30px auto;
  }
}
.is-clm_our_member {
  margin-top: 100px;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member {
    margin-top: 60px;
  }
}
.is-clm_our_member .is-content {
  border-top: 1px solid #dddddd;
}
.is-clm_our_member .is-content .member-list-item {
  padding: 60px 0;
  border-bottom: 1px solid #dddddd;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .member-list-item {
    padding: 30px 0;
  }
}
.is-clm_our_member .is-content .member-list-item-1 .split-R .lead {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .member-list-item-1 .split-R .lead {
    text-align: left;
  }
}
.is-clm_our_member .is-content .member-list-item-2 .split-L {
  text-align: right;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .member-list-item-2 .split-L {
    text-align: left;
  }
}
.is-clm_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-clm_our_member .is-content .member-list-item-2 .split-L .is-sns .flex {
    justify-content: flex-start;
  }
}
.is-clm_our_member .is-content .member-list-item-2 .split-R .lead {
  float: left;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .member-list-item-2 .flex-reverse {
    flex-direction: row;
  }
}
.is-clm_our_member .is-content .txt {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .txt {
    flex-wrap: wrap;
  }
}
.is-clm_our_member .is-content .txt .position {
  color: #898989;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  padding-left: 3px;
  padding-right: 3px;
}
@media (min-width: 480px) {
  .is-clm_our_member .is-content .txt .position {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-clm_our_member .is-content .txt .position {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .txt .position {
    margin-bottom: 5px;
  }
}
.is-clm_our_member .is-content .txt .member_name {
  font-size: 32px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 480px) {
  .is-clm_our_member .is-content .txt .member_name {
    font-size: 36px;
    font-size: calc(0.005 * 100vw + 29.6px);
  }
}
@media (min-width: 1280px) {
  .is-clm_our_member .is-content .txt .member_name {
    font-size: 36px;
  }
}
.is-clm_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-clm_our_member .is-content .txt .member_name-en {
    font-size: 36px;
    font-size: calc(0.005 * 100vw + 29.6px);
  }
}
@media (min-width: 1280px) {
  .is-clm_our_member .is-content .txt .member_name-en {
    font-size: 36px;
  }
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .txt .member_name-en {
    padding: 0;
    margin: 13px 0 0;
  }
}
.is-clm_our_member .is-content .txt .member .is-sns_lists__item:not(:first-child) {
  margin-left: 0;
}
.is-clm_our_member .is-content .txt .member-sns {
  margin-top: 32px;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .txt .member-sns {
    margin-top: 0;
  }
}
.is-clm_our_member .is-content .txt .img {
  text-align: right;
  line-height: 1;
  margin-bottom: 30px;
}
.is-clm_our_member .is-content .txt img {
  margin: 0;
  display: inline-block;
}
.is-clm_our_member .is-content .txt .lead {
  width: 67%;
  float: right;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-clm_our_member .is-content .txt .lead {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-clm_our_member .is-content .txt .lead {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .txt .lead {
    width: 100%;
    float: auto;
  }
}
.is-clm_our_member .is-content .split-L {
  width: 42.4vw;
}
.is-clm_our_member .is-content .split-R {
  width: 57.6vw;
  right: 0;
  max-width: 670px;
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .split-R {
    margin-top: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-clm_our_member .is-content .split-L, .is-clm_our_member .is-content .split-R {
    width: 100%;
  }
}
.is-clm .is-works .article-works {
  margin-bottom: 0;
}
.is-clm .is-works .clm_item {
  margin: 0 30px 0 0;
}
.is-clm .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;
  }
}

.col-R {
  margin-left: 50%;
}
@media only screen and (max-width:640px) {
  .col-R {
    margin-left: 0;
  }
}
.col-R .tw {
  text-align: left;
}

.is-service-text {
  width: 50%;
  margin-bottom: 210px;
}
@media only screen and (max-width:640px) {
  .is-service-text {
    width: 100%;
  }
}
.is-service-text p {
  font-size: 13px;
  position: relative;
}
@media (min-width: 480px) {
  .is-service-text p {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-service-text p {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-service-text {
    margin-bottom: 160px;
  }
}
.is-service-text-small-btm-r {
  display: block;
  text-align: right;
  position: relative;
  margin-top: 10%;
  width: 42%;
  margin: 2.62% 0 0 auto;
}
@media only screen and (max-width:640px) {
  .is-service-text-small-btm-r {
    margin-top: 30px;
    width: 100%;
  }
}
.is-service-text-small-btm-r p {
  text-align: left;
}
.is-service-text .is-page-about-message-txt .lead {
  text-align: left;
}
.is-service-lists-wrapper {
  width: 100vw;
  position: relative;
  left: -13%;
  margin-bottom: 8.8%;
}
.is-service-lists__item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  padding: 7% 9.83%;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  transition: 1s;
}
@media (min-width: 480px) {
  .is-service-lists__item {
    font-size: 64px;
    font-size: calc(0.04 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-service-lists__item {
    font-size: 64px;
  }
}
.is-service-lists__item:hover {
  opacity: 0.7;
}
.is-service-lists__item .btn-more {
  color: #fff;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media (min-width: 480px) {
  .is-service-lists__item .btn-more {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-service-lists__item .btn-more {
    font-size: 18px;
  }
}
.is-service-lists__item .btn-more i {
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: 16px;
  line-height: 36px;
  text-align: center;
}
@media (min-width: 480px) {
  .is-service-lists__item .btn-more i {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-service-lists__item .btn-more i {
    font-size: 12px;
  }
}
.is-service-lists__item:nth-child(1) {
  background-image: url("../images/service/service-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.is-service-lists__item:nth-child(2) {
  background-image: url("../images/service/service-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.is-service-lists__item:nth-child(3) {
  background-image: url("../images/service/service-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.is-service-lists__item:nth-child(4) {
  background-image: url("../images/service/service-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.is-service-point {
  margin-bottom: 8.8%;
}
.is-service-point-item {
  width: 100%;
  padding: 2.62% 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #efefef;
}
@media only screen and (max-width:640px) {
  .is-service-point-item {
    padding: 30px 0;
  }
}
.is-service-point-item:last-child {
  border-bottom: 1px solid #efefef;
}
.is-service-point-item .txt-small {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: rgba(5, 55, 124, 0.1882352941);
}
@media (min-width: 480px) {
  .is-service-point-item .txt-small {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-service-point-item .txt-small {
    font-size: 12px;
  }
}
.is-service-point-item-L {
  width: 20.6%;
}
@media only screen and (max-width:640px) {
  .is-service-point-item-L {
    width: auto;
  }
}
.is-service-point-item-L .ttl {
  font-size: 48px;
  color: #2F4858;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-service-point-item-L .ttl {
    font-size: 66px;
    font-size: calc(0.0225 * 100vw + 37.2px);
  }
}
@media (min-width: 1280px) {
  .is-service-point-item-L .ttl {
    font-size: 66px;
  }
}
.is-service-point-item-R {
  width: 79.4%;
}
.is-service-point-item-R .subttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .is-service-point-item-R .subttl {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-service-point-item-R .subttl {
    font-size: 24px;
  }
}
.is-service-point-item-R .txt {
  line-height: 2;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-service-point-item-R .txt {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-service-point-item-R .txt {
    font-size: 15px;
  }
}
.is-service-trade {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.is-service-trade-card {
  width: calc(25% - 45px); /* 减去间隔的总宽度 */
  margin-right: 60px;
  margin-bottom: 60px;
  box-sizing: border-box;
  border-radius: 28px;
  box-shadow: 9px 10px 30px rgba(0, 0, 0, 0.06);
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-trade-card {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-service-trade-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.is-service-trade-card:nth-child(4n) {
  margin-right: 0;
}
.is-service-trade-card .is-service-trade-detail {
  padding: 0 30px 30px 30px;
  opacity: 0;
  transition: max-height 1s, opacity 1s;
  max-height: 0;
}
.is-service-trade-card .is-service-trade-detail .arrow {
  margin: 0 auto;
}
.is-service-trade-card:hover .is-service-trade-detail {
  transition: max-height 1s, opacity 2s;
  opacity: 1;
  max-height: 400px;
}
.is-service-trade-card:hover .arrow {
  display: none;
}
.is-service-trade-card i {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  padding: 20% 0;
}
@media (min-width: 480px) {
  .is-service-trade-card i {
    font-size: 48px;
    font-size: calc(0.015 * 100vw + 28.8px);
  }
}
@media (min-width: 1280px) {
  .is-service-trade-card i {
    font-size: 48px;
  }
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-trade-card i {
    padding: 60px 0 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-service-trade-card i {
    padding: 30px 0 15px;
  }
}
.is-service-trade-card .ttl {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1.2em;
  text-align: center;
}
@media (min-width: 480px) {
  .is-service-trade-card .ttl {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-service-trade-card .ttl {
    font-size: 24px;
  }
}
.is-service-trade-card-detail {
  font-size: 13px;
  text-align: left;
}
@media (min-width: 480px) {
  .is-service-trade-card-detail {
    font-size: 15px;
    font-size: calc(0.0025 * 100vw + 11.8px);
  }
}
@media (min-width: 1280px) {
  .is-service-trade-card-detail {
    font-size: 15px;
  }
}
.is-service-trade-card img {
  margin: 0 auto;
  padding-bottom: 10%;
}

.submenu-flex-container {
  display: flex; /* 使用Flexbox */
  justify-content: center; /* 水平居中 */
  list-style: none; /* 去除項目符號 */
  padding: 0; /* 去除預設的內距 */
  margin-bottom: 7.02%;
}
.submenu-flex-container li {
  margin: 0 30px;
}
@media only screen and (max-width:640px) {
  .submenu-flex-container li {
    margin: 0 10px;
  }
}
.submenu-flex-container a {
  text-decoration: none; /* 去除下劃線 */
  color: #000; /* 設置文字顏色 */
  font-size: 18px;
  color: #cbcbcb;
  font-weight: 700;
}
@media (min-width: 480px) {
  .submenu-flex-container a {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .submenu-flex-container a {
    font-size: 20px;
  }
}
.submenu-flex-container .active a {
  color: #2F4858;
  position: relative;
}
.submenu-flex-container .active a::before {
  content: "\f0da";
  position: absolute;
  top: 60%;
  left: -10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
  font-style: normal;
}
@media only screen and (max-width:640px) {
  .submenu-flex-container .active a::before {
    left: -5px;
  }
}

.download {
  text-align: center;
  margin: 5% auto;
  width: 320px;
  height: 64px;
  border-radius: 32px;
  background-color: #f15a21;
  line-height: 69px;
}
@media only screen and (max-width:640px) {
  .download {
    width: 100%;
    margin: 10% auto;
  }
}
.download a {
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 480px) {
  .download a {
    font-size: 18px;
    font-size: calc(0 * 100vw + 18px);
  }
}
@media (min-width: 1280px) {
  .download a {
    font-size: 18px;
  }
}
.download i {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}
@media (min-width: 480px) {
  .download i {
    font-size: 18px;
    font-size: calc(0 * 100vw + 18px);
  }
}
@media (min-width: 1280px) {
  .download i {
    font-size: 18px;
  }
}

.article-course-cat_lists, .article-product-cat_lists, .article-blog-cat_lists {
  padding-left: 23px;
}
.article-course-cat_lists li a,
.article-course-cat_lists li span, .article-product-cat_lists li a,
.article-product-cat_lists li span, .article-blog-cat_lists li a,
.article-blog-cat_lists li span {
  line-height: 1;
  margin-bottom: 9px;
  color: #868686;
  transition: 1s;
  font-size: 12px;
}
@media (min-width: 480px) {
  .article-course-cat_lists li a,
  .article-course-cat_lists li span, .article-product-cat_lists li a,
  .article-product-cat_lists li span, .article-blog-cat_lists li a,
  .article-blog-cat_lists li span {
    font-size: 15px;
    font-size: calc(0.00375 * 100vw + 10.2px);
  }
}
@media (min-width: 1280px) {
  .article-course-cat_lists li a,
  .article-course-cat_lists li span, .article-product-cat_lists li a,
  .article-product-cat_lists li span, .article-blog-cat_lists li a,
  .article-blog-cat_lists li span {
    font-size: 15px;
  }
}
.article-course-cat_lists li:hover a,
.article-course-cat_lists li:hover span, .article-product-cat_lists li:hover a,
.article-product-cat_lists li:hover span, .article-blog-cat_lists li:hover a,
.article-blog-cat_lists li:hover span {
  color: #000;
}
@media only screen and (max-width:640px) {
  .article-course-cat_lists li, .article-product-cat_lists li, .article-blog-cat_lists li {
    margin-right: 2em;
    white-space: nowrap;
  }
}
.article-course-cat_lists .current, .article-product-cat_lists .current, .article-blog-cat_lists .current {
  position: relative;
}
.article-course-cat_lists .current a,
.article-course-cat_lists .current span, .article-product-cat_lists .current a,
.article-product-cat_lists .current span, .article-blog-cat_lists .current a,
.article-blog-cat_lists .current span {
  color: #000000;
}
.article-course-cat_lists .current:before, .article-product-cat_lists .current:before, .article-blog-cat_lists .current:before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #adadad;
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
}
.article-course .article-course_lists, .article-course .article-course-other_lists,
.article-course .article-product_lists,
.article-course .article-product-other_lists,
.article-course .article-blog_lists,
.article-course .article-blog-other_lists, .article-product .article-course_lists, .article-product .article-course-other_lists,
.article-product .article-product_lists,
.article-product .article-product-other_lists,
.article-product .article-blog_lists,
.article-product .article-blog-other_lists, .article-blog .article-course_lists, .article-blog .article-course-other_lists,
.article-blog .article-product_lists,
.article-blog .article-product-other_lists,
.article-blog .article-blog_lists,
.article-blog .article-blog-other_lists {
  align-items: stretch;
}
.article-course .article-course_lists .img, .article-course .article-course-other_lists .img,
.article-course .article-product_lists .img,
.article-course .article-product-other_lists .img,
.article-course .article-blog_lists .img,
.article-course .article-blog-other_lists .img, .article-product .article-course_lists .img, .article-product .article-course-other_lists .img,
.article-product .article-product_lists .img,
.article-product .article-product-other_lists .img,
.article-product .article-blog_lists .img,
.article-product .article-blog-other_lists .img, .article-blog .article-course_lists .img, .article-blog .article-course-other_lists .img,
.article-blog .article-product_lists .img,
.article-blog .article-product-other_lists .img,
.article-blog .article-blog_lists .img,
.article-blog .article-blog-other_lists .img {
  position: relative;
  line-height: 0;
}
.article-course .article-course_lists .img img, .article-course .article-course-other_lists .img img,
.article-course .article-product_lists .img img,
.article-course .article-product-other_lists .img img,
.article-course .article-blog_lists .img img,
.article-course .article-blog-other_lists .img img, .article-product .article-course_lists .img img, .article-product .article-course-other_lists .img img,
.article-product .article-product_lists .img img,
.article-product .article-product-other_lists .img img,
.article-product .article-blog_lists .img img,
.article-product .article-blog-other_lists .img img, .article-blog .article-course_lists .img img, .article-blog .article-course-other_lists .img img,
.article-blog .article-product_lists .img img,
.article-blog .article-product-other_lists .img img,
.article-blog .article-blog_lists .img img,
.article-blog .article-blog-other_lists .img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.article-course .article-course_lists .col-1, .article-course .article-course_lists .col-2, .article-course .article-course-other_lists .col-1, .article-course .article-course-other_lists .col-2,
.article-course .article-product_lists .col-1,
.article-course .article-product_lists .col-2,
.article-course .article-product-other_lists .col-1,
.article-course .article-product-other_lists .col-2,
.article-course .article-blog_lists .col-1,
.article-course .article-blog_lists .col-2,
.article-course .article-blog-other_lists .col-1,
.article-course .article-blog-other_lists .col-2, .article-product .article-course_lists .col-1, .article-product .article-course_lists .col-2, .article-product .article-course-other_lists .col-1, .article-product .article-course-other_lists .col-2,
.article-product .article-product_lists .col-1,
.article-product .article-product_lists .col-2,
.article-product .article-product-other_lists .col-1,
.article-product .article-product-other_lists .col-2,
.article-product .article-blog_lists .col-1,
.article-product .article-blog_lists .col-2,
.article-product .article-blog-other_lists .col-1,
.article-product .article-blog-other_lists .col-2, .article-blog .article-course_lists .col-1, .article-blog .article-course_lists .col-2, .article-blog .article-course-other_lists .col-1, .article-blog .article-course-other_lists .col-2,
.article-blog .article-product_lists .col-1,
.article-blog .article-product_lists .col-2,
.article-blog .article-product-other_lists .col-1,
.article-blog .article-product-other_lists .col-2,
.article-blog .article-blog_lists .col-1,
.article-blog .article-blog_lists .col-2,
.article-blog .article-blog-other_lists .col-1,
.article-blog .article-blog-other_lists .col-2 {
  width: 50%;
}
.article-course .article-course_lists .col-1 .article-clm_lists__item, .article-course .article-course_lists .col-2 .article-clm_lists__item, .article-course .article-course-other_lists .col-1 .article-clm_lists__item, .article-course .article-course-other_lists .col-2 .article-clm_lists__item,
.article-course .article-product_lists .col-1 .article-clm_lists__item,
.article-course .article-product_lists .col-2 .article-clm_lists__item,
.article-course .article-product-other_lists .col-1 .article-clm_lists__item,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item,
.article-course .article-blog_lists .col-1 .article-clm_lists__item,
.article-course .article-blog_lists .col-2 .article-clm_lists__item,
.article-course .article-blog-other_lists .col-1 .article-clm_lists__item,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item, .article-product .article-course_lists .col-1 .article-clm_lists__item, .article-product .article-course_lists .col-2 .article-clm_lists__item, .article-product .article-course-other_lists .col-1 .article-clm_lists__item, .article-product .article-course-other_lists .col-2 .article-clm_lists__item,
.article-product .article-product_lists .col-1 .article-clm_lists__item,
.article-product .article-product_lists .col-2 .article-clm_lists__item,
.article-product .article-product-other_lists .col-1 .article-clm_lists__item,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item,
.article-product .article-blog_lists .col-1 .article-clm_lists__item,
.article-product .article-blog_lists .col-2 .article-clm_lists__item,
.article-product .article-blog-other_lists .col-1 .article-clm_lists__item,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item, .article-blog .article-course_lists .col-1 .article-clm_lists__item, .article-blog .article-course_lists .col-2 .article-clm_lists__item, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item,
.article-blog .article-product_lists .col-1 .article-clm_lists__item,
.article-blog .article-product_lists .col-2 .article-clm_lists__item,
.article-blog .article-product-other_lists .col-1 .article-clm_lists__item,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item,
.article-blog .article-blog_lists .col-1 .article-clm_lists__item,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item,
.article-blog .article-blog-other_lists .col-1 .article-clm_lists__item,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item {
  margin: 0 16px 16px 0;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-1 .article-clm_lists__item, .article-course .article-course_lists .col-2 .article-clm_lists__item, .article-course .article-course-other_lists .col-1 .article-clm_lists__item, .article-course .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-course .article-product_lists .col-1 .article-clm_lists__item,
  .article-course .article-product_lists .col-2 .article-clm_lists__item,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-course .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item,
  .article-course .article-blog_lists .col-2 .article-clm_lists__item,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item,
  .article-course .article-blog-other_lists .col-2 .article-clm_lists__item, .article-product .article-course_lists .col-1 .article-clm_lists__item, .article-product .article-course_lists .col-2 .article-clm_lists__item, .article-product .article-course-other_lists .col-1 .article-clm_lists__item, .article-product .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-product .article-product_lists .col-1 .article-clm_lists__item,
  .article-product .article-product_lists .col-2 .article-clm_lists__item,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-product .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item,
  .article-product .article-blog_lists .col-2 .article-clm_lists__item,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item,
  .article-product .article-blog-other_lists .col-2 .article-clm_lists__item, .article-blog .article-course_lists .col-1 .article-clm_lists__item, .article-blog .article-course_lists .col-2 .article-clm_lists__item, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item,
  .article-blog .article-product_lists .col-2 .article-clm_lists__item,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-blog .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item,
  .article-blog .article-blog_lists .col-2 .article-clm_lists__item,
  .article-blog .article-blog-other_lists .col-1 .article-clm_lists__item,
  .article-blog .article-blog-other_lists .col-2 .article-clm_lists__item {
    margin: 0 0 8px 0;
  }
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-1, .article-course .article-course_lists .col-2, .article-course .article-course-other_lists .col-1, .article-course .article-course-other_lists .col-2,
  .article-course .article-product_lists .col-1,
  .article-course .article-product_lists .col-2,
  .article-course .article-product-other_lists .col-1,
  .article-course .article-product-other_lists .col-2,
  .article-course .article-blog_lists .col-1,
  .article-course .article-blog_lists .col-2,
  .article-course .article-blog-other_lists .col-1,
  .article-course .article-blog-other_lists .col-2, .article-product .article-course_lists .col-1, .article-product .article-course_lists .col-2, .article-product .article-course-other_lists .col-1, .article-product .article-course-other_lists .col-2,
  .article-product .article-product_lists .col-1,
  .article-product .article-product_lists .col-2,
  .article-product .article-product-other_lists .col-1,
  .article-product .article-product-other_lists .col-2,
  .article-product .article-blog_lists .col-1,
  .article-product .article-blog_lists .col-2,
  .article-product .article-blog-other_lists .col-1,
  .article-product .article-blog-other_lists .col-2, .article-blog .article-course_lists .col-1, .article-blog .article-course_lists .col-2, .article-blog .article-course-other_lists .col-1, .article-blog .article-course-other_lists .col-2,
  .article-blog .article-product_lists .col-1,
  .article-blog .article-product_lists .col-2,
  .article-blog .article-product-other_lists .col-1,
  .article-blog .article-product-other_lists .col-2,
  .article-blog .article-blog_lists .col-1,
  .article-blog .article-blog_lists .col-2,
  .article-blog .article-blog-other_lists .col-1,
  .article-blog .article-blog-other_lists .col-2 {
    width: 100%;
  }
}
.article-course .article-course_lists .col-1 .article-clm_lists__item, .article-course .article-course-other_lists .col-1 .article-clm_lists__item,
.article-course .article-product_lists .col-1 .article-clm_lists__item,
.article-course .article-product-other_lists .col-1 .article-clm_lists__item,
.article-course .article-blog_lists .col-1 .article-clm_lists__item,
.article-course .article-blog-other_lists .col-1 .article-clm_lists__item, .article-product .article-course_lists .col-1 .article-clm_lists__item, .article-product .article-course-other_lists .col-1 .article-clm_lists__item,
.article-product .article-product_lists .col-1 .article-clm_lists__item,
.article-product .article-product-other_lists .col-1 .article-clm_lists__item,
.article-product .article-blog_lists .col-1 .article-clm_lists__item,
.article-product .article-blog-other_lists .col-1 .article-clm_lists__item, .article-blog .article-course_lists .col-1 .article-clm_lists__item, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item,
.article-blog .article-product_lists .col-1 .article-clm_lists__item,
.article-blog .article-product-other_lists .col-1 .article-clm_lists__item,
.article-blog .article-blog_lists .col-1 .article-clm_lists__item,
.article-blog .article-blog-other_lists .col-1 .article-clm_lists__item {
  width: 100%;
}
.article-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot {
  padding: 17.4%;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot,
  .article-blog .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot {
    padding: 30px;
  }
}
.article-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
  font-size: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-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-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-1 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-other_lists .col-1 .article-clm_lists__item .text-content-foot .title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-1 .article-clm_lists__item, .article-course .article-course-other_lists .col-1 .article-clm_lists__item,
  .article-course .article-product_lists .col-1 .article-clm_lists__item,
  .article-course .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-course .article-blog_lists .col-1 .article-clm_lists__item,
  .article-course .article-blog-other_lists .col-1 .article-clm_lists__item, .article-product .article-course_lists .col-1 .article-clm_lists__item, .article-product .article-course-other_lists .col-1 .article-clm_lists__item,
  .article-product .article-product_lists .col-1 .article-clm_lists__item,
  .article-product .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-product .article-blog_lists .col-1 .article-clm_lists__item,
  .article-product .article-blog-other_lists .col-1 .article-clm_lists__item, .article-blog .article-course_lists .col-1 .article-clm_lists__item, .article-blog .article-course-other_lists .col-1 .article-clm_lists__item,
  .article-blog .article-product_lists .col-1 .article-clm_lists__item,
  .article-blog .article-product-other_lists .col-1 .article-clm_lists__item,
  .article-blog .article-blog_lists .col-1 .article-clm_lists__item,
  .article-blog .article-blog-other_lists .col-1 .article-clm_lists__item {
    margin-right: 0;
  }
}
.article-course .article-course_lists .col-2 .article-clm_lists__item, .article-course .article-course-other_lists .col-2 .article-clm_lists__item,
.article-course .article-product_lists .col-2 .article-clm_lists__item,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item,
.article-course .article-blog_lists .col-2 .article-clm_lists__item,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item, .article-product .article-course_lists .col-2 .article-clm_lists__item, .article-product .article-course-other_lists .col-2 .article-clm_lists__item,
.article-product .article-product_lists .col-2 .article-clm_lists__item,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item,
.article-product .article-blog_lists .col-2 .article-clm_lists__item,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item, .article-blog .article-course_lists .col-2 .article-clm_lists__item, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item,
.article-blog .article-product_lists .col-2 .article-clm_lists__item,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item {
  width: calc((100% - 32px) / 2);
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-2 .article-clm_lists__item, .article-course .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-course .article-product_lists .col-2 .article-clm_lists__item,
  .article-course .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-course .article-blog_lists .col-2 .article-clm_lists__item,
  .article-course .article-blog-other_lists .col-2 .article-clm_lists__item, .article-product .article-course_lists .col-2 .article-clm_lists__item, .article-product .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-product .article-product_lists .col-2 .article-clm_lists__item,
  .article-product .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-product .article-blog_lists .col-2 .article-clm_lists__item,
  .article-product .article-blog-other_lists .col-2 .article-clm_lists__item, .article-blog .article-course_lists .col-2 .article-clm_lists__item, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item,
  .article-blog .article-product_lists .col-2 .article-clm_lists__item,
  .article-blog .article-product-other_lists .col-2 .article-clm_lists__item,
  .article-blog .article-blog_lists .col-2 .article-clm_lists__item,
  .article-blog .article-blog-other_lists .col-2 .article-clm_lists__item {
    width: calc((100% - 8px) / 2);
  }
}
.article-course .article-course_lists .col-3, .article-course .article-course-other_lists .col-3,
.article-course .article-product_lists .col-3,
.article-course .article-product-other_lists .col-3,
.article-course .article-blog_lists .col-3,
.article-course .article-blog-other_lists .col-3, .article-product .article-course_lists .col-3, .article-product .article-course-other_lists .col-3,
.article-product .article-product_lists .col-3,
.article-product .article-product-other_lists .col-3,
.article-product .article-blog_lists .col-3,
.article-product .article-blog-other_lists .col-3, .article-blog .article-course_lists .col-3, .article-blog .article-course-other_lists .col-3,
.article-blog .article-product_lists .col-3,
.article-blog .article-product-other_lists .col-3,
.article-blog .article-blog_lists .col-3,
.article-blog .article-blog-other_lists .col-3 {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.article-course .article-course_lists .col-3 .article-clm_lists__item, .article-course .article-course-other_lists .col-3 .article-clm_lists__item,
.article-course .article-product_lists .col-3 .article-clm_lists__item,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item,
.article-course .article-blog_lists .col-3 .article-clm_lists__item,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item, .article-product .article-course_lists .col-3 .article-clm_lists__item, .article-product .article-course-other_lists .col-3 .article-clm_lists__item,
.article-product .article-product_lists .col-3 .article-clm_lists__item,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item,
.article-product .article-blog_lists .col-3 .article-clm_lists__item,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item, .article-blog .article-course_lists .col-3 .article-clm_lists__item, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item,
.article-blog .article-product_lists .col-3 .article-clm_lists__item,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  margin-bottom: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.article-course .article-course_lists .col-3 .article-clm_lists__item:hover .switch::before, .article-course .article-course-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-course .article-product_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-course .article-blog_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item:hover .switch::before, .article-product .article-course_lists .col-3 .article-clm_lists__item:hover .switch::before, .article-product .article-course-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-product .article-product_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-product .article-blog_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item:hover .switch::before, .article-blog .article-course_lists .col-3 .article-clm_lists__item:hover .switch::before, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-blog .article-product_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item:hover .switch::before,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item:hover .switch::before {
  transform: translateX(35px);
}
.article-course .article-course_lists .col-3 .article-clm_lists__item:last-child, .article-course .article-course-other_lists .col-3 .article-clm_lists__item:last-child,
.article-course .article-product_lists .col-3 .article-clm_lists__item:last-child,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item:last-child,
.article-course .article-blog_lists .col-3 .article-clm_lists__item:last-child,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item:last-child, .article-product .article-course_lists .col-3 .article-clm_lists__item:last-child, .article-product .article-course-other_lists .col-3 .article-clm_lists__item:last-child,
.article-product .article-product_lists .col-3 .article-clm_lists__item:last-child,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item:last-child,
.article-product .article-blog_lists .col-3 .article-clm_lists__item:last-child,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item:last-child, .article-blog .article-course_lists .col-3 .article-clm_lists__item:last-child, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item:last-child,
.article-blog .article-product_lists .col-3 .article-clm_lists__item:last-child,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item:last-child,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item:last-child,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item:last-child {
  margin-right: 0;
}
.article-course .article-course_lists .col-3 .article-clm_lists__item:nth-child(3n), .article-course .article-course-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-course .article-product_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-course .article-product-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-course .article-blog_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item:nth-child(3n), .article-product .article-course_lists .col-3 .article-clm_lists__item:nth-child(3n), .article-product .article-course-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-product .article-product_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-product .article-product-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-product .article-blog_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item:nth-child(3n), .article-blog .article-course_lists .col-3 .article-clm_lists__item:nth-child(3n), .article-blog .article-course-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-blog .article-product_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-blog .article-blog_lists .col-3 .article-clm_lists__item:nth-child(3n),
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-3 .article-clm_lists__item, .article-course .article-course-other_lists .col-3 .article-clm_lists__item,
  .article-course .article-product_lists .col-3 .article-clm_lists__item,
  .article-course .article-product-other_lists .col-3 .article-clm_lists__item,
  .article-course .article-blog_lists .col-3 .article-clm_lists__item,
  .article-course .article-blog-other_lists .col-3 .article-clm_lists__item, .article-product .article-course_lists .col-3 .article-clm_lists__item, .article-product .article-course-other_lists .col-3 .article-clm_lists__item,
  .article-product .article-product_lists .col-3 .article-clm_lists__item,
  .article-product .article-product-other_lists .col-3 .article-clm_lists__item,
  .article-product .article-blog_lists .col-3 .article-clm_lists__item,
  .article-product .article-blog-other_lists .col-3 .article-clm_lists__item, .article-blog .article-course_lists .col-3 .article-clm_lists__item, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item,
  .article-blog .article-product_lists .col-3 .article-clm_lists__item,
  .article-blog .article-product-other_lists .col-3 .article-clm_lists__item,
  .article-blog .article-blog_lists .col-3 .article-clm_lists__item,
  .article-blog .article-blog-other_lists .col-3 .article-clm_lists__item {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.article-course .article-course_lists .col-3 .article-clm_lists__item .is-tags, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-course .article-product_lists .col-3 .article-clm_lists__item .is-tags,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-course .article-blog_lists .col-3 .article-clm_lists__item .is-tags,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item .is-tags, .article-product .article-course_lists .col-3 .article-clm_lists__item .is-tags, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-product .article-product_lists .col-3 .article-clm_lists__item .is-tags,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-product .article-blog_lists .col-3 .article-clm_lists__item .is-tags,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item .is-tags, .article-blog .article-course_lists .col-3 .article-clm_lists__item .is-tags, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-blog .article-product_lists .col-3 .article-clm_lists__item .is-tags,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item .is-tags,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item .is-tags,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .is-tags {
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
}
.article-course .article-course_lists .col-3 .article-clm_lists__item:hover, .article-course .article-course-other_lists .col-3 .article-clm_lists__item:hover,
.article-course .article-product_lists .col-3 .article-clm_lists__item:hover,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item:hover,
.article-course .article-blog_lists .col-3 .article-clm_lists__item:hover,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item:hover, .article-product .article-course_lists .col-3 .article-clm_lists__item:hover, .article-product .article-course-other_lists .col-3 .article-clm_lists__item:hover,
.article-product .article-product_lists .col-3 .article-clm_lists__item:hover,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item:hover,
.article-product .article-blog_lists .col-3 .article-clm_lists__item:hover,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item:hover, .article-blog .article-course_lists .col-3 .article-clm_lists__item:hover, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item:hover,
.article-blog .article-product_lists .col-3 .article-clm_lists__item:hover,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item:hover,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item:hover,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item:hover {
  opacity: 0.6;
}
.article-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot {
  padding: 15.8% 10.8%;
}
.article-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title {
  font-size: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-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-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot .title, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot .title,
  .article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot .title {
    font-size: 13px;
  }
}
.article-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-left, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-left,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-left {
  flex: 1;
}
.article-course .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-course .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-course .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-course .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-course .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-product .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-product .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-product .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-product .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-product .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-blog .article-course_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-blog .article-course_lists .col-3 .article-clm_lists__item .text-content-foot-item-right, .article-blog .article-course-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right, .article-blog .article-course-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-product_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-product_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-product-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-product-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-blog_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-blog_lists .col-3 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-blog-other_lists .col-2 .article-clm_lists__item .text-content-foot-item-right,
.article-blog .article-blog-other_lists .col-3 .article-clm_lists__item .text-content-foot-item-right {
  flex: 1;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .col-2, .article-course .article-course_lists .col-3, .article-course .article-course-other_lists .col-2, .article-course .article-course-other_lists .col-3,
  .article-course .article-product_lists .col-2,
  .article-course .article-product_lists .col-3,
  .article-course .article-product-other_lists .col-2,
  .article-course .article-product-other_lists .col-3,
  .article-course .article-blog_lists .col-2,
  .article-course .article-blog_lists .col-3,
  .article-course .article-blog-other_lists .col-2,
  .article-course .article-blog-other_lists .col-3, .article-product .article-course_lists .col-2, .article-product .article-course_lists .col-3, .article-product .article-course-other_lists .col-2, .article-product .article-course-other_lists .col-3,
  .article-product .article-product_lists .col-2,
  .article-product .article-product_lists .col-3,
  .article-product .article-product-other_lists .col-2,
  .article-product .article-product-other_lists .col-3,
  .article-product .article-blog_lists .col-2,
  .article-product .article-blog_lists .col-3,
  .article-product .article-blog-other_lists .col-2,
  .article-product .article-blog-other_lists .col-3, .article-blog .article-course_lists .col-2, .article-blog .article-course_lists .col-3, .article-blog .article-course-other_lists .col-2, .article-blog .article-course-other_lists .col-3,
  .article-blog .article-product_lists .col-2,
  .article-blog .article-product_lists .col-3,
  .article-blog .article-product-other_lists .col-2,
  .article-blog .article-product-other_lists .col-3,
  .article-blog .article-blog_lists .col-2,
  .article-blog .article-blog_lists .col-3,
  .article-blog .article-blog-other_lists .col-2,
  .article-blog .article-blog-other_lists .col-3 {
    justify-content: space-between;
  }
}
.article-course .article-course_lists__item, .article-course .article-course-other_lists__item,
.article-course .article-product_lists__item,
.article-course .article-product-other_lists__item,
.article-course .article-blog_lists__item,
.article-course .article-blog-other_lists__item, .article-product .article-course_lists__item, .article-product .article-course-other_lists__item,
.article-product .article-product_lists__item,
.article-product .article-product-other_lists__item,
.article-product .article-blog_lists__item,
.article-product .article-blog-other_lists__item, .article-blog .article-course_lists__item, .article-blog .article-course-other_lists__item,
.article-blog .article-product_lists__item,
.article-blog .article-product-other_lists__item,
.article-blog .article-blog_lists__item,
.article-blog .article-blog-other_lists__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.article-course .article-course_lists__item .text-content-foot-text, .article-course .article-course-other_lists__item .text-content-foot-text,
.article-course .article-product_lists__item .text-content-foot-text,
.article-course .article-product-other_lists__item .text-content-foot-text,
.article-course .article-blog_lists__item .text-content-foot-text,
.article-course .article-blog-other_lists__item .text-content-foot-text, .article-product .article-course_lists__item .text-content-foot-text, .article-product .article-course-other_lists__item .text-content-foot-text,
.article-product .article-product_lists__item .text-content-foot-text,
.article-product .article-product-other_lists__item .text-content-foot-text,
.article-product .article-blog_lists__item .text-content-foot-text,
.article-product .article-blog-other_lists__item .text-content-foot-text, .article-blog .article-course_lists__item .text-content-foot-text, .article-blog .article-course-other_lists__item .text-content-foot-text,
.article-blog .article-product_lists__item .text-content-foot-text,
.article-blog .article-product-other_lists__item .text-content-foot-text,
.article-blog .article-blog_lists__item .text-content-foot-text,
.article-blog .article-blog-other_lists__item .text-content-foot-text {
  display: -ms-flex;
  display: flex;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists__item .text-content-foot-text, .article-course .article-course-other_lists__item .text-content-foot-text,
  .article-course .article-product_lists__item .text-content-foot-text,
  .article-course .article-product-other_lists__item .text-content-foot-text,
  .article-course .article-blog_lists__item .text-content-foot-text,
  .article-course .article-blog-other_lists__item .text-content-foot-text, .article-product .article-course_lists__item .text-content-foot-text, .article-product .article-course-other_lists__item .text-content-foot-text,
  .article-product .article-product_lists__item .text-content-foot-text,
  .article-product .article-product-other_lists__item .text-content-foot-text,
  .article-product .article-blog_lists__item .text-content-foot-text,
  .article-product .article-blog-other_lists__item .text-content-foot-text, .article-blog .article-course_lists__item .text-content-foot-text, .article-blog .article-course-other_lists__item .text-content-foot-text,
  .article-blog .article-product_lists__item .text-content-foot-text,
  .article-blog .article-product-other_lists__item .text-content-foot-text,
  .article-blog .article-blog_lists__item .text-content-foot-text,
  .article-blog .article-blog-other_lists__item .text-content-foot-text {
    display: none;
  }
}
.article-course .article-course_lists__item .text-content-foot-item-left, .article-course .article-course-other_lists__item .text-content-foot-item-left,
.article-course .article-product_lists__item .text-content-foot-item-left,
.article-course .article-product-other_lists__item .text-content-foot-item-left,
.article-course .article-blog_lists__item .text-content-foot-item-left,
.article-course .article-blog-other_lists__item .text-content-foot-item-left, .article-product .article-course_lists__item .text-content-foot-item-left, .article-product .article-course-other_lists__item .text-content-foot-item-left,
.article-product .article-product_lists__item .text-content-foot-item-left,
.article-product .article-product-other_lists__item .text-content-foot-item-left,
.article-product .article-blog_lists__item .text-content-foot-item-left,
.article-product .article-blog-other_lists__item .text-content-foot-item-left, .article-blog .article-course_lists__item .text-content-foot-item-left, .article-blog .article-course-other_lists__item .text-content-foot-item-left,
.article-blog .article-product_lists__item .text-content-foot-item-left,
.article-blog .article-product-other_lists__item .text-content-foot-item-left,
.article-blog .article-blog_lists__item .text-content-foot-item-left,
.article-blog .article-blog-other_lists__item .text-content-foot-item-left {
  flex: 1;
}
.article-course .article-course_lists__item .text-content-foot-item-right, .article-course .article-course-other_lists__item .text-content-foot-item-right,
.article-course .article-product_lists__item .text-content-foot-item-right,
.article-course .article-product-other_lists__item .text-content-foot-item-right,
.article-course .article-blog_lists__item .text-content-foot-item-right,
.article-course .article-blog-other_lists__item .text-content-foot-item-right, .article-product .article-course_lists__item .text-content-foot-item-right, .article-product .article-course-other_lists__item .text-content-foot-item-right,
.article-product .article-product_lists__item .text-content-foot-item-right,
.article-product .article-product-other_lists__item .text-content-foot-item-right,
.article-product .article-blog_lists__item .text-content-foot-item-right,
.article-product .article-blog-other_lists__item .text-content-foot-item-right, .article-blog .article-course_lists__item .text-content-foot-item-right, .article-blog .article-course-other_lists__item .text-content-foot-item-right,
.article-blog .article-product_lists__item .text-content-foot-item-right,
.article-blog .article-product-other_lists__item .text-content-foot-item-right,
.article-blog .article-blog_lists__item .text-content-foot-item-right,
.article-blog .article-blog-other_lists__item .text-content-foot-item-right {
  flex: 2;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists__item .text-content-foot-item-left, .article-course .article-course_lists__item .text-content-foot-item-right, .article-course .article-course-other_lists__item .text-content-foot-item-left, .article-course .article-course-other_lists__item .text-content-foot-item-right,
  .article-course .article-product_lists__item .text-content-foot-item-left,
  .article-course .article-product_lists__item .text-content-foot-item-right,
  .article-course .article-product-other_lists__item .text-content-foot-item-left,
  .article-course .article-product-other_lists__item .text-content-foot-item-right,
  .article-course .article-blog_lists__item .text-content-foot-item-left,
  .article-course .article-blog_lists__item .text-content-foot-item-right,
  .article-course .article-blog-other_lists__item .text-content-foot-item-left,
  .article-course .article-blog-other_lists__item .text-content-foot-item-right, .article-product .article-course_lists__item .text-content-foot-item-left, .article-product .article-course_lists__item .text-content-foot-item-right, .article-product .article-course-other_lists__item .text-content-foot-item-left, .article-product .article-course-other_lists__item .text-content-foot-item-right,
  .article-product .article-product_lists__item .text-content-foot-item-left,
  .article-product .article-product_lists__item .text-content-foot-item-right,
  .article-product .article-product-other_lists__item .text-content-foot-item-left,
  .article-product .article-product-other_lists__item .text-content-foot-item-right,
  .article-product .article-blog_lists__item .text-content-foot-item-left,
  .article-product .article-blog_lists__item .text-content-foot-item-right,
  .article-product .article-blog-other_lists__item .text-content-foot-item-left,
  .article-product .article-blog-other_lists__item .text-content-foot-item-right, .article-blog .article-course_lists__item .text-content-foot-item-left, .article-blog .article-course_lists__item .text-content-foot-item-right, .article-blog .article-course-other_lists__item .text-content-foot-item-left, .article-blog .article-course-other_lists__item .text-content-foot-item-right,
  .article-blog .article-product_lists__item .text-content-foot-item-left,
  .article-blog .article-product_lists__item .text-content-foot-item-right,
  .article-blog .article-product-other_lists__item .text-content-foot-item-left,
  .article-blog .article-product-other_lists__item .text-content-foot-item-right,
  .article-blog .article-blog_lists__item .text-content-foot-item-left,
  .article-blog .article-blog_lists__item .text-content-foot-item-right,
  .article-blog .article-blog-other_lists__item .text-content-foot-item-left,
  .article-blog .article-blog-other_lists__item .text-content-foot-item-right {
    width: 50%;
    flex: auto;
  }
}
.article-course .article-course_lists__item:nth-of-type(4n), .article-course .article-course-other_lists__item:nth-of-type(4n),
.article-course .article-product_lists__item:nth-of-type(4n),
.article-course .article-product-other_lists__item:nth-of-type(4n),
.article-course .article-blog_lists__item:nth-of-type(4n),
.article-course .article-blog-other_lists__item:nth-of-type(4n), .article-product .article-course_lists__item:nth-of-type(4n), .article-product .article-course-other_lists__item:nth-of-type(4n),
.article-product .article-product_lists__item:nth-of-type(4n),
.article-product .article-product-other_lists__item:nth-of-type(4n),
.article-product .article-blog_lists__item:nth-of-type(4n),
.article-product .article-blog-other_lists__item:nth-of-type(4n), .article-blog .article-course_lists__item:nth-of-type(4n), .article-blog .article-course-other_lists__item:nth-of-type(4n),
.article-blog .article-product_lists__item:nth-of-type(4n),
.article-blog .article-product-other_lists__item:nth-of-type(4n),
.article-blog .article-blog_lists__item:nth-of-type(4n),
.article-blog .article-blog-other_lists__item:nth-of-type(4n) {
  margin-right: 0;
}
.article-course .article-course_lists__item .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .text-content-head .tag_lists__item,
.article-course .article-product_lists__item .text-content-head .tag_lists__item,
.article-course .article-product-other_lists__item .text-content-head .tag_lists__item,
.article-course .article-blog_lists__item .text-content-head .tag_lists__item,
.article-course .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-product .article-course_lists__item .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .text-content-head .tag_lists__item,
.article-product .article-product_lists__item .text-content-head .tag_lists__item,
.article-product .article-product-other_lists__item .text-content-head .tag_lists__item,
.article-product .article-blog_lists__item .text-content-head .tag_lists__item,
.article-product .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .text-content-head .tag_lists__item,
.article-blog .article-product_lists__item .text-content-head .tag_lists__item,
.article-blog .article-product-other_lists__item .text-content-head .tag_lists__item,
.article-blog .article-blog_lists__item .text-content-head .tag_lists__item,
.article-blog .article-blog-other_lists__item .text-content-head .tag_lists__item {
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  padding: 6px 16px;
  margin-right: 12px;
  margin-bottom: 6px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-course .article-product_lists__item .text-content-head .tag_lists__item,
  .article-course .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-course .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-course .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-product .article-course_lists__item .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-product .article-product_lists__item .text-content-head .tag_lists__item,
  .article-product .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-product .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-product .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-product_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-blog-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-course .article-course_lists__item .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-course .article-product_lists__item .text-content-head .tag_lists__item,
  .article-course .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-course .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-course .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-product .article-course_lists__item .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-product .article-product_lists__item .text-content-head .tag_lists__item,
  .article-product .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-product .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-product .article-blog-other_lists__item .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-product_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-product-other_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-blog_lists__item .text-content-head .tag_lists__item,
  .article-blog .article-blog-other_lists__item .text-content-head .tag_lists__item {
    font-size: 12px;
  }
}
.article-course .article-course_lists__item .text-content-head .tag_lists__item-pick_up, .article-course .article-course-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-course .article-product_lists__item .text-content-head .tag_lists__item-pick_up,
.article-course .article-product-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-course .article-blog_lists__item .text-content-head .tag_lists__item-pick_up,
.article-course .article-blog-other_lists__item .text-content-head .tag_lists__item-pick_up, .article-product .article-course_lists__item .text-content-head .tag_lists__item-pick_up, .article-product .article-course-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-product .article-product_lists__item .text-content-head .tag_lists__item-pick_up,
.article-product .article-product-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-product .article-blog_lists__item .text-content-head .tag_lists__item-pick_up,
.article-product .article-blog-other_lists__item .text-content-head .tag_lists__item-pick_up, .article-blog .article-course_lists__item .text-content-head .tag_lists__item-pick_up, .article-blog .article-course-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-blog .article-product_lists__item .text-content-head .tag_lists__item-pick_up,
.article-blog .article-product-other_lists__item .text-content-head .tag_lists__item-pick_up,
.article-blog .article-blog_lists__item .text-content-head .tag_lists__item-pick_up,
.article-blog .article-blog-other_lists__item .text-content-head .tag_lists__item-pick_up {
  display: none;
}
.article-course .article-course_lists__item .text-content-head .arrow, .article-course .article-course-other_lists__item .text-content-head .arrow,
.article-course .article-product_lists__item .text-content-head .arrow,
.article-course .article-product-other_lists__item .text-content-head .arrow,
.article-course .article-blog_lists__item .text-content-head .arrow,
.article-course .article-blog-other_lists__item .text-content-head .arrow, .article-product .article-course_lists__item .text-content-head .arrow, .article-product .article-course-other_lists__item .text-content-head .arrow,
.article-product .article-product_lists__item .text-content-head .arrow,
.article-product .article-product-other_lists__item .text-content-head .arrow,
.article-product .article-blog_lists__item .text-content-head .arrow,
.article-product .article-blog-other_lists__item .text-content-head .arrow, .article-blog .article-course_lists__item .text-content-head .arrow, .article-blog .article-course-other_lists__item .text-content-head .arrow,
.article-blog .article-product_lists__item .text-content-head .arrow,
.article-blog .article-product-other_lists__item .text-content-head .arrow,
.article-blog .article-blog_lists__item .text-content-head .arrow,
.article-blog .article-blog-other_lists__item .text-content-head .arrow {
  width: 10%;
}
.article-course .article-course_lists__item .text-content-head .arrow img, .article-course .article-course-other_lists__item .text-content-head .arrow img,
.article-course .article-product_lists__item .text-content-head .arrow img,
.article-course .article-product-other_lists__item .text-content-head .arrow img,
.article-course .article-blog_lists__item .text-content-head .arrow img,
.article-course .article-blog-other_lists__item .text-content-head .arrow img, .article-product .article-course_lists__item .text-content-head .arrow img, .article-product .article-course-other_lists__item .text-content-head .arrow img,
.article-product .article-product_lists__item .text-content-head .arrow img,
.article-product .article-product-other_lists__item .text-content-head .arrow img,
.article-product .article-blog_lists__item .text-content-head .arrow img,
.article-product .article-blog-other_lists__item .text-content-head .arrow img, .article-blog .article-course_lists__item .text-content-head .arrow img, .article-blog .article-course-other_lists__item .text-content-head .arrow img,
.article-blog .article-product_lists__item .text-content-head .arrow img,
.article-blog .article-product-other_lists__item .text-content-head .arrow img,
.article-blog .article-blog_lists__item .text-content-head .arrow img,
.article-blog .article-blog-other_lists__item .text-content-head .arrow img {
  margin-right: 0;
}
.article-course .article-course_lists__item .text-content-foot, .article-course .article-course-other_lists__item .text-content-foot,
.article-course .article-product_lists__item .text-content-foot,
.article-course .article-product-other_lists__item .text-content-foot,
.article-course .article-blog_lists__item .text-content-foot,
.article-course .article-blog-other_lists__item .text-content-foot, .article-product .article-course_lists__item .text-content-foot, .article-product .article-course-other_lists__item .text-content-foot,
.article-product .article-product_lists__item .text-content-foot,
.article-product .article-product-other_lists__item .text-content-foot,
.article-product .article-blog_lists__item .text-content-foot,
.article-product .article-blog-other_lists__item .text-content-foot, .article-blog .article-course_lists__item .text-content-foot, .article-blog .article-course-other_lists__item .text-content-foot,
.article-blog .article-product_lists__item .text-content-foot,
.article-blog .article-product-other_lists__item .text-content-foot,
.article-blog .article-blog_lists__item .text-content-foot,
.article-blog .article-blog-other_lists__item .text-content-foot {
  text-align: left;
}
.article-course .article-course_lists__item .text-content-foot p,
.article-course .article-course_lists__item .text-content-foot span, .article-course .article-course-other_lists__item .text-content-foot p,
.article-course .article-course-other_lists__item .text-content-foot span,
.article-course .article-product_lists__item .text-content-foot p,
.article-course .article-product_lists__item .text-content-foot span,
.article-course .article-product-other_lists__item .text-content-foot p,
.article-course .article-product-other_lists__item .text-content-foot span,
.article-course .article-blog_lists__item .text-content-foot p,
.article-course .article-blog_lists__item .text-content-foot span,
.article-course .article-blog-other_lists__item .text-content-foot p,
.article-course .article-blog-other_lists__item .text-content-foot span, .article-product .article-course_lists__item .text-content-foot p,
.article-product .article-course_lists__item .text-content-foot span, .article-product .article-course-other_lists__item .text-content-foot p,
.article-product .article-course-other_lists__item .text-content-foot span,
.article-product .article-product_lists__item .text-content-foot p,
.article-product .article-product_lists__item .text-content-foot span,
.article-product .article-product-other_lists__item .text-content-foot p,
.article-product .article-product-other_lists__item .text-content-foot span,
.article-product .article-blog_lists__item .text-content-foot p,
.article-product .article-blog_lists__item .text-content-foot span,
.article-product .article-blog-other_lists__item .text-content-foot p,
.article-product .article-blog-other_lists__item .text-content-foot span, .article-blog .article-course_lists__item .text-content-foot p,
.article-blog .article-course_lists__item .text-content-foot span, .article-blog .article-course-other_lists__item .text-content-foot p,
.article-blog .article-course-other_lists__item .text-content-foot span,
.article-blog .article-product_lists__item .text-content-foot p,
.article-blog .article-product_lists__item .text-content-foot span,
.article-blog .article-product-other_lists__item .text-content-foot p,
.article-blog .article-product-other_lists__item .text-content-foot span,
.article-blog .article-blog_lists__item .text-content-foot p,
.article-blog .article-blog_lists__item .text-content-foot span,
.article-blog .article-blog-other_lists__item .text-content-foot p,
.article-blog .article-blog-other_lists__item .text-content-foot span {
  color: #000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content-foot p,
  .article-course .article-course_lists__item .text-content-foot span, .article-course .article-course-other_lists__item .text-content-foot p,
  .article-course .article-course-other_lists__item .text-content-foot span,
  .article-course .article-product_lists__item .text-content-foot p,
  .article-course .article-product_lists__item .text-content-foot span,
  .article-course .article-product-other_lists__item .text-content-foot p,
  .article-course .article-product-other_lists__item .text-content-foot span,
  .article-course .article-blog_lists__item .text-content-foot p,
  .article-course .article-blog_lists__item .text-content-foot span,
  .article-course .article-blog-other_lists__item .text-content-foot p,
  .article-course .article-blog-other_lists__item .text-content-foot span, .article-product .article-course_lists__item .text-content-foot p,
  .article-product .article-course_lists__item .text-content-foot span, .article-product .article-course-other_lists__item .text-content-foot p,
  .article-product .article-course-other_lists__item .text-content-foot span,
  .article-product .article-product_lists__item .text-content-foot p,
  .article-product .article-product_lists__item .text-content-foot span,
  .article-product .article-product-other_lists__item .text-content-foot p,
  .article-product .article-product-other_lists__item .text-content-foot span,
  .article-product .article-blog_lists__item .text-content-foot p,
  .article-product .article-blog_lists__item .text-content-foot span,
  .article-product .article-blog-other_lists__item .text-content-foot p,
  .article-product .article-blog-other_lists__item .text-content-foot span, .article-blog .article-course_lists__item .text-content-foot p,
  .article-blog .article-course_lists__item .text-content-foot span, .article-blog .article-course-other_lists__item .text-content-foot p,
  .article-blog .article-course-other_lists__item .text-content-foot span,
  .article-blog .article-product_lists__item .text-content-foot p,
  .article-blog .article-product_lists__item .text-content-foot span,
  .article-blog .article-product-other_lists__item .text-content-foot p,
  .article-blog .article-product-other_lists__item .text-content-foot span,
  .article-blog .article-blog_lists__item .text-content-foot p,
  .article-blog .article-blog_lists__item .text-content-foot span,
  .article-blog .article-blog-other_lists__item .text-content-foot p,
  .article-blog .article-blog-other_lists__item .text-content-foot span {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists__item .text-content-foot p,
  .article-course .article-course_lists__item .text-content-foot span, .article-course .article-course-other_lists__item .text-content-foot p,
  .article-course .article-course-other_lists__item .text-content-foot span,
  .article-course .article-product_lists__item .text-content-foot p,
  .article-course .article-product_lists__item .text-content-foot span,
  .article-course .article-product-other_lists__item .text-content-foot p,
  .article-course .article-product-other_lists__item .text-content-foot span,
  .article-course .article-blog_lists__item .text-content-foot p,
  .article-course .article-blog_lists__item .text-content-foot span,
  .article-course .article-blog-other_lists__item .text-content-foot p,
  .article-course .article-blog-other_lists__item .text-content-foot span, .article-product .article-course_lists__item .text-content-foot p,
  .article-product .article-course_lists__item .text-content-foot span, .article-product .article-course-other_lists__item .text-content-foot p,
  .article-product .article-course-other_lists__item .text-content-foot span,
  .article-product .article-product_lists__item .text-content-foot p,
  .article-product .article-product_lists__item .text-content-foot span,
  .article-product .article-product-other_lists__item .text-content-foot p,
  .article-product .article-product-other_lists__item .text-content-foot span,
  .article-product .article-blog_lists__item .text-content-foot p,
  .article-product .article-blog_lists__item .text-content-foot span,
  .article-product .article-blog-other_lists__item .text-content-foot p,
  .article-product .article-blog-other_lists__item .text-content-foot span, .article-blog .article-course_lists__item .text-content-foot p,
  .article-blog .article-course_lists__item .text-content-foot span, .article-blog .article-course-other_lists__item .text-content-foot p,
  .article-blog .article-course-other_lists__item .text-content-foot span,
  .article-blog .article-product_lists__item .text-content-foot p,
  .article-blog .article-product_lists__item .text-content-foot span,
  .article-blog .article-product-other_lists__item .text-content-foot p,
  .article-blog .article-product-other_lists__item .text-content-foot span,
  .article-blog .article-blog_lists__item .text-content-foot p,
  .article-blog .article-blog_lists__item .text-content-foot span,
  .article-blog .article-blog-other_lists__item .text-content-foot p,
  .article-blog .article-blog-other_lists__item .text-content-foot span {
    font-size: 16px;
  }
}
.article-course .article-course_lists__item .text-content-foot .lead, .article-course .article-course-other_lists__item .text-content-foot .lead,
.article-course .article-product_lists__item .text-content-foot .lead,
.article-course .article-product-other_lists__item .text-content-foot .lead,
.article-course .article-blog_lists__item .text-content-foot .lead,
.article-course .article-blog-other_lists__item .text-content-foot .lead, .article-product .article-course_lists__item .text-content-foot .lead, .article-product .article-course-other_lists__item .text-content-foot .lead,
.article-product .article-product_lists__item .text-content-foot .lead,
.article-product .article-product-other_lists__item .text-content-foot .lead,
.article-product .article-blog_lists__item .text-content-foot .lead,
.article-product .article-blog-other_lists__item .text-content-foot .lead, .article-blog .article-course_lists__item .text-content-foot .lead, .article-blog .article-course-other_lists__item .text-content-foot .lead,
.article-blog .article-product_lists__item .text-content-foot .lead,
.article-blog .article-product-other_lists__item .text-content-foot .lead,
.article-blog .article-blog_lists__item .text-content-foot .lead,
.article-blog .article-blog-other_lists__item .text-content-foot .lead {
  margin-bottom: 36px;
}
.article-course .article-course_lists__item .text-content-foot .more-btn_text-content, .article-course .article-course-other_lists__item .text-content-foot .more-btn_text-content,
.article-course .article-product_lists__item .text-content-foot .more-btn_text-content,
.article-course .article-product-other_lists__item .text-content-foot .more-btn_text-content,
.article-course .article-blog_lists__item .text-content-foot .more-btn_text-content,
.article-course .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course-other_lists__item .text-content-foot .more-btn_text-content,
.article-product .article-product_lists__item .text-content-foot .more-btn_text-content,
.article-product .article-product-other_lists__item .text-content-foot .more-btn_text-content,
.article-product .article-blog_lists__item .text-content-foot .more-btn_text-content,
.article-product .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course-other_lists__item .text-content-foot .more-btn_text-content,
.article-blog .article-product_lists__item .text-content-foot .more-btn_text-content,
.article-blog .article-product-other_lists__item .text-content-foot .more-btn_text-content,
.article-blog .article-blog_lists__item .text-content-foot .more-btn_text-content,
.article-blog .article-blog-other_lists__item .text-content-foot .more-btn_text-content {
  position: absolute;
  right: 0;
  bottom: 60px;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .article-course .article-course_lists__item .text-content-foot .more-btn_text-content, .article-course .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-blog-other_lists__item .text-content-foot .more-btn_text-content {
    bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists__item .text-content-foot .more-btn_text-content, .article-course .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-course .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course_lists__item .text-content-foot .more-btn_text-content, .article-product .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-product .article-blog-other_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course_lists__item .text-content-foot .more-btn_text-content, .article-blog .article-course-other_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-product_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-product-other_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-blog_lists__item .text-content-foot .more-btn_text-content,
  .article-blog .article-blog-other_lists__item .text-content-foot .more-btn_text-content {
    bottom: 30px;
    right: 0;
  }
}
.article-course .article-course_lists__item .text-content-foot .more-btn_text-content a, .article-course .article-course-other_lists__item .text-content-foot .more-btn_text-content a,
.article-course .article-product_lists__item .text-content-foot .more-btn_text-content a,
.article-course .article-product-other_lists__item .text-content-foot .more-btn_text-content a,
.article-course .article-blog_lists__item .text-content-foot .more-btn_text-content a,
.article-course .article-blog-other_lists__item .text-content-foot .more-btn_text-content a, .article-product .article-course_lists__item .text-content-foot .more-btn_text-content a, .article-product .article-course-other_lists__item .text-content-foot .more-btn_text-content a,
.article-product .article-product_lists__item .text-content-foot .more-btn_text-content a,
.article-product .article-product-other_lists__item .text-content-foot .more-btn_text-content a,
.article-product .article-blog_lists__item .text-content-foot .more-btn_text-content a,
.article-product .article-blog-other_lists__item .text-content-foot .more-btn_text-content a, .article-blog .article-course_lists__item .text-content-foot .more-btn_text-content a, .article-blog .article-course-other_lists__item .text-content-foot .more-btn_text-content a,
.article-blog .article-product_lists__item .text-content-foot .more-btn_text-content a,
.article-blog .article-product-other_lists__item .text-content-foot .more-btn_text-content a,
.article-blog .article-blog_lists__item .text-content-foot .more-btn_text-content a,
.article-blog .article-blog-other_lists__item .text-content-foot .more-btn_text-content a {
  text-decoration: underline;
}
.article-course .article-course_lists__item .text-content-foot .more-btn_text-content .text, .article-course .article-course-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-course .article-product_lists__item .text-content-foot .more-btn_text-content .text,
.article-course .article-product-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-course .article-blog_lists__item .text-content-foot .more-btn_text-content .text,
.article-course .article-blog-other_lists__item .text-content-foot .more-btn_text-content .text, .article-product .article-course_lists__item .text-content-foot .more-btn_text-content .text, .article-product .article-course-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-product .article-product_lists__item .text-content-foot .more-btn_text-content .text,
.article-product .article-product-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-product .article-blog_lists__item .text-content-foot .more-btn_text-content .text,
.article-product .article-blog-other_lists__item .text-content-foot .more-btn_text-content .text, .article-blog .article-course_lists__item .text-content-foot .more-btn_text-content .text, .article-blog .article-course-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-blog .article-product_lists__item .text-content-foot .more-btn_text-content .text,
.article-blog .article-product-other_lists__item .text-content-foot .more-btn_text-content .text,
.article-blog .article-blog_lists__item .text-content-foot .more-btn_text-content .text,
.article-blog .article-blog-other_lists__item .text-content-foot .more-btn_text-content .text {
  color: #2F4858;
}
.article-course .article-course_lists__item .text-content-bottom-inner, .article-course .article-course-other_lists__item .text-content-bottom-inner,
.article-course .article-product_lists__item .text-content-bottom-inner,
.article-course .article-product-other_lists__item .text-content-bottom-inner,
.article-course .article-blog_lists__item .text-content-bottom-inner,
.article-course .article-blog-other_lists__item .text-content-bottom-inner, .article-product .article-course_lists__item .text-content-bottom-inner, .article-product .article-course-other_lists__item .text-content-bottom-inner,
.article-product .article-product_lists__item .text-content-bottom-inner,
.article-product .article-product-other_lists__item .text-content-bottom-inner,
.article-product .article-blog_lists__item .text-content-bottom-inner,
.article-product .article-blog-other_lists__item .text-content-bottom-inner, .article-blog .article-course_lists__item .text-content-bottom-inner, .article-blog .article-course-other_lists__item .text-content-bottom-inner,
.article-blog .article-product_lists__item .text-content-bottom-inner,
.article-blog .article-product-other_lists__item .text-content-bottom-inner,
.article-blog .article-blog_lists__item .text-content-bottom-inner,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner {
  display: flex;
  margin-bottom: 13px;
}
.article-course .article-course_lists__item .text-content-bottom-inner .is-tags li, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li,
.article-course .article-product_lists__item .text-content-bottom-inner .is-tags li,
.article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li,
.article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li,
.article-product .article-product_lists__item .text-content-bottom-inner .is-tags li,
.article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li,
.article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li,
.article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li,
.article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li {
  border: 0;
  padding: 0 10px 10px 0;
}
.article-course .article-course_lists__item .text-content-bottom-inner .is-tags li:last-of-type, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-course .article-product_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li:last-of-type, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-product .article-product_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li:last-of-type, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li:last-of-type,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li:last-of-type {
  padding-right: 0;
}
.article-course .article-course_lists__item .text-content-bottom-inner .is-tags li a, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-course .article-product_lists__item .text-content-bottom-inner .is-tags li a,
.article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li a,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li a, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-product .article-product_lists__item .text-content-bottom-inner .is-tags li a,
.article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li a,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li a, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li a,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li a,
.article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li a,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a {
  padding: 10px 20px;
  margin-bottom: 0;
  border-radius: 22px;
  background-color: #f8f8f8;
}
.article-course .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-course .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-product .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw {
  font-size: 12px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-course .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-product .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course_lists__item .text-content-bottom-inner .is-tags li a .tw, .article-blog .article-course-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-product_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .is-tags li a .tw,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .is-tags li a .tw {
    font-size: 12px;
  }
}
.article-course .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-course .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-course .article-product_lists__item .text-content-bottom-inner .sub-ttl,
.article-course .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-course .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-product .article-product_lists__item .text-content-bottom-inner .sub-ttl,
.article-product .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-product .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-blog .article-product_lists__item .text-content-bottom-inner .sub-ttl,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
.article-blog .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl {
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-course .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-course .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-product .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course_lists__item .text-content-bottom-inner .sub-ttl, .article-blog .article-course-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-product_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .sub-ttl,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl {
    font-size: 16px;
  }
}
.article-course .article-course_lists__item .text-content-bottom-inner .sub-ttl-pt5, .article-course .article-course-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-course .article-product_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-course .article-product-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-course .article-blog_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl-pt5, .article-product .article-course_lists__item .text-content-bottom-inner .sub-ttl-pt5, .article-product .article-course-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-product .article-product_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-product .article-product-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-product .article-blog_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl-pt5, .article-blog .article-course_lists__item .text-content-bottom-inner .sub-ttl-pt5, .article-blog .article-course-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-blog .article-product_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-blog .article-blog_lists__item .text-content-bottom-inner .sub-ttl-pt5,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .sub-ttl-pt5 {
  padding-top: 5px;
}
.article-course .article-course_lists__item .text-content-bottom-inner .price, .article-course .article-course-other_lists__item .text-content-bottom-inner .price,
.article-course .article-product_lists__item .text-content-bottom-inner .price,
.article-course .article-product-other_lists__item .text-content-bottom-inner .price,
.article-course .article-blog_lists__item .text-content-bottom-inner .price,
.article-course .article-blog-other_lists__item .text-content-bottom-inner .price, .article-product .article-course_lists__item .text-content-bottom-inner .price, .article-product .article-course-other_lists__item .text-content-bottom-inner .price,
.article-product .article-product_lists__item .text-content-bottom-inner .price,
.article-product .article-product-other_lists__item .text-content-bottom-inner .price,
.article-product .article-blog_lists__item .text-content-bottom-inner .price,
.article-product .article-blog-other_lists__item .text-content-bottom-inner .price, .article-blog .article-course_lists__item .text-content-bottom-inner .price, .article-blog .article-course-other_lists__item .text-content-bottom-inner .price,
.article-blog .article-product_lists__item .text-content-bottom-inner .price,
.article-blog .article-product-other_lists__item .text-content-bottom-inner .price,
.article-blog .article-blog_lists__item .text-content-bottom-inner .price,
.article-blog .article-blog-other_lists__item .text-content-bottom-inner .price {
  display: inline-block;
  font-size: 16px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .price, .article-course .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-course .article-product_lists__item .text-content-bottom-inner .price,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-course .article-blog_lists__item .text-content-bottom-inner .price,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .price, .article-product .article-course_lists__item .text-content-bottom-inner .price, .article-product .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-product .article-product_lists__item .text-content-bottom-inner .price,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-product .article-blog_lists__item .text-content-bottom-inner .price,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .price, .article-blog .article-course_lists__item .text-content-bottom-inner .price, .article-blog .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-blog .article-product_lists__item .text-content-bottom-inner .price,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .price,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .price {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists__item .text-content-bottom-inner .price, .article-course .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-course .article-product_lists__item .text-content-bottom-inner .price,
  .article-course .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-course .article-blog_lists__item .text-content-bottom-inner .price,
  .article-course .article-blog-other_lists__item .text-content-bottom-inner .price, .article-product .article-course_lists__item .text-content-bottom-inner .price, .article-product .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-product .article-product_lists__item .text-content-bottom-inner .price,
  .article-product .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-product .article-blog_lists__item .text-content-bottom-inner .price,
  .article-product .article-blog-other_lists__item .text-content-bottom-inner .price, .article-blog .article-course_lists__item .text-content-bottom-inner .price, .article-blog .article-course-other_lists__item .text-content-bottom-inner .price,
  .article-blog .article-product_lists__item .text-content-bottom-inner .price,
  .article-blog .article-product-other_lists__item .text-content-bottom-inner .price,
  .article-blog .article-blog_lists__item .text-content-bottom-inner .price,
  .article-blog .article-blog-other_lists__item .text-content-bottom-inner .price {
    font-size: 16px;
  }
}
.article-course .article-course_lists__item .text-content .title, .article-course .article-course-other_lists__item .text-content .title,
.article-course .article-product_lists__item .text-content .title,
.article-course .article-product-other_lists__item .text-content .title,
.article-course .article-blog_lists__item .text-content .title,
.article-course .article-blog-other_lists__item .text-content .title, .article-product .article-course_lists__item .text-content .title, .article-product .article-course-other_lists__item .text-content .title,
.article-product .article-product_lists__item .text-content .title,
.article-product .article-product-other_lists__item .text-content .title,
.article-product .article-blog_lists__item .text-content .title,
.article-product .article-blog-other_lists__item .text-content .title, .article-blog .article-course_lists__item .text-content .title, .article-blog .article-course-other_lists__item .text-content .title,
.article-blog .article-product_lists__item .text-content .title,
.article-blog .article-product-other_lists__item .text-content .title,
.article-blog .article-blog_lists__item .text-content .title,
.article-blog .article-blog-other_lists__item .text-content .title {
  font-size: 20px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #000;
  font-weight: 500;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .text-content .title, .article-course .article-course-other_lists__item .text-content .title,
  .article-course .article-product_lists__item .text-content .title,
  .article-course .article-product-other_lists__item .text-content .title,
  .article-course .article-blog_lists__item .text-content .title,
  .article-course .article-blog-other_lists__item .text-content .title, .article-product .article-course_lists__item .text-content .title, .article-product .article-course-other_lists__item .text-content .title,
  .article-product .article-product_lists__item .text-content .title,
  .article-product .article-product-other_lists__item .text-content .title,
  .article-product .article-blog_lists__item .text-content .title,
  .article-product .article-blog-other_lists__item .text-content .title, .article-blog .article-course_lists__item .text-content .title, .article-blog .article-course-other_lists__item .text-content .title,
  .article-blog .article-product_lists__item .text-content .title,
  .article-blog .article-product-other_lists__item .text-content .title,
  .article-blog .article-blog_lists__item .text-content .title,
  .article-blog .article-blog-other_lists__item .text-content .title {
    font-size: 24px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists__item .text-content .title, .article-course .article-course-other_lists__item .text-content .title,
  .article-course .article-product_lists__item .text-content .title,
  .article-course .article-product-other_lists__item .text-content .title,
  .article-course .article-blog_lists__item .text-content .title,
  .article-course .article-blog-other_lists__item .text-content .title, .article-product .article-course_lists__item .text-content .title, .article-product .article-course-other_lists__item .text-content .title,
  .article-product .article-product_lists__item .text-content .title,
  .article-product .article-product-other_lists__item .text-content .title,
  .article-product .article-blog_lists__item .text-content .title,
  .article-product .article-blog-other_lists__item .text-content .title, .article-blog .article-course_lists__item .text-content .title, .article-blog .article-course-other_lists__item .text-content .title,
  .article-blog .article-product_lists__item .text-content .title,
  .article-blog .article-product-other_lists__item .text-content .title,
  .article-blog .article-blog_lists__item .text-content .title,
  .article-blog .article-blog-other_lists__item .text-content .title {
    font-size: 24px;
  }
}
.article-course .article-course_lists__item .thumb, .article-course .article-course-other_lists__item .thumb,
.article-course .article-product_lists__item .thumb,
.article-course .article-product-other_lists__item .thumb,
.article-course .article-blog_lists__item .thumb,
.article-course .article-blog-other_lists__item .thumb, .article-product .article-course_lists__item .thumb, .article-product .article-course-other_lists__item .thumb,
.article-product .article-product_lists__item .thumb,
.article-product .article-product-other_lists__item .thumb,
.article-product .article-blog_lists__item .thumb,
.article-product .article-blog-other_lists__item .thumb, .article-blog .article-course_lists__item .thumb, .article-blog .article-course-other_lists__item .thumb,
.article-blog .article-product_lists__item .thumb,
.article-blog .article-product-other_lists__item .thumb,
.article-blog .article-blog_lists__item .thumb,
.article-blog .article-blog-other_lists__item .thumb {
  overflow: hidden;
}
.article-course .article-course_lists__item, .article-course .article-course-other_lists__item,
.article-course .article-product_lists__item,
.article-course .article-product-other_lists__item,
.article-course .article-blog_lists__item,
.article-course .article-blog-other_lists__item, .article-product .article-course_lists__item, .article-product .article-course-other_lists__item,
.article-product .article-product_lists__item,
.article-product .article-product-other_lists__item,
.article-product .article-blog_lists__item,
.article-product .article-blog-other_lists__item, .article-blog .article-course_lists__item, .article-blog .article-course-other_lists__item,
.article-blog .article-product_lists__item,
.article-blog .article-product-other_lists__item,
.article-blog .article-blog_lists__item,
.article-blog .article-blog-other_lists__item {
  min-height: 380px;
  padding: 20px;
}
.article-course .article-course_lists__item .btn, .article-course .article-course-other_lists__item .btn,
.article-course .article-product_lists__item .btn,
.article-course .article-product-other_lists__item .btn,
.article-course .article-blog_lists__item .btn,
.article-course .article-blog-other_lists__item .btn, .article-product .article-course_lists__item .btn, .article-product .article-course-other_lists__item .btn,
.article-product .article-product_lists__item .btn,
.article-product .article-product-other_lists__item .btn,
.article-product .article-blog_lists__item .btn,
.article-product .article-blog-other_lists__item .btn, .article-blog .article-course_lists__item .btn, .article-blog .article-course-other_lists__item .btn,
.article-blog .article-product_lists__item .btn,
.article-blog .article-product-other_lists__item .btn,
.article-blog .article-blog_lists__item .btn,
.article-blog .article-blog-other_lists__item .btn {
  display: block;
}
.article-course .article-course_lists__item .btn .text-content, .article-course .article-course-other_lists__item .btn .text-content,
.article-course .article-product_lists__item .btn .text-content,
.article-course .article-product-other_lists__item .btn .text-content,
.article-course .article-blog_lists__item .btn .text-content,
.article-course .article-blog-other_lists__item .btn .text-content, .article-product .article-course_lists__item .btn .text-content, .article-product .article-course-other_lists__item .btn .text-content,
.article-product .article-product_lists__item .btn .text-content,
.article-product .article-product-other_lists__item .btn .text-content,
.article-product .article-blog_lists__item .btn .text-content,
.article-product .article-blog-other_lists__item .btn .text-content, .article-blog .article-course_lists__item .btn .text-content, .article-blog .article-course-other_lists__item .btn .text-content,
.article-blog .article-product_lists__item .btn .text-content,
.article-blog .article-product-other_lists__item .btn .text-content,
.article-blog .article-blog_lists__item .btn .text-content,
.article-blog .article-blog-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-course .article-course_lists__item .btn .text-content-head, .article-course .article-course-other_lists__item .btn .text-content-head,
.article-course .article-product_lists__item .btn .text-content-head,
.article-course .article-product-other_lists__item .btn .text-content-head,
.article-course .article-blog_lists__item .btn .text-content-head,
.article-course .article-blog-other_lists__item .btn .text-content-head, .article-product .article-course_lists__item .btn .text-content-head, .article-product .article-course-other_lists__item .btn .text-content-head,
.article-product .article-product_lists__item .btn .text-content-head,
.article-product .article-product-other_lists__item .btn .text-content-head,
.article-product .article-blog_lists__item .btn .text-content-head,
.article-product .article-blog-other_lists__item .btn .text-content-head, .article-blog .article-course_lists__item .btn .text-content-head, .article-blog .article-course-other_lists__item .btn .text-content-head,
.article-blog .article-product_lists__item .btn .text-content-head,
.article-blog .article-product-other_lists__item .btn .text-content-head,
.article-blog .article-blog_lists__item .btn .text-content-head,
.article-blog .article-blog-other_lists__item .btn .text-content-head {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}
.article-course .article-course_lists__item .btn .text-content-head .tag_lists, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists,
.article-course .article-product_lists__item .btn .text-content-head .tag_lists,
.article-course .article-product-other_lists__item .btn .text-content-head .tag_lists,
.article-course .article-blog_lists__item .btn .text-content-head .tag_lists,
.article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists, .article-product .article-course_lists__item .btn .text-content-head .tag_lists, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists,
.article-product .article-product_lists__item .btn .text-content-head .tag_lists,
.article-product .article-product-other_lists__item .btn .text-content-head .tag_lists,
.article-product .article-blog_lists__item .btn .text-content-head .tag_lists,
.article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists,
.article-blog .article-product_lists__item .btn .text-content-head .tag_lists,
.article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists,
.article-blog .article-blog_lists__item .btn .text-content-head .tag_lists,
.article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists {
  width: 90%;
}
.article-course .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
.article-course .article-product_lists__item .btn .text-content-head .tag_lists__item,
.article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
.article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item,
.article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
.article-product .article-product_lists__item .btn .text-content-head .tag_lists__item,
.article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
.article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item,
.article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
.article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item,
.article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
.article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item,
.article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists__item {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin-right: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .article-course .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-blog-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-course .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item,
  .article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists__item {
    font-size: 12px;
  }
}
.article-course .article-course_lists__item .btn .text-content-head .tag_lists__item-space, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-course .article-product_lists__item .btn .text-content-head .tag_lists__item-space,
.article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item-space,
.article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-space, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item-space, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-product .article-product_lists__item .btn .text-content-head .tag_lists__item-space,
.article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item-space,
.article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-space, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item-space, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item-space,
.article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item-space,
.article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item-space,
.article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-space {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-course .article-course_lists__item .btn .text-content-head .tag_lists__item-visual, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-course .article-product_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-visual, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item-visual, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-product .article-product_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-visual, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item-visual, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item-visual,
.article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-visual {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-course .article-course_lists__item .btn .text-content-head .tag_lists__item-event, .article-course .article-course-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-course .article-product_lists__item .btn .text-content-head .tag_lists__item-event,
.article-course .article-product-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-course .article-blog_lists__item .btn .text-content-head .tag_lists__item-event,
.article-course .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-event, .article-product .article-course_lists__item .btn .text-content-head .tag_lists__item-event, .article-product .article-course-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-product .article-product_lists__item .btn .text-content-head .tag_lists__item-event,
.article-product .article-product-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-product .article-blog_lists__item .btn .text-content-head .tag_lists__item-event,
.article-product .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-event, .article-blog .article-course_lists__item .btn .text-content-head .tag_lists__item-event, .article-blog .article-course-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-blog .article-product_lists__item .btn .text-content-head .tag_lists__item-event,
.article-blog .article-product-other_lists__item .btn .text-content-head .tag_lists__item-event,
.article-blog .article-blog_lists__item .btn .text-content-head .tag_lists__item-event,
.article-blog .article-blog-other_lists__item .btn .text-content-head .tag_lists__item-event {
  background-color: rgba(0, 0, 0, 0.8);
}
.article-course .article-course_lists__item .btn .text-content-head .arrow, .article-course .article-course-other_lists__item .btn .text-content-head .arrow,
.article-course .article-product_lists__item .btn .text-content-head .arrow,
.article-course .article-product-other_lists__item .btn .text-content-head .arrow,
.article-course .article-blog_lists__item .btn .text-content-head .arrow,
.article-course .article-blog-other_lists__item .btn .text-content-head .arrow, .article-product .article-course_lists__item .btn .text-content-head .arrow, .article-product .article-course-other_lists__item .btn .text-content-head .arrow,
.article-product .article-product_lists__item .btn .text-content-head .arrow,
.article-product .article-product-other_lists__item .btn .text-content-head .arrow,
.article-product .article-blog_lists__item .btn .text-content-head .arrow,
.article-product .article-blog-other_lists__item .btn .text-content-head .arrow, .article-blog .article-course_lists__item .btn .text-content-head .arrow, .article-blog .article-course-other_lists__item .btn .text-content-head .arrow,
.article-blog .article-product_lists__item .btn .text-content-head .arrow,
.article-blog .article-product-other_lists__item .btn .text-content-head .arrow,
.article-blog .article-blog_lists__item .btn .text-content-head .arrow,
.article-blog .article-blog-other_lists__item .btn .text-content-head .arrow {
  width: 10%;
}
.article-course .article-course_lists__item .btn .text-content-head .arrow img, .article-course .article-course-other_lists__item .btn .text-content-head .arrow img,
.article-course .article-product_lists__item .btn .text-content-head .arrow img,
.article-course .article-product-other_lists__item .btn .text-content-head .arrow img,
.article-course .article-blog_lists__item .btn .text-content-head .arrow img,
.article-course .article-blog-other_lists__item .btn .text-content-head .arrow img, .article-product .article-course_lists__item .btn .text-content-head .arrow img, .article-product .article-course-other_lists__item .btn .text-content-head .arrow img,
.article-product .article-product_lists__item .btn .text-content-head .arrow img,
.article-product .article-product-other_lists__item .btn .text-content-head .arrow img,
.article-product .article-blog_lists__item .btn .text-content-head .arrow img,
.article-product .article-blog-other_lists__item .btn .text-content-head .arrow img, .article-blog .article-course_lists__item .btn .text-content-head .arrow img, .article-blog .article-course-other_lists__item .btn .text-content-head .arrow img,
.article-blog .article-product_lists__item .btn .text-content-head .arrow img,
.article-blog .article-product-other_lists__item .btn .text-content-head .arrow img,
.article-blog .article-blog_lists__item .btn .text-content-head .arrow img,
.article-blog .article-blog-other_lists__item .btn .text-content-head .arrow img {
  margin-right: 0;
}
.article-course .article-course_lists__item .more-btn, .article-course .article-course-other_lists__item .more-btn,
.article-course .article-product_lists__item .more-btn,
.article-course .article-product-other_lists__item .more-btn,
.article-course .article-blog_lists__item .more-btn,
.article-course .article-blog-other_lists__item .more-btn, .article-product .article-course_lists__item .more-btn, .article-product .article-course-other_lists__item .more-btn,
.article-product .article-product_lists__item .more-btn,
.article-product .article-product-other_lists__item .more-btn,
.article-product .article-blog_lists__item .more-btn,
.article-product .article-blog-other_lists__item .more-btn, .article-blog .article-course_lists__item .more-btn, .article-blog .article-course-other_lists__item .more-btn,
.article-blog .article-product_lists__item .more-btn,
.article-blog .article-product-other_lists__item .more-btn,
.article-blog .article-blog_lists__item .more-btn,
.article-blog .article-blog-other_lists__item .more-btn {
  width: 100%;
  height: 100%;
}
.article-course .article-course_lists__item .more-btn .thumb img, .article-course .article-course-other_lists__item .more-btn .thumb img,
.article-course .article-product_lists__item .more-btn .thumb img,
.article-course .article-product-other_lists__item .more-btn .thumb img,
.article-course .article-blog_lists__item .more-btn .thumb img,
.article-course .article-blog-other_lists__item .more-btn .thumb img, .article-product .article-course_lists__item .more-btn .thumb img, .article-product .article-course-other_lists__item .more-btn .thumb img,
.article-product .article-product_lists__item .more-btn .thumb img,
.article-product .article-product-other_lists__item .more-btn .thumb img,
.article-product .article-blog_lists__item .more-btn .thumb img,
.article-product .article-blog-other_lists__item .more-btn .thumb img, .article-blog .article-course_lists__item .more-btn .thumb img, .article-blog .article-course-other_lists__item .more-btn .thumb img,
.article-blog .article-product_lists__item .more-btn .thumb img,
.article-blog .article-product-other_lists__item .more-btn .thumb img,
.article-blog .article-blog_lists__item .more-btn .thumb img,
.article-blog .article-blog-other_lists__item .more-btn .thumb img {
  width: 100%;
}
.article-course .article-course_lists .txt, .article-course .article-course-other_lists .txt,
.article-course .article-product_lists .txt,
.article-course .article-product-other_lists .txt,
.article-course .article-blog_lists .txt,
.article-course .article-blog-other_lists .txt, .article-product .article-course_lists .txt, .article-product .article-course-other_lists .txt,
.article-product .article-product_lists .txt,
.article-product .article-product-other_lists .txt,
.article-product .article-blog_lists .txt,
.article-product .article-blog-other_lists .txt, .article-blog .article-course_lists .txt, .article-blog .article-course-other_lists .txt,
.article-blog .article-product_lists .txt,
.article-blog .article-product-other_lists .txt,
.article-blog .article-blog_lists .txt,
.article-blog .article-blog-other_lists .txt {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .txt, .article-course .article-course-other_lists .txt,
  .article-course .article-product_lists .txt,
  .article-course .article-product-other_lists .txt,
  .article-course .article-blog_lists .txt,
  .article-course .article-blog-other_lists .txt, .article-product .article-course_lists .txt, .article-product .article-course-other_lists .txt,
  .article-product .article-product_lists .txt,
  .article-product .article-product-other_lists .txt,
  .article-product .article-blog_lists .txt,
  .article-product .article-blog-other_lists .txt, .article-blog .article-course_lists .txt, .article-blog .article-course-other_lists .txt,
  .article-blog .article-product_lists .txt,
  .article-blog .article-product-other_lists .txt,
  .article-blog .article-blog_lists .txt,
  .article-blog .article-blog-other_lists .txt {
    margin-bottom: 10px;
    flex-wrap: wrap-reverse;
  }
}
.article-course .article-course_lists .txt-hdr, .article-course .article-course-other_lists .txt-hdr,
.article-course .article-product_lists .txt-hdr,
.article-course .article-product-other_lists .txt-hdr,
.article-course .article-blog_lists .txt-hdr,
.article-course .article-blog-other_lists .txt-hdr, .article-product .article-course_lists .txt-hdr, .article-product .article-course-other_lists .txt-hdr,
.article-product .article-product_lists .txt-hdr,
.article-product .article-product-other_lists .txt-hdr,
.article-product .article-blog_lists .txt-hdr,
.article-product .article-blog-other_lists .txt-hdr, .article-blog .article-course_lists .txt-hdr, .article-blog .article-course-other_lists .txt-hdr,
.article-blog .article-product_lists .txt-hdr,
.article-blog .article-product-other_lists .txt-hdr,
.article-blog .article-blog_lists .txt-hdr,
.article-blog .article-blog-other_lists .txt-hdr {
  flex-direction: column;
  justify-content: space-between;
  min-height: 165px;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width:640px) {
  .article-course .article-course_lists .txt-hdr, .article-course .article-course-other_lists .txt-hdr,
  .article-course .article-product_lists .txt-hdr,
  .article-course .article-product-other_lists .txt-hdr,
  .article-course .article-blog_lists .txt-hdr,
  .article-course .article-blog-other_lists .txt-hdr, .article-product .article-course_lists .txt-hdr, .article-product .article-course-other_lists .txt-hdr,
  .article-product .article-product_lists .txt-hdr,
  .article-product .article-product-other_lists .txt-hdr,
  .article-product .article-blog_lists .txt-hdr,
  .article-product .article-blog-other_lists .txt-hdr, .article-blog .article-course_lists .txt-hdr, .article-blog .article-course-other_lists .txt-hdr,
  .article-blog .article-product_lists .txt-hdr,
  .article-blog .article-product-other_lists .txt-hdr,
  .article-blog .article-blog_lists .txt-hdr,
  .article-blog .article-blog-other_lists .txt-hdr {
    padding: 5%;
  }
}
.article-course .article-course_lists .txt_ftr, .article-course .article-course-other_lists .txt_ftr,
.article-course .article-product_lists .txt_ftr,
.article-course .article-product-other_lists .txt_ftr,
.article-course .article-blog_lists .txt_ftr,
.article-course .article-blog-other_lists .txt_ftr, .article-product .article-course_lists .txt_ftr, .article-product .article-course-other_lists .txt_ftr,
.article-product .article-product_lists .txt_ftr,
.article-product .article-product-other_lists .txt_ftr,
.article-product .article-blog_lists .txt_ftr,
.article-product .article-blog-other_lists .txt_ftr, .article-blog .article-course_lists .txt_ftr, .article-blog .article-course-other_lists .txt_ftr,
.article-blog .article-product_lists .txt_ftr,
.article-blog .article-product-other_lists .txt_ftr,
.article-blog .article-blog_lists .txt_ftr,
.article-blog .article-blog-other_lists .txt_ftr {
  justify-content: space-between;
  align-items: flex-end;
}
.article-course .article-course_lists .txt_ftr .price, .article-course .article-course-other_lists .txt_ftr .price,
.article-course .article-product_lists .txt_ftr .price,
.article-course .article-product-other_lists .txt_ftr .price,
.article-course .article-blog_lists .txt_ftr .price,
.article-course .article-blog-other_lists .txt_ftr .price, .article-product .article-course_lists .txt_ftr .price, .article-product .article-course-other_lists .txt_ftr .price,
.article-product .article-product_lists .txt_ftr .price,
.article-product .article-product-other_lists .txt_ftr .price,
.article-product .article-blog_lists .txt_ftr .price,
.article-product .article-blog-other_lists .txt_ftr .price, .article-blog .article-course_lists .txt_ftr .price, .article-blog .article-course-other_lists .txt_ftr .price,
.article-blog .article-product_lists .txt_ftr .price,
.article-blog .article-product-other_lists .txt_ftr .price,
.article-blog .article-blog_lists .txt_ftr .price,
.article-blog .article-blog-other_lists .txt_ftr .price {
  margin-top: 30px;
  font-size: 16px;
  color: #2F4858;
  font-weight: 700;
}
@media (min-width: 480px) {
  .article-course .article-course_lists .txt_ftr .price, .article-course .article-course-other_lists .txt_ftr .price,
  .article-course .article-product_lists .txt_ftr .price,
  .article-course .article-product-other_lists .txt_ftr .price,
  .article-course .article-blog_lists .txt_ftr .price,
  .article-course .article-blog-other_lists .txt_ftr .price, .article-product .article-course_lists .txt_ftr .price, .article-product .article-course-other_lists .txt_ftr .price,
  .article-product .article-product_lists .txt_ftr .price,
  .article-product .article-product-other_lists .txt_ftr .price,
  .article-product .article-blog_lists .txt_ftr .price,
  .article-product .article-blog-other_lists .txt_ftr .price, .article-blog .article-course_lists .txt_ftr .price, .article-blog .article-course-other_lists .txt_ftr .price,
  .article-blog .article-product_lists .txt_ftr .price,
  .article-blog .article-product-other_lists .txt_ftr .price,
  .article-blog .article-blog_lists .txt_ftr .price,
  .article-blog .article-blog-other_lists .txt_ftr .price {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists .txt_ftr .price, .article-course .article-course-other_lists .txt_ftr .price,
  .article-course .article-product_lists .txt_ftr .price,
  .article-course .article-product-other_lists .txt_ftr .price,
  .article-course .article-blog_lists .txt_ftr .price,
  .article-course .article-blog-other_lists .txt_ftr .price, .article-product .article-course_lists .txt_ftr .price, .article-product .article-course-other_lists .txt_ftr .price,
  .article-product .article-product_lists .txt_ftr .price,
  .article-product .article-product-other_lists .txt_ftr .price,
  .article-product .article-blog_lists .txt_ftr .price,
  .article-product .article-blog-other_lists .txt_ftr .price, .article-blog .article-course_lists .txt_ftr .price, .article-blog .article-course-other_lists .txt_ftr .price,
  .article-blog .article-product_lists .txt_ftr .price,
  .article-blog .article-product-other_lists .txt_ftr .price,
  .article-blog .article-blog_lists .txt_ftr .price,
  .article-blog .article-blog-other_lists .txt_ftr .price {
    font-size: 20px;
  }
}
.article-course .article-course_lists .txt_ftr .switch, .article-course .article-course-other_lists .txt_ftr .switch,
.article-course .article-product_lists .txt_ftr .switch,
.article-course .article-product-other_lists .txt_ftr .switch,
.article-course .article-blog_lists .txt_ftr .switch,
.article-course .article-blog-other_lists .txt_ftr .switch, .article-product .article-course_lists .txt_ftr .switch, .article-product .article-course-other_lists .txt_ftr .switch,
.article-product .article-product_lists .txt_ftr .switch,
.article-product .article-product-other_lists .txt_ftr .switch,
.article-product .article-blog_lists .txt_ftr .switch,
.article-product .article-blog-other_lists .txt_ftr .switch, .article-blog .article-course_lists .txt_ftr .switch, .article-blog .article-course-other_lists .txt_ftr .switch,
.article-blog .article-product_lists .txt_ftr .switch,
.article-blog .article-product-other_lists .txt_ftr .switch,
.article-blog .article-blog_lists .txt_ftr .switch,
.article-blog .article-blog-other_lists .txt_ftr .switch {
  width: 35px;
  height: 1px;
  background: #2F4858;
  position: relative;
  margin-bottom: 4px;
}
.article-course .article-course_lists .txt_ftr .switch::before, .article-course .article-course-other_lists .txt_ftr .switch::before,
.article-course .article-product_lists .txt_ftr .switch::before,
.article-course .article-product-other_lists .txt_ftr .switch::before,
.article-course .article-blog_lists .txt_ftr .switch::before,
.article-course .article-blog-other_lists .txt_ftr .switch::before, .article-product .article-course_lists .txt_ftr .switch::before, .article-product .article-course-other_lists .txt_ftr .switch::before,
.article-product .article-product_lists .txt_ftr .switch::before,
.article-product .article-product-other_lists .txt_ftr .switch::before,
.article-product .article-blog_lists .txt_ftr .switch::before,
.article-product .article-blog-other_lists .txt_ftr .switch::before, .article-blog .article-course_lists .txt_ftr .switch::before, .article-blog .article-course-other_lists .txt_ftr .switch::before,
.article-blog .article-product_lists .txt_ftr .switch::before,
.article-blog .article-product-other_lists .txt_ftr .switch::before,
.article-blog .article-blog_lists .txt_ftr .switch::before,
.article-blog .article-blog-other_lists .txt_ftr .switch::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F4858;
  position: absolute;
  top: -4px;
  left: 0;
  transform: translateX(0);
  transition: all 1s;
}
.article-course .article-course_lists .post-title, .article-course .article-course-other_lists .post-title,
.article-course .article-product_lists .post-title,
.article-course .article-product-other_lists .post-title,
.article-course .article-blog_lists .post-title,
.article-course .article-blog-other_lists .post-title, .article-product .article-course_lists .post-title, .article-product .article-course-other_lists .post-title,
.article-product .article-product_lists .post-title,
.article-product .article-product-other_lists .post-title,
.article-product .article-blog_lists .post-title,
.article-product .article-blog-other_lists .post-title, .article-blog .article-course_lists .post-title, .article-blog .article-course-other_lists .post-title,
.article-blog .article-product_lists .post-title,
.article-blog .article-product-other_lists .post-title,
.article-blog .article-blog_lists .post-title,
.article-blog .article-blog-other_lists .post-title {
  font-weight: 500;
  font-size: 16px;
  color: #2F4858;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .article-course .article-course_lists .post-title, .article-course .article-course-other_lists .post-title,
  .article-course .article-product_lists .post-title,
  .article-course .article-product-other_lists .post-title,
  .article-course .article-blog_lists .post-title,
  .article-course .article-blog-other_lists .post-title, .article-product .article-course_lists .post-title, .article-product .article-course-other_lists .post-title,
  .article-product .article-product_lists .post-title,
  .article-product .article-product-other_lists .post-title,
  .article-product .article-blog_lists .post-title,
  .article-product .article-blog-other_lists .post-title, .article-blog .article-course_lists .post-title, .article-blog .article-course-other_lists .post-title,
  .article-blog .article-product_lists .post-title,
  .article-blog .article-product-other_lists .post-title,
  .article-blog .article-blog_lists .post-title,
  .article-blog .article-blog-other_lists .post-title {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-course .article-course_lists .post-title, .article-course .article-course-other_lists .post-title,
  .article-course .article-product_lists .post-title,
  .article-course .article-product-other_lists .post-title,
  .article-course .article-blog_lists .post-title,
  .article-course .article-blog-other_lists .post-title, .article-product .article-course_lists .post-title, .article-product .article-course-other_lists .post-title,
  .article-product .article-product_lists .post-title,
  .article-product .article-product-other_lists .post-title,
  .article-product .article-blog_lists .post-title,
  .article-product .article-blog-other_lists .post-title, .article-blog .article-course_lists .post-title, .article-blog .article-course-other_lists .post-title,
  .article-blog .article-product_lists .post-title,
  .article-blog .article-product-other_lists .post-title,
  .article-blog .article-blog_lists .post-title,
  .article-blog .article-blog-other_lists .post-title {
    font-size: 16px;
  }
}
.article-course .article-course_lists .post-content, .article-course .article-course-other_lists .post-content,
.article-course .article-product_lists .post-content,
.article-course .article-product-other_lists .post-content,
.article-course .article-blog_lists .post-content,
.article-course .article-blog-other_lists .post-content, .article-product .article-course_lists .post-content, .article-product .article-course-other_lists .post-content,
.article-product .article-product_lists .post-content,
.article-product .article-product-other_lists .post-content,
.article-product .article-blog_lists .post-content,
.article-product .article-blog-other_lists .post-content, .article-blog .article-course_lists .post-content, .article-blog .article-course-other_lists .post-content,
.article-blog .article-product_lists .post-content,
.article-blog .article-product-other_lists .post-content,
.article-blog .article-blog_lists .post-content,
.article-blog .article-blog-other_lists .post-content {
  color: #c5c5c5;
  font-size: 12px;
}
.article-course-lower, .article-product-lower, .article-blog-lower {
  margin-top: 60px;
}
@media only screen and (max-width:640px) {
  .article-course-lower, .article-product-lower, .article-blog-lower {
    margin-top: 0;
  }
}
@media only screen and (max-width:640px) {
  .article-course-lower .article-clm_lists-4, .article-product-lower .article-clm_lists-4, .article-blog-lower .article-clm_lists-4 {
    justify-content: space-between;
  }
}
.article-course-foot, .article-product-foot, .article-blog-foot {
  margin-top: 60px;
  position: relative;
}
.article-course-taxonomy, .article-product-taxonomy, .article-blog-taxonomy {
  margin-top: 30px;
}
@media only screen and (max-width:640px) {
  .article-course-taxonomy, .article-product-taxonomy, .article-blog-taxonomy {
    margin-top: 20px;
  }
}
.article-course .clm_item-archives .btn:hover, .article-product .clm_item-archives .btn:hover, .article-blog .clm_item-archives .btn:hover {
  opacity: 1;
}
.article-course .clm_item-archives .text-content-foot-text:nth-child(3), .article-product .clm_item-archives .text-content-foot-text:nth-child(3), .article-blog .clm_item-archives .text-content-foot-text:nth-child(3) {
  display: none;
}
.article-course .clm_item-archives .more-btn_text-content, .article-product .clm_item-archives .more-btn_text-content, .article-blog .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-course .clm_item-archives .more-btn_text-content, .article-product .clm_item-archives .more-btn_text-content, .article-blog .clm_item-archives .more-btn_text-content {
    display: none;
  }
}
.article-course .clm_item-archives .more-btn_text-content p, .article-product .clm_item-archives .more-btn_text-content p, .article-blog .clm_item-archives .more-btn_text-content p {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.article-course .clm_item-archives .more-btn_text-content .arrow, .article-product .clm_item-archives .more-btn_text-content .arrow, .article-blog .clm_item-archives .more-btn_text-content .arrow {
  margin-left: 20px;
  padding-top: 8px;
}
.article-course-kv_lists a:hover, .article-product-kv_lists a:hover, .article-blog-kv_lists a:hover {
  opacity: 1;
}
.article-course-kv_lists .text-content-foot-text, .article-product-kv_lists .text-content-foot-text, .article-blog-kv_lists .text-content-foot-text {
  display: -ms-flex;
  display: flex;
}
.article-course-kv_lists .text-content-foot-text:first-child, .article-course-kv_lists .text-content-foot-text:nth-child(2), .article-product-kv_lists .text-content-foot-text:first-child, .article-product-kv_lists .text-content-foot-text:nth-child(2), .article-blog-kv_lists .text-content-foot-text:first-child, .article-blog-kv_lists .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 180px;
}
.article-course-kv_lists .text-content-foot-text:nth-child(2), .article-product-kv_lists .text-content-foot-text:nth-child(2), .article-blog-kv_lists .text-content-foot-text:nth-child(2) {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 180px;
}
.article-course-kv_lists .text-content-foot-text:last-child, .article-product-kv_lists .text-content-foot-text:last-child, .article-blog-kv_lists .text-content-foot-text:last-child {
  display: none;
}
.article-course-kv_lists .text-content-foot-text p,
.article-course-kv_lists .text-content-foot-text a,
.article-course-kv_lists .text-content-foot-text span, .article-product-kv_lists .text-content-foot-text p,
.article-product-kv_lists .text-content-foot-text a,
.article-product-kv_lists .text-content-foot-text span, .article-blog-kv_lists .text-content-foot-text p,
.article-blog-kv_lists .text-content-foot-text a,
.article-blog-kv_lists .text-content-foot-text span {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .article-course-kv_lists .text-content-foot-text p,
  .article-course-kv_lists .text-content-foot-text a,
  .article-course-kv_lists .text-content-foot-text span, .article-product-kv_lists .text-content-foot-text p,
  .article-product-kv_lists .text-content-foot-text a,
  .article-product-kv_lists .text-content-foot-text span, .article-blog-kv_lists .text-content-foot-text p,
  .article-blog-kv_lists .text-content-foot-text a,
  .article-blog-kv_lists .text-content-foot-text span {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-course-kv_lists .text-content-foot-text p,
  .article-course-kv_lists .text-content-foot-text a,
  .article-course-kv_lists .text-content-foot-text span, .article-product-kv_lists .text-content-foot-text p,
  .article-product-kv_lists .text-content-foot-text a,
  .article-product-kv_lists .text-content-foot-text span, .article-blog-kv_lists .text-content-foot-text p,
  .article-blog-kv_lists .text-content-foot-text a,
  .article-blog-kv_lists .text-content-foot-text span {
    font-size: 12px;
  }
}
.article-course-kv_lists .text-content-foot-item-left, .article-course-kv_lists .text-content-foot-item-right, .article-product-kv_lists .text-content-foot-item-left, .article-product-kv_lists .text-content-foot-item-right, .article-blog-kv_lists .text-content-foot-item-left, .article-blog-kv_lists .text-content-foot-item-right {
  flex: 1;
}
.article-course-kv_lists .text-content-foot .works-lead-kv p, .article-product-kv_lists .text-content-foot .works-lead-kv p, .article-blog-kv_lists .text-content-foot .works-lead-kv p {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 480px) {
  .article-course-kv_lists .text-content-foot .works-lead-kv p, .article-product-kv_lists .text-content-foot .works-lead-kv p, .article-blog-kv_lists .text-content-foot .works-lead-kv p {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-course-kv_lists .text-content-foot .works-lead-kv p, .article-product-kv_lists .text-content-foot .works-lead-kv p, .article-blog-kv_lists .text-content-foot .works-lead-kv p {
    font-size: 12px;
  }
}
.article-course_lists-archive, .article-blog_lists-archive {
  position: relative;
}
.article-course_lists-archive::before, .article-blog_lists-archive::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 60px);
  z-index: -1;
  background-color: #fbfbfb;
}
.article-course-archive, .article-blog-archive {
  z-index: 0;
}
.article-news {
  margin-bottom: 160px;
  position: relative;
  z-index: 3;
  width: 84%;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .article-news {
    margin-bottom: 0;
    width: 100%;
  }
}
.article-news_lists__item {
  margin-bottom: 30px;
}
.article-news_lists__item .thumb {
  margin-right: 30px;
  max-width: 214px;
  width: 100%;
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .thumb {
    max-width: none;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
}
.article-news_lists__item .thumb img {
  border-radius: 6px;
}
.article-news_lists__item .btn {
  padding: 2em;
  display: flex;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ECECEC;
  position: relative;
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn {
    padding: 2em;
    flex-wrap: wrap;
  }
}
.article-news_lists__item .btn .date {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #c1c1c1;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-right: 30px;
}
@media (min-width: 480px) {
  .article-news_lists__item .btn .date {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .article-news_lists__item .btn .date {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn .date {
    display: block;
    margin-bottom: 0;
    position: relative;
  }
}
.article-news_lists__item .btn .title {
  font-size: 16px;
  position: relative;
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  color: #2F4858;
  margin-bottom: 14px;
}
@media (min-width: 480px) {
  .article-news_lists__item .btn .title {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .article-news_lists__item .btn .title {
    font-size: 16px;
  }
}
.article-news_lists__item .btn .lead {
  font-size: 12px;
  color: #C5C5C5;
  padding-bottom: 1em;
}
.article-news_lists__item .btn .txt {
  flex-direction: column;
  position: relative;
  width: 100%;
}
.article-news_lists__item .btn .txt:hover i:before {
  transform: translateX(31px);
}
.article-news_lists__item .btn .txt i {
  width: 35px;
  background-color: #2F4858;
  height: 1px;
  position: absolute;
  margin-bottom: 4px;
  display: inline-block;
  margin-left: 25px;
  right: 20px;
  bottom: 20px;
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn .txt i {
    display: none;
  }
}
.article-news_lists__item .btn .txt i:before {
  transition: transform 0.3s linear;
  display: inline-block;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2F4858;
  top: -3px;
  transform: translateX(0);
  left: 0;
}
.article-news_lists__item .btn .btn-more {
  float: right;
  margin: 0;
  color: #2F4858;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .article-news_lists__item .btn .btn-more {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .article-news_lists__item .btn .btn-more {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn .btn-more {
    float: inherit;
    margin-top: 1em;
  }
}
.article-news_lists__item .btn .btn-more i {
  font-size: inherit;
  color: #2F4858;
  margin-right: 10px;
}
@media only screen and (max-width:640px) {
  .article-news_lists__item .btn .btn-more i {
    margin-right: 5px;
  }
}
.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;
  }
}
.article-product-tag_lists {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000;
  padding: 7px 10px 8px;
  color: #fff;
}
.article-blog_lists__item .thumb {
  margin-bottom: 10px;
  overflow: hidden;
  height: 223px;
  border-radius: 5px;
}
.article-blog_lists__item .thumb img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.article-blog_lists__item .text {
  display: flex;
}
@media only screen and (max-width:640px) {
  .article-blog_lists__item .text {
    flex-wrap: wrap-reverse;
  }
}
.article-blog_lists__item .text .title {
  flex: 1;
  margin-right: 30px;
  font-weight: 500;
  font-size: 13px;
}
@media (min-width: 480px) {
  .article-blog_lists__item .text .title {
    font-size: 16px;
    font-size: calc(0.00375 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .article-blog_lists__item .text .title {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  .article-blog_lists__item .text .title {
    margin-right: 0;
    width: 100%;
  }
}
.article-blog_lists__item .text .date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #939393;
  font-size: 12px;
}
@media (min-width: 480px) {
  .article-blog_lists__item .text .date {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .article-blog_lists__item .text .date {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .article-blog_lists__item .text .date {
    width: 100%;
    margin-bottom: 4px;
  }
}

.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-top {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.82);
}
.is-about-top_content {
  width: 50%;
}
@media only screen and (max-width:640px) {
  .is-about-top_content {
    display: block;
    width: 100%;
  }
}
.is-about-top_content .btn {
  width: auto;
  height: auto;
  line-height: 1;
  border: 0;
  border-radius: 0;
  margin: 0;
}
.is-about-top_content .btn-more a {
  justify-content: flex-end;
}
.is-about-top_content .btn-more a i {
  margin-right: 10px;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-about-top_content .btn-more a i {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-about-top_content .btn-more a i {
    font-size: 16px;
  }
}
.is-about-top_content .btn-more .tw {
  color: #fff;
  text-decoration: underline;
}
.is-about-top_content .btn:after {
  display: none;
}
.is-about-top_content .btn:hover {
  border: 0;
  background: transparent;
}
@media only screen and (max-width:640px) {
  .is-about-top-txt {
    width: 100%;
  }
}
.is-about-top-txt .lead {
  font-size: 12px;
  margin-bottom: 2em;
  font-weight: 700;
  line-height: 2;
  color: #fff;
}
@media (min-width: 480px) {
  .is-about-top-txt .lead {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-about-top-txt .lead {
    font-size: 16px;
  }
}
.is-about-top-txt .lead:last-of-type {
  margin-bottom: 60px;
}
.is-about-top-txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 38px;
}
@media (min-width: 480px) {
  .is-about-top-txt h3 {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 17.6px);
  }
}
@media (min-width: 1280px) {
  .is-about-top-txt h3 {
    font-size: 24px;
  }
}
.is-about-top-img {
  width: 50%;
  top: 100px;
}
@media only screen and (max-width:640px) {
  .is-about-top-img {
    width: 100%;
  }
}
.is-about-top-img img {
  position: absolute;
  left: 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-about-top-img img {
    top: -100px;
  }
}
@media only screen and (max-width:640px) {
  .is-about-top-img img {
    position: relative;
    left: -21%;
    top: -30px;
  }
}
.is-about-top-img .img1 {
  border-radius: 0 100px 100px 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-about-top-img .img1 {
    height: auto;
    width: 40%;
  }
}
.is-about_wrap {
  display: -ms-flex;
  display: flex;
  padding: 0 9.83%;
  z-index: 100;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .is-about_wrap {
    padding: 0 5%;
    flex-wrap: wrap;
  }
}
.is-about_wrap .btn-more {
  justify-content: flex-end;
}
.is-about-lead {
  margin-top: 42px;
}
.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: #2F4858;
}
@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-about .btn-more {
  clear: both;
}
.is-about .partner {
  position: absolute;
  right: 9.83%;
  bottom: -80px;
  display: flex !important;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-about .partner {
    justify-content: center;
    flex-wrap: wrap;
    bottom: -90px;
    right: 50%;
    transform: translateX(50%);
  }
}
.is-about .partner p {
  font-size: 15px;
  font-weight: 500;
  margin-right: 36px;
}
@media (min-width: 480px) {
  .is-about .partner p {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-about .partner p {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-about .partner p {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.is-about .partner ul {
  display: flex;
  align-items: center;
}
.is-about .partner ul li {
  font-size: 15px;
  margin-right: 1em;
}
@media (min-width: 480px) {
  .is-about .partner ul li {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-about .partner ul li {
    font-size: 15px;
  }
}

.is-charted-bus-top {
  padding: 100px 60px 100px 140px;
  background: linear-gradient(45deg, #0088d6, #42c9b2);
}
@media only screen and (max-width:640px) {
  .is-charted-bus-top {
    padding: 5%;
  }
}
.is-charted-bus-wrapper {
  display: flex;
  gap: 7vw;
}
@media only screen and (max-width:640px) {
  .is-charted-bus-wrapper {
    gap: 0;
    flex-wrap: wrap;
  }
}
.is-charted-bus_content {
  width: 50%;
}
@media only screen and (max-width:640px) {
  .is-charted-bus_content {
    width: 100%;
  }
}
.is-charted-bus_content p {
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-charted-bus_content p {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-charted-bus_content p {
    font-size: 16px;
  }
}
.is-charted-bus_content .tw,
.is-charted-bus_content .en,
.is-charted-bus_content p,
.is-charted-bus_content a {
  color: #fff;
}
.is-charted-bus_content i,
.is-charted-bus_content i:before {
  background-color: #fff;
}
.is-charted-bus_content .tw {
  text-align: left;
}
.is-charted-bus_content .img {
  position: relative;
  width: 50%;
  border-radius: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: scale(1);
  transition: 0.2s ease-in-out; /* 讓背景圖片平滑過渡 */
}
.is-charted-bus_content .img:hover {
  transform: scale(1.05);
  opacity: 0.6;
}
.is-charted-bus_content .img a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-charted-bus_content .img a {
    font-size: 32px;
    font-size: calc(0.02 * 100vw + 6.4px);
  }
}
@media (min-width: 1280px) {
  .is-charted-bus_content .img a {
    font-size: 32px;
  }
}
.is-charted-bus_content .img-souel {
  background: url("../images/home/souel.jpg") center/cover no-repeat;
}
.is-charted-bus_content .img-busan {
  background: url("../images/home/busan.jpg") center/cover no-repeat;
}
.is-charted-bus .flex {
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width:640px) {
  .is-charted-bus .flex {
    min-height: 300px;
  }
}
.is-charted-bus .btn-readmore {
  text-align: left;
  width: 100%;
  border-bottom-color: #fff;
}

.is-about-obatour {
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.is-about-obatour .primary_title {
  text-align: center;
}
.is-about-obatour--icon {
  margin-bottom: -60px;
  margin-top: 60px;
  max-width: 150px;
  height: 100%;
}
@media only screen and (max-width:640px) {
  .is-about-obatour--icon {
    width: 50%;
    margin: 60px auto 0;
  }
}
.is-about-obatour-wrapper-l {
  width: 65%;
  border: 1px solid #e3e3e3;
  border-radius: 48px;
  padding: 60px;
}
.is-about-obatour-wrapper-l .flex {
  align-items: flex-end;
}
@media only screen and (max-width:640px) {
  .is-about-obatour-wrapper-l .flex {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px), only screen and (min-width:641px) and (max-width:1024px) {
  .is-about-obatour-wrapper-l {
    padding: 10%;
    width: 100%;
    border-radius: 32px;
    margin-bottom: 10%;
  }
}
.is-about-obatour-wrapper-r {
  text-align: center;
  margin: 0 auto;
}
.is-about-obatour-wrapper-r h2 {
  font-size: 3.2rem;
  font-family: "source-han-sans-traditional", sans-serif;
  font-weight: 900;
  display: inline-block;
  letter-spacing: 0.14em;
  position: relative;
  margin-bottom: 4.5rem;
}
.is-about-obatour-wrapper-r h2::before, .is-about-obatour-wrapper-r h2::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.is-about-obatour-wrapper-r h2::before {
  left: -40px;
  background-color: #fff000;
}
.is-about-obatour-wrapper-r h2:after {
  background-color: #2F4858;
  right: -40px;
}
.is-about-obatour-wrapper-r .line-img {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}
.is-about-obatour_outter {
  padding-right: 17%;
}
@media only screen and (max-width:640px) {
  .is-about-obatour_outter {
    width: 100%;
    padding-right: 0;
  }
}
.is-about-obatour_content {
  text-align: center;
  margin-bottom: 60px;
}
.is-about-obatour_content p {
  font-family: "source-han-sans-traditional", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
@media (min-width: 480px) {
  .is-about-obatour_content p {
    font-size: 16px;
    font-size: calc(0.00375 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .is-about-obatour_content p {
    font-size: 16px;
  }
}

.is-video {
  padding-top: 4.22%;
  padding-bottom: 11.23%;
  background-color: #f5f5f5;
}
.is-video-wrapper {
  padding: 0 9.83%;
  display: flex;
  align-items: flex-end;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .is-video-wrapper {
    flex-wrap: wrap;
  }
}
.is-video .video-L {
  padding-right: 5.27%;
}
@media only screen and (max-width:640px) {
  .is-video .video-L {
    margin-top: 10%;
    padding-right: 0;
  }
}
.is-video .video-L h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 10%;
}
@media (min-width: 480px) {
  .is-video .video-L h2 {
    font-size: 60px;
    font-size: calc(0.015 * 100vw + 40.8px);
  }
}
@media (min-width: 1280px) {
  .is-video .video-L h2 {
    font-size: 60px;
  }
}
.is-video .video-L p {
  font-size: 15px;
  line-height: 2;
}
@media (min-width: 480px) {
  .is-video .video-L p {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-video .video-L p {
    font-size: 18px;
  }
}
.is-video .video-R {
  padding-left: 5.27%;
}
@media only screen and (max-width:640px) {
  .is-video .video-R {
    padding-left: 0;
  }
}
.is-video .video-R .primary_btn {
  justify-content: flex-end;
}
@media only screen and (max-width:640px) {
  .is-video .video-R .primary_btn {
    justify-content: center;
  }
}
.is-video .video-R .yt_link {
  padding-top: 21.61%;
  margin-bottom: 30px;
}
.is-video .video-R .yt_link a {
  position: relative;
  display: block;
}

.is-news {
  position: relative;
  padding: 13.2% 9.83% 120px;
  background-color: #fff;
  z-index: 0;
}
@media only screen and (max-width:640px) {
  .is-news {
    padding: 140px 5% 60px;
  }
}
.is-news:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: url("../images/kv/kv-filter1.png") center/cover no-repeat;
}
.is-news-wrapper {
  margin: 0 auto;
  position: relative;
  padding: 100px 77px;
  width: 60.5%;
  background-color: #fff;
  border-radius: 30px;
  z-index: 3;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-news-wrapper {
    padding: 100px 10%;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-news-wrapper {
    padding: 60px 5%;
    width: 100%;
  }
}
.is-news-wrapper .article-clm_lists__item {
  margin-bottom: 11px;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item {
    margin-bottom: 30px;
  }
}
.is-news-wrapper .article-clm_lists__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item:first-child a {
    border-top: 1px solid #efefef;
  }
}
.is-news-wrapper .article-clm_lists__item a {
  display: flex;
  width: 100%;
  padding: 13px 22px 11px;
  border-radius: 5px;
  border: 1px solid #f2f2f2;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item a {
    flex-wrap: wrap;
    padding: 20px 5%;
  }
}
.is-news-wrapper .article-clm_lists__item .thumb {
  padding-right: 1.89%;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item .thumb {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.is-news-wrapper .article-clm_lists__item .thumb img {
  width: fit-content;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item .thumb img {
    width: 100%;
  }
}
.is-news-wrapper .article-clm_lists__item .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item .content {
    justify-content: flex-start;
  }
}
.is-news-wrapper .article-clm_lists__item .content .date {
  line-height: 2;
  font-family: "Roboto", sans-serif;
  color: #2F4858;
  font-weight: 400;
  font-weight: 500;
  margin-right: 30px;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-news-wrapper .article-clm_lists__item .content .date {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-news-wrapper .article-clm_lists__item .content .date {
    font-size: 12px;
  }
}
@media only screen and (max-width:640px) {
  .is-news-wrapper .article-clm_lists__item .content .date {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.is-news-wrapper .article-clm_lists__item .content .title {
  line-height: 2;
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-news-wrapper .article-clm_lists__item .content .title {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-news-wrapper .article-clm_lists__item .content .title {
    font-size: 16px;
  }
}
.is-news-wrapper .article-news {
  margin-bottom: 60px;
}
.is-news-wrapper .primary_title {
  margin-bottom: 50px;
}
.is-news-wrapper .primary_title .en {
  justify-content: center;
}
.is-news h2 {
  text-align: center;
}
.is-news .btn-more {
  justify-content: center;
}

.is-service-wrapper {
  background-color: #fff;
  position: relative;
  padding: 0 16.5%;
  z-index: 1000;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-wrapper {
    padding: 0 10%;
  }
}
@media only screen and (max-width:640px) {
  .is-service-wrapper {
    padding: 0 5%;
  }
}
.is-service-wrapper .primary_title {
  padding: 0 9.83%;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .is-service-wrapper .primary_title {
    margin-bottom: 1em;
  }
}
.is-service-wrapper .primary_title-lead {
  padding: 0 10.17%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width:640px) {
  .is-service-wrapper .primary_title-lead {
    line-height: 1.5;
    padding: 0 5%;
    letter-spacing: 0.1em;
  }
}
.is-service-wrapper .primary_btn {
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .is-service-wrapper .primary_btn {
    margin-bottom: 0;
  }
}
.is-service-top {
  margin-bottom: 440px;
  padding-top: 160px;
  position: relative;
  z-index: 3;
  background: #fff;
}
@media only screen and (max-width:640px) {
  .is-service-top {
    margin-bottom: 260px;
    padding-top: 260px;
  }
  .is-service-top::before {
    top: -10.3vw;
  }
}
.is-service-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 6.22%;
}
@media only screen and (max-width:640px) {
  .is-service-top-list {
    padding-bottom: 60px;
  }
}
.is-service-top-list .sp-only {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-top-list .sp-only {
    display: block !important;
  }
}
@media only screen and (max-width:640px) {
  .is-service-top-list .sp-only {
    display: block !important;
  }
}
.is-service-top-list .pc-only {
  display: block;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-top-list .pc-only {
    display: none !important;
  }
}
@media only screen and (max-width:640px) {
  .is-service-top-list .pc-only {
    display: none !important;
  }
}
.is-service-top-list-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 1.5em;
}
@media (min-width: 480px) {
  .is-service-top-list-title {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-service-top-list-title {
    font-size: 20px;
  }
}
.is-service-top-list-item {
  width: calc(50% - 72px);
  flex-direction: column;
  display: -ms-flex;
  display: flex;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-top-list-item {
    width: calc(50% - 36px);
  }
}
@media only screen and (max-width:640px) {
  .is-service-top-list-item {
    width: calc(50% - 8px);
  }
}
.is-service-top-list-item a {
  display: inline-block;
  line-height: 0;
}
.is-service-top-list-item-img {
  overflow: hidden;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-top-list-item-img {
    height: 480px;
  }
}
.is-service-top-list-item img {
  width: 100%;
  border-radius: 38% 38% 10px 10px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-service-top-list-item img {
    overflow: hidden;
  }
}
.is-service-top-list-item-txt {
  text-align: center;
  padding: 5.62%;
  background: #2F4858;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .is-service-top-list-item-txt {
    padding: 10%;
  }
}
.is-service-top-list-item-txt h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.83em;
}
@media (min-width: 480px) {
  .is-service-top-list-item-txt h3 {
    font-size: 36px;
    font-size: calc(0.01 * 100vw + 23.2px);
  }
}
@media (min-width: 1280px) {
  .is-service-top-list-item-txt h3 {
    font-size: 36px;
  }
}
.is-service-top-list-item-txt p {
  font-size: 15px;
  margin-bottom: 3.33em;
  color: #fff;
}
@media (min-width: 480px) {
  .is-service-top-list-item-txt p {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-service-top-list-item-txt p {
    font-size: 18px;
  }
}
.is-service .primary_title .en {
  justify-content: center;
}

.is-case-wrapper {
  background-color: #fff;
  position: relative;
  padding: 140px 9.83% 0;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .is-case-wrapper {
    padding: 60px 5% 0;
  }
}
.is-case-wrapper .primary_title .tw,
.is-case-wrapper .primary_title .en {
  text-align: left;
}
.is-case-wrapper .primary_title-lead {
  text-align: left;
}
.is-case-wrapper .primary_btn {
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .is-case-wrapper .primary_btn {
    margin-bottom: 0;
  }
}
.is-case-top {
  margin-bottom: calc(160px - 0.4vw);
  position: relative;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .is-case-top {
    margin-bottom: 100px;
  }
}
.is-case-top::after {
  content: "";
  position: relative;
  display: block;
  bottom: 0.4vw;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 13.3vw;
  z-index: 0;
  background: url("../images/home/service/service-btm.png") center/cover no-repeat;
}
@media only screen and (max-width:640px) {
  .is-case-top::after {
    bottom: 1px;
  }
}
.is-case-top::before {
  content: "PROMISE";
  position: absolute;
  font-size: 122px;
  font-weight: 700 !important;
  color: #fff;
  font-family: "Roboto", sans-serif;
  z-index: 0;
  top: -136px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:640px) {
  .is-case-top::before {
    font-size: 72px;
    top: -80px;
    width: auto;
  }
}
.is-case-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 6.22%;
}
@media only screen and (max-width:640px) {
  .is-case-top-list {
    padding-bottom: 30px;
  }
}
.is-case-top-list .sp-only {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top-list .sp-only {
    display: block !important;
  }
}
@media only screen and (max-width:640px) {
  .is-case-top-list .sp-only {
    display: block !important;
  }
}
.is-case-top-list .pc-only {
  display: block;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top-list .pc-only {
    display: none !important;
  }
}
@media only screen and (max-width:640px) {
  .is-case-top-list .pc-only {
    display: none !important;
  }
}
.is-case-top-list-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 1.5em;
}
@media (min-width: 480px) {
  .is-case-top-list-title {
    font-size: 20px;
    font-size: calc(0.0025 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-case-top-list-title {
    font-size: 20px;
  }
}
.is-case-top-list-item {
  width: calc(50% - 72px);
  flex-direction: column;
}
@media only screen and (max-width:640px), only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top-list-item {
    width: 100%;
  }
}
.is-case-top-list-item-img {
  overflow: hidden;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top-list-item-img {
    height: 480px;
  }
}
.is-case-top-list-item img {
  border-radius: 38% 38% 10px 10px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top-list-item img {
    overflow: hidden;
  }
}
.is-case-top-list-item-txt {
  text-align: center;
  padding: 5.62%;
  background: #2F4858;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:640px) {
  .is-case-top-list-item-txt {
    padding: 10%;
  }
}
.is-case-top-list-item-txt h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.83em;
}
@media (min-width: 480px) {
  .is-case-top-list-item-txt h3 {
    font-size: 36px;
    font-size: calc(0.01 * 100vw + 23.2px);
  }
}
@media (min-width: 1280px) {
  .is-case-top-list-item-txt h3 {
    font-size: 36px;
  }
}
.is-case-top-list-item-txt p {
  font-size: 15px;
  margin-bottom: 3.33em;
  color: #fff;
}
@media (min-width: 480px) {
  .is-case-top-list-item-txt p {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-case-top-list-item-txt p {
    font-size: 18px;
  }
}
.is-case-top .article-case_lists {
  padding-bottom: 60px;
}
.is-case-top .article-case_lists li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 60px 0;
}
.is-case-top .article-case_lists li:first-of-type {
  padding: 0 0 60px;
}
@media only screen and (max-width:640px) {
  .is-case-top .article-case_lists li:first-of-type {
    padding-top: 60px;
  }
}
@media only screen and (max-width:640px) {
  .is-case-top .article-case_lists li {
    padding: 60px 0 60px;
  }
}
.is-case-top .article-case_lists li .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.is-case-top .article-case_lists li .container .text-content {
  flex: 1;
}
.is-case-top .article-case_lists li .container .thumb {
  max-width: 490px;
  flex: 1;
  width: 42.3%;
  margin-right: 8.64%;
}
@media only screen and (min-width:641px) and (max-width:1024px), only screen and (min-width:641px) and (max-width:1112px) {
  .is-case-top .article-case_lists li .container .thumb {
    max-width: inherit;
  }
}
@media only screen and (max-width:640px) {
  .is-case-top .article-case_lists li .container .thumb {
    max-width: inherit;
    flex: auto;
    margin-right: 0;
    width: 100%;
  }
}
.is-case-top .is-tags_lists__item a {
  display: inline-block;
  background-color: #000;
  padding: 10px 30px;
  border-radius: 25px;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-case-top .is-tags_lists__item a {
    margin-bottom: 1em;
  }
}
.is-case-top .is-tags_lists__item a .post_tag {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .is-case-top .is-tags_lists__item a .post_tag {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-case-top .is-tags_lists__item a .post_tag {
    font-size: 12px;
  }
}
.is-case-top .underline {
  font-size: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.is-contact-top {
  text-align: center;
  padding: 100px 140px;
  background-color: #fff;
  place-self: center;
}
@media only screen and (max-width:640px) {
  .is-contact-top {
    padding: 100px 9.83%;
  }
}
@media only screen and (max-width:640px) {
  .is-contact-top .primary_title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .is-contact-top a {
    width: 280px;
  }
}
.is-contact-top p {
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-contact-top p {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-contact-top p {
    font-size: 18px;
  }
}
@media only screen and (max-width:640px) {
  .is-contact-top p {
    margin-top: 15px;
  }
}
.is-contact-top .btn-more {
  margin: 3.32% 0.87% 2.62%;
}
.is-contact-top .is-sns_lists {
  justify-self: center;
  margin-top: 30px;
  gap: 20px;
}
@media only screen and (max-width:640px) {
  .is-contact-top .is-sns_lists {
    justify-content: center;
    width: 100%;
  }
}
.is-contact-top .is-sns_lists li a {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(47, 72, 88, 0.2);
  border-radius: 50%;
  color: #2F4858;
  text-align: center;
  display: block;
  line-height: 66px;
}
@media only screen and (max-width:640px) {
  .is-contact-top .is-sns_lists li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.is-contact-top .is-sns_lists li a i {
  padding: 15px 0px 0 2px;
}
.is-contact-top .is-sns_lists li a i:before {
  font-size: 18px;
}
@media (min-width: 480px) {
  .is-contact-top .is-sns_lists li a i:before {
    font-size: 24px;
    font-size: calc(0.0075 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-contact-top .is-sns_lists li a i:before {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-contact-top .is-sns_lists li a i {
    line-height: 50px;
    padding: 0;
  }
}

.is-blog-top-wrapper {
  position: relative;
  background-color: #fff;
  padding: 7% 9.83% calc(7% + 28px);
  margin-bottom: 160px;
  width: 85.6%;
  border-radius: 0 30px 30px 0;
}
@media only screen and (max-width:640px) {
  .is-blog-top-wrapper {
    padding: 100px 9.83%;
  }
}
.is-blog-top-wrapper .primary_title .en {
  color: #c1c1c1;
}
.is-blog-top-wrapper .primary_title .tw,
.is-blog-top-wrapper .primary_title .en {
  text-align: left;
}
.is-blog-top-wrapper .btn-more {
  float: right;
  margin-top: -28px;
}
@media only screen and (max-width:640px) {
  .is-blog-top-wrapper .btn-more {
    float: none;
    margin: 0 auto;
  }
}
.is-blog-top-wrapper .article-archive-blog_lists, .is-blog-top-wrapper .article-clm_lists {
  border-top: 0 !important;
  padding-top: 30px;
}
.is-blog-top-wrapper .article-archive-blog_lists-3, .is-blog-top-wrapper .article-clm_lists-3 {
  align-items: stretch;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3:after, .is-blog-top-wrapper .article-clm_lists-3:after {
    display: none;
  }
}
.is-blog-top-wrapper .article-archive-blog_lists-3:after, .is-blog-top-wrapper .article-clm_lists-3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 200px);
  height: 1px;
  background-color: #f2f2f2;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item {
  margin: 0 30px 60px 30px;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  opacity: 1;
  cursor: pointer;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item:hover, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item:hover {
  opacity: 0.6;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item {
    flex: inherit;
    margin: 0 40px 40px 0;
  }
}
@media only screen and (max-width:640px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item {
    flex: inherit;
    margin: 0 auto 40px;
  }
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item:first-child, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item:first-child {
  margin-left: 0;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item:nth-of-type(3n), .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item:nth-of-type(3n) {
  margin-right: 0;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item img, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item img {
  border-radius: 5px;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .date, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .date {
  color: #bebebe;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .date, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .date {
    font-size: 12px;
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1280px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .date, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .date {
    font-size: 12px;
  }
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .title, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .title {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .title, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .title {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .title, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .title {
    font-size: 16px;
  }
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .text-content .is-tags, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .text-content .is-tags {
  pointer-events: none;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .card .thumb, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .card .thumb {
  height: 50%;
}
.is-blog-top-wrapper .article-archive-blog_lists-3 .article-works-other_lists__item .card:hover .arrow img, .is-blog-top-wrapper .article-clm_lists-3 .article-works-other_lists__item .card:hover .arrow img {
  transform: rotate(180deg);
}

.is-location {
  position: relative;
  margin-top: 160px;
  z-index: 5;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-location {
    margin-top: 100px;
  }
}
@media only screen and (max-width:640px) {
  .is-location {
    margin-top: 60px;
  }
}
.is-location_wrap {
  padding: 10% 9.83%;
  background-color: #fff;
  text-align: center;
  border-radius: 50vw 50vw 0 0;
}
@media only screen and (max-width:640px) {
  .is-location_wrap {
    padding: 60px 5%;
    display: block;
  }
}
.is-location_wrap .text-content {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.is-location_wrap .text-content p {
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
}
@media (min-width: 480px) {
  .is-location_wrap .text-content p {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-location_wrap .text-content p {
    font-size: 16px;
  }
}
.is-location_wrap .text-content a {
  text-decoration: underline;
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-location_wrap .text-content a {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-location_wrap .text-content a {
    font-size: 16px;
  }
}
.is-location i {
  margin-right: 10px;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-location i {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-location i {
    font-size: 18px;
  }
}
.is-location .address {
  text-decoration: underline;
  font-size: 15px;
}
@media (min-width: 480px) {
  .is-location .address {
    font-size: 18px;
    font-size: calc(0.00375 * 100vw + 13.2px);
  }
}
@media (min-width: 1280px) {
  .is-location .address {
    font-size: 18px;
  }
}
.is-location .btn-more-phone {
  margin-top: 60px;
}
.is-location .btn-more-phone a {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.1em;
}
@media (min-width: 480px) {
  .is-location .btn-more-phone a {
    font-size: 60px;
    font-size: calc(0.025 * 100vw + 28px);
  }
}
@media (min-width: 1280px) {
  .is-location .btn-more-phone a {
    font-size: 60px;
  }
}
.is-location iframe {
  width: 41.67vw;
  height: 300px;
  border-radius: 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-location iframe {
    width: 80%;
    border-radius: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-location iframe {
    height: 200px;
    border-radius: 5px;
    width: 90%;
  }
}
.is-location .primary_title {
  margin-bottom: 60px;
}
.is-location .primary_title .en {
  justify-content: center;
}

.is-feedback {
  padding: 300px 140px;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .is-feedback {
    padding: 40% 5%;
  }
}
.is-feedback .feedback-slogan {
  text-align: center;
  padding-bottom: 100px;
  letter-spacing: 0.04em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 40px;
  background: linear-gradient(45deg, #0088D6, #42C9B2, #83439C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .is-feedback .feedback-slogan {
    font-size: 80px;
    font-size: calc(0.05 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-feedback .feedback-slogan {
    font-size: 80px;
  }
}
.is-feedback .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-start;
  max-width: 520px;
  gap: 20px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0); /* 背景完全透明 (不透明度 0%) */
  backdrop-filter: blur(4px) brightness(4); /* 模糊量 4px，亮度 4 倍 */
  -webkit-backdrop-filter: blur(4px) brightness(4); /* Safari 兼容 */
}
@media only screen and (max-width:640px) {
  .is-feedback .swiper-wrapper .swiper-slide {
    padding: 5%;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-feedback .swiper-wrapper .swiper-slide .img {
    width: 100%;
  }
}
.is-feedback .swiper-wrapper .swiper-slide img {
  border-radius: 20px;
  max-width: 145px;
}
@media only screen and (max-width:640px) {
  .is-feedback .swiper-wrapper .swiper-slide img {
    max-width: inherit;
  }
}
.is-feedback .swiper-wrapper .swiper-slide .content {
  text-align: left;
  position: relative;
  padding-bottom: 30px;
}
.is-feedback .swiper-wrapper .swiper-slide .content h3 {
  font-size: 16px;
  color: #2F4858;
  font-weight: 700;
}
@media (min-width: 480px) {
  .is-feedback .swiper-wrapper .swiper-slide .content h3 {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-feedback .swiper-wrapper .swiper-slide .content h3 {
    font-size: 20px;
  }
}
.is-feedback .swiper-wrapper .swiper-slide .content p {
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media (min-width: 480px) {
  .is-feedback .swiper-wrapper .swiper-slide .content p {
    font-size: 12px;
    font-size: calc(0.0025 * 100vw + 8.8px);
  }
}
@media (min-width: 1280px) {
  .is-feedback .swiper-wrapper .swiper-slide .content p {
    font-size: 12px;
  }
}
.is-feedback .swiper-wrapper .swiper-slide .name {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.is-feedback .swiper-wrapper .swiper-slide .name p {
  display: inline;
  color: #42C9B2;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.swiper {
  width: 100%;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper5 {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  width: 100%;
}

.mySwiper4 {
  width: 100%;
}

.mySwiper6 {
  height: 320px;
  width: 100%;
}

.mySwiper {
  box-sizing: border-box;
  padding: 10px 0 0;
}

.mySwiper3 {
  box-sizing: border-box;
  padding: 10px 0 0;
}

.mySwiper5 {
  box-sizing: border-box;
  padding: 10px 0 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  opacity: 0.4;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.mySwiper .swiper-slide:hover {
  opacity: 1;
}

.mySwiper3 .swiper-slide {
  width: 25%;
  opacity: 0.4;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.mySwiper3 .swiper-slide:hover {
  opacity: 1;
}

.mySwiper5 .swiper-slide {
  width: 25%;
  opacity: 0.4;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.mySwiper5 .swiper-slide:hover {
  opacity: 1;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper3 .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper5 .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.is-kv {
  position: relative;
}
.is-kv-news {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-kv-news {
    bottom: 60px;
  }
}
.is-kv-news a {
  padding: 13px 20px;
  position: relative;
  display: block;
  border-radius: 10px;
  backdrop-filter: blur(5px) brightness(1.4);
  background-color: rgba(255, 255, 255, 0.4);
}
.is-kv-news a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
}
.is-kv-news a .content {
  display: flex;
}
.is-kv-news a .content .date {
  margin-right: 20px;
}
.is-kv-news a .content p {
  color: #2F4858;
  font-size: 12px;
}
.is-kv-wrapper {
  position: relative;
  width: 100%;
  height: 810px;
  min-height: 810px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 184px 9.83% 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-kv-wrapper {
    padding: 240px 9.83% 0;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-wrapper {
    padding: 90px 9.83% 0;
    flex-wrap: wrap;
  }
}
.is-kv-wrapper .kv-L img, .is-kv-wrapper .kv-R img {
  border-radius: 15px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-kv-wrapper .kv-L img, .is-kv-wrapper .kv-R img {
    width: 80%;
  }
}
.is-kv-wrapper .kv-L {
  text-align: center;
}
.is-kv-wrapper .kv-C {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.is-kv-wrapper .kv-C a {
  color: #fff;
  font-family: "source-han-sans-traditional", sans-serif;
  width: 182px;
  background-color: #2F4858;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  width: 180px;
  height: 56px;
  margin-top: 60px;
  line-height: 56px;
}
@media (min-width: 480px) {
  .is-kv-wrapper .kv-C a {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-kv-wrapper .kv-C a {
    font-size: 20px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-wrapper .kv-C a {
    margin-left: 0;
  }
}
.is-kv-wrapper .kv-C a i {
  margin-left: 16px;
}
.is-kv-wrapper .kv-C a i:before {
  color: #fff;
}
.is-kv-wrapper .kv-R .sp-only {
  display: none;
}
@media only screen and (max-width:640px) {
  .is-kv-wrapper .kv-R .sp-only {
    display: flex;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-wrapper .kv-R .sp-none {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-btn {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-btn .btn-more {
    width: 48%;
    margin: 10px auto;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-btn .btn-more a {
    width: 100%;
  }
}
.is-kv-front {
  position: relative;
  margin: 0 auto;
  text-align: center;
  height: 100vh;
  padding-top: 27vh;
}
.is-kv-front:before {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: -10;
  width: 100%;
  height: 100%;
  display: block;
  background: url("../images/home/map-bg.png") center/contain no-repeat;
}
.is-kv-front .is-kv-mainttl {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv-mainttl {
    font-size: 72px;
    font-size: calc(0.045 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv-mainttl {
    font-size: 72px;
  }
}
.is-kv-front .is-kv-mainttl-sub {
  display: block;
  color: #0080ca;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin-top: -7px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv-mainttl-sub {
    font-size: 32px;
    font-size: calc(0.0225 * 100vw + 3.2px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv-mainttl-sub {
    font-size: 32px;
  }
}
.is-kv-front .is-kv-subttl {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0080ca;
  padding: 0.625em 0.9375em;
  background-color: #fff000;
  display: inline-block;
  font-weight: 900;
  border-radius: 54px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv-subttl {
    font-size: 32px;
    font-size: calc(0.0225 * 100vw + 3.2px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv-subttl {
    font-size: 32px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv-subttl {
    margin-bottom: 1em;
  }
}
.is-kv-front .is-kv-subttl:after {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  padding: 0.9375em;
  background: url("../images/kv/kv-subttl-line.svg") center/cover no-repeat;
}
.is-kv-front .is-kv-feature-lists {
  display: flex;
  justify-content: center;
}
.is-kv-front .is-kv-feature-item {
  width: 90px;
  height: 90px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
  margin-left: 15px;
  padding-left: 3px;
  padding-top: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: 700;
  display: inline-block;
  background-color: #121212;
  color: #fff;
  font-size: 1.6rem;
}
@media only screen and (max-width:640px) {
  .is-kv-front .is-kv-feature-item {
    width: 60px;
    height: 60px;
    padding-top: 10px;
  }
}
.is-kv-front .is-kv-feature-item:first-of-type {
  margin-left: 0;
}
.is-kv-front .is-kv-feature-item:last-of-type {
  margin-right: 0;
}
.is-kv-front .is-kv-slogan {
  font-family: "source-han-sans-traditional", sans-serif;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin: 4.4rem auto 6rem;
  font-size: 12px;
}
@media (min-width: 480px) {
  .is-kv-front .is-kv-slogan {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .is-kv-slogan {
    font-size: 16px;
  }
}
.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-front .partner {
  position: absolute;
  bottom: 30px;
  left: 9.83%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-kv-front .partner {
    left: 2%;
    bottom: -30px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .partner {
    width: 90%;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    bottom: -160px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.is-kv-front .partner p {
  display: inline-block;
  padding-right: 30px;
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .is-kv-front .partner p {
    font-size: 15px;
    font-size: calc(0 * 100vw + 15px);
  }
}
@media (min-width: 1280px) {
  .is-kv-front .partner p {
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .partner p {
    padding-right: 0;
    margin-bottom: 1em;
  }
}
.is-kv-front .partner-brand {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width:640px) {
  .is-kv-front .partner-brand {
    align-items: center;
  }
}
.is-kv-front .partner-brand ul li {
  display: inline-block;
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  border-right: 1px solid #efefef;
  line-height: 1;
}
.is-kv-front .partner-brand ul li:first-of-type {
  padding-left: 0;
}
@media only screen and (max-width:640px) {
  .is-kv-front .partner-brand ul li:first-of-type {
    border-left: 1px solid #efefef;
    padding-left: 10px;
  }
}
.is-kv-front .kv-news {
  position: absolute;
  bottom: 35px;
  right: 122px;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-kv-front .kv-news {
    right: 2%;
    bottom: -20px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-front .kv-news {
    width: 100%;
    right: inherit;
    bottom: -10vw;
    justify-content: center;
  }
}
.is-kv-front .kv-news .info {
  display: inline-block;
  margin-right: 10px;
  font-family: "Roboto", sans-serif;
  width: 15px;
  height: 15px;
  line-height: 13px;
  font-weight: 700;
  padding-left: 1px;
  text-align: center;
  border-radius: 50%;
  color: #b1b1b1;
  border: 1px solid #b1b1b1;
}
.is-kv-front .kv-news a {
  color: #2F4858;
  display: inline-block;
  position: relative;
  font-weight: 500;
  text-decoration: underline;
}
.is-kv-front .kv-news span {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #e5e5e5;
  color: #b1b1b1;
}
.is-kv-lower-archive {
  position: relative;
  width: 100vw;
  height: 313px;
  border-radius: 0 0 156px 157px;
  overflow: hidden;
}
@media only screen and (max-width:640px) {
  .is-kv-lower-archive {
    height: 260px;
    border-radius: 0 0 78px 78px;
  }
}
.is-kv-lower-archive .is-kv-title {
  text-align: center;
  padding-left: 0;
  padding-top: 160px;
}
@media only screen and (max-width:640px) {
  .is-kv-lower-archive .is-kv-title {
    padding-top: 100px;
  }
}
.is-kv-lower-archive .is-kv-title .tw {
  margin-bottom: 36px;
}
@media only screen and (max-width:640px) {
  .is-kv-lower-archive .is-kv-title .tw {
    margin-bottom: 1em;
  }
}
.is-kv-lower-archive .breadcrumbs {
  padding-left: 140px;
}
@media only screen and (max-width:640px) {
  .is-kv-lower-archive .breadcrumbs {
    padding-left: 0;
    margin: 0 auto;
  }
}
.is-kv-lower-archive:before {
  content: "";
  width: 100vw;
  height: 313px;
  position: absolute;
  z-index: -1;
}
.is-kv-lower-archive::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 100vw;
  height: 313px;
  z-index: -1;
  background: #000;
  opacity: 0.4;
}
.is-kv-lower {
  position: relative;
  width: 100vw;
}
.is-kv-lower:before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -100;
}
.is-kv-lower::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  backdrop-filter: blur(10px) brightness(93%);
  transform: translate(-50%, -50%);
}
.is-kv-lower-service::before {
  background: url("../images/kv/kv-service.jpg") center/cover no-repeat;
}
.is-kv-lower-about::before {
  background: url("../images/kv/kv-about.jpg") center/cover no-repeat;
}
.is-kv-lower-faq::before {
  background: url("../images/kv/kv-faq.jpg") center/cover no-repeat;
}
.is-kv-lower-course::before {
  background: url("../images/kv/kv-course.jpg") center/cover no-repeat;
}
.is-kv-lower-blog::before {
  background: url("../images/kv/kv-blog.jpg") center/cover no-repeat;
}
.is-kv-lower-product::before {
  background: url("../images/kv/kv-product.jpg") center/cover no-repeat;
}
.is-kv-lower-news::before {
  background: url("../images/kv/kv-news.jpg") center/cover no-repeat;
}
.is-kv-lower-contact::before {
  background: url("../images/kv/kv-contact.jpg") center/cover no-repeat;
}
.is-kv-lower-privacy-policy::before {
  background: url("../images/kv/kv-privacy-policy.jpg") center/cover no-repeat;
}
.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-single .is-single-cover {
  position: relative;
  height: 100%;
}
.is-kv-lower-single .is-single-cover img {
  width: 100%;
  min-height: 313px;
  object-fit: cover;
}
.is-kv-lower-single .is-single-cover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: 0;
  backdrop-filter: blur(1px) brightness(70%);
  transform: translate(-50%, -50%);
}
.is-kv-lower-single .is-kv-title {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.is-kv-lower-single .breadcrumbs {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 0;
}
@media only screen and (max-width:640px) {
  .is-kv-lower-single .breadcrumbs {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.is-kv-title {
  position: relative;
  text-align: left;
  z-index: 0;
  padding-left: 140px;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-kv-title {
    padding-left: 9.83%;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-title {
    padding-left: 5%;
  }
}
.is-kv-title span {
  display: block;
}
.is-kv-title .tw {
  font-size: 20px;
  margin-bottom: 60px;
  line-height: normal;
  color: #fff;
  font-weight: 700;
  position: relative;
}
@media (min-width: 480px) {
  .is-kv-title .tw {
    font-size: 48px;
    font-size: calc(0.035 * 100vw + 3.2px);
  }
}
@media (min-width: 1280px) {
  .is-kv-title .tw {
    font-size: 48px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-title .tw {
    margin-bottom: 20px;
  }
}
.is-kv-title .en {
  font-size: 36px;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .is-kv-title .en {
    font-size: 110px;
    font-size: calc(0.0925 * 100vw + -8.4px);
  }
}
@media (min-width: 1280px) {
  .is-kv-title .en {
    font-size: 110px;
  }
}
@media only screen and (max-width:640px) {
  .is-kv-title .en {
    margin-bottom: 20px;
  }
}

.cover-arrow {
  margin: 0 auto;
  display: block;
  position: relative;
}
.cover-arrow-single {
  position: relative;
  width: 100vw;
}
.cover-arrow-single:before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -100;
}
.cover-arrow-single::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  backdrop-filter: blur(10px) brightness(93%);
  transform: translate(-50%, -50%);
}
.cover-arrow-single-course::before {
  background: url("../images/kv/kv-single-course.jpg") center/cover no-repeat;
}
.cover-arrow-single-news::before {
  background: url("../images/kv/kv-single-course.jpg") center/cover no-repeat;
}
.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: 197px;
  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:1024px) {
  .swiper_clm-kv {
    width: 460px;
  }
}
@media only screen and (max-width:640px) {
  .swiper_clm-kv {
    top: 45vh;
    width: 100vw;
    overflow: auto;
  }
}
.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: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  padding: 6px 16px;
  margin-right: 12px;
  margin-bottom: 6px;
  font-family: "Zen Maru Gothic", 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;
  }
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.container::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  content: "";
  background: #000000;
  opacity: 0.2;
}

.slider {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.left-slider .slide img,
.right-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#youtube-area {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#youtube-area::before, #youtube-area::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
#youtube-area:before {
  background-color: rgba(0, 0, 0, 0.3);
}
#youtube-area:after {
  background: url("../images/kv/kv-filter1.png") center/cover no-repeat;
}

.is-page-about-review {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
  z-index: 0;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-page-about-review {
    padding-top: 30vh;
    padding-bottom: 30vh;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-review {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
}
.is-page-about-review .swiper-container-4 {
  margin: 34px 140px 0;
  position: relative;
}
@media only screen and (max-width:640px) {
  .is-page-about-review .swiper-container-4 {
    margin: 0 5%;
  }
}
.is-page-about-review .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  background-color: transparent;
  gap: 25px;
}
.is-page-about-review .swiper-slide .hdr {
  display: flex;
  gap: 20px;
  vertical-align: top;
}
.is-page-about-review .swiper-slide .hdr img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}
.is-page-about-review .swiper-slide .hdr p {
  font-size: 15px;
  color: #2F4858;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
}
@media (min-width: 480px) {
  .is-page-about-review .swiper-slide .hdr p {
    font-size: 16px;
    font-size: calc(0.00125 * 100vw + 14.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-review .swiper-slide .hdr p {
    font-size: 16px;
  }
}
.is-page-about-review .swiper-slide .hdr .country {
  font-size: 12px;
  color: #2f4858;
  opacity: 0.3;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.is-page-about-review .swiper-slide .content {
  width: 100%;
  text-align: left;
}
.is-page-about-review .swiper-slide .content h3 {
  color: #2F4858;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (min-width: 480px) {
  .is-page-about-review .swiper-slide .content h3 {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-review .swiper-slide .content h3 {
    font-size: 20px;
  }
}
.is-page-about-review .swiper-slide .content p {
  color: #2F4858;
  font-size: 12px;
}
.is-page-about-review .swiper-slide .swiper-content {
  width: calc(33.3333333333% - 25px); /* 讓每個項目佔 1/3 */
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-page-about-review .swiper-slide .swiper-content {
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-review .swiper-slide .swiper-content {
    width: 100%;
  }
}
.is-page-about-review .primary_title .en {
  font-size: 48px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-align: center;
  display: flex;
  gap: 28px;
}
@media (min-width: 480px) {
  .is-page-about-review .primary_title .en {
    font-size: 100px;
    font-size: calc(0.065 * 100vw + 16.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-review .primary_title .en {
    font-size: 100px;
  }
}
.is-page-about-review .primary_title .en::before, .is-page-about-review .primary_title .en:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.is-page-about-sliderimg {
  position: relative;
}
.is-page-about-sliderimg .swiper-slide {
  overflow: hidden;
  border-radius: 30px;
}
.is-page-about-sliderimg::before {
  position: absolute;
  content: "";
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 302px;
  background: url("../images/about/about-separator.png") center/cover no-repeat;
}
@media only screen and (max-width:640px) {
  .is-page-about-sliderimg::before {
    height: 100px;
  }
}
.is-page-about-keyword {
  margin: 0 auto;
  padding: 60px 120px;
  margin-bottom: 160px;
  border-radius: 30px;
  width: 55.2%;
  min-width: 600px;
  backdrop-filter: blur(30px) brightness(90%); /* 模糊 30px，亮度約調低 10% */
  opacity: 1; /* 若設為 0，元素會完全透明 */
}
@media only screen and (min-width:641px) and (max-width:1024px) {
  .is-page-about-keyword {
    min-width: 300px;
    padding: 10%;
    width: 80%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-keyword {
    min-width: auto;
    padding: 5%;
    width: 90%;
  }
}
.is-page-about-keyword h3 {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  .is-page-about-keyword h3 {
    margin-bottom: 0.675em;
  }
}
.is-page-about-keyword h3 .en {
  font-size: 36px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
@media (min-width: 480px) {
  .is-page-about-keyword h3 .en {
    font-size: 100px;
    font-size: calc(0.08 * 100vw + -2.4px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-keyword h3 .en {
    font-size: 100px;
  }
}
.is-page-about-keyword .is-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.is-page-about-keyword .is-tags_lists__item {
  font-size: 12px;
  padding: 3px 16px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 27px;
}
@media only screen and (max-width:640px) {
  .is-page-about-keyword .is-tags_lists__item {
    margin: 0;
    padding: 0;
  }
}
.is-page-about-keyword .is-tags_lists__item .tw {
  color: #fff;
}
@media only screen and (max-width:640px) {
  .is-page-about-keyword .is-tags_lists__item a {
    padding: 2px 8px 4px;
  }
}
.is-page-about-outline {
  padding: 0 9.83%;
  margin-top: 12.63%;
  margin-bottom: 11.23%;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width:640px) {
  .is-page-about-outline {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.is-page-about-outline .primary_title {
  margin-bottom: 1.25em;
}
.is-page-about-outline .primary_title .tw {
  text-align: left;
}
.is-page-about-outline .outline-list {
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .is-page-about-outline .outline-list {
    width: 100%;
  }
}
.is-page-about-outline .outline-list__item {
  display: flex;
  border-top: 1px solid #dedede;
}
.is-page-about-outline .outline-list__item:last-of-type {
  border-bottom: 1px solid #dedede;
}
.is-page-about-outline .outline-list__txt {
  font-size: 14px;
  padding: 2em 0;
  width: 100%;
}
@media (min-width: 480px) {
  .is-page-about-outline .outline-list__txt {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-outline .outline-list__txt {
    font-size: 16px;
  }
}
.is-page-about-outline .outline-list-ttl {
  font-weight: 700;
  width: 20.44%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-outline .outline-list-ttl {
    width: 30%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-outline .outline-list-ttl {
    width: 50%;
  }
}
.is-page-about-outline .outline-list-detail a {
  color: #075188;
  font-size: inherit;
  text-decoration: underline;
}
.is-page-about-outline .outline-list-detail a i {
  color: inherit;
  text-decoration: underline;
}
.is-page-about-outline .outline-list-detail li {
  font-size: 14px;
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .is-page-about-outline .outline-list-detail li {
    font-size: 16px;
    font-size: calc(0.0025 * 100vw + 12.8px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-outline .outline-list-detail li {
    font-size: 16px;
  }
}
.is-page-about-outline .outline-list-detail li:last-of-type {
  margin-bottom: 0;
}
.is-page-about-outline .outline-list-detail li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e2e2e2;
  margin-right: 11px;
  margin-bottom: 1px;
}
.is-page-about-outline .outline-list-detail .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e2e2e2;
  margin-right: 11px;
  margin-bottom: 1px;
}
.is-page-about-message {
  margin-top: 320px;
  margin-bottom: 0;
  padding-bottom: 260px;
  background: #fff;
}
@media only screen and (max-width:640px) {
  .is-page-about-message {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 200px;
  }
}
.is-page-about-message-outter {
  margin-top: 320px;
  margin-bottom: 160px;
  padding-bottom: 0;
  background: #fff;
}
.is-page-about-message-outter .swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: linear;
}
@media only screen and (max-width:640px) {
  .is-page-about-message-outter {
    margin-top: 160px;
  }
}
.is-page-about-message-outter .swiper-container {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width:640px) {
  .is-page-about-message-outter .swiper-container {
    padding-bottom: 40px;
  }
}
.is-page-about-message-outter .swiper-container .swiper-slide {
  background: transparent;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}
.is-page-about-message-outter .swiper-container .swiper-slide img {
  height: 100%;
  display: inline-block;
  overflow: hidden;
  border-radius: 140px 140px 10px 10px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-message-wrapper {
    align-items: flex-end;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-message-wrapper {
    flex-wrap: wrap;
  }
}
.is-page-about-message, .is-page-about-mission {
  position: relative;
}
.is-page-about-message-txt, .is-page-about-mission-txt {
  margin-right: 5.6%;
}
@media only screen and (max-width:640px) {
  .is-page-about-message-txt, .is-page-about-mission-txt {
    margin-right: 0;
    margin-bottom: 60px;
  }
}
.is-page-about-message-txt .tw, .is-page-about-mission-txt .tw {
  text-align: left;
}
.is-page-about-message-txt h4, .is-page-about-mission-txt h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
  letter-spacing: 0.14em;
  line-height: 2;
}
@media (min-width: 480px) {
  .is-page-about-message-txt h4, .is-page-about-mission-txt h4 {
    font-size: 24px;
    font-size: calc(0.01 * 100vw + 11.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-message-txt h4, .is-page-about-mission-txt h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-message-txt h4, .is-page-about-mission-txt h4 {
    margin-bottom: 30px;
  }
}
.is-page-about-message-txt .lead, .is-page-about-mission-txt .lead {
  font-size: 12px;
  margin-bottom: 2em;
  line-height: 2;
  letter-spacing: 0.14em;
}
@media (min-width: 480px) {
  .is-page-about-message-txt .lead, .is-page-about-mission-txt .lead {
    font-size: 16px;
    font-size: calc(0.005 * 100vw + 9.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-about-message-txt .lead, .is-page-about-mission-txt .lead {
    font-size: 16px;
  }
}
.is-page-about-message-txt .sign, .is-page-about-mission-txt .sign {
  padding-top: 36px;
  float: right;
  height: auto;
}
.is-page-about-message .owner, .is-page-about-mission .owner {
  height: 100%;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-message .owner, .is-page-about-mission .owner {
    width: 30vw;
  }
}
.is-page-about-mission {
  position: relative;
  z-index: 5;
  background: transparent;
}
@media only screen and (max-width:640px) {
  .is-page-about-mission-wrapper {
    flex-wrap: wrap;
  }
}
.is-page-about-mission-txt {
  width: 50%;
  margin-bottom: 140px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-mission-txt {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-mission-txt {
    margin-bottom: 60px;
    width: 100%;
  }
}
.is-page-about-mission-txt .lead {
  margin-bottom: 4em;
}
.is-page-about-mission h3 {
  margin-bottom: 60px;
}
@media only screen and (max-width:640px) {
  .is-page-about-mission h3 {
    margin-bottom: 30px;
  }
}
.is-page-about-mission h4 {
  margin-bottom: 32px;
  line-height: 1.5;
}
@media only screen and (max-width:640px) {
  .is-page-about-mission h4 {
    margin-bottom: 16px;
  }
}
.is-page-about-mission-img {
  position: absolute;
  right: 60px;
  top: 150px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-mission-img {
    width: 30vw;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-mission-img {
    position: relative;
    right: auto;
    top: auto;
    display: flex;
    justify-content: space-around;
  }
}
.is-page-about-mission-img .img-1 {
  border-radius: 335px 335px 10px 10px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width:640px) {
  .is-page-about-mission-img .img-1 {
    margin-right: 2%;
  }
}
.is-page-about-mission-img .img-2 {
  border-radius: 140px 140px 10px 10px;
  overflow: hidden;
  position: absolute;
  left: -60px;
  bottom: -60px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .is-page-about-mission-img .img-2 {
    width: 60%;
  }
}
@media only screen and (max-width:640px) {
  .is-page-about-mission-img .img-1, .is-page-about-mission-img .img-2 {
    position: static;
    width: calc(50% - 16px);
  }
}
.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 #2F4858;
  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 #2F4858;
  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(47, 72, 88, 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;
  }
}

.is-page-faq h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .is-page-faq h3 {
    font-size: 28px;
    font-size: calc(0.01 * 100vw + 15.2px);
  }
}
@media (min-width: 1280px) {
  .is-page-faq h3 {
    font-size: 28px;
  }
}
.is-page-faq ul {
  margin-bottom: 60px;
}
.is-page-faq ul li {
  padding: 30px 0;
  border-top: 1px solid #dedede;
}
.is-page-faq ul li:last-of-type {
  border-bottom: 1px solid #dedede;
}
.is-page-faq ul li .read-more-btn {
  font-size: inherit;
  letter-spacing: 0.14em;
  float: right;
  color: #2F4858;
  padding-top: 2px;
  text-decoration: underline;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
@media only screen and (max-width:640px) {
  .is-page-faq ul li .read-more-btn {
    padding: 0;
    float: inherit;
    display: block;
    margin-top: 1em;
  }
}
.is-page-faq ul li .read-more-btn:hover {
  opacity: 0.6;
}
.is-page-faq ul li .ques,
.is-page-faq ul li .ans {
  font-size: 16px;
  position: relative;
  padding-left: 36px;
}
@media (min-width: 480px) {
  .is-page-faq ul li .ques,
  .is-page-faq ul li .ans {
    font-size: 16px;
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1280px) {
  .is-page-faq ul li .ques,
  .is-page-faq ul li .ans {
    font-size: 16px;
  }
}
.is-page-faq ul li .ques::before,
.is-page-faq ul li .ans::before {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 16px;
}
@media (min-width: 480px) {
  .is-page-faq ul li .ques::before,
  .is-page-faq ul li .ans::before {
    font-size: 20px;
    font-size: calc(0.005 * 100vw + 13.6px);
  }
}
@media (min-width: 1280px) {
  .is-page-faq ul li .ques::before,
  .is-page-faq ul li .ans::before {
    font-size: 20px;
  }
}
.is-page-faq ul li .ques::before {
  content: "Q";
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.is-page-faq ul li .ans {
  transition: max-height 0.3s ease-out;
  display: none;
  margin-top: 30px;
}
.is-page-faq ul li .ans::before {
  content: "A";
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.is-page-faq ul li .active {
  display: block;
}/*# sourceMappingURL=import.min.css.map */