.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 {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", serif;
  color: #2C3233;
  letter-spacing: 0.1em;
}

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

a {
  text-decoration: none;
}

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

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

.smooth {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
  line-height: 1;
  padding-top: max(1.4vw, 14px);
  margin: 0 auto 3.2vw;
}
@media screen and (max-width: 1000px) {
  .smooth {
    margin: 0 auto 32px;
  }
}

.smooth.move {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

@keyframes chikachika {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------- header ---------------*/
.header {
  background-color: #FFF;
  height: 70px;
  padding: 0 4vw 0 7vw;
}
@media screen and (max-width: 1400px) {
  .header {
    height: 56px;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    height: 64px;
    padding: 0 4vw;
  }
}
@media screen and (max-width: 600px) {
  .header {
    padding: 0 2vw;
  }
}

.header_content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_txt {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .header_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .header_txt {
    font-size: 15px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 800px) {
  .header_txt {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
  }
}
@media screen and (max-width: 350px) {
  .header_txt {
    font-size: 14px;
  }
}

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

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

.header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0E7E86;
  height: 54px;
  width: 240px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .header_btn {
    height: 42px;
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .header_btn {
    height: 40px;
    width: 140px;
  }
}
@media screen and (max-width: 375px) {
  .header_btn {
    width: 120px;
  }
}
.header_btn::after {
  content: "";
  position: absolute;
  background-color: rgba(14, 126, 134, 0.5);
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 4px;
  left: 0;
}
.header_btn span {
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .header_btn span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .header_btn span {
    font-size: 15px;
  }
}

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

/*--------------- fv ---------------*/
.fv {
  height: 46vw;
  background-color: #00C4CC;
  position: relative;
  padding-top: 0.6vw;
}
@media screen and (max-width: 1200px) {
  .fv {
    height: 60.2vw;
  }
}
@media screen and (max-width: 800px) {
  .fv {
    height: auto;
  }
}

.fv_img {
  position: absolute;
  width: 58vw;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .fv_img {
    width: 50vw;
  }
}
@media screen and (max-width: 800px) {
  .fv_img {
    position: static;
    margin-left: auto;
    max-width: 400px;
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .fv_img {
    width: 100%;
    max-width: 600px;
  }
}

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

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

.fv_content {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  margin-left: 6vw;
}
@media screen and (max-width: 800px) {
  .fv_content {
    margin: 0 auto;
  }
}

.fv_main {
  width: 35vw;
  margin: 0 auto 0.8vw;
}
@media screen and (max-width: 1200px) {
  .fv_main {
    width: 44vw;
  }
}
@media screen and (max-width: 1000px) {
  .fv_main {
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 800px) {
  .fv_main {
    max-width: 360px;
    width: 94%;
  }
}

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

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

.fv_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1vw;
  font-size: max(1.3vw, 13px);
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .fv_txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .fv_txt {
    display: none;
  }
}
.fv_txt span {
  color: #FFDF85;
  font-weight: 700;
  font-size: max(1.6vw, 16px);
}
@media screen and (max-width: 800px) {
  .fv_txt span {
    font-size: 18px;
  }
}

.fv_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  margin-bottom: 0.6vw;
}
@media screen and (max-width: 800px) {
  .fv_list {
    gap: 8px;
    margin-bottom: 12px;
  }
}

.fv_list li {
  width: 13vw;
}
@media screen and (max-width: 1200px) {
  .fv_list li {
    width: 16vw;
  }
}
@media screen and (max-width: 800px) {
  .fv_list li {
    width: 140px;
  }
}

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

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

.fv_btn.fv_btn_fixed {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_btn.fv_btn_fixed {
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
}

.fv_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .fv_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0;
  }
}

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

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

.fv_btn_a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.4vw;
  height: 4.2vw;
  position: relative;
  border-radius: 100px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .fv_btn_a {
    width: 200px;
    height: 52px;
  }
}
@media screen and (max-width: 600px) {
  .fv_btn_a {
    width: 100%;
    height: 64px;
  }
}
.fv_btn_a img {
  position: absolute;
  width: 1.3vw;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8vw;
}
@media screen and (max-width: 1200px) {
  .fv_btn_a img {
    width: 16px;
    right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .fv_btn_a img {
    display: none;
  }
}
.fv_btn_a span {
  display: block;
  color: #FFF;
  font-size: max(1.3vw, 13px);
  font-weight: 700;
  margin-right: 0.6vw;
}
@media screen and (max-width: 1200px) {
  .fv_btn_a span {
    font-size: 16px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 600px) {
  .fv_btn_a span {
    margin-right: 0px;
    font-size: 18px;
  }
}

.fv_btn_a:hover {
  top: 4px;
}
@media screen and (max-width: 600px) {
  .fv_btn_a:hover {
    top: 0;
  }
}
.fv_btn_a:hover::after {
  top: 0;
}

.fv_btn_dl {
  background-color: #035760;
}
.fv_btn_dl::after {
  content: "";
  position: absolute;
  background-color: rgba(3, 87, 96, 0.5);
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .fv_btn_dl::after {
    display: none;
  }
}

.fv_btn_cta {
  background-color: #FF9000;
}
.fv_btn_cta::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 144, 0, 0.3);
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .fv_btn_cta::after {
    display: none;
  }
}

.fv_bottom {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_bottom {
    display: block;
    position: absolute;
    width: 94%;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}

/*--------------- cta ---------------*/
.cta {
  background-color: #F2FCFD;
  padding-top: 7.5vw;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta {
    padding-top: 75px;
  }
}

.cta_content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  max-width: 94%;
}

.cta_inner {
  padding-bottom: 7.5vw;
}
@media screen and (max-width: 1000px) {
  .cta_inner {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 600px) {
  .cta_inner {
    padding-bottom: 75px;
  }
}

.cta_txt {
  font-size: max(2vw, 20px);
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin-bottom: max(3.4vw, 34px);
}
.cta_txt .blue_txt {
  font-weight: 700;
  color: #00C4CC;
}
.cta_txt .yellow_bg {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cta_txt .yellow_bg::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 223, 133, 0.5);
  border-radius: 100px;
  height: max(1vw, 10px);
  width: 100%;
  z-index: -1;
  bottom: 0;
  left: 0;
}

.cta_btn {
  display: block;
  padding: 1.8vw 4.2vw;
  border-radius: 100px;
  background-color: #FF9000;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .cta_btn {
    padding: 18px 42px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn {
    padding: 16px 34px;
    margin-left: 1vw;
  }
}
@media screen and (max-width: 375px) {
  .cta_btn {
    margin-left: 0;
  }
}
.cta_btn::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 144, 0, 0.14);
  border-radius: 100px;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 4px;
  left: 0;
}

.cta_btn:hover {
  top: 4px;
}
.cta_btn:hover::after {
  display: none;
}

.cta_btn_txt {
  color: #FFF;
  font-weight: 700;
  font-size: max(2vw, 20px);
  display: block;
  margin-right: max(0.6vw, 6px);
}
@media screen and (max-width: 600px) {
  .cta_btn_txt {
    font-size: 18px;
  }
}

.cta_btn_arrow {
  position: absolute;
  font-size: max(1.4vw, 14px);
  top: 50%;
  transform: translateY(-50%);
  right: max(1vw, 10px);
  color: #FFF;
}
@media screen and (max-width: 600px) {
  .cta_btn_arrow {
    font-size: 12px;
  }
}

.cta_img {
  width: max(21vw, 210px);
}
@media screen and (max-width: 600px) {
  .cta_img {
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 375px) {
  .cta_img {
    display: none;
  }
}

/*--------------- intro ---------------*/
.intro {
  padding-top: max(7.5vw, 75px);
}

.intro_content {
  position: relative;
}

.intro_bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.intro_heading {
  font-size: max(2vw, 20px);
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .intro_heading {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .intro_heading {
    text-align: center;
    line-height: 1.6;
  }
}
.intro_heading .green_txt {
  font-size: max(2.4vw, 24px);
  color: #00C4CC;
}
.intro_heading .green_txt span {
  display: inline-block;
  position: relative;
}
.intro_heading .green_txt span::after {
  content: "";
  position: absolute;
  top: min(-0.8vw, -8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFDF85;
  width: max(0.6vw, 6px);
  height: max(0.6vw, 6px);
  border-radius: 100%;
}

.intro_inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 7vw;
  gap: max(2vw, 20px);
}
@media screen and (max-width: 800px) {
  .intro_inner {
    flex-direction: column;
    width: 86%;
  }
}
@media screen and (max-width: 600px) {
  .intro_inner {
    width: 94%;
    padding-bottom: 2vw;
  }
}

.intro_txt {
  width: 36.6vw;
  font-size: max(1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 5vw;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .intro_txt {
    margin-top: 1vw;
  }
}
@media screen and (max-width: 800px) {
  .intro_txt {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .intro_txt {
    text-align: justify;
  }
}
.intro_txt span {
  font-size: max(1.6vw, 18px);
  color: #00C4CC;
}

.intro_img {
  width: 28vw;
}
@media screen and (max-width: 800px) {
  .intro_img {
    margin-left: auto;
    width: 38vw;
  }
}
@media screen and (max-width: 600px) {
  .intro_img {
    width: 58vw;
    margin: 0 auto;
  }
}

/*--------------- trouble ---------------*/
.trouble_content {
  background: linear-gradient(180deg, rgba(175, 175, 175, 0.23) 0%, rgba(175, 175, 175, 0.23) 80%, #FFFFFF 100%);
}
@media screen and (max-width: 800px) {
  .trouble_content {
    padding-top: 40px;
  }
}

.trouble_top {
  margin-bottom: max(6.4vw, 64px);
}
@media screen and (max-width: 600px) {
  .trouble_top {
    margin-bottom: 32px;
  }
}

.trouble_top_small {
  display: block;
  font-size: max(2vw, 20px);
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.5vw;
}
@media screen and (max-width: 1000px) {
  .trouble_top_small {
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_top_small {
    font-size: 18px;
  }
}

.trouble_heading {
  padding: 1.2vw 4.2vw;
  border-radius: max(1vw, 10px);
  background-color: #8F8F8F;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .trouble_heading {
    padding: 12px 42px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_heading {
    padding: 12px 20px;
  }
}
.trouble_heading h2 {
  font-size: max(2vw, 20px);
  color: #FFF;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .trouble_heading h2 {
    text-align: center;
    line-height: 1.5;
  }
}
.trouble_heading span {
  font-size: max(2.4vw, 24px);
  color: #FFDF85;
  font-weight: 700;
}

.trouble_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10vw 19vw 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .trouble_inner {
    padding: 100px 190px 0;
  }
}
@media screen and (max-width: 600px) {
  .trouble_inner {
    padding: 0;
  }
}

.trouble_img {
  width: max(16.5vw, 165px);
  margin-right: max(2vw, 20px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .trouble_img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .trouble_bubble {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 400px;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .trouble_bubble .br_item {
    width: 100%;
  }
}

.trouble_bubble_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: max(21vw, 210px);
  height: max(14.4vw, 144px);
  background-image: url(../img/trouble_bubble.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-20px);
}
@media screen and (max-width: 600px) {
  .trouble_bubble_item {
    position: static;
    width: 170px;
    height: 120px;
  }
}
@media screen and (max-width: 375px) {
  .trouble_bubble_item {
    width: 150px;
  }
}
.trouble_bubble_item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .trouble_bubble_item:nth-child(1) {
    transform: none;
    left: 0;
  }
}
.trouble_bubble_item:nth-child(3) {
  bottom: 0;
  left: 0;
}
.trouble_bubble_item:nth-child(4) {
  right: 0;
  bottom: 0;
}

.move .trouble_bubble_item:nth-child(1) {
  animation: fadein 0.5s 0.2s forwards;
}
@media screen and (max-width: 600px) {
  .move .trouble_bubble_item:nth-child(1) {
    animation: fadein2 0.5s 0.2s forwards;
  }
}
.move .trouble_bubble_item:nth-child(3) {
  animation: fadein2 0.5s 0.6s forwards;
}
.move .trouble_bubble_item:nth-child(4) {
  animation: fadein2 0.5s 1s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.trouble_bubble_item span {
  font-size: max(1.2vw, 16px);
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .trouble_bubble_item span {
    line-height: 1.6;
  }
}
@media screen and (max-width: 375px) {
  .trouble_bubble_item span {
    font-size: 15px;
  }
}
.trouble_bubble_item span span {
  font-size: max(1.6vw, 18px);
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .trouble_bubble_item span span {
    font-size: 17px;
  }
}
@media screen and (max-width: 375px) {
  .trouble_bubble_item span span {
    font-size: 16px;
  }
}

.trouble_bottom {
  padding: 60px 0 100px;
}
@media screen and (max-width: 600px) {
  .trouble_bottom {
    padding: 40px 0 100px;
  }
}

.trouble_arrow {
  width: max(18vw, 180px);
  height: max(2vw, 20px);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(0deg, #00C4CC 0%, #FFF 100%);
  margin: 0 auto 40px;
}

.trouble_bottom_heading {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  gap: max(2vw, 20px);
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .trouble_bottom_heading {
    gap: 12px;
  }
}
@media screen and (max-width: 375px) {
  .trouble_bottom_heading {
    gap: 0px;
  }
}
.trouble_bottom_heading img {
  width: max(3.8vw, 38px);
  opacity: 0;
}
@media screen and (max-width: 375px) {
  .trouble_bottom_heading img {
    width: 32px;
  }
}
.trouble_bottom_heading .trouble_bottom_right {
  transform: scale(-1, 1);
}

.trouble_bottom_heading img.move {
  animation: chikachika 1s 0.2s forwards;
}

.trouble_bottom_txt {
  display: block;
  font-size: max(1.7vw, 18px);
  font-weight: 700;
  margin-bottom: max(1vw, 10px);
}
@media screen and (max-width: 800px) {
  .trouble_bottom_txt {
    text-align: center;
    line-height: 2.2;
  }
}
.trouble_bottom_txt span {
  position: relative;
}
.trouble_bottom_txt span::after {
  content: "";
  position: absolute;
  background-color: #FFDF85;
  width: max(0.4vw, 4px);
  height: max(0.4vw, 4px);
  border-radius: 100%;
  top: min(-0.4vw, -4px);
  left: 50%;
  transform: translateX(-50%);
}

/*--------------- feature ---------------*/
.feature {
  padding-bottom: 80px;
}

.section_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (max-width: 600px) {
  .section_heading {
    margin: 0 auto 48px;
  }
}
.section_heading span {
  font-size: max(1.2vw, 16px);
  font-weight: 500;
  color: #00C4CC;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}
.section_heading h2 {
  font-size: max(2vw, 20px);
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.feature_list {
  width: max(70vw, 700px);
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .feature_list {
    max-width: 420px;
    width: 94%;
  }
}

.feature_list li {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(2.8vw, 28px);
  position: relative;
  margin-bottom: max(6vw, 60px);
}
.feature_list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .feature_list li {
    grid-template-columns: 1fr;
  }
}

.feature_arrow {
  position: absolute;
  width: max(7vw, 70px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .feature_arrow {
    top: auto;
    width: 46px;
    transform: translateX(-50%) scale(-1, -1) rotate(-38deg);
    bottom: -28px;
  }
}

.feature_item_inner {
  border-radius: max(1vw, 10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature_item_title {
  height: max(3.8vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
}

.feature_item_txt {
  font-weight: 400;
  line-height: 2;
  padding: max(1.3vw, 18px);
  flex: 1;
}

@media screen and (max-width: 800px) {
  .feature_item_before {
    position: relative;
  }
}
.feature_item_before .feature_item_inner {
  border: 2px solid #8F8F8F;
}
.feature_item_before .feature_item_title {
  background-color: #8F8F8F;
  font-size: max(1.4vw, 16px);
}
.feature_item_before .feature_item_img {
  border-bottom: 2px solid #8F8F8F;
}
.feature_item_before .feature_item_txt span {
  font-weight: 700;
}

.feature_item_after {
  position: relative;
}
.feature_item_after .feature_item_inner {
  border: 4px solid #00C4CC;
}
.feature_item_after .feature_item_title {
  background-color: #00C4CC;
  font-size: max(1.6vw, 18px);
}
.feature_item_after .feature_item_img {
  border-bottom: 4px solid #00C4CC;
}
.feature_item_after .feature_item_txt span {
  color: #00C4CC;
  font-weight: 700;
  display: inline;
  background: linear-gradient(transparent 70%, #FFDF85 0%);
}
.feature_item_after .feature_effect {
  position: absolute;
  width: max(5.2vw, 52px);
  top: min(-4vw, -40px);
  right: max(-3vw, -30px);
  z-index: 5;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .feature_item_after .feature_effect {
    width: 42px;
    right: -20px;
    top: -24px;
  }
}
@media screen and (max-width: 600px) {
  .feature_item_after .feature_effect {
    top: -18px;
    right: 0;
  }
}

.feature_effect.move {
  animation: chikachika 1s 0.2s forwards;
}

.feature_item_after .feature_item_title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.feature_item_after .feature_item_title span::before {
  content: "";
  position: absolute;
  width: max(1.4vw, 18px);
  height: max(1.8vw, 22px);
  background-image: url(../img/feature_shine.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: min(-2vw, -22px);
}
.feature_item_after .feature_item_title span::after {
  content: "";
  position: absolute;
  width: max(1.4vw, 18px);
  height: max(1.8vw, 22px);
  background-image: url(../img/feature_shine.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: min(-2vw, -22px);
}

/*--------------- qa ---------------*/
.gray_bg {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.qa {
  width: 70vw;
  background-color: #FFF;
  margin: 0 auto;
  border-radius: max(1vw, 10px);
  padding: 80px 4vw;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .qa {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 800px) {
  .qa {
    max-width: 600px;
    width: 94%;
    padding: 60px 40px;
  }
}
@media screen and (max-width: 600px) {
  .qa {
    padding: 48px 8px;
  }
}
@media screen and (max-width: 375px) {
  .qa {
    padding: 48px 4px;
  }
}

.qa_inner {
  margin: 50px auto 0;
  width: 100%;
}

.qa_list:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .qa_list:not(:first-child) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 600px) {
  .qa_list:not(:first-child) {
    margin-top: 16px;
  }
}

.qa_title {
  background: #00C4CC;
  cursor: pointer;
  font-size: 16px;
  padding: 0.8vw 1.6vw;
  position: relative;
  color: #FFF;
  border-radius: max(1vw, 10px);
}
@media screen and (max-width: 1000px) {
  .qa_title {
    padding: 8px 40px 8px 16px;
  }
}
@media screen and (max-width: 600px) {
  .qa_title {
    padding: 8px 36px 8px 12px;
  }
}
.qa_title p {
  line-height: 1.6;
}

.qa_title_inner {
  display: grid;
  grid-template-columns: 2.8vw 1fr;
  align-items: center;
  gap: max(1.2vw, 12px);
}
@media screen and (max-width: 1000px) {
  .qa_title_inner {
    grid-template-columns: 28px 1fr;
  }
}
.qa_title_inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(3.2vw, 32px);
  height: max(3.2vw, 32px);
  border-radius: 100%;
  background-color: #FFF;
  color: #00C4CC;
  font-weight: 700;
  font-size: max(1.8vw, 18px);
  padding-bottom: max(0.4vw, 4px);
}

.plus_icon {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: max(1.2vw, 12px);
  width: max(1.2vw, 16px);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .plus_icon {
    width: 12px;
  }
}

.qa_title.open .plus_icon {
  transform: translateY(-50%) rotate(-315deg);
}

.qa_text {
  display: none;
  padding: 0 1.6vw;
}
@media screen and (max-width: 1000px) {
  .qa_text {
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .qa_text {
    padding: 0 12px;
  }
}

.qa_text {
  font-size: 16px;
  position: relative;
  border-radius: max(1vw, 10px);
}
.qa_text p {
  padding: 1.8vw 0;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .qa_text p {
    padding: 18px 0;
  }
}

.qa_text_inner {
  display: grid;
  grid-template-columns: 2.8vw 1fr;
  align-items: center;
  gap: max(1.2vw, 12px);
}
@media screen and (max-width: 1000px) {
  .qa_text_inner {
    grid-template-columns: 28px 1fr;
  }
}
.qa_text_inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: max(3.2vw, 32px);
  color: #00C4CC;
  font-weight: 700;
  font-size: max(2vw, 20px);
  height: 100%;
  border-left: 2px solid #00C4CC;
}

/*--------------- contact ---------------*/
.contact {
  width: 70vw;
  background-color: #FFF;
  margin: 0 auto;
  border-radius: max(1vw, 10px);
  padding: 80px 10vw;
}
@media screen and (max-width: 1000px) {
  .contact {
    padding: 80px 80px;
  }
}
@media screen and (max-width: 800px) {
  .contact {
    max-width: 600px;
    width: 94%;
    padding: 60px 40px;
  }
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 48px 20px;
  }
}
@media screen and (max-width: 375px) {
  .contact {
    padding: 48px 12px;
  }
}

.contact_list {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .contact_list {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .contact_list {
    margin-bottom: 40px;
  }
}

.contact_item {
  margin-bottom: 40px;
}
.contact_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .contact_item {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 600px) {
  .contact_item {
    margin-bottom: 24px;
  }
}

.contact_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: max(1.2vw, 12px);
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .contact_title {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 600px) {
  .contact_title {
    margin-bottom: 8px;
  }
}

.contact_title_txt {
  font-size: max(1.2vw, 16px);
  font-weight: 700;
}

.required_icon {
  display: block;
  border: 1.6px solid #C02A57;
  color: #C02A57;
  font-size: max(1vw, 14px);
  padding: 0.2vw 0.4vw 0.3vw;
  border-radius: max(0.4vw, 4px);
}
@media screen and (max-width: 1000px) {
  .required_icon {
    padding: 2px 4px 3px;
  }
}

.contact_input input,
.contact_input textarea {
  padding: max(0.8vw, 8px);
  border: 1.6px solid #8F8F8F;
  border-radius: max(0.4vw, 4px);
  width: 100%;
  font-size: max(1.2vw, 16px);
  line-height: 1.4;
}

.contact_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.contact_btn::after {
  content: "";
  position: absolute;
  background-color: rgba(14, 126, 134, 0.5);
  border-radius: 100px;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.contact_btn::before {
  content: "";
  position: absolute;
  width: max(2vw, 20px);
  height: max(1.6vw, 16px);
  background-image: url(../img/contact_btn_arrow.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 51%;
  transform: translateY(-50%);
  right: max(1.2vw, 12px);
}

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

.contact_btn input {
  font-size: max(1.6vw, 18px);
  font-weight: 700;
  color: #FFF;
  padding: 1.6vw 8vw 1.8vw;
  border-radius: 100px;
  background-color: #0E7E86;
}
@media screen and (max-width: 1000px) {
  .contact_btn input {
    padding: 16px 80px 18px;
  }
}
@media screen and (max-width: 600px) {
  .contact_btn input {
    padding: 14px 72px 16px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 br {
  display: none !important;
}

/*--------------- opening ---------------*/
.opening {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(45deg, #0F1111 0%, #3E4141 50%, #0F1111 1000%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: opening 1s 2.4s forwards;
  opacity: 1;
}

.opening.opening_end {
  z-index: -100;
}

@keyframes opening {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.opening_img {
  width: auto;
  height: 90%;
  opacity: 0;
  animation: opening_img 0.6s 0.8s forwards;
}
@media screen and (max-width: 600px) {
  .opening_img {
    height: 56%;
    padding-bottom: 12vw;
  }
}

@keyframes opening_img {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------- thanks ---------------*/
.thanks {
  background-color: #F8F8F8;
}

.thanks_content {
  padding: 60px 0 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  min-height: calc(100vh - 70px);
}
@media screen and (max-width: 1400px) {
  .thanks_content {
    min-height: calc(100vh - 56px);
  }
}
@media screen and (max-width: 1000px) {
  .thanks_content {
    min-height: calc(100vh - 64px);
  }
}

.thanks_top {
  font-size: 32px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .thanks_top {
    font-size: 24px;
  }
}

.thanks_txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .thanks_txt {
    font-size: 16px;
  }
}

.thanks_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1.6px solid #0F1111;
  margin: 0 auto;
  transition: all 0.4s;
  font-weight: 500;
  font-size: 18px;
  max-width: 94%;
}
.thanks_btn:hover {
  opacity: 0.6;
}/*# sourceMappingURL=index.css.map */