@charset "UTF-8";
.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;
  color: #333333;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

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

a {
  text-decoration: none;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

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

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

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EFEFEF;
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.section_title {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.section_title::after {
  content: "";
  position: absolute;
  width: 108%;
  height: 18px;
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
          clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: linear-gradient(90deg, #F15A24 0%, #F26822 4%, #F47B20 18%, #F6901E 30%, #F7931E 50%, #F8A91E 75%, #FBEA20 96%, #FCEE21 100%);
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.section_title_top {
  display: block;
  color: #D4145A;
  font-size: 42px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .section_title_top {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .section_title_top {
    font-size: 28px;
  }
}

.section_title_txt {
  color: #2E4ACE;
  font-size: 42px;
  position: relative;
  z-index: 2;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .section_title_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .section_title_txt {
    font-size: 28px;
  }
}
.section_title_txt span {
  font-weight: 500;
}

/*----------------------- header -----------------------*/
.header {
  background-color: #fff !important;
}

.header_wrap {
  padding: 8px 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .header_wrap {
    padding: 8px 21px;
  }
}
@media screen and (max-width: 375px) {
  .header_wrap {
    padding: 8px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.header_left span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .header_left span {
    font-size: 12px;
  }
}
.header_left img {
  width: 210px;
}
@media screen and (max-width: 600px) {
  .header_left img {
    width: 156px;
  }
}

.header_right {
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 600px) {
  .header_right {
    font-size: 10px;
  }
}
@media screen and (max-width: 375px) {
  .header_right {
    width: 100%;
  }
}

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

/*----------------------- cta -----------------------*/
.cta {
  background-color: #fff;
  padding: 24px 0;
  position: relative;
}

.cta_bubble {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.cta_bubble img {
  width: 16px;
}
@media screen and (max-width: 600px) {
  .cta_bubble img {
    width: 10px;
  }
}

.cta_bubble_txt {
  font-size: 500;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .cta_bubble_txt {
    font-size: 16px;
  }
}
.cta_bubble_txt .ocher_txt {
  font-size: 26px;
  font-weight: 700;
  color: #C6A95B;
  display: inline-block;
  margin-right: 4px;
}
@media screen and (max-width: 600px) {
  .cta_bubble_txt .ocher_txt {
    font-size: 18px;
    margin-right: 2px;
  }
}
.cta_bubble_txt .big_txt {
  font-size: 26px;
  font-weight: 700;
  display: inline-block;
  margin-left: 4px;
}
@media screen and (max-width: 600px) {
  .cta_bubble_txt .big_txt {
    font-size: 18px;
    margin-left: 2px;
  }
}

.cta_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 1s;
  position: static;
  top: 0;
}

.cta_btn.move {
  position: absolute;
  z-index: 10;
  animation: cta_btn_move 0.8s 0.4s forwards;
}

@keyframes cta_btn_move {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cta_btn_a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 64px;
  margin: 0 4px 6px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .cta_btn_a {
    width: 48%;
    height: 46px;
    margin: 0 2px 4px 0;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn_a {
    width: 50%;
  }
}
.cta_btn_a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -4px;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .cta_btn_a::after {
    bottom: -4px;
    right: -2px;
  }
}

.cta_btn_a:hover {
  top: 6px;
  left: 4px;
}
@media screen and (max-width: 600px) {
  .cta_btn_a:hover {
    top: 4px;
    left: 2px;
  }
}
.cta_btn_a:hover::after {
  top: 0;
  left: 0;
}
.cta_btn_a:hover .cta_btn_txt.hover_txt {
  opacity: 1;
  display: block;
  animation: cta_btn_display 0.4s forwards;
}
.cta_btn_a:hover .cta_btn_txt.default_txt {
  opacity: 0;
  display: none;
}

@keyframes cta_btn_display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cta_btn_inner {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding-top: 4px;
}
@media screen and (max-width: 600px) {
  .cta_btn_inner {
    gap: 6px;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn_inner {
    gap: 2px;
  }
}

.cta_btn_txt {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .cta_btn_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn_txt {
    font-size: 15px;
    margin-bottom: 2px;
  }
}

.cta_btn_txt.hover_txt {
  opacity: 0;
  display: none;
}

.cta_btn_icon {
  display: block;
  background-color: #fff;
  width: 12px;
  height: 16px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 600px) {
  .cta_btn_icon {
    width: 8px;
    height: 12px;
    margin-bottom: 2px;
  }
}

.cta_btn_green .cta_btn_inner {
  background-color: #00BF63;
}
.cta_btn_green::after {
  background-color: #038044;
}

.cta_btn_red .cta_btn_inner {
  background-color: #D4145A;
}
.cta_btn_red::after {
  background-color: #A0003A;
}

.cta-fixed {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -500px);
  width: 600px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .cta-fixed {
    left: 0;
    transform: translateY(-500px);
    width: 100%;
  }
}

.cta-fixed.move {
  display: block;
  animation: cta-fixed_move 1.2s 0.4s forwards;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .cta-fixed.move {
    animation: cta-fixed_move-sp 1.2s 0.4s forwards;
  }
}

@keyframes cta-fixed_move {
  0% {
    transform: translate(-50%, -500px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
@keyframes cta-fixed_move-sp {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*----------------------- diagnosis -----------------------*/
.diagnosis {
  background-color: #fff;
}

.diagnosis_top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .diagnosis_top {
    gap: 6px;
  }
}
@media screen and (max-width: 375px) {
  .diagnosis_top {
    gap: 0;
  }
}

.diagnosis_top_img {
  width: 140px;
}
@media screen and (max-width: 600px) {
  .diagnosis_top_img {
    width: 98px;
  }
}
@media screen and (max-width: 350px) {
  .diagnosis_top_img {
    width: 80px;
  }
}

.diagnosis_top_bubble {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  color: #C6A95B;
  font-weight: 700;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  .diagnosis_top_bubble {
    font-size: 16px;
    padding: 0 12px;
    margin: 0 auto 6px;
  }
}
.diagnosis_top_bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-20deg);
  width: 3px;
  height: 36px;
  background-color: #C6A95B;
}
@media screen and (max-width: 600px) {
  .diagnosis_top_bubble::before {
    width: 2px;
  }
}
.diagnosis_top_bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(20deg);
  width: 3px;
  height: 36px;
  background-color: #C6A95B;
}
@media screen and (max-width: 600px) {
  .diagnosis_top_bubble::after {
    width: 2px;
  }
}

.diagnosis_top_txt {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  background-color: #C6A95B;
  padding: 16px 20px;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .diagnosis_top_txt {
    font-size: 16px;
    padding: 12px;
  }
}
@media screen and (max-width: 375px) {
  .diagnosis_top_txt {
    padding: 10px 4px;
  }
}

.diagnosis_heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4px;
}
@media screen and (max-width: 600px) {
  .diagnosis_heading {
    margin: 0 auto 0;
  }
}

.diagnosis_heading_img {
  width: 100px;
}
@media screen and (max-width: 600px) {
  .diagnosis_heading_img {
    width: 65px;
  }
}
@media screen and (max-width: 350px) {
  .diagnosis_heading_img {
    width: 56px;
  }
}

.diagnosis_heading_txt {
  font-size: 48px;
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  .diagnosis_heading_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .diagnosis_heading_txt {
    font-size: 28px;
  }
}
.diagnosis_heading_txt span {
  color: #D4145A;
}

.diagnosis_content {
  padding: 40px 32px;
}
@media screen and (max-width: 600px) {
  .diagnosis_content {
    padding: 32px 21px;
  }
}
@media screen and (max-width: 375px) {
  .diagnosis_content {
    padding: 24px 12px;
  }
}

.diagnosis_item {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .diagnosis_item {
    margin-bottom: 16px;
  }
}

.diagnosis_item_title {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .diagnosis_item_title {
    font-size: 16px;
  }
}

.diagnosis_item_select {
  position: relative;
}
.diagnosis_item_select::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #333;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.diagnosis_item_select select {
  width: 100%;
  padding: 10px 12px;
  border: 1.6px solid #707070;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .diagnosis_item_select select {
    font-size: 16px;
    padding: 8px 10px;
  }
}

.diagnosis_item_input {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .diagnosis_item_input {
    grid-template-columns: 1fr 36px;
    gap: 4px;
  }
}
.diagnosis_item_input input {
  width: 100%;
  padding: 10px 12px;
  border: 1.6px solid #707070;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .diagnosis_item_input input {
    font-size: 16px;
    padding: 8px 10px;
  }
}

.diagnosis_note {
  display: grid;
  grid-template-columns: 20px 1fr;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .diagnosis_note {
    font-size: 14px;
    grid-template-columns: 16px 1fr;
    margin-bottom: 16px;
  }
}

.diagnosis_btn {
  display: block;
  margin: 0 auto;
  width: 260px;
  height: 56px;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .diagnosis_btn {
    width: 210px;
    height: 48px;
  }
}
.diagnosis_btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  background-color: #A0003A;
  top: 4px;
  left: 2px;
  z-index: 0;
}

.diagnosis_btn:hover {
  top: 4px;
  left: 2px;
}
.diagnosis_btn:hover::after {
  top: 0;
  left: 0;
}

.diagnosis_btn_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #D4145A;
  border-radius: 100px;
}

.diagnosis_btn_txt {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
  padding-left: 8px;
}
@media screen and (max-width: 600px) {
  .diagnosis_btn_txt {
    font-size: 20px;
  }
}

.diagnosis_btn_icon {
  display: block;
  width: 12px;
  height: 16px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 600px) {
  .diagnosis_btn_icon {
    width: 10px;
    height: 14px;
  }
}

.diagnosis_arrow {
  background-color: #333;
  width: 64px;
  height: 32px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto 20px;
}

.success .diagnosis_arrow {
  background-color: #D4145A;
}

.failure .diagnosis_arrow {
  background-color: #2E4ACE;
}

.diagnosis_result {
  display: none;
  padding: 40px 32px;
  background-color: #efefef;
}
@media screen and (max-width: 600px) {
  .diagnosis_result {
    padding: 0 21px;
  }
}
@media screen and (max-width: 375px) {
  .diagnosis_result {
    padding: 0 12px;
  }
}
.diagnosis_result .diagnosis_btn {
  margin-bottom: 20px;
}

.diagnosis_result.active {
  display: block;
}

.diagnosis_result_inner {
  background-color: #fff;
  padding: 32px 24px;
}
@media screen and (max-width: 600px) {
  .diagnosis_result_inner {
    font-size: 13px;
    padding: 16px 10px;
  }
}

.diagnosis_result_success {
  display: none;
}

.success .diagnosis_result_success {
  display: block;
}

.diagnosis_result_failure {
  display: none;
}

.failure .diagnosis_result_failure {
  display: block;
}

.diagnosis_result_heading > h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  font-weight: 900;
  color: #2E4ACE;
  margin: 0 auto 16px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .diagnosis_result_heading > h3 {
    font-size: 24px;
    margin: 0 auto 8px;
  }
}

.diagnosis_result_heading > p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .diagnosis_result_heading > p {
    font-size: 16px;
    margin: 0 auto 8px;
  }
}
.diagnosis_result_heading > p span {
  font-weight: 600;
}

.diagnosis_tel {
  border: 2px solid #5DB1BC;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
}

.diagnosis_tel_top > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.diagnosis_tel_top > span:nth-child(1) {
  font-size: 20px;
  font-weight: 900;
  color: #2E4ACE;
  margin: 0 auto 8px;
}
@media screen and (max-width: 600px) {
  .diagnosis_tel_top > span:nth-child(1) {
    font-size: 14px;
  }
}
.diagnosis_tel_top > span:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto 8px;
}
@media screen and (max-width: 600px) {
  .diagnosis_tel_top > span:nth-child(2) {
    font-size: 14px;
  }
}

.diagnosis_tel_main {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  transition: all 0.3s;
}
.diagnosis_tel_main img {
  width: 64px;
}
@media screen and (max-width: 600px) {
  .diagnosis_tel_main img {
    width: 42px;
  }
}
.diagnosis_tel_main span {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  color: #2E4ACE;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .diagnosis_tel_main span {
    font-size: 24px;
  }
}

.diagnosis_tel_main:hover {
  opacity: 0.6;
}

.diagnosis_tel_time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}

.diagnosis_tel_time > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.diagnosis_tel_time > span:nth-child(1) {
  background-color: #97CDD4;
  padding: 4px 8px;
}

.diagnosis_tel_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .diagnosis_tel_bottom {
    font-size: 13px;
  }
}

.diagnosis_bottom {
  display: grid;
  grid-template-columns: 20px 1fr;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .diagnosis_bottom {
    font-size: 14px;
    grid-template-columns: 16px 1fr;
  }
}

/*----------------------- feature -----------------------*/
.feature_heading {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 32px;
  background-color: #EFEFEF;
}

.feature_wrap {
  padding: 80px 32px;
  background-color: #2E4ACE;
  -webkit-clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 600px) {
  .feature_wrap {
    padding: 50px 21px;
    -webkit-clip-path: polygon(0 0, 50% 24px, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 24px, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 375px) {
  .feature_wrap {
    padding: 50px 12px;
  }
}

.feature_item {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #656565;
  padding: 20px 0;
  margin-bottom: 40px;
}

.feature_item:nth-child(3) .feature_item_des {
  text-align: center;
  font-weight: 700;
}

.feature_item:nth-child(4) .feature_item_des {
  text-align: center;
}

.feature_item_img {
  width: 240px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .feature_item_img {
    width: 180px;
    margin: 0 auto 20px;
  }
}

.feature_item_title {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .feature_item_title {
    margin-bottom: 16px;
  }
}
.feature_item_title::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 42px;
  background-image: url(../simulator-img/title_blue_left.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .feature_item_title::before {
    width: 58px;
    height: 32px;
    top: 6px;
  }
}
.feature_item_title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 42px;
  background-image: url(../simulator-img/title_blue_right.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 10px;
  right: 0;
}
@media screen and (max-width: 600px) {
  .feature_item_title::after {
    width: 58px;
    height: 32px;
    top: 6px;
  }
}

.feature_item_title_txt {
  font-size: 42px;
  font-weight: 900;
  color: #2E4ACE;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  .feature_item_title_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .feature_item_title_txt {
    font-size: 28px;
  }
}
.feature_item_title_txt .small_txt {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .feature_item_title_txt .small_txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .feature_item_title_txt .small_txt {
    font-size: 21px;
  }
}

.feature_item_title_txt .border_txt {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.feature_item_title_txt .border_txt::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 18px;
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
          clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: linear-gradient(90deg, #F15A24 0%, #F26822 4%, #F47B20 18%, #F6901E 30%, #F7931E 50%, #F8A91E 75%, #FBEA20 96%, #FCEE21 100%);
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.feature_item_des {
  padding: 0 16px;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .feature_item_des {
    font-size: 16px;
  }
}
.feature_item_des .red_txt {
  font-size: 28px;
  font-weight: 700;
  color: #D4145A;
}
@media screen and (max-width: 600px) {
  .feature_item_des .red_txt {
    font-size: 24px;
  }
}
.feature_item_des .yellow_txt {
  background-color: #FFF705;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .feature_item_des .yellow_txt {
    font-size: 18px;
  }
}
.feature_item_des .big_txt {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .feature_item_des .big_txt {
    font-size: 24px;
  }
}

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

.case_heading {
  margin-bottom: 40px;
}

.case_wrap {
  padding: 0 32px;
}
@media screen and (max-width: 600px) {
  .case_wrap {
    padding: 0 21px;
  }
}
@media screen and (max-width: 375px) {
  .case_wrap {
    padding: 0 12px;
  }
}

.case_item {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .case_item {
    border-radius: 16px;
  }
}
.case_item:last-child {
  margin-bottom: 0;
}

.case_item:nth-child(3) .case_item_heading_txt > span .small_txt {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .case_item:nth-child(3) .case_item_heading_txt > span .small_txt {
    font-size: 20px;
  }
}
.case_item:nth-child(3) .case_item_heading_txt > span:nth-child(2) {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
@media screen and (max-width: 600px) {
  .case_item:nth-child(3) .case_item_heading_txt > span:nth-child(2) {
    font-size: 24px;
  }
}
.case_item:nth-child(3) .case_item_heading_txt > span .red_txt {
  display: inline-block;
  font-family: "Alfa Slab One", serif;
  font-size: 38px;
  color: #D4145A;
  font-weight: 400;
  background-color: #fff;
  padding: 4px 16px 2px;
  margin-right: 4px;
}
@media screen and (max-width: 600px) {
  .case_item:nth-child(3) .case_item_heading_txt > span .red_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .case_item:nth-child(3) .case_item_heading_txt > span .red_txt {
    font-size: 28px;
  }
}

.case_item_top {
  background-color: #2E4ACE;
  padding: 20px 16px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .case_item_top {
    margin-bottom: 40px;
  }
}
.case_item_top::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #2E4ACE;
  left: 50%;
  transform: translateX(-50%);
  bottom: -39.2px;
}
@media screen and (max-width: 600px) {
  .case_item_top::after {
    width: 92%;
    height: 32px;
    bottom: -31.6px;
  }
}
@media screen and (max-width: 375px) {
  .case_item_top::after {
    width: 90%;
  }
}

.case_item_title {
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-weight: 900;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
@media screen and (max-width: 600px) {
  .case_item_title {
    font-size: 24px;
  }
}

.case_item_img {
  width: 280px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 600px) {
  .case_item_img {
    width: 190px;
    margin: 0 auto 16px;
  }
}

.case_item_point li {
  padding: 8px 12px;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .case_item_point li {
    font-size: 16px;
  }
}
.case_item_point li:nth-child(odd) {
  background-color: #fff;
}
.case_item_point li:nth-child(even) {
  background-color: #EFEFEF;
}
.case_item_point li:last-child {
  margin-bottom: 0;
}

.case_item_heading {
  background-color: #5DB1BC;
  padding: 12px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .case_item_heading {
    padding: 8px 0;
  }
}
.case_item_heading::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 60px;
  background-image: url(../simulator-img/case_effect_left.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .case_item_heading::before {
    width: 20px;
    height: 54px;
    left: 16px;
  }
}
@media screen and (max-width: 375px) {
  .case_item_heading::before {
    width: 16px;
    height: 46px;
    left: 8px;
  }
}
.case_item_heading::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 60px;
  background-image: url(../simulator-img/case_effect_right.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .case_item_heading::after {
    width: 20px;
    height: 54px;
    right: 16px;
  }
}
@media screen and (max-width: 375px) {
  .case_item_heading::after {
    width: 16px;
    height: 46px;
    right: 8px;
  }
}

.case_item_heading_txt {
  width: 72%;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .case_item_heading_txt {
    width: 80%;
  }
}

.case_item_heading_txt > span:nth-child(1) {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
@media screen and (max-width: 600px) {
  .case_item_heading_txt > span:nth-child(1) {
    font-size: 24px;
  }
}
.case_item_heading_txt > span.bg_txt {
  display: block;
  background-color: #fff;
  font-size: 38px;
  font-weight: 900;
  padding: 4px 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_item_heading_txt > span.bg_txt {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .case_item_heading_txt > span.bg_txt {
    font-size: 26px;
  }
}

.case_item_txt {
  background-color: #fff;
  padding: 16px 16px 24px;
}

.case_item_txt p:nth-child(1) {
  font-size: 18px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_item_txt p:nth-child(1) {
    font-size: 16px;
  }
}
.case_item_txt p:nth-child(2) {
  font-size: 16px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_item_txt p:nth-child(2) {
    font-size: 14px;
  }
}

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

.flow_heading {
  margin: 0 auto 40px;
}

.flow_wrap {
  padding: 0 32px;
}
@media screen and (max-width: 600px) {
  .flow_wrap {
    padding: 0 21px;
  }
}
@media screen and (max-width: 375px) {
  .flow_wrap {
    padding: 0 12px;
  }
}

.flow_item {
  background-color: #fff;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 16px;
  border: 2px solid #656565;
  padding: 20px 0;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}
.flow_item:last-child {
  margin-bottom: 0;
}

.flow_item:nth-child(2) .flow_item_title::before {
  width: 40px;
  background-image: url(../simulator-img/title_blue_left_sm.webp);
}
@media screen and (max-width: 600px) {
  .flow_item:nth-child(2) .flow_item_title::before {
    width: 30px;
  }
}
.flow_item:nth-child(2) .flow_item_title::after {
  width: 40px;
  background-image: url(../simulator-img/title_blue_right_sm.webp);
}
@media screen and (max-width: 600px) {
  .flow_item:nth-child(2) .flow_item_title::after {
    width: 30px;
  }
}

.flow_item:nth-child(4) .flow_item_txt {
  text-align: center;
}

.flow_item_title {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.flow_item_title::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 42px;
  background-image: url(../simulator-img/title_blue_left.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .flow_item_title::before {
    width: 58px;
    height: 32px;
    top: 2px;
  }
}
.flow_item_title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 42px;
  background-image: url(../simulator-img/title_blue_right.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 600px) {
  .flow_item_title::after {
    width: 58px;
    height: 32px;
    top: 2px;
  }
}

.flow_item_title_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 600px) {
  .flow_item_title_inner {
    gap: 4px;
  }
}
@media screen and (max-width: 375px) {
  .flow_item_title_inner {
    gap: 2px;
  }
}

.flow_item_title_num {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2E4ACE;
  width: 38px;
  height: 38px;
  color: #fff;
  font-family: "Alfa Slab One", serif;
  font-size: 24px;
  border-radius: 100%;
  margin-top: 4px;
  padding-top: 2px;
}
@media screen and (max-width: 600px) {
  .flow_item_title_num {
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 375px) {
  .flow_item_title_num {
    width: 28px;
    height: 28px;
  }
}

.flow_item_title_txt {
  font-size: 32px;
  font-weight: 900;
  color: #2E4ACE;
}
@media screen and (max-width: 600px) {
  .flow_item_title_txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .flow_item_title_txt {
    font-size: 22px;
  }
}

.flow_item_img {
  width: 240px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .flow_item_img {
    width: 182px;
  }
}

.flow_item_txt {
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .flow_item_txt {
    font-size: 16px;
    padding: 0 16px;
  }
}

/*----------------------- attention -----------------------*/
.attention {
  background-color: #fff;
  padding: 24px 32px;
}
@media screen and (max-width: 600px) {
  .attention {
    padding: 21px 21px;
  }
}
@media screen and (max-width: 375px) {
  .attention {
    padding: 16px 12px;
  }
}

.attention_bg {
  background: linear-gradient(90deg, #F15A24 0%, #F26822 4%, #F47B20 18%, #F6901E 30%, #F7931E 50%, #F8A91E 75%, #FBEA20 96%, #FCEE21 100%);
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
          clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  height: 16px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .attention_bg {
    height: 14px;
  }
}

.attention_txt {
  display: block;
  color: #2E4ACE;
  font-size: 32px;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 18px auto;
}
@media screen and (max-width: 600px) {
  .attention_txt {
    font-size: 24px;
    margin: 12px auto;
  }
}

/*----------------------- product -----------------------*/
.product {
  background-color: #2E4ACE;
  padding: 40px 0;
}

.product_heading {
  color: #fff;
  font-weight: 900;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .product_heading {
    font-size: 24px;
  }
}

.product_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.product_btn_click {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 52px;
  background-color: #EFEFEF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .product_btn_click {
    font-size: 18px;
    width: 168px;
    height: 42px;
  }
}
@media screen and (max-width: 375px) {
  .product_btn_click {
    width: 146px;
    font-size: 17px;
  }
}

.product_btn_click.active {
  cursor: default;
  background-color: #fff;
}

.product_list {
  padding: 20px 0;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 600px) {
  .product_list {
    padding: 16px 0;
  }
}

.product_list.active {
  display: block;
}

.product_item_title {
  background-color: #EFEFEF;
  padding: 16px 32px;
}
@media screen and (max-width: 600px) {
  .product_item_title {
    padding: 10px 21px;
  }
}
@media screen and (max-width: 375px) {
  .product_item_title {
    padding: 10px 12px;
  }
}
.product_item_title span {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .product_item_title span {
    font-size: 18px;
  }
}

.product_item_des {
  padding: 12px 32px 21px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .product_item_des {
    font-size: 16px;
    padding: 8px 21px 12px;
  }
}
@media screen and (max-width: 375px) {
  .product_item_des {
    padding: 8px 12px 12px;
  }
}

/*----------------------- info -----------------------*/
.info {
  padding: 80px 0 40px;
}
@media screen and (max-width: 600px) {
  .info {
    padding: 60px 0 32px;
  }
}

.info_heading {
  font-size: 32px;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .info_heading {
    font-size: 24px;
    margin: 0 auto 20px;
  }
}

.info_item_title {
  background-color: #2E4ACE;
  padding: 16px 32px;
}
@media screen and (max-width: 600px) {
  .info_item_title {
    padding: 10px 21px;
  }
}
@media screen and (max-width: 375px) {
  .info_item_title {
    padding: 10px 12px;
  }
}
.info_item_title span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .info_item_title span {
    font-size: 18px;
  }
}

.info_item_des {
  padding: 12px 32px 21px;
  font-size: 18px;
  line-height: 1.5;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .info_item_des {
    font-size: 16px;
    padding: 8px 21px 12px;
  }
}
@media screen and (max-width: 375px) {
  .info_item_des {
    padding: 8px 12px 12px;
  }
}

/*----------------------- company -----------------------*/
.company_wrap {
  padding: 21px 32px 100px;
}
@media screen and (max-width: 600px) {
  .company_wrap {
    padding: 24px 21px 60px;
  }
}
@media screen and (max-width: 375px) {
  .company_wrap {
    padding: 24px 21px 60px;
  }
}

.company_logo {
  width: 260px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .company_logo {
    width: 180px;
  }
}

.company table {
  border-collapse: separate;
  border-spacing: 0 16px;
}
@media screen and (max-width: 600px) {
  .company table {
    font-size: 14px;
  }
}
.company table td {
  line-height: 1.5;
}
.company table td:nth-child(1) {
  width: 160px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-right: 32px;
}
@media screen and (max-width: 600px) {
  .company table td:nth-child(1) {
    padding-right: 16px;
    width: 120px;
  }
}

.company ul li {
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}
.company ul li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

.company_link {
  -webkit-text-decoration: underline 1px #333;
          text-decoration: underline 1px #333;
  transition: all 0.3s;
}
.company_link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 600px) {
  .company_bottom {
    font-size: 14px;
  }
}

.company_bottom_heading h3 {
  display: block;
  font-weight: 800;
  font-size: 21px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 24px;
}
@media screen and (max-width: 600px) {
  .company_bottom_heading h3 {
    font-size: 17px;
  }
}
.company_bottom_heading span {
  display: block;
  width: 160px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-right: 32px;
  margin-bottom: 16px;
}

.company_bottom_item {
  margin-bottom: 24px;
}
.company_bottom_item span {
  line-height: 1.5;
}

/*----------------------- confirm -----------------------*/
.confirm_wrap {
  padding: 40px 32px;
}
@media screen and (max-width: 600px) {
  .confirm_wrap {
    padding: 32px 21px;
  }
}
@media screen and (max-width: 375px) {
  .confirm_wrap {
    padding: 30px 12px;
  }
}

.confirm_heading {
  width: 100%;
  padding-bottom: 38px;
}
@media screen and (max-width: 600px) {
  .confirm_heading {
    padding-bottom: 30px;
  }
}
.confirm_heading h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #2E4ACE;
}
@media screen and (max-width: 600px) {
  .confirm_heading h2 {
    font-size: 26px;
  }
}

.confirm_list {
  margin-bottom: 32px;
}

.confirm_item {
  display: grid;
  grid-template-columns: 170px 1fr;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_item {
    grid-template-columns: 145px 1fr;
  }
}
.confirm_item:last-child {
  margin-bottom: 0;
  grid-template-columns: 1fr;
}
.confirm_item:last-child .confirm_title {
  min-width: 100%;
}

.confirm_title {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background-color: #97CDD4;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 170px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .confirm_title {
    font-size: 16px;
    min-width: 145px;
    padding: 8px 12px;
  }
}

.confirm_input {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background-color: #Fff;
  width: 100%;
  line-height: 1.5;
  word-break: break-all;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .confirm_input {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.confirm_check {
  display: none;
}

.confirm_policy {
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .confirm_policy {
    margin-bottom: 32px;
  }
}
.confirm_policy .wpcf7-list-item {
  margin: 0;
  margin-left: 4px;
}
.confirm_policy .wpcf7-list-item input {
  transform: scale(1.4);
  margin-bottom: 5px;
  margin-right: 12px;
}
@media screen and (max-width: 600px) {
  .confirm_policy .wpcf7-list-item input {
    margin-bottom: 4px;
  }
}
.confirm_policy .wpcf7-list-item span {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .confirm_policy .wpcf7-list-item span {
    font-size: 16px;
  }
}

.confirm_policy_inner {
  padding: 24px 20px;
  height: 240px;
  overflow-y: scroll;
  width: 100%;
  background-color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner {
    padding: 20px 16px;
  }
}
.confirm_policy_inner span {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner span {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.confirm_policy_inner p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner p {
    font-size: 14px;
  }
}

.confirm_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .confirm_btn {
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.confirm_back {
  width: 260px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .confirm_back {
    width: 160px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_back {
    width: 100%;
  }
}
.confirm_back::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 21px;
  background-image: url(../enquete-img/confirm_back_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .confirm_back::before {
    top: 52%;
    width: 18px;
    height: 15px;
    left: 24px;
  }
}
@media screen and (max-width: 350px) {
  .confirm_back::before {
    display: none;
  }
}
.confirm_back::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  background-color: #656565;
  top: 4px;
  left: 4px;
  z-index: -1;
}
.confirm_back input {
  width: 100%;
  background-color: #97CDD4;
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: 100px;
  padding-left: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_back input {
    padding: 12px 0 12px 16px;
  }
}
@media screen and (max-width: 350px) {
  .confirm_back input {
    padding-left: 0;
  }
}

.confirm_back:hover {
  top: 4px;
  left: 4px;
}
.confirm_back:hover::after {
  top: 0;
  left: 0;
}

.confirm_submit {
  width: 260px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .confirm_submit {
    width: 160px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_submit {
    width: 100%;
  }
}
.confirm_submit::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../enquete-img/contact_btn_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .confirm_submit::before {
    width: 15px;
    height: 15px;
    right: 26px;
    top: 52%;
  }
}
@media screen and (max-width: 350px) {
  .confirm_submit::before {
    display: none;
  }
}
.confirm_submit::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  background-color: #172567;
  top: 4px;
  left: 4px;
  z-index: -1;
}
.confirm_submit input {
  width: 100%;
  background-color: #2E4ACE;
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: 100px;
  color: #FFF;
  padding-right: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_submit input {
    padding: 12px 16px 12px 0;
  }
}
@media screen and (max-width: 350px) {
  .confirm_submit input {
    padding-right: 0;
  }
}

.confirm_submit:hover {
  top: 4px;
  left: 4px;
}
.confirm_submit:hover::after {
  top: 0;
  left: 0;
}

/*----------------------- thanks -----------------------*/
.thanks {
  background-color: #EFEFEF;
}

.thanks_content {
  padding: 21px 32px 0;
}
@media screen and (max-width: 600px) {
  .thanks_content {
    padding: 16px 21px 0;
  }
}
@media screen and (max-width: 375px) {
  .thanks_content {
    padding: 16px 12px;
  }
}

.thanks_txt {
  margin-bottom: 21px;
}
@media screen and (max-width: 600px) {
  .thanks_txt {
    margin-bottom: 12px;
  }
}
.thanks_txt span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #2E4ACE;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .thanks_txt span {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 350px) {
  .thanks_txt span {
    font-size: 23px;
  }
}
.thanks_txt p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .thanks_txt p {
    font-size: 16px;
  }
}

.thanks_img {
  width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .thanks_img {
    width: 260px;
  }
}

.thanks_heading {
  background-color: #2E4ACE;
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .thanks_heading {
    padding: 6px 0;
  }
}
.thanks_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #FFF;
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  .thanks_heading span {
    font-size: 24px;
  }
}

#included-files-fie-on-wp-footer {
  display: none;
}

/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*//*# sourceMappingURL=simulator-index.css.map */