@charset "UTF-8";
/*!
 * 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 {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  20%, 53%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.05);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.04);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  11.1%, from, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -400px, 0) scaleY(1);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(1);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 250px, 0) scaleY(1);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(1);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(1);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(1);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/* sprite */
.sprite-1 {
  animation: play 1s steps(5) infinite;
}

.sprite-2 {
  animation: play2 1.5s steps(3) infinite;
}

.sprite-3 {
  animation: play3 1.5s steps(3) infinite;
}

.sprite-4 {
  animation: play3 1.5s steps(3) infinite;
}

.sprite-1, .sprite-2, .sprite-3 {
  width: 300px;
  height: 300px;
}

.sprite-4 {
  width: 200px;
  height: 300px;
}

.spt-01 {
  background: url(../images/kyoro_01.png) left center;
  width: 29.6875vw;
  height: 29.6875vw;
  background-size: 500%;
  margin-left: -100%;
}

.spt-02 {
  background: url(../images/kyoro_02_sm.png) left center;
  width: 23.4375vw;
  height: 23.4375vw;
  background-size: 300%;
}

.spt-03 {
  background: url(../images/kyoro_02.png) left center;
  width: 29.6875vw;
  height: 29.6875vw;
  background-size: 300%;
}

.spt-04 {
  background: url(../images/kyoro_02.png) left center;
  width: 14.0625vw;
  height: 14.0625vw;
  background-size: 300%;
}

.spt-05 {
  background: url(../images/kyoro_01.png) left center;
  width: 29.6875vw;
  height: 29.6875vw;
  background-size: 500%;
}

@keyframes play {
  100% {
    background-position: -500%;
  }
}
@keyframes play2 {
  100% {
    background-position: -300%;
  }
}
@keyframes play3 {
  100% {
    background-position: -300%;
  }
}
/*------------------------------------------------------------
	basic
------------------------------------------------------------*/
body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 2;
    font-feature-settings: "palt" 1;
  }
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
html #mirai22 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
html #mirai22 * {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.035em;
  font-weight: 700;
}

input, textarea, code, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: none;
  background: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: #630;
  text-decoration: none;
}

li {
  list-style: none;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.rightTxt {
  text-align: right;
}

.leftTxt {
  text-align: left;
}

.centerTxt {
  text-align: center;
}

.spShow,
.spIbShow {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_show {
    display: none;
  }
  .sp_show {
    display: block;
  }
  .spIbShow {
    display: inline-block;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
#senryu25 {
  background-color: #8cd9ff;
  padding: 50px 1% 80px;
  overflow-x: hidden;
  color: #663300;
}
#senryu25 .container {
  width: 95%;
  max-width: 950px;
  margin: 0 auto;
}
#senryu25 .container #mv h1 img {
  width: 100%;
}
#senryu25 .container #mv .introtxt {
  position: relative;
}
#senryu25 .container #mv .introtxt p {
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  margin: 10px auto;
  line-height: 1.5;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 50px;
  min-width: 750px;
}
#senryu25 .container #mv .introtxt p ruby rt {
  font-size: 0.3em;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .introtxt p ruby rt {
    font-size: 0.5em;
  }
}
@media (max-width: 950px) {
  #senryu25 .container #mv .introtxt p {
    min-width: inherit;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .introtxt p {
    font-size: clamp(1rem, 3vw, 2rem);
    margin: 10px auto;
    padding: 0;
    display: flex;
    text-align: left;
    justify-content: center;
  }
  #senryu25 .container #mv .introtxt p span {
    width: 80%;
  }
  #senryu25 .container #mv .introtxt p img {
    width: 18%;
    flex-shrink: 0;
    position: static;
    margin: 0;
    margin-left: 10px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #senryu25 .container #mv .introtxt p img {
    margin-left: 0;
  }
}
#senryu25 .container #mv .flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex {
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
}
#senryu25 .container #mv .flex .dlBox {
  width: 67.5%;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .dlBox {
    margin-top: 10px;
  }
}
#senryu25 .container #mv .flex .dlBox dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 2rem;
  width: 100%;
  line-height: 1.2;
}
#senryu25 .container #mv .flex .dlBox dl dt {
  font-weight: 700;
  flex-shrink: 0;
}
#senryu25 .container #mv .flex .dlBox dl dd {
  font-weight: 700;
}
#senryu25 .container #mv .flex .dlBox dl dd small {
  font-size: 0.65em;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .dlBox {
    width: -moz-fit-content;
    width: fit-content;
  }
  #senryu25 .container #mv .flex .dlBox dl {
    font-size: clamp(1rem, 4vw, 3rem);
  }
}
#senryu25 .container #mv .flex .kyoro {
  width: 20%;
  margin-left: 2.5%;
  position: relative;
  width: 15%;
}
#senryu25 .container #mv .flex .kyoro .gif {
  width: 80%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .kyoro .gif {
    margin-right: 10%;
    margin-left: auto;
    display: block;
    width: 30%;
  }
}
#senryu25 .container #mv .flex .kyoro .balloon {
  position: absolute;
  width: 80%;
  top: -10%;
  right: -60%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .kyoro .balloon {
    top: 0;
    right: auto;
    left: 0;
    width: 50%;
    left: 10%;
  }
}
#senryu25 .container #mv .flex .kyoro .kyoro_name {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .kyoro .kyoro_name {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .flex .kyoro {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
  }
  #senryu25 .container #mv .flex .kyoro .snow01 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
  }
  #senryu25 .container #mv .flex .kyoro .snow02 {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
  }
}
#senryu25 .container #mv .contBox {
  background: #fff;
  border-radius: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}
#senryu25 .container #mv .contBox p {
  font-weight: 700;
  line-height: 1.3;
}
#senryu25 .container #mv .contBox p.red {
  color: #e5001e;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mv .contBox p.red {
    font-size: clamp(0px, 3.5vw, 16px);
  }
}
#senryu25 .container #mv .contBox .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  background: #e5001e;
  border: 4px solid #fff;
  padding: 25px;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  font-size: 2rem;
  box-shadow: 5px 5px 0px 0px #3e3a39;
  transition: 0.5s;
  box-sizing: border-box;
}
#senryu25 .container #mv .contBox .btn:hover {
  box-shadow: 0 0 0 0;
}
#senryu25 .container #mv .contBox .btn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../images/btn_arrow_pink.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
#senryu25 .container #mv .contBox.coming {
  position: relative;
  padding: 10px 0;
}
#senryu25 .container #mv .contBox.coming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #004c88;
  opacity: 0.85;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#senryu25 .container #mv .contBox.coming .coming_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  z-index: 2;
}
#senryu25 .container #mainBox .introBox {
  width: 90%;
  margin: 0 auto 40px;
  border-radius: 40px;
  background: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
}
#senryu25 .container #mainBox .introBox p {
  font-weight: 700;
  line-height: 1.3;
}
#senryu25 .container #mainBox .introBox p.red {
  color: #e5001e;
}
#senryu25 .container #mainBox .introBox .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  background: #e5001e;
  border: 4px solid #727171;
  padding: 25px;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  font-size: 2rem;
  box-shadow: 5px 5px 0px 0px #3e3a39;
}
#senryu25 .container #mainBox .introBox .btn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../images/btn_arrow_pink.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .introBox .btn {
    margin-top: 10px;
  }
}
#senryu25 .container #mainBox .contBox {
  width: 100%;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox {
    border-radius: 25px;
  }
}
#senryu25 .container #mainBox .contBox + .contBox {
  margin-top: 30px;
}
#senryu25 .container #mainBox .contBox h2 {
  background: #0075ba;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  box-sizing: border-box;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox h2 {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
#senryu25 .container #mainBox .contBox h3 {
  background: #ed6a02;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  box-sizing: border-box;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox h3 {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
#senryu25 .container #mainBox .contBox .inner {
  padding: 20px 20px 20px;
  box-sizing: border-box;
}
#senryu25 .container #mainBox .contBox .inner p {
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner p {
    font-size: 1.7rem;
    text-align: left;
  }
}
#senryu25 .container #mainBox .contBox .inner p.bold {
  font-size: 1.42em;
  color: #009c8f;
  display: block;
  margin: 5px auto;
  position: relative;
  width: 700px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner p.bold {
    text-align: center;
  }
}
#senryu25 .container #mainBox .contBox .inner p.bold sup {
  font-size: 0.4em;
  line-height: 1;
  vertical-align: top;
  position: relative;
  top: 0.6em;
}
#senryu25 .container #mainBox .contBox .inner p.bold .card {
  position: absolute;
  max-width: 120px;
  top: 0;
  right: 0;
}
#senryu25 .container #mainBox .contBox .inner p.bold small {
  display: block;
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner p.bold {
    width: 100%;
    margin: 10px 0;
  }
  #senryu25 .container #mainBox .contBox .inner p.bold .card {
    position: static;
    margin: 10px auto;
    max-width: 120px;
    width: 60%;
    display: block;
  }
}
#senryu25 .container #mainBox .contBox .inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  background: #ed6a02;
  border: 4px solid #727171;
  padding: 25px;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  font-size: 2rem;
}
#senryu25 .container #mainBox .contBox .inner .btn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../images/btn_arrow.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .btn {
    margin-top: 10px;
  }
}
#senryu25 .container #mainBox .contBox .inner .award_cont {
  max-width: 700px;
  margin: 30px auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .award_cont {
    margin: 20px auto;
  }
}
#senryu25 .container #mainBox .contBox .inner .award_cont + .award_cont::before {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../images/dot_blue.svg") repeat;
  background-size: contain;
  display: block;
  margin-bottom: 30px;
}
#senryu25 .container #mainBox .contBox .inner .award_cont:nth-child(4) {
  margin-bottom: 40px;
}
#senryu25 .container #mainBox .contBox .inner .award_cont:nth-child(4)::before {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .award_cont:nth-child(4)::before {
    margin-bottom: 30px;
  }
}
#senryu25 .container #mainBox .contBox .inner .award_cont .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .flex .icn {
  width: 25%;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .flex .txt {
  width: 68%;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list li {
  width: 19%;
  margin-top: 10px;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list li:nth-child(4) {
  margin-left: -1.5%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .award_cont .award_list li {
    width: 32%;
  }
  #senryu25 .container #mainBox .contBox .inner .award_cont .award_list li:nth-child(4) {
    margin-left: 0;
  }
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list li img {
  width: 60%;
  margin: 0 auto 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .award_cont .award_list li img {
    width: 80%;
  }
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list li p {
  text-align: center;
  font-size: clamp(1.6rem, 1vw, 1.7rem);
  line-height: 1.2;
}
#senryu25 .container #mainBox .contBox .inner .award_cont .award_list li p small {
  font-weight: 400;
}
#senryu25 .container #mainBox .contBox .inner .stepBox {
  max-width: 700px;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox {
    margin: 20px auto;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox:first-child {
  margin-top: 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox:last-child {
  margin-bottom: 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox:last-child .flex {
  align-items: center;
}
#senryu25 .container #mainBox .contBox .inner .stepBox:last-child::before {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../images/dot_orange.svg") repeat;
  background-size: contain;
  display: block;
  margin-bottom: 30px;
}
#senryu25 .container #mainBox .contBox .inner .stepBox.subtep::before {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../images/dot_orange.svg") repeat;
  background-size: contain;
  display: block;
  margin-bottom: 30px;
}
#senryu25 .container #mainBox .contBox .inner .stepBox.otehon h4 {
  margin: 0 auto 20px;
  background: #00a5db;
  color: #fff;
  text-align: center;
  padding: 10px 30px;
  border-radius: 20px;
  box-sizing: border-box;
  width: 150px;
  font-weight: bold;
  letter-spacing: 2px;
}
#senryu25 .container #mainBox .contBox .inner .stepBox.otehon p {
  text-align: left;
  margin-bottom: 30px;
}
#senryu25 .container #mainBox .contBox .inner .stepBox.otehon .senryu_img {
  width: 80%;
  margin: 30px auto;
  display: block;
}
#senryu25 .container #mainBox .contBox .inner .stepBox.otehon .btn {
  background: #ed6a02;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .subttl {
  text-align: center;
  margin: 40px auto 20px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .subttl {
    margin: 15px auto;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .linkBox a {
  max-width: 150px;
  width: 45%;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .linkBox a + a {
  margin-left: 5%;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .flex .icn {
  width: 70px;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .flex .icn {
    width: 40px;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox .flex p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .flex p span {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .flex .icn {
    display: block;
    width: 30px;
  }
  #senryu25 .container #mainBox .contBox .inner .stepBox .flex p {
    text-align: left;
    font-size: 1.7rem;
  }
  #senryu25 .container #mainBox .contBox .inner .stepBox .flex p span {
    font-size: 1.7rem;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox .btn {
  background: #e83819;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .btn::after {
  background-image: url("../images/btn_arrow_pink.svg");
}
#senryu25 .container #mainBox .contBox .inner .stepBox .btn.blue {
  background: #0075ba;
  margin-top: 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .btn.blue::after {
  background-image: url("../images/btn_arrow_blue.svg");
}
#senryu25 .container #mainBox .contBox .inner .stepBox .coming {
  position: relative;
  padding: 10px 0;
  margin: 30px auto 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .coming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #004c88;
  opacity: 0.85;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .coming .coming_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  z-index: 2;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .coming .subttl {
  margin: 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .coming .btn {
  margin: 0 auto;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex img {
  margin: 0;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex .balloon {
  max-width: 200px;
  width: 60%;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex .gif {
  max-width: 160px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex {
    margin: 10px auto;
    align-items: flex-start;
  }
  #senryu25 .container #mainBox .contBox .inner .stepBox .kyoro_flex .gif {
    margin-top: 5%;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox .circle_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .circle_link {
    width: 100%;
  }
}
#senryu25 .container #mainBox .contBox .inner .stepBox .circle_link li {
  width: 30%;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .circle_link li a {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #21a7d6;
  border: 4px solid #727171;
  box-shadow: 5px 5px 0px 0px #595757;
  box-sizing: border-box;
  font-weight: 700;
  text-align: center;
}
#senryu25 .container #mainBox .contBox .inner .stepBox .circle_link li a:hover {
  box-shadow: 0 0 0 0 #595757;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #mainBox .contBox .inner .stepBox .circle_link li a {
    font-size: 2rem;
  }
}
#senryu25 .container #mainBox .btn_area {
  margin: 50px auto;
  text-align: center;
}
#senryu25 .container #mainBox .btn_area .outer_txt {
  font-weight: 700;
  line-height: 1.5;
  color: #e5001e;
  display: block;
  margin-top: 10px;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
#senryu25 .container .btnBox {
  margin: 0 auto;
  position: relative;
  padding: 20px 10px;
  box-sizing: border-box;
  max-width: 500px;
  width: 100%;
}
#senryu25 .container .btnBox a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  background: #e5001e;
  border: 4px solid #727171;
  padding: 25px;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  font-size: 2rem;
  box-shadow: 5px 5px 0px 0px #3e3a39;
  transition: 0.5s;
  box-sizing: border-box;
}
#senryu25 .container .btnBox a:hover {
  box-shadow: 0 0 0 0 #3e3a39;
}
#senryu25 .container .btnBox a::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../images/btn_arrow_pink.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
#senryu25 .container .btnBox a.retop_btn {
  flex-direction: row-reverse;
  max-width: 600px;
  width: 100%;
  border-color: #fff;
}
#senryu25 .container .btnBox a.retop_btn::after {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 10px;
}
#senryu25 .container .btnBox a.return_btn {
  flex-direction: row-reverse;
  max-width: 600px;
  width: 100%;
  border-color: #fff;
  background: #ffeb5b;
  color: #074e86;
}
#senryu25 .container .btnBox a.return_btn::after {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 10px;
  background: url("../images/btn_arrow_blue_re.svg") no-repeat;
}
#senryu25 .container .btnBox.coming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #004c88;
  opacity: 0.85;
}
#senryu25 .container .btnBox.coming .coming_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: auto;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
#senryu25 .container .bottom_links {
  padding-top: 70px;
}
#senryu25 .container .bottom_links .toggle, #senryu25 .container .bottom_links .toggle2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #e5001e;
  border: 4px solid #fff;
  box-shadow: 5px 5px 0px 0px #3e3a39;
  margin: 20px auto;
  border-radius: 40px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.42em;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .bottom_links .toggle, #senryu25 .container .bottom_links .toggle2 {
    font-size: 2rem;
  }
}
#senryu25 .container .bottom_links .toggle::after, #senryu25 .container .bottom_links .toggle2::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url("../images/btn_arrow_pink.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .bottom_links .toggle::after, #senryu25 .container .bottom_links .toggle2::after {
    width: 20px;
    height: 20px;
  }
}
#senryu25 .container .bottom_links .toggle.school, #senryu25 .container .bottom_links .toggle2.school {
  background: #fff;
  border-color: #e5001e;
  color: #e5001e;
}
#senryu25 .container .bottom_links .toggle.school::after, #senryu25 .container .bottom_links .toggle2.school::after {
  background: url("../images/btn_arrow_pink_re.svg") no-repeat;
  background-size: contain;
}
#senryu25 .container .bottom_links .toggle2_inner {
  display: none;
  border: 2px solid #000;
  padding: 20px;
  box-sizing: border-box;
}
#senryu25 .container .bottom_links .toggle2_inner p {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .bottom_links .toggle2_inner p {
    font-size: 14px;
  }
}
#senryu25 .container .bottom_links .toggle2_inner p:first-child {
  margin-top: 0;
}
#senryu25 .container .bottom_links .toggle2_inner p.center {
  text-align: center;
  margin-top: 40px;
}
#senryu25 .container .bottom_links .toggle2_inner p.conv_txt_ttl02 {
  text-align: center;
  margin-top: 10px;
}
#senryu25 .container .bottom_links .toggle2_inner ul {
  display: block;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .bottom_links .toggle2_inner ul {
    font-size: 14px;
  }
}
#senryu25 .container .bottom_links .toggle2_inner ul li {
  margin-left: 1em;
  list-style: disc;
}
#senryu25 .container .bottom_links .toggle2_inner .notes_required label {
  margin: 40px auto 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#senryu25 .container .bottom_links.coming, #senryu25 .container .bottom_links .coming {
  position: relative;
  padding: 10px;
  margin: 40px auto;
}
#senryu25 .container .bottom_links.coming::before, #senryu25 .container .bottom_links .coming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #004c88;
  opacity: 0.85;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#senryu25 .container .bottom_links.coming .coming_txt, #senryu25 .container .bottom_links .coming .coming_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  z-index: 3;
}
#senryu25 .container #contact {
  margin-bottom: 50px;
}
#senryu25 .container #contact .contBox {
  width: 100%;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #contact .contBox {
    border-radius: 25px;
  }
}
#senryu25 .container #contact .contBox h2 {
  background: #888888;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  box-sizing: border-box;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #contact .contBox h2 {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
}
#senryu25 .container #contact .contBox .inner {
  padding: 20px 20px 20px;
  box-sizing: border-box;
}
#senryu25 .container #contact .contBox .inner p {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #contact .contBox .inner p {
    font-size: 1.7rem;
  }
}
#senryu25 .container #contact .contBox .inner p.bold {
  font-size: 1.42em;
  color: #009c8f;
  display: block;
  margin: 5px auto;
  position: relative;
  width: 700px;
  line-height: 1.3;
}
#senryu25 .container #contact .contBox .inner p.bold sup {
  font-size: 0.4em;
  line-height: 1;
  vertical-align: top;
  position: relative;
  top: 0.6em;
}
#senryu25 .container #contact .contBox .inner p.bold small {
  display: block;
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  #senryu25 .container #contact .contBox .inner p.bold {
    width: 100%;
    margin: 10px 0;
  }
  #senryu25 .container #contact .contBox .inner p.bold .card {
    position: static;
    margin: 10px auto;
    max-width: 120px;
    width: 60%;
    display: block;
  }
}
#senryu25 .container #contact .contBox .inner a {
  color: #009fe8;
}
#senryu25 .container .cont_inner {
  background: #fff;
  border-radius: 40px;
}
#senryu25 .container .cont_inner + .cont_inner {
  margin-top: 20px;
}
#senryu25 .container .cont_inner .conv_txt {
  padding: 3% 8%;
  font-size: 18px;
  box-sizing: border-box;
  text-align: center;
  display: none;
}
#senryu25 .container .cont_inner .conv_txt .conv_txt_ttl {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution_ttl {
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution {
  border: 4px solid #e1dddd;
  border-radius: 10px;
  padding: 3%;
  margin: 14px auto 33px;
  text-align: left;
  line-height: 1.8;
  height: 22.1em;
  font-size: 15px;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution div {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 0 2%;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution div p {
  margin-bottom: 1.7em;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution div p a {
  text-decoration: underline;
}
#senryu25 .container .cont_inner .conv_txt .conv_btn {
  margin: 25px 0;
}
#senryu25 .container .cont_inner .conv_txt .conv_btn img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .conv_txt .conv_btn img {
    width: 34.375vw;
  }
}
#senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 {
  font-size: 18px;
  font-weight: bold;
  background: #eee;
  padding: 30px 1.5%;
  border-radius: 20px;
  margin-bottom: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 {
    font-size: 14px;
    padding: 10px;
  }
}
#senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 span {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 span {
    font-size: 16px;
  }
}
#senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 small {
  display: block;
}
#senryu25 .container .cont_inner .conv_txt .col {
  color: #e5001e;
}
#senryu25 .container .cont_inner .conv_txt .end_ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
#senryu25 .container .cont_inner .conv_txt .conv_end {
  text-align: left;
  margin-bottom: 2%;
  font-size: 15px;
  line-height: 1.5;
}
#senryu25 .container .cont_inner .conv_txt .conv_end span {
  display: block;
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .conv_txt {
    padding: 4.6875vw;
    padding-top: 20px;
    font-size: 3.75vw;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_txt_ttl {
    font-size: 4.375vw;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.6;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_coution_ttl {
    line-height: 1;
    margin-top: 20px;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_coution {
    border: 0.625vw solid #e1dddd;
    margin: 2.1875vw auto 5.3125vw;
    font-size: 14px;
    height: 17em;
    line-height: 1.5;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_btn {
    margin: 3.90625vw auto 2.34375vw;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_btn_link {
    margin-bottom: 4.6875vw;
    padding: 0 5%;
    width: 80%;
    height: 14.0625vw;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_end {
    font-size: 4.0625vw;
  }
  #senryu25 .container .cont_inner .conv_txt .conv_txt_ttl02 {
    line-height: 1.7;
  }
}
#senryu25 .container .cont_inner .toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #e5001e;
  border: 4px solid #fff;
  box-shadow: 5px 5px 0px 0px #3e3a39;
  margin: 0px auto;
  border-radius: 40px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.42em;
  transition: 0.5s;
}
#senryu25 .container .cont_inner .toggle.open {
  box-shadow: 0px 0px 0px 0px #3e3a39 !important;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .toggle {
    font-size: 2rem;
  }
}
#senryu25 .container .cont_inner .toggle::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url("../images/btn_arrow_pink.svg") no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .cont_inner .toggle::after {
    width: 20px;
    height: 20px;
  }
}
#senryu25 .container .cont_inner .toggle.blue {
  background: #fff;
  border-color: #074e86;
  color: #074e86;
}
#senryu25 .container .cont_inner .toggle.blue::after {
  background: url("../images/btn_arrow_blue_re.svg") no-repeat;
  background-size: contain;
}
#senryu25 .container .cont_inner .conv_txt .conv_coution_ttl {
  color: #e5001e;
  border: 1px solid #e5001e;
  padding: 0 5px;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 10px;
}
#senryu25 .container .cont_inner .conv_txt .col {
  color: #630;
}
#senryu25 .container .cont_inner .conv_txt .col p {
  line-height: 1.5;
  font-weight: 500;
}
#senryu25 .container .subttl {
  width: 60%;
  margin: 70px auto 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .subttl {
    width: 90%;
  }
}
#senryu25 .container .kyoro_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 30px auto;
  position: relative;
}
#senryu25 .container .kyoro_flex img {
  margin: 0;
}
#senryu25 .container .kyoro_flex .balloon {
  max-width: 200px;
  width: 58%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .kyoro_flex .balloon {
    width: 45%;
  }
}
#senryu25 .container .kyoro_flex .gif {
  max-width: 160px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .kyoro_flex .gif {
    width: 20%;
    margin-top: auto;
  }
}
#senryu25 .container .kyoro_flex .abso01 {
  position: absolute;
  width: 22%;
  bottom: -15px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .kyoro_flex .abso01 {
    width: 20%;
    border: 0;
  }
}
#senryu25 .container .kyoro_flex .abso02 {
  position: absolute;
  top: -70px;
  right: 0;
  width: 10%;
}
@media screen and (max-width: 768px) {
  #senryu25 .container .kyoro_flex {
    margin: 10px auto;
    align-items: flex-start;
  }
}
#senryu25 .container .blue_txt {
  text-align: center;
  color: #074e86;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 30px auto 15px;
}
#senryu25 .container .blue_txt .line {
  width: 20px;
}
#senryu25 .container .blue_txt .line:first-child {
  transform: rotateX(180deg);
}

.goals {
  width: 70%;
  margin: 0 auto 20px;
  display: block;
}

.sdgs-list {
  position: relative;
  max-width: 950px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  font-size: 0;
  padding-bottom: 0.75%;
}

.sdgs-list li {
  display: inline-block;
  box-sizing: border-box;
  width: 16%;
  margin-bottom: 14px;
  cursor: pointer;
}

.sdgs-list li:last-child {
  cursor: default;
}

@media screen and (max-width: 768px) {
  .sdgs-list li {
    width: 26.875vw;
  }
}
@media screen and (min-width: 769px) {
  .sdgs-list .thumb {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  }
  .sdgs-list .thumb:hover {
    filter: brightness(1.12);
    transform: scale(1.12);
  }
}
@media screen and (max-width: 768px) {
  .btnArea.web img {
    padding: 0 2.6041666667vw;
    box-sizing: border-box;
  }
}
.btnArea.web ul .before._check {
  display: none;
}
.btnArea.web ul .after {
  display: none;
}
.btnArea.web ul .after._check {
  display: block;
}
.btnArea.web ul .none {
  display: none;
}

@media screen and (max-width: 768px) {
  .btnArea.post img {
    padding: 0 2.6041666667vw;
    box-sizing: border-box;
  }
}
.btnArea.post ul .before._checks {
  display: none;
}
.btnArea.post ul .after {
  display: none;
}
.btnArea.post ul .after._checks {
  display: block;
}
.btnArea.post ul .none {
  display: none;
}

.notes_required label {
  cursor: pointer;
  transition-duration: 0.3s;
  position: relative;
  font-weight: 700;
}

.notes_required label .label_inner {
  padding-left: 25px;
  display: inline-block;
}

.notes_required label .label_inner:before {
  content: "";
  width: 1.12em;
  height: 1.12em;
  background: #fff;
  border: 1px solid #630;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
}

.notes_required._check label .label_inner:after {
  content: "";
  width: 20px;
  height: 11px;
  border-top: 4px solid #e5001e;
  border-right: 4px solid #e5001e;
  transform: rotate(130deg);
  position: absolute;
  top: 85%;
  left: 0;
  margin-top: -1.12em;
}

.notes_required label input {
  position: relative;
  z-index: -1;
}

.btnArea .conv_btn_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  width: 390px;
  height: 92px;
  background-color: #ccc;
  border-radius: 50vw;
  pointer-events: none;
  box-shadow: 5px 5px 0px 0px #3e3a39;
  border: 4px solid #fff;
}
.btnArea .conv_btn_link:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .btnArea .conv_btn_link:after {
    border-width: 1.875vw 0 1.875vw 2.1875vw;
  }
}
@media screen and (max-width: 768px) {
  .btnArea .conv_btn_link {
    margin-bottom: 4.6875vw;
    padding: 0 5%;
    width: 80%;
    height: 14.0625vw;
  }
}
.btnArea._check .conv_btn_link {
  pointer-events: auto;
  background-color: #e5001e;
}

@media screen and (max-width: 768px) {
  .notes_required label {
    display: inline-block;
  }
  .notes_required label .label_inner {
    padding-left: 9.6875vw;
    display: inline-block;
    text-align: left;
    line-height: 1.8;
  }
  .notes_required label .label_inner:before {
    width: 4.6875vw;
    height: 4.6875vw;
    top: 3.90625vw;
    left: 3.90625vw;
    margin-top: 0;
  }
  .notes_required._check label .label_inner:after {
    content: "";
    width: 4.6875vw;
    height: 1.5625vw;
    top: 3.90625vw;
    left: 3.90625vw;
    margin-top: 0;
    border-top: 0.9375vw solid #630;
    border-right: 0.9375vw solid #630;
  }
}
/*modal*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 1.5%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  box-sizing: border-box;
  /*&:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }*/
}
@media screen and (min-width: 769px) {
  .modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .modal-container {
    padding: 14.0625vw 4.53125vw 92px;
  }
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 950px;
  width: 100%;
}

.modal-content {
  background: #fff;
  border: 8px solid #fff;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.modal-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .modal-content .close {
    top: 3.75vw;
    right: 3.75vw;
    width: 5.46875vw;
    height: 5.46875vw;
    line-height: 0;
  }
}
.modal-content .txt-wrap p {
  line-height: 1;
  font-weight: 700;
}
.modal-content .txt-wrap .title-wrap {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 3%;
  position: relative;
}
.modal-content .txt-wrap .title-txt {
  font-size: 36px;
  text-align: left;
  margin: 0 1em;
  white-space: nowrap;
  line-height: 1.5;
  order: 2;
}
.modal-content .txt-wrap .goal-txt {
  font-size: 22px;
  display: block;
}
.modal-content .txt-wrap .ttl_icon {
  order: 1;
  width: 17.9%;
}
.modal-content .txt-wrap .icon-wrap {
  position: absolute;
  bottom: 4%;
  right: 6.5%;
}
.modal-content .txt-wrap .icon-wrap .kyoro {
  width: 125px;
  height: 144px;
}
.modal-content .txt-wrap .txt {
  text-align: center;
  padding: 45px 1.5% 15px;
  color: #fff;
}
.modal-content .txt-wrap .txt p {
  font-size: 20px;
  letter-spacing: 0.075em;
  line-height: 1.7;
}
.modal-content .txt-wrap .txt p.url {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.modal-content .txt-wrap .txt p.url a {
  color: #fff;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media screen and (max-width: 768px) {
  .modal-content {
    border-radius: 4.6875vw;
    border: 1.25vw solid #fff;
  }
  .modal-content .txt-wrap .title-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 4.6875vw;
    position: relative;
  }
  .modal-content .txt-wrap .title-txt {
    font-size: 6.25vw;
    margin: 0;
    white-space: nowrap;
    line-height: 1.45;
    order: 2;
  }
  .modal-content .txt-wrap .goal-txt {
    font-size: 5vw;
  }
  .modal-content .txt-wrap .ttl_icon {
    order: 1;
    width: 36.40625vw;
    margin-bottom: 4.6875vw;
  }
  .modal-content .txt-wrap .icon-wrap {
    bottom: auto;
    top: 9.375vw;
    right: 9.84375vw;
  }
  .modal-content .txt-wrap .icon-wrap .kyoro {
    width: 28.28125vw;
    height: 32.5vw;
  }
  .modal-content .txt-wrap .txt {
    text-align: center;
    padding: 7.03125vw 1.5% 9.375vw;
    padding: 5vw;
  }
  .modal-content .txt-wrap .txt p {
    font-size: 4.375vw;
    line-height: 1.5;
  }
  .modal-content .txt-wrap .txt p.url {
    font-size: 3.125vw;
    line-height: 1.25;
    margin-top: 7.03125vw;
  }
}

.modal-content-02 {
  overflow-y: scroll;
  height: 700px;
  padding: 60px 70px;
  box-sizing: border-box;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .modal-content-02 {
    overflow: auto;
    height: auto;
    padding: 7.8125vw;
  }
}
.modal-content-02 .modal_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .modal-content-02 .modal_ttl {
    width: 65.1041666667vw;
    margin: 0 auto 6.5104166667vw;
  }
}
.modal-content-02 .modal_btn {
  display: block;
  text-align: center;
  margin-top: 50px;
}

#modal01 .txt-wrap .txt {
  background-color: #e5001e;
}
#modal01 .title-wrap .title-txt {
  color: #e5001e;
}
#modal01 #closeSvg {
  fill: #e5001e;
}

#modal02 .txt-wrap .txt {
  background-color: #d7a600;
}
#modal02 .title-wrap .title-txt {
  color: #d7a600;
}
#modal02 #closeSvg {
  fill: #d7a600;
}

#modal03 .txt-wrap .txt {
  background-color: #00973b;
}
#modal03 .title-wrap .title-txt {
  color: #00973b;
}
#modal03 #closeSvg {
  fill: #00973b;
}

#modal04 .txt-wrap .txt {
  background-color: #c60f28;
}
#modal04 .title-wrap .title-txt {
  color: #c60f28;
}
#modal04 #closeSvg {
  fill: #c60f28;
}

#modal05 .txt-wrap .txt {
  background-color: #e83819;
}
#modal05 .title-wrap .title-txt {
  color: #e83819;
}
#modal05 #closeSvg {
  fill: #e83819;
}

#modal06 .txt-wrap .txt {
  background-color: #00a6d9;
}
#modal06 .title-wrap .title-txt {
  color: #00a6d9;
}
#modal06 #closeSvg {
  fill: #00a6d9;
}

#modal07 .txt-wrap .txt {
  background-color: #fabd00;
}
#modal07 .title-wrap .title-txt {
  color: #fabd00;
}
#modal07 #closeSvg {
  fill: #fabd00;
}

#modal08 .txt-wrap .txt {
  background-color: #970b31;
}
#modal08 .title-wrap .title-txt {
  color: #970b31;
}
#modal08 #closeSvg {
  fill: #970b31;
}

#modal09 .txt-wrap .txt {
  background-color: #ed6a02;
}
#modal09 .title-wrap .title-txt {
  color: #ed6a02;
}
#modal09 #closeSvg {
  fill: #ed6a02;
}

#modal10 .txt-wrap .txt {
  background-color: #dc007a;
}
#modal10 .title-wrap .title-txt {
  color: #dc007a;
}
#modal10 #closeSvg {
  fill: #dc007a;
}

#modal11 .txt-wrap .txt {
  background-color: #f5a200;
}
#modal11 .title-wrap .title-txt {
  color: #f5a200;
}
#modal11 #closeSvg {
  fill: #f5a200;
}

#modal12 .txt-wrap .txt {
  background-color: #d39200;
}
#modal12 .title-wrap .title-txt {
  color: #d39200;
}
#modal12 #closeSvg {
  fill: #d39200;
}

#modal13 .txt-wrap .txt {
  background-color: #427935;
}
#modal13 .title-wrap .title-txt {
  color: #427935;
}
#modal13 #closeSvg {
  fill: #427935;
}

#modal14 .txt-wrap .txt {
  background-color: #0075ba;
}
#modal14 .title-wrap .title-txt {
  color: #0075ba;
}
#modal14 #closeSvg {
  fill: #0075ba;
}

#modal15 .txt-wrap .txt {
  background-color: #56c02b;
}
#modal15 .title-wrap .title-txt {
  color: #56c02b;
}
#modal15 #closeSvg {
  fill: #56c02b;
}

#modal16 .txt-wrap .txt {
  background-color: #004c88;
}
#modal16 .title-wrap .title-txt {
  color: #004c88;
}
#modal16 #closeSvg {
  fill: #004c88;
}

#modal17 .txt-wrap .txt {
  background-color: #003067;
}
#modal17 .title-wrap .title-txt {
  color: #003067;
}
#modal17 #closeSvg {
  fill: #003067;
}

.conv_wrap {
  background: #fff;
  border-radius: 48px;
  max-width: 950px;
  margin: auto;
  margin-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .conv_wrap {
    border-radius: 9.375vw;
  }
}
.conv_wrap .conv_ttl {
  background: #e5001e;
  border-radius: 50vw;
  padding: 2.75%;
  border: 8px solid #fff;
  position: relative;
  cursor: pointer;
}
.conv_wrap .conv_ttl:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.35s ease-in-out;
}
.conv_wrap .conv_ttl.active:after {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_ttl {
    padding: 5.3125vw;
    line-height: 0;
    border: 1.25vw solid #fff;
  }
  .conv_wrap .conv_ttl img {
    height: 5.15625vw;
  }
  .conv_wrap .conv_ttl:after {
    border-width: 1.71875vw 0 1.71875vw 1.875vw;
    right: 3.90625vw;
  }
}
.conv_wrap .conv_txt {
  padding: 3% 8%;
  color: #630;
  font-size: 18px;
  display: none;
}
.conv_wrap .conv_txt_ttl {
  font-size: 24px;
  margin-bottom: 30px;
}
.conv_wrap .conv_txt_ttl02 {
  font-size: 18px;
  font-weight: bold;
  background: #eee;
  padding: 30px 1.5%;
  border-radius: 20px;
  margin-bottom: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_txt_ttl02 {
    margin-bottom: 6.25vw;
    margin-top: 9.375vw;
  }
}
.conv_wrap .conv_txt_ttl02 span {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_txt {
    padding: 4.6875vw;
    font-size: 3.75vw;
  }
  .conv_wrap .conv_txt_ttl {
    font-size: 4.375vw;
    margin-bottom: 6.25vw;
    margin-top: 0;
  }
  .conv_wrap .conv_txt_ttl02 {
    line-height: 1.8;
    font-size: 4.0625vw;
    margin-bottom: 6.25vw;
  }
  .conv_wrap .conv_txt_ttl02 span {
    display: block;
    font-size: 5vw;
    margin-top: 3.125vw;
  }
}
.conv_wrap .block {
  display: block;
}
.conv_wrap .conv_coution_ttl {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_coution_ttl {
    margin-top: 4.6875vw;
  }
}
.conv_wrap .conv_coution {
  border: 4px solid #e1dddd;
  border-radius: 10px;
  padding: 3%;
  margin: 14px auto 33px;
  text-align: left;
  line-height: 1.8;
  height: 11.9em;
  font-size: 15px;
}
.conv_wrap .conv_coution div {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 0 2%;
}
.conv_wrap .conv_coution div::-webkit-scrollbar {
  width: 10px;
}
.conv_wrap .conv_coution div::-webkit-scrollbar-thumb {
  background-color: #e1dddd;
  border-radius: 50vw;
}
.conv_wrap .conv_coution div p {
  margin-bottom: 1.7em;
}
.conv_wrap .conv_coution div p > span {
  display: block;
  text-indent: -0.5em;
  padding-left: 0.5em;
  font-weight: normal;
  margin-bottom: 0.25em;
}
.conv_wrap .conv_coution div p > span.kome {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 13px;
}
.conv_wrap .conv_coution div p > span.num {
  text-indent: -1em;
  padding-left: 1em;
}
.conv_wrap .conv_coution div p > span.list {
  text-indent: 0;
  padding-left: 0;
  display: flex;
}
.conv_wrap .conv_coution div p > span.list span {
  width: 19.5%;
}
.conv_wrap .conv_coution div a {
  color: #630;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_coution {
    border: 0.625vw solid #e1dddd;
    margin: 2.1875vw auto 5.3125vw;
    font-size: 3.75vw;
  }
  .conv_wrap .conv_coution div p > span.kome {
    font-size: 3.125vw;
  }
  .conv_wrap .conv_coution div p > span.list {
    display: block;
  }
  .conv_wrap .conv_coution div p > span.list span {
    width: inherit;
  }
  .conv_wrap .conv_coution_ttl {
    line-height: 1;
  }
}
.conv_wrap .conv_btn {
  margin: 25px 0 45px;
}
.conv_wrap .conv_btn li {
  position: relative;
  display: inline-block;
}
.conv_wrap .conv_btn li:after {
  display: block;
  content: "こちらのキャンペーンは終了しました。";
  white-space: pre;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(70, 70, 70, 0.85);
  width: 100%;
  height: 100%;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_btn li:after {
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_btn {
    margin: 3.90625vw auto 2.34375vw;
  }
}
.conv_wrap .conv_end {
  text-align: left;
  margin-bottom: 2%;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end {
    font-size: 4.0625vw;
  }
}
.conv_wrap .conv_end span {
  display: block;
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
}
.conv_wrap .conv_end .contact {
  text-align: center;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end .contact {
    margin: 6.25vw 0;
  }
}
.conv_wrap .conv_end .contact p {
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.8;
}
.conv_wrap .conv_end .contact .ttl {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end .contact .ttl {
    font-size: 5vw;
  }
}
.conv_wrap .conv_end .contact .mail {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.conv_wrap .conv_end .contact .mail a {
  color: #630;
}
.conv_wrap .conv_end .contact .mail::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../images/icon_mail.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end .contact .mail::before {
    width: 3em;
    height: 3em;
  }
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end .contact .mail {
    font-size: 4.6875vw;
    margin-top: 4.6875vw;
    margin-bottom: 4.6875vw;
    text-align: left;
    line-height: 1.4;
  }
}
.conv_wrap .conv_end .contact .time {
  margin-bottom: 1em;
}
.conv_wrap .conv_end [data-ruby] {
  position: relative;
}
.conv_wrap .conv_end [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.15em;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 0.5em;
}
@media screen and (max-width: 768px) {
  .conv_wrap .conv_end [data-ruby]::before {
    top: -1.5em;
    width: 120%;
    text-align: left;
    letter-spacing: normal;
    font-size: 2.34375vw;
  }
}
.conv_wrap .conv_end rt {
  display: none;
}
.conv_wrap .col {
  color: #e5001e;
}
.conv_wrap .col .end_ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .conv_wrap .col .end_ttl {
    font-size: 4.6875vw;
  }
}

.conv_wrap_02 {
  padding: 60px 40px;
  box-sizing: border-box;
  margin-bottom: 8%;
}
@media screen and (max-width: 768px) {
  .conv_wrap_02 {
    margin-bottom: 16%;
  }
}
.conv_wrap_02 .conv_btn {
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .conv_wrap_02 .conv_btn {
    margin: 7.8125vw 0 0;
  }
}

.mb-8 {
  margin-bottom: 8%;
}
@media screen and (max-width: 768px) {
  .mb-8 {
    margin-bottom: 30%;
  }
}

.txt_link {
  display: block;
  color: #0075c2 !important;
  text-decoration: underline !important;
  font-size: 22px;
  margin-top: 60px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .txt_link {
    font-size: 5vw;
    margin-top: 9.375vw;
  }
}

.btn_flex {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .btn_flex {
    display: block;
    padding: 0 4.6875vw;
  }
}
.btn_flex li {
  transition: all 0.35s ease-in-out;
  margin-right: 30px;
  width: 270px;
}
@media screen and (max-width: 768px) {
  .btn_flex li {
    margin-right: 0;
    margin-bottom: 4.6875vw;
    width: 100%;
  }
}
.btn_flex li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .btn_flex li:last-child {
    margin-bottom: 0;
  }
}
.btn_flex li .modal-open {
  transition: all 0.35s ease-in-out;
}
.btn_flex li .modal-open:hover {
  opacity: 0.75;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
.btn_flex li .tehon_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .btn_flex li .tehon_flex {
    margin-bottom: 4.6875vw;
  }
}
.btn_flex li .tehon_flex .flex:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .btn_flex li .tehon_flex .flex:first-child {
    margin-right: 4.6875vw;
  }
}
.btn_flex li .tehon_flex .flex p {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .btn_flex li .tehon_flex .flex p {
    font-size: 4.375vw;
  }
}
.btn_flex li .tehon_flex .flex p a {
  color: #8cd9ff;
}
@media screen and (max-width: 768px) {
  .btn_flex li .tehon_flex .flex img {
    width: 18.75vw;
  }
}
.btn_flex li .sankou {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .btn_flex li .sankou {
    font-size: 4.375vw;
    margin-bottom: 3.125vw;
  }
}

.fixed_btn {
  position: absolute;
  right: 0;
  top: 63px;
  z-index: 10;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .fixed_btn {
    width: 120px;
    position: fixed;
    top: auto;
    bottom: 100px;
    right: 2.34375vw;
  }
}
.fixed_btn a {
  transition: all 0.35s ease-in-out;
}
.fixed_btn a:hover {
  opacity: 0.75;
}

.fixed_btn.sticky {
  position: fixed !important;
  top: 0 !important;
}

.otherPage {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .otherPage {
    margin-top: 4.6875vw;
  }
}
.otherPage .bl-other {
  position: relative;
  max-width: 580px;
  margin: 120px auto 120px;
}
@media screen and (max-width: 768px) {
  .otherPage .bl-other {
    max-width: 92.1875vw;
    margin: 0 auto 28.125vw;
  }
}
.otherPage .bl-other .otherTxt {
  width: 80%;
  position: absolute;
  color: #630;
  top: 50%;
  left: 50%;
  font-size: 25px;
  line-height: 2.2;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .otherPage .bl-other .otherTxt {
    font-size: 4.375vw;
    letter-spacing: normal;
    width: 85%;
    line-height: 1.6;
  }
}
.otherPage .bl-other .otherTxt p {
  font-weight: bold;
}
.otherPage .bl-other .ss3 {
  width: 250px;
  height: 270px;
  background: url(../images/kyoro_ss3.png) no-repeat;
  transform: scale(0.75);
  transform-origin: bottom right;
  position: absolute;
  right: 0;
  bottom: -15%;
  animation: spriteAmineS 0.9s steps(4) infinite;
}
@media screen and (max-width: 768px) {
  .otherPage .bl-other .ss3 {
    transform: scale(1.5);
    background-size: 100vw;
    animation: spriteAmineS2 0.9s steps(4) infinite;
    width: 28.125vw;
    height: 28.125vw;
    right: -7.8125vw;
    bottom: -21.875vw;
  }
}
.otherPage .btn_other {
  display: block;
  max-width: 593px;
  margin: 50px auto;
}

.color_red {
  color: #e5001e;
  padding: 0 !important;
  text-indent: 0 !important;
  margin: 0 !important;
}

.award_link {
  margin: 30px auto 40px;
}
.award_link a {
  margin: 0 auto;
  display: block;
  max-width: 400px;
  width: 70%;
}
.award_link a img {
  width: 100%;
  max-width: none;
}

.senryu_award_page h1 img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.senryu_award_page #mainBox .contBox {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox {
    margin-bottom: 30px !important;
  }
}
.senryu_award_page #mainBox .contBox .inner {
  padding: 40px 30px !important;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox .inner {
    padding: 20px !important;
  }
}
.senryu_award_page #mainBox .contBox .inner + .inner {
  border-top: 1px solid #8cd9ff;
}
.senryu_award_page #mainBox .contBox .ttl {
  max-width: 330px;
  margin: 0 auto 40px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox .ttl {
    margin-bottom: 20px;
  }
}
.senryu_award_page #mainBox .contBox .ttl img {
  width: 100%;
}
.senryu_award_page #mainBox .contBox .cont {
  max-width: 240px;
  width: 30%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox .cont {
    width: 48%;
  }
}
.senryu_award_page #mainBox .contBox .cont img {
  width: 100%;
}
.senryu_award_page #mainBox .contBox .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox .flex {
    justify-content: space-between;
  }
}
.senryu_award_page #mainBox .contBox .flex .cont {
  margin: 0;
}
.senryu_award_page #mainBox .contBox .flex .cont:nth-child(2), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(3), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(7), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(8), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(5), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(10) {
  margin-left: 5%;
}
.senryu_award_page #mainBox .contBox .flex .cont:nth-child(4), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(9) {
  margin-left: 17.5%;
}
.senryu_award_page #mainBox .contBox .flex .cont:nth-child(5), .senryu_award_page #mainBox .contBox .flex .cont:nth-child(10) {
  margin-right: 17.5%;
}
.senryu_award_page #mainBox .contBox .flex .cont:nth-child(n+4) {
  margin-top: 5%;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox .flex .cont {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .senryu_award_page #mainBox .contBox .flex .cont:nth-child(n+3) {
    margin-top: 4%;
  }
}
.senryu_award_page #mainBox .contBox.commentBox .inner .ttl_txt {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox.commentBox .inner .ttl_txt {
    font-size: 2.4rem !important;
  }
}
.senryu_award_page #mainBox .contBox.commentBox .inner .detail {
  font-size: 2.2rem;
  margin: 20px 0;
  font-weight: 500 !important;
}
.senryu_award_page #mainBox .contBox.commentBox .inner .detail strong {
  font-weight: 700 !important;
  margin-bottom: 10px;
  display: block;
}
.senryu_award_page #mainBox .contBox.commentBox .inner .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.senryu_award_page #mainBox .contBox.commentBox .inner .flex .img {
  width: 25%;
}
.senryu_award_page #mainBox .contBox.commentBox .inner .flex p {
  width: 73%;
  text-align: left !important;
}
@media screen and (max-width: 768px) {
  .senryu_award_page #mainBox .contBox.commentBox .inner .flex {
    display: block;
  }
  .senryu_award_page #mainBox .contBox.commentBox .inner .flex .img {
    width: 50%;
    margin: 10px auto 20px;
  }
  .senryu_award_page #mainBox .contBox.commentBox .inner .flex p {
    width: 100% !important;
  }
}
.senryu_award_page #mainBox .contBox.commentBox .inner .comment {
  text-align: left !important;
  font-weight: 500 !important;
}

#summer24.senryu_award_page .container #mv .introtxt p {
  margin: 30px auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #summer24.senryu_award_page .container #mv .introtxt p {
    margin: 15px auto;
  }
}/*# sourceMappingURL=index.css.map */