@charset "UTF-8";

@import url(/style/common.css);

h2 span {
  color: var(--text-blue);
}

.image_border {
  border: 8px solid var(--white);
  border: 2px solid var(--separator);
  border-radius: 8px;
}

.mv .message {
  font-size: var(--font-size-mv);
  font-weight: bold;
  text-align-last: left;
  letter-spacing: .1rem;
  line-height: 1.3;
}

.mv .message .mv_text_middle {
  font-size: 26px;
}

.mv .message span {
  background: var(--white);
  display: inline-block;
  padding: var(--padding-card);
}

.mv .message span:first-child {
  margin-bottom: 15px;
}

.mv .message span:nth-child(n+2) {
  margin-bottom: 40px;
}

.mv {
  background: var(--product-blue);
  background-image: url(/img/service/bg.png);
  background-size: cover;
  height: 506px;
}

.mv .mv_container {
  height: 100%;
  align-items: center;
  min-width: 450px;
  white-space: nowrap;
  position: relative;
  padding: 0 var(--margin-contents);
}

.mv .pr {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 185px;
  height: 185px;
  background: var(--cv_red);
  color: var(--white);
  border-radius: 50%;
  font-size: var(--font-size-large);
  font-weight: bold;
  text-align: center;
}

.cv_button {
  background-color: var(--cv_red);
}

.about p {
  width: 50%;
  margin: 0 0 var(--margin-xlarge);
}

.about img {
  width: 100%;
  max-width: 960px;
}

.feature {
  margin-top: -60px;
}

.feature ul {
  gap: var(--margin-xsmall);
}

.feature ul li {
  width: 33%;
  background: var(--white);
  padding: var(--padding-card);
  border-radius: 4px;
}

.feature ul li img {
  width: 100%;
  
}

.feature ul li dt {
  margin: var(--margin-small) 0 var(--margin-contents);
}

.data ul {
  gap: var(--margin-middle);
  justify-content: space-between;
}

.data ul li {
  width: 42%;
}

.data ul li img {
  width: 100%;
}

.data ul li p {
  margin: var(--margin-small) 0 var(--margin-contents);
}

.price p {
  text-align: center;
}

.faq .faq-container {
  gap: var(--margin-middle);
}

.step ul {
  counter-reset: count;
  gap: 24px 0;
}

.step_list_item {
  position: relative;
}

.step_list_item:nth-child(n+2):before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: var(--cv_red);
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.step_list_item .list_count {
  counter-increment: count;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  font-size: var(--font-size-xlarge);
  font-weight: bold;
  z-index: 2;
  background-color: var(--cv_red);
}

.step_list_item .list_count::before {
  position: relative;
  font-size: var(--font-size-xlarge);
  content: counter(count);
}

.step .step_list_item .list_container {
  justify-content: space-between;
}

.step .step_list_item  .list_content {
  width: 40%;
  min-width: 350px;
}

.step .step_list_item  .list_content .step_title {
  margin: 0 0 var(--margin-small);
}

.step_list_item img {
  width: 42%;
}

.item_02 .flex, .item_04 .flex {
 flex-direction: row-reverse; 
}

.contact {
  background: var(--product-blue);
}

.trial {
  text-align: center;
  max-width: 420px;
  border: 2px solid var(--cv_red);
  border-radius: 4px;
  padding: var(--padding-card);
}

.trial p:first-child {
  color: var(--cv_red);
  margin-bottom: var(--margin-contents);
}

@media screen and (max-width: 769px) { 
  .mv {
    height: auto;
  }

  .mv .mv_container {
    flex-direction: column-reverse;
    padding: var(--margin-xlarge) 0;
    min-width: min-content;
  }

  .mv .message_container {
    width: 95%;
  }

  .mv .message span {
    width: 100%;
    max-width: fit-content;
  }

  .mv picture {
    width: 100%;
    text-align: center;
    margin-bottom: var(--margin-large);
  }

  .mv picture img {
    width: 90%;
  }

  .mv .pr {
    width: 120px;
    height: 120px;
    top: 16px;
    font-size: var(--font-size-middle);
  }

  .about p {
    width: 100%;
  }

  .feature ul {
    flex-direction: column;
  }

  .feature ul li {
    width: 100%;
  }

  .step ul {
    gap: var(--margin-xlarge) 24px;
  }

  .step .list_container {
    flex-direction: column;
    width: 84%;
    align-items: flex-start;
  }

  .step_list_item {
    display: flex;
    justify-content: space-between;
  }

  .step_list_item .list_count {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
  
  .step_list_item img {
    width: 100%;
  }

  .step_list_item .list_count {
    position: relative;
    left: 20px;
    margin-top: 30px;
  }

  .step_list_item:nth-child(n+2):before {
    left: 20px;
    top: -123%;
    height: 123%;
  }

  .step .step_list_item .list_content .step_title {
    margin-top: var(--margin-middle);
  }
  .step .step_list_item .list_content {
    min-width: 100%;
  }

  .data ul {
    flex-direction: column;
    gap: var(--margin-xlarge);
  }

  .data ul li {
    width: 100%;
  }

  .trial {
    margin-bottom: var(--margin-middle);
  }

  .contact-bg {
    height: 1275px;
  }
}