.solution-page {
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

/*
@include perfect_vw(1200, 320, 60, 14, font-size);
*/
/*
  @include lineHeightCrop(1.75);
*/
: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 {
  from, 20%, 53%, 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.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  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 {
  from, 50%, 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 {
  from, 11.1%, 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(0px) 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(0px) 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(0px) 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(0px) 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(0px) 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(0px) 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(0px) 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(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  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__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 {
  -webkit-backface-visibility: visible;
  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 {
  -webkit-backface-visibility: visible !important;
  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 {
  -webkit-backface-visibility: visible !important;
  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;
  -webkit-backface-visibility: visible !important;
  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);
  -webkit-backface-visibility: visible !important;
  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;
}

.js-fadeContents {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.25s ease;
}
.js-fadeContents.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-extendContents {
  margin: 0 auto;
  transition: 1s ease;
}
.js-extendContents.is-show {
  width: 100% !important;
}

.js-shrinkContents {
  transition: 1s ease;
}
.js-shrinkContents.is-show {
  transform: scale(1) !important;
}

* {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

html.is-fixed {
  overflow: hidden;
}

body {
  background-color: #FFF;
  color: #111111;
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt" 1;
  width: 100vw;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
img [data-objectfit=cover] {
  -o-object-fit: cover;
     object-fit: cover;
}

a,
button {
  text-decoration: none;
}
a:hover, a:active,
button:hover,
button:active {
  outline-width: 0;
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (min-width: 1024px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }
}
.pc-none {
  display: block;
}
@media screen and (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sp-none {
    display: block;
  }
}

.text__gn {
  color: #00B1B1;
}

.text__line-og {
  background: linear-gradient(transparent 82%, #F5AB50 20%);
}

.text__line-yel {
  -webkit-text-decoration: underline 5px solid #FFE500;
          text-decoration: underline 5px solid #FFE500;
  text-underline-offset: 3px;
}

.-center {
  text-align: center;
}

.text__bold {
  font-weight: 600;
}

.mt-16 {
  margin-top: 16px;
}

.mb-0 {
  margin-bottom: 0;
}

.l-container {
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .l-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-br.-sp {
    display: none;
  }
}
.c-br.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-br.-pc {
    display: inline-block;
  }
}

.c-button {
  background: linear-gradient(135deg, #FFA359, #FF8320);
  border-radius: 60px;
  display: block;
  color: #FFF;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  height: 65px;
  line-height: 65px;
  letter-spacing: 0.05em;
  width: 100%;
  box-sizing: border-box;
}
.c-button.dl {
  background: linear-gradient(135deg, #69CDA9, #00B1B1);
}
@media screen and (min-width: 1024px) {
  .c-button,.c-button.dl {
    height: 75px;
    font-size: 18px;
    line-height: 75px;
  }
}

.c-button__arrow {
  background: #FFF;
  width: 13.87vw;
  height: 13.87vw;
  border-radius: 50%;
  display: block;
  text-align: center;
  box-shadow: 8px 8px 32px #DFEBEB;
}
@media screen and (min-width: 1024px) {
  .c-button__arrow {
    width: 52px;
    height: 52px;
  }
}
.c-button__arrow span {
  position: relative;
  width: 5.33vw;
  height: 4vw;
  display: inline-block;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .c-button__arrow span {
    width: 20px;
    height: 14px;
    top: 46%;
  }
}
.c-button__arrow span::before {
  content: "";
  background: url(https://biz.mynavi.jp/solution/img/icon_arrow.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 5.33vw;
  height: 4vw;
}
@media screen and (min-width: 1024px) {
  .c-button__arrow span::before {
    width: 20px;
    height: 14px;
  }
}

.c-button.-tel {
  line-height: 1.2;
  padding: 7px 0;
  background: linear-gradient(135deg, #69CDA9, #00B1B1);
  width: 100%;
}

.c-balloon {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  width: auto;
  min-width: 103px;
  height: 42px;
  color: #fff;
  line-height: 42px;
  text-align: center;
  background: #00B1B1;
  z-index: 0;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}
.c-balloon p {
  margin-bottom: 0;
}
.c-balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40%;
  margin-left: 0;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 14px 0;
  border-color: transparent #00B1B1 transparent transparent;
  z-index: -1;
}

.c-balloon.arrow-left::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40%;
  margin-left: 0;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 14px 12px;
  border-color: transparent transparent transparent #00B1B1;
  z-index: -1;
}

.c-head {
  font-weight: 600;
  font-size: 6.4vw;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-head {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-balloon p {
  font-size:2.5vw;
　}
}


.c-head.-grad {
  display: inline-block;
  background: linear-gradient(-45deg, #6ACEAA, #00B1B1);
  background: -webkit-linear-gradient(-45deg, #6ACEAA, #00B1B1);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.08em;
}

.c-text {
  font-size: 4.27vw;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .c-text {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }
}

.c-text__notice {
  font-weight: 300;
  font-size: 3.2vw;
  letter-spacing: 0.08em;
  color: #8A8A8A;
}
@media screen and (min-width: 1024px) {
  .c-text__notice {
    font-size: 12px;
  }
}

.c-text__bold {
  font-size: 4.8vw;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-text__bold {
    font-size: 20px;
  }
}

.c-text__large {
  font-size: 5.33vw;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.c-text__md {
  font-weight: 300;
  font-size: 3.73vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .c-text__md {
    font-size: 16px;
    line-height: 1.625;
  }
}

.c-text__sm {
  font-weight: 300;
  font-size: 3.2vw;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 1024px) {
  .c-text__sm {
    font-size: 12px;
  }
}

.p-home a {
  transition: all 0.3s 0s ease;
}
.p-home a:hover,.p-homeSticky a:hover {
  opacity: 0.7;
  color: #FFF !important;
}

.p-homeKv {
  position: relative;
  margin-top: 0;
  background: #F7FDFD;
  height: 164vw;
}
@media screen and (min-width: 1024px) {
  .p-homeKv {
    background: #FFF;
    height: 650px;
  }
}
.p-homeKv .l-container {
  display: grid;
}
@media screen and (min-width: 1024px) {
  .p-homeKv .l-container {
    display: block;
    position: relative;
  }
  .p-homeKv .l-container::before {
    content: "";
    background: url(https://biz.mynavi.jp/solution/img/kv_circle.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 200px;
    right: -43px;
    width: 154px;
    height: 154px;
  }
}
.p-homeKv__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 303px;
  background-image: url(https://biz.mynavi.jp/solution/img/kv_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__bg {
    height: 560px;
    background-image: url(https://biz.mynavi.jp/solution/img/kv_pc.png);
  }
}
.p-homeKv h1 {
  margin-top: 11px;
  margin-bottom: 23px;
  order: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 1024px) {
  .p-homeKv h1 {
    margin-top: 82px;
    max-width: 596px;
    margin-bottom: 9px;
    font-size: 24px;
  }
}
.p-homeKv h1 span {
  vertical-align: -webkit-baseline-middle;
}
.p-homeKv h1 img {
  height: 4vw;
  vertical-align: -webkit-baseline-middle;
}
@media screen and (min-width: 1024px) {
  .p-homeKv h1 img {
    height: 28px;
  }
}
.p-homeKv__bgColor {
  font-size: 3.2vw;
  font-weight: 600;
  color: #FFF;
  background: #00B1B1;
  padding: 4px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.p-homeKv__text{
  font-size: 1.2vw;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__bgColor {
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 6px;
    vertical-align: text-bottom;
  }
}
.p-homeKv__subTitle {
  order: 2;
  width: 50.4vw;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__subTitle {
    width: 42.9vw;
    margin-bottom: 27px;
    max-width: 586px;
  }
}
.p-homeKv__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  order: 3;
  margin-top: 6.93vw;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__list {
    gap: 12px;
    margin-top: 52px;
  }
}
.p-homeKv__item {
  background: #FFF;
  width: calc((100% - 20px) / 3);
  padding: 2.67vw 1.87vw;
  box-shadow: 8px 8px 32px #DFEBEB;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__item {
    width: calc((100% - 60px) / 6);
    padding: 10px 10px 16px 9px;
  }
}
.p-homeKv__item img {
  width: 14.93vw;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__item img {
    max-width: 90px;
    margin-bottom: 9px;
  }
}
.p-homeKv__item p {
  font-size: 2.67vw;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__item p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-homeKv__btn .c-button {
  box-shadow: 8px 8px 32px #DFEBEB;
}

/* ボタンコンテナ */
.p-homeKv__btnContainer {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .p-homeKv__btnContainer {
    flex-direction: row;
  }
}

/* ボタンの幅を統一 */
.p-homeKv__btn {
  flex: 1;
  margin: 0;
}

/* スマホでのボタン間隔 */
.p-homeKv__btn:not(:last-child) {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-homeKv__btn:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-homeKv__btnArea {
  flex-direction: column; /* 1列に並べるために縦方向に配置 */
  align-items: flex-start;
  order: 4;
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__btnArea {
    width: 100%;
    max-width: 463px;
  }
}
.p-homeKv__btnText {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .p-homeKv__btnText {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-homeKv__btnText:before {
  content: "";
  background: url(https://biz.mynavi.jp/solution/img/icon_diagonal.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: -30px;
  transform: scale(-1, 1);
  width: 20px;
  height: 18px;
}
.p-homeKv__btnText:after {
  content: "";
  background: url(https://biz.mynavi.jp/solution/img/icon_diagonal.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 3px;
  right: -30px;
  width: 20px;
  height: 18px;
}
.p-homeKv__btnArea {
  flex-direction: column;
  align-items: flex-start;
  order: 4;
  margin-top: 12px;
  text-align: center;
}

/* ボタンコンテナを追加 */
.p-homeKv__btnContainer {
  display: flex;
  gap: 16px; /* ボタン間の間隔 */
  width: 100%;
  flex-direction: column; /* スマホでは縦並び */
}

@media screen and (min-width: 768px) {
  .p-homeKv__btnContainer {
    flex-direction: row; /* タブレット以上で横並び */
  }
}

/* ボタンの幅を調整 */
.p-homeKv__btn {
  flex: 1; /* 等幅で並べる */
  margin: 0; /* デフォルトのマージンをリセット */
}

/* スマホでのボタン間隔 */
.p-homeKv__btn:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .p-homeKv__btn:not(:last-child) {
    margin-bottom: 0; /* タブレット以上ではマージンボトムを削除 */
  }
}

@media screen and (min-width: 1024px) {
  .p-homeKv__btnArea {
    width: 100%;
    max-width: 463px;
  }
}

.p-homeWorries {
  padding-top: 100px;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries {
    padding-top: 94px;
  }
}
.p-homeWorries__title {
  font-size: 6.4vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries__title {
    font-size: 28px;
  }
}
.p-homeWorries__title .text__line-og {
  font-size: 4.8vw;
  margin-top: 16px;
  display: inline-block;
  line-height: 4.8vw;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries__title .text__line-og {
    font-size: 18px;
    line-height: 18px;
    margin-top: 11px;
  }
}
.p-homeWorries__list {
  padding-left: 0;
  padding-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries__list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px 25px;
    padding-top: 45px;
  }
}
.p-homeWorries__item {
  background: #F2FBFB;
  position: relative;
  padding: 28.27vw 5.33vw 9.33vw;
  margin-top: 90px;
  margin-bottom: 37.87vw;
  border-radius: 6px;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries__item {
    width: calc((100% - 50px) / 3);
    padding: 106px 30px 35px;
    margin-bottom: 0;
  }
}
.p-homeWorries__item img {
  position: absolute;
  top: -95px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-homeWorries__item img {
    width: 100%;
  }
}
.p-homeWorries__item p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 4.8vw;
  letter-spacing: 0.15em;
  line-height: 1.8;
  color: #111111;
}
@media screen and (min-width: 1024px) {
  .p-homeWorries__item p {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    min-height: 98px;
  }
}
.p-homeWorries__item .c-button__arrow {
  position: absolute;
  bottom: -6.67%;
  left: 50%;
  transform: translateX(-50%);
}
.p-homeWorries__balloons {
  margin: 0 auto;
  max-width: 450px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
@media screen and (min-width: 1024px) {
  .p-homeLoad {
    padding-top: 125px;
    max-width: 875px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeLoad__balloon {
    margin-bottom: 20px;
  }
  .p-homeLoad__balloon::after {
    left: 47%;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeLoad__image {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .p-homeAcceptance {
    padding-bottom: 90px;
  }
}

.p-homeSuggestion {
  margin-top: -60px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion {
    padding: 100px 0;
    background: #F5F5F5;
  }
}
.p-homeSuggestion h2 {
  font-size: 6.4vw;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion h2 {
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.1em;
    letter-spacing: 0.03em;
  }
}
.p-homeSuggestion h2 img {
  height: 5.6vw;
  vertical-align: middle;
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion h2 img {
    height: 27px;
  }
}
.p-homeSuggestion h2 .c-text__bold {
  letter-spacing: 0;
}
.p-homeSuggestion h2 .p-homeSuggestion__titleFirst {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 4.8vw;
  line-height: 1.5;
}
.p-homeSuggestion h2 .p-homeSuggestion__titleFirst br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion h2 .p-homeSuggestion__titleFirst {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 18px;
    margin-bottom: -44px;
  }
}
.p-homeSuggestion h2 .p-homeSuggestion__titleSecond {
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion h2 .p-homeSuggestion__titleSecond {
    font-size: 28px;
  }
}
.p-homeSuggestion h4 {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion h4 {
    margin-bottom: 14px;
    text-align: left;
  }
}
.p-homeSuggestion__image {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-homeSuggestion__image img {
    width: 100%;
  }
}
.p-homeSuggestion .c-text {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion .c-text {
    margin-bottom: 16px;
  }
  .p-homeSuggestion .c-text.-w460 {
    max-width: 460px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion .c-text__bold {
    margin-bottom: 8px;
  }
  .p-homeSuggestion .c-text__bold.-ex {
    font-size: 18px;
  }
}
.p-homeSuggestion .-center {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__inner {
    padding: 40px 0 48px 60px;
    background: #FFF;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__textArea {
    max-width: 480px;
  }
}

.p-homeSuggestion__list {
  counter-reset: num;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__list {
    margin-top: 50px;
  }
}

.p-homeSuggestion__item {
  counter-increment: num;
  padding-bottom: 40px;
  padding-top: 60px;
  margin-top: -60px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__item {
    padding-bottom: 0;
    position: relative;
    padding-top: 90px;
    margin-top: -90px;
  }
  .p-homeSuggestion__item::after {
    content: "";
    position: absolute;
  }
  .p-homeSuggestion__item.-con01::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img01_pc.png);
    width: 400px;
    height: 354px;
    top: 233px;
    right: 74px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-homeSuggestion__item.-con02::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img02_pc.png);
    width: 431px;
    height: 331px;
    top: 235px;
    right: 48px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-homeSuggestion__item.-con03::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img03_pc.png);
    width: 326px;
    height: 244px;
    top: 167px;
    right: 101px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-homeSuggestion__item.-con04::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img04_pc.png);
    width: 443px;
    height: 235px;
    top: 233px;
    right: 45px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-homeSuggestion__item.-con05::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img05_pc.png);
    width: 267px;
    height: 234px;
    top: 182px;
    right: 116px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-homeSuggestion__item.-con06::after {
    background: url(https://biz.mynavi.jp/solution/img/sec05-img06_pc.png);
    width: 304px;
    height: 194px;
    top: 225px;
    right: 97px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
.p-homeSuggestion__item .c-text__large {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__item .c-text__large {
    font-size: 20px;
  }
}

.p-homeSuggestion__heading {
  position: relative;
  padding: 5.33vw 5.33vw 5.33vw 16vw;
  background: #F2FBFB;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-weight: 600;
  font-size: 4.8vw;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__heading {
    margin: 0;
    width: 100%;
    font-size: 24px;
    padding: 32px 60px 32px 118px;
    line-height: 1.6;
  }
}
.p-homeSuggestion__heading::before {
  position: absolute;
  top: 5.33vw;
  left: 5.33vw;
  content: counter(num);
  font-weight: 700;
  font-size: 4.8vw;
  color: #FFF;
  font-family: "Noto Sans", sans-serif;
  width: 7.73vw;
  height: 7.73vw;
  background: #FFA359;
  border-radius: 50%;
  text-align: center;
  line-height: 7.73vw;
  font-family: "Roboto", sans-serif;
  padding-left: 0.53vw;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__heading::before {
    font-size: 24px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    top: 29px;
    left: 60px;
    padding-left: 3px;
  }
}

.p-homeSuggestion__box {
  border: 1px solid #000;
  padding: 4.27vw;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__box {
    padding: 16px 30px;
  }
  .p-homeSuggestion__box.mt-20 {
    margin-top: 20px;
  }
}
.p-homeSuggestion__boxList {
  margin-bottom: 0;
  padding-left: 0;
}
.p-homeSuggestion__boxItem {
  padding-left: 5.33vw;
  position: relative;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__boxItem {
    padding-left: 20px;
  }
}
.p-homeSuggestion__boxItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.6vw;
  display: block;
  width: 3.2vw;
  height: 3.2vw;
  margin: 0 auto;
  border: solid 3px #00B1B1;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .p-homeSuggestion__boxItem::before {
    width: 12px;
    height: 12px;
    top: 7px;
  }
}
.p-homeSuggestion__box .c-text {
  margin-bottom: 0;
}

.p-homeManeger {
  border-top: 1px solid #C1C1C1;
  padding-top: 57px;
}
@media screen and (min-width: 768px) {
  .p-homeManeger {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeManeger {
    border-top: none;
    padding-top: 100px;
  }
}
.p-homeManeger .c-text__notice {
  margin-top: 8px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger .c-text__notice {
    margin-top: 6px;
    margin-bottom: 50px;
  }
}
.p-homeManeger .c-text__bold {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger .c-text__bold {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__flexItem {
    width: 61.67%;
  }
  .p-homeManeger__flexItem:first-child {
    width: 34.52%;
  }
  .p-homeManeger__flexItem:first-child img {
    padding: 0px 29px;
  }
}
.p-homeManeger__image {
  padding: 0 3.2vw;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__image {
    padding: 0;
  }
}
.p-homeManeger__list, .p-homeUser__voiceList {
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__list, .p-homeUser__voiceList {
    margin-top: 60px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 0;
  }
}
.p-homeManeger__item, .p-homeUser__voiceItem {
  background: #F2FBFB;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3.2vw;
  padding: 4.27vw;
  margin-bottom: 19px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__item, .p-homeUser__voiceItem {
    width: calc((100% - 40px) / 2);
    gap: 24px;
    padding: 32px;
    margin-bottom: 0;
  }
}
.p-homeManeger__item img, .p-homeUser__voiceItem img {
  width: 14.13vw;
  height: 14.13vw;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__item img, .p-homeUser__voiceItem img {
    width: 94px;
    height: 94px;
  }
}
.p-homeManeger__item .c-text__md, .p-homeUser__voiceItem .c-text__md {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__item .c-text__md, .p-homeUser__voiceItem .c-text__md {
    margin-bottom: 16px;
    min-height: 104px;
  }
}
.p-homeManeger__item .c-text__sm, .p-homeUser__voiceItem .c-text__sm {
  margin-bottom: 0;
}
.p-homeManeger__item:before, .p-homeUser__voiceItem:before {
  content: "";
  background: url(https://biz.mynavi.jp/solution/img/quotation.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -2.13vw;
  left: 4.27vw;
  width: 4.8vw;
  height: 4vw;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__item:before, .p-homeUser__voiceItem:before {
    top: -11px;
    left: 32px;
    width: 26px;
    height: 21px;
  }
}
.p-homeManeger__textArea {
  width: 78.55%;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-homeManeger__textArea {
    width: calc(100% - 118px);
  }
}

.p-homeUser {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .p-homeUser {
    margin-top: 100px;
  }
}
.p-homeUser .c-text__notice {
  margin-top: 8px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeUser .c-text__notice {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeUser__list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 65px;
  }
}
.p-homeUser__item {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-homeUser__item {
    width: calc((100% - 130px) / 3);
    margin-bottom: 0;
  }
}
.p-homeUser__item:last-child {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeUser__item:last-child {
    margin-bottom: 0;
  }
}
.p-homeUser__item .c-text__bold {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeUser__item .c-text__bold {
    margin-bottom: 30px;
  }
}
.p-homeUser__textArea {
  width: 78.55%;
}
@media screen and (min-width: 1024px) {
  .p-homeUser__textArea {
    width: calc(100% - 118px);
  }
}

.p-homeIntroduction {
  margin-top: 56px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-homeIntroduction {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}
.p-homeIntroduction .c-head {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeIntroduction .c-head {
    margin-bottom: 30px;
  }
}
.p-homeIntroduction__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.p-homeIntroduction__item {
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .p-homeIntroduction__item {
    width: 20%;
  }
}

.p-homeForm {
  background: #F5F5F5;
  padding: 56px 0 56px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm {
    padding: 100px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeForm .l-container {
    max-width: 520px;
  }
}
.p-homeForm .c-head {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm .c-head {
    margin-bottom: 32px;
  }
}
.p-homeForm__intro {
  margin-bottom: 26px;
}
.p-homeForm__notice {
  padding-left: 19px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-homeForm__notice {
    padding-left: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeForm__notice {
    margin-bottom: 35px;
    padding-left: 19px;
  }
}
.p-homeForm__notice::before {
  position: absolute;
  content: "※";
  font-size: 4.27vw;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__notice::before {
    font-size: 16px;
  }
}
.p-homeForm__introText {
  margin-bottom: 8px;
}
.p-homeForm__group {
  margin-top: 25px;
}
.p-homeForm__group .p-homeForm__heading {
  position: relative;
  margin-bottom: 16px;
  display: block;
}
.p-homeForm__group .p-homeForm__heading::after {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  content: "任意";
  font-size: 2.67vw;
  display: inline-block;
  background: #E4F2F2;
  border-radius: 2px;
  padding: 0 6px;
  margin-left: 5px;
  position: absolute;
  top: 3px;
  color: #4FA3A3;
  line-height: 1.68;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__group .p-homeForm__heading::after {
    font-size: 10px;
  }
}
.p-homeForm__group.required .p-homeForm__heading {
  float: left;
  width: 100%;
}
.p-homeForm__group.required .p-homeForm__heading::after {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  content: "必須";
  font-size: 2.67vw;
  display: inline-block;
  background: #00B1B1;
  border-radius: 2px;
  padding: 0 6px;
  margin-left: 5px;
  position: absolute;
  color: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__group.required .p-homeForm__heading::after {
    font-size: 10px;
  }
}
.p-homeForm__input {
  width: 100%;
}
.p-homeForm__input input {
  display: block;
  width: 100%;
  height: 34px;
  padding: 16px 17px;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  background-image: none;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-homeForm__input input {
    height: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeForm__input input {
    height: 48px;
  }
}
.p-homeForm__input input::-moz-placeholder {
  color: #D9D9D9;
}
.p-homeForm__input input::placeholder {
  color: #D9D9D9;
}
.p-homeForm__input textarea {
  display: block;
  width: 100%;
  height: 150px;
  padding: 16px 17px;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  background-image: none;
  border-radius: 5px;
}
.p-homeForm__input textarea::-moz-placeholder {
  color: #D9D9D9;
}
.p-homeForm__input textarea::placeholder {
  color: #D9D9D9;
}
.p-homeForm__heading {
  font-size: 4.27vw;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__heading {
    font-size: 16px;
  }
}
.p-homeForm__privacyHead {
  font-size: 4.27vw;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  position: relative;
  margin-top: 25px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyHead {
    font-size: 16px;
  }
}
.p-homeForm__privacyHead::after {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  content: "必須";
  font-size: 2.67vw;
  display: inline-block;
  border-radius: 2px;
  padding: 0 6px;
  margin-left: 5.07vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00B1B1;
  color: #fff;
  line-height: 1.68;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyHead::after {
    font-size: 10px;
    margin-left: 4px;
  }
}
.p-homeForm__privacyInclude {
  width: 100%;
  height: 90px;
  margin: 15px 0;
  overflow-y: scroll;
  border-radius: 5px;
  background: #fff;
  padding: 11px 26px 11px 16px;
}
.p-homeForm__privacyWrapper {
  font-weight: 300;
  font-size: 3.73vw;
  line-height: 1.6;
  letter-spacing: 0.11em;
  color: #757578;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyWrapper {
    font-size: 14px;
  }
}
.p-homeForm__privacyCheck {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 4.27vw;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyCheck {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 48px;
    cursor: pointer;
  }
}
.p-homeForm__privacyCheck span {
  padding-left: 10.93vw;
  position: relative;
  padding-top: 1.6vw;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyCheck span {
    padding-left: 41px;
    padding-top: 7px;
  }
}
.p-homeForm__privacyCheck input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-homeForm__privacyCheck input[type=checkbox] + span::before {
  display: inline-block;
  content: "";
  width: 7.73vw;
  height: 7.73vw;
  border: 1px solid #C2C2C2;
  border-radius: 2px;
  margin-right: 0.5rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyCheck input[type=checkbox] + span::before {
    width: 29px;
    height: 29px;
  }
}
.p-homeForm__privacyCheck input[type=checkbox] + span::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2.67vw;
  height: 5.87vw;
  border-bottom: 4px solid #00B1B1;
  border-right: 4px solid #00B1B1;
  transform: rotate(45deg);
  opacity: 0;
  top: 0;
  left: 2.67vw;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__privacyCheck input[type=checkbox] + span::after {
    width: 11px;
    height: 21px;
    left: 10px;
  }
}
.p-homeForm__privacyCheck input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-homeForm__submit {
  text-align: center;
}
.p-homeForm__button {
  width: 100%;
  font-size: 4.8vw;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: #00B1B1;
  border-radius: 60px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  box-shadow: 8px 8px 32px #DFEBEB !important;
  transition: 0.3s ease;
  cursor: pointer;
}
.p-homeForm__button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__button {
    font-size: 18px;
    max-width: 419px;
    margin: 0 auto;
    height: 75px;
    line-height: 75px;
  }
}
.p-homeForm__button.-white {
  background: #FFF;
  color: #00B1B1;
}

.p-homeForm__confirm-fields .p-homeForm__group {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__group {
    margin-bottom: 35px;
  }
}
.p-homeForm__confirm-fields .p-homeForm__group.required.-information .p-homeForm__heading::after {
  margin-left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__group.required.-information .p-homeForm__heading::after {
    margin-left: 5px;
  }
}
.p-homeForm__confirm-fields .p-homeForm__heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__heading {
    margin-bottom: 24px;
  }
}
.p-homeForm__confirm-fields .p-homeForm__dl {
  border-bottom: 1px solid #D9D9D9;
}
.p-homeForm__confirm-fields .p-homeForm__dd {
  margin-bottom: 32px;
}
.p-homeForm__confirm-fields .p-homeForm__confirm__buttonArea {
  margin-top: 32px;
  display: grid;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__confirm__buttonArea {
    display: flex;
    gap: 24px;
    margin-top: 48px;
  }
}
.p-homeForm__confirm-fields .p-homeForm__buttonBack {
  order: 2;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__buttonBack {
    order: 1;
  }
}
.p-homeForm__confirm-fields .p-homeForm__buttonSubmit {
  order: 1;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-homeForm__confirm-fields .p-homeForm__buttonSubmit {
    margin-bottom: 0;
    order: 1;
  }
}

.p-homeContact {
  padding: 116px 9px 56px;
  text-align: center;
  margin-top: -60px;
}
@media screen and (min-width: 1024px) {
  .p-homeContact {
    text-align: left;
    padding: 140px 0 40px;
    margin-top: -90px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeContact .l-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 620px;
  }
}
.p-homeContact a:hover {
  opacity: 0.7;
  color: #00B1B1;
}
.p-homeContact p {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-homeContact .c-text__bold {
    font-size: 24px;
    margin-top: 18px;
  }
}
.p-homeContact img {
  width: 66.88%;
  margin: 0 auto 14px;
}
@media screen and (min-width: 1024px) {
  .p-homeContact img {
    width: 212px;
  }
}
@media screen and (min-width: 1024px) {
  .p-homeContact__textArea {
    width: calc(100% - 242px);
  }
}
.p-homeContact__tel {
  color: #00B1B1;
  font-family: "Roboto", sans-serif;
  font-size: 11.2vw;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-homeContact__tel {
    font-size: 42px;
    margin-top: 4px;
    margin-bottom: 12px;
  }
}
.p-homeContact__text {
  font-size: 4.27vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-homeContact__text {
    font-size: 16px;
    line-height: 1.4;
  }
}

.p-homeSticky {
  background: #fff;
  width: 100%;
  height: 72px;
  padding: 12px 20px;
  box-shadow: 0px -8px 12px rgba(223, 235, 235, 0.5);
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  position: fixed;
  bottom: 0;
  right: 0;
  visibility: hidden;
  transform: translateY(72px);
  transition: 0.1s ease;
}

@media screen and (min-width: 1024px) {
  .p-homeSticky {
    background: transparent;
    box-shadow: none;
    top: 120px;
    right: 40px;
    bottom: auto;
    width: 400px;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
    height: auto;
    flex-direction: row;
    gap: 12px;
    z-index: 60;
  }
}

/* スティッキーエリア内のボタン共通スタイル */
.p-homeSticky a.c-button.-contact {
  width: calc((100% - 13px) / 2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-homeSticky a.c-button.dl.-contact {
  width: calc((100% - 13px) / 2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #69CDA9, #00B1B1) !important;
}

@media screen and (min-width: 1024px) {
  .p-homeSticky a {
    width: calc((100% - 12px) / 2);
    height: 49px;
    font-size: 16px;
    min-height: 49px;
    box-sizing: border-box;
  }
  .p-homeSticky a.c-button.dl.-contact {
  background: linear-gradient(135deg, #69CDA9, #00B1B1) !important;
  }
}

.p-homeSticky.is-show {
  visibility: visible;
  transform: translateY(0);
  z-index: 101;
}

@media screen and (min-width: 1024px) {
  .p-homeSticky.is-show {
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 60;
  }
}

/* お問い合わせボタンのスタイル（デスクトップ） */
@media screen and (min-width: 1024px) {
  .p-homeSticky .c-button.-contact {
    position: relative;
    box-shadow: 8px 8px 32px #DFEBEB;
  }
  .p-homeSticky .c-button.-contact:not(.dl) {
    text-align: center;
    /*justify-content: flex-start;*/
  }
/*  .p-homeSticky .c-button.-contact:not(.dl)::before {
    content: "";
    background: #FFF;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    right: 10px;
  }
  .p-homeSticky .c-button.-contact:not(.dl)::after {
    content: "";
    background: url(https://biz.mynavi.jp/solution/img/icon_arrow_og.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
    width: 13px;
    height: 18px;
  }*/
}

/* DLボタン専用のデスクトップスタイル（優先度を上げる） */
@media screen and (min-width: 1024px) {
  .p-homeSticky .c-button.dl.-contact {
    text-align: center !important;
    padding-left: 0 !important;
    box-shadow: 8px 8px 32px #DFEBEB !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #69CDA9, #00B1B1) !important;
  }
  
  /* DLボタンには矢印アイコンを表示しない */
  .p-homeSticky .c-button.dl.-contact::before,
  .p-homeSticky .c-button.dl.-contact::after {
    display: none !important;
  }
}


.section-other {
  margin-bottom: 0;
}

/* 2023.9.13 add */
.form_area {
 width: 750px;
 margin: 0 auto;
}
@media only screen and (max-width: 690px) {
.form_area {
 width: 95%;
 }
}

.list-customer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.list-customer li {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    background: #fff;
    width: 18%;
    margin: 0.5em;
    padding: 0.5em 1em;
    border-radius: 5px;
}
.list-customer li img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLmNzcyIsIi4uLy4uLy4uL3NyYy9zY3NzL2ZvdW5kYXRpb24vX3Jlc2V0LnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9tb2R1bGVzL19mdW5jdGlvbi5zY3NzIiwiLi4vLi4vLi4vc3JjL3Njc3MvbW9kdWxlcy9fYW5pbWF0aW9uLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9mb3VuZGF0aW9uL19iYXNlLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy92YXJpYWJsZXMvX2NvbG9yLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy92YXJpYWJsZXMvX2ZvbnQuc2NzcyIsIi4uLy4uLy4uL3NyYy9zY3NzL2xheW91dC9fY29udGFpbmVyLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9vYmplY3QvY29tcG9uZW50L19ici5zY3NzIiwiLi4vLi4vLi4vc3JjL3Njc3Mvb2JqZWN0L2NvbXBvbmVudC9fYnV0dG9uLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9vYmplY3QvY29tcG9uZW50L19iYWxsb29uLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9vYmplY3QvY29tcG9uZW50L19oZWFkaW5nLnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9vYmplY3QvY29tcG9uZW50L190ZXh0LnNjc3MiLCIuLi8uLi8uLi9zcmMvc2Nzcy9vYmplY3QvcGFnZS9faG9tZS5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQ0doQjtFQUNDLFVBQUE7RUFDQSxlQUFBO0FEREQ7O0FDSUE7OztFQUdDLHNCQUFBO0FEREQ7O0FDSUE7RUFDQyxnQkFBQTtBREREOztBQ0lBO0VBQ0MsZUFBQTtBREREOztBQ0lBO0VBQ0MseUJBQUE7QURERDs7QUNJQTtFQUNDLG1CQUFBO0FEREQ7O0FFRkE7O0NBQUE7QUErQ0E7O0NBQUE7QUNsRUE7RUFDQyxzQkFBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7QUg4QkQ7O0FHNUJBO0VBRUMsc0JBQUE7RUFFQSwyQ0FBQTtF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 */}
