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

body {
  font-family: "m-plus-rounded-1c", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
}

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

a {
  text-decoration: none;
}

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

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

/*--------------- header ---------------*/
.header {
  background-color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 50px;
  }
}
@media screen and (max-width: 800px) {
  .header {
    height: 40px;
  }
}

.header_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .header_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .header_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.header_logo {
  width: 240px;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .header_logo {
    width: 140px;
  }
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 160px;
    margin: 0 auto;
  }
}

.header_btn {
  display: block;
  width: 200px;
  height: 44px;
  background-color: #FC476B;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header_btn {
    width: 180px;
    height: 40px;
  }
}
@media screen and (max-width: 800px) {
  .header_btn {
    width: 140px;
    height: 36px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn {
    display: none;
  }
}
.header_btn:hover {
  background-color: #CC3957;
}
.header_btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #FFF;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1200px) {
  .header_btn::after {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 800px) {
  .header_btn::after {
    width: 8px;
    height: 10px;
    right: 10px;
  }
}
.header_btn span {
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 1200px) {
  .header_btn span {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .header_btn span {
    font-size: 17px;
    margin-top: 2px;
  }
}

/*--------------- fv ---------------*/
.fv {
  background-image: url(../img/fv_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 2.4vw 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .fv {
    padding: 24px 0;
  }
}
@media screen and (max-width: 800px) {
  .fv {
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    background-image: url(../img/fv_bg_sp.webp);
    background-size: 100% 100%;
    padding: 0 0 60px;
  }
}

.fv_btn {
  position: absolute;
  bottom: 1vw;
  right: 0;
  width: 11vw;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .fv_btn {
    width: 22vw;
    position: fixed;
    z-index: 8;
    bottom: 3vw;
  }
}
.fv_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333333;
  position: absolute;
  top: max(0.25vw, 2.5px);
  right: 0;
  border-top-left-radius: max(1vw, 10px);
  border-bottom-left-radius: max(1vw, 10px);
  z-index: -2;
}

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

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

.fv_btn:hover .fv_btn_content {
  position: relative;
  top: max(0.25vw, 2.5px);
}

.fv_btn_content {
  background-color: #FC476B;
  width: 100%;
  border-top-left-radius: max(1vw, 10px);
  border-bottom-left-radius: max(1vw, 10px);
  border: 0.25vw solid #333333;
  border-right: none;
  padding: 1vw 0;
}
@media screen and (max-width: 1000px) {
  .fv_btn_content {
    border: 2.5px solid #333333;
    border-right: none;
    padding: 10px 0;
  }
}
.fv_btn_content span:nth-child(1) {
  display: block;
  color: #FFF;
  font-size: 1.4vw;
  margin: 0 auto 0.4vw;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .fv_btn_content span:nth-child(1) {
    font-size: 3.4vw;
  }
}
.fv_btn_content span:nth-child(2) {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.8vw;
  font-weight: 700;
  color: #F7FF00;
  font-size: 2vw;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .fv_btn_content span:nth-child(2) {
    font-size: 4.4vw;
  }
}
.fv_btn_content img {
  width: 4.4vw;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .fv_btn_content img {
    width: 7.6vw;
  }
}

.fv_heading {
  background-color: #FC476B;
  margin-bottom: max(2vw, 20px);
}
.fv_heading span {
  color: #FFF;
  font-weight: 500;
  font-size: max(2vw, 20px);
  display: block;
  padding: 0.6vw 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .fv_heading span {
    padding: 6px 0;
  }
}
@media screen and (max-width: 600px) {
  .fv_heading span {
    padding: 10px 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .fv_heading span {
    font-size: 15px;
  }
}

.fv_content {
  width: 100%;
  padding: 0 12vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .fv_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.fv_txt {
  width: 53vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 1000px) {
  .fv_txt {
    width: 60vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_txt {
    width: 100%;
  }
}

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

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

.fv_logo {
  position: relative;
  z-index: 2;
  width: 68.8vw;
}
@media screen and (max-width: 1000px) {
  .fv_logo {
    width: 78vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_logo {
    width: 100%;
    position: absolute;
    bottom: -2.8vw;
  }
}

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

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

.fv_logo_bubble {
  position: absolute;
  width: 20vw;
  height: 3.4vw;
  background-color: #522618;
  top: -1.8vw;
  right: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
@media screen and (max-width: 1000px) {
  .fv_logo_bubble {
    width: 22vw;
    height: 3.8vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_logo_bubble {
    width: 45.4vw;
    height: 10vw;
    top: -12.6vw;
    left: 0;
    right: auto;
  }
}
.fv_logo_bubble::after {
  content: "";
  background-color: #522618;
  position: absolute;
  bottom: -1vw;
  left: 50%;
  transform: translateX(-50%);
  width: 1.2vw;
  height: 1.2vw;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 600px) {
  .fv_logo_bubble::after {
    width: 3vw;
    height: 2.5vw;
    bottom: -2.4vw;
  }
}
.fv_logo_bubble span {
  color: #FFF;
  font-size: 1.8vw;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .fv_logo_bubble span {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_logo_bubble span {
    font-size: 6vw;
  }
}

.fv_character {
  position: absolute;
  width: 17vw;
  top: 6vw;
  right: 12vw;
}
@media screen and (max-width: 1000px) {
  .fv_character {
    top: 4vw;
    width: 18vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_character {
    display: none;
  }
}

/*--------------- cta ---------------*/
.cta {
  background-color: #ECFF8B;
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 375px) {
  .cta {
    padding: 60px 0;
  }
}

.cta_content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.cta_img {
  width: max(11vw, 88px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12.5vw;
}
@media screen and (max-width: 800px) {
  .cta_img {
    left: -94px;
  }
}
@media screen and (max-width: 600px) {
  .cta_img {
    width: 56px;
    left: 0;
    transform: none;
    top: -40px;
  }
}
@media screen and (max-width: 375px) {
  .cta_img {
    width: 46px;
    top: -28px;
  }
}

.cta_heading {
  font-size: max(1.8vw, 18px);
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.2vw;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta_heading {
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 375px) {
  .cta_heading {
    font-size: 16px;
  }
}
.cta_heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-28deg);
  left: -2.2vw;
  width: 2px;
  height: max(2vw, 20px);
  background-color: #333333;
}
@media screen and (max-width: 1000px) {
  .cta_heading::before {
    left: -22px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading::before {
    left: -9px;
  }
}
.cta_heading::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(28deg);
  right: -2.2vw;
  width: 2px;
  height: max(2vw, 20px);
  background-color: #333333;
}
@media screen and (max-width: 1000px) {
  .cta_heading::after {
    right: -22px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading::after {
    right: -9px;
  }
}

.cta_btn {
  display: block;
  width: max(50vw, 400px);
  height: max(8.4vw, 68px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .cta_btn {
    width: 320px;
    height: 62px;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn {
    width: 280px;
  }
}
.cta_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: #661D2B;
  top: max(0.6vw, 4.8px);
  left: max(0.6vw, 4.8px);
  z-index: -1;
}
.cta_btn span {
  color: #FFF;
  font-size: max(2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .cta_btn span {
    font-size: 24px;
  }
}
.cta_btn img {
  position: absolute;
  width: max(8.7vw, 68px);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 600px) {
  .cta_btn img {
    width: 56px;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn img {
    width: 46px;
  }
}

.cta_btn:hover .cta_btn_content {
  top: max(0.6vw, 4.8px);
  left: max(0.6vw, 4.8px);
}

.cta_btn_content {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: #FC476B;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/*--------------- trouble ---------------*/
.trouble {
  background-image: url(../img/trouble_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 40px;
}
@media screen and (max-width: 800px) {
  .trouble {
    background-size: cover;
  }
}

.section_heading {
  padding: 1vw 8vw;
  background-color: #FFF;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto calc(40px + 1.2vw);
  position: relative;
  border-radius: 0.8vw;
}
@media screen and (max-width: 1000px) {
  .section_heading {
    padding: 10px 80px;
    border-radius: 8px;
    margin: 0 auto 52px;
  }
}
@media screen and (max-width: 600px) {
  .section_heading {
    padding: 10px 32px;
  }
}
.section_heading::after {
  content: "";
  position: absolute;
  background-color: #FFF;
  bottom: -1.2vw;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6vw;
  height: 1.6vw;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 1000px) {
  .section_heading::after {
    bottom: -12px;
    width: 16px;
    height: 16px;
  }
}
.section_heading span {
  display: block;
  font-weight: 700;
  font-size: max(2vw, 20px);
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .section_heading span {
    font-size: 18px;
  }
}
.section_heading span .pink_txt {
  display: inline-block;
  margin-left: max(0.4vw, 4px);
  font-size: max(3.2vw, 32px);
  font-weight: 700;
  color: #FC476B;
}

.trouble_content {
  width: 100%;
  padding: 0 12vw;
  position: relative;
  padding-bottom: 30px !important;
}
@media screen and (max-width: 1200px) {
  .trouble_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .trouble_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .trouble_content {
    padding-bottom: 40px;
  }
}

.trouble_img {
  position: absolute;
  width: 28vw;
  bottom: 0;
  left: 12vw;
}
@media screen and (max-width: 1200px) {
  .trouble_img {
    left: 8vw;
  }
}
@media screen and (max-width: 600px) {
  .trouble_img {
    left: 0;
    width: 30vw;
  }
}

.trouble_icon {
  position: absolute;
  width: 5.6vw;
  top: 50%;
  transform: translateY(-50%);
  right: 12vw;
}
@media screen and (max-width: 1200px) {
  .trouble_icon {
    right: 8vw;
  }
}
@media screen and (max-width: 800px) {
  .trouble_icon {
    right: 12vw;
  }
}
@media screen and (max-width: 600px) {
  .trouble_icon {
    top: 40%;
    right: 6vw;
    width: 8vw;
  }
}

.trouble_list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 6vw;
}
@media screen and (max-width: 800px) {
  .trouble_list {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
}

.trouble_list img {
  width: max(19.2vw, 192px);
}
.trouble_list img:nth-child(2) {
  margin-top: max(3.2vw, 32px);
  width: max(21.8vw, 218px);
}
@media screen and (max-width: 800px) {
  .trouble_list img:nth-child(2) {
    margin-top: 0;
    margin-left: 40px;
  }
}

/*--------------- attention ---------------*/
.attention {
  background-color: #1C2533;
  padding: 4vw 0;
}
@media screen and (max-width: 1000px) {
  .attention {
    padding: 40px 0;
  }
}

.attention_content {
  width: 100%;
  padding: 0 12vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .attention_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .attention_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.attention_txt {
  width: 63vw;
}
@media screen and (max-width: 1200px) {
  .attention_txt {
    width: 70vw;
  }
}
@media screen and (max-width: 600px) {
  .attention_txt {
    width: 80vw;
    margin: 0 auto;
  }
}

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

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

.attention_img {
  width: 13vw;
  position: absolute;
  top: -4vw;
  right: 12vw;
}
@media screen and (max-width: 1200px) {
  .attention_img {
    right: 8vw;
  }
}
@media screen and (max-width: 600px) {
  .attention_img {
    width: 16vw;
    top: auto;
    bottom: -20px;
    right: 3vw;
  }
}

/*--------------- merit ---------------*/
.merit {
  background-image: url(../img/merit_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .merit {
    background-size: cover;
    padding: 60px 0;
  }
}

.merit_content {
  width: 68vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .merit_content {
    width: 80vw;
  }
}
@media screen and (max-width: 600px) {
  .merit_content {
    width: 94%;
  }
}

.merit_dog {
  position: absolute;
  width: 11vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 800px) {
  .merit_dog {
    display: none;
  }
}

.merit_img {
  width: 9.4vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 800px) {
  .merit_img {
    width: 11vw;
    top: 80%;
  }
}
@media screen and (max-width: 600px) {
  .merit_img {
    width: 13vw;
    top: 65%;
    transform: none;
  }
}

.merit_content p {
  font-size: max(1.7vw, 17px);
  font-weight: 500;
  line-height: 1.8;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.merit_content p > span {
  font-size: max(2.1vw, 21px);
  color: #FC476B;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 375px) {
  .merit_content p > span {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .merit_content p > span {
    font-size: 19px;
  }
}
.merit_content p > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: max(0.6vw, 6px);
  background-color: #FFF;
  bottom: max(1vw, 10px);
  left: 0;
  z-index: -1;
}
.merit_content p > span span {
  font-size: max(1.7vw, 17px);
}

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

/*--------------- relief ---------------*/
.relief {
  background-color: #D1E8FF;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .relief {
    padding: 60px 0;
  }
}

.relief_content {
  width: 68vw;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .relief_content {
    width: 80vw;
  }
}
@media screen and (max-width: 600px) {
  .relief_content {
    width: 94%;
  }
}

.relief_item {
  margin-bottom: max(2.8vw, 28px);
}
.relief_item:last-child {
  margin-bottom: 0;
}

.relief_top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: max(2.8vw, 28px);
  justify-content: flex-end;
  margin-bottom: max(2.1vw, 21px);
}
@media screen and (max-width: 600px) {
  .relief_top {
    gap: 10px;
  }
}

.relief_top img {
  width: max(17vw, 170px);
}
@media screen and (max-width: 800px) {
  .relief_top img {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .relief_top img {
    width: 78px;
  }
}

.relief_top_txt {
  width: -moz-fit-content;
  width: fit-content;
}

.relief_top_bubble {
  background-color: #F7FF00;
  padding: 1.2vw 2.4vw;
  border-radius: max(1vw, 10px);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: max(1.2vw, 12px);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .relief_top_bubble {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 600px) {
  .relief_top_bubble {
    padding: 10px 12px;
  }
}
.relief_top_bubble:last-child {
  margin-bottom: 0;
}
.relief_top_bubble::after {
  content: "";
  position: absolute;
  width: max(0.8vw, 8px);
  height: max(0.8vw, 8px);
  top: 50%;
  transform: translateY(-50%);
  right: -0.7vw;
  background-color: #F7FF00;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1000px) {
  .relief_top_bubble::after {
    right: -7px;
  }
}
.relief_top_bubble span {
  display: block;
  font-size: max(1.6vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}

.relief_bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: max(2.8vw, 28px);
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .relief_bottom {
    gap: 10px;
  }
}

.relief_bottom img {
  width: max(11.2vw, 112px);
}
@media screen and (max-width: 800px) {
  .relief_bottom img {
    width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .relief_bottom img {
    width: 60px;
  }
}

.relief_bottom_txt img {
  width: max(14.8vw, 148px);
  margin-bottom: max(1.2vw, 12px);
}
@media screen and (max-width: 800px) {
  .relief_bottom_txt img {
    width: 130px;
  }
}
@media screen and (max-width: 600px) {
  .relief_bottom_txt img {
    width: 90px;
  }
}

.relief_bottom_bubble {
  background-color: #FFF;
  padding: 1.2vw 2.4vw;
  border-radius: max(1vw, 10px);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: max(1.2vw, 12px);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .relief_bottom_bubble {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 600px) {
  .relief_bottom_bubble {
    padding: 10px 12px;
  }
}
.relief_bottom_bubble:last-child {
  margin-bottom: 0;
}
.relief_bottom_bubble::after {
  content: "";
  position: absolute;
  position: absolute;
  width: max(0.8vw, 8px);
  height: max(0.8vw, 8px);
  top: 50%;
  transform: translateY(-50%);
  left: -0.7vw;
  background-color: #FFF;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 1000px) {
  .relief_bottom_bubble::after {
    left: -7px;
  }
}
.relief_bottom_bubble span {
  display: block;
  font-size: max(1.6vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}

/*--------------- point ---------------*/
.point {
  background-image: url(../img/point_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .point {
    background-size: cover;
    padding: 60px 0;
  }
}

.point .section_heading {
  padding: 0.2vw 8vw;
}
@media screen and (max-width: 1000px) {
  .point .section_heading {
    padding: 2px 80px;
  }
}
@media screen and (max-width: 600px) {
  .point .section_heading {
    padding: 2px 32px;
  }
}

.point_content {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .point_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .point_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.point_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(1.6vw, 16px);
}
@media screen and (max-width: 1000px) {
  .point_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .point_list {
    grid-template-columns: 1fr;
  }
}

.point_item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .point_item img {
    max-width: 240px;
  }
}

.point_item_txt {
  background-color: #FFF;
  border-radius: max(1vw, 10px);
  border-top-left-radius: 0;
  padding: max(1.2vw, 12px);
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .point_item_txt {
    padding: 16px;
  }
}
.point_item_txt span {
  font-weight: 500;
  font-size: max(1.6vw, 16px);
  display: block;
  margin-bottom: max(0.8vw, 8px);
}
.point_item_txt h3 {
  font-weight: 700;
  color: #FC476B;
  font-size: max(2vw, 20px);
  margin-bottom: max(1.8vw, 18px);
}
.point_item_txt p {
  line-height: 1.5;
  font-weight: 500;
}

/*--------------- ranking ---------------*/
.ranking_heading {
  background-color: #1C2533;
  padding: 4vw 12vw;
}
@media screen and (max-width: 1200px) {
  .ranking_heading {
    padding: 4vw 8vw;
  }
}
@media screen and (max-width: 1000px) {
  .ranking_heading {
    padding: 40px 8vw;
  }
}
@media screen and (max-width: 600px) {
  .ranking_heading {
    padding: 28px 0;
  }
}
.ranking_heading .section_heading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .ranking_heading .section_heading {
    width: 94%;
  }
}
@media screen and (max-width: 600px) {
  .ranking_heading .section_heading span {
    font-size: 20px;
  }
}
.ranking_heading img {
  width: max(3vw, 30px);
}

.ranking_content {
  width: 100%;
  padding: 80px 12vw;
}
@media screen and (max-width: 1200px) {
  .ranking_content {
    padding: 80px 8vw;
  }
}
@media screen and (max-width: 600px) {
  .ranking_content {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1000px) {
  .ranking_table {
    overflow-x: scroll;
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  table {
    width: 824px;
  }
}

table th {
  padding: 0.6vw 0.6vw;
  background-color: #ECFF8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: max(1.6vw, 16px);
  margin: 0.2vw 0.4vw 0.2vw 0;
}
@media screen and (max-width: 1000px) {
  table th {
    padding: 6px 6px;
    margin: 2px 4px 2px 0;
  }
}

table tr {
  display: grid;
  grid-template-columns: 12.5vw 1fr 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  table tr {
    grid-template-columns: 125px 1fr 1fr 1fr;
  }
}
table tr:nth-child(1) img {
  width: max(4vw, 40px);
  margin: 0 auto;
}
table tr:nth-child(2) img {
  margin-bottom: max(0.6vw, 6px);
}
table tr:nth-child(2) span {
  font-size: max(1.6vw, 16px);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
}
table tr:nth-child(3) td {
  display: flex;
  align-items: center;
}
table tr:nth-child(3) img {
  margin: 0 auto;
  height: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
table tr:nth-child(4) span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
table tr:nth-child(5) span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
table tr:nth-child(6) img, table tr:nth-child(7) img, table tr:nth-child(8) img {
  width: max(2.8vw, 28px);
  margin: 0 auto;
}
table tr:nth-child(9) a {
  display: block;
  width: max(16vw, 160px);
  border-radius: 100px;
  background-color: #FC476B;
  padding: 0.6vw 0;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  table tr:nth-child(9) a {
    padding: 6px 0;
  }
}
table tr:nth-child(9) a::after {
  content: "";
  position: absolute;
  background-color: #FFF;
  width: max(0.8vw, 8px);
  height: max(0.8vw, 8px);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
  right: max(1vw, 10px);
}
table tr:nth-child(9) a:hover {
  background-color: #CC3957;
}
table tr:nth-child(9) a span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: max(1.6vw, 16px);
  color: #FFF;
  font-weight: 500;
}

table td {
  padding: 0.6vw;
}
@media screen and (max-width: 1000px) {
  table td {
    padding: 6px;
  }
}

.ranking_bottom {
  background-color: #1C2533;
  height: 80px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .ranking_bottom {
    height: 60px;
  }
}

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

.flow_heading {
  padding: 0 12vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .flow_heading {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .flow_heading {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
}
.flow_heading .section_heading {
  background-color: #333333;
  color: #FFF;
  width: 100%;
}
.flow_heading .section_heading::after {
  background-color: #333333;
}
@media screen and (max-width: 600px) {
  .flow_heading .section_heading span {
    font-size: 20px;
  }
}

.flow_heading_img {
  position: absolute;
  width: 11vw;
  top: -1vw;
  right: 12vw;
  transform: scale(-1, 1);
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .flow_heading_img {
    right: 8vw;
  }
}
@media screen and (max-width: 600px) {
  .flow_heading_img {
    width: 16vw;
    right: 0;
  }
}

.flow_content {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .flow_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .flow_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.flow_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: max(2.1vw, 21px);
  padding: 1vw 6vw;
  border-radius: max(1vw, 10px);
  margin-bottom: max(3.6vw, 36px);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .flow_item {
    padding: 10px 4vw;
  }
}
@media screen and (max-width: 600px) {
  .flow_item {
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px;
  }
}
.flow_item::after {
  content: "";
  position: absolute;
  -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: -1.5vw;
  width: max(1.6vw, 16px);
  height: max(1.6vw, 16px);
}
@media screen and (max-width: 1000px) {
  .flow_item::after {
    bottom: -15px;
  }
}
.flow_item:last-child {
  margin-bottom: 0;
}
.flow_item:last-child::after {
  height: 0;
}
.flow_item h3 {
  font-weight: 700;
  color: #6F94CC;
  font-size: max(2vw, 20px);
  margin-bottom: max(0.8vw, 8px);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .flow_item h3 {
    font-size: 19px;
  }
}
.flow_item img {
  width: max(10.2vw, 102px);
}
@media screen and (max-width: 800px) {
  .flow_item img {
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item img {
    width: 90px;
  }
}
.flow_item p {
  font-size: 16px;
  line-height: 1.5;
}

.flow_item:nth-child(odd) {
  background-color: #D1E8FF;
}
.flow_item:nth-child(odd)::after {
  background-color: #D1E8FF;
}

.flow_item:nth-child(even) {
  background-color: #D1F9FF;
}
.flow_item:nth-child(even)::after {
  background-color: #D1F9FF;
}

/*--------------- voice ---------------*/
.voice {
  background-color: #FEE2E8;
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
  display: block !important;
  margin: 0 !important;
}
@media screen and (max-width: 600px) {
  .voice {
    padding: 60px 0;
  }
}

.voice_heading {
  padding: 0 12vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .voice_heading {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .voice_heading {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
}
.voice_heading .section_heading {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .voice_heading .section_heading span {
    font-size: 20px;
  }
}

.voice_heading_img {
  position: absolute;
  width: 11vw;
  left: 12vw;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .voice_heading_img {
    left: 8vw;
  }
}
@media screen and (max-width: 600px) {
  .voice_heading_img {
    width: 14vw;
    left: 2vw;
  }
}

.voice_content {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .voice_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .voice_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.voice_item {
  margin-bottom: max(2.1vw, 21px);
  position: relative;
}
.voice_item:last-child {
  margin-bottom: 0;
}

.voice_detective {
  position: absolute;
  width: 12vw;
  right: -9vw;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .voice_detective {
    display: none;
  }
}

.voice_num {
  width: max(11vw, 110px);
}

.voice_inner {
  background-color: #FFF;
  border-radius: max(1vw, 10px);
  border-top-left-radius: 0;
  padding: max(2vw, 20px);
}

.voice_top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: max(2.2vw, 22px);
  margin-bottom: max(2.1vw, 21px);
}
@media screen and (max-width: 800px) {
  .voice_top {
    flex-direction: column;
  }
}
.voice_top img {
  width: 24.6vw;
}
@media screen and (max-width: 800px) {
  .voice_top img {
    width: 280px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .voice_top img {
    width: 100%;
    max-width: 280px;
  }
}

.voice_top_txt h3 {
  font-weight: 700;
  font-size: max(2.1vw, 21px);
  color: #FC476B;
  margin-bottom: max(0.6vw, 6px);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .voice_top_txt h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .voice_top_txt h3 br {
    display: none;
  }
}
.voice_top_txt span {
  display: block;
  font-weight: 500;
  font-size: max(1.8vw, 18px);
  margin-bottom: max(1.2vw, 12px);
}
.voice_top_txt p {
  line-height: 1.5;
  font-weight: 500;
  margin: 0 !important;
}

.voice_bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
}
@media screen and (max-width: 800px) {
  .voice_bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media screen and (max-width: 800px) {
  .voice_bottom br {
    display: none;
  }
}

.voice_request {
  background-color: #FEE2E8;
  padding: max(1.8vw, 18px);
  border-radius: max(1vw, 10px);
  position: relative;
}
.voice_request::after {
  content: "";
  position: absolute;
  width: 2vw;
  height: 2vw;
  background-color: #FEE2E8;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  transform: translateY(-50%);
  right: -1.9vw;
}
@media screen and (max-width: 800px) {
  .voice_request::after {
    display: none;
  }
}
.voice_request h3 {
  font-weight: 700;
  font-size: max(2.1vw, 21px);
  background-color: #FFF;
  width: 27vw;
  border-radius: 100px;
  margin: 0 auto 0.8vw;
  text-align: center;
  padding: 0.6vw 0;
}
@media screen and (max-width: 1000px) {
  .voice_request h3 {
    margin: 0 auto 8px;
    padding: 6px 0;
  }
}
@media screen and (max-width: 800px) {
  .voice_request h3 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .voice_request h3 {
    font-size: 19px;
  }
}
.voice_request p {
  font-size: max(1.7vw, 17px);
  line-height: 1.4;
}

.voice_intro {
  background-color: #FC476B;
  padding: max(1.8vw, 18px);
  border-radius: max(1vw, 10px);
}
.voice_intro h3 {
  font-weight: 700;
  font-size: max(2.1vw, 21px);
  background-color: #F7FF00;
  width: 27vw;
  border-radius: 100px;
  margin: 0 auto 0.8vw;
  text-align: center;
  padding: 0.6vw 0;
}
@media screen and (max-width: 1000px) {
  .voice_intro h3 {
    margin: 0 auto 8px;
    padding: 6px 0;
  }
}
@media screen and (max-width: 800px) {
  .voice_intro h3 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .voice_intro h3 {
    font-size: 19px;
  }
}
.voice_intro p {
  font-size: max(1.7vw, 17px);
  color: #FFF;
  line-height: 1.4;
  margin: 0 !important;
}

/*--------------- benefits ---------------*/
.benefits {
  background-color: #1C2533;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .benefits {
    padding: 40px 0;
  }
}

.benefits_content {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .benefits_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .benefits_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.benefits_heading {
  margin-bottom: max(3.2vw, 32px);
}
@media screen and (max-width: 600px) {
  .benefits_heading {
    margin-bottom: 24px;
  }
}

.benefits_bottom {
  background-color: #F7FF00;
  border-radius: max(1vw, 10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: max(2.1vw, 21px);
  padding: 2.8vw 0;
}
@media screen and (max-width: 1000px) {
  .benefits_bottom {
    padding: 28px 0;
  }
}
@media screen and (max-width: 600px) {
  .benefits_bottom {
    flex-direction: column;
  }
}

.benefits_item {
  width: 23.6vw;
}
@media screen and (max-width: 800px) {
  .benefits_item {
    width: 27vw;
  }
}
@media screen and (max-width: 600px) {
  .benefits_item {
    width: 50vw;
  }
}

.benefits_bottom_txt {
  width: 36.8vw;
}
@media screen and (max-width: 800px) {
  .benefits_bottom_txt {
    width: 41vw;
  }
}
@media screen and (max-width: 600px) {
  .benefits_bottom_txt {
    width: 90%;
  }
}
.benefits_bottom_txt span {
  display: block;
  font-weight: 700;
  font-size: max(2.1vw, 21px);
  margin-bottom: max(1.2vw, 12px);
}
@media screen and (max-width: 600px) {
  .benefits_bottom_txt span {
    font-size: 19px;
  }
}

/*--------------- qa ---------------*/
.qa {
  background-color: #D1E8FF;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .qa {
    padding: 60px 0;
  }
}

.qa_heading {
  padding: 0 12vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .qa_heading {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .qa_heading {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
}
.qa_heading .section_heading {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .qa_heading .section_heading span {
    font-size: 20px;
  }
}

.qa_container {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .qa_container {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .qa_container {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.qa_list {
  border-radius: max(1.6vw, 16px);
  border: 0.4vw solid #6F94CC;
  background-color: #FFF;
  overflow: hidden;
  margin-bottom: max(2.1vw, 21px);
}
@media screen and (max-width: 1000px) {
  .qa_list {
    border: 4px solid #6F94CC;
  }
}
.qa_list:last-child {
  margin-bottom: 0;
}
.qa_list p {
  margin: 0 !important;
}

.q_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(2.6vw, 26px);
  font-weight: 900;
  color: #6F94CC;
  background-color: #FFF;
  border-radius: 100%;
  width: max(3.6vw, 36px);
  height: max(3.6vw, 36px);
}
@media screen and (max-width: 600px) {
  .q_icon {
    font-size: 22px;
    width: 28px;
    height: 28px;
  }
}

.qa_title {
  background: #6F94CC;
  cursor: pointer;
  font-size: 16px;
  padding: 1.2vw 1.6vw;
  position: relative;
  border-radius: max(0.6vw, 6px);
  margin: 0 !important;
}
@media screen and (max-width: 1000px) {
  .qa_title {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 600px) {
  .qa_title {
    padding: 12px 10px;
  }
}
.qa_title p {
  font-size: max(1.4vw, 16px);
  color: #FFF;
  line-height: 1.6;
  font-weight: 500;
}

.qa_title_inner {
  display: grid;
  grid-template-columns: 3.6vw 1fr;
  align-items: center;
  gap: max(1.2vw, 12px);
}
@media screen and (max-width: 1000px) {
  .qa_title_inner {
    grid-template-columns: 36px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .qa_title_inner {
    grid-template-columns: 28px 1fr;
    gap: 8px;
  }
}

.qa_title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}

.qa_text {
  display: none;
  padding: 1.2vw 1.6vw;
  border-bottom-left-radius: max(1vw, 10px);
  border-bottom-right-radius: max(1vw, 10px);
}
@media screen and (max-width: 1000px) {
  .qa_text {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 600px) {
  .qa_text {
    padding: 12px 10px;
  }
}
.qa_text p {
  font-size: max(1.4vw, 16px);
  line-height: 1.6;
  color: #6F94CC;
  font-weight: 500;
}

.a_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(2.6vw, 26px);
  font-weight: 900;
  color: #FFF;
  background-color: #6F94CC;
  border-radius: 100%;
  width: max(3.6vw, 36px);
  height: max(3.6vw, 36px);
}
@media screen and (max-width: 600px) {
  .a_icon {
    font-size: 22px;
    width: 28px;
    height: 28px;
  }
}

.qa_text_inner {
  display: grid;
  grid-template-columns: 3.6vw 1fr;
  align-items: center;
  gap: max(1.2vw, 12px);
}
@media screen and (max-width: 1000px) {
  .qa_text_inner {
    grid-template-columns: 36px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .qa_text_inner {
    grid-template-columns: 28px 1fr;
    gap: 8px;
  }
}

/*--------------- popup ---------------*/
.popup_bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.popup_bg.hide {
  display: none;
}

.popup {
  display: block;
  width: 700px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
@media screen and (max-width: 1400px) {
  .popup {
    width: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .popup {
    width: 500px;
  }
}
@media screen and (max-width: 600px) {
  .popup {
    max-width: 500px;
    width: 90%;
  }
}
@media screen and (max-width: 375px) {
  .popup {
    width: 95%;
  }
}

.popup.hide {
  display: none;
}

.popup_wrap {
  width: 100%;
  background-color: #00BA01;
  border-radius: 24px;
  padding: 20px 0;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .popup_wrap {
    padding: 12px 0;
    border-radius: 20px;
  }
}
@media screen and (max-width: 600px) {
  .popup_wrap {
    padding: 20px 0;
    border-radius: 8px;
  }
}

.popup_close {
  width: 48px;
  position: absolute;
  top: -8px;
  right: -20px;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .popup_close {
    width: 42px;
    right: -16px;
  }
}
@media screen and (max-width: 600px) {
  .popup_close {
    width: 38px;
    right: -4px;
    top: -18px;
  }
}

.popup_heading {
  background-color: #FFF;
  border-radius: 16px;
  width: 90%;
  margin: 0 auto 12px;
  padding: 12px 0;
}
@media screen and (max-width: 1400px) {
  .popup_heading {
    padding: 6px 0;
    margin: 0 auto 8px;
  }
}
@media screen and (max-width: 600px) {
  .popup_heading {
    padding: 10px 0;
    margin: 0 auto 12px;
  }
}
.popup_heading span {
  font-size: 32px;
  color: #00BA01;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .popup_heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .popup_heading span {
    font-size: 21px;
  }
}

.popup_top {
  color: #FFF;
}

.popup_top span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.popup_top span:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 6px;
}
@media screen and (max-width: 600px) {
  .popup_top span:nth-child(1) {
    font-size: 30px;
    text-align: center;
    margin: 0 auto 12px;
  }
}
.popup_top span:nth-child(2) {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .popup_top span:nth-child(2) {
    font-size: 14px;
    margin: 0 auto 12px;
  }
}

.popup_img {
  width: 80%;
  margin: 0 auto 8px;
}
@media screen and (max-width: 1400px) {
  .popup_img {
    width: 78%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 600px) {
  .popup_img {
    width: 90%;
  }
}

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

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

.popup_btn {
  display: block;
  border-radius: 16px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.popup_btn::after {
  content: "";
  position: absolute;
  background-color: #902F03;
  width: 100%;
  height: 100%;
  top: 4px;
  left: 0;
  z-index: -1;
  border-radius: 16px;
}
.popup_btn span {
  font-size: 32px;
  color: #FFF;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .popup_btn span {
    font-size: 24px;
  }
}

.popup_btn:hover {
  top: 4px;
}
.popup_btn:hover::after {
  top: 0;
}

.popup_btn_inner {
  background-color: #FF5000;
  border-radius: 16px;
  padding: 12px 0;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .popup_btn_inner {
    padding: 8px 0;
  }
}
@media screen and (max-width: 600px) {
  .popup_btn_inner {
    padding: 10px 0;
  }
}

.popup_detective {
  width: 165px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .popup_detective {
    width: 140px;
  }
}
@media screen and (max-width: 1000px) {
  .popup_detective {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .popup_detective {
    width: 60px;
    z-index: 3;
    bottom: 52px;
  }
}

/*============================
#form
============================*/
#form {
  width: calc(100% - 24vw);
  margin: auto;
  position: relative;
  background-color: #fff;
  border-radius: 2vw;
}
#form p {
  margin: 0 !important;
}

.form_header, .form_header2 {
  position: relative;
  padding: 2vw;
  padding-bottom: 0.5vw;
  border-bottom: solid 0.3vw;
}

.form_header2 {
  border: none;
}

.form_fukidashi, .form_fukidashi2, .form_fukidashi3 {
  font-size: max(1.5vw, 15px);
  font-weight: 700;
  color: #fff;
  background-color: #6F94CC;
  padding: 1vw;
  width: 79%;
  border-radius: 1.5vw;
  text-align: center;
  position: relative;
  margin-bottom: 5vw;
}

.form_fukidashi2, .form_fukidashi3 {
  background-color: #FC476B;
}

.form_fukidashi3 {
  margin-bottom: 1vw;
}

.form_fukidashi::after, .form_fukidashi2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16.2px;
  transform: translateY(-50%);
  background: #6F94CC;
  height: 1.1258330249vw;
  width: 0.9vw;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.form_fukidashi2::after {
  background-color: #FC476B;
}

.character, .character2 {
  width: 15%;
  position: absolute;
  right: 0.5vw;
  bottom: 0;
}

.character2 {
  width: 17%;
  bottom: unset;
  top: 0;
  right: 1vw;
}

.question {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.question_icon {
  width: 4%;
}

.question_text {
  font-size: max(1.7vw, 17px);
  font-weight: 700;
}

.slick-dots {
  top: 8.5vw;
  left: 0vw;
  bottom: unset;
  width: 75%;
  margin-left: 2vw;
  display: flex;
  justify-content: space-between;
  counter-reset: number 0;
}

.slick-dots::before {
  content: "";
  width: 98%;
  height: 1px;
  border-top: solid 0.1vw #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
}

.slick-dots::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.slick-dots li {
  width: 1.9vw;
  height: 2vw;
  margin: 0;
  cursor: auto;
}

.slick-dots li button {
  width: 2vw;
  height: 2vw;
  cursor: auto;
}

.slick-dots li button:before {
  z-index: 2;
  opacity: 1 !important;
  font-family: unset;
  width: 2vw;
  height: 2vw;
  content: "";
  background-color: #FEE2E8;
  border: solid 0.25vw #333;
  border-radius: 50%;
}

.slick-dots li button:after {
  counter-increment: number 1;
  content: "STEP" counter(number);
  position: absolute;
  top: -0.7vw;
  left: 50%;
  transform: translatex(-50%);
  color: #333;
  width: auto;
  height: 1vw;
  font-size: max(1vw, 10px);
  font-weight: 700;
}

.slick-dots li.slick-active button:before {
  background-color: #FC476B;
}

.answer_area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 1.5vw 2vw 1vw;
  gap: 0.8vw;
  min-height: 20vw;
}

.form_radio {
  width: 49%;
  text-align: center;
}

.form_radio_input {
  display: none;
}

.form_radio_label {
  background-color: #FEE2E8;
  width: 100%;
  display: block;
  min-height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2vw;
  font-size: max(1.5vw, 15px);
  font-weight: 500;
  color: #333;
  border: solid 0.3vw #333;
  box-shadow: 0.2vw 0.2vw 0 #333;
}

input[type=radio]:checked + label {
  background-color: #FC476B;
  color: #fff;
  box-shadow: unset;
  top: 0.2vw;
  left: 0.2vw;
  position: relative;
}

.slick-next, .slick-prev {
  display: none !important;
}

.form_footer {
  padding: 1vw 2vw 2vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.form_back_btn {
  font-size: max(1.4vw, 13px);
  font-weight: 400;
  background-color: #D1E8FF;
  width: 100%;
  text-align: center;
  padding: 1vw;
  border-radius: 3vw;
  position: relative;
}

.form_back_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5vw;
  transform: translatey(-50%);
  background: #333;
  height: 0.8660254038vw;
  width: 0.8vw;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.form_text {
  width: 100%;
}

.form_input_text {
  width: 100%;
  border: solid 0.2vw #FC476B;
  padding: 0.4vw 0.2vw;
  font-size: max(1.3vw, 13px);
  font-weight: 400;
  border-radius: 0.6vw;
  margin-top: 0.2vw;
}

.form_input_label {
  display: flex;
  gap: 1vw;
  align-items: center;
}

.required {
  background-color: #fc476b;
  color: #fff;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3vw 0.5vw;
}

.form_send {
  width: 50%;
  text-align: center;
  font-size: max(2vw, 20px);
  font-weight: 700;
  color: #fff;
  background-color: #FC476B;
  box-shadow: 0.3vw 0.4vw #661D2B;
  border-radius: 15vw;
  height: 5vw;
  position: relative;
  letter-spacing: 0.3vw;
}

.form_send::after {
  content: "";
  position: absolute;
  width: 5vw;
  height: 7vw;
  background-image: url(../img/loop_icon.webp);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.thanks_text {
  font-size: max(1.3vw, 13px);
  font-weight: 600;
  margin-bottom: 4vw;
  line-height: 1.3;
}

.thanks_text_top {
  color: #FC476B;
  margin-bottom: 1vw;
}

.thanks_img {
  width: 80%;
  margin: auto;
}

.back_btns {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .form_fv {
    padding-top: 1px;
    background-size: auto 100%;
    background-repeat: repeat-y;
    min-height: calc(100vh - 40px);
    padding-top: 1px;
  }
  /*============================
  #form
  ============================*/
  #form {
    width: 94%;
    margin: auto;
    margin-top: 2vw;
  }
  .form_fukidashi, .form_fukidashi2, .form_fukidashi3 {
    font-size: 3vw;
    width: 80%;
    padding: 3vw 1vw;
    border-radius: 3.5vw;
    margin-bottom: 10vw;
  }
  .form_fukidashi3 {
    margin-bottom: 2vw;
  }
  .form_fukidashi::after, .form_fukidashi2::after {
    height: 2.8578838325vw;
    width: 2.2vw;
    right: -2vw;
  }
  .character, .character2 {
    width: 20%;
  }
  .question_text {
    font-size: 3.8vw;
  }
  .slick-dots {
    top: 16vw;
    width: 70%;
    margin-left: 6vw;
  }
  .slick-dots li button:after {
    font-size: 1.9vw;
    top: -1.5vw;
  }
  .answer_area {
    justify-content: center;
    min-height: unset;
    gap: 3.5vw;
  }
  .form_radio {
    width: 90%;
  }
  .form_radio_label {
    font-size: 4.4vw;
    padding: 1.8vw 0;
  }
  .form_footer {
    padding-top: 3.5vw;
  }
  .back_btns {
    width: 45%;
  }
  .form_back_btn {
    width: 100%;
    padding: 2.5vw;
  }
  .form_back_btn::before {
    width: 2vw;
    height: 1.9918584287vw;
  }
  .form_input_label {
    font-size: 2.5vw;
  }
  .form_send {
    width: 53%;
    height: 10vw;
  }
  .thanks_text {
    width: 85%;
  }
}
.no_flex {
  display: inline !important;
}

/*============================
footer
============================*/
.footer {
  background-color: #1C2533;
  padding: 40px 0 24px;
}

.footer_content {
  width: 100%;
  padding: 0 12vw;
}
@media screen and (max-width: 1200px) {
  .footer_content {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 600px) {
  .footer_content {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.footer_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .footer_link {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.footer_link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 8px;
  border-right: 1.6px solid #fff;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .footer_link a {
    border-right: none;
    padding: 0;
  }
}
.footer_link a:last-child {
  border-right: none;
}

.footer_copyright {
  font-size: 14px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}/*# sourceMappingURL=lp-index.css.map */