@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

@-webkit-keyframes carousel {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes carousel {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.anchor {
  position: relative;
}
@media screen and (max-width: 767px) {
  .anchor--comparison {
    top: -100px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.section--imaged {
  position: relative;
  z-index: 0;
}
.section--streaks {
  background: url("../public/img/bg/streaks-single.svg");
  background-position: bottom;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .section--streaks {
    background-position: right;
  }
}
.section__container {
  margin: 0 auto;
  padding-inline: 6.4%;
  width: 100%;
  max-width: calc(1200px + 12.8%);
}
.section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.heading__main {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .heading__main {
    font-size: 3.2rem;
  }
}
.heading__main--m {
  font-size: 3.2rem;
}
.heading__sub {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #df0e11;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.heading__highlight {
  display: inline-block;
  margin-inline: 0.15em;
  padding-inline: 10px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
}
.heading__highlight--black {
  background: #000;
}

.button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  border: 2px solid #f7f7f7;
  border-radius: 50px;
  padding-block: 24px;
  width: 100%;
  max-width: 476px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(50%, #6e9414));
  background: linear-gradient(90deg, #fba000 0%, #6e9414 50%);
  -webkit-box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .button {
    padding-block: 10px;
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  width: 0;
  height: 100%;
  background: #fba000;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.button::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("../public/img/icons/caret-white-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button:hover {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}
.button:hover::before {
  width: 100%;
}
.button--back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-color: #df0e11;
  color: #df0e11;
  background: #fff;
}
.button--back::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
          filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
}
.button--back::before {
  background: #df0e11;
}
.button--back:hover {
  color: #fff;
}
.button--back:hover::after {
  -webkit-filter: none;
          filter: none;
}
.button--download::after {
  width: 12px;
  height: 16px;
  background-image: url("../public/img/icons/download-white.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button:disabled {
  cursor: not-allowed;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 46px 3.33%;
  width: 100%;
  background: transparent;
  z-index: 992;
}
@media screen and (max-width: 1800px) {
  .header {
    padding: 2.3958333333vw 3.33%;
  }
}
@media screen and (max-width: 767px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 0 3.33%;
    height: 64px;
    background: #fff;
  }
}
.header__logo {
  display: block;
  width: 181px;
}
@media screen and (max-width: 1800px) {
  .header__logo {
    width: 9.4270833333vw;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 37.87%;
  }
}
@media screen and (min-width: 767px) {
  .header__hamburger, .header__menu {
    display: none;
  }
}
.header__hamburger {
  position: relative;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
.header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.header__hamburger span:first-child {
  top: 38%;
}
.header__hamburger span:last-child {
  top: 62%;
}
.header__hamburger.active span {
  top: 50%;
  opacity: 0;
}
.header__hamburger.active span:first-child {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.active span:last-child {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.header__menu {
  position: fixed;
  bottom: 0;
  left: 100%;
  padding-top: 40px;
  width: 100%;
  height: calc(100% - 64px);
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  overflow-y: auto;
  opacity: 0;
}
.header__menu.active {
  left: 0;
  opacity: 1;
  z-index: 999;
}
.header__nav {
  width: 100%;
}
.header__nav-item {
  position: relative;
  display: block;
  padding: 16px 17.1%;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17.1%;
  width: 8px;
  height: 16px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../public/img/icons/caret-red-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header__nav-item:hover::after {
  right: 25%;
}
.header__button {
  margin: 25px auto;
  width: calc(100% - 50px);
}

.footer {
  width: 100%;
}
.footer__main {
  padding-block: 64px;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer__main {
    padding-inline: 3.33%;
  }
}
.footer__logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 271px;
}
.footer__copyright {
  display: block;
  padding-block: 23px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-inline: 3.33%;
  }
}

.fltc {
  position: fixed;
  bottom: 2.5%;
  right: 2.5%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .fltc {
    right: 50%;
    width: 91.46%;
    max-width: 375px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .fltc.active {
    opacity: 1;
  }
}
.fltc__image {
  margin-inline: auto;
  width: 183.67px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fltc__image {
    position: absolute;
    bottom: 56px;
    right: 4%;
    width: 91.83px;
  }
}
.fltc__image-new {
  display: block;
  max-width: 465px;
}
.fltc__links {
  position: relative;
  top: -20px;
  border-radius: 20px;
  width: 100%;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1019607843);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fltc__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    top: 0;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1019607843);
  }
}
.fltc__url {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 42px;
  width: 100%;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fltc__url {
    border: 2px solid #f7f7f7;
    padding-inline: 0;
    padding-block: 14px !important;
    width: 50%;
    text-align: center;
  }
}
.fltc__url::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.fltc__url:hover::before {
  width: 100%;
}
.fltc__url--form {
  gap: 16px;
  border-radius: 20px 20px 0 0;
  padding-block: 18.5px;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(50%, #6e9414));
  background: linear-gradient(90deg, #fba000 0%, #6e9414 50%);
  font-size: 1.8rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .fltc__url--form {
    border-radius: 0 32px 32px 0;
    font-size: 1.2rem;
  }
}
.fltc__url--form::before {
  background: #fba000;
}
.fltc__url--form::after {
  content: "";
  min-width: 8px;
  height: 16px;
  background-image: url("../public/img/icons/caret-white-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.fltc__url--tel {
  gap: 8px;
  border-radius: 0 0 20px 20px;
  padding-block: 14px;
  background: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #6e9414;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .fltc__url--tel {
    border-radius: 32px 0 0 32px;
    font-size: 1.6rem;
  }
}
.fltc__url--tel::before {
  background: #6e9414;
}
.fltc__url--tel .image {
  width: 16px;
  height: 16px;
}
.fltc__url--tel:hover {
  color: #fff;
}
.fltc__url--tel:hover .image {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.form {
  width: 100%;
}
.form__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.form__row {
  display: grid;
  grid-template-columns: 3fr 1fr 61.17%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form__label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .form__label {
    margin-top: 0;
  }
}
.form__checkbox, .form__radio {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.form__checkbox span, .form__radio span {
  position: absolute;
  top: 4px;
  left: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
}
.form__checkbox span::before, .form__radio span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 50%;
  height: 50%;
  background: #df0e11;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form__checkbox input, .form__radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.form__checkbox input:checked ~ span::before, .form__radio input:checked ~ span::before {
  display: block;
}
.form__checkbox:hover input ~ span, .form__radio:hover input ~ span {
  background: #e7f1f7;
}
.form__checkbox span {
  border-radius: 0 !important;
}
.form__checkbox span::before {
  content: "✓";
  top: 40%;
  left: 60%;
  width: auto;
  height: auto;
  font-size: 2.4rem;
  font-weight: 700;
  background: none;
}
.form__required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  border: 1px solid #df0e11;
  border-radius: 4px;
  width: 41px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .form__required {
    margin: 0 0 0 auto;
  }
}
.form__required::before {
  content: "必須";
  color: #df0e11;
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.form__required--non {
  border-color: #adadad;
}
.form__required--non::before {
  content: "任意";
  color: #adadad;
}
.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  min-height: 56px;
}
@media screen and (max-width: 767px) {
  .form__field {
    grid-area: 2/1/3/3;
  }
}
.form__input {
  width: 100%;
}
.form__input input,
.form__input textarea {
  border: 0;
  border-bottom: 1px solid #000;
  padding: 15.5px 16px;
  width: 100%;
  background: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.form__input textarea {
  min-height: 152px;
}
.form__confirm-val {
  display: none;
  max-width: 600px;
  word-wrap: break-word;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.form__confirm-val.active {
  display: block;
}
.form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .form__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .form__actions .button {
    min-height: 96px;
  }
}
.form__back, .form__confirm {
  display: none;
}
.form__back.active, .form__confirm.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mainvisual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  max-height: 960px;
  overflow: hidden;
}
@media screen and (min-width: 2100px) {
  .mainvisual {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1800px) {
  .mainvisual {
    max-height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 60px;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1800px) {
  .mainvisual__heads {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 99;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heads {
    position: relative;
    top: -30px;
    z-index: 9;
  }
}
.mainvisual__heading {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 1800px) {
  .mainvisual__heading {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heading {
    font-size: 3.2rem;
  }
}
.mainvisual__heading-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mainvisual__heading-text--top {
  padding-left: 64px;
  font-size: 6.4rem;
}
@media screen and (max-width: 1800px) {
  .mainvisual__heading-text--top {
    padding-left: 3.3333333333vw;
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heading-text--top {
    padding-left: 24px;
    font-size: 2.4rem;
  }
}
.mainvisual__heading-text--mid {
  display: block;
  padding-inline: 64px 40px;
  color: #fff;
  background: #eb5009;
}
@media screen and (max-width: 1800px) {
  .mainvisual__heading-text--mid {
    padding-inline: 3.3333333333vw 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heading-text--mid {
    padding-inline: 24px 18px;
  }
}
.mainvisual__heading-text--bot {
  display: inline-block;
  margin: 16px 16px 0 0;
  padding: 14px 16px 26px 64px;
  font-size: 12.8rem;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
}
@media screen and (max-width: 1800px) {
  .mainvisual__heading-text--bot {
    margin: 0.8333333333vw 0.8333333333vw 0 0;
    padding: 0.7291666667vw 0.8333333333vw 1.3541666667vw 3.3333333333vw;
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heading-text--bot {
    margin: 8px 8px 0 0;
    padding: 6px 16px 10px 24px;
    font-size: 4.8rem;
  }
}
.mainvisual__heading-details {
  margin-top: 74px;
  padding-inline: 64px;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1800px) {
  .mainvisual__heading-details {
    margin-top: 3.8541666667vw;
    padding-inline: 3.3333333333vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__heading-details {
    margin-top: 24px;
    padding-inline: 24px;
    font-size: 1.6rem;
  }
}
.mainvisual__gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 960px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1800px) {
  .mainvisual__gallery {
    margin-left: auto;
    max-width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__gallery {
    max-width: 960px;
    height: 375px;
  }
}
.mainvisual__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 785px;
  height: 100%;
}
@media screen and (max-width: 1800px) {
  .mainvisual__bg {
    max-width: 40.8854166667vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__bg {
    max-width: 306.64px;
  }
}
.mainvisual__bg img {
  -o-object-fit: fill;
     object-fit: fill;
}
.mainvisual__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1%;
  width: 65%;
  max-width: 510.09px;
  height: 100%;
  background-image: url("../public/img/mv/bg-overlay.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9;
}
@media screen and (max-width: 1800px) {
  .mainvisual__bg::after {
    max-width: 510.09px;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__bg::after {
    max-width: 510.09px;
  }
}
.mainvisual__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1800px) {
  .mainvisual__slider {
    gap: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__slider {
    gap: 9.38px;
  }
}
.mainvisual__slider-item {
  width: 303px !important;
  height: 408px;
}
@media screen and (max-width: 1800px) {
  .mainvisual__slider-item {
    width: 15.78125vw !important;
    height: 21.25vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__slider-item {
    width: 118.36px !important;
    height: 159.38px;
  }
}
.mainvisual__slider-item, .mainvisual__slider-item img {
  border-radius: 16px;
}

.market {
  margin-block: 95px 140px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .market {
    margin-block: 68px 100px;
  }
}
.market__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 800px;
}
@media screen and (max-width: 1100px) {
  .market__container {
    min-height: 1100px;
  }
}
@media screen and (max-width: 767px) {
  .market__container {
    min-height: 856px;
  }
}
.market__deco {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .market__deco {
    max-width: 375px;
  }
}
.market__deco-item {
  position: absolute;
  width: 21.67%;
}
@media screen and (max-width: 767px) {
  .market__deco-item {
    width: 34.67%;
  }
}
.market__deco-item--rt1, .market__deco-item--lb1 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rt1, .market__deco-item--lb1 {
    width: 40%;
  }
}
.market__deco-item--lt2, .market__deco-item--rb2 {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--lt2, .market__deco-item--rb2 {
    width: 24%;
  }
}
.market__deco-item--rt2, .market__deco-item--lb2 {
  width: 18.33%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rt2, .market__deco-item--lb2 {
    width: 29.33%;
  }
}
.market__deco-item--lt1 {
  top: 4%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .market__deco-item--lt1 {
    top: 6%;
    left: 10%;
  }
}
.market__deco-item--lt2 {
  top: 0;
  left: 24%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--lt2 {
    top: 16.5%;
    left: 2%;
  }
}
.market__deco-item--rt1 {
  top: 2%;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rt1 {
    top: 0;
    right: 13%;
  }
}
.market__deco-item--rt2 {
  top: 31%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rt2 {
    top: 12%;
    right: 1%;
  }
}
.market__deco-item--lb1 {
  bottom: 5%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .market__deco-item--lb1 {
    bottom: 10%;
    left: 0;
  }
}
.market__deco-item--lb2 {
  bottom: 0;
  left: 27%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--lb2 {
    bottom: 1%;
    left: 40%;
  }
}
.market__deco-item--rb1 {
  bottom: 18%;
  right: 2%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rb1 {
    bottom: 10%;
    right: 22%;
  }
}
.market__deco-item--rb2 {
  bottom: 2%;
  right: 20%;
}
@media screen and (max-width: 767px) {
  .market__deco-item--rb2 {
    right: 5%;
  }
}
.market__heading {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .market__heading {
    font-size: 2rem;
  }
}
.market__stats, .market__stats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.market__stats {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-block: 24px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .market__stats {
    margin-block: 16px;
    gap: 16px;
    max-width: 327px;
  }
}
.market__stats-item {
  position: relative;
  width: 270px;
  height: 263px;
}
@media screen and (max-width: 767px) {
  .market__stats-item {
    width: 151.88px;
    height: 147.94px;
  }
}
.market__stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../public/img/market/wreath.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.market__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
.market__text {
  font-weight: 700;
  color: #df0e11;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .market__text {
    font-size: 0.9rem;
  }
}
.market__text--m {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .market__text--m {
    font-size: 1.13rem;
  }
}
.market__text--l {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .market__text--l {
    font-size: 1.35rem;
  }
}
.market__text--m, .market__text--l {
  margin-bottom: 6px;
}
.market__text--xl {
  font-size: 4.8rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .market__text--xl {
    font-size: 2.7rem;
  }
}

.target {
  position: relative;
}
.target__heading {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  top: -88px;
  left: 50%;
  width: 100%;
  line-height: 1.75em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .target__heading {
    top: -50px;
    font-size: 2rem;
  }
}
.target__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  padding-block: 128px;
}
@media screen and (max-width: 1000px) {
  .target__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .target__list {
    padding-block: 64px;
  }
}
.target__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  border: 4px solid #f7f7f7;
  border-radius: 8px;
  padding: 0 4.05%;
  min-height: 120px;
  background: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.target__item::after {
  content: "“";
  position: absolute;
  top: -32px;
  left: 1%;
  font-size: 4.8rem;
  font-weight: 700;
  color: #203dcf;
}
.target__item::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 12px;
  border-style: solid;
  border-width: 12px 0 0 12px;
  border-color: transparent transparent transparent #f7f7f7;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.target__icon {
  min-width: 48px;
  height: 48px;
  background-image: url("../public/img/icons/sadface.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.target__text {
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .target__text {
    font-size: 1.6rem;
  }
}
.target__task {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .target__task {
    font-size: 2rem;
  }
}
.target__task .heading__highlight {
  margin-right: 8px;
}
.target__task-container {
  padding-block: 128.5px;
}
@media screen and (max-width: 767px) {
  .target__task-container {
    padding-block: 73px;
  }
}
.target__task-logowrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .target__task-logowrapper {
    padding-block: 16px;
  }
}
.target__task-logo {
  display: inline-block;
  margin-right: 16px;
  padding-top: 1px;
  width: 456px;
}
@media screen and (max-width: 767px) {
  .target__task-logo {
    width: 274px;
  }
}

.qa {
  width: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#820002), color-stop(49.52%, #df0e11));
  background: linear-gradient(180deg, #820002 0%, #df0e11 49.52%);
}
.qa__question {
  position: relative;
  padding-block: 60px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .qa__question {
    padding-block: 24px;
  }
}
.qa__question-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
}
.qa__question-heading .heading__sub,
.qa__question-heading .heading__main {
  color: #fff;
}
.qa__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}
.qa__slider-item {
  width: 600px !important;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .qa__slider-item {
    width: 450px !important;
    height: 300px;
  }
}
.qa__slider-item, .qa__slider-item img {
  border-radius: 16px;
}
.qa__answer {
  position: relative;
  margin-inline: auto;
  padding-block: 65px;
  max-width: 1856px;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 1856px) {
  .qa__answer {
    margin-inline: 3.33%;
  }
}
@media screen and (max-width: 767px) {
  .qa__answer {
    margin-inline: 6.4%;
    max-width: 100%;
  }
}
.qa__answer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 24px 0;
  border-color: #df0e11 transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .qa__answer::before {
    border-width: 27.08px 13.54px 0;
  }
}
.qa__answer, .qa__answer .section__bg img {
  border-radius: 16px;
}
.qa__answer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 1260px) {
  .qa__answer-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .qa__answer-list {
    gap: 48px;
  }
}
.qa__answer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  max-width: 346.67px;
}
@media screen and (max-width: 767px) {
  .qa__answer-item {
    max-width: 274px;
  }
}
.qa__answer-image {
  width: 100%;
  max-width: 270px;
}
@media screen and (max-width: 767px) {
  .qa__answer-image {
    max-width: 194px;
  }
}
.qa__answer-title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .qa__answer-title {
    font-size: 2rem;
  }
}
.qa__answer-description {
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .qa__answer-description {
    font-size: 1.6rem;
  }
}
.qa__answer-description .highlight {
  font-weight: 700;
  color: #df0e11;
}
.qa__image {
  display: block;
  margin: 50px auto 0;
  max-width: 773.5px;
}
@media screen and (max-width: 767px) {
  .qa__note-container {
    padding-inline: 0;
  }
}
.qa__note {
  position: relative;
  padding-block: 128px;
}
@media screen and (max-width: 767px) {
  .qa__note {
    padding-block: 64px;
  }
}
.qa__note::before, .qa__note::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 432px;
  height: 432px;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .qa__note::before, .qa__note::after {
    width: 216px;
    height: 216px;
  }
}
.qa__note::before {
  top: -50%;
  left: 0;
}
.qa__note::after {
  bottom: -40%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .qa__note::after {
    bottom: -50%;
  }
}
.qa__note-heading {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .qa__note-heading {
    font-size: 2rem;
  }
}

.case {
  padding-block: 128px;
  width: 100%;
  background: #fff;
}
.case__container {
  max-width: calc(1000px + 12.8%);
}
.case__wrapper {
  position: relative;
  margin: 48px auto 0;
  border-radius: 16px;
  padding: 48px;
  background: #e7f1f7;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .case__wrapper {
    padding: 24px;
  }
}
.case__deco {
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 26%;
}
@media screen and (max-width: 767px) {
  .case__deco {
    right: 0;
    width: 56.27%;
  }
}
.case__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .case__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.case__nav-item {
  position: relative;
  border: 2px solid #df0e11;
  border-radius: 4px;
  padding: 6px 32px 6px 16px;
  font-weight: 700;
  text-align: left;
  color: #df0e11;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .case__nav-item {
    font-size: 1.2rem;
  }
}
.case__nav-item::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 12px;
  width: 8px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../public/img/icons/caret-down-red.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.case__nav-item.active, .case__nav-item:hover {
  color: #fff;
  background: #df0e11;
}
.case__nav-item.active::after, .case__nav-item:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.case__content {
  width: 100%;
}
.case__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  gap: 24px;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}
@media screen and (max-width: 767px) {
  .case__details {
    grid-template-columns: 1fr;
  }
}
.case__details.active {
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}
.case__detail-title {
  margin-bottom: 23px;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.case__detail-desc {
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.case__detail-img, .case__detail-img img {
  border-radius: 8px;
}
.case__link {
  margin: 128px auto 0;
}
.case__link-heading {
  position: relative;
  margin: 0 auto 24px;
  padding-inline: 58px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .case__link-heading {
    font-size: 2rem;
  }
}
.case__link-heading::before, .case__link-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 33.77px;
  height: 58.5px;
  background-image: url("../public/img/icons/deco-heading.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.case__link-heading::before {
  left: 0;
}
.case__link-heading::after {
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.case__link-btn {
  margin: 24px auto 0;
}

.comparison {
  padding-bottom: 128px;
}
.comparison__table {
  display: grid;
  grid-template-columns: 16.4% 41.8% 41.8%;
  margin: 48px auto 0;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .comparison__table {
    grid-template-columns: 32.72% 33.64% 33.64%;
  }
}
.comparison__table-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border: 4px solid transparent;
}
@media screen and (max-width: 767px) {
  .comparison__table-col {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.comparison__table-col--red {
  border-color: #df0e11;
  border-radius: 8px;
}
.comparison__table-spacer, .comparison__table-data {
  padding-block: 16px;
}
.comparison__table-spacer {
  display: block;
  width: 100%;
  min-height: 56px;
}
@media screen and (max-width: 767px) {
  .comparison__table-spacer {
    min-height: 50px;
  }
}
.comparison__table-data {
  display: block;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 8px;
  width: 100%;
  background: #e7f1f7;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .comparison__table-data {
    font-size: 1.2rem;
  }
}
.comparison__table-data--black, .comparison__table-data--yellow, .comparison__table-data--red {
  font-weight: 700;
  color: #fff;
}
.comparison__table-data--black {
  background: #000;
}
@media screen and (max-width: 767px) {
  .comparison__table-data--black:not(:last-child) {
    padding-block: 25px;
  }
}
.comparison__table-data--yellow {
  background: #fba000;
}
@media screen and (max-width: 767px) {
  .comparison__table-data--yellow {
    padding-block: 16px;
  }
}
.comparison__table-data--red {
  border-radius: 4px 4px 0 0;
  padding-block: 10px;
  font-size: 2.4rem;
  background: #df0e11;
}
@media screen and (max-width: 767px) {
  .comparison__table-data--red {
    font-size: 1.6rem;
  }
}

.request {
  position: relative;
  border-radius: 16px;
  padding-block: 128px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .request {
    padding-block: 64px;
  }
}
.request::before, .request::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 432px;
  height: 432px;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
  mix-blend-mode: screen;
}
.request::before {
  top: -10%;
  left: 1%;
}
@media screen and (max-width: 767px) {
  .request::before {
    top: -16%;
    left: unset;
    right: -30%;
  }
}
.request::after {
  top: -1%;
  left: 8%;
}
@media screen and (max-width: 767px) {
  .request::after {
    top: -2%;
    left: unset;
    right: -86%;
  }
}
.request__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .request__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .request__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: calc(327px + 12.8%);
  }
}
.request__heading {
  font-size: 6.4rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .request__heading {
    font-size: 3.2rem;
  }
}
.request__info {
  display: grid;
  gap: 48px;
  width: 100%;
  max-width: 528px;
}
.request__info-title {
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .request__info-title {
    font-size: 2rem;
  }
}
.request__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .request__list {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
.request__item, .request__icon {
  width: 120px;
}
.request__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  height: 120px;
  background: #fff;
  -webkit-box-shadow: inset 0 10px 10px rgba(188, 0, 3, 0.3);
          box-shadow: inset 0 10px 10px rgba(188, 0, 3, 0.3);
}
.request__icon-num {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #df0e11;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.request__icon-img {
  width: 48px;
  height: 48px;
}
.request__item-title {
  margin-block: 16px 8px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.request__item-desc {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.request__button {
  margin-inline: auto;
}

.price {
  padding-block: 128px;
}
@media screen and (max-width: 767px) {
  .price {
    padding-block: 64px;
  }
}
.price__container {
  margin-top: 48px;
  max-width: calc(600px + 12.8%);
}
.price__text {
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.price__computed {
  margin-block: 24px;
  border: 4px solid #f7f7f7;
  border-radius: 16px;
  padding: 32px 48px;
  background: #fff;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .price__computed {
    padding: 32px 1%;
  }
}
.price__computed-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .price__computed-heading {
    margin-bottom: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 9px;
  }
}
.price__computed-label {
  border-radius: 24px;
  padding: 4px 17px;
  font-weight: 700;
  color: #fff;
  background: #df0e11;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.price__computed-title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.price__formula, .price__formula-equation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .price__formula, .price__formula-equation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    width: 100%;
  }
}
.price__formula {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .price__formula {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.price__formula-number, .price__formula-final {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.price__formula-number .price__text, .price__formula-final .price__text {
  margin-left: 4px;
  font-weight: 700;
}
.price__formula-final {
  position: relative;
  font-size: 4.8rem;
  color: #df0e11;
}
.price__formula-final::before {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 30px;
  width: 100%;
  height: 4px;
  background: #df0e11;
}
.price__formula-operand {
  margin-top: 10px;
  width: 13px;
  height: 13px;
}
.price__note {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.faq {
  padding-block: 128px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 64px;
  }
}
.faq__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .faq__container {
    grid-template-columns: 1fr;
  }
}
.faq__item {
  position: relative;
  border: 6px solid #f7f7f7;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 389.33px;
  height: auto;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.faq__item::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 24px;
  width: 20px;
  height: 10px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: url("../public/img/icons/caret-down-red.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.faq__item.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item.active .faq__row--answer {
  margin-top: 16px;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.faq__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.faq__row::before {
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #df0e11;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.faq__row--question::before {
  content: "Q";
  color: #fff;
  background: #df0e11;
}
.faq__row--answer {
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.contact {
  padding-block: 128px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 64px;
  }
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2%;
  margin-top: 48px;
}
@media screen and (max-width: 1300px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
}
.contact__headings {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 552px;
}
.contact__text {
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.contact__heading-text {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#fba000), color-stop(7%, #f27504), color-stop(15%, #eb5009), color-stop(23%, #e5330c), color-stop(30%, #e11e0f), color-stop(38%, #de1210), color-stop(45%, #de0e11), to(#de0e11));
  background: linear-gradient(90deg, #fba000 0%, #f27504 7%, #eb5009 15%, #e5330c 23%, #e11e0f 30%, #de1210 38%, #de0e11 45%, #de0e11 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 4.8rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact__heading-text {
    font-size: 3.2rem;
  }
}
.contact__tel, .contact__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  gap: 16px;
  width: 100%;
  font-weight: 700;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .contact__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__tel-text {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.contact__tel-link {
  gap: 8px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.contact__tel-icon {
  width: 16px;
  height: 16px;
}
.contact__form {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    min-width: 100%;
  }
}
.contact__privacy {
  display: block;
  margin: 48px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    max-width: 250px;
  }
}
.contact__privacy a {
  text-decoration: underline;
}
.contact__button {
  margin-inline: auto;
  max-width: 438px;
}
@media screen and (max-width: 767px) {
  .contact__button {
    height: 96px;
  }
}
.contact__complete {
  display: none;
}
.contact__complete .contact__text {
  font-size: 1.4rem;
}
.contact__complete.active {
  display: block;
}
.contact__complete-heading {
  margin-bottom: 24px;
  font-size: 3.2rem;
}
.contact__complete-actions {
  margin: 48px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__complete-actions {
    min-height: 96px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.wpcf7-radio,
.wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.wpcf7-radio input,
.wpcf7-acceptance input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 24px !important;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
}
.wpcf7-radio .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  display: none;
  position: absolute;
  top: 7.5px;
  left: 4.5px;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background: #df0e11;
}
.wpcf7-radio .wpcf7-list-item-label:hover::before,
.wpcf7-acceptance .wpcf7-list-item-label:hover::before {
  background: #e7f1f7;
}
.wpcf7-radio input:checked ~ .wpcf7-list-item-label::after,
.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  padding-left: 32px !important;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  border-radius: 0 !important;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "✓";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  font-size: 2.4rem;
  font-weight: 700;
  background: none;
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.wpcf7-response-output {
  font-size: 2.4rem;
}

.col-nextred {
  color: #df0e11;
}

.col-black {
  color: #000;
}

.col-blue {
  color: #203dcf;
}

.bg-bluegray {
  background: #e7f1f7;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: "Oswald", sans-serif !important;
  line-height: 1 !important;
}

.odometer {
  --odometer-duration: 1.5s !important;
}

/* Use CSS variable to override odometer's default transition */
.odometer.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition-duration: var(--odometer-duration, 1s) !important;
          transition-duration: var(--odometer-duration, 1s) !important;
}

.bold {
  font-weight: 700;
}

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