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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #F3F4F6;
  color: #1F2933;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #1F2933;
}

p {
  margin-bottom: 1rem;
}

a {
  transition: color 0.3s ease;
}

a:hover {
  color: #F97316;
}

.main {
  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;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 479px) {
  .container {
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1F2933;
  box-shadow: -1px 4px 5px 0px rgba(41, 49, 55, 0.52);
  z-index: 50;
}

.header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .header__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .header__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .header__container {
    padding: 0 3rem;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 479px) {
  .header__container {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header__container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 479px) {
  .header__logo {
    gap: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header__logo {
    gap: 0.5rem;
  }
}

.header__logo-image {
  object-fit: contain;
}

.header__logo-image img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 80px;
}

@media (max-width: 479px) {
  .header__logo-image img {
    max-width: 150px;
    max-height: 40px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header__logo-image img {
    max-width: 200px;
    max-height: 50px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__logo-image img {
    max-width: 300px;
    max-height: 60px;
  }
}

.header__nav {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 479px) {
  .header__nav {
    gap: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header__nav {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  color: #F3F4F6;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

@media (max-width: 479px) {
  .header__nav-link {
    font-size: 0.75rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .header__nav-link {
    font-size: 0.875rem;
  }
}

.header__nav-link:hover {
  color: #F97316;
}

.header__contact {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header__contact {
    display: flex;
  }
}

.header__contact-info {
  display: flex;
  flex-direction: column;
  line-height: 35px;
  font-size: 1.25rem;
  justify-content: center;
  text-align: center;
}

.header__contact-phone {
  color: #F3F4F6;
  font-size: 1rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__contact-phone {
    font-size: 0.875rem;
  }
}

.header__contact-hours {
  color: #F3F4F6;
  font-size: 0.875rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__contact-hours {
    font-size: 0.75rem;
  }
}

.header__contact-button {
  background-color: #F97316;
  color: #ffffff;
  padding: 0.5rem 2rem;
  align-content: center;
  width: 240px;
  height: 60px;
  border-radius: 9999px;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__contact-button {
    width: 180px;
    height: 50px;
    font-size: 1rem;
    padding: 0.25rem 1.5rem;
  }
}

.header__contact-button:hover {
  background-color: #D9650F;
}

.header__mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-icon {
  display: none;
  width: 24px;
  height: 24px;
}

@media (max-width: 479px) {
  .header__mobile-icon {
    width: 20px;
    height: 20px;
  }
}

.header__mobile-icon--menu {
  display: block;
}

.header__mobile-icon--close {
  display: none;
}

.header__mobile-menu {
  display: none;
  background-color: #F3F4F6;
  border-top: 1px solid #E5E7EB;
  padding: 1rem;
}

@media (max-width: 479px) {
  .header__mobile-menu {
    padding: 0.5rem;
  }
}

@media (min-width: 768px) {
  .header__mobile-menu {
    display: none !important;
  }
}

.header__mobile-menu.is-open {
  display: block;
}

.header__mobile-link {
  display: block;
  padding: 0.5rem 0;
  color: #1F2933;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 479px) {
  .header__mobile-link {
    font-size: 0.875rem;
    padding: 0.25rem 0;
  }
}

.header__mobile-button {
  width: 100%;
  background-color: #F97316;
  color: #ffffff;
  padding: 0.5rem 0;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 479px) {
  .header__mobile-button {
    font-size: 0.875rem;
    padding: 0.25rem 0;
  }
}

.header.menu-open .header__mobile-icon--menu {
  display: none;
}

.header.menu-open .header__mobile-icon--close {
  display: block;
}

.footer {
  padding: 3rem 0;
  padding-top: 0;
  background-color: #1F2933;
}

@media (max-width: 479px) {
  .footer {
    padding: 1.5rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer {
    padding: 2rem 0;
  }
}

.footer__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .footer__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .footer__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .footer__container {
    padding: 0 3rem;
  }
}

.footer__divider {
  height: 1px;
  background-color: #F3F4F6;
  margin-bottom: 2rem;
}

@media (max-width: 479px) {
  .footer__divider {
    margin-bottom: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer__divider {
    margin-bottom: 1.5rem;
  }
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 479px) {
  .footer__social {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer__social {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__social {
    justify-content: center;
    gap: 1.5rem;
  }
}

.footer__social-link {
  color: #ffffff;
  transition: color 0.3s;
}

@media (max-width: 479px) {
  .footer__social-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer__social-link svg {
    width: 20px;
    height: 20px;
  }
}

.footer__social-link:hover {
  color: #F97316;
}

.footer__social-link svg {
  display: block;
}

.footer__copyright {
  text-align: center;
  color: #ffffff;
  line-height: 1.75rem;
  font-size: 1rem;
}

@media (max-width: 479px) {
  .footer__copyright {
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
}

@media (max-width: 479px) {
  .hero {
    min-height: 50vh;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }
}

.hero__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 80vh;
}

@media (max-width: 479px) {
  .hero__wrapper {
    min-height: 50vh;
    justify-content: center;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__wrapper {
    min-height: 60vh;
    justify-content: center;
  }
}

.hero__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/images/hero/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 80vh;
  padding: 4rem 3rem;
  background-image: url("../assets/images/hero/hero-content-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 479px) {
  .hero__content {
    min-height: 50vh;
    padding: 1.5rem 1rem;
    align-items: center;
    background-position: center;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__content {
    min-height: 60vh;
    padding: 2rem 1.5rem;
    align-items: center;
    background-position: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__content {
    max-width: 95%;
    padding: 4rem 3rem;
    align-items: center;
    background-position: left center;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    width: 95%;
    max-width: 70rem;
    padding: 13rem 10rem;
    background-position: left center;
  }
}

@media (min-width: 1280px) {
  .hero__content {
    padding: 15rem 12rem;
  }
}

.hero__subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 8.25rem;
  margin-left: 10rem;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.6;
}

@media (max-width: 479px) {
  .hero__subtitle {
    margin-bottom: 0.5rem;
    margin-left: 0;
    font-size: 0.875rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__subtitle {
    margin-bottom: 1rem;
    margin-left: 0;
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__subtitle {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero__subtitle {
    margin-left: 10rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .hero__subtitle {
    margin-left: 12rem;
  }
}

.hero__title {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  margin-left: 6rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 479px) {
  .hero__title {
    margin-bottom: 0.25rem;
    margin-left: 0;
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__title {
    margin-bottom: 0.5rem;
    margin-left: 0;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__title {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    margin-left: 6rem;
    font-size: 1.875rem;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    margin-left: 7rem;
  }
}

.hero__title-highlight {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #F97316;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 479px) {
  .hero__title-highlight {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__title-highlight {
    padding: 0.25rem 1rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__title-highlight {
    padding: 0.25rem 1.5rem;
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero__title-highlight {
    font-size: 2.5rem;
  }
}

.hero__description {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
  margin-left: 6rem;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.6;
}

@media (max-width: 479px) {
  .hero__description {
    margin-bottom: 1rem;
    margin-left: 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__description {
    margin-bottom: 1.5rem;
    margin-left: 0;
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__description {
    margin-bottom: 3rem;
    margin-left: 1.5rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__description {
    margin-left: 6rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .hero__description {
    margin-left: 7rem;
  }
}

.hero__text {
  position: relative;
  z-index: 1;
  margin-left: 0;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (max-width: 479px) {
  .hero__text {
    margin-left: 0;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero__text {
    margin-left: 0;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__text {
    margin-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .hero__text {
    font-size: 1.125rem;
  }
}

.pricing-banner {
  padding: 1.75rem 0;
  background-color: #F5E9DA;
  text-align: center;
}

@media (max-width: 479px) {
  .pricing-banner {
    padding: 0.5rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing-banner {
    padding: 1rem 0;
  }
}

.pricing-banner__text {
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

@media (max-width: 479px) {
  .pricing-banner__text {
    font-size: 0.875rem;
    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing-banner__text {
    font-size: 1rem;
    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-banner__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-banner__text {
    font-size: 1.875rem;
  }
}

.pricing-banner__price {
  color: #F97316;
  font-weight: 700;
  font-size: 3.75rem;
}

@media (max-width: 479px) {
  .pricing-banner__price {
    font-size: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing-banner__price {
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-banner__price {
    font-size: 2.5rem;
  }
}

.pricing-banner__tax {
  color: #F97316;
  font-weight: 700;
  font-size: 2.5rem;
}

@media (max-width: 479px) {
  .pricing-banner__tax {
    font-size: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing-banner__tax {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-banner__tax {
    font-size: 2rem;
  }
}

.pricing-banner__text-normal {
  color: #1F2933;
  font-weight: 700;
  font-size: 2rem;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

@media (max-width: 479px) {
  .pricing-banner__text-normal {
    font-size: 0.75rem;
    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing-banner__text-normal {
    font-size: 0.875rem;
    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-banner__text-normal {
    font-size: 1rem;
  }
}

.problems {
  padding: 10rem 0;
  background-color: #ffffff;
}

@media (max-width: 479px) {
  .problems {
    padding: 3rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .problems {
    padding: 4rem 0;
  }
}

.problems__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .problems__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .problems__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .problems__container {
    padding: 0 3rem;
  }
}

.problems__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #1F2933;
  margin-bottom: 7rem;
}

@media (max-width: 479px) {
  .problems__title {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .problems__title {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .problems__title {
    font-size: 1.75rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .problems__title {
    font-size: 1.875rem;
  }
}

.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 100rem;
  margin: 0 auto;
}

@media (max-width: 479px) {
  .problems__grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .problems__grid {
    gap: 3rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .problems__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.problems__card {
  background-color: #F3F4F6;
  border-radius: 1rem;
  padding: 2.5rem;
  overflow: hidden;
}

@media (max-width: 479px) {
  .problems__card {
    padding: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .problems__card {
    padding: 2rem;
  }
}

.problems__card-image {
  aspect-ratio: 4/3;
  background-color: #F3F4F6;
  overflow: hidden;
  position: relative;
}

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

.problems__card-text {
  text-align: center;
  margin-bottom: 0;
  padding: 1rem 0;
  color: #1F2933;
  white-space: pre-line;
  font-weight: 500;
  font-size: 1.5rem;
}

@media (max-width: 479px) {
  .problems__card-text {
    font-size: 0.75rem;
    padding: 0.25rem 0;
    line-height: 1.4;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .problems__card-text {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
}

.cta {
  padding: 10rem 0 1rem 0;
  background-image: url("../assets/images/service/cta-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

@media (max-width: 479px) {
  .cta {
    padding: 3rem 0 0.5rem 0;
    height: 250px;
  }

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

@media (min-width: 480px) and (max-width: 767px) {
  .cta {
    padding: 4rem 0 1rem 0;
  }
}

.cta__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.5;
}

.sp_only {
  display: none !important;
}

@media (min-width: 480px) {
  .cta__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .cta__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .cta__container {
    padding: 0 3rem;
  }
}

.cta__text {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media (max-width: 479px) {
  .cta__text {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .cta__text {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cta__text {
    font-size: 2rem;
  }
}

.cta__main {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 479px) {
  .cta__main {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .cta__main {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta__main {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cta__main {
    font-size: 1.5rem;
  }
}

.cta__highlight {
  background-color: #ffffff;
  padding: 0.5rem 0.5rem;
  color: #1F2933;
  font-weight: 600;
  border-radius: 0.5rem;
  display: inline-block;
}

@media (max-width: 479px) {
  .cta__highlight {
    padding: 0.25rem 0.25rem;
  }
}

.cta__price {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0.5rem;
}

@media (max-width: 479px) {
  .cta__price {
    font-size: 1.5rem;
    margin: 0 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .cta__price {
    font-size: 2rem;
    margin: 0 0.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta__price {
    font-size: 3rem;
  }
}

.cta__subtext {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

@media (max-width: 479px) {
  .cta__subtext {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .cta__subtext {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta__subtext {
    font-size: 2rem;
  }
}

.service-description {
  padding: 5rem 0;
  background-color: #F3F4F6;
}

@media (max-width: 479px) {
  .service-description {
    padding: 3rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description {
    padding: 4rem 0;
  }
}

.service-description__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .service-description__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .service-description__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .service-description__container {
    padding: 0 3rem;
  }
}

.service-description__grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 13.75rem;
  align-items: center;
}

@media (max-width: 479px) {
  .service-description__grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__grid {
    gap: 2rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-description__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .service-description__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-description__image {
  aspect-ratio: 7/8;
  border-radius: 0.75rem;
  overflow: visible;
  position: relative;
  background-color: #f3f4f6;
}

@media (max-width: 479px) {
  .service-description__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1rem;
  }
}

.service-description__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
}

.service-description__figure {
  position: absolute;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 30%;
  max-height: 50%;
  object-fit: contain;
  z-index: 2;
}

@media (max-width: 479px) {
  .service-description__figure {
    max-width: 20%;
    max-height: 30%;
  }

  .service-description__figure--left {
    transform: translate(-30%, 40%);
    width: 60px;
    height: 80px;
  }

  .service-description__figure--right {
    transform: translate(30%, 40%);
    width: 60px;
    height: 80px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__figure {
    max-width: 25%;
    max-height: 40%;
  }

  .service-description__figure--left {
    transform: translate(-40%, 45%);
    width: 80px;
    height: 100px;
  }

  .service-description__figure--right {
    transform: translate(40%, 45%);
    width: 80px;
    height: 100px;
  }
}

.service-description__figure--left {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 120px;
  height: 160px;
}

.service-description__figure--right {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  width: 120px;
  height: 160px;
}

.service-description__text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1F2933;
  line-height: 1.6;
}

@media (max-width: 479px) {
  .service-description__text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-description__text {
    font-size: 1.375rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .service-description__text {
    font-size: 1.875rem;
    text-align: left;
  }
}

.service-description__box {
  background-color: rgba(243, 244, 246, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 479px) {
  .service-description__box {
    padding: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__box {
    padding: 1.5rem;
  }
}

.service-description__box-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1F2933;
}

@media (max-width: 479px) {
  .service-description__box-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__box-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.service-description__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #1F2933;
  padding: 0;
  margin: 0;
}

.service-description__item {
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 479px) {
  .service-description__item {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .service-description__item {
    font-size: 0.875rem;
  }
}

.service-description__bullet {
  color: #1F2933;
  flex-shrink: 0;
}

.features {
  padding: 10rem 0;
  background-color: #1F2933;
}

@media (max-width: 479px) {
  .features {
    padding: 3rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features {
    padding: 4rem 0;
  }
}

.features__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .features__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .features__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .features__container {
    padding: 0 3rem;
  }
}

.features__title {
  margin-bottom: 7.5rem;
  padding: 0;
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 479px) {
  .features__title {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__title {
    margin-bottom: 4rem;
    padding: 0 1rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__title {
    margin-bottom: 5rem;
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .features__title {
    font-size: 1.875rem;
  }
}

.features__list {
  display: flex;
  flex-direction: column;
  max-width: 105rem;
  margin: 0 auto;
  padding: 0;
  gap: 5rem;
}

@media (max-width: 479px) {
  .features__list {
    padding: 0 0.5rem;
    gap: 3rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__list {
    padding: 0 1rem;
    gap: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__list {
    padding: 0 1.5rem;
    gap: 4rem;
  }
}

.features__item {
  display: grid;
  align-items: center;
  padding: 6.25rem;
  gap: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
}

@media (max-width: 479px) {
  .features__item {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
    text-align: center;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__item {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .features__item {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
  }
}

.features__item-image {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 540/320;
  overflow: hidden;
  border-radius: 0.5rem;
}

@media (max-width: 479px) {
  .features__item-image {
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item-image {
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__item-image {
    justify-self: start;
  }
}

@media (min-width: 1024px) {
  .features__item-image {
    justify-self: start;
  }
}

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

.features__item-content {
  width: 100%;
  flex: 1;
}

.features__item-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

@media (max-width: 479px) {
  .features__item-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .features__item-header {
    justify-content: flex-start;
  }
}

.features__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  background-color: #F97316;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
}

@media (max-width: 479px) {
  .features__item-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item-number {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__item-number {
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
  }
}

.features__item-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
  color: #1F2933;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 12px;
  gap: 0.5rem;
}

@media (max-width: 479px) {
  .features__item-title {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item-title {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__item-title {
    text-align: left;
    font-size: 1.25rem;
    letter-spacing: 8px;
  }
}

@media (min-width: 1024px) {
  .features__item-title {
    text-align: left;
  }
}

.features__item-description {
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 6px;
}

@media (max-width: 479px) {
  .features__item-description {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .features__item-description {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features__item-description {
    text-align: left;
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

@media (min-width: 1024px) {
  .features__item-description {
    text-align: left;
  }
}

.testimonials {
  padding: 7.5rem 0;
  background-color: #F3F4F6;
}

@media (max-width: 479px) {
  .testimonials {
    padding: 3rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials {
    padding: 4rem 0;
  }
}

.testimonials__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .testimonials__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .testimonials__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials__container {
    padding: 0 3rem;
  }
}

.testimonials__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #1F2933;
  margin-bottom: 6.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 479px) {
  .testimonials__title {
    font-size: 1rem;
    margin-bottom: 3rem;
    margin-top: 0;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials__title {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    margin-top: 0;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials__title {
    font-size: 1.5rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials__title {
    font-size: 1.875rem;
  }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  max-width: 105rem;
  margin: 0 auto;
}

@media (max-width: 479px) {
  .testimonials__grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials__grid {
    gap: 3rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.testimonials__card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2.5rem 0.875rem;
  text-align: center;
  box-shadow: 6px 5px 10px rgba(0, 0, 0, 0.2196078431);
  display: flex;
  flex-direction: column;
}

@media (max-width: 479px) {
  .testimonials__card {
    padding: 1.5rem 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials__card {
    padding: 2rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials__card {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1920px) {
  .testimonials__card {
    height: 35rem;
  }
}

.testimonials__avatar {
  width: 10rem;
  height: 10rem;
  background-color: #1F2933;
  border-radius: 9999px;
  margin: 0 auto 1rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .testimonials__avatar {
    width: 5rem;
    height: 5rem;
    margin-top: 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials__avatar {
    width: 6rem;
    height: 6rem;
    margin-top: 0;
  }
}

.testimonials__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.testimonials__avatar-icon {
  color: #ffffff;
  font-size: 1.5rem;
}

.testimonials__age {
  font-size: 0.75rem;
  color: #1F2933;
  margin-bottom: 0.25rem;
}

.testimonials__type {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1F2933;
  margin-bottom: 1rem;
}

.testimonials__text {
  background-color: #F3F4F6;
  font-size: 1rem;
  color: #1F2933;
  padding: 1.25rem 0.875rem;
  text-align: left;
  line-height: 2.5rem;
  letter-spacing: 4px;
  font-weight: 700;
  flex-grow: 1;
}

@media (max-width: 479px) {
  .testimonials__text {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 1px;
    padding: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .testimonials__text {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 2px;
    padding: 1rem;
  }
}

.tools {
  padding: 10rem 0;
  background-color: #20262e;
}

@media (max-width: 767px) {
  .tools {
    padding: 4rem 0;
  }
}

.tools__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .tools__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .tools__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .tools__container {
    padding: 0 3rem;
  }
}

.tools__container {
  max-width: 105rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tools__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 2rem;
  color: #ffffff;
  margin-bottom: 6.25rem;
}

@media (max-width: 767px) {
  .tools__title {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .tools__title {
    font-size: 1.875rem;
  }
}

.tools__grid {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 2px solid #3b82f6;
  padding: 4rem 3rem;
  width: 100%;
  max-width: 120rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (max-width: 767px) {
  .tools__grid {
    padding: 2rem 1rem;
    gap: 1.5rem;
    margin: 0 1rem;
  }
}

@media (min-width: 768px) {
  .tools__grid {
    padding: 4rem 4rem;
  }
}

.pc_only {
  display: block !important;
}

.tools__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 480px) {
  .tools__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .tools__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .tools__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .sp_only {
    display: none !important;
  }
}

.tools__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .tools__item {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .tools__item {
    flex: 1;
    min-width: 0;
  }
}

.tools__icon {
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .tools__icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .tools__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (min-width: 768px) {
  .tools__icon {
    width: 180px;
    height: 180px;
  }
}

.tools__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.tools__separator {
  display: none;
  color: #1F2933;
  font-size: 1rem;
  margin: 0 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .tools__separator {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .tools__separator {
    display: inline-block;
  }
}

.tools__labels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: flex-start;
  text-align: center;
  width: 100%;
}

@media (max-width: 480px) {
  .tools__labels {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .tools__labels {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .tools__labels {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}

.tools__label {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2933;
  line-height: 2rem;
  letter-spacing: 4px;
  text-align: center;
  white-space: pre-line;
  width: 100%;
}

@media (max-width: 480px) {
  .tools__label {
    font-size: 0.625rem;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .tools__label {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 2px;
  }
}

@media (min-width: 768px) {
  .tools__label {
    flex: 1;
    min-width: 0;
  }
}

.steps {
  margin-top: -40px;
  border-radius: 1rem 1rem 0 0;
  padding: 10rem 0;
  background: #F3F4F6;
}

@media (max-width: 479px) {
  .steps {
    margin-top: 0;
    border-radius: 0;
    padding: 3rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps {
    margin-top: 0;
    border-radius: 0;
    padding: 4rem 0;
  }
}

.steps__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .steps__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .steps__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .steps__container {
    padding: 0 3rem;
  }
}

.steps__container {
  max-width: 100rem;
}

.steps__title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #1F2933;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8.875rem;
}

@media (max-width: 479px) {
  .steps__title {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__title {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__title {
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .steps__title {
    font-size: 1.875rem;
  }
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 479px) {
  .steps__grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__grid {
    gap: 3rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
}

.steps__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 479px) {
  .steps__card {
    padding: 1.5rem 1rem;
    border: 1px solid #E5E7EB;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card {
    padding: 2rem 1.5rem;
    border: 1px solid #E5E7EB;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__card {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1920px) {
  .steps__card {
    height: 562px;
    border: 1px solid black;
  }
}

.steps__card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
  width: 100%;
}

@media (max-width: 479px) {
  .steps__card-header {
    gap: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card-header {
    gap: 1rem;
  }
}

.steps__card-badge {
  position: absolute;
  top: -24px;
  left: -42px;
  width: 240px;
  height: 84px;
  background-color: #F97316;
  padding: 26px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .steps__card-badge {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card-badge {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
  }
}

.steps__card-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 3;
  letter-spacing: 0.1rem;
  color: #1F2933;
  margin-top: 30px;
  margin-bottom: 41px;
  text-align: center;
}

@media (max-width: 479px) {
  .steps__card-title {
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card-title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 4px;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__card-title {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 6px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .steps__card-title {
    font-size: 1.125rem;
  }
}

.steps__card-icon {
  width: 6.25rem;
  height: 5rem;
  background: transparent;
  border-radius: 0.5rem;
  margin-bottom: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .steps__card-icon {
    width: 3rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card-icon {
    width: 4rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__card-icon {
    width: 5rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }
}

.steps__card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps__card-list {
  list-style: none;
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
  width: 100%;
  padding: 0;
  margin: 0;
}

.steps__card-item {
  line-height: 1.6;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 8px;
  font-weight: 600;
  color: #1F2933;
}

@media (max-width: 479px) {
  .steps__card-item {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .steps__card-item {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps__card-item {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 4px;
  }
}

.steps__card-arrow {
  position: absolute;
  top: 40%;
  right: -42px;
  transform: translateX(50%);
  width: 24px;
  height: 24px;
  color: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .steps__card-arrow {
    display: none;
  }
}

@media (min-width: 1024px) {
  .steps__grid .steps__card:nth-child(1)+.steps__arrow {
    grid-column: 2;
    grid-row: 1;
  }

  .steps__grid .steps__card:nth-child(3)+.steps__arrow {
    grid-column: 4;
    grid-row: 1;
  }

  .steps__grid .steps__arrow--vertical {
    grid-column: 3;
    grid-row: 2;
  }

  .steps__grid .steps__card:nth-child(5)+.steps__arrow--reverse {
    grid-column: 2;
    grid-row: 2;
  }

  .steps__grid .steps__card:nth-child(7)+.steps__arrow--reverse {
    grid-column: 4;
    grid-row: 2;
  }
}

.pricing {
  margin-top: -40px;
  padding: 5.625rem 0;
  background-color: #1F2933;
  border-radius: 1rem 1rem 0 0;
}

@media (max-width: 479px) {
  .pricing {
    margin-top: 0;
    padding: 3rem 0;
    border-radius: 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing {
    margin-top: 0;
    padding: 4rem 0;
    border-radius: 0;
  }
}

.pricing__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .pricing__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .pricing__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .pricing__container {
    padding: 0 3rem;
  }
}

.pricing__container {
  max-width: 100rem;
}

.pricing__title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-top: 3.125rem;
  margin-bottom: 6.25rem;
}

@media (max-width: 479px) {
  .pricing__title {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__title {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing__title {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .pricing__title {
    font-size: 1.875rem;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 100rem;
  margin: 0 auto;
}

@media (max-width: 479px) {
  .pricing__grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__grid {
    gap: 3rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.pricing__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3.75rem 2.5rem;
}

@media (max-width: 479px) {
  .pricing__card {
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing__card {
    padding: 3rem 2rem;
  }
}

.pricing__card-header {
  text-align: center;
  margin-bottom: 17px;
}

.pricing__card-icon {
  width: 108px;
  height: 108px;
  background-color: #f1f5f9;
  border-radius: 9999px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .pricing__card-icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-icon {
    width: 80px;
    height: 80px;
  }
}

.pricing__card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing__card-icon-text {
  font-size: 1.5rem;
}

@media (max-width: 479px) {
  .pricing__card-icon-text {
    font-size: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-icon-text {
    font-size: 1.25rem;
  }
}

.pricing__card-name {
  font-weight: 700;
  color: #1F2933;
  margin-top: 1.375rem;
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 8px;
}

@media (max-width: 479px) {
  .pricing__card-name {
    font-size: 0.75rem;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-name {
    font-size: 0.875rem;
    letter-spacing: 4px;
    line-height: 1.5;
  }
}

.pricing__card-price {
  font-size: 1.5rem;
  letter-spacing: 6px;
  line-height: 2rem;
  font-weight: 700;
  color: #1F2933;
}

@media (max-width: 479px) {
  .pricing__card-price {
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1.4;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-price {
    font-size: 1.125rem;
    letter-spacing: 3px;
    line-height: 1.5;
  }
}

.pricing__card-tax {
  font-size: 1rem;
  letter-spacing: 6px;
  line-height: 2rem;
  font-weight: 700;
  color: #1F2933;
}

@media (max-width: 479px) {
  .pricing__card-tax {
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.4;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-tax {
    font-size: 0.875rem;
    letter-spacing: 2px;
    line-height: 1.5;
  }
}

.pricing__card-features {
  list-style: none;
  font-size: 0.75rem;
  background-color: #F3F4F6;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;

}

@media (max-width: 479px) {
  .pricing__card-features {
    padding: 0.25rem 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-features {
    padding: 0.5rem 1rem;
  }
}

.pricing__card-feature {
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 20px;
  font-weight: 500;
  color: #1F2933;
  line-height: 1.5rem;
}

@media (max-width: 479px) {
  .pricing__card-feature {
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.5;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__card-feature {
    font-size: 0.875rem;
    letter-spacing: 1px;
    line-height: 1.6;
  }
}

.pricing__options {
  margin-top: 6.25rem;
  border-radius: 1rem;
}

@media (max-width: 479px) {
  .pricing__options {
    margin-top: 3rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__options {
    margin-top: 4rem;
    padding: 0 1rem;
  }
}

.pricing__options-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 8px;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

@media (max-width: 479px) {
  .pricing__options-title {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__options-title {
    font-size: 1.25rem;
    letter-spacing: 4px;
  }
}

.pricing__options-list {
  list-style: none;
  background-color: #ffffff;
  border-radius: 1rem;
  margin-top: 2.5rem;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  padding: 35px 20px;
}

@media (max-width: 479px) {
  .pricing__options-list {
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__options-list {
    padding: 2rem 1.5rem;
    font-size: 1rem;
    margin-top: 2rem;
  }
}

.pricing__options-item {
  font-size: 1.25rem;
  letter-spacing: 8px;
  color: #1F2933;
}

.display_none {
  display: none;
}

.below_arrow,
.up_arrow {
  align-content: center;
}

.below_arrow img,
.up_arrow img {
  cursor: pointer;
  margin: auto;
  margin-top: 20px;
  width: 50px;
  height: 30px;
}

@media (max-width: 479px) {
  .pricing__options-item {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .pricing__options-item {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
}

.company {
  padding: 5rem 7.5rem;
  background-color: #F3F4F6;
}

@media (max-width: 479px) {
  .company {
    padding: 3rem 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .company {
    padding: 4rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company {
    padding: 5rem 3rem;
  }
}

.company__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .company__container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .company__container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .company__container {
    padding: 0rem;
  }
}

.company__grid {
  max-width: 100rem;
  margin: 0 auto;
  margin-top: 10rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 479px) {
  .company__grid {
    margin-top: 0;
    gap: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .company__grid {
    margin-top: 0;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company__grid {
    margin-top: 5rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .company__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.company__image {
  aspect-ratio: 8/9;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .company__image {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .company__image {
    aspect-ratio: 4/3;
  }
}

.company__img {
  width: 100%;
  height: 100%;
  max-width: 640px;
  max-height: 720px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .company__img {
    max-width: 100%;
    max-height: 100%;
  }
}

.company__info {
  display: flex;
  flex-direction: column;
  color: #1F2933;
}

.company__info-item {
  font-size: 1.5rem;
  letter-spacing: 5px;
  line-height: 3rem;
}

@media (max-width: 479px) {
  .company__info-item {
    font-size: 0.875rem;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .company__info-item {
    font-size: 1rem;
    letter-spacing: 4px;
    line-height: 2rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company__info-item {
    font-size: 1.5rem;
    letter-spacing: 8px;
    line-height: 3rem;
  }
}

.company__info-item--indent {
  margin-left: 9rem;
}

@media (max-width: 479px) {
  .company__info-item--indent {
    margin-left: 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .company__info-item--indent {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company__info-item--indent {
    margin-left: 5rem;
  }
}

.company__info-label {
  font-weight: 500;
}

.contact {
  padding: 3rem 0;
  background-color: #1F2933;
}

.introduce_top {
  margin-top: 70px;
  padding: 0 3rem;
}

.business,
.service,
.standard_plan,
.basic_plan,
.pro_plan,
.option_service,
.payment_method,
.payment_timing,
.fees,
.service_provision,
.returns,
.cancellation,
.prohibited_acts,
.scope,
.jurisdiction {
  margin-top: 20px;
  padding: 0 3rem;
}

.jurisdiction {
  padding-bottom: 3rem;
}

.introduce_title {
  text-align: center;
}

.introduce_grid {
  margin-top: 30px;
}

.introduce_grid-text {
  line-height: 1.5rem;
}

.introduce {
  padding-top: 5rem;
}

@media (max-width: 479px) {
  .contact {
    padding: 3rem 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav{
    gap: 1rem;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }

  .introduce {
    padding-top: 3rem;
  }
}

.contact__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .contact__container {
    padding: 0 1.5rem;
  }

  .business,
  .service,
  .standard_plan,
  .basic_plan,
  .pro_plan,
  .option_service,
  .payment_method,
  .payment_timing,
  .fees,
  .service_provision,
  .returns,
  .cancellation,
  .prohibited_acts,
  .scope,
  .jurisdiction {
    margin-top: 20px;
    padding: 0 1.5rem;
  }

  .introduce_top {
    margin-top: 70px;
    padding: 0 1.5rem;
  }

  .jurisdiction {
    padding-bottom: 3rem;
  }
}

@media (min-width: 769px) {
  .contact__container {
    padding: 0 2rem;
  }

  .business,
  .service,
  .standard_plan,
  .basic_plan,
  .pro_plan,
  .option_service,
  .payment_method,
  .payment_timing,
  .fees,
  .service_provision,
  .returns,
  .cancellation,
  .prohibited_acts,
  .scope,
  .jurisdiction {
    margin-top: 20px;
    padding: 0 2rem;
  }

  .introduce_top {
    margin-top: 70px;
    padding: 0 2rem;
  }

  .jurisdiction {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact__container {
    padding: 0 3rem;
  }

  .business,
  .service,
  .standard_plan,
  .basic_plan,
  .pro_plan,
  .option_service,
  .payment_method,
  .payment_timing,
  .fees,
  .service_provision,
  .returns,
  .cancellation,
  .prohibited_acts,
  .scope,
  .jurisdiction {
    margin-top: 20px;
    padding: 0 3rem;
  }

  .introduce_top {
    margin-top: 70px;
    padding: 0 3rem;
  }

  .jurisdiction {
    padding-bottom: 3rem;
  }
}

.contact__label {
  text-align: center;
  font-weight: 600;
  color: #F97316;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 479px) {
  .contact__label {
    font-size: 0.875rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__label {
    font-size: 1rem;
  }
}

.contact__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 8px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4rem;
}

.contact_footer {
  color: #ffffff;
  font-size: larger;
  letter-spacing: 3px;
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  margin-bottom: 30px;
  gap: 1.5rem;
  padding-top: 20px;
}

.contact_footer_left {
  flex: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


@media (max-width: 479px) {
  .contact__title {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .contact_footer {
    flex-direction: column;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .contact_footer {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact__title {
    font-size: 1.75rem;
    line-height: 1.6;
    letter-spacing: 6px;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact__title {
    font-size: 1.875rem;
  }
}

.contact__form-wrapper {
  max-width: 60rem;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 6.25rem 3.75rem;
}

@media (max-width: 479px) {
  .contact__form-wrapper {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form-wrapper {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact__form-wrapper {
    padding: 3rem 2rem;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 479px) {
  .contact__form {
    gap: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form {
    gap: 1.5rem;
  }
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (max-width: 479px) {
  .contact__form-row {
    gap: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form-row {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact__form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
}

.contact__form-label {
  display: block;
  color: #1F2933;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 8px;
  margin-bottom: 0.5rem;
}

@media (max-width: 479px) {
  .contact__form-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form-label {
    font-size: 0.875rem;
    letter-spacing: 4px;
  }
}

.contact__form-input,
.contact__form-select,
.contact__form-textarea {
  width: 100%;
  background-color: #F3F4F6;
  border: 1px solid #475569;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  color: #1F2933;
  font-family: inherit;
  font-size: 1rem;
}

@media (max-width: 479px) {

  .contact__form-input,
  .contact__form-select,
  .contact__form-textarea {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {

  .contact__form-input,
  .contact__form-select,
  .contact__form-textarea {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}

.contact__form-input:focus,
.contact__form-select:focus,
.contact__form-textarea:focus {
  outline: none;
  border-color: #F97316;
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 479px) {
  .contact__form-textarea {
    min-height: 80px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form-textarea {
    min-height: 100px;
  }
}

.contact__form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #1F2933;
  font-size: 0.875rem;
}

@media (max-width: 479px) {
  .contact__form-checkboxes {
    font-size: 0.75rem;
  }
}

.contact__form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.contact__form-checkbox input[type=checkbox] {
  cursor: pointer;
}

.contact__form-submit {
  text-align: center;
}

.contact__form-button {
  background-color: #F97316;
  color: #ffffff;
  padding: 1rem 4rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color 0.3s;
}

@media (max-width: 479px) {
  .contact__form-button {
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact__form-button {
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

.contact__form-button:hover {
  background-color: #D9650F;
}

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