@charset "UTF-8";
@font-face {
  font-family: "Bahnschrift";
  src: url("bahnschrift.ttf") format("truetype");
  font-display: swap;
}
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.01em;
  color: #04101A;
  background-color: #F8FAFD;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #F8FAFD;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 460px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg_content {
    display: none;
  }
}

.bg_inner {
  width: 33vw;
  left: 12vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bg_heading {
  margin-bottom: 4.8vw;
}
@media screen and (max-width: 1400px) {
  .bg_heading {
    margin-bottom: 2.4vw;
  }
}

.bg_heading_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  margin-right: 12px;
}

.bg_contact {
  width: 85%;
  margin: 0 auto;
}

.bg_tel {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  transition: all 0.4s;
  margin-bottom: 0.2vw;
}
.bg_tel:hover {
  opacity: 0.5;
}
.bg_tel img {
  width: 4.6vw;
}
.bg_tel span {
  font-family: "Bahnschrift", sans-serif;
  font-weight: 700;
  font-size: 3.4vw;
  display: block;
  margin-top: 0.4vw;
}

.bg_time {
  display: flex;
  align-items: center;
  margin-bottom: 1.2vw;
}

.bg_time > span {
  display: inline-block;
}
.bg_time > span:nth-child(1) {
  font-size: 1.1vw;
  background-color: #fff;
  font-weight: 700;
  border: 2px solid #04101A;
  padding: 0.4vw 1vw;
  margin-right: 1vw;
}
.bg_time > span:nth-child(2) {
  font-size: 2vw;
  font-family: "Bahnschrift", sans-serif;
  font-weight: 700;
  margin-top: 0.4vw;
}
.bg_time > span:nth-child(3) {
  font-size: 1.1vw;
  background-color: #fff;
  color: #E62626;
  font-weight: 700;
  border: 2px solid #E62626;
  padding: 0.4vw 1vw;
  margin-right: 1vw;
  margin-left: auto;
}

.bg_mail {
  display: block;
  background-color: #154E80;
  padding: 1.4vw 0;
  border-radius: 0.5vw;
  margin-bottom: 0.6vw;
}

.bg_mail_inner {
  display: flex;
  align-items: center;
  gap: 1vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.bg_mail_inner img {
  width: 1.6vw;
}
.bg_mail_inner span {
  color: #fff;
  font-size: 1.3vw;
  font-weight: 700;
}

.bg_line {
  display: block;
  width: 100%;
  border: 4px solid #04C756;
  background-color: #fff;
  padding: 1vw 0;
  border-radius: 0.4vw;
  position: relative;
}

.bg_line_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.2vw;
}

.bg_line_top {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  width: -moz-fit-content;
  width: fit-content;
}
.bg_line_top img {
  width: 3vw;
}
.bg_line_top span {
  color: #02A346;
  font-size: 0.9vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.bg_line_qr {
  width: 5.6vw;
}

.bg_line_a {
  display: block;
  background-color: #03C755;
  width: 12vw;
  padding: 0.6vw 0;
  color: #fff;
  font-size: 0.8vw;
  font-weight: 700;
  border-radius: 100px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1vw;
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 460px;
  top: 0;
  right: 15%;
  background-color: #fff;
}
@media screen and (max-width: 1600px) {
  .lp_body {
    right: 10%;
  }
}
@media screen and (max-width: 1400px) {
  .lp_body {
    right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

/*----------------------- fv -----------------------*/
.fv {
  position: relative;
}

.fv_top {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF872A;
  padding: 5px 32px 6px;
  border-radius: 100px;
  border: 3px solid #FFf;
  top: 6px;
  right: 22px;
  z-index: 20;
}
@media screen and (max-width: 460px) {
  .fv_top {
    right: 4.8vw;
    top: 1.3vw;
    padding: 1.1vw 6.8vw 1.3vw;
    border: 0.65vw solid #FFf;
  }
}
.fv_top span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
@media screen and (max-width: 460px) {
  .fv_top span {
    font-size: 3.8vw;
  }
}

/*----------------------- diagnosis -----------------------*/
.diagnosis {
  background-color: #154E80;
  padding: 40px 0 60px;
}

.diagnosis_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .diagnosis_wrap {
    width: 94%;
  }
}

.diagnosis_bubble {
  background-color: #fff;
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  position: relative;
  margin-bottom: 24px;
}
.diagnosis_bubble::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  bottom: -11px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.diagnosis_bubble span {
  font-size: 24px;
  font-weight: 700;
  color: #154E80;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .diagnosis_bubble span {
    font-size: 20px;
  }
}

.diagnosis_heading {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
.diagnosis_heading img {
  width: 42px;
}
.diagnosis_heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #FFE22A;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.diagnosis_txt {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 800;
  margin: 0 auto 32px;
}
@media screen and (max-width: 600px) {
  .diagnosis_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 350px) {
  .diagnosis_txt {
    font-size: 15px;
    margin: 0 auto 24px;
  }
}

.diagnosis_content {
  width: 100%;
  background-color: #D8EDFF;
  padding: 24px 0;
  border-radius: 12px;
  margin-bottom: 40px;
}

.diagnosis_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.diagnosis_list label {
  display: block;
  color: #154E80;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.diagnosis_list label:last-child {
  margin-bottom: 0;
}
.diagnosis_list input {
  transform: scale(1.5);
  margin-right: 16px;
  margin-bottom: 4px;
}

.diagnosis_result_item {
  display: none;
}

.diagnosis_result_item.active {
  display: block;
}

.diagnosis_btn {
  width: 250px;
  background-color: #848484;
  border: 2px solid #fff;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.diagnosis_btn.active {
  background-color: #FFE22A;
}
.diagnosis_btn.active span {
  display: none;
}
.diagnosis_btn.active img {
  display: block;
}

.diagnosis_btn span {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.diagnosis_btn img {
  width: 108px;
  display: none;
  margin: 0 auto;
}

.diagnosis_result_item {
  margin: 84px auto 0;
  position: relative;
  max-width: 300px;
  padding-bottom: 10px;
  border-radius: 10px;
}
.diagnosis_result_item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px dashed #fff;
}
.diagnosis_result_item:nth-child(1) {
  background-color: #FF872A;
}
.diagnosis_result_item:nth-child(1) .diagnosis_result_inner span {
  color: #FF872A;
}
.diagnosis_result_item:nth-child(2) {
  background-color: #E62626;
}
.diagnosis_result_item:nth-child(2) .diagnosis_result_inner span {
  color: #E62626;
}

.diagnosis_result_heading {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  padding: 10px 0;
  display: block;
}

.diagnosis_result_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  gap: 16px;
  padding: 10px 0;
}
.diagnosis_result_inner img {
  width: 50px;
}
.diagnosis_result_inner span {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

/*----------------------- award -----------------------*/
.award {
  background-image: url(../img/award_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 20px 0;
}
@media screen and (max-width: 375px) {
  .award {
    padding: 16px 0;
  }
}

.award_wrap {
  width: 90%;
  margin: 0 auto;
}

.award_heading {
  margin-bottom: 16px;
}

.award_img {
  margin-bottom: 4px;
}

.award_txt {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*----------------------- trouble -----------------------*/
.trouble_wrap {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.trouble_heading {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 16px;
}
.trouble_heading img {
  width: 28px;
}
@media screen and (max-width: 460px) {
  .trouble_heading img {
    width: 22px;
  }
}
.trouble_heading h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 460px) {
  .trouble_heading h2 {
    font-size: 20px;
  }
}

.trouble_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trouble_item_txt {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.trouble_item_txt::after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  top: 0;
  left: 0;
  margin-top: 5px;
}

.trouble_bottom {
  background-color: #D8EDFF;
  padding: 24px 0 0;
}

.trouble_bottom_wrap {
  width: 90%;
  margin: 0 auto;
}

.trouble_bottom_heading {
  background-color: #154E80;
  width: 100%;
  padding: 8px 0;
  border-radius: 100px;
  margin-bottom: 14px;
}
.trouble_bottom_heading span {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.trouble_bottom_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trouble_bottom_txt span {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #E62626;
  text-decoration-thickness: 2px;
}

.trouble_des {
  background-color: #fff;
  padding: 8px 0;
}

.trouble_des_wrap {
  width: 90%;
  margin: 0 auto;
}

.trouble_des_txt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}
.trouble_des_txt span {
  color: #E62626;
}

.trouble_des_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 4px;
}

.trouble_des_note {
  font-size: 12px;
  font-weight: 300;
  display: block;
}

/*----------------------- cta -----------------------*/
.cta {
  background-color: #E62626;
  padding: 20px 0;
}
@media screen and (max-width: 460px) {
  .cta {
    padding: 16px 0;
  }
}

.cta_wrap {
  width: 90%;
  margin: 0 auto;
}

.cta_heading {
  margin-bottom: 16px;
}

.cta_heading_top {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.cta_heading_top img {
  width: 60px;
}
@media screen and (max-width: 460px) {
  .cta_heading_top img {
    width: 54px;
  }
}
@media screen and (max-width: 350px) {
  .cta_heading_top img {
    width: 48px;
  }
}
.cta_heading_top span {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .cta_heading_top span {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .cta_heading_top span {
    font-size: 18px;
  }
}

.cta_heading_bottom {
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.cta_heading_bottom span:nth-child(1) {
  font-weight: 900;
  font-size: 56px;
  color: #FFE22A;
}
@media screen and (max-width: 460px) {
  .cta_heading_bottom span:nth-child(1) {
    font-size: 46px;
  }
}
@media screen and (max-width: 375px) {
  .cta_heading_bottom span:nth-child(1) {
    font-size: 40px;
  }
}
@media screen and (max-width: 350px) {
  .cta_heading_bottom span:nth-child(1) {
    font-size: 36px;
  }
}
.cta_heading_bottom span:nth-child(2) {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  padding-top: 4px;
  display: block;
}
@media screen and (max-width: 460px) {
  .cta_heading_bottom span:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 350px) {
  .cta_heading_bottom span:nth-child(2) {
    font-size: 16px;
  }
}

.cta_inner {
  background-color: #fff;
  padding: 16px 10px;
  position: relative;
}
@media screen and (max-width: 400px) {
  .cta_inner {
    padding: 16px 8px;
  }
}

.cta_img {
  width: 130px;
  bottom: 0;
  right: -5%;
  position: absolute;
}
@media screen and (max-width: 460px) {
  .cta_img {
    width: 110px;
  }
}
@media screen and (max-width: 375px) {
  .cta_img {
    width: 90px;
  }
}

.cta_top {
  margin-bottom: 16px;
}

.cta_top_tel {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cta_top_tel img {
  width: 48px;
  margin-bottom: 4px;
}
@media screen and (max-width: 460px) {
  .cta_top_tel img {
    width: 40px;
  }
}
@media screen and (max-width: 350px) {
  .cta_top_tel img {
    width: 36px;
  }
}
.cta_top_tel span {
  font-family: "Bahnschrift", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .cta_top_tel span {
    font-size: 32px;
  }
}
@media screen and (max-width: 350px) {
  .cta_top_tel span {
    font-size: 28px;
  }
}

.cta_top_tag {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 460px) {
  .cta_top_tag {
    gap: 2px;
  }
}

.cta_top_tag span {
  display: block;
}
.cta_top_tag span:nth-child(1) {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #04101A;
  padding: 2px 6px 3px;
}
@media screen and (max-width: 460px) {
  .cta_top_tag span:nth-child(1) {
    font-size: 14px;
    padding: 2px 4px 3px;
  }
}
@media screen and (max-width: 375px) {
  .cta_top_tag span:nth-child(1) {
    font-size: 12px;
  }
}
.cta_top_tag span:nth-child(2) {
  font-family: "Bahnschrift", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 4px;
}
@media screen and (max-width: 460px) {
  .cta_top_tag span:nth-child(2) {
    font-size: 20px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 375px) {
  .cta_top_tag span:nth-child(2) {
    font-size: 16px;
  }
}
.cta_top_tag span:nth-child(3) {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #E62626;
  color: #E62626;
  padding: 2px 6px 3px;
  margin-left: 8px;
}
@media screen and (max-width: 460px) {
  .cta_top_tag span:nth-child(3) {
    font-size: 14px;
    padding: 2px 4px 3px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 375px) {
  .cta_top_tag span:nth-child(3) {
    font-size: 12px;
  }
}

.cta_btn {
  width: 280px;
}
@media screen and (max-width: 460px) {
  .cta_btn {
    width: 230px;
  }
}
@media screen and (max-width: 350px) {
  .cta_btn {
    width: 210px;
  }
}

.cta_btn_mail, .cta_btn_line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  transition: all 0.5s;
}
@media screen and (max-width: 460px) {
  .cta_btn_mail, .cta_btn_line {
    height: 30px;
  }
}
.cta_btn_mail:hover, .cta_btn_line:hover {
  opacity: 0.74;
}
.cta_btn_mail span, .cta_btn_line span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 460px) {
  .cta_btn_mail span, .cta_btn_line span {
    font-size: 16px;
  }
}

.cta_btn_mail {
  background-color: #154E80;
  margin-bottom: 8px;
}

.cta_btn_line {
  background-color: #06C755;
}

/*----------------------- case -----------------------*/
.case {
  background-color: #154E80;
  padding: 20px 0;
}
@media screen and (max-width: 460px) {
  .case {
    padding: 16px 0;
  }
}

.case_wrap {
  width: 90%;
  margin: 0 auto;
}

.case_heading {
  border-radius: 100px;
  border: 2px solid #fff;
  padding: 8px 26px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .case_heading {
    margin: 0 auto 16px;
  }
}
.case_heading span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .case_heading span {
    font-size: 20px;
  }
}

.case_item {
  background-color: #fff;
  padding: 10px 10px 10px 0;
  margin-bottom: 16px;
}
.case_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 460px) {
  .case_item {
    margin-bottom: 12px;
  }
}

.case_item_title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.case_item_title span:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 46px;
  background-color: #154E80;
  color: #fff;
  font-family: "Bahnschrift", sans-serif;
  font-size: 16px;
  padding-top: 4px;
}
@media screen and (max-width: 460px) {
  .case_item_title span:nth-child(1) {
    height: 40px;
  }
}
.case_item_title span:nth-child(2) {
  font-size: 32px;
  font-weight: 900;
  color: #154E80;
}
@media screen and (max-width: 460px) {
  .case_item_title span:nth-child(2) {
    font-size: 28px;
  }
}

.case_item_inner {
  padding-left: 10px;
}

.case_item_txt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/*----------------------- merit -----------------------*/
.merit_heading {
  padding: 16px 0 8px;
  background-color: #FFE22A;
  position: relative;
}

.merit_heading_img {
  width: 174px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 460px) {
  .merit_heading_img {
    width: 146px;
  }
}
@media screen and (max-width: 375px) {
  .merit_heading_img {
    width: 130px;
  }
}

.merit_heading_wrap {
  width: 90%;
  margin: 0 auto;
}

.merit_bubble {
  background-color: #154E80;
  border-radius: 100px;
  padding: 8px 32px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .merit_bubble {
    padding: 8px 26px;
  }
}
@media screen and (max-width: 375px) {
  .merit_bubble {
    padding: 8px 20px;
  }
}
.merit_bubble::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 12px;
  background-color: #154E80;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.merit_bubble span {
  font-weight: 900;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .merit_bubble span {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .merit_bubble span {
    font-size: 18px;
  }
}

.merit_tag {
  background-color: #fff;
  padding: 5px 28px;
  border-radius: 5px;
  border: 2px solid #154E80;
  width: -moz-fit-content;
  width: fit-content;
}
.merit_tag span {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  color: #154E80;
}
@media screen and (max-width: 460px) {
  .merit_tag span {
    font-size: 16px;
  }
}

.merit_content {
  padding: 20px 0;
  position: relative;
}
@media screen and (max-width: 460px) {
  .merit_content {
    padding: 12px 0;
  }
}

.merit_bg {
  width: 66%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.merit_content_wrap {
  width: 90%;
  margin: 0 auto;
}

.merit_content_top {
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
  font-size: 20px;
}
@media screen and (max-width: 460px) {
  .merit_content_top {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

.merit_item {
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  font-size: 20px;
}
@media screen and (max-width: 460px) {
  .merit_item {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
  }
}
.merit_item:last-child {
  margin-bottom: 0;
}
.merit_item::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(../img/check_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 460px) {
  .merit_item::after {
    width: 18px;
    height: 18px;
  }
}

/*----------------------- flow -----------------------*/
.flow {
  background-color: #D8EDFF;
  padding: 20px 0;
}

.flow_wrap {
  width: 90%;
  margin: 0 auto;
}

.flow_heading {
  position: relative;
  padding-bottom: 16px;
}

.flow_heading_img {
  position: absolute;
  width: 94px;
  bottom: 0;
  right: -5%;
}

.flow_heading_txt {
  display: block;
  font-size: 32px;
  color: #154E80;
  font-weight: 900;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
@media screen and (max-width: 460px) {
  .flow_heading_txt {
    font-size: 28px;
    margin: 0 auto 12px;
  }
}

.flow_heading_arrow {
  display: block;
  width: 40px;
  height: 24px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
  background-color: #154E80;
}

.flow_item {
  border: 4px solid #154E80;
  background-color: #fff;
  padding: 10px;
  position: relative;
  margin-bottom: 22px;
}
.flow_item:last-child {
  margin-bottom: 0;
}
.flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 21px;
  background-color: #154E80;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.flow_item_top {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .flow_item_top {
    gap: 8px;
  }
}

.flow_item_num {
  display: block;
  width: 40px;
  background-color: #154E80;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  font-family: "Bahnschrift", sans-serif;
}
@media screen and (max-width: 460px) {
  .flow_item_num {
    width: 34px;
    font-size: 20px;
  }
}

.flow_item:last-child .flow_item_title {
  margin-bottom: 0;
}

.flow_item_title {
  color: #154E80;
  font-size: 24px;
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .flow_item_title {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 460px) {
  .flow_item_title {
    font-size: 20px;
  }
}

.flow_item_txt p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.flow_item_txt p .red_txt {
  color: #E62626;
  font-weight: 500;
}
.flow_item_txt p .bold_txt {
  font-weight: 700;
}
.flow_item_txt p .num_txt {
  font-size: 24px;
}

/*----------------------- support -----------------------*/
.support {
  background-color: #FFE22A;
}

.support_wrap {
  background-size: 100% 100%;
  background-image: url(../img/support_bg.webp);
  background-repeat: no-repeat;
  padding: 24px 0 80px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
}

.support_heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 24px;
}
@media screen and (max-width: 460px) {
  .support_heading {
    gap: 16px;
  }
}

.support_heading_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
.support_heading_txt span:nth-child(1) {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .support_heading_txt span:nth-child(1) {
    font-size: 16px;
  }
}
.support_heading_txt span:nth-child(2) {
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .support_heading_txt span:nth-child(2) {
    font-size: 20px;
  }
}
.support_heading_txt span:nth-child(2) span {
  display: inline;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .support_heading_txt span:nth-child(2) span {
    font-size: 16px;
  }
}
.support_heading_txt span:nth-child(3) {
  font-weight: 900;
  color: #FFE22A;
  font-size: 24px;
}
@media screen and (max-width: 460px) {
  .support_heading_txt span:nth-child(3) {
    font-size: 20px;
  }
}

.support_heading_img {
  width: 120px;
}
@media screen and (max-width: 460px) {
  .support_heading_img {
    width: 105px;
  }
}

.support_heading > span {
  display: block;
}
.support_heading > span:nth-child(1) {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 460px) {
  .support_heading > span:nth-child(1) {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.support_heading > span:nth-child(2) {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 460px) {
  .support_heading > span:nth-child(2) {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.support_heading > span:nth-child(2) span {
  font-size: 16px;
}
.support_heading > span:nth-child(3) {
  color: #FFE22A;
  font-weight: 900;
  font-size: 24px;
}
@media screen and (max-width: 460px) {
  .support_heading > span:nth-child(3) {
    font-size: 20px;
  }
}

.support_top {
  margin-bottom: 16px;
}

.support_top_band {
  padding: 8px 0 6px;
  width: 100%;
  background-color: #FFE22A;
  margin-bottom: 12px;
}
.support_top_band img {
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .support_top_band img {
    width: 240px;
  }
}

.support_top p {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 460px) {
  .support_top p {
    font-size: 16px;
  }
}

.support_content {
  width: 90%;
  margin: 0 auto;
  padding: 0 14px;
}
@media screen and (max-width: 460px) {
  .support_content {
    padding: 0 6px;
  }
}
@media screen and (max-width: 375px) {
  .support_content {
    padding: 0;
  }
}

.support_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 3;
  margin-bottom: 36px;
  color: #154E80;
}
@media screen and (max-width: 460px) {
  .support_list {
    gap: 6px;
  }
}
@media screen and (max-width: 350px) {
  .support_list {
    gap: 4px;
  }
}

.support_item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
.support_item:nth-child(1), .support_item:nth-child(2) {
  background-color: #D8EDFF;
}
.support_item:nth-child(3) {
  background-color: #fff;
}

.support_item span {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}
@media screen and (max-width: 460px) {
  .support_item span {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 375px) {
  .support_item span {
    font-size: 15px;
  }
}

.support_area {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #154E80;
  border: 2px solid #FFE22A;
  border-radius: 8px;
  padding: 36px 0 20px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .support_area {
    font-size: 16px;
    padding: 36px 12px 20px;
  }
}
.support_area p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.5;
}

.support_area_heading {
  width: 100%;
  position: absolute;
  top: -12px;
  left: 0;
}
.support_area_heading span {
  color: #154E80;
  background-color: #FFE22A;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 6px 40px;
  border-radius: 8px;
  margin: 0 auto;
  font-weight: 700;
}

.support_bottom {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@media screen and (max-width: 460px) {
  .support_bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .support_bottom {
    font-size: 12px;
  }
}

/*----------------------- techno -----------------------*/
.techno {
  background-color: #154E80;
}

.techno_bg {
  background-color: #FFE22A;
  padding: 20px 0 48px;
}

.techno_wrap {
  width: 90%;
  margin: 0 auto;
}

.techno_heading {
  background-color: #154E80;
  border-radius: 20px;
  padding: 12px 40px;
  position: relative;
  margin-bottom: 12px;
}
.techno_heading::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 13px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  background-color: #154E80;
}

.techno_heading_img {
  width: 140px;
  bottom: -12px;
  right: 0;
  position: absolute;
}

.techno_heading_txt > span {
  display: block;
}
.techno_heading_txt > span:nth-child(1) {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
@media screen and (max-width: 460px) {
  .techno_heading_txt > span:nth-child(1) {
    font-size: 20px;
  }
}
.techno_heading_txt > span:nth-child(2) {
  color: #FFE22A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 240px;
}
@media screen and (max-width: 460px) {
  .techno_heading_txt > span:nth-child(2) {
    font-size: 14px;
  }
}

.techno_item {
  background-color: #fff;
  padding: 16px 0;
  margin-bottom: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.techno_item:last-child {
  margin-bottom: 0;
}

.techno_add {
  background-color: #fff;
  border: 4px solid #154E80;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px 10px;
}
.techno_add .techno_item_band {
  background-color: #fff;
  box-shadow: none;
  margin-bottom: 6px;
}
.techno_add .techno_item_band span {
  color: #154E80;
}
.techno_add .techno_add_tag {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background-color: #154E80;
  padding: 3px 32px 5px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 6px;
}
.techno_add .techno_item_txt {
  margin-bottom: 14px;
}
.techno_add .techno_item_txt > span {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.techno_add .techno_item_txt > span:nth-child(1) {
  margin: 0 auto 8px;
}

.techno_item_band {
  width: 100%;
  background-color: #154E80;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 10px 0;
  margin-bottom: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.techno_item_band span {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .techno_item_band span {
    font-size: 18px;
  }
}
.techno_item_band img {
  width: 30px;
}
@media screen and (max-width: 460px) {
  .techno_item_band img {
    width: 24px;
  }
}

.techno_item_inner {
  padding: 0 12px;
}

.techno_item_top {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .techno_item_top {
    grid-template-columns: 34px 1fr;
    gap: 6px;
  }
}

.techno_item_num {
  width: 100%;
  min-height: 74px;
  height: 100%;
  background-color: #154E80;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bahnschrift", sans-serif;
}

.techno_item_txt > span {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .techno_item_txt > span {
    font-size: 16px;
  }
}
.techno_item_txt > span:nth-child(1) {
  margin-bottom: 8px;
}
.techno_item_txt > span:nth-child(2) {
  line-height: 1.4;
}
.techno_item_txt > span .red_txt {
  font-size: 28px;
  color: #E62626;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .techno_item_txt > span .red_txt {
    font-size: 22px;
  }
}
.techno_item_txt > span .yellow_bg {
  background: linear-gradient(transparent 60%, #FFE22A 0%);
  display: inline;
  padding: 0 1px 0px;
}
@media screen and (max-width: 375px) {
  .techno_item_txt > span .yellow_bg {
    font-size: 14px;
  }
}

.techno_item_img {
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .techno_item_img {
    margin-bottom: 12px;
  }
}

.techno_item_des {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .techno_item_des {
    font-size: 14px;
  }
}

/*----------------------- card -----------------------*/
.card {
  padding: 40px 0;
}

.card_wrap {
  width: 90%;
  margin: 0 auto;
}

.card_top {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #154E80;
  padding: 8px 15px;
  border-radius: 4px;
  border: 2px solid #154E80;
  text-align: justify;
  margin-bottom: 16px;
}

.card_heading_top {
  background-color: #154E80;
  width: 100%;
  padding: 8px 0;
  margin-bottom: 8px;
}
.card_heading_top span {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .card_heading_top span {
    font-size: 18px;
  }
}

.card_heading_bottom {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 460px) {
  .card_heading_bottom {
    grid-template-columns: 1fr 140px 1fr;
  }
}

.card_heading_line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #154E80;
}

.card_heading_txt {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .card_heading_txt {
    font-size: 14px;
  }
}

.card_content img:nth-child(1) {
  margin-bottom: 8px;
}

.card_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 22px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .card_txt {
    font-size: 20px;
  }
}
.card_txt span {
  color: #E62626;
}

/*----------------------- reasons -----------------------*/
.reasons {
  padding: 30px 0 48px;
  background-color: #154E80;
}

.reasons_wrap {
  width: 90%;
  margin: 0 auto;
}

.reasons_heading {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.reasons_heading .small_txt {
  font-size: 18px;
}
.reasons_heading .yellow_txt {
  color: #FFE22A;
  display: inline-block;
  margin-left: 2px;
}

.reasons_item {
  padding-top: 28px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 460px) {
  .reasons_item {
    padding-top: 22px;
    margin-bottom: 32px;
  }
}
.reasons_item:last-child {
  margin-bottom: 0;
}

.reasons_item:nth-child(1) img.reasons_item_img {
  max-width: 210px;
  margin: 0 auto 20px;
}
.reasons_item:nth-child(1) .reasons_item_txt {
  position: relative;
  padding: 0 10px 0 28px;
}
.reasons_item:nth-child(1) .reasons_item_txt span {
  position: absolute;
  top: 0;
  left: 10px;
}

.reasons_item:nth-child(2) .reasons_item_title {
  padding: 40px 0 12px;
}
.reasons_item:nth-child(2) .reasons_item_img {
  width: 184px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .reasons_item:nth-child(2) .reasons_item_img {
    width: 162px;
  }
}

.reasons_item:nth-child(3) .reasons_item_title {
  padding: 40px 0 12px;
}
.reasons_item:nth-child(3) .reasons_item_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .reasons_item:nth-child(3) .reasons_item_content {
    gap: 8px;
  }
}

.reasons_item_ribbon {
  height: 56px;
  background-color: #E62626;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
  width: 250px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 460px) {
  .reasons_item_ribbon {
    width: 226px;
    height: 44px;
  }
}

.reasons_item_ribbon_txt {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 460px) {
  .reasons_item_ribbon_txt {
    font-size: 16px;
  }
}
.reasons_item_ribbon_txt span {
  font-family: "Bahnschrift", sans-serif;
  font-size: 32px;
  display: inline-block;
  padding-top: 4px;
}
@media screen and (max-width: 460px) {
  .reasons_item_ribbon_txt span {
    font-size: 28px;
  }
}

.reasons_item_inner {
  background-color: #Fff;
  padding-bottom: 24px;
}

.reasons_item_title {
  border: 3px solid #Fff;
  background-color: #D8EDFF;
  padding: 50px 0 22px;
  margin-bottom: 24px;
}
.reasons_item_title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: #154E80;
}

.reasons_item_content {
  padding: 0 10px;
}

.reasons_item_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 10px;
}
@media screen and (max-width: 460px) {
  .reasons_item_txt {
    font-size: 14px;
  }
}

/*----------------------- work -----------------------*/
.work {
  background-color: #D8EDFF;
  padding: 24px 0;
}

.work_wrap {
  width: 90%;
  margin: 0 auto;
}

.work_heading {
  margin-bottom: 20px;
}

.work_heading_txt {
  font-size: 32px;
  font-weight: 900;
  color: #154E80;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
}
@media screen and (max-width: 460px) {
  .work_heading_txt {
    font-size: 28px;
  }
}

.work_heading_arrow {
  display: block;
  width: 40px;
  height: 22px;
  background-color: #154E80;
  margin: 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.work_content {
  width: 100%;
  overflow: hidden;
}

.work_swiper {
  width: 100%;
  padding-bottom: 40px !important;
  position: relative !important;
}
.work_swiper .swiper-slide {
  padding: 0 2px !important;
}

.work_swiper .swiper-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.work_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E62626 !important;
  width: 12px !important;
  height: 12px !important;
}

.work_item {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.work_item > span:nth-child(1) {
  background-color: #154E80;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 6px 0;
}
@media screen and (max-width: 460px) {
  .work_item > span:nth-child(1) {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .work_item > span:nth-child(1) {
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 350px) {
  .work_item > span:nth-child(1) {
    font-size: 12px;
  }
}
.work_item > span:nth-child(3) {
  background-color: #fff;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #154E80;
  padding: 6px 0;
}
@media screen and (max-width: 460px) {
  .work_item > span:nth-child(3) {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .work_item > span:nth-child(3) {
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 350px) {
  .work_item > span:nth-child(3) {
    font-size: 13px;
  }
}

.work_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  margin: 16px auto 0;
}

/*----------------------- voice -----------------------*/
.voice {
  background-color: #D8EDFF;
}

.voice_bg {
  background-color: #FFE22A;
  padding: 60px 0 24px;
  -webkit-clip-path: polygon(0 0, 50% 32px, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 32px, 100% 0, 100% 100%, 0 100%);
}

.voice_wrap {
  width: 90%;
  margin: 0 auto;
}

.voice_heading {
  width: 100%;
  background-color: #154E80;
  padding: 16px 0;
  border-radius: 100px;
  position: relative;
  margin-bottom: 32px;
}
.voice_heading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 9px;
  background-color: #154E80;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}
.voice_heading span {
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .voice_heading span {
    font-size: 24px;
  }
}

.voice_content .swiper {
  padding-bottom: 40px !important;
}

.voice_content .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.voice_content .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E62626 !important;
  width: 14px !important;
  height: 14px !important;
  margin-bottom: 1px !important;
}

.voice_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px !important;
}

/*----------------------- service -----------------------*/
.service {
  background-color: #144E80;
  padding: 40px 0 48px;
}

.service_wrap {
  width: 90%;
  margin: 0 auto;
}

.service_heading {
  margin-bottom: 32px;
}

.service_heading_txt {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
}
@media screen and (max-width: 460px) {
  .service_heading_txt {
    font-size: 28px;
  }
}

.service_heading_arrow {
  display: block;
  width: 40px;
  height: 22px;
  background-color: #fff;
  margin: 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.service_item {
  margin-bottom: 24px;
}
.service_item:last-child {
  margin-bottom: 0;
}

.service_item_title {
  background-color: #FF872A;
  padding: 12px 0;
}
.service_item_title span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .service_item_title span {
    font-size: 18px;
  }
}

.service_item_inner {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
}
@media screen and (max-width: 460px) {
  .service_item_inner {
    gap: 8px;
    padding: 20px 10px;
  }
}
.service_item_inner img {
  width: 100px;
  border-radius: 100%;
}
@media screen and (max-width: 460px) {
  .service_item_inner img {
    width: 80px;
  }
}
@media screen and (max-width: 350px) {
  .service_item_inner img {
    width: 70px;
  }
}

.service_item_price {
  font-size: 24px;
  font-weight: 900;
  color: #154E80;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 375px) {
  .service_item_price {
    font-size: 22px;
  }
}
.service_item_price span {
  font-size: 16px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 375px) {
  .service_item_price span {
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  .service_item_price span {
    font-size: 12px;
  }
}

.service_item_txt p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .service_item_txt p {
    font-size: 14px;
  }
}

.service_content {
  width: 100%;
  overflow: hidden;
}

.service_swiper {
  width: 100%;
  position: relative;
  padding-bottom: 48px !important;
}
.service_swiper .swiper-slide {
  height: auto !important;
}
.service_swiper .service_item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service_swiper .service_item_inner {
  flex: 1;
}
.service_swiper .swiper-button-prev {
  width: 26px !important;
  height: 26px !important;
  bottom: 0 !important;
  top: auto !important;
  left: 150px !important;
}
@media screen and (max-width: 460px) {
  .service_swiper .swiper-button-prev {
    left: 80px !important;
  }
}
.service_swiper .swiper-button-prev::after {
  content: "" !important;
  width: 26px !important;
  height: 26px !important;
  background-image: url(../img/prev_btn.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.service_swiper .swiper-button-next {
  width: 26px !important;
  height: 26px !important;
  bottom: 0 !important;
  top: auto !important;
  right: 150px !important;
}
@media screen and (max-width: 460px) {
  .service_swiper .swiper-button-next {
    right: 80px !important;
  }
}
.service_swiper .swiper-button-next::after {
  content: "" !important;
  width: 26px !important;
  height: 26px !important;
  background-image: url(../img/next_btn.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/*----------------------- point -----------------------*/
.point {
  padding: 40px 0 48px;
  background-image: url(../img/point_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.point_wrap {
  width: 90%;
  margin: 0 auto;
}

.point_heading {
  margin-bottom: 40px;
}

.point_heading_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 12px;
}

.point_heading_bottom {
  width: 96%;
  margin: 0 auto;
}

.point_item {
  color: #fff;
  margin-bottom: 32px;
}
.point_item:last-child {
  margin-bottom: 0;
}
.point_item p {
  width: 94%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 460px) {
  .point_item p {
    font-size: 14px;
  }
}

.point_item_title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

/*----------------------- news -----------------------*/
.news {
  background-color: #FFE22A;
  padding-bottom: 32px;
}

.news_heading {
  margin-bottom: 32px;
  transform: translateY(-1px);
}
@media screen and (max-width: 600px) {
  .news_heading {
    margin-bottom: 24px;
  }
}

.news_wrap {
  width: 90%;
  margin: 0 auto;
}

.news_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .news_list {
    gap: 10px;
  }
}

.news_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .news_inner {
    flex-direction: column;
  }
}

.news_content {
  width: 280px;
  position: relative;
}
@media screen and (max-width: 350px) {
  .news_content {
    width: 260px;
  }
}

.news_border {
  border: 8px solid #111;
  overflow: hidden;
}

.news_swiper {
  width: 100%;
}
.news_swiper .swiper-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: -36px !important;
  left: -24px !important;
}
@media screen and (max-width: 600px) {
  .news_swiper .swiper-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.news_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E62626 !important;
  width: 12px !important;
  height: 12px !important;
}

.news_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .news_txt {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.news_txt img {
  width: 96px;
}

.news_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  color: #154E80;
  font-weight: 900;
  position: relative;
  text-decoration: underline;
  text-decoration-color: #E62626;
  text-underline-offset: 1px;
  text-decoration-thickness: 4px;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .news_txt span {
    font-size: 16px;
  }
}

/*----------------------- company -----------------------*/
.company {
  padding: 28px 0 24px;
}

.company_wrap {
  width: 90%;
  margin: 0 auto;
}

.company_heading span {
  color: #154E80;
  font-size: 32px;
  font-weight: 900;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 36px;
}

.company_list {
  margin-bottom: 40px;
}

.company_item:not(:first-child) {
  padding-top: 16px;
}

.company_item:not(:last-child) {
  border-bottom: 2px solid #E8E8E8;
  padding-bottom: 16px;
}

.company_item_title {
  font-size: 18px;
  display: block;
  font-weight: 900;
  color: #154E80;
  margin-bottom: 12px;
}

.company_item_txt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.company_item_txt a {
  display: block;
  transition: all 0.5s;
}
.company_item_txt a:hover {
  opacity: 0.6;
}

.company_img {
  margin-bottom: 16px;
}

.company_map {
  margin-bottom: 32px;
}

.company_img_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .company_img_top {
    gap: 10px;
  }
}

.company_map_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .company_map_top {
    gap: 10px;
  }
}

.company_map_top > div {
  aspect-ratio: 1/1;
}
.company_map_top > div iframe {
  width: 100% !important;
  height: 100% !important;
}

.company_map_bottom {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .company_map_bottom {
    font-size: 12px;
  }
}

.company_sdgs_heading {
  color: #154E80;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  display: block;
}

.company_sdgs_img {
  margin-bottom: 12px;
}

.company_sdgs_txt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .company_sdgs_txt {
    font-size: 14px;
  }
}

/*----------------------- operator -----------------------*/
.operator {
  background-color: #154E80;
  padding: 24px 0 32px;
}

.operator_wrap {
  width: 90%;
  margin: 0 auto;
}

.operator_heading {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .operator_heading {
    font-style: 12px;
  }
}
.operator_heading .big_txt {
  font-size: 18px;
}
@media screen and (max-width: 460px) {
  .operator_heading .big_txt {
    font-style: 16px;
  }
}
.operator_heading .bold_txt {
  font-weight: 700;
}

.operator_heading_time {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 16px;
}

.operator_heading_people {
  text-align: center;
  width: 100%;
  padding: 3px 0 5px;
  border: 1.5px solid #fff;
  border-radius: 4px;
  margin-bottom: 12px;
}
@media screen and (max-width: 460px) {
  .operator_heading_people {
    line-height: 1.5;
  }
}

.operator_heading_message {
  color: #FFE22A;
  font-weight: 700;
  font-size: 16px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .operator_heading_message {
    line-height: 1.5;
  }
}

.operator_tel {
  display: block;
  width: 100%;
  border: 3px solid #E62626;
  border-radius: 10px;
  background-color: #FFE22A;
  position: relative;
  transition: all 0.5s;
  margin-bottom: 10px;
}
.operator_tel:hover {
  opacity: 0.5;
}

.operator_icon {
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 8px;
}
@media screen and (max-width: 460px) {
  .operator_icon {
    width: 42px;
    right: 0;
  }
}
@media screen and (max-width: 375px) {
  .operator_icon {
    width: 32px;
  }
}

.operator_bubble {
  position: absolute;
  width: 70px;
  top: -12px;
  right: -8px;
}
@media screen and (max-width: 460px) {
  .operator_bubble {
    top: -14px;
    right: -12px;
  }
}

.operator_tel_top {
  padding: 12px 20px;
  color: #E62626;
  font-weight: 500;
  border-bottom: 2px solid #E62626;
}
@media screen and (max-width: 460px) {
  .operator_tel_top {
    font-size: 14px;
    padding: 12px 12px;
  }
}
@media screen and (max-width: 375px) {
  .operator_tel_top {
    font-size: 13px;
  }
}

.operator_tel_top > span {
  display: inline-block;
  margin-right: 6px;
}
.operator_tel_top > span:nth-child(1) {
  padding: 2px 8px;
  border: 1.5px solid #E62626;
  border-radius: 4px;
}
.operator_tel_bottom {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 460px) {
  .operator_tel_bottom {
    padding: 12px;
  }
}
@media screen and (max-width: 350px) {
  .operator_tel_bottom {
    gap: 4px;
  }
}
.operator_tel_bottom img {
  width: 54px;
}
@media screen and (max-width: 460px) {
  .operator_tel_bottom img {
    width: 50px;
  }
}
@media screen and (max-width: 350px) {
  .operator_tel_bottom img {
    width: 40px;
  }
}
.operator_tel_bottom span {
  font-family: "Bahnschrift", sans-serif;
  font-size: 36px;
  font-weight: 700;
  display: inline-block;
  padding-top: 4px;
}
@media screen and (max-width: 460px) {
  .operator_tel_bottom span {
    font-size: 32px;
  }
}
@media screen and (max-width: 350px) {
  .operator_tel_bottom span {
    font-size: 26px;
  }
}

.operator_line {
  display: block;
  background-color: #fff;
  padding: 8px 0;
  border-radius: 10px;
  border: 2px solid #04C756;
  transition: all 0.5s;
}
.operator_line:hover {
  opacity: 0.5;
}

.operator_line_inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 350px) {
  .operator_line_inner {
    gap: 0;
  }
}

.operator_line_img {
  width: 42px;
}
@media screen and (max-width: 350px) {
  .operator_line_img {
    width: 36px;
  }
}

.operator_line_txt {
  font-size: 18px;
  font-weight: 700;
  color: #02A346;
  text-align: center;
  line-height: 1.5;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 460px) {
  .operator_line_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 350px) {
  .operator_line_txt {
    font-size: 15px;
  }
}

/*----------------------- footer -----------------------*/
.footer {
  background-color: #04101A;
  padding: 12px 0 178px;
}
.footer small {
  font-size: 12px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}

/*----------------------- cta-fixed -----------------------*/
.cta-fixed {
  background-color: #1B8B01;
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 460px;
  bottom: 0;
  right: 15%;
  padding-top: 6px;
}
@media screen and (max-width: 1600px) {
  .cta-fixed {
    right: 10%;
  }
}
@media screen and (max-width: 1400px) {
  .cta-fixed {
    right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .cta-fixed {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .cta-fixed {
    transform: none;
    bottom: 0;
    left: 0;
  }
}

.cta-fixed_img {
  position: absolute;
  width: 80px;
  bottom: 4px;
  right: 4px;
  z-index: 10;
}
@media screen and (max-width: 460px) {
  .cta-fixed_img {
    width: 50px;
  }
}

.cta-fixed_wrap {
  width: 90%;
  margin: 0 auto;
}

.cta-fixed_top {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_top {
    font-size: 12px;
  }
}
.cta-fixed_top .big_txt {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_top .big_txt {
    font-size: 14px;
  }
}
.cta-fixed_top .bold_txt {
  font-weight: 700;
}

.cta-fixed_time {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 4px;
}

.cta-fixed_people {
  text-align: center;
  width: 100%;
  padding: 0px 0 1px;
  border: 1.5px solid #fff;
  border-radius: 4px;
  margin-bottom: 2px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_people {
    line-height: 1.5;
  }
}

.cta-fixed_bottom {
  color: #FFE22A;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_bottom {
    font-size: 12px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 460px) {
  .cta-fixed_bottom {
    margin: 0 auto;
    padding-left: 12px;
    gap: 2px;
  }
}
.cta-fixed_bottom .num_txt {
  font-family: "Bahnschrift", sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_bottom .num_txt {
    font-size: 14px;
  }
}
.cta-fixed_bottom .big_txt {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_bottom .big_txt {
    font-size: 14px;
  }
}
.cta-fixed_bottom .big_txt.num_txt {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_bottom .big_txt.num_txt {
    font-size: 24px;
  }
}
.cta-fixed_bottom .yellow_bg {
  color: #1A8B02;
  background-color: #FFE22A;
  display: inline-block;
  padding: 2px 4px;
  margin-bottom: 2px;
  margin-right: 4px;
}

.cta-fixed_bottom > div:nth-child(1) > span {
  display: inline-block;
  margin-right: 4px;
}

.cta-fixed_bottom > div:nth-child(2) {
  display: flex;
  align-items: center;
}

.cta-fixed_tel {
  display: block;
  width: 100%;
  background-color: #FFE22A;
  padding: 4px 0 2px;
  border: 4px solid #E62626;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_tel {
    padding: 1px 0 0px;
  }
}

.cta-fixed_tel_bubble {
  position: absolute;
  width: 72px;
  left: 5%;
  bottom: 0;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_tel_bubble {
    width: 68px;
    left: 3%;
  }
}
@media screen and (max-width: 460px) {
  .cta-fixed_tel_bubble {
    width: 62px;
    left: 0;
  }
}
@media screen and (max-width: 375px) {
  .cta-fixed_tel_bubble {
    width: 58px;
  }
}

.cta-fixed_tel_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: end;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_tel_inner {
    justify-content: center;
  }
}
@media screen and (max-width: 460px) {
  .cta-fixed_tel_inner {
    padding-left: 20px;
  }
}
.cta-fixed_tel_inner img {
  width: 56px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_tel_inner img {
    width: 36px;
  }
}

.cta-fixed_tel_txt {
  color: #E62626;
  font-size: 42px;
  font-weight: 700;
  font-family: "Bahnschrift", sans-serif;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 1400px) {
  .cta-fixed_tel_txt {
    font-size: 32px;
  }
}/*# sourceMappingURL=index.css.map */