* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes float-4 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-anim-1 {
  animation: float-1 3s ease-in-out infinite;
}

.float-anim-2 {
  animation: float-2 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.float-anim-3 {
  animation: float-3 2.8s ease-in-out infinite;
  animation-delay: 1s;
}

.float-anim-4 {
  animation: float-4 3.2s ease-in-out infinite;
  animation-delay: 1.5s;
}

.float-anim-5 {
  animation: float-1 3.3s ease-in-out infinite;
  animation-delay: 0.3s;
}

.float-anim-6 {
  animation: float-2 2.9s ease-in-out infinite;
  animation-delay: 0.8s;
}

.float-anim-7 {
  animation: float-3 3.4s ease-in-out infinite;
  animation-delay: 1.2s;
}

.float-anim-8 {
  animation: float-4 3.1s ease-in-out infinite;
  animation-delay: 0.6s;
}

.logo-scroll {
  animation: scroll 30s linear infinite;
  width: max-content;
}

.logo-scroll:hover {
  animation-play-state: paused;
}

.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #FAD058;
}

.speech-bubble-tail-mobile-gray {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #6b7280;
}

.speech-bubble-tail-mobile-green {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #009900;
}

.speech-bubble-tail-desktop-gray {
  position: absolute;
  right: -3px;
  bottom: 20px;
  width: 0;
  height: 0;
  border-left: 16px solid #6b7280;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: rotate(45deg);
}

.speech-bubble-tail-desktop-green {
  position: absolute;
  right: -2px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-left: 18px solid #009900;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: rotate(45deg);
}

.flow-step-item {
  min-height: 120px;
}

.triangle-arrow-down {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #00B900;
  margin: 0 auto;
  flex-shrink: 0;
  align-self: center;
}

.hero-section {
  background-image: url('img/fv_bg_06_sp.png');
  background-size: cover;
  background-position: center;
  padding-top: 3rem !important;
}

.hero-title {
  font-weight: 900;
  font-size: 8.7vw;
  line-height: 1.2;
  margin-bottom: 270px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-first {
  font-size: 12.4vw;
}

.hero-heading {
  margin-bottom: 1rem;
}

.hero-heading-span {
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-columns-gap {
  gap: 0.75rem;
}

.hero-columns-margin {
  margin-bottom: 1rem;
}

.hero-column-item {
  width: 47%;
}

@media (min-width: 768px) {
  .hero-heading {
    margin-bottom: 1rem;
  }

  .hero-heading-span {
    margin-bottom: 0.75rem;
  }

  .hero-columns-gap {
    gap: 1rem;
  }

  .hero-columns-margin {
    margin-bottom: 2rem;
  }

  .hero-column-item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .hero-section {
    background-image: url('img/fv_bg_09.png');
    padding-top: clamp(4rem, 5vw, 6rem) !important;
    padding-bottom: clamp(1.5rem, 2vw, 2rem) !important;
    min-height: clamp(300px, 40vh, 420px);
  }

  .hero-title {
    font-size: 5rem;
    line-height: 1.5;
    margin-top: 2rem;
    margin-bottom: 6rem;
  }

  .hero-title-first {
    font-size: 5rem;
  }

  .flow-step-item {
    min-height: 0;
  }

  .triangle-arrow-down {
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }

  .triangle-arrow-right {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 20px solid #00B900;
    margin: 0 4px;
    align-self: center;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: clamp(3rem, 4vw, 5rem) !important;
    padding-bottom: clamp(1.5rem, 2vw, 2.5rem) !important;
    min-height: clamp(320px, 42vh, 450px);
  }

  .hero-title {
    font-size: 4.4rem;
  }

  .hero-title-first {
    font-size: 4.4rem;
  }
}

@media (min-width: 1440px) {
  .hero-section {
    padding-top: clamp(4rem, 5vw, 6rem) !important;
    padding-bottom: clamp(2rem, 2.5vw, 3rem) !important;
    min-height: clamp(350px, 45vh, 480px);
  }
}

.cta-button-with-badge {
  position: relative;
  padding-left: 4.5rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-badge {
  position: absolute;
  left: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #00B900;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 5px transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #07c1ee, #0aa898);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 5px solid transparent;
}

@media (min-width: 768px) {
  .cta-button-with-badge {
    padding-left: 7rem !important;
  }

  .cta-badge {
    left: 0.5rem;
    width: 5rem;
    height: 5rem;
    font-size: 1.375rem;
  }
}

.jetline-section {
  background-image: url('img/jetline_bg_03_sp.png');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .jetline-section {
    background-image: url('img/jetline_pc_bg_05.png');
    background-size: cover;
    background-position: center;
  }
}

.problems-section {
  background-image: none;
}

@media (min-width: 768px) {
  .problems-section {
    background-image: none;
  }
}

.what-section .md\:w-64 {
  width: 16rem;
}

@media (min-width: 768px) {
  .what-section .md\:w-64 {
    width: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.service-contents-section {
  background-image: url('img/service_sp_bg_02_a.png');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .service-contents-section {
    background-image: url('img/service_pc_bg_03_a.png');
    background-size: cover;
    background-position: center;
  }
}
