/*!***********************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../scss/style.scss ***!
  \***********************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap);
/*!***********************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/animate.css/animate.css ***!
  \***********************************************************************************************************************************************************************/
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

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

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*!*****************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/swiper/swiper.css ***!
  \*****************************************************************************************************************************************************************/
/**
 * Swiper 11.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 10, 2025
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/*!*****************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/swiper/modules/navigation.css ***!
  \*****************************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
/*!*****************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/swiper/modules/pagination.css ***!
  \*****************************************************************************************************************************************************************************/
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}
/*!***************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/swiper/modules/autoplay.css ***!
  \***************************************************************************************************************************************************************************/

/*!*******************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../../node_modules/scroll-hint/css/scroll-hint.css ***!
  \*******************************************************************************************************************************************************************************/
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}
/*!***************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../../node_modules/sass-loader/dist/cjs.js!../scss/style.scss (1) ***!
  \***************************************************************************************************************************************************/
@charset "UTF-8";
/*******************************************
	/css/style.css
*******************************************/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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,
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, a,
form, input, textarea, select, option, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

main, 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%;
  text-decoration: none;
  vertical-align: baseline;
  color: inherit;
  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 #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, textarea, select, option, button {
  vertical-align: middle;
  background-color: #fff;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  -moz-appearance: textfield !important;
}

button {
  cursor: pointer;
}

/**************************************************************************
    ベース (接頭辞なし)
**************************************************************************/
html {
  font-size: 10px;
  overflow-y: scroll;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.125;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is_fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

a {
  cursor: pointer;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

p {
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.wow {
  visibility: hidden;
}

/**************************************************************************
    ヘルパー (接頭辞 hp_)
**************************************************************************/
@media screen and (max-width: 375px) {
  .hp_xs_none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hp_sm_none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hp_md_none {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .hp_lg_none {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_lg_max_none {
    display: none !important;
  }
}
@media screen and (min-width: 1320px) {
  .hp_xl_none {
    display: none !important;
  }
}
@media screen and (max-width: 1319px) {
  .hp_xl_max_none {
    display: none !important;
  }
}
.hp_color_base {
  color: #333 !important;
}

.hp_bg_color_base {
  background-color: #333 !important;
}

.hp_color_base_light {
  color: #808080 !important;
}

.hp_bg_color_base_light {
  background-color: #808080 !important;
}

.hp_color_white {
  color: #fff !important;
}

.hp_bg_color_white {
  background-color: #fff !important;
}

.hp_color_key {
  color: #0045b9 !important;
}

.hp_bg_color_key {
  background-color: #0045b9 !important;
}

.hp_color_key_2 {
  color: #006ab9 !important;
}

.hp_bg_color_key_2 {
  background-color: #006ab9 !important;
}

.hp_color_key_light {
  color: #6fa4ef !important;
}

.hp_bg_color_key_light {
  background-color: #6fa4ef !important;
}

.hp_color_key_light_2 {
  color: #4f9dff !important;
}

.hp_bg_color_key_light_2 {
  background-color: #4f9dff !important;
}

.hp_color_accent {
  color: #00b58d !important;
}

.hp_bg_color_accent {
  background-color: #00b58d !important;
}

.hp_color_accent_2 {
  color: #ff5e88 !important;
}

.hp_bg_color_accent_2 {
  background-color: #ff5e88 !important;
}

.hp_color_accent_light {
  color: #e6f6f3 !important;
}

.hp_bg_color_accent_light {
  background-color: #e6f6f3 !important;
}

.hp_color_accent_3 {
  color: #6fa4ef !important;
}

.hp_bg_color_accent_3 {
  background-color: #6fa4ef !important;
}

.hp_color_bg {
  color: #f0f5ff !important;
}

.hp_bg_color_bg {
  background-color: #f0f5ff !important;
}

.hp_color_bg_2 {
  color: #f5f3f7 !important;
}

.hp_bg_color_bg_2 {
  background-color: #f5f3f7 !important;
}

.hp_color_bg_3 {
  color: #cccccc !important;
}

.hp_bg_color_bg_3 {
  background-color: #cccccc !important;
}

.hp_color_bg_4 {
  color: #e6e6e6 !important;
}

.hp_bg_color_bg_4 {
  background-color: #e6e6e6 !important;
}

.hp_color_border {
  color: #dad3e1 !important;
}

.hp_bg_color_border {
  background-color: #dad3e1 !important;
}

.hp_color_border_light {
  color: #e6e6e6 !important;
}

.hp_bg_color_border_light {
  background-color: #e6e6e6 !important;
}

.hp_color_form {
  color: #e3ecff !important;
}

.hp_bg_color_form {
  background-color: #e3ecff !important;
}

.hp_color_form_hover {
  color: #f0f5ff !important;
}

.hp_bg_color_form_hover {
  background-color: #f0f5ff !important;
}

.hp_fw_normal {
  font-weight: normal !important;
}

.hp_fw_bold {
  font-weight: bold !important;
}

.hp_ta_left {
  text-align: left !important;
}

.hp_ta_center {
  text-align: center !important;
}

.hp_ta_right {
  text-align: right !important;
}

.hp_fs_10 {
  font-size: 1rem !important;
}

.hp_fs_11 {
  font-size: 1.1rem !important;
}

.hp_fs_12 {
  font-size: 1.2rem !important;
}

.hp_fs_13 {
  font-size: 1.3rem !important;
}

.hp_fs_14 {
  font-size: 1.4rem !important;
}

.hp_fs_15 {
  font-size: 1.5rem !important;
}

.hp_fs_16 {
  font-size: 1.6rem !important;
}

.hp_fs_17 {
  font-size: 1.7rem !important;
}

.hp_fs_18 {
  font-size: 1.8rem !important;
}

.hp_fs_19 {
  font-size: 1.9rem !important;
}

.hp_fs_20 {
  font-size: 2rem !important;
}

.hp_fs_21 {
  font-size: 2.1rem !important;
}

.hp_fs_22 {
  font-size: 2.2rem !important;
}

.hp_fs_23 {
  font-size: 2.3rem !important;
}

.hp_fs_24 {
  font-size: 2.4rem !important;
}

.hp_fs_25 {
  font-size: 2.5rem !important;
}

.hp_fs_26 {
  font-size: 2.6rem !important;
}

.hp_fs_27 {
  font-size: 2.7rem !important;
}

.hp_fs_28 {
  font-size: 2.8rem !important;
}

.hp_fs_29 {
  font-size: 2.9rem !important;
}

.hp_fs_30 {
  font-size: 3rem !important;
}

.hp_p_5 {
  padding: 5px !important;
}

.hp_py_5 {
  padding: 5px 0 !important;
}

.hp_px_5 {
  padding: 0 5px !important;
}

.hp_pt_5 {
  padding-top: 5px !important;
}

.hp_pb_5 {
  padding-bottom: 5px !important;
}

.hp_pl_5 {
  padding-left: 5px !important;
}

.hp_pr_5 {
  padding-right: 5px !important;
}

.hp_m_5 {
  margin: 5px !important;
}

.hp_my_5 {
  margin: 5px 0 !important;
}

.hp_mx_5 {
  margin: 0 5px !important;
}

.hp_mt_5 {
  margin-top: 5px !important;
}

.hp_mb_5 {
  margin-bottom: 5px !important;
}

.hp_ml_5 {
  margin-left: 5px !important;
}

.hp_mr_5 {
  margin-right: 5px !important;
}

.hp_p_10 {
  padding: 10px !important;
}

.hp_py_10 {
  padding: 10px 0 !important;
}

.hp_px_10 {
  padding: 0 10px !important;
}

.hp_pt_10 {
  padding-top: 10px !important;
}

.hp_pb_10 {
  padding-bottom: 10px !important;
}

.hp_pl_10 {
  padding-left: 10px !important;
}

.hp_pr_10 {
  padding-right: 10px !important;
}

.hp_m_10 {
  margin: 10px !important;
}

.hp_my_10 {
  margin: 10px 0 !important;
}

.hp_mx_10 {
  margin: 0 10px !important;
}

.hp_mt_10 {
  margin-top: 10px !important;
}

.hp_mb_10 {
  margin-bottom: 10px !important;
}

.hp_ml_10 {
  margin-left: 10px !important;
}

.hp_mr_10 {
  margin-right: 10px !important;
}

.hp_p_15 {
  padding: 15px !important;
}

.hp_py_15 {
  padding: 15px 0 !important;
}

.hp_px_15 {
  padding: 0 15px !important;
}

.hp_pt_15 {
  padding-top: 15px !important;
}

.hp_pb_15 {
  padding-bottom: 15px !important;
}

.hp_pl_15 {
  padding-left: 15px !important;
}

.hp_pr_15 {
  padding-right: 15px !important;
}

.hp_m_15 {
  margin: 15px !important;
}

.hp_my_15 {
  margin: 15px 0 !important;
}

.hp_mx_15 {
  margin: 0 15px !important;
}

.hp_mt_15 {
  margin-top: 15px !important;
}

.hp_mb_15 {
  margin-bottom: 15px !important;
}

.hp_ml_15 {
  margin-left: 15px !important;
}

.hp_mr_15 {
  margin-right: 15px !important;
}

.hp_p_20 {
  padding: 20px !important;
}

.hp_py_20 {
  padding: 20px 0 !important;
}

.hp_px_20 {
  padding: 0 20px !important;
}

.hp_pt_20 {
  padding-top: 20px !important;
}

.hp_pb_20 {
  padding-bottom: 20px !important;
}

.hp_pl_20 {
  padding-left: 20px !important;
}

.hp_pr_20 {
  padding-right: 20px !important;
}

.hp_m_20 {
  margin: 20px !important;
}

.hp_my_20 {
  margin: 20px 0 !important;
}

.hp_mx_20 {
  margin: 0 20px !important;
}

.hp_mt_20 {
  margin-top: 20px !important;
}

.hp_mb_20 {
  margin-bottom: 20px !important;
}

.hp_ml_20 {
  margin-left: 20px !important;
}

.hp_mr_20 {
  margin-right: 20px !important;
}

.hp_p_25 {
  padding: 25px !important;
}

.hp_py_25 {
  padding: 25px 0 !important;
}

.hp_px_25 {
  padding: 0 25px !important;
}

.hp_pt_25 {
  padding-top: 25px !important;
}

.hp_pb_25 {
  padding-bottom: 25px !important;
}

.hp_pl_25 {
  padding-left: 25px !important;
}

.hp_pr_25 {
  padding-right: 25px !important;
}

.hp_m_25 {
  margin: 25px !important;
}

.hp_my_25 {
  margin: 25px 0 !important;
}

.hp_mx_25 {
  margin: 0 25px !important;
}

.hp_mt_25 {
  margin-top: 25px !important;
}

.hp_mb_25 {
  margin-bottom: 25px !important;
}

.hp_ml_25 {
  margin-left: 25px !important;
}

.hp_mr_25 {
  margin-right: 25px !important;
}

.hp_p_30 {
  padding: 30px !important;
}

.hp_py_30 {
  padding: 30px 0 !important;
}

.hp_px_30 {
  padding: 0 30px !important;
}

.hp_pt_30 {
  padding-top: 30px !important;
}

.hp_pb_30 {
  padding-bottom: 30px !important;
}

.hp_pl_30 {
  padding-left: 30px !important;
}

.hp_pr_30 {
  padding-right: 30px !important;
}

.hp_m_30 {
  margin: 30px !important;
}

.hp_my_30 {
  margin: 30px 0 !important;
}

.hp_mx_30 {
  margin: 0 30px !important;
}

.hp_mt_30 {
  margin-top: 30px !important;
}

.hp_mb_30 {
  margin-bottom: 30px !important;
}

.hp_ml_30 {
  margin-left: 30px !important;
}

.hp_mr_30 {
  margin-right: 30px !important;
}

.hp_p_35 {
  padding: 35px !important;
}

.hp_py_35 {
  padding: 35px 0 !important;
}

.hp_px_35 {
  padding: 0 35px !important;
}

.hp_pt_35 {
  padding-top: 35px !important;
}

.hp_pb_35 {
  padding-bottom: 35px !important;
}

.hp_pl_35 {
  padding-left: 35px !important;
}

.hp_pr_35 {
  padding-right: 35px !important;
}

.hp_m_35 {
  margin: 35px !important;
}

.hp_my_35 {
  margin: 35px 0 !important;
}

.hp_mx_35 {
  margin: 0 35px !important;
}

.hp_mt_35 {
  margin-top: 35px !important;
}

.hp_mb_35 {
  margin-bottom: 35px !important;
}

.hp_ml_35 {
  margin-left: 35px !important;
}

.hp_mr_35 {
  margin-right: 35px !important;
}

.hp_p_40 {
  padding: 40px !important;
}

.hp_py_40 {
  padding: 40px 0 !important;
}

.hp_px_40 {
  padding: 0 40px !important;
}

.hp_pt_40 {
  padding-top: 40px !important;
}

.hp_pb_40 {
  padding-bottom: 40px !important;
}

.hp_pl_40 {
  padding-left: 40px !important;
}

.hp_pr_40 {
  padding-right: 40px !important;
}

.hp_m_40 {
  margin: 40px !important;
}

.hp_my_40 {
  margin: 40px 0 !important;
}

.hp_mx_40 {
  margin: 0 40px !important;
}

.hp_mt_40 {
  margin-top: 40px !important;
}

.hp_mb_40 {
  margin-bottom: 40px !important;
}

.hp_ml_40 {
  margin-left: 40px !important;
}

.hp_mr_40 {
  margin-right: 40px !important;
}

.hp_p_45 {
  padding: 45px !important;
}

.hp_py_45 {
  padding: 45px 0 !important;
}

.hp_px_45 {
  padding: 0 45px !important;
}

.hp_pt_45 {
  padding-top: 45px !important;
}

.hp_pb_45 {
  padding-bottom: 45px !important;
}

.hp_pl_45 {
  padding-left: 45px !important;
}

.hp_pr_45 {
  padding-right: 45px !important;
}

.hp_m_45 {
  margin: 45px !important;
}

.hp_my_45 {
  margin: 45px 0 !important;
}

.hp_mx_45 {
  margin: 0 45px !important;
}

.hp_mt_45 {
  margin-top: 45px !important;
}

.hp_mb_45 {
  margin-bottom: 45px !important;
}

.hp_ml_45 {
  margin-left: 45px !important;
}

.hp_mr_45 {
  margin-right: 45px !important;
}

.hp_p_50 {
  padding: 50px !important;
}

.hp_py_50 {
  padding: 50px 0 !important;
}

.hp_px_50 {
  padding: 0 50px !important;
}

.hp_pt_50 {
  padding-top: 50px !important;
}

.hp_pb_50 {
  padding-bottom: 50px !important;
}

.hp_pl_50 {
  padding-left: 50px !important;
}

.hp_pr_50 {
  padding-right: 50px !important;
}

.hp_m_50 {
  margin: 50px !important;
}

.hp_my_50 {
  margin: 50px 0 !important;
}

.hp_mx_50 {
  margin: 0 50px !important;
}

.hp_mt_50 {
  margin-top: 50px !important;
}

.hp_mb_50 {
  margin-bottom: 50px !important;
}

.hp_ml_50 {
  margin-left: 50px !important;
}

.hp_mr_50 {
  margin-right: 50px !important;
}

.hp_p_55 {
  padding: 55px !important;
}

.hp_py_55 {
  padding: 55px 0 !important;
}

.hp_px_55 {
  padding: 0 55px !important;
}

.hp_pt_55 {
  padding-top: 55px !important;
}

.hp_pb_55 {
  padding-bottom: 55px !important;
}

.hp_pl_55 {
  padding-left: 55px !important;
}

.hp_pr_55 {
  padding-right: 55px !important;
}

.hp_m_55 {
  margin: 55px !important;
}

.hp_my_55 {
  margin: 55px 0 !important;
}

.hp_mx_55 {
  margin: 0 55px !important;
}

.hp_mt_55 {
  margin-top: 55px !important;
}

.hp_mb_55 {
  margin-bottom: 55px !important;
}

.hp_ml_55 {
  margin-left: 55px !important;
}

.hp_mr_55 {
  margin-right: 55px !important;
}

.hp_p_60 {
  padding: 60px !important;
}

.hp_py_60 {
  padding: 60px 0 !important;
}

.hp_px_60 {
  padding: 0 60px !important;
}

.hp_pt_60 {
  padding-top: 60px !important;
}

.hp_pb_60 {
  padding-bottom: 60px !important;
}

.hp_pl_60 {
  padding-left: 60px !important;
}

.hp_pr_60 {
  padding-right: 60px !important;
}

.hp_m_60 {
  margin: 60px !important;
}

.hp_my_60 {
  margin: 60px 0 !important;
}

.hp_mx_60 {
  margin: 0 60px !important;
}

.hp_mt_60 {
  margin-top: 60px !important;
}

.hp_mb_60 {
  margin-bottom: 60px !important;
}

.hp_ml_60 {
  margin-left: 60px !important;
}

.hp_mr_60 {
  margin-right: 60px !important;
}

.hp_p_65 {
  padding: 65px !important;
}

.hp_py_65 {
  padding: 65px 0 !important;
}

.hp_px_65 {
  padding: 0 65px !important;
}

.hp_pt_65 {
  padding-top: 65px !important;
}

.hp_pb_65 {
  padding-bottom: 65px !important;
}

.hp_pl_65 {
  padding-left: 65px !important;
}

.hp_pr_65 {
  padding-right: 65px !important;
}

.hp_m_65 {
  margin: 65px !important;
}

.hp_my_65 {
  margin: 65px 0 !important;
}

.hp_mx_65 {
  margin: 0 65px !important;
}

.hp_mt_65 {
  margin-top: 65px !important;
}

.hp_mb_65 {
  margin-bottom: 65px !important;
}

.hp_ml_65 {
  margin-left: 65px !important;
}

.hp_mr_65 {
  margin-right: 65px !important;
}

.hp_p_70 {
  padding: 70px !important;
}

.hp_py_70 {
  padding: 70px 0 !important;
}

.hp_px_70 {
  padding: 0 70px !important;
}

.hp_pt_70 {
  padding-top: 70px !important;
}

.hp_pb_70 {
  padding-bottom: 70px !important;
}

.hp_pl_70 {
  padding-left: 70px !important;
}

.hp_pr_70 {
  padding-right: 70px !important;
}

.hp_m_70 {
  margin: 70px !important;
}

.hp_my_70 {
  margin: 70px 0 !important;
}

.hp_mx_70 {
  margin: 0 70px !important;
}

.hp_mt_70 {
  margin-top: 70px !important;
}

.hp_mb_70 {
  margin-bottom: 70px !important;
}

.hp_ml_70 {
  margin-left: 70px !important;
}

.hp_mr_70 {
  margin-right: 70px !important;
}

.hp_p_75 {
  padding: 75px !important;
}

.hp_py_75 {
  padding: 75px 0 !important;
}

.hp_px_75 {
  padding: 0 75px !important;
}

.hp_pt_75 {
  padding-top: 75px !important;
}

.hp_pb_75 {
  padding-bottom: 75px !important;
}

.hp_pl_75 {
  padding-left: 75px !important;
}

.hp_pr_75 {
  padding-right: 75px !important;
}

.hp_m_75 {
  margin: 75px !important;
}

.hp_my_75 {
  margin: 75px 0 !important;
}

.hp_mx_75 {
  margin: 0 75px !important;
}

.hp_mt_75 {
  margin-top: 75px !important;
}

.hp_mb_75 {
  margin-bottom: 75px !important;
}

.hp_ml_75 {
  margin-left: 75px !important;
}

.hp_mr_75 {
  margin-right: 75px !important;
}

.hp_p_80 {
  padding: 80px !important;
}

.hp_py_80 {
  padding: 80px 0 !important;
}

.hp_px_80 {
  padding: 0 80px !important;
}

.hp_pt_80 {
  padding-top: 80px !important;
}

.hp_pb_80 {
  padding-bottom: 80px !important;
}

.hp_pl_80 {
  padding-left: 80px !important;
}

.hp_pr_80 {
  padding-right: 80px !important;
}

.hp_m_80 {
  margin: 80px !important;
}

.hp_my_80 {
  margin: 80px 0 !important;
}

.hp_mx_80 {
  margin: 0 80px !important;
}

.hp_mt_80 {
  margin-top: 80px !important;
}

.hp_mb_80 {
  margin-bottom: 80px !important;
}

.hp_ml_80 {
  margin-left: 80px !important;
}

.hp_mr_80 {
  margin-right: 80px !important;
}

.hp_p_85 {
  padding: 85px !important;
}

.hp_py_85 {
  padding: 85px 0 !important;
}

.hp_px_85 {
  padding: 0 85px !important;
}

.hp_pt_85 {
  padding-top: 85px !important;
}

.hp_pb_85 {
  padding-bottom: 85px !important;
}

.hp_pl_85 {
  padding-left: 85px !important;
}

.hp_pr_85 {
  padding-right: 85px !important;
}

.hp_m_85 {
  margin: 85px !important;
}

.hp_my_85 {
  margin: 85px 0 !important;
}

.hp_mx_85 {
  margin: 0 85px !important;
}

.hp_mt_85 {
  margin-top: 85px !important;
}

.hp_mb_85 {
  margin-bottom: 85px !important;
}

.hp_ml_85 {
  margin-left: 85px !important;
}

.hp_mr_85 {
  margin-right: 85px !important;
}

.hp_p_90 {
  padding: 90px !important;
}

.hp_py_90 {
  padding: 90px 0 !important;
}

.hp_px_90 {
  padding: 0 90px !important;
}

.hp_pt_90 {
  padding-top: 90px !important;
}

.hp_pb_90 {
  padding-bottom: 90px !important;
}

.hp_pl_90 {
  padding-left: 90px !important;
}

.hp_pr_90 {
  padding-right: 90px !important;
}

.hp_m_90 {
  margin: 90px !important;
}

.hp_my_90 {
  margin: 90px 0 !important;
}

.hp_mx_90 {
  margin: 0 90px !important;
}

.hp_mt_90 {
  margin-top: 90px !important;
}

.hp_mb_90 {
  margin-bottom: 90px !important;
}

.hp_ml_90 {
  margin-left: 90px !important;
}

.hp_mr_90 {
  margin-right: 90px !important;
}

.hp_p_95 {
  padding: 95px !important;
}

.hp_py_95 {
  padding: 95px 0 !important;
}

.hp_px_95 {
  padding: 0 95px !important;
}

.hp_pt_95 {
  padding-top: 95px !important;
}

.hp_pb_95 {
  padding-bottom: 95px !important;
}

.hp_pl_95 {
  padding-left: 95px !important;
}

.hp_pr_95 {
  padding-right: 95px !important;
}

.hp_m_95 {
  margin: 95px !important;
}

.hp_my_95 {
  margin: 95px 0 !important;
}

.hp_mx_95 {
  margin: 0 95px !important;
}

.hp_mt_95 {
  margin-top: 95px !important;
}

.hp_mb_95 {
  margin-bottom: 95px !important;
}

.hp_ml_95 {
  margin-left: 95px !important;
}

.hp_mr_95 {
  margin-right: 95px !important;
}

.hp_p_100 {
  padding: 100px !important;
}

.hp_py_100 {
  padding: 100px 0 !important;
}

.hp_px_100 {
  padding: 0 100px !important;
}

.hp_pt_100 {
  padding-top: 100px !important;
}

.hp_pb_100 {
  padding-bottom: 100px !important;
}

.hp_pl_100 {
  padding-left: 100px !important;
}

.hp_pr_100 {
  padding-right: 100px !important;
}

.hp_m_100 {
  margin: 100px !important;
}

.hp_my_100 {
  margin: 100px 0 !important;
}

.hp_mx_100 {
  margin: 0 100px !important;
}

.hp_mt_100 {
  margin-top: 100px !important;
}

.hp_mb_100 {
  margin-bottom: 100px !important;
}

.hp_ml_100 {
  margin-left: 100px !important;
}

.hp_mr_100 {
  margin-right: 100px !important;
}

.hp_of_hidden {
  overflow: hidden !important;
}

/*------------------------------------------------------------------------
	ヘッダー
------------------------------------------------------------------------*/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  min-width: 100%;
  z-index: 1000;
  transition: all 0.3s;
}
.ly_header.is_bg {
  background-color: #fff;
  box-shadow: 1px 1px 7px rgba(19, 51, 109, 0.1);
}
.ly_header .ly_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  height: 70px;
}
@media screen and (min-width: 992px) {
  .ly_header .ly_inner {
    align-items: flex-start;
    height: auto;
    padding: 30px 0;
  }
}
.ly_header .el_logo {
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .ly_header .el_logo {
    margin-top: 10px;
  }
}

/*------------------------------------------------------------------------
	フッター
------------------------------------------------------------------------*/
.ly_footer {
  padding: 40px 0;
  color: #fff;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .ly_footer {
    padding: 70px 0;
  }
}
@media screen and (min-width: 992px) {
  .ly_footer .ly_inner {
    display: flex;
    gap: 80px;
  }
}
@media screen and (max-width: 991px) {
  .ly_footer .bl_fnav {
    display: none;
  }
}
.ly_footer_info {
  flex-shrink: 0;
}
.ly_footer_info address {
  margin-bottom: 20px;
  padding-top: 20px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.75;
  border-top: 1px solid #4d4d4d;
}
.ly_footer_info address a {
  color: inherit;
  text-decoration: underline;
}
.ly_footer_info small {
  display: block;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.6666666667;
  color: #b3b3b3;
  border-top: 1px solid #4d4d4d;
}

/*------------------------------------------------------------------------
	メイン
------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
    インナー
------------------------------------------------------------------------*/
.ly_inner {
  width: 92%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1320px) {
  .ly_inner {
    width: 1240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .ly_inner.is_pc {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .ly_inner.is_sp {
    width: 100%;
  }
}
@media screen and (min-width: 1320px) {
  .ly_inner.is_small {
    width: 1100px;
  }
}

/*------------------------------------------------------------------------
    セクション
------------------------------------------------------------------------*/
.ly_section {
  padding: 61px 0 0;
}
.ly_section:last-of-type {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .ly_section:last-of-type {
    padding-bottom: 120px;
  }
}
.ly_section_note {
  margin-top: 10px;
  text-align: right;
}
.ly_section_note.is_left {
  text-align: left;
}
.ly_section.is-notop {
  padding-top: 0;
}

/*------------------------------------------------------------------------
	アコーディオン
------------------------------------------------------------------------*/
.bl_accordion_item:first-of-type .bl_accordion_btn {
  border-top: 1px dotted #cccccc;
}
.bl_accordion_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  padding: 18px 18px 18px 0;
  font-weight: 500;
  color: #0045b9;
  font-size: 1.5rem;
  border-bottom: 1px dotted #cccccc;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .bl_accordion_btn {
    font-size: 1.8rem;
    padding: 22px;
  }
}
.bl_accordion_btn::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-135deg);
  content: "";
  flex: 0 0 auto;
  transition: transform 0.2s ease-in-out;
}
.bl_accordion_btn:hover {
  opacity: 0.7;
}
.bl_accordion_btn.is_active::after {
  transform: rotate(45deg);
}

/*------------------------------------------------------------------------
	ページ内リンク
------------------------------------------------------------------------*/
.bl_anchorLink {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
}
@media screen and (min-width: 992px) {
  .bl_anchorLink {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bl_anchorLink_item {
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .bl_anchorLink_item:nth-of-type(odd) {
    border-right: 1px solid #dad3e1;
  }
}
@media screen and (min-width: 992px) {
  .bl_anchorLink_item:not(:nth-of-type(3n)) {
    border-right: 1px solid #dad3e1;
  }
}
.bl_anchorLink_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .bl_anchorLink_item a {
    height: 50px;
  }
}
.bl_anchorLink_item a::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-135deg);
  content: "";
}

/*------------------------------------------------------------------------
    パンくず
------------------------------------------------------------------------*/
.bl_breadcrumb {
  position: absolute;
  right: 0;
  bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 0.5em;
  flex-wrap: wrap;
}
.bl_breadcrumb_item {
  font-size: 1.2rem;
  font-weight: 350;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .bl_breadcrumb_item {
    font-size: 1.4rem;
  }
}
.bl_breadcrumb_item:not(:last-of-type)::after {
  content: ">";
}

/*------------------------------------------------------------------------
	バナー
------------------------------------------------------------------------*/
.bl_banners {
  padding: 35px 0;
  background-color: #f0f5ff;
}
.bl_banners .ly_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/*------------------------------------------------------------------------
	アコーディオン
------------------------------------------------------------------------*/
.bl_col2Content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "navi";
  gap: 30px;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .bl_col2Content {
    grid-template-columns: 280px 1fr;
    grid-template-areas: "navi main";
    gap: 60px;
    padding: 40px 0 47px;
  }
}
.bl_col2Content_main {
  grid-area: main;
}
.bl_col2Content_wbox {
  padding: 33px 6% 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  .bl_col2Content_wbox {
    padding: 45px 60px 47px;
  }
}
.bl_col2Content_navi {
  grid-area: navi;
  align-self: start;
  background: #fff;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  .bl_col2Content_navi {
    position: sticky;
    top: 160px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 45px 6% 47px;
  }
}
.bl_col2Content_navi_title {
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0045b9;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .bl_col2Content_navi_title {
    font-size: 2.1rem;
  }
}
.bl_col2Content_navi_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bl_col2Content_navi_listItem a {
  position: relative;
  display: block;
  padding: 6px 24px 6px 16px;
  width: 100%;
  text-decoration: none;
  line-height: 1.4;
  transition: none;
}
.bl_col2Content_navi_listItem a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 15px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #12479C;
  border-right: 2px solid #12479C;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bl_col2Content_navi_listItem a.is-active, .bl_col2Content_navi_listItem a:hover {
  opacity: 1;
  background-color: #12479C;
  border-radius: 20px;
  color: #fff;
}
.bl_col2Content_navi_listItem a.is-active::before, .bl_col2Content_navi_listItem a:hover::before {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
.bl_col2Content_navi_listItem a.is-active {
  pointer-events: none;
}

/*------------------------------------------------------------------------
	フッターナビ
------------------------------------------------------------------------*/
.bl_fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.bl_fnav_list {
  display: flex;
  flex-direction: column;
}
.bl_fnav_list:not(.is_lv2) {
  gap: 40px;
}
.bl_fnav_item:not(.is_lv2) > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: normal;
}
.bl_fnav_item:not(.is_lv2) > a::after {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #6fa4ef;
  transform: rotate(135deg);
}
.bl_fnav_item.is_lv2 > a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #cccccc;
}
.bl_fnav_sub-item {
  font-size: 1.4rem;
  font-weight: normal;
}
.bl_fnav_sub-item.is_tab > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bl_fnav_sub-item.is_tab > a::after {
  content: "";
  width: 14px;
  height: 9px;
  background: url("../img/common/icon_tab.svg") no-repeat border-box center/cover;
}

/*------------------------------------------------------------------------
	グロナビ
------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .bl_gnav {
    position: fixed;
    inset: 70px auto auto 0;
    z-index: 1000;
    width: 100%;
    height: 0;
    padding-bottom: 30px;
    overflow: scroll;
    visibility: hidden;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .bl_gnav.is_show {
    visibility: visible;
    height: var(--end-height);
  }
}
@media screen and (min-width: 992px) {
  .bl_gnav {
    position: relative;
    top: 0;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-right: 15px;
    padding-left: 30px;
    border-radius: 31px;
    background-color: #fff;
    box-shadow: 1px 1px 7px rgba(19, 51, 109, 0.1);
  }
}
@media screen and (min-width: 992px) {
  .bl_gnav_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .bl_gnav_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 24px;
    width: 100%;
  }
}
.bl_gnav_item {
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_gnav_item.is_mail {
    margin-left: auto;
  }
}
.bl_gnav_item > a {
  font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
  .bl_gnav_item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px calc((100% - 92%) / 2);
    color: #333;
    border-bottom: 1px solid #dad3e1;
  }
  .bl_gnav_item > a::after {
    width: 1em;
    height: 1em;
    font-size: 6px;
    border-top-style: solid;
    border-left-style: solid;
    border-width: 2px;
    border-color: #6fa4ef;
    transform: rotate(135deg);
    content: "";
    transition: 0.3s;
  }
}
.bl_gnav_item > a.is_active {
  color: #6fa4ef;
  opacity: 1;
}
.bl_gnav_item > a.js_accordion_submenu_trigger::after {
  transform: rotate(-135deg);
}
.bl_gnav_item > a.js_accordion_submenu_trigger.is_active::after {
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .bl_gnav .el_btn {
    margin-top: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .bl_gnav .el_btn {
    margin-left: 10px;
  }
}

/*------------------------------------------------------------------------
	下層メインビジュアル
    ※画像は各ページの個別cssで指定します
------------------------------------------------------------------------*/
.bl_mainVisual {
  background: url(../img/common/bg_mainVisual.jpg) no-repeat center/cover;
}
.bl_mainVisual_inner {
  position: relative;
  display: grid;
  place-items: center;
  height: 329px;
}
.bl_mainVisual_title {
  text-align: center;
  font-weight: 350;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .bl_mainVisual_title {
    padding-top: 50px;
    font-size: 4.1rem;
  }
}

/*------------------------------------------------------------------------
    テーブル
------------------------------------------------------------------------*/
.bl_table {
  width: 100%;
  border: 1px solid #dad3e1;
  border-collapse: collapse;
}
.bl_table th, .bl_table td {
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .bl_table th, .bl_table td {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .bl_table th, .bl_table td {
    border: 1px solid #dad3e1;
  }
}
.bl_table th {
  color: #fff;
  background-color: #0045b9;
}
@media screen and (min-width: 768px) {
  .bl_table th {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .bl_table td {
    border-top: 1px solid #dad3e1;
  }
}
@media screen and (min-width: 768px) {
  .bl_table td {
    width: 70%;
  }
}

/*------------------------------------------------------------------------
	テーブルブロック
------------------------------------------------------------------------*/
.bl_tableBlock table {
  width: 100%;
}
.bl_tableBlock th, .bl_tableBlock td {
  position: relative;
  line-height: 1.75;
  border-bottom: 1px dotted #cccccc;
  text-align: left;
  vertical-align: middle;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock th, .bl_tableBlock td {
    padding-left: 33px;
    padding-right: 33px;
  }
}
.bl_tableBlock th:first-child {
  padding-left: 0;
}
.bl_tableBlock td {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock td {
    width: 214px;
  }
}
.bl_tableBlock td:last-child {
  padding-right: 0;
}
.bl_tableBlock td::after {
  content: "";
  width: 1px;
  height: calc(100% - 18px - 4px);
  background: #006ab9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock td::after {
    height: calc(100% - 22px - 4px);
  }
}
.bl_tableBlock thead th {
  font-weight: 350;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock thead th {
    font-size: 1.4rem;
  }
}
.bl_tableBlock tbody th, .bl_tableBlock tbody td {
  padding-top: 18px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock tbody th, .bl_tableBlock tbody td {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.bl_tableBlock tbody th {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0045b9;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock tbody th {
    font-size: 1.8rem;
  }
}
.bl_tableBlock_empty {
  text-align: center;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock_empty {
    padding: 100px 0;
  }
}
.bl_tableBlock.is-event {
  width: 100%;
  overflow-x: scroll;
}
.bl_tableBlock.is-event.is-empty {
  overflow: auto;
}
.bl_tableBlock.is-event table {
  width: 1600px;
}
.bl_tableBlock.is-event thead th {
  text-align: center;
}
.bl_tableBlock.is-event thead th:first-child {
  padding-right: 10px;
  padding-left: 10px;
}
.bl_tableBlock.is-event tbody th, .bl_tableBlock.is-event tbody td {
  font-weight: 350;
  line-height: 1.375;
  width: auto;
  padding: 17px 19px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_date {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  font-size: 1.6rem;
  width: 118px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_date span:not(:last-child) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_date span:not(:last-child)::after {
  content: "│";
}
.bl_tableBlock.is-event tbody .bl_tableBlock_title {
  width: 200px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_contents {
  width: 408px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_contents span {
  display: block;
  width: fit-content;
  background: #0045b9;
  color: #fff;
  border-radius: 20px;
  padding: 7px 20px;
  margin-bottom: 10px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_organize {
  width: 178px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_contact {
  width: 222px;
}
.bl_tableBlock.is-event tbody .bl_tableBlock_file {
  color: #0045b9;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi tbody, .bl_tableBlock.is_taikabutsushi thead, .bl_tableBlock.is_taikabutsushi tr, .bl_tableBlock.is_taikabutsushi th, .bl_tableBlock.is_taikabutsushi td {
    display: block;
  }
}
.bl_tableBlock.is_taikabutsushi th {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi th {
    position: relative;
    padding: 14px 0 14px 14px;
    margin-top: 10px;
  }
  .bl_tableBlock.is_taikabutsushi th::after {
    content: "";
    width: 1px;
    height: 50%;
    background: #006ab9;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .bl_tableBlock.is_taikabutsushi th {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi td {
    width: auto;
  }
}
.bl_tableBlock.is_taikabutsushi td:not(:first-of-type) {
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .bl_tableBlock.is_taikabutsushi td:not(:first-of-type) {
    padding-left: 0;
  }
}
.bl_tableBlock.is_taikabutsushi td:not(:first-of-type)::after {
  display: none;
}
.bl_tableBlock.is_taikabutsushi .bl_tableBlock_title {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_title {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6px;
    border-bottom: none;
  }
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_title::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_title {
    width: auto;
    font-size: 1.6rem;
  }
}
.bl_tableBlock.is_taikabutsushi .bl_tableBlock_author {
  font-size: 1.2rem;
  text-align: right;
  line-height: 2.2142857143;
  padding-right: 10px !important;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_author {
    display: inline-block;
    box-sizing: border-box;
    width: 80%;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_author {
    width: 210px;
    font-size: 1.4rem;
  }
}
.bl_tableBlock.is_taikabutsushi .bl_tableBlock_pdf {
  padding-left: 0 !important;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_pdf {
    display: inline-block;
    box-sizing: border-box;
    width: calc(20% - 4px);
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .bl_tableBlock.is_taikabutsushi .bl_tableBlock_pdf {
    width: 90px;
  }
}
.bl_tableBlock.is_taikabutsushi .bl_tableBlock_pdf > *:not(:first-child) {
  margin-top: 6px;
}
.bl_tableBlock.is_normal table {
  table-layout: fixed;
}
.bl_tableBlock.is_normal table th {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_normal table th {
    width: 100% !important;
    display: block;
    padding: 5px 14px;
    background-color: #f5f3f7;
  }
}
.bl_tableBlock.is_normal table td {
  width: auto;
}
@media screen and (max-width: 767px) {
  .bl_tableBlock.is_normal table td {
    display: block;
    width: 100% !important;
  }
  .bl_tableBlock.is_normal table td::after {
    width: 0;
  }
}

/*------------------------------------------------------------------------
	テーブル通常
------------------------------------------------------------------------*/
.bl_tableNormal {
  width: 100%;
}
.bl_tableNormal table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px dotted #cccccc;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}
.bl_tableNormal th, .bl_tableNormal td {
  vertical-align: middle;
  font-weight: 400;
  border-right: 1px dotted #cccccc;
}
.bl_tableNormal th:first-child:not(td), .bl_tableNormal td:first-child:not(td) {
  border-right: 2px solid #cccccc;
  background: rgba(204, 204, 204, 0.2);
}
.bl_tableNormal th.is_bg, .bl_tableNormal td.is_bg {
  background: rgba(204, 204, 204, 0.2);
}
.bl_tableNormal thead tr {
  height: 40px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.bl_tableNormal thead th {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 0.4em 0.7em;
  color: #0045b9;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bl_tableNormal thead th {
    font-size: 1.4rem;
    padding: 0.4em 1.2em;
  }
}
.bl_tableNormal thead th span {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .bl_tableNormal thead th span {
    font-size: 1.2rem;
  }
}
.bl_tableNormal thead th.is-m_job {
  width: 25%;
}
.bl_tableNormal thead th.is-m_name {
  width: 25%;
}
.bl_tableNormal thead th.is-m_company {
  width: 50%;
}
.bl_tableNormal tbody tr {
  border-bottom: 1px solid #cccccc;
}
.bl_tableNormal tbody tr.is_head {
  border-top: 1px solid #cccccc;
}
.bl_tableNormal tbody tr:not(:last-child) {
  border-bottom: 1px dotted #cccccc;
}
.bl_tableNormal tbody th, .bl_tableNormal tbody td {
  line-height: 1.7;
  padding: 0.8em 0.7em;
}
@media screen and (min-width: 768px) {
  .bl_tableNormal tbody th, .bl_tableNormal tbody td {
    padding: 0.8em 1.5em;
  }
}
.bl_tableNormal tbody th span, .bl_tableNormal tbody td span {
  font-size: 90%;
}
.bl_tableNormal tbody th {
  text-align: left;
}
.bl_tableNormal_bgAccent th, .bl_tableNormal_bgAccent td {
  background: #e6f6f3 !important;
}
.bl_tableNormal.is_scroll {
  overflow-x: auto;
}
.bl_tableNormal.is_scroll table {
  min-width: 680px;
}

/*------------------------------------------------------------------------
	書籍購入テーブル theadあり 数量選択固定
------------------------------------------------------------------------*/
.bl_tableScrollSticky {
  width: 100%;
  overflow-x: auto;
}
.bl_tableScrollSticky table {
  min-width: 680px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px dotted #cccccc;
  border-bottom: 1px dotted #cccccc;
  border-left: 1px solid #cccccc;
}
.bl_tableScrollSticky th, .bl_tableScrollSticky td {
  vertical-align: middle;
  font-weight: 400;
}
.bl_tableScrollSticky th:first-child, .bl_tableScrollSticky td:first-child {
  border-right: 2px solid #cccccc;
  background: rgba(204, 204, 204, 0.2);
}
.bl_tableScrollSticky th:not(:last-child):not(:nth-last-child(2)):not(:first-child), .bl_tableScrollSticky td:not(:last-child):not(:nth-last-child(2)):not(:first-child) {
  border-right: 1px dotted #cccccc;
}
.bl_tableScrollSticky th:last-child, .bl_tableScrollSticky td:last-child {
  position: sticky;
  right: 0;
  background: #fff;
  z-index: 1;
  width: 6em;
}
.bl_tableScrollSticky th:last-child::before, .bl_tableScrollSticky th:last-child::after, .bl_tableScrollSticky td:last-child::before, .bl_tableScrollSticky td:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
}
.bl_tableScrollSticky th:last-child::before, .bl_tableScrollSticky td:last-child::before {
  left: 0;
  border-left: 1px dotted #cccccc;
}
.bl_tableScrollSticky th:last-child::after, .bl_tableScrollSticky td:last-child::after {
  right: 0;
  border-right: 1px solid #cccccc;
}
.bl_tableScrollSticky thead tr {
  border-bottom: 1px solid #cccccc;
}
.bl_tableScrollSticky thead th {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 0.4em 1.2em;
  color: #808080;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky thead th {
    font-size: 1.4rem;
  }
}
.bl_tableScrollSticky thead th span {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky thead th span {
    font-size: 1.2rem;
  }
}
.bl_tableScrollSticky tbody tr:not(:last-child) {
  border-bottom: 1px dotted #cccccc;
}
.bl_tableScrollSticky tbody tr.is_bgAccent > * {
  font-weight: 500;
  background: #e6f6f3 !important;
}
.bl_tableScrollSticky tbody tr.is_bgAccent .bl_tableScrollSticky_td.is_memberPrice {
  color: #00b58d !important;
}
.bl_tableScrollSticky tbody tr.is_bgAccent .bl_tableScrollSticky_select {
  background: rgba(0, 181, 141, 0.15) !important;
}
.bl_tableScrollSticky tbody th, .bl_tableScrollSticky tbody td {
  line-height: 1.7;
  padding: 0.8em 1.5em;
}
.bl_tableScrollSticky tbody th span, .bl_tableScrollSticky tbody td span {
  font-size: 90%;
}
.bl_tableScrollSticky tbody th {
  text-align: left;
}
.bl_tableScrollSticky tbody td.is_price {
  text-align: center;
  min-width: 7em;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky tbody td.is_price {
    min-width: 7.5em;
  }
}
.bl_tableScrollSticky tbody td.is_price .is_price_old {
  font-size: 80%;
  color: #999;
}
.bl_tableScrollSticky tbody td.is_price .is_discount {
  color: #0045b9;
}
.bl_tableScrollSticky tbody td.is_memberPrice {
  text-align: center;
  color: #0045b9;
  font-weight: 500;
  min-width: 7em;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky tbody td.is_memberPrice {
    min-width: 7.5em;
  }
}
.bl_tableScrollSticky tbody td.is_deliveryFee {
  font-size: 1.3rem;
  min-width: 13em;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky tbody td.is_deliveryFee {
    font-size: 1.5rem;
  }
}
.bl_tableScrollSticky tbody td.is_quantity {
  text-align: center;
}
.bl_tableScrollSticky_bgAccent th, .bl_tableScrollSticky_bgAccent td {
  background: #e6f6f3 !important;
}
.bl_tableScrollSticky_select {
  background: #e3ecff;
  border-radius: 3px;
  padding: 0.4em 0.6em;
}
.bl_tableScrollSticky_select:hover {
  cursor: pointer;
  background: #f0f5ff;
}
.bl_tableScrollSticky_campaign {
  background: #0045b9;
  color: #fff;
  padding: 0.1em 0.8em;
  font-size: 1.2rem;
  border-radius: 2em;
}
@media screen and (min-width: 768px) {
  .bl_tableScrollSticky_campaign {
    font-size: 1.4rem;
  }
}
.bl_tableScrollSticky.is_check .bl_tableScrollSticky_td.is_memberPrice {
  color: #333;
  font-weight: normal;
}
.bl_tableScrollSticky.is_check .bl_tableScrollSticky_td.is_quantity {
  color: #0045b9;
  font-weight: 600;
}

/*------------------------------------------------------------------------
	タイムライン
------------------------------------------------------------------------*/
.bl_timeline {
  list-style: none;
}
.bl_timeline_item {
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .bl_timeline_item {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 0 20px;
  }
  .bl_timeline_item:nth-child(even) {
    background-color: #f5f5f5; /* 任意の背景色 */
  }
}
.bl_timeline_year {
  padding: 5px 14px;
  font-size: 2rem;
  color: #80B4DC;
  background-color: #f5f3f7;
  border-top: 1px dotted #cccccc;
  border-bottom: 1px dotted #cccccc;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .bl_timeline_year {
    padding: 20px 15px 10px 0;
    height: 100%;
    font-size: 3rem;
    font-weight: normal;
    border-right: 3px #e5e5d1 solid;
    border-top: none;
    border-bottom: none;
    background: none;
  }
}
.bl_timeline_date {
  display: relative;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .bl_timeline_date {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.bl_timeline_article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .bl_timeline_article {
    grid-template-columns: 50px 1fr;
    margin-bottom: 0px;
    padding-top: 8px;
    padding-left: 10px;
    width: 100%;
  }
  .bl_timeline_article::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #336AC7;
    position: absolute;
    left: -8px;
    top: 12px;
    border-radius: 100%;
  }
}
.bl_timeline_month {
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .bl_timeline_month {
    font-size: 2rem;
    line-height: 1;
  }
}
.bl_timeline_text {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .bl_timeline_text {
    margin-bottom: 10px;
  }
}

/*------------------------------------------------------------------------
	アコーディオン
------------------------------------------------------------------------*/
.bl_whiteBox {
  background: #fff;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
.el_pageTitle + .bl_whiteBox {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .bl_whiteBox {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
.bl_whiteBox_caution {
  margin-bottom: 20px;
  background: #f0f5ff;
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .bl_whiteBox_caution {
    padding: 20px 40px;
  }
}
.bl_whiteBox_caution_text a {
  color: #0045b9;
  text-decoration: underline;
}

/*------------------------------------------------------------------------
	アコーディオン
------------------------------------------------------------------------*/
.bl_submenu_item {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 0.4s;
}
.bl_submenu_item.is_active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .bl_submenu [data-id=member] .el_submenu_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*------------------------------------------------------------------------
	フォーム
------------------------------------------------------------------------*/
.bl_form_errors {
  font-weight: 600;
  color: #ff5e88;
}
.bl_form_table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px dotted #cccccc;
}
.bl_form_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .bl_form_row {
    flex-direction: row;
    gap: 5%;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.bl_form_head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_form_head {
    font-size: 1.5rem;
    justify-content: space-between;
    width: max(230px, 30%);
    gap: 10px;
    padding-top: 10px;
  }
}
.bl_form_required {
  font-size: 1.2rem;
  color: #fff;
  background: #0045b9;
  padding: 0 0.6em;
  border-radius: 2em;
  line-height: 1.8;
}
.bl_form_required.is_noRequired {
  background: #cccccc;
}
.bl_form_body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_form_body {
    width: auto;
    flex: 1;
  }
}
.bl_form_input, .bl_form_textarea, .bl_form_select {
  width: 100%;
  padding: 15px 20px;
  background: #e3ecff;
  border-radius: 0.5em;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}
.bl_form_input:hover, .bl_form_textarea:hover, .bl_form_select:hover {
  cursor: text;
  background: #f0f5ff;
}
.bl_form_input.is_error, .bl_form_textarea.is_error, .bl_form_select.is_error {
  background: #ffd1dd;
}
.bl_form_input[type=number], .bl_form_textarea[type=number], .bl_form_select[type=number] {
  padding: 5px 10px;
}
.bl_form_input.is_small {
  max-width: 280px;
}
.bl_form_input.is_middle {
  max-width: 400px;
}
.bl_form_radioWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  padding-top: 4px;
}
.bl_form_radio {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
@media screen and (min-width: 768px) {
  .bl_form_radio {
    gap: 0.5em;
  }
}
.bl_form_radio:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .bl_form_radio input[type=radio] {
    transform: scale(1.2) translateY(1px);
  }
}
.bl_form_link {
  font-size: 1.2rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .bl_form_link {
    font-size: 1.4rem;
  }
}
.bl_form_btnarea {
  padding-top: 30px;
  border-top: 1px dotted #cccccc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_form_btnarea {
    flex-direction: row;
    gap: 20px;
  }
}
.bl_form_btnarea.is_column {
  flex-direction: column;
}
.bl_form_btnarea.is_noborder {
  border-top: none;
}
.bl_form.is_check .bl_form_table {
  gap: 5px;
}
.bl_form.is_check .bl_form_required {
  display: none;
}
.bl_form.is_check .bl_form_row {
  gap: 0;
}
.bl_form.is_check .bl_form_head {
  color: #808080;
  font-weight: normal;
}
.bl_form.is_check .bl_form_body {
  font-weight: 600;
}
.bl_form.is_check .bl_form_input,
.bl_form.is_check .bl_form_textarea {
  background: #EEE;
}
.bl_form.is_check .bl_form_input:hover,
.bl_form.is_check .bl_form_textarea:hover {
  background: #EEE;
}
.bl_form.is_check .bl_form_select_confirm,
.bl_form.is_check .bl_form_radio_confirm {
  width: 100%;
  padding: 15px 20px;
  background: #EEE;
  border-radius: 0.5em;
  margin-bottom: 5px;
}
.bl_form.is_check .bl_form_select_confirm:last-of-type,
.bl_form.is_check .bl_form_radio_confirm:last-of-type {
  margin-bottom: 0;
}

/*------------------------------------------------------------------------
	備考
------------------------------------------------------------------------*/
.bl_info {
  margin-top: 40px;
  background: #f5f3f7;
  padding: 20px 4% 18px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .bl_info {
    padding: 40px 6% 47px;
  }
}
.bl_info_title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em;
  color: #0045b9;
  border-bottom: 1px solid #0045b9;
  padding-bottom: 0.6em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_info_title {
    font-size: 1.7rem;
    text-align: left;
  }
}
.bl_info_list {
  margin: 1em 0 1em 1.5em;
}
.bl_info_list li {
  list-style-type: none;
  counter-increment: item;
}
.bl_info_list li:before {
  content: "(" counter(item) ")";
  display: inline-block;
  margin-left: -1.5em;
  width: 1.5em;
}
.bl_info_mail {
  color: #006ab9;
  background: #fff;
  padding: 0 0.5em 0.2em;
  border-radius: 4px;
  margin-right: 0.1em;
}
.bl_info_btn {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

/*------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------*/
.el_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-width: 178px;
  height: 51px;
  padding: 0 28px;
  font-size: 1.4rem;
  border-radius: 100vmax;
  color: #333;
  background-color: #fff;
  box-shadow: 0.4px 0.4px 3px rgba(19, 51, 109, 0.2);
}
.el_btn::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(135deg);
  content: "";
}
.el_btn.is_middle {
  min-width: 208px;
}
.el_btn.is_small {
  min-width: 126px;
  height: 30px;
  padding: 0 15px;
  font-size: 1.2rem;
  box-shadow: none;
  border: 1px solid #e6e6e6;
}
.el_btn.is_small::after {
  width: 1em;
  height: 1em;
  font-size: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(135deg);
}
.el_btn.is_member {
  justify-content: start;
  gap: 7px;
  min-width: 147px;
  height: 41px;
  padding: 0 15px;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(to right, #158cff, #0045b9);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .el_btn.is_member {
    margin-bottom: 0;
  }
}
.el_btn.is_member::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_member.svg") no-repeat border-box center/cover;
}
.el_btn.is_member::after {
  content: none;
}
.el_btn.is_login {
  min-width: 130px;
  justify-content: center;
}
.el_btn.is_login::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../img/common/icon_login.svg") no-repeat border-box center/cover;
}
.el_btn.is_login::after {
  content: none;
}
.el_btn.is_color {
  color: #fff;
  background: #0045b9;
  transition: opacity 0.3s;
}
.el_btn.is_color::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #fff;
  transform: rotate(135deg);
}
.el_btn.is_color:hover {
  opacity: 0.7;
}
.el_btn.is_submit {
  color: #fff;
  background: linear-gradient(to right, #158cff, #0045b9);
  transition: opacity 0.3s;
  min-width: min(100%, 300px);
  gap: 0;
}
.el_btn.is_submit span {
  flex: 1;
  display: flex;
  justify-content: center;
}
.el_btn.is_submit::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #fff;
  transform: rotate(135deg);
}
.el_btn.is_submit:hover {
  opacity: 0.7;
}
.el_btn.is_return {
  background: #f0f5ff;
  min-width: min(100%, 300px);
}
.el_btn.is_return span {
  flex: 1;
  display: flex;
  justify-content: center;
}
.el_btn.is_return::before {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-45deg);
  content: "";
}
.el_btn.is_return::after {
  display: none;
}

/*------------------------------------------------------------------------
	コピーライト
------------------------------------------------------------------------*/
.el_copyright {
  display: block;
  margin-top: 30px;
  font-size: 1.2rem;
  text-align: center;
}

/*------------------------------------------------------------------------
    TOPに戻る
------------------------------------------------------------------------*/
.el_gotop {
  position: fixed;
  inset: auto 20px 20px auto;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  width: 1em;
  height: 1em;
  font-size: 50px;
  background-color: #0045b9;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .el_gotop {
    inset: auto 50px 50px auto;
    font-size: 60px;
  }
}
.el_gotop.is_show {
  visibility: visible;
  opacity: 1;
}
.el_gotop.is_show:hover {
  opacity: 0.7;
}
.el_gotop::before {
  width: 1em;
  height: 1em;
  font-size: 12px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 4px;
  border-color: #fff;
  transform: rotate(45deg);
  content: "";
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .el_gotop::before {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------
	ロゴ
------------------------------------------------------------------------*/
.el_logo a {
  display: inline-block;
}
.el_logo img {
  width: 180px;
}
@media screen and (min-width: 1320px) {
  .el_logo img {
    width: 290px;
  }
}

/*------------------------------------------------------------------------
	ハンバーガーアイコン
------------------------------------------------------------------------*/
.el_menubar {
  position: relative;
  display: block;
  width: 39px;
  height: 39px;
}
.el_menubar span {
  position: absolute;
  inset: auto 0;
  display: block;
  margin: auto;
  height: 2px;
  background-color: #333;
  transition: all 0.4s;
}
.el_menubar span:nth-of-type(1) {
  top: 7px;
}
.el_menubar span:nth-of-type(2) {
  inset: 0;
}
.el_menubar span:nth-of-type(3) {
  bottom: 7px;
}
.el_menubar.is_active span:nth-of-type(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: -45deg;
}
.el_menubar.is_active span:nth-of-type(2) {
  opacity: 0;
}
.el_menubar.is_active span:nth-of-type(3) {
  bottom: 50%;
  translate: 0 50%;
  rotate: 45deg;
}

/*------------------------------------------------------------------------
	下層ページタイトル
------------------------------------------------------------------------*/
.el_pageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .el_pageTitle {
    font-size: 2.1rem;
  }
}
.el_pageTitle::before, .el_pageTitle::after {
  content: "";
  display: block;
  width: 3px;
  height: 30px;
  background: rgba(0, 106, 185, 0.2);
}
@media screen and (min-width: 768px) {
  .el_pageTitle::before, .el_pageTitle::after {
    height: 36px;
  }
}
.el_pageTitle::before {
  margin-right: 14px;
}
.el_pageTitle::after {
  margin-left: 14px;
}

/*------------------------------------------------------------------------
	PDF
------------------------------------------------------------------------*/
.el_pdf {
  display: flex;
  place-items: center;
  width: fit-content;
  gap: 6px;
  padding: 4px 12px 4px 13px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .el_pdf {
    font-size: 1.3rem;
  }
}
.el_pdf.is_doc::before {
  background: url(../img/common/icon_doc.svg) no-repeat center center/contain;
}
.el_pdf.is_zip::before {
  background: url(../img/common/icon_zip.svg) no-repeat center center/contain;
}
.el_pdf.is_xls::before {
  background: url(../img/common/icon_xls.svg) no-repeat center center/contain;
}
.el_pdf.is_other::before {
  background: url(../img/common/icon_other.svg) no-repeat center center/contain;
}
.el_pdf::before {
  display: inline-block;
  flex-shrink: 0;
  content: "";
  width: 12px;
  height: 16px;
  background: url(../img/common/icon_pdf.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .el_pdf::before {
    width: 14px;
    height: 18.6px;
  }
}
.el_pdf:where(a) {
  transition: opacity 0.3s;
  cursor: pointer;
}
.el_pdf:where(a):hover {
  opacity: 0.7;
}

/*------------------------------------------------------------------------
	タイトル
------------------------------------------------------------------------*/
.el_title_main {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #0045b9;
}
@media screen and (min-width: 768px) {
  .el_title_main {
    font-size: 5rem;
  }
}
.el_title_sub {
  display: block;
  margin-top: 8px;
  margin-left: 5px;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #333;
}
@media screen and (min-width: 768px) {
  .el_title_sub {
    font-size: 1.7rem;
  }
}

/*------------------------------------------------------------------------
	カテゴリ
------------------------------------------------------------------------*/
.el_cat {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 23px;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 100vmax;
  background-color: #00b58d;
}
@media screen and (min-width: 768px) {
  .el_cat {
    font-size: 1.3rem;
  }
}
.el_cat.is_annual_research {
  background-color: #4f9dff;
}
.el_cat.is_general_board {
  background-color: #29abe2;
}
.el_cat.is_committee {
  background-color: #00a99d;
}
.el_cat.is_other {
  background-color: #335e95;
}

/*------------------------------------------------------------------------
	ニュースリスト
------------------------------------------------------------------------*/
.el_newsList_row {
  display: block;
  padding: 14px 0;
  border-bottom: 1px dotted #dad3e1;
}
.el_newsList_head {
  display: flex;
  align-items: center;
  gap: 19px;
}
.el_newsList_date {
  flex-shrink: 0;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #808080;
}
@media screen and (min-width: 768px) {
  .el_newsList_date {
    font-size: 1.3rem;
  }
}
.el_newsList .el_cat {
  flex-shrink: 0;
}
.el_newsList_title {
  margin-top: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.2666666667;
}
@media screen and (min-width: 768px) {
  .el_newsList_title {
    margin-top: 4px;
    font-size: 1.5rem;
  }
}
.el_newsList_title a[target=_blank] {
  display: flex;
  align-items: center;
  gap: 5px;
}
.el_newsList_title a[target=_blank]::after {
  content: "";
  width: 1em;
  height: 0.65em;
  background: url("../img/common/icon_tab.svg") no-repeat border-box center/cover;
}
@media screen and (min-width: 768px) {
  .el_newsList.is_flex .el_newsList_row {
    display: flex;
    align-items: center;
    gap: 19px;
  }
}
@media screen and (min-width: 768px) {
  .el_newsList.is_flex .el_newsList_date {
    margin-top: 2px;
  }
}
@media screen and (min-width: 768px) {
  .el_newsList.is_flex .el_newsList_title {
    margin-top: 0;
  }
}

/*------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .js_accordion_submenu_body_pc {
    display: none;
  }
}

.js_accordion_submenu_body {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 0.4s;
}
.js_accordion_submenu_body.is_active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .js_accordion_submenu_body {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .el_submenu {
    margin-top: 11px;
  }
}
@media screen and (min-width: 992px) {
  .el_submenu_inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px dotted #dad3e1;
    padding: 25px 15px 25px 0;
  }
}
@media screen and (min-width: 1320px) {
  .el_submenu_inner {
    gap: 70px;
  }
}
.el_submenu_title {
  font-size: 1.8rem;
  color: #0045b9;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .el_submenu_title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1320px) {
  .el_submenu_title {
    font-size: 2.6rem;
  }
}
.el_submenu_title a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.el_submenu_title a:after {
  width: 1em;
  height: 1em;
  font-size: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #6fa4ef;
  transform: rotate(135deg);
  content: "";
  flex: 0 0 auto;
  margin-top: 3px;
}
@media screen and (min-width: 992px) {
  .el_submenu_title a:after {
    width: 1em;
    height: 1em;
    font-size: 8px;
    border-top-style: solid;
    border-left-style: solid;
    border-width: 2px;
    border-color: #0045b9;
    transform: rotate(135deg);
  }
}
@media screen and (min-width: 992px) {
  .el_submenu_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-grow: 1;
  }
}
.el_submenu_item {
  background-color: rgba(111, 164, 239, 0.1);
}
@media screen and (min-width: 992px) {
  .el_submenu_item {
    background-color: transparent;
  }
}
.el_submenu_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 4%;
  font-size: 1.4rem;
  border-bottom: 1px dotted #dad3e1;
}
.el_submenu_item a:last-child {
  border-bottom: 1px border #dad3e1;
}
@media screen and (min-width: 992px) {
  .el_submenu_item a:last-child {
    border-bottom: 1px dotted #dad3e1;
  }
}
@media screen and (min-width: 992px) {
  .el_submenu_item a {
    font-size: 1.4rem;
    padding: 0;
  }
}
@media screen and (min-width: 1320px) {
  .el_submenu_item a {
    font-size: 1.6rem;
  }
}
.el_submenu_item a::after {
  width: 1em;
  height: 1em;
  font-size: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #6fa4ef;
  transform: rotate(135deg);
  content: "";
  flex: 0 0 auto;
  margin-right: 2px;
}
@media screen and (min-width: 992px) {
  .el_submenu_item a::after {
    width: 1em;
    height: 1em;
    font-size: 8px;
    border-top-style: solid;
    border-left-style: solid;
    border-width: 2px;
    border-color: #0045b9;
    transform: rotate(135deg);
  }
}

/*------------------------------------------------------------------------
	タイトル
------------------------------------------------------------------------*/
.el_keywordSearch {
  display: flex;
  gap: 5px;
}
.el_keywordSearch input {
  border: 1px solid #333;
  padding: 15px 15px;
  width: 340px;
  border-radius: 3px;
}
.el_keywordSearch button {
  border: 2px solid #0045b9;
  padding: 12px 15px;
  width: 100px;
  font-weight: bold;
  color: #fff;
  background-color: #0045b9;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.el_keywordSearch button:hover {
  background-color: #fff;
  color: #0045b9;
}

/*------------------------------------------------------------------------
	タブ切り替えボタン
------------------------------------------------------------------------*/
.el_tabBtns {
  overflow-x: scroll;
  overflow-y: hidden !important;
}
@media screen and (max-width: 767px) {
  .el_tabBtns {
    padding-left: calc((100% - 92%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .el_tabBtns {
    overflow-x: visible;
  }
}
.el_tabBtns_list {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 640px;
}
.el_tabBtns_item {
  cursor: pointer;
  padding: 10px 10px;
  width: 240px;
  border-bottom: 4px solid #0045b9;
  transition: all 0.3s;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
}
.el_tabBtns_item.is_active, .el_tabBtns_item:hover {
  background: rgba(79, 157, 255, 0.1);
  border-radius: 1.4px;
}
.el_tabBtns_item.is_active {
  pointer-events: none;
}
.el_tabBtns .scroll-hint-icon {
  top: 50%;
  transform: translateY(-50%);
}

/*------------------------------------------------------------------------
	ページネーション
------------------------------------------------------------------------*/
.el_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.el_pagination.is_mt_l {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .el_pagination.is_mt_l {
    margin-top: 60px;
  }
}
.el_pagination_item .page-numbers {
  width: min(6.6666666667vw, 35px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}
.el_pagination_item .page-numbers:not(.dots) {
  align-items: center;
  border: 1px solid #dad3e1;
}
.el_pagination_item .page-numbers:not(.dots):hover, .el_pagination_item .page-numbers:not(.dots).current {
  color: #fff;
  background-color: #0045b9;
  background-color: #0045b9;
}
.el_pagination_item .page-numbers.dots {
  align-items: end;
}

/*------------------------------------------------------------------------
	記事ヘッド
------------------------------------------------------------------------*/
.el_articleHead {
  padding-bottom: 10px;
  border-bottom: 1px solid #dad3e1;
}
@media screen and (min-width: 768px) {
  .el_articleHead {
    padding-bottom: 15px;
  }
}
.el_articleHead_title {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .el_articleHead_title {
    font-size: 3.5rem;
  }
}
.el_articleHead_data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  gap: 0 20px;
}
@media screen and (min-width: 768px) {
  .el_articleHead_data {
    margin-top: 30px;
  }
}
.el_articleHead_date {
  color: #808080;
}

/*------------------------------------------------------------------------
	wysiwyg
------------------------------------------------------------------------*/
.el_wysiwyg {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .el_wysiwyg {
    padding: 50px 0;
  }
}
.el_wysiwyg h1, .el_wysiwyg h2, .el_wysiwyg h3, .el_wysiwyg h4 {
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.3;
}
.el_wysiwyg h1 {
  font-size: 3.2rem;
}
.el_wysiwyg h2 {
  font-size: 2.4rem;
}
.el_wysiwyg h3 {
  font-size: 2rem;
}
.el_wysiwyg p, .el_wysiwyg li, .el_wysiwyg th, .el_wysiwyg td {
  line-height: 1.8947368421;
}
.el_wysiwyg p {
  margin-top: 20px;
}
.el_wysiwyg strong {
  font-weight: bold;
}
.el_wysiwyg ul, .el_wysiwyg ol {
  margin: 20px 0 0;
  padding-inline-start: 40px;
}
.el_wysiwyg ul li {
  list-style-type: disc;
}
.el_wysiwyg ol li {
  list-style-type: decimal;
}
.el_wysiwyg a {
  display: inline-block;
  color: #0045b9;
  text-decoration: underline;
}
.el_wysiwyg table {
  margin-top: 20px;
  border: 1px solid #dad3e1;
}
.el_wysiwyg table th, .el_wysiwyg table td {
  padding: 1em;
  vertical-align: top;
  border: 1px solid #dad3e1;
}
.el_wysiwyg table th {
  font-weight: bold;
}
.el_wysiwyg img {
  display: block;
  height: auto;
  margin-top: 20px;
}
.el_wysiwyg img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.el_wysiwyg img.alignright {
  margin-left: auto;
}
.el_wysiwyg .wp-caption {
  max-width: 100%;
}
.el_wysiwyg .wp-caption.aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.el_wysiwyg .wp-caption.alignright {
  margin-left: auto;
}
.el_wysiwyg .gallery-item {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg .gallery-item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .el_wysiwyg .gallery-item {
    padding: 0 5px;
  }
}
.el_wysiwyg .gallery-item img {
  border: none;
}

/*------------------------------------------------------------------------
	アコーディオン
------------------------------------------------------------------------*/
.js_accordion_body {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 0.4s;
}
.js_accordion_body.is_active {
  visibility: visible;
  opacity: 1;
}

/*------------------------------------------------------------------------
	ポップアップ
------------------------------------------------------------------------*/
.js_popup_body {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: fixed;
  inset: 0;
  z-index: 1001;
}
.js_popup_body.is_active {
  visibility: visible;
  opacity: 1;
}
.js_popup_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.9);
}
.js_popup_close {
  display: block;
  width: 30px;
  height: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.js_popup_close::before, .js_popup_close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #fff;
}
.js_popup_close::before {
  transform: rotate(45deg);
}
.js_popup_close::after {
  transform: rotate(135deg);
}
.js_popup_display {
  position: relative;
  width: 100%;
  height: 100%;
}
.js_popup_display:not(.is_scroll) {
  display: grid;
  place-content: center;
}
.js_popup_display.is_scroll {
  overflow-y: scroll;
}
.js_popup_contents {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  max-width: 92%;
  color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .js_popup_contents {
    max-width: 1100px;
  }
}

/**************************************************************************
    タブ切り替え
**************************************************************************/
.js_tab_trigger.is_active {
  pointer-events: none;
}
.js_tab_target {
  display: none;
}
.js_tab_target.is_active {
  display: block;
}

/**************************************************************************
    トップページ
**************************************************************************/
#top {
  /*------------------------------------------------------------------------
      MV
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      about
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      スライダー
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      お知らせ
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      サブメニュー
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      会員メニュー
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      セクション
  ------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------
      サブセクション
  ------------------------------------------------------------------------*/
}
#top .un_mv {
  background: url("../img/top/mv_bg.webp") no-repeat border-box center/cover;
  overflow: hidden;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #top .un_mv {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 992px) {
  #top .un_mv {
    position: relative;
    padding-bottom: 0;
  }
}
#top .un_mv .ly_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 70px;
  height: 412px;
}
@media screen and (min-width: 768px) {
  #top .un_mv .ly_inner {
    padding-top: 120px;
  }
}
@media screen and (min-width: 992px) {
  #top .un_mv .ly_inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#top .un_mv_title {
  margin-top: 30px;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.512195122;
}
@media screen and (min-width: 768px) {
  #top .un_mv_title {
    font-size: 4.1rem;
  }
}
@media screen and (min-width: 992px) {
  #top .un_mv_title {
    margin-top: -19px;
  }
}
#top .un_about_title {
  position: relative;
  font-family: "EB Garamond", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0;
  color: rgba(0, 69, 185, 0.4);
}
@media screen and (min-width: 768px) {
  #top .un_about_title {
    font-size: 1.7rem;
  }
}
#top .un_about_title::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 9999px;
  height: 1px;
  background: rgba(0, 69, 185, 0.4);
}
#top .un_about_text {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.9333333333;
}
@media screen and (min-width: 768px) {
  #top .un_about_text {
    font-size: 1.5rem;
  }
}
#top .un_slider {
  height: 95vw;
  background-image: linear-gradient(to right, #338BFF, #0150BA);
}
@media screen and (min-width: 768px) {
  #top .un_slider {
    height: 348px;
  }
}
@media screen and (min-width: 992px) {
  #top .un_slider {
    height: 208px;
  }
}
#top .un_slider .swiper {
  position: relative;
  translate: 0 -47px;
  padding: 0 calc((100% - 92%) / 2);
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper {
    padding: 0;
  }
}
#top .un_slider .swiper-slide {
  position: relative;
  width: fit-content;
}
#top .un_slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 4px;
}
#top .un_slider .swiper-slide a {
  overflow: hidden;
  display: block;
  border-radius: 4px;
  width: 345px;
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper-slide a {
    width: fit-content;
  }
}
#top .un_slider .swiper-button-prev,
#top .un_slider .swiper-button-next {
  width: 1em;
  height: 1em;
  font-size: 30px;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper-button-prev,
  #top .un_slider .swiper-button-next {
    top: 113px;
    font-size: 40px;
  }
}
#top .un_slider .swiper-button-prev::before,
#top .un_slider .swiper-button-next::before {
  width: 1em;
  height: 1em;
  font-size: 15px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 3px;
  border-color: #fff;
  transform: rotate(135deg);
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #top .un_slider .swiper-button-prev::before,
  #top .un_slider .swiper-button-next::before {
    font-size: 20px;
  }
}
#top .un_slider .swiper-button-prev::after,
#top .un_slider .swiper-button-next::after {
  content: none;
}
#top .un_slider .swiper-button-prev {
  left: 10px;
  rotate: -180deg;
}
@media screen and (min-width: 768px) {
  #top .un_slider .swiper-button-prev {
    left: calc(50% - 172.5px - 25px);
  }
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper-button-prev {
    left: calc(50% - 387px - 35px);
  }
}
#top .un_slider .swiper-button-next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  #top .un_slider .swiper-button-next {
    right: calc(50% - 172.5px - 25px);
  }
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper-button-next {
    right: calc(50% - 387px - 35px);
  }
}
#top .un_slider .swiper-pagination {
  position: absolute;
  inset: auto 30px 0 auto;
  left: auto;
  display: flex;
  gap: 2px;
  width: auto;
}
@media screen and (min-width: 768px) {
  #top .un_slider .swiper-pagination {
    right: calc(50% - 172.5px + 20px);
  }
}
@media screen and (min-width: 992px) {
  #top .un_slider .swiper-pagination {
    right: calc(50% - 387px + 20px);
  }
}
#top .un_slider .swiper-pagination-bullet {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 0;
  opacity: 1;
  background-color: transparent;
}
#top .un_slider .swiper-pagination-bullet::before, #top .un_slider .swiper-pagination-bullet::after {
  width: 100%;
  inset: 0 auto 0 0;
  margin: auto;
  background-color: #6b93d6;
}
#top .un_slider .swiper-pagination-bullet::before {
  content: "";
  height: 2px;
  position: absolute;
}
#top .un_slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  animation: stretchWidth 5.7s linear backwards;
}
@keyframes stretchWidth {
  100% {
    width: 100%;
  }
}
#top .un_news {
  padding: 30px 0 45px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #top .un_news .ly_inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr auto;
  }
}
#top .un_news_contents {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  #top .un_news_contents {
    grid-row: 1/3;
    margin-top: 8px;
  }
}
#top .un_news_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
#top .un_news_tab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 38px;
  padding: 0 16px;
  font-size: 1.4rem;
  background-color: #f5f3f7;
  border-radius: 3px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #top .un_news_tab_item {
    width: 134px;
  }
}
#top .un_news_tab_item.is_active {
  color: #fff;
  background-color: #0045b9;
}
#top .un_news .el_newsList {
  overflow-y: scroll;
  height: 295px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  #top .un_news .el_newsList {
    height: 300px;
  }
}
@media screen and (min-width: 1320px) {
  #top .un_news .el_newsList {
    height: 285px;
  }
}
@media screen and (min-width: 1320px) {
  #top .un_news .el_newsList_row {
    display: flex;
    gap: 17px;
  }
}
#top .un_news .el_btn {
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  #top .un_news .el_btn {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-inline: 0;
  }
}
#top .un_news.is_news .el_cat.general {
  background-color: #00b58d;
}
#top .un_news.is_news .el_cat.is_member {
  background-color: #ff5e88;
}
#top .un_news.is_event {
  padding: 43px 0 49px;
  background-color: #f0f5ff;
}
#top .un_news.is_event .un_news_tab_item {
  width: fit-content;
  background-color: #fff;
}
#top .un_news.is_event .un_news_tab_item.is_active {
  background-color: #0045b9;
}
#top .un_submenu {
  padding: 55px 0 46px;
  background-color: #fff;
}
#top .un_submenu_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  #top .un_submenu_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  #top .un_submenu_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
#top .un_submenu_item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-right: 1px dotted #dad3e1;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  #top .un_submenu_item a {
    gap: 10px;
    height: 130px;
    padding: 22px 10px 0;
  }
}
#top .un_submenu_item a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 1em;
  height: 1em;
  font-size: 11px;
  background-color: #6fa4ef;
}
#top .un_submenu_item_text {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: -8px;
}
#top .un_submenu_item_icon {
  width: fit-content;
}
#top .un_member {
  padding: 64px 0 50px;
  background: url("../img/top/member_bg.webp") no-repeat border-box center/cover;
}
@media screen and (min-width: 992px) {
  #top .un_member .ly_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (min-width: 992px) {
  #top .un_member_contents {
    width: calc(100% - 343px);
    max-width: 685px;
  }
}
#top .un_member_text {
  margin-top: 26px;
}
#top .un_member_btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #top .un_member_btn-list {
    justify-content: flex-start;
  }
}
#top .un_member_nav {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #top .un_member_nav {
    width: 303px;
    margin-top: 0;
  }
}
#top .un_member_nav_list {
  max-width: 400px;
  margin-inline: auto;
  padding: 22px 27px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 7px rgba(19, 51, 109, 0.1);
}
#top .un_member_nav_item:not(:first-of-type) {
  margin-top: 13px;
}
#top .un_member_nav_item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
#top .un_member_nav_item a::before {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(135deg);
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
}
#top .un_member_nav_icon {
  width: 30px;
}
#top .un_section {
  padding: 60px 0 53px;
  background-color: #fff;
}
#top .un_section .ly_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 992px) {
  #top .un_section .ly_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
#top .un_subsection_img {
  overflow: hidden;
  border-radius: 4px;
}
#top .un_subsection_img img {
  width: 100%;
}
#top .un_subsection_contents {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  #top .un_subsection_contents {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto;
  }
}
@media screen and (min-width: 992px) {
  #top .un_subsection_contents {
    display: block;
  }
}
@media screen and (min-width: 1320px) {
  #top .un_subsection_contents {
    display: grid;
    padding-left: 17px;
  }
}
#top .un_subsection .el_title_main {
  letter-spacing: -0.02em;
}
#top .un_subsection_text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #top .un_subsection_text {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  #top .un_subsection_text {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1320px) {
  #top .un_subsection_text {
    margin-top: -5px;
  }
}
#top .un_subsection .el_btn {
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #top .un_subsection .el_btn {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 11px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  #top .un_subsection .el_btn + .el_btn {
    grid-row: 3/4;
  }
}

/**************************************************************************
    協会について 共通
**************************************************************************/
/**************************************************************************
    協会について
**************************************************************************/
#about.top .un_aboutBox_title {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #about.top .un_aboutBox_title {
    margin-bottom: 40px;
    font-size: 4rem;
    mline-height: 1;
  }
}
#about.top .un_aboutBox_title span {
  color: #0045b9;
}

/**************************************************************************
    会長挨拶
**************************************************************************/
#about.president .un_card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #about.president .un_card {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    background-color: #F8F8F8;
  }
}
#about.president .un_card_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #about.president .un_card_body {
    padding-left: 50px;
  }
}
#about.president .un_card_title {
  margin-bottom: 15px;
  font-size: 2.3rem;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #about.president .un_card_title {
    margin-bottom: 20px;
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  #about.president .un_card_name {
    font-size: 1.8rem;
  }
}
#about.president .un_card_img {
  flex: 0 0 auto;
  margin-inline: auto;
  width: 70%;
}
@media screen and (min-width: 768px) {
  #about.president .un_card_img {
    flex: unset;
    margin-inline: initial;
    width: 220px;
  }
}
#about.president .un_message {
  margin-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #about.president .un_message {
    margin-top: 50px;
    padding-bottom: 50px;
  }
}
#about.president .un_unit {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #about.president .un_unit {
    flex-direction: row;
    gap: 60px;
  }
}
#about.president .un_unit_img {
  flex: 0 0 auto;
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #about.president .un_unit_img {
    width: 350px;
  }
}

/**************************************************************************
    沿革
**************************************************************************/
#about.history .un_box01 {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.history .un_box01 {
    margin-bottom: 100px;
  }
}
#about.history .un_box02 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #about.history .un_box02 {
    margin-top: 40px;
  }
}

/**************************************************************************
    役員
**************************************************************************/
@media screen and (min-width: 768px) {
  #about.executives .bl_tableBlock.is_normal table th {
    width: 120px;
  }
}

/**************************************************************************
    賛助会員
**************************************************************************/
/**************************************************************************
    役員
**************************************************************************/
#about.structure .un_box01 {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.structure .un_box01 {
    margin-bottom: 100px;
  }
}
#about.structure .un_box01_chart {
  width: min(720px, 100%);
  margin: 0 auto;
}
#about.structure .un_box02 {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.structure .un_box02 {
    margin-top: 40px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  #about.structure .un_box02_table th {
    width: calc(5em + 33px);
  }
}
#about.structure .un_box03 {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.structure .un_box03 {
    margin-top: 40px;
    margin-bottom: 100px;
  }
}
#about.structure .un_box03_table thead th {
  background: rgba(204, 204, 204, 0.2);
}
#about.structure .un_box03_table tbody th, #about.structure .un_box03_table tbody td {
  background: none;
}
#about.structure .un_box03_table tbody td:not(.un_box03_tdHalf) {
  text-align: center;
}
#about.structure .un_box03_thHalf {
  border-right: 1px dotted #cccccc;
}
#about.structure .un_box03_tdHalf {
  border-right: 2px solid #cccccc;
}
#about.structure .un_box03_date {
  text-align: right;
  margin-bottom: 1em;
}
#about.structure .un_box03_total {
  margin-top: 1em;
  text-align: right;
}
#about.structure .un_box04 {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.structure .un_box04 {
    margin-top: 40px;
  }
}
#about.structure .un_box04_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
#about.structure .un_box04_list li {
  position: relative;
  padding-left: 0.9em;
  line-height: 1.8;
}
#about.structure .un_box04_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.4em;
  height: 0.4em;
  background-color: #0045b9;
  border-radius: 50%;
}

/**************************************************************************
    事務局
**************************************************************************/
#about.office .un_box01 {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about.office .un_box01 {
    margin-bottom: 100px;
  }
}
#about.office .un_box02 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #about.office .un_box02 {
    margin-top: 40px;
    margin-bottom: 100px;
  }
}
#about.office .un_box03 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #about.office .un_box03 {
    margin-top: 40px;
  }
}
#about.office .un_tableBlock table th {
  width: 20%;
}
#about.office .un_tableBlock table td {
  width: 80%;
}
#about.office .un_tableBlock table td .is_link {
  color: #0045b9;
  text-decoration: underline;
}
#about.office .un_access iframe {
  margin-top: 10px;
  width: 100%;
}
#about.office .bl_tableNormal th {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #about.office .bl_tableNormal th {
    width: 30%;
  }
}

/**************************************************************************
    出版事業
**************************************************************************/
#about.media .un_tableBlock table {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  #about.media .un_tableBlock table tr {
    display: grid;
    grid-template-columns: 20% 80%;
  }
}
#about.media .un_tableBlock table td:nth-of-type(1) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  #about.media .un_tableBlock table td:nth-of-type(1) {
    padding: 5px 14px;
    background-color: #f5f3f7;
  }
  #about.media .un_tableBlock table td:nth-of-type(1)::after {
    width: 1px;
  }
}
#about.media .un_tableBlock table td:nth-of-type(2) {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #about.media .un_tableBlock table td:nth-of-type(2) {
    display: block;
    width: 100% !important;
    grid-column: span 2;
  }
}

/**************************************************************************
    協会賞
**************************************************************************/
@media screen and (min-width: 768px) {
  #about.awards .un_tableBlock table th {
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  #about.awards .un_tableBlock table td + td {
    width: 35%;
  }
}

/**************************************************************************
    支部・委員会・研究会
**************************************************************************/
#about.branches_committees .un_tableBlock:not(:last-of-type) {
  margin-bottom: 40px;
}
#about.branches_committees .un_tableBlock table thead th:first-child {
  width: 35%;
}

/**************************************************************************
    入会・変更届
**************************************************************************/
#about.membership .bl_col2Content_main {
  min-width: 0;
}
#about.membership .bl_col2Content_main .bl_tableNormal.is_scroll {
  width: 100%;
  overflow-x: auto;
}
#about.membership .bl_col2Content_main .bl_tableNormal.is_scroll table {
  min-width: 600px;
  width: max-content;
}
@media screen and (min-width: 768px) {
  #about.membership .bl_col2Content_main .bl_tableNormal.is_scroll table {
    width: auto;
  }
}
#about.membership .un_section:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  #about.membership .un_section:not(:first-of-type) {
    margin-top: 80px;
  }
}
#about.membership .un_section_first {
  margin-bottom: 20px;
}
#about.membership .un_section_first.is_check {
  color: #ff5e88;
  text-align: center;
}
#about.membership .un_section_formWrap:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #about.membership .un_section_formWrap:not(:first-of-type) {
    margin-top: 46px;
  }
}
#about.membership .un_section_title {
  font-size: 1.7rem;
  font-weight: 600;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  #about.membership .un_section_title {
    font-size: 2rem;
  }
}
#about.membership .un_section table thead tr th:nth-of-type(1) {
  width: 22%;
}
#about.membership .un_section table thead tr th:nth-of-type(4) {
  width: 16%;
}

/**************************************************************************
    定款・規程等　共通
**************************************************************************/
/**************************************************************************
    定款
**************************************************************************/
/**************************************************************************
    行事　共通
**************************************************************************/
/**************************************************************************
    行事
**************************************************************************/
#events .el_tabBtns {
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #events .el_tabBtns {
    padding: 0;
    margin: 70px auto;
  }
}
#events .el_tabBtns .el_tabBtns_item.is_annual_research {
  border-color: #4f9dff;
}
#events .el_tabBtns .el_tabBtns_item.is_general_board {
  border-color: #29abe2;
}
#events .el_tabBtns .el_tabBtns_item.is_committee {
  border-color: #00a99d;
}
#events .el_tabBtns .el_tabBtns_item.is_other {
  border-color: #335e95;
}
#events .un_sec {
  padding: 55px 0 86px;
  background: #f0f5ff;
}
#events .un_sec_content {
  display: none;
}
#events .un_sec_content:last-of-type {
  padding-bottom: 86px;
}
#events .un_sec_content.is_show {
  display: block;
}
#events .un_sec_box {
  background: #fff;
  padding: 10px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #events .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#events .un_borderTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 1.7rem;
  font-weight: 500;
  color: #0045b9;
  padding: 0px 40px;
  border: 1px solid #0045b9;
  margin: 30px auto 50px;
}
@media screen and (min-width: 768px) {
  #events .un_borderTitle {
    font-size: 1.96rem;
  }
}
#events .un_btnList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 40px;
}
#events .el_pagination {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #events .el_pagination {
    margin-top: 80px;
  }
}

/**************************************************************************
    年会・研究会
**************************************************************************/
/**************************************************************************
    総会・理事会
**************************************************************************/
/**************************************************************************
    委員会
**************************************************************************/
/**************************************************************************
    その他行事
**************************************************************************/
/**************************************************************************
    会誌・出版物　共通
**************************************************************************/
#journal .un_section_first {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #journal .un_section_first {
    margin-bottom: 36px;
  }
}
#journal .un_section_first.is_check {
  color: #ff5e88;
  text-align: center;
}

/**************************************************************************
    会誌・出版物
**************************************************************************/
#journal.top .un_journalList {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  #journal.top .un_journalList {
    padding: 110px 0 140px;
  }
}
#journal.top .un_journalList_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_journalList_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 20px;
  }
}
#journal.top .un_journalList_item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_journalList_item {
    grid-template-columns: min(88px, 8vw) 1fr;
  }
}
#journal.top .un_journalList_icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #journal.top .un_journalList_icon {
    width: min(88px, 8vw);
    height: min(88px, 8vw);
  }
}
#journal.top .un_journalList_textArea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#journal.top .un_journalList_title {
  color: #0045b9;
  font-size: 2rem;
  font-weight: 350;
  padding: 0 0 10px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #journal.top .un_journalList_title {
    font-size: 2.6rem;
    padding: 1vw 0 20px;
  }
}
#journal.top .un_journalList_text {
  line-height: 2.0625;
  height: 6.1875em;
  overflow: hidden;
}
#journal.top .un_catchcopy {
  padding: 60px 0 80px;
}
#journal.top .un_catchcopy_title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 25px;
  color: #0045b9;
}
@media screen and (min-width: 768px) {
  #journal.top .un_catchcopy_title {
    font-size: 2.8rem;
  }
}
#journal.top .un_catchcopy_title span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  #journal.top .un_catchcopy_title span {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.6rem;
  }
}
#journal.top .un_catchcopy_text {
  margin-bottom: 30px;
}
#journal.top .un_catchcopy_btn {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_catchcopy_btn {
    margin-top: 30px;
  }
}
#journal.top .un_catchcopy_search {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_catchcopy_search {
    margin-top: 30px;
  }
}
#journal.top .un_magazine {
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazine {
    margin-top: -30px;
  }
}
#journal.top .un_magazine_title {
  padding: 4px;
  border-radius: 50px;
  background: linear-gradient(-19.9923deg, #0045b9 0%, #89c8f4 100%);
  color: #fff;
  border: 4px solid #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 38px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazine_title {
    font-size: 2.1rem;
  }
}
#journal.top .un_magazine_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazine_btn {
    flex-direction: row;
    gap: 20px;
    padding-bottom: 40px;
  }
}
#journal.top .un_magazineList {
  padding-bottom: 40px;
}
#journal.top .un_magazineList_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazineList_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
  }
}
#journal.top .un_magazineList_item {
  transition: opacity 0.3s ease;
}
#journal.top .un_magazineList_item:hover {
  opacity: 0.7;
  cursor: pointer;
}
#journal.top .un_magazineList_img {
  position: relative;
  border: 1px solid #e6e6e6;
  padding: 12px;
  overflow: hidden;
}
#journal.top .un_magazineList_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  z-index: 1;
  background: url(../img/journal/icon_search.svg) no-repeat center center/contain;
}
#journal.top .un_magazineList_img img {
  display: block;
  margin: 0 auto;
  max-height: 200px;
  width: auto;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazineList_img img {
    max-height: 251px;
  }
}
#journal.top .un_magazineList_title {
  display: flex;
  place-items: center;
  font-size: 1.5rem;
  margin-top: 6px;
  margin-left: 3px;
  gap: 7px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazineList_title {
    font-size: 1.8rem;
  }
}
#journal.top .un_magazineList_title::before {
  content: "";
  display: block;
  background: url(../img/journal/icon_arrow.svg) no-repeat center center/contain;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  #journal.top .un_magazineList_title::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
#journal.top .un_magazineList_popupImg img {
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto;
  display: block;
}

/**************************************************************************
    耐火物誌
**************************************************************************/
#journal.taikabutsushi .un_catchcopy, #journal.month .un_catchcopy {
  padding: 61px 0 80px;
}
#journal.taikabutsushi .un_catchcopy_title, #journal.month .un_catchcopy_title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 25px;
  color: #0045b9;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_catchcopy_title, #journal.month .un_catchcopy_title {
    font-size: 2.8rem;
  }
}
#journal.taikabutsushi .un_catchcopy_title span, #journal.month .un_catchcopy_title span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #333;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_catchcopy_title span, #journal.month .un_catchcopy_title span {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.6rem;
  }
}
#journal.taikabutsushi .un_catchcopy_btn, #journal.month .un_catchcopy_btn {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_catchcopy_btn, #journal.month .un_catchcopy_btn {
    margin-top: 30px;
  }
}
#journal.taikabutsushi .un_catchcopy_text a, #journal.month .un_catchcopy_text a {
  color: #0045b9;
  text-decoration: underline;
}
#journal.taikabutsushi .un_catchcopy_search, #journal.month .un_catchcopy_search {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_catchcopy_search, #journal.month .un_catchcopy_search {
    margin-top: 30px;
  }
}
#journal.taikabutsushi .un_magazine, #journal.month .un_magazine {
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazine, #journal.month .un_magazine {
    margin-top: -30px;
  }
}
#journal.taikabutsushi .un_magazine_title, #journal.month .un_magazine_title {
  padding: 4px;
  border-radius: 50px;
  background: linear-gradient(-19.9923deg, #0045b9 0%, #89c8f4 100%);
  color: #fff;
  border: 4px solid #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 38px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazine_title, #journal.month .un_magazine_title {
    font-size: 2.1rem;
  }
}
#journal.taikabutsushi .un_magazine_btn, #journal.month .un_magazine_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazine_btn, #journal.month .un_magazine_btn {
    flex-direction: row;
    gap: 20px;
    padding-bottom: 40px;
  }
}
#journal.taikabutsushi .un_magazineList, #journal.month .un_magazineList {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazineList, #journal.month .un_magazineList {
    padding-bottom: 90px;
  }
}
#journal.taikabutsushi .un_magazineList_list, #journal.month .un_magazineList_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazineList_list, #journal.month .un_magazineList_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
  }
}
#journal.taikabutsushi .un_magazineList_item, #journal.month .un_magazineList_item {
  transition: opacity 0.3s ease;
}
#journal.taikabutsushi .un_magazineList_item:hover, #journal.month .un_magazineList_item:hover {
  opacity: 0.7;
  cursor: pointer;
}
#journal.taikabutsushi .un_magazineList_img, #journal.month .un_magazineList_img {
  position: relative;
  border: 1px solid #e6e6e6;
  padding: 12px;
  overflow: hidden;
}
#journal.taikabutsushi .un_magazineList_img::after, #journal.month .un_magazineList_img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  z-index: 1;
  background: url(../img/journal/icon_search.svg) no-repeat center center/contain;
}
#journal.taikabutsushi .un_magazineList_img img, #journal.month .un_magazineList_img img {
  display: block;
  margin: 0 auto;
  height: 200px;
  width: auto;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazineList_img img, #journal.month .un_magazineList_img img {
    height: 250px;
  }
}
#journal.taikabutsushi .un_magazineList_title, #journal.month .un_magazineList_title {
  display: flex;
  place-items: center;
  font-size: 1.5rem;
  margin-top: 6px;
  margin-left: 3px;
  gap: 7px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazineList_title, #journal.month .un_magazineList_title {
    font-size: 1.8rem;
  }
}
#journal.taikabutsushi .un_magazineList_title::before, #journal.month .un_magazineList_title::before {
  content: "";
  display: block;
  background: url(../img/journal/icon_arrow.svg) no-repeat center center/contain;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_magazineList_title::before, #journal.month .un_magazineList_title::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
#journal.taikabutsushi .un_magazineList_popupImg img, #journal.month .un_magazineList_popupImg img {
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto;
  display: block;
}
#journal.taikabutsushi .un_sec, #journal.month .un_sec {
  background: #f0f5ff;
  padding: 61px 0 0;
}
#journal.taikabutsushi .un_sec:last-of-type, #journal.month .un_sec:last-of-type {
  padding-bottom: 86px;
}
#journal.taikabutsushi .un_sec_box, #journal.month .un_sec_box {
  background: #fff;
  margin-top: 25px;
  padding: 10px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #journal.taikabutsushi .un_sec_box, #journal.month .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}

/**************************************************************************
    投稿
**************************************************************************/
/**************************************************************************
    出版物
**************************************************************************/
#journal.publications .un_price {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price {
    flex-direction: row;
    gap: 60px;
  }
}
#journal.publications .un_price_img {
  width: 100%;
  order: 2;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_img {
    width: 178px;
    order: 1;
  }
}
#journal.publications .un_price_img img {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: contain;
  object-position: center;
}
#journal.publications .un_price_textWrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_textWrap {
    display: block;
    order: 2;
    flex: 1;
  }
}
#journal.publications .un_price_content {
  order: 1;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_content {
    order: 2;
  }
}
#journal.publications .un_price_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_title {
    font-size: 2rem;
    justify-content: flex-start;
  }
}
#journal.publications .un_price_title span {
  line-height: 1;
  padding: 0.4em 0.4em 0.4em 0.8em;
  background: #0045b9;
  color: #fff;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_title span {
    font-size: 1.5rem;
  }
}
#journal.publications .un_price_point {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_point {
    justify-content: flex-start;
  }
}
#journal.publications .un_price_point li {
  background: #f5f3f7;
  padding: 0.2em 0.8em;
}
#journal.publications .un_price_list {
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_list {
    padding: 0;
    margin-top: 10px;
    border-top: none;
  }
}
#journal.publications .un_price_item {
  display: grid;
  grid-template-columns: 1fr 156px;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: 1.8;
}
#journal.publications .un_price_item dt {
  text-align: right;
  flex: 1;
}
#journal.publications .un_price_item dt span {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_item dt span {
    font-size: 1.2rem;
  }
}
#journal.publications .un_price_item dd {
  text-align: right;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_item dd {
    font-size: 2rem;
  }
}
#journal.publications .un_price_item dd span {
  margin-left: 0.2em;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_item dd span {
    font-size: 1.4rem;
  }
}
#journal.publications .un_price_item.is_member {
  color: #0045b9;
  font-weight: 500;
}
#journal.publications .un_price_item.is_delivery {
  font-size: 1.2rem;
  color: #808080;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_item.is_delivery {
    grid-column: 1/-1;
    font-size: 1.4rem;
  }
}
#journal.publications .un_price_delivery {
  margin-top: 6px;
  font-size: 1.4rem;
  color: #808080;
  text-align: right;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_delivery {
    margin-top: 0px;
    font-size: 1.6rem;
  }
}
#journal.publications .un_price_annotation {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #808080;
  text-align: right;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_annotation {
    margin-top: 4px;
    font-size: 1.4rem;
  }
}
#journal.publications .un_price_description {
  order: 3;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_price_description {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px dotted #cccccc;
  }
}
#journal.publications .books_table tbody th a {
  color: #0045b9;
  text-decoration: underline;
}
#journal.publications .books_table tbody td.is_price, #journal.publications .books_table tbody td.is_memberPrice {
  text-align: right;
}
#journal.publications .books_table tbody td .is_price_old {
  font-size: 80%;
  color: #999;
}
#journal.publications .books_table tbody td .is_discount {
  color: #0045b9;
}
#journal.publications .un_toc {
  margin-top: 20px;
  padding: 20px 4%;
  background: #f5f3f7;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_toc {
    margin-top: 32px;
  }
}
#journal.publications .un_toc_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#journal.publications .un_toc_title {
  font-size: 1.6rem;
  font-weight: 600;
  width: fit-content;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 768px) {
  #journal.publications .un_toc_title {
    font-size: 1.8rem;
  }
}
#journal.publications .un_toc_list {
  list-style: none;
  margin-top: 10px;
}
#journal.publications .un_toc_list_file {
  display: inline-block;
}
#journal.publications .bl_form_btnarea {
  margin: 30px auto;
}

#journal.books .un_section:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #journal.books .un_section:not(:first-child) {
    margin-top: 70px;
  }
}
#journal.books .un_section:not(:first-of-type) {
  position: relative;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  #journal.books .un_section:not(:first-of-type) {
    margin-top: 100px;
  }
}
#journal.books .un_section:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: -50px;
  width: 1em;
  height: 1em;
  font-size: 15px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-135deg);
  left: calc(50% - 7.5px);
}
@media screen and (min-width: 768px) {
  #journal.books .un_section:not(:first-of-type)::before {
    top: -60px;
  }
}
#journal.books .un_section_text {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #journal.books .un_section_text {
    margin-bottom: 40px;
  }
}
#journal.books .un_section_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #journal.books .un_section_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
#journal.books .un_section_title span {
  line-height: 1;
  padding: 0.4em 0.8em;
  background: linear-gradient(to right, #158cff, #0045b9);
  color: #fff;
  border-radius: 2em;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #journal.books .un_section_title span {
    font-size: 1.5rem;
  }
}
#journal.books.form_confirmation .un_section:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #journal.books.form_confirmation .un_section:not(:first-child) {
    margin-top: 60px;
  }
}
#journal.books.form_confirmation .un_section::before {
  display: none;
}
#journal.books.form_confirmation .un_section_first {
  color: #ff5e88;
  text-align: center;
}
#journal.books.form_confirmation .un_section_title span {
  background: #808080;
}

/**************************************************************************
    著作権
**************************************************************************/
#journal.copyright .un_cptxt {
  margin-bottom: 50px;
}
#journal.copyright .un_cptable {
  margin-bottom: 50px;
}
#journal.copyright .un_cptable h3 {
  margin-bottom: 8px;
}
#journal.copyright .un_cptable table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #journal.copyright .un_cptable table {
    width: 700px;
  }
}
#journal.copyright .un_cptable th {
  width: 100px;
}
@media screen and (min-width: 768px) {
  #journal.copyright .un_cptable th {
    width: 150px;
  }
}

/**************************************************************************
    研究助成金 共通
**************************************************************************/
/**************************************************************************
    研究助成金
**************************************************************************/
#grants.top .un_firstContents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 38px auto;
}
@media screen and (min-width: 768px) {
  #grants.top .un_firstContents {
    flex-direction: row;
    justify-content: space-between;
    gap: 65px;
    position: relative;
    z-index: 1;
    margin: -30px auto 52px;
  }
}
#grants.top .un_firstContents.is_grants {
  padding-top: 50px;
}
#grants.top .un_firstContents_text {
  line-height: 1.9375;
}
@media screen and (min-width: 768px) {
  #grants.top .un_firstContents_text {
    flex: 1;
    padding-top: 78px;
  }
}
#grants.top .un_firstContents_img {
  width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #grants.top .un_firstContents_img {
    width: 49.36%;
    height: 252px;
  }
}
#grants.top .un_firstContents_img img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #grants.top .un_firstContents_img img {
    object-fit: cover;
    width: auto;
    height: 100%;
  }
}
#grants.top .un_sec {
  background: #f0f5ff;
  padding: 61px 0 0;
}
#grants.top .un_sec:last-of-type {
  padding-bottom: 86px;
}
#grants.top .un_sec_box {
  background: #fff;
  margin-top: 25px;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #grants.top .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#grants.top .un_tableHead {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #grants.top .un_tableHead {
    margin-bottom: 34px;
  }
}
#grants.top .un_tableHead_head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #grants.top .un_tableHead_head {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    left: -10px;
  }
}
#grants.top .un_tableHead_date {
  display: inline-block;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #41a1ff 0%, #004fb9 100%);
  color: #fff;
  border-radius: 50px;
  line-height: 1;
  padding: 7px 20px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  #grants.top .un_tableHead_date {
    font-size: 1.3rem;
  }
}
#grants.top .un_tableHead_title {
  color: #0045b9;
  font-weight: 350;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #grants.top .un_tableHead_title {
    font-size: 2.2rem;
  }
}
#grants.top .un_tableHead_text {
  line-height: 1.9375;
}
#grants.top .un_grantsList {
  padding: 60px 0;
  background: #f0f5ff;
}
@media screen and (min-width: 768px) {
  #grants.top .un_grantsList {
    padding: 110px 0 140px;
  }
}
#grants.top .un_grantsList_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  #grants.top .un_grantsList_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 20px;
  }
}
#grants.top .un_grantsList_item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  #grants.top .un_grantsList_item {
    grid-template-columns: min(88px, 8vw) 1fr;
  }
}
#grants.top .un_grantsList_icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #grants.top .un_grantsList_icon {
    width: min(88px, 8vw);
    height: min(88px, 8vw);
  }
}
#grants.top .un_grantsList_textArea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#grants.top .un_grantsList_title {
  color: #0045b9;
  font-size: 2rem;
  font-weight: 350;
  padding: 0 0 10px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #grants.top .un_grantsList_title {
    font-size: 2.6rem;
    padding: 1vw 0 20px;
  }
}
#grants.top .un_grantsList_text {
  line-height: 2.0625;
  min-height: 6.1875em;
  overflow: hidden;
}
#grants.top .un_grantsList_text a {
  color: #ff5e88;
}

/**************************************************************************
    募集要項
**************************************************************************/
/**************************************************************************
    採択実績
**************************************************************************/
#grants.adoptions .un_sec {
  background: #f0f5ff;
  padding: 61px 0;
}
#grants.adoptions .un_sec:last-of-type {
  padding-bottom: 86px;
}
@media screen and (min-width: 768px) {
  #grants.adoptions .un_sec:last-of-type {
    padding-bottom: 140px;
  }
}
#grants.adoptions .un_sec_box {
  background: #fff;
  margin-top: 25px;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #grants.adoptions .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#grants.adoptions .un_sec_signature {
  margin-top: 20px;
}
#grants.adoptions .un_sec_signature_text {
  text-align: right;
}
#grants.adoptions .un_sec_item:first-of-type .un_sec_btn {
  border-top: 1px dotted #cccccc;
}
#grants.adoptions .un_sec_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  padding: 18px 18px 18px 0;
  font-weight: 500;
  color: #0045b9;
  font-size: 1.5rem;
  border-bottom: 1px dotted #cccccc;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #grants.adoptions .un_sec_btn {
    font-size: 1.8rem;
    padding: 22px;
  }
}
#grants.adoptions .un_sec_btn::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-135deg);
  content: "";
  flex: 0 0 auto;
  transition: transform 0.2s ease-in-out;
}
#grants.adoptions .un_sec_btn:hover {
  opacity: 0.7;
}
#grants.adoptions .un_sec_btn.is_active::after {
  transform: rotate(45deg);
}
#grants.adoptions .un_sec_body {
  padding: 18px 0;
  line-height: 1.9;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #grants.adoptions .un_sec_body {
    padding: 22px;
  }
}
#grants.adoptions .un_sec_body p {
  margin-bottom: 10px;
}
#grants.adoptions .un_sec_body ol, #grants.adoptions .un_sec_body ul {
  margin-bottom: 20px;
  margin-left: 1em;
}
#grants.adoptions .un_sec_body ol {
  list-style-type: decimal;
}
#grants.adoptions .un_sec_body ul {
  list-style-type: disc;
}
#grants.adoptions .un_sec_body li {
  margin-bottom: 5px;
}

/**************************************************************************
    テーマ事例
**************************************************************************/
#grants.theme .un_sec {
  background: #f0f5ff;
  padding: 61px 0 0;
}
#grants.theme .un_sec:last-of-type {
  padding-bottom: 86px;
}
@media screen and (min-width: 768px) {
  #grants.theme .un_sec:last-of-type {
    padding-bottom: 140px;
  }
}
#grants.theme .un_sec_box {
  background: #fff;
  margin-top: 25px;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #grants.theme .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#grants.theme .un_sec_signature {
  margin-top: 20px;
}
#grants.theme .un_sec_signature_text {
  text-align: right;
}
#grants.theme .un_sec_item:first-of-type .un_sec_btn {
  border-top: 1px dotted #cccccc;
}
#grants.theme .un_sec_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  padding: 18px 18px 18px 0;
  font-weight: 500;
  color: #0045b9;
  font-size: 1.5rem;
  border-bottom: 1px dotted #cccccc;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #grants.theme .un_sec_btn {
    font-size: 1.8rem;
    padding: 22px;
  }
}
#grants.theme .un_sec_btn::after {
  width: 1em;
  height: 1em;
  font-size: 8px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 2px;
  border-color: #0045b9;
  transform: rotate(-135deg);
  content: "";
  flex: 0 0 auto;
  transition: transform 0.2s ease-in-out;
}
#grants.theme .un_sec_btn:hover {
  opacity: 0.7;
}
#grants.theme .un_sec_btn.is_active::after {
  transform: rotate(45deg);
}
#grants.theme .un_sec_body {
  padding: 18px 0;
  line-height: 1.9;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #grants.theme .un_sec_body {
    padding: 22px;
  }
}
#grants.theme .un_sec_body p {
  margin-bottom: 10px;
}
#grants.theme .un_sec_body ol, #grants.theme .un_sec_body ul {
  margin-bottom: 20px;
  margin-left: 1em;
}
#grants.theme .un_sec_body ol {
  list-style-type: decimal;
}
#grants.theme .un_sec_body ul {
  list-style-type: disc;
}
#grants.theme .un_sec_body li {
  margin-bottom: 5px;
}

/**************************************************************************
    申請書
**************************************************************************/
/**************************************************************************
    報告書
**************************************************************************/
/**************************************************************************
    委員会・研究会 共通
**************************************************************************/
/**************************************************************************
    委員会・研究会 TOP
**************************************************************************/
#committees.top .un_table {
  margin-bottom: 20px;
}
#committees.top .un_table th {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #committees.top .un_table th {
    width: 130px;
  }
}
#committees.top .un_table td:first-child {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #committees.top .un_table td:first-child {
    width: 240px;
  }
}
#committees.top .un_sec_box_text {
  margin-bottom: 30px;
}

/**************************************************************************
    構成
**************************************************************************/
/**************************************************************************
    議事録
**************************************************************************/
/**************************************************************************
    プログラム
**************************************************************************/
/**************************************************************************
    支部 共通
**************************************************************************/
/**************************************************************************
    支部 TOP
**************************************************************************/
#branches.top .un_sec_box_text {
  margin-bottom: 30px;
}
#branches.top .un_sec_box_text {
  margin-top: 30px;
}
#branches.top .un_catchcopy_btn {
  margin-top: 40px;
}

/**************************************************************************
    構成
**************************************************************************/
/**************************************************************************
    議事録
**************************************************************************/
/**************************************************************************
    常任理事会報告書
**************************************************************************/
/**************************************************************************
    研究助成金
**************************************************************************/
#member.top {
  /*------------------------------------------------------------------------
  お知らせ
  ------------------------------------------------------------------------*/
}
#member.top .un_news {
  padding: 30px 0 45px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #member.top .un_news .ly_inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr auto;
  }
}
#member.top .un_news_contents {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  #member.top .un_news_contents {
    grid-row: 1/3;
    margin-top: 8px;
  }
}
#member.top .un_news .el_newsList {
  overflow-y: scroll;
  height: 295px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  #member.top .un_news .el_newsList {
    height: 300px;
  }
}
@media screen and (min-width: 1320px) {
  #member.top .un_news .el_newsList {
    height: 285px;
  }
}
@media screen and (min-width: 1320px) {
  #member.top .un_news .el_newsList_row {
    display: flex;
    gap: 17px;
  }
}
#member.top .un_news .el_btn {
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  #member.top .un_news .el_btn {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-inline: 0;
  }
}
#member.top .un_news.is_news .el_cat.general {
  background-color: #00b58d;
}
#member.top .un_news.is_news .el_cat.is_member {
  background-color: #ff5e88;
}
#member.top .un_firstContents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 38px auto;
}
@media screen and (min-width: 768px) {
  #member.top .un_firstContents {
    flex-direction: row;
    justify-content: space-between;
    gap: 65px;
    position: relative;
    z-index: 1;
    margin: -30px auto 52px;
  }
}
#member.top .un_firstContents.is_member {
  padding-top: 50px;
}
#member.top .un_firstContents_text {
  line-height: 1.9375;
}
@media screen and (min-width: 768px) {
  #member.top .un_firstContents_text {
    flex: 1;
    padding-top: 78px;
  }
}
#member.top .un_firstContents_img {
  width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #member.top .un_firstContents_img {
    width: 49.36%;
    height: 252px;
  }
}
#member.top .un_firstContents_img img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #member.top .un_firstContents_img img {
    object-fit: cover;
    width: auto;
    height: 100%;
  }
}
#member.top .un_sec {
  background: #f0f5ff;
  padding: 61px 0 0;
}
#member.top .un_sec:last-of-type {
  padding-bottom: 86px;
}
#member.top .un_sec_box {
  background: #fff;
  margin-top: 25px;
  padding: 33px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #member.top .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#member.top .un_grantsList {
  padding: 60px 0;
  background: #f0f5ff;
}
@media screen and (min-width: 768px) {
  #member.top .un_grantsList {
    padding: 110px 0 140px;
  }
}
#member.top .un_grantsList_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  #member.top .un_grantsList_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 20px;
  }
}
#member.top .un_grantsList_item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  #member.top .un_grantsList_item {
    grid-template-columns: min(88px, 8vw) 1fr;
  }
}
#member.top .un_grantsList_icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #member.top .un_grantsList_icon {
    width: min(88px, 8vw);
    height: min(88px, 8vw);
  }
}
#member.top .un_grantsList_textArea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#member.top .un_grantsList_title {
  color: #0045b9;
  font-size: 2rem;
  font-weight: 350;
  padding: 0 0 10px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #member.top .un_grantsList_title {
    font-size: 2.6rem;
    padding: 1vw 0 20px;
  }
}
#member.top .un_grantsList_text {
  line-height: 2.0625;
  height: 6.1875em;
  overflow: hidden;
}

/**************************************************************************
    委員会・研究会構成
**************************************************************************/
#member.m_committees_about .un_table {
  margin-bottom: 20px;
}
#member.m_committees_about .un_table th {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #member.m_committees_about .un_table th {
    width: 130px;
  }
}
#member.m_committees_about .un_table td:first-child {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #member.m_committees_about .un_table td:first-child {
    width: 240px;
  }
}
#member.m_committees_about .un_sec_box_text {
  margin-bottom: 30px;
}

/**************************************************************************
    支部構成
**************************************************************************/
#member.m_branches_about .un_sec_box_text {
  margin-bottom: 30px;
}
#member.m_branches_about .un_sec_box_text {
  margin-top: 30px;
}
#member.m_branches_about .un_catchcopy_btn {
  margin-top: 40px;
}

/**************************************************************************
    支部名簿
**************************************************************************/
#member.m_branches_list .un_table {
  margin-bottom: 20px;
}
#member.m_branches_list .un_table th {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #member.m_branches_list .un_table th {
    width: 130px;
  }
}
#member.m_branches_list .un_table td:first-child {
  width: 20%;
}
@media screen and (min-width: 768px) {
  #member.m_branches_list .un_table td:first-child {
    width: 240px;
  }
}
#member.m_branches_list .un_sec_box_text {
  margin-bottom: 30px;
}

/**************************************************************************
    委員会・研究会名簿
**************************************************************************/
/**************************************************************************
    リンク集
**************************************************************************/
#links .un_section {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #links .un_section {
    padding-bottom: 120px;
  }
}
#links .un_link {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  #links .un_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}
#links .un_link_wrap {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  #links .un_link_wrap {
    grid-template-columns: min(88px, 8vw) 1fr;
  }
}
#links .un_link_title {
  color: #0045b9;
  font-size: 2rem;
  font-weight: 350;
  padding: 0 0 10px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (min-width: 768px) {
  #links .un_link_title {
    font-size: 2.6rem;
    padding: 1vw 0 20px;
  }
}
#links .un_link_icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #links .un_link_icon {
    width: min(88px, 8vw);
    height: min(88px, 8vw);
  }
}
#links .un_link_textArea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#links .un_link_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#links .un_link_item {
  position: relative;
  left: -15px;
}
#links .un_link_item a {
  position: relative;
  display: block;
  padding: 6px 16px 6px 36px;
  width: 100%;
  text-decoration: underline;
  line-height: 1.4;
  transition: none;
}
#links .un_link_item a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0.95em;
  width: 0.4em;
  height: 0.4em;
  background-color: #0045b9;
  border-radius: 50%;
}
#links .un_link_item a:hover {
  opacity: 1;
  background-color: #12479C;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
#links .un_link_item a:hover::before {
  background-color: #fff;
}
#links .un_link_item a:hover::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 0.75em;
  width: 14px;
  height: 9px;
  background: url("../img/common/icon_tab.svg") no-repeat border-box center/cover;
  filter: brightness(0) invert(1);
}

/**************************************************************************
    会員ログイン
**************************************************************************/
#search .un_searchCount {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #search .un_searchCount {
    font-size: 1.8rem;
  }
}
#search .un_sec {
  background: #f0f5ff;
  padding: 61px 0 0;
}
#search .un_sec:last-of-type {
  padding-bottom: 86px;
}
#search .un_sec_box {
  background: #fff;
  margin-top: 15px;
  padding: 10px 4% 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #search .un_sec_box {
    padding: 40px 6% 47px;
    gap: 26px;
  }
}
#search .un_content_item a {
  display: block;
  align-items: center;
  border-bottom: 1px dotted #cccccc;
  padding: 22px 0;
}
@media screen and (min-width: 768px) {
  #search .un_content_item a {
    display: grid;
    grid-template-columns: 1.9fr 0.1fr;
    gap: 40px;
  }
}
#search .un_content_title {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #search .un_content_title {
    font-size: 2rem;
  }
}
#search .un_content_title_pdf {
  display: inline-block;
  margin-left: 10px;
}
#search .un_content .search-highlight {
  background-color: #FFFF00;
}
#search .el_pagination {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #search .el_pagination {
    margin-top: 80px;
  }
}

/**************************************************************************
    入会・変更届
**************************************************************************/
#membership .un_section:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  #membership .un_section:not(:first-of-type) {
    margin-top: 80px;
  }
}
#membership .un_section_first {
  margin-bottom: 20px;
}
#membership .un_section_first.is_check {
  color: #ff5e88;
  text-align: center;
}
#membership .un_section_formWrap:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #membership .un_section_formWrap:not(:first-of-type) {
    margin-top: 46px;
  }
}
#membership .un_section_title {
  font-size: 1.7rem;
  font-weight: 600;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  #membership .un_section_title {
    font-size: 2rem;
  }
}

/**************************************************************************
    問合せ
**************************************************************************/
#contact .un_section_title {
  font-size: 1.7rem;
  font-weight: 600;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  #contact .un_section_title {
    font-size: 2rem;
  }
}
#contact .un_section_first {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contact .un_section_first {
    margin-bottom: 36px;
  }
}
#contact .un_section_first.is_check {
  color: #ff5e88;
  text-align: center;
}
#contact .bl_tableScrollSticky_select {
  border-radius: 0.5em;
  padding: 15px 20px;
  width: 100%;
  max-width: 400px;
}
#contact .bl_tableScrollSticky_select.is_error {
  background-color: #ffd1dd;
}

/**************************************************************************
    アクセス
**************************************************************************/
/**************************************************************************
    会員ログイン
**************************************************************************/
#login .ly_section {
  padding-bottom: 80px;
}
#login .bl_whiteBox.is-login {
  width: 100%;
  padding: 40px 6% 70px;
}
@media screen and (min-width: 768px) {
  #login .bl_whiteBox.is-login {
    width: 600px;
    margin: 40px auto 0;
  }
}
#login #wpmem_login {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#login #wpmem_login fieldset {
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  #login #wpmem_login fieldset {
    margin: 40px 0;
  }
}
#login #wpmem_login fieldset legend {
  display: none;
}
#login #wpmem_login .username,
#login #wpmem_login .password {
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  background: #e3ecff;
  border-radius: 0.5em;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}
#login #wpmem_login .button_div {
  margin-top: 30px;
  text-align: center;
}
#login #wpmem_login .button_div .buttons {
  margin-top: 15px;
  padding: 15px 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 0.5em;
  font-weight: bold;
  color: #fff;
  background-color: #0045b9;
}
#login #wpmem_login .button_div .buttons:hover {
  opacity: 0.8;
}
#login .un_login_forget {
  margin-top: -60px;
  margin-bottom: 60px;
  text-align: center;
}
#login .un_login_forget a {
  color: #0045b9;
  text-decoration: underline;
}

/**************************************************************************
    お知らせ
**************************************************************************/
#news .el_tabBtns, #member_news .el_tabBtns {
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #news .el_tabBtns, #member_news .el_tabBtns {
    padding: 0;
    margin: 70px auto;
  }
}
#news .el_tabBtns .el_tabBtns_item.is_general, #member_news .el_tabBtns .el_tabBtns_item.is_general {
  border-color: #00b58d;
}
#news .el_tabBtns .el_tabBtns_item.is_member, #member_news .el_tabBtns .el_tabBtns_item.is_member {
  border-color: #ff5e88;
}
#news .un_section, #member_news .un_section {
  padding: 55px 0 86px;
  background: #f0f5ff;
}
#news .un_section_box, #member_news .un_section_box {
  background: #fff;
  padding: 10px 4% 30px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0.4px 0.4px 2.7px rgba(19, 51, 109, 0.2);
}
@media screen and (min-width: 768px) {
  #news .un_section_box, #member_news .un_section_box {
    padding: 40px 6% 47px;
  }
}
@media screen and (max-width: 767px) {
  #news .un_section .el_articleHead_title, #member_news .un_section .el_articleHead_title {
    margin-top: 30px;
  }
}
#news .el_cat.general, #member_news .el_cat.general {
  background-color: #00b58d;
}
#news .el_cat.is_member, #member_news .el_cat.is_member {
  background-color: #ff5e88;
}
#news .notFound, #member_news .notFound {
  text-align: center;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  #news .notFound, #member_news .notFound {
    padding: 100px 0;
  }
}
#news .el_pagination, #member_news .el_pagination {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #news .el_pagination, #member_news .el_pagination {
    margin-top: 80px;
  }
}
#news .un_detailFoot, #member_news .un_detailFoot {
  margin-top: 50px;
}
#news .un_detailFoot .el_btn, #member_news .un_detailFoot .el_btn {
  margin-inline: auto;
}

/**************************************************************************
    トップページ
**************************************************************************/

/*# sourceMappingURL=style.css.map*/