@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--slide-container-width)));
  }
}
.firstview {
  --slide-container-width: 3074px;
}
.firstview_top {
  background: url("../img/firstview/bg.png") center/cover no-repeat;
}
.firstview_container {
  height: 770px;
  padding-block: 60px 30px;
}
@media (max-width: 1023px) {
  .firstview_container {
    height: auto;
    padding-top: 20px;
  }
}
.firstview_row {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1023px) {
  .firstview_row {
    flex-direction: column;
    text-align: center;
    padding-bottom: 120px;
  }
}
.firstview_bottom {
  overflow: hidden;
}

.firstview_col_left {
  flex: none;
  padding-top: 20px;
}
.firstview_col_right {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .firstview_col_right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.firstview_heading {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023px) {
  .firstview_heading {
    margin-bottom: 30px;
    align-items: center;
    gap: 8px;
  }
}
.firstview_heading_img {
  height: 42px;
  width: 338px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 1023px) {
  .firstview_heading_img {
    height: 32px;
    width: auto;
  }
}
.firstview_heading_text {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}
@media (max-width: 1023px) {
  .firstview_heading_text {
    font-size: 14px;
  }
}

.firstview_pc_img {
  width: 560px;
}
@media (max-width: 767px) {
  .firstview_pc_img {
    max-width: 360px;
  }
}
@media (max-width: 575px) {
  .firstview_pc_img {
    max-width: 240px;
  }
}

.firstview_catch {
  font-weight: bold;
}
.firstview_catch_main {
  font-size: 52px;
  font-feature-settings: "palt";
  line-height: 66px;
}
@media (max-width: 1023px) {
  .firstview_catch_main {
    line-height: inherit;
    font-size: 30px;
  }
}
.firstview_catch_sub {
  margin-top: 20px;
  font-size: 22px;
  line-height: 33px;
}
@media (max-width: 1023px) {
  .firstview_catch_sub {
    margin-top: 10px;
    line-height: inherit;
    font-size: 16px;
  }
}

.firstview_solution {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .firstview_solution {
    margin-top: 30px;
    justify-content: center;
  }
}
.firstview_solution_img {
  max-height: 70px;
}
@media (max-width: 767px) {
  .firstview_solution_img {
    max-height: 60px;
  }
}
@media (max-width: 575px) {
  .firstview_solution_img {
    max-height: 40px;
  }
}

.firstview_btn_wrap {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media (max-width: 1023px) {
  .firstview_btn_wrap {
    right: 0;
    bottom: 20px;
    margin: auto;
  }
}
.firstview_btn_wrap .btn_gradient {
  margin: auto;
}

.firstview_slide_wrap {
  width: var(--slide-container-width);
}
.firstview_slide_list {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 42px;
  width: 200%;
  padding: 0 42px;
  animation: scroll 30s linear infinite;
}
.firstview_slide_item {
  flex: none;
}

.problem {
  background-color: #F2F2F2;
}
.problem_body {
  padding-top: 20px;
}
@media (max-width: 1023px) {
  .problem_body {
    padding-top: 0;
  }
}
.problem_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .problem_list {
    gap: 0;
  }
}

.problem_item {
  flex: 1;
  width: 25%;
  text-align: center;
}
@media (max-width: 767px) {
  .problem_item {
    flex: none;
    width: 50%;
    padding: 12px;
  }
}
@media (max-width: 575px) {
  .problem_item {
    width: 100%;
  }
}
.problem_item_img {
  margin: auto;
}
.problem_item_text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .problem_item_text {
    font-size: 14px;
    margin-top: 4px;
  }
}

.solution {
  background-color: var(--color-primary);
}
.solution_body {
  background-color: #F88837;
  border-radius: 20px;
  padding: 60px 80px;
  margin-top: -34px;
}
@media (max-width: 1023px) {
  .solution_body {
    padding: 20px;
    margin-top: -15px;
    border-radius: 12px;
  }
}
.solution_lead {
  margin-block: 48px 40px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1023px) {
  .solution_lead {
    font-size: 18px;
    margin-block: 24px;
  }
}
@media (max-width: 767px) {
  .solution_lead {
    font-size: 16px;
  }
}
.solution_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 24px 40px;
}
@media (max-width: 767px) {
  .solution_list {
    flex-direction: column;
  }
}
.solution_content {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .solution_content {
    margin-top: 40px;
  }
}

.solution_heading {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: #fff;
  border-radius: 99px;
  padding: 4px 72px;
  text-align: center;
  font-size: 40px;
}
@media (max-width: 1023px) {
  .solution_heading {
    font-size: 16px;
    padding-inline: 8px;
  }
}
.solution_heading::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  margin-inline: auto;
  width: 5px;
  height: 25px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .solution_heading::after {
    width: 3px;
    height: 15px;
  }
}
.solution_heading_color {
  color: #EF4C62;
}

.solution_item_img {
  max-height: 88px;
}

.document_cta {
  text-align: center;
  background-color: #fff;
}
.document_cta_text {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .document_cta_text {
    font-size: 16px;
  }
}
.document_cta .btn_gradient {
  margin: 20px auto 0;
}

.point {
  background-color: #FFEFE4;
}
.point_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 995px;
  min-height: 74px;
  margin: 0 auto 40px;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #FF9C32 100%);
  border-radius: 99px;
  color: #fff;
  text-align: center;
}
@media (max-width: 1023px) {
  .point_heading {
    max-width: 800px;
    min-height: 48px;
    padding-inline: 16px;
  }
}
@media (max-width: 767px) {
  .point_heading {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .point_heading {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .point_heading {
    font-size: 16px;
  }
}
.point_lead {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .point_lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.pricing {
  background: url("../img/pricing/bg.png") 0 0 no-repeat;
  background-size: cover;
}
.pricing_lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .pricing_lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.pricing_list {
  display: flex;
  gap: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 60px;
}
@media (max-width: 1279px) {
  .pricing_list {
    border-radius: 12px;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .pricing_list {
    flex-direction: column;
  }
}

.pricing_item {
  flex: 1;
  background-color: #f6f6f6;
  padding: 40px 40px 80px;
  border-radius: 12px;
  text-align: center;
}
@media (max-width: 1279px) {
  .pricing_item {
    padding: 20px 20px 40px;
  }
}
.pricing_item_title {
  border-radius: 99px;
  font-size: 43px;
  font-weight: bold;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 4px 88px;
}
@media (max-width: 1279px) {
  .pricing_item_title {
    padding-inline: 64px;
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pricing_item_title {
    font-size: 22px;
  }
}

.pricing_item_title {
  border-radius: 99px;
  font-size: 43px;
  font-weight: bold;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 4px 88px;
}
@media (max-width: 1279px) {
  .pricing_item_title {
    padding-inline: 64px;
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pricing_item_title {
    font-size: 22px;
  }
}
.pricing_item_title_1 {
  background: linear-gradient(90deg, #ED6A6C 0%, #E8A170 100%);
}
.pricing_item_title_2 {
  background: linear-gradient(90deg, #4F94F0 0%, #7EBFFA 100%);
}

.pricing_item_text_1 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 32px;
}
@media (max-width: 1279px) {
  .pricing_item_text_1 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .pricing_item_text_1 {
    font-size: 20px;
    margin-top: 20px;
  }
}
.pricing_item_text_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 94px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1279px) {
  .pricing_item_text_2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .pricing_item_text_2 {
    font-size: 48px;
  }
}
.pricing_item_text_2_mark {
  font-size: 64px;
}
.pricing_item_text_2_mark:first-of-type {
  margin-top: 0.15em;
}
.pricing_item_text_2_mark:last-of-type {
  margin-left: 0.1em;
}
@media (max-width: 1279px) {
  .pricing_item_text_2_mark {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .pricing_item_text_2_mark {
    font-size: 28px;
  }
}
.pricing_item_text_3 {
  display: block;
  font-size: 20px;
  color: #999;
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .pricing_item_text_3 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .pricing_item_text_3 {
    font-size: 14px;
    margin-top: 20px;
  }
}

.legal_lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .legal_lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.legal_row {
  display: flex;
  gap: 96px;
  font-size: 20px;
}
@media (max-width: 1279px) {
  .legal_row {
    gap: 40px;
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .legal_row {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .legal_row {
    flex-direction: column;
  }
}
.legal_document {
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .legal_document {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .legal_img {
    padding: 0 48px;
  }
}
.legal_img_text {
  margin-top: 48px;
}
@media (max-width: 1023px) {
  .legal_img_text {
    margin-top: 24px;
  }
}

.legal_col_left {
  width: 48%;
}
@media (max-width: 1279px) {
  .legal_col_left {
    flex: 1;
  }
}
@media (max-width: 575px) {
  .legal_col_left {
    width: auto;
  }
}
.legal_col_right {
  flex: none;
  width: 52%;
  border-radius: 12px;
  background-color: #F6F6F6;
  padding: 32px;
}
@media (max-width: 1279px) {
  .legal_col_right {
    flex: 1;
  }
}
@media (max-width: 1023px) {
  .legal_col_right {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .legal_col_right {
    width: auto;
  }
}

.legal_example_text {
  margin-top: 20px;
}

.slide_btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .slide_btns {
    gap: 12px;
  }
}

.slide_btn_next,
.slide_btn_prev {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid #E4E4E4;
  border-radius: 99px;
  background-color: #fff;
  color: #6F6F6F;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .slide_btn_next,
  .slide_btn_prev {
    transition: 0.2s;
  }
  .slide_btn_next:hover,
  .slide_btn_prev:hover {
    color: var(--color-primary);
  }
}
@media (max-width: 1023px) {
  .slide_btn_next,
  .slide_btn_prev {
    width: 40px;
    height: 40px;
  }
}
.slide_btn_next .btn_icon_arrow,
.slide_btn_prev .btn_icon_arrow {
  position: static;
  width: 12px;
  height: 20px;
}
@media (max-width: 1023px) {
  .slide_btn_next .btn_icon_arrow,
  .slide_btn_prev .btn_icon_arrow {
    width: 33.3333%;
    height: 33.3333%;
  }
}

.slide_btn_prev {
  rotate: 180deg;
}

.review {
  background-color: #F0F6FD;
}
.review_body {
  padding-top: 40px;
}
@media (max-width: 1023px) {
  .review_body {
    padding-top: 20px;
  }
}
.review_list {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .review_list {
    flex-direction: column;
    gap: 40px;
  }
}

.review_body {
  margin-top: 40px;
  max-width: 1120px;
  margin-inline: auto;
}
@media (max-width: 1279px) {
  .review_body {
    max-width: 900px;
  }
}
@media (max-width: 767px) {
  .review_body {
    margin-top: 24px;
  }
}

.review-swiper {
  margin: 0 -20px;
  padding: 40px 20px 0;
}
@media (max-width: 1023px) {
  .review-swiper {
    overflow: visible;
    margin: 0;
    padding: 20px 0 0;
  }
}

.review_item {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 10px 0px rgba(1, 91, 217, 0.1490196078);
  width: auto;
  height: auto;
  display: flex;
  gap: 40px;
  padding: 40px 40px 28px;
  color: inherit;
}
@media (max-width: 1023px) {
  .review_item {
    justify-content: center;
    gap: 20px;
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .review_item {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .review_item {
    flex-direction: column;
  }
}
.review_item_img {
  width: 120px;
  height: 120px;
}
@media (max-width: 767px) {
  .review_item_img {
    margin-inline: auto;
  }
}
.review_item_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}
@media (max-width: 767px) {
  .review_item_col {
    margin: auto;
  }
}

.review_item_text_1 {
  position: relative;
  background-color: var(--color-secondary);
  border-radius: 99px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  padding: 4px 12px;
}
.review_item_text_1::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid var(--color-secondary);
}
@media (max-width: 1279px) {
  .review_item_text_1 {
    font-size: 14px;
  }
}
.review_item_text_2 {
  word-break: break-all;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1279px) {
  .review_item_text_2 {
    font-size: 16px;
  }
}
.review_item_text_3 {
  font-size: 14px;
  color: #8A8A8A;
}
@media (max-width: 1279px) {
  .review_item_text_3 {
    font-size: 12px;
  }
}

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

.case_list {
  display: flex;
}

.case_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 410px;
}
@media (max-width: 1023px) {
  .case_item {
    width: 240px;
    gap: 4px;
  }
}
.case_item_img {
  border-radius: 20px;
  margin-bottom: 6px;
}
@media (max-width: 1023px) {
  .case_item_img {
    border-radius: 12px;
  }
}

.case_item_text_1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media (max-width: 1023px) {
  .case_item_text_1 {
    font-size: 14px;
  }
}
.case_item_text_2 {
  font-size: 14px;
  color: var(--color-secondary);
}
@media (max-width: 1023px) {
  .case_item_text_2 {
    font-size: 12px;
  }
}

.qa_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023px) {
  .qa_list {
    margin-bottom: 24px;
  }
}

.qa_item_title,
.qa_item_answer_title {
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .qa_item_title,
  .qa_item_answer_title {
    font-size: 16px;
  }
}

.qa_item_title {
  position: relative;
  background-color: #F4F4F8;
  padding: 20px 28px;
  border-radius: 10px;
  cursor: pointer;
}
.qa_item_title::before, .qa_item_title::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 40px;
  margin: auto;
  width: 4px;
  height: 20px;
  background-color: currentColor;
  rotate: 90deg;
}
@media (max-width: 1023px) {
  .qa_item_title::before, .qa_item_title::after {
    right: 24px;
    width: 3px;
    height: 16px;
  }
}
.qa_item_title.is_active::after {
  rotate: 0deg;
}
@media (max-width: 1023px) {
  .qa_item_title {
    padding: 16px;
    padding-right: 48px;
  }
}

.qa_item_body {
  padding: 20px 28px;
}
@media (max-width: 1023px) {
  .qa_item_body {
    padding: 16px;
  }
}
.qa_item_question, .qa_item_answer {
  display: flex;
}

.qa_item_answer {
  display: flex;
}
.qa_item_answer_title {
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-left: 0.05em;
}
.qa_item_answer_text {
  font-size: 20px;
  margin-left: 6px;
}
@media (max-width: 1023px) {
  .qa_item_answer_text {
    font-size: 14px;
    margin-left: 0;
  }
}

.download {
  background-color: var(--color-primary);
}
.download_body {
  background-color: #F88837;
  border-radius: 20px;
  padding: 60px 80px;
  margin-top: -34px;
}
@media (max-width: 1023px) {
  .download_body {
    padding: 20px;
    margin-top: -15px;
    border-radius: 12px;
  }
}
.download_lead {
  margin-block: 48px 40px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1023px) {
  .download_lead {
    font-size: 16px;
    margin-block: 24px;
  }
}

.download_heading {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: #fff;
  border-radius: 99px;
  padding: 4px 72px;
  font-size: 40px;
}
@media (max-width: 1023px) {
  .download_heading {
    font-size: 18px;
    padding-inline: 12px;
  }
}
.download_heading::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  margin-inline: auto;
  width: 5px;
  height: 25px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .download_heading::after {
    width: 3px;
    height: 15px;
  }
}

.download_card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 40px;
}
@media (max-width: 1023px) {
  .download_card {
    padding: 20px;
  }
}
.download_card_inner {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 1023px) {
  .download_card_inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.download_card_img_wrap, .download_card_content {
  flex: 1;
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .download_card_img_wrap, .download_card_content {
    width: 75%;
  }
}
@media (max-width: 575px) {
  .download_card_img_wrap, .download_card_content {
    width: 100%;
  }
}
.download_card_img {
  aspect-ratio: 928/552;
}
.download_card_text {
  font-size: 26px;
  font-weight: bold;
  word-break: break-all;
}
@media (max-width: 1023px) {
  .download_card_text {
    font-size: 18px;
  }
}
.download_card_list {
  font-size: 20px;
  font-weight: bold;
  margin-block: 12px;
}
@media (max-width: 1023px) {
  .download_card_list {
    font-size: 16px;
  }
}
.download_card_btn {
  margin: 40px auto 0;
  max-width: 416px;
}
@media (max-width: 1023px) {
  .download_card_btn {
    margin-top: 20px;
  }
}
.download_card_btn .btn_gradient {
  width: 100%;
}

.download_card_catch {
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  background-color: #EF4C62;
  border-radius: 99px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  padding: 4px;
  font-size: 22px;
}
@media (max-width: 1023px) {
  .download_card_catch {
    max-width: initial;
    font-size: 16px;
  }
}
.download_card_catch::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #EF4C62;
}