@charset "UTF-8";
/* breakpoint
=============================================== */
/* フォント設定
=============================================== */
/* 可変のフォントサイズを計算
=============================================== */
/* style
=============================================== */
body {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0F0F0F;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

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

p {
  text-align: justify;
}

.inner {
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.tac {
  text-align: center;
}

.fsz-06 {
  font-size: 0.6em;
}

.fsz-08 {
  font-size: 0.8em;
}

.fsz-12 {
  font-size: 1.2em;
}

.fsz-14 {
  font-size: 1.4em;
}

.fsz-15 {
  font-size: 1.5em;
}

.fsz-16 {
  font-size: 1.6em;
}

.fsz-18 {
  font-size: 1.8em;
}

.fsz-20 {
  font-size: 2em;
}

.is-text-yellow {
  color: #FFF035;
}

.is-text-blue {
  color: #004F9F;
}

.is-text-red {
  color: #BE2E2F;
}

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

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

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

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

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

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

.js-fadein {
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.js-fadein.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-btn-shiny {
  position: relative;
  overflow: hidden;
}
.is-btn-shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  -webkit-animation: btn_animation 2.5s ease-in-out infinite;
          animation: btn_animation 2.5s ease-in-out infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.header {
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 86px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 800px) {
  .header {
    height: 60px;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__title {
  width: 260px;
}
@media screen and (max-width: 1000px) {
  .header__title {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .header__title {
    width: 160px;
  }
}
.header__title-link {
  display: block;
  width: 100%;
  height: 100%;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header__nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  width: 256px;
  height: 56px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FAE912), color-stop(50%, #F0E123), to(#E5D40A));
  background-image: linear-gradient(#FAE912 0%, #F0E123 50%, #E5D40A 100%);
  border-radius: 30px;
  -webkit-box-shadow: 2px 0 0 0 rgba(15, 15, 15, 0.1);
          box-shadow: 2px 0 0 0 rgba(15, 15, 15, 0.1);
}
.header__nav-btn .icon_contact {
  width: 28px;
  height: auto;
}
.header__nav-btn .icon_arrow {
  width: 24px;
  height: 24px;
}
.header__nav-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .header__nav-text .time {
    font-size: 12px;
  }
}
.header__nav-text .tel {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .header__nav-text .tel {
    font-size: 14px;
  }
}
.header__nav-text .is-free {
  font-size: 14px;
  font-weight: bold;
}
.header__nav-text .is-contact {
  font-size: 18px;
  font-weight: bold;
}

.fv {
  position: relative;
  padding-top: 140px;
  background: url(../img/fv_bg.webp) no-repeat center center/cover;
  z-index: 1000;
}
@media screen and (max-width: 800px) {
  .fv {
    padding-top: 80px;
  }
}
.fv__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.fv__inner {
  position: relative;
  padding-bottom: 32px;
}
.fv__inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 25%;
  aspect-ratio: 315/594;
  background: url(../img/fv_woman.webp) no-repeat bottom center/contain;
}
@media screen and (max-width: 800px) {
  .fv__inner::after {
    width: 30%;
    bottom: 137px;
    left: 40px;
  }
}
@media screen and (max-width: 600px) {
  .fv__inner::after {
    width: 35%;
    left: 20px;
    bottom: 110px;
  }
}
.fv__content {
  width: 75%;
  margin-left: auto;
  padding: 0;
}
@media screen and (max-width: 800px) {
  .fv__content {
    width: 100%;
  }
}
.fv__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .fv__title {
    gap: 3vw;
  }
}
.fv__title-head {
  font-size: 43px;
  font-weight: 900;
  color: #004F9F;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .fv__title-head {
    font-size: min(8vw, 40px);
    text-align: center;
    line-height: 1.2;
  }
}
.fv__title-head .is-small {
  margin-left: -0.85em;
  font-size: 0.5em;
  color: #0F0F0F;
}
@media screen and (max-width: 800px) {
  .fv__title-head .is-small {
    margin: 0;
  }
}
.fv__title-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.fv__title-body span {
  padding: 0.15em 0.3em 0.2em;
  display: block;
  font-size: 78px;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.64);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.64);
  background-color: #BE2E2F;
}
@media screen and (max-width: 800px) {
  .fv__title-body span {
    font-size: min(12vw, 80px);
  }
}
.fv__title-foot {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #004F9F;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .fv__title-foot {
    gap: 0;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fv__title-foot .pc {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 800px) {
  .fv__title-foot .pc {
    width: 25vw;
  }
}
.fv__title-foot .num {
  height: 95px;
  width: auto;
}
@media screen and (max-width: 800px) {
  .fv__title-foot .num {
    height: min(20vw, 90px);
  }
}
.fv__badge {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__badge li {
  width: 210px;
}
.fv__btn {
  position: relative;
  z-index: 3;
  display: block;
  margin-inline: auto;
  margin-top: 35px;
}
.fv__btn-link {
  margin-inline: auto;
  width: 100%;
  padding: 23px 35px;
  background-color: #FFF035;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .fv__btn-link {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 600px) {
  .fv__btn-link {
    padding: 16px;
  }
}
.fv__btn-link .icon_24h {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 800px) {
  .fv__btn-link .icon_24h {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 600px) {
  .fv__btn-link .icon_24h {
    width: 40px;
    height: 40px;
  }
}
.fv__btn-link .icon_arrow {
  width: 33px;
  height: 33px;
}
@media screen and (max-width: 800px) {
  .fv__btn-link .icon_arrow {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 600px) {
  .fv__btn-link .icon_arrow {
    width: 22px;
    height: 22px;
  }
}
.fv__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.fv__btn-text .sub {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.fv__btn-text .sub .icon_contact {
  width: 22px;
}
.fv__btn-text .main {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .fv__btn-text .main {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .fv__btn-text .main {
    font-size: 18px;
  }
}

.caution {
  padding: 48px 0 56px;
  background: url(../img/caution_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1000px) {
  .caution {
    padding: 36px 0 48px;
  }
}
@media screen and (max-width: 600px) {
  .caution {
    padding: 24px 0 32px;
  }
}
.caution__title {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 1000px) {
  .caution__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .caution__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .caution__title {
    font-size: 16px;
  }
}
.caution__title-thunder {
  position: relative;
  font-size: 56px;
  padding-inline: 1em;
  margin-inline: 0.5em;
}
@media screen and (max-width: 1000px) {
  .caution__title-thunder {
    font-size: 48px;
  }
}
@media screen and (max-width: 800px) {
  .caution__title-thunder {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .caution__title-thunder {
    font-size: 24px;
  }
}
.caution__title-thunder::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 0.6em;
  height: 0.6em;
  background: url(../img/icon_thunder.webp) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.caution__title-thunder::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 0.6em;
  height: 0.6em;
  background: url(../img/icon_thunder.webp) no-repeat center center/contain;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
.caution__title-marker {
  color: white;
  font-size: 48px;
  font-weight: bold;
  background-color: #BE2E2F;
  padding: 0.1em 1em;
}
@media screen and (max-width: 1000px) {
  .caution__title-marker {
    font-size: 40px;
  }
}
@media screen and (max-width: 800px) {
  .caution__title-marker {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .caution__title-marker {
    font-size: 24px;
  }
}
.caution__body {
  margin-top: 66px;
  border: 4px solid white;
  border-radius: 24px;
  padding: 48px 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .caution__body {
    margin-top: 48px;
    padding: 36px 32px;
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .caution__body {
    margin-top: 32px;
    padding: 24px 24px;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .caution__body {
    margin-top: 18px;
    font-size: 20px;
    padding: 16px 16px;
  }
}
.caution__body p {
  text-align: center;
}
.caution__body .is-marker-yellow {
  display: inline-block;
  background-color: #FFF035;
  padding: 0.1em 0.5em;
  margin-right: 0.2em;
}
.caution__question {
  width: 80%;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .caution__question {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .caution__question {
    width: 100%;
  }
}
.caution__risk {
  margin-top: 32px;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}
@media screen and (max-width: 1000px) {
  .caution__risk {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .caution__risk {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .caution__risk {
    font-size: 16px;
  }
}
.caution__risk .is-marker-black {
  display: inline-block;
  background-color: #0F0F0F;
  padding: 0.1em 0.5em;
  font-weight: normal;
}

.damage {
  position: relative;
  z-index: 0;
  padding: 120px 0 80px;
  background-color: #EAEAEA;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .damage {
    padding: 80px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .damage {
    padding: 60px 0;
  }
}
.damage__title {
  position: relative;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 40px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .damage__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .damage__title {
    font-size: 22px;
  }
}
.damage__title > span {
  background-color: #0F0F0F;
  padding: 0.1em 0.5em;
}
.damage__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -4em;
  width: 10em;
  height: 10em;
  background: url(../img/damage_image.webp) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.damage__title::after {
  position: absolute;
  content: "";
  top: 70%;
  right: -4em;
  width: 8em;
  height: 8em;
  background: url(../img/damage_image.webp) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.damage__body {
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .damage__body {
    margin-top: 60px;
  }
}
.damage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .damage__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  .damage__list {
    margin-inline: auto;
    grid-template-columns: repeat(1, 340px);
    gap: 40px 20px;
  }
}
.damage__item {
  position: relative;
  padding: 25px 25px 94px;
  border: 3px solid #BE2E2F;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .damage__item {
    padding: 20px 10px 94px;
  }
}
.damage__item span {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .damage__item span {
    font-size: 18px;
  }
}
.damage__item-image {
  position: relative;
  width: auto;
  height: 76px;
}
.damage__item-image > img {
  height: 100%;
  width: auto;
}
.damage__item-image::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 100px;
  background-color: #BE2E2F;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.damage__item-image::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 100px;
  background-color: #BE2E2F;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.damage__item-pain {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 30%);
          transform: translate(-50%, 30%);
}
.damage__item-pain > img {
  width: auto;
  height: 130px;
}

.cta01 {
  overflow: hidden;
}
.cta01__head {
  padding-block: 65px;
  background-color: #00366E;
}
@media screen and (max-width: 1000px) {
  .cta01__head {
    padding-block: 50px;
  }
}
.cta01__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta01__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .cta01__title {
    font-size: 20px;
  }
}
.cta01__title::before {
  position: absolute;
  content: "";
  width: 4em;
  aspect-ratio: 1;
  background: url(../img/cta_virus.webp) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
@media screen and (max-width: 1000px) {
  .cta01__title::before {
    width: 3em;
  }
}
@media screen and (max-width: 800px) {
  .cta01__title::before {
    width: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .cta01__title::before {
    -webkit-transform: translate(-80%, -10%);
            transform: translate(-80%, -10%);
  }
}
.cta01__title::after {
  position: absolute;
  content: "";
  width: 4em;
  aspect-ratio: 1;
  background: url(../img/cta_virus.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%) scaleX(-1);
          transform: translate(120%, -50%) scaleX(-1);
}
@media screen and (max-width: 1000px) {
  .cta01__title::after {
    width: 3em;
  }
}
@media screen and (max-width: 800px) {
  .cta01__title::after {
    width: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .cta01__title::after {
    -webkit-transform: translate(80%, -10%) scaleX(-1);
            transform: translate(80%, -10%) scaleX(-1);
  }
}
.cta01__text {
  margin-top: 16px;
  color: white;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
}
.cta01__body {
  padding: 60px 0 72px;
  background: url(../img/cta01_bg.webp) no-repeat center center/cover;
}
.cta01__message {
  font-size: 40px;
  color: white;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .cta01__message {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .cta01__message {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .cta01__message {
    font-size: 18px;
  }
}
.cta01__message img.free {
  width: 4.5em;
}
.cta01__message img.stop {
  width: 2.8em;
}
.cta01__badge {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .cta01__badge {
    margin-top: 30px;
  }
}
.cta01__btn {
  margin-top: 35px;
}
.cta01__btn-link {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 23px 35px;
  background-color: #FFF035;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .cta01__btn-link {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 600px) {
  .cta01__btn-link {
    padding: 16px;
  }
}
.cta01__btn-link .icon_24h {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 800px) {
  .cta01__btn-link .icon_24h {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 600px) {
  .cta01__btn-link .icon_24h {
    width: 40px;
    height: 40px;
  }
}
.cta01__btn-link .icon_arrow {
  width: 33px;
  height: 33px;
}
@media screen and (max-width: 800px) {
  .cta01__btn-link .icon_arrow {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 600px) {
  .cta01__btn-link .icon_arrow {
    width: 22px;
    height: 22px;
  }
}
.cta01__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cta01__btn-text .sub {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.cta01__btn-text .sub .icon_contact {
  width: 22px;
}
.cta01__btn-text .main {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cta01__btn-text .main {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .cta01__btn-text .main {
    font-size: 18px;
  }
}

.cta02 {
  padding: 80px 0;
  background-color: #004F9F;
}
@media screen and (max-width: 1200px) {
  .cta02 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1000px) {
  .cta02 {
    padding: 40px 0;
  }
}
.cta02__inner {
  max-width: 880px;
  padding-inline: 20px;
  position: relative;
}
.cta02__content {
  width: 68%;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .cta02__content {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__content {
    width: 100%;
  }
}
.cta02__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cta02__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__title {
    font-size: 25px;
  }
}
.cta02__lead {
  margin-top: 3em;
  width: 85%;
  color: white;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .cta02__lead {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__lead {
    margin-top: 2em;
  }
}
.cta02__text {
  width: 85%;
  margin-top: 1em;
  color: white;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .cta02__text {
    width: 100%;
  }
}
.cta02__btn {
  position: absolute;
  width: 55%;
  text-align: center;
  top: 0;
  right: 0;
  -webkit-transform: translateX(24%);
          transform: translateX(24%);
}
@media screen and (max-width: 1200px) {
  .cta02__btn {
    width: 50%;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__btn {
    margin-top: 32px;
    width: 100%;
    position: static;
    margin-inline: auto;
  }
}
.cta02__btn-img {
  width: 50%;
}
.cta02__btn-link {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  background-color: #FFF035;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .cta02__btn-link {
    padding: 16px;
  }
}
.cta02__btn-link .icon_24h {
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 1200px) {
  .cta02__btn-link .icon_24h {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__btn-link .icon_24h {
    width: 40px;
    height: 40px;
  }
}
.cta02__btn-link .icon_arrow {
  width: 33px;
  height: 33px;
}
@media screen and (max-width: 1200px) {
  .cta02__btn-link .icon_arrow {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__btn-link .icon_arrow {
    width: 22px;
    height: 22px;
  }
}
.cta02__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cta02__btn-text .sub {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .cta02__btn-text .sub {
    font-size: 14px;
  }
}
.cta02__btn-text .sub .icon_contact {
  width: 22px;
}
@media screen and (max-width: 1200px) {
  .cta02__btn-text .sub .icon_contact {
    width: 18px;
  }
}
.cta02__btn-text .main {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .cta02__btn-text .main {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cta02__btn-text .main {
    font-size: 18px;
  }
}
.cta02__btn-tel {
  margin-top: 12px;
  color: white;
  font-size: 14px;
  text-align: center;
}
.cta02__btn-tel .tel {
  font-size: 18px;
  font-weight: bold;
  margin-left: 1em;
}

.advantage {
  padding: 60px 0;
  background-color: #E3F1FF;
}
.advantage__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.advantage__title > span {
  background-color: #0F0F0F;
  color: white;
  font-size: 40px;
  font-weight: bold;
  padding: 0.1em 0.5em;
}
@media screen and (max-width: 1000px) {
  .advantage__title > span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__title > span {
    font-size: 24px;
  }
}
.advantage__voice {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .advantage__voice {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__voice {
    margin-top: 20px;
  }
}
.advantage__voice .img01 {
  margin-right: -20px;
}
@media screen and (max-width: 600px) {
  .advantage__voice .img01 {
    margin-right: -10px;
  }
}
.advantage__voice .img02 {
  margin-top: 7%;
  margin-left: -20px;
}
@media screen and (max-width: 600px) {
  .advantage__voice .img02 {
    margin-left: -10px;
  }
}
.advantage__text {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .advantage__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .advantage__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__text {
    font-size: 18px;
  }
}
.advantage__text-then {
  margin-top: 34px;
  font-size: 56px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .advantage__text-then {
    font-size: 40px;
  }
}
@media screen and (max-width: 800px) {
  .advantage__text-then {
    margin-top: 24px;
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__text-then {
    margin-top: 16px;
    font-size: 24px;
  }
}
.advantage__arrow {
  margin-top: 22px;
  margin-inline: auto;
  width: 30%;
  aspect-ratio: 5/1;
  background-color: #004F9F;
  -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) {
  .advantage__arrow {
    margin-top: 16px;
  }
}
.advantage__bottom {
  margin-top: 53px;
  margin-inline: auto;
  max-width: 840px;
}
@media screen and (max-width: 1000px) {
  .advantage__bottom {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__bottom {
    margin-top: 24px;
  }
}
.advantage__content {
  width: 73%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .advantage__content {
    width: 100%;
  }
}
.advantage__content-bubble {
  position: relative;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  padding: 20px;
  border-radius: 14px;
  background-color: #004F9F;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .advantage__content-bubble {
    padding: 16px;
    font-size: 16px;
  }
}
.advantage__content-bubble::after {
  position: absolute;
  content: "";
  width: 3em;
  aspect-ratio: 3/1;
  -webkit-clip-path: polygon(0 0, 100% 0, 30% 100%);
          clip-path: polygon(0 0, 100% 0, 30% 100%);
  background-color: #004F9F;
  top: 99%;
  left: 20%;
}
.advantage__content-text {
  margin-top: 32px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .advantage__content-text {
    font-size: 18px;
    text-align: center;
  }
}
.advantage__desc {
  position: relative;
  margin-top: 12px;
  padding: 38px 78px;
  background-color: white;
  border-radius: 16px;
  border: 6px solid #004F9F;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .advantage__desc {
    padding: 32px 60px;
  }
}
@media screen and (max-width: 600px) {
  .advantage__desc {
    padding: 24px;
  }
}
.advantage__desc::after {
  position: absolute;
  content: "";
  width: 25%;
  aspect-ratio: 156/180;
  background: url(../img/advantage_woman.webp) no-repeat center bottom/contain;
  bottom: 100%;
  left: 20px;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
@media screen and (max-width: 1000px) {
  .advantage__desc::after {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .advantage__desc::after {
    display: none;
  }
}
.advantage__desc-lead {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .advantage__desc-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .advantage__desc-lead {
    font-size: 18px;
  }
}
.advantage__desc-lead .is-marker-yellow {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FFF035));
  background-image: linear-gradient(transparent 70%, #FFF035 70%);
}
.advantage__desc-text {
  margin-top: 48px;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .advantage__desc-text {
    margin-top: 32px;
  }
}
@media screen and (max-width: 800px) {
  .advantage__desc-text {
    margin-top: 24px;
  }
}

.philosophy {
  padding: 80px 0;
  background-color: #033971;
}
@media screen and (max-width: 1000px) {
  .philosophy {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .philosophy {
    padding: 40px 0;
  }
}
.philosophy__title {
  position: relative;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .philosophy__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .philosophy__title {
    font-size: 24px;
  }
}
.philosophy__title::before {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/philosophy_label.webp) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.philosophy__title::after {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/philosophy_label.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.philosophy__text {
  margin-top: 32px;
  max-width: 520px;
  margin-inline: auto;
  color: white;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .philosophy__text {
    font-size: 14px;
  }
}
.philosophy__logo {
  margin-top: 52px;
  margin-inline: auto;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .philosophy__logo {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .philosophy__logo {
    width: 180px;
  }
}

.real {
  padding: 68px 0;
  background: url(../img/table_head-bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1000px) {
  .real {
    padding: 48px 0;
  }
}
@media screen and (max-width: 600px) {
  .real {
    padding: 32px 0;
  }
}
.real__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.real__text {
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .real__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .real__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .real__text {
    font-size: 18px;
  }
}
.real__text.is-bg {
  margin-block: 0.5em;
  padding: 15px 30px;
  background: url(../img/real_bg.webp) no-repeat center center/100% 100%;
}

.result {
  padding: 130px 0;
  background-color: #E3F1FF;
}
@media screen and (max-width: 1000px) {
  .result {
    padding: 80px 0;
  }
}
@media screen and (max-width: 600px) {
  .result {
    padding: 40px 0;
  }
}
.result__inner {
  max-width: 880px;
  padding-inline: 20px;
}
.result__table-wrap {
  padding: 44px 0;
  border-radius: 16px;
  background: url(../img/result_table-bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1000px) {
  .result__table-wrap {
    padding: 32px 0;
  }
}
@media screen and (max-width: 600px) {
  .result__table-wrap {
    padding: 24px 0;
  }
}
.result__title {
  background-color: #004F9F;
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
  position: relative;
  padding: 20px 60px;
}
@media screen and (max-width: 1000px) {
  .result__title {
    font-size: 24px;
    padding: 16px 40px;
  }
}
@media screen and (max-width: 600px) {
  .result__title {
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
  }
}
.result__title::after {
  position: absolute;
  content: "";
  width: 4em;
  aspect-ratio: 1/2;
  background: url(../img/result_man.webp) no-repeat center bottom/contain;
  bottom: 0;
  left: 25px;
}
@media screen and (max-width: 1000px) {
  .result__title::after {
    width: 3em;
  }
}
@media screen and (max-width: 600px) {
  .result__title::after {
    width: 2.5em;
    bottom: 100%;
  }
}
.result__table {
  margin-top: 30px;
  padding-inline: 60px;
}
@media screen and (max-width: 1000px) {
  .result__table {
    margin-top: 20px;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 600px) {
  .result__table {
    margin-top: 16px;
    padding-inline: 10px;
  }
}
.result__table-box {
  background-color: white;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 20px 40px;
}
@media screen and (max-width: 1000px) {
  .result__table-box {
    padding: 16px 32px;
  }
}
@media screen and (max-width: 600px) {
  .result__table-box {
    padding: 12px;
  }
}

.voice__head {
  background: url(../img/voice_head-bg.webp) no-repeat center center/cover;
}
.voice__head-inner {
  padding: 60px 0;
  position: relative;
  margin-inline: auto;
  max-width: 880px;
  padding-inline: 20px;
}
.voice__head-inner::after {
  position: absolute;
  content: "";
  width: 25%;
  aspect-ratio: 1/2;
  background: url(../img/voice_head-img.webp) no-repeat center bottom/contain;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-26%);
          transform: translateX(-26%);
}
@media screen and (max-width: 600px) {
  .voice__head-inner::after {
    width: 12%;
  }
}
.voice__head-text {
  width: 58%;
  color: white;
}
@media screen and (max-width: 800px) {
  .voice__head-text {
    width: 65%;
  }
}
@media screen and (max-width: 600px) {
  .voice__head-text {
    width: 100%;
  }
}
.voice__body {
  padding: 110px 0;
  background-color: #E3F1FF;
}
@media screen and (max-width: 1000px) {
  .voice__body {
    padding: 80px 0;
  }
}
@media screen and (max-width: 600px) {
  .voice__body {
    padding: 40px 0;
  }
}
.voice__body-inner {
  margin-inline: auto;
  max-width: 880px;
  padding-inline: 20px;
}
.voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 24px;
}
@media screen and (max-width: 1000px) {
  .voice__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}
@media screen and (max-width: 600px) {
  .voice__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.voice__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  background-color: white;
  padding: 30px 24px;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  gap: 12px;
}
@media screen and (max-width: 1000px) {
  .voice__item {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 600px) {
  .voice__item {
    padding: 16px 12px;
  }
}
.voice__item-label {
  color: #959595;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .voice__item-label {
    font-size: 20px;
  }
}
.voice__item-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .voice__item-title {
    font-size: 18px;
  }
}
.voice__item-text {
  margin-top: 1em;
  line-height: 1.8;
}
.voice__item-name {
  font-weight: bold;
  text-align: center;
}

.faq {
  padding: 80px 0;
}
@media screen and (max-width: 1000px) {
  .faq {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__inner {
  max-width: 880px;
  padding-inline: 20px;
}
.faq__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #004F9F;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .faq__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .faq__title {
    font-size: 24px;
  }
}
.faq__title::before {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/faq_label.webp) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.faq__title::after {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/faq_label.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.faq__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 48px;
}
@media screen and (max-width: 600px) {
  .faq__list {
    gap: 32px;
  }
}
.faq__item {
  padding: 20px 30px;
  border-radius: 11px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .faq__item {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 600px) {
  .faq__item {
    padding: 12px 16px;
  }
}
.faq__question {
  color: #004F9F;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 18px;
  border-bottom: 2px dotted #004F9F;
}
@media screen and (max-width: 800px) {
  .faq__question {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .faq__question {
    font-size: 16px;
  }
}
.faq__question > p {
  padding-left: 60px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .faq__question > p {
    padding-left: 48px;
  }
}
.faq__question > p::before {
  position: absolute;
  content: "";
  width: 42px;
  aspect-ratio: 1;
  background: url(../img/icon_q.webp) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .faq__question > p::before {
    width: 36px;
  }
}
.faq__answer {
  padding-top: 24px;
  color: #0F0F0F;
}
.faq__answer > p {
  padding-left: 60px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .faq__answer > p {
    padding-left: 48px;
  }
}
.faq__answer > p::before {
  position: absolute;
  content: "";
  width: 42px;
  aspect-ratio: 1;
  background: url(../img/icon_a.webp) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .faq__answer > p::before {
    width: 36px;
  }
}

.reason {
  padding: 80px 0;
  background-color: #E3F1FF;
}
@media screen and (max-width: 1000px) {
  .reason {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .reason {
    padding: 40px 0 20px;
  }
}
.reason__inner {
  max-width: 880px;
  padding-inline: 20px;
}
.reason__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #004F9F;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .reason__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .reason__title {
    font-size: 24px;
  }
}
.reason__title::before {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/reason_label.webp) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.reason__title::after {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/reason_label.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.reason__item {
  padding-block: 48px;
}
.reason__item:not(:last-child) {
  border-bottom: 2px solid white;
}
.reason__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.reason__item-num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 67px;
}
@media screen and (max-width: 1000px) {
  .reason__item-num {
    width: 42px;
    padding-bottom: 0.3em;
  }
}
.reason__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .reason__item-text {
    gap: 0;
  }
}
.reason__item-text .en {
  color: rgba(0, 79, 159, 0.16);
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .reason__item-text .en {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .reason__item-text .en {
    font-size: 16px;
  }
}
.reason__item-text .ja {
  color: #004F9F;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .reason__item-text .ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .reason__item-text .ja {
    font-size: 24px;
  }
}
.reason__item-desc {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .reason__item-desc {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.reason__item-desc img {
  width: 33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .reason__item-desc img {
    width: 100%;
  }
}
.reason__item-desc .lead {
  color: #004F9F;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .reason__item-desc .lead {
    font-size: 20px;
  }
}

.step {
  padding: 80px 0;
  background-color: #4174A8;
}
@media screen and (max-width: 1000px) {
  .step {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .step {
    padding: 40px 0;
  }
}
.step__inner {
  max-width: 880px;
  padding-inline: 20px;
}
.step__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.step__title .sub {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .step__title .sub {
    font-size: 20px;
  }
}
.step__title .main {
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .step__title .main {
    font-size: 24px;
  }
}
.step__title .dot {
  position: relative;
}
.step__title .dot::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #EFCE38;
  border-radius: 50%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.step__title .num {
  width: 42px;
  padding-bottom: 0.25em;
}
.step__body {
  margin-top: 70px;
}
@media screen and (max-width: 1000px) {
  .step__body {
    margin-top: 50px;
  }
}
@media screen and (max-width: 800px) {
  .step__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.step__label-list {
  margin-inline: auto;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .step__label-list {
    display: none;
  }
}
.step__label-list .num {
  width: 84px;
}
.step__label-list .line {
  width: 120px;
}
.step__list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 800px) {
  .step__list {
    margin-inline: auto;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.step__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 12px;
  position: relative;
}
.step__item:not(:last-child) {
  border-right: 1px solid white;
}
@media screen and (max-width: 800px) {
  .step__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid white;
  }
}
@media screen and (max-width: 800px) {
  .step__item {
    padding: 24px 12px;
  }
}
@media screen and (max-width: 800px) {
  .step__item::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    top: 24px;
    left: 0;
  }
  .step__item:nth-child(1)::after {
    background: url(../img/step_label_1.webp) no-repeat center center/contain;
  }
  .step__item:nth-child(2)::after {
    background: url(../img/step_label_2.webp) no-repeat center center/contain;
  }
  .step__item:nth-child(3):after {
    background: url(../img/step_label_3.webp) no-repeat center center/contain;
  }
}
.step__item img {
  width: 110px;
}
.step__item h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .step__item h3 {
    font-size: 20px;
  }
}
.step__item p {
  color: white;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 600px) {
  .step__item p {
    font-size: 14px;
  }
}
.step__item p .is-marker-yellow {
  color: #0F0F0F;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 20px;
  font-weight: bold;
  background-color: #FFF035;
  padding: 0.1em 0.5em;
  margin-bottom: 0.1em;
}

.contact {
  padding: 80px 0;
  background-color: #E3F1FF;
}
.contact__inner {
  max-width: 600px;
}
.contact__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #004F9F;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .contact__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .contact__title {
    font-size: 24px;
  }
}
.contact__title::before {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/contact_label.webp) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.contact__title::after {
  position: absolute;
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background: url(../img/contact_label.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.contact__body {
  margin-top: 40px;
}

.footer {
  background-color: #011F3E;
  padding: 16px;
}
.footer__copyright {
  color: white;
  text-align: center;
}/*# sourceMappingURL=style.css.map */