@charset "UTF-8";
/* ==========================================================
  共通設定（Global Styles）
========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@300;500&display=swap");
:root {
  --color-primary: #C61032;
  --color-block: #111111;
  --color-gray: #f7f7f7;
  --color-pink: #FFF5F7;
  --border-rounded-full: calc(1px / 0);
  --z-index-top: calc(infinity);
  --z-index-header: 10000;
}

*[data-isolate=true] {
  isolation: isolate;
}
*[data-visible=pc] {
  display: none;
}
@media (min-width: 960px) {
  *[data-visible=pc] {
    display: block;
  }
}
*[data-visible=sp] {
  display: block;
}
@media (min-width: 960px) {
  *[data-visible=sp] {
    display: none;
  }
}
*[data-position=relative] {
  position: relative;
}
*[data-position=absolute] {
  position: absolute;
}
*[data-position=fixed] {
  position: fixed;
}
*[data-position=static] {
  position: static;
}
*[data-position=sticky] {
  position: -webkit-sticky;
  position: sticky;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  background-color: white;
  color: var(--color-block);
  font-family: "Noto Sans JP", sans-serif;
}

@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
.zoom-wrapper {
  --_min-viewport-width: 960px;
  --_max-viewport-width: 1120px;
  --_zoom-value: clamp(
    tan(atan2(var(--_min-viewport-width), var(--_max-viewport-width))),
    tan(atan2(var(--zoom-factor), var(--_max-viewport-width))),
    1
  );
  --zoom-factor: clamp(
    var(--_min-viewport-width),
    100dvi,
    var(--_max-viewport-width)
  );
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial;
}

.wrap {
  width: 100%;
  padding-inline: calc((48.8549618321 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .wrap {
    padding-inline: 20px;
  }
}

.container {
  width: 100%;
  margin-inline: auto;
}
.container[data-width="1400"] {
  max-width: 1400px;
}
.container[data-width="1120"] {
  max-width: 1120px;
}

.section-heading {
  display: block grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc((14.6564885496 / 960) * 100vw);
  -webkit-margin-after: calc((80.6106870229 / 960) * 100vw);
          margin-block-end: calc((80.6106870229 / 960) * 100vw);
  font-size: calc((63.5114503817 / 960) * 100vw);
  font-weight: 700;
  text-align: center;
  line-height: 140%;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .section-heading {
    gap: 8px;
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
    font-size: 48px;
  }
}
.section-heading em {
  font-style: normal;
  color: var(--color-primary);
}
.section-heading img {
  margin-inline: auto;
  width: calc((36.641221374 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .section-heading img {
    width: 26px;
  }
}
.section-heading sup {
  inset-block-start: calc((-19.5419847328 / 960) * 100vw);
  inset-inline-end: calc((-9.7709923664 / 960) * 100vw);
  font-size: calc((17.0992366412 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .section-heading sup {
    inset-block-start: -14px;
    inset-inline-end: -4px;
    font-size: 10px;
  }
}

/* ==========================================================
  ページ設定（Page Styles）
========================================================== */
:root {
  --header-height: calc((156.3358778626 / 960) * 100vw);
  --bottomcta-height: calc((156.3358778626 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  :root {
    --header-height: 93px;
  }
}

main {
  margin-top: calc(0 - var(--header-height));
}

.header {
  top: 0;
  z-index: var(--z-index-header);
  display: block grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-inline: calc((48.8549618321 / 960) * 100vw);
  background-color: white;
}
@media print, screen and (min-width: 960px) {
  .header {
    background-color: transparent;
    padding-inline: 40px;
  }
}
.header .header__inner {
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header__logo {
  max-width: calc((359.0839694656 / 960) * 100vw);
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .header .header__logo {
    max-width: 184px;
  }
}
.header .header__download {
  --z-index: 0;
  position: relative;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
}
.header .header__download .header__download-lead {
  display: block grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  inset-block-start: -18px;
  inset-inline: 0;
  margin-inline: auto;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  max-width: 180px;
  width: 100%;
  height: 22px;
  line-height: 1;
  z-index: calc(var(--z-index) + 1);
  background-color: var(--color-primary);
  border-radius: var(--border-rounded-full);
  letter-spacing: 0.02em;
}
.header .header__download .header__download-lead::after {
  position: absolute;
  inset-block-end: -6px;
  inset-inline: 0;
  margin-inline: auto;
  display: block;
  content: "";
  --size: 8px;
  width: var(--size);
  height: calc(var(--size) / 2 * 1.7320508076);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--color-primary);
  z-index: calc(var(--z-index) - 1);
}
.header .header__download a {
  display: block flex;
  width: 220px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 12px;
  color: var(--color-primary);
  border-radius: var(--border-rounded-full);
  border: solid 1px var(--color-primary);
  background-color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header .header__download a:hover {
  background-color: rgba(198, 16, 50, 0.1);
}
.header .header__download a img {
  display: block;
  max-width: 16px;
  width: 100%;
  aspect-ratio: 1;
}
.header .header__spcontainer {
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  height: 100%;
}
.header .header__spbtn {
  display: block grid;
  place-content: center;
  width: calc((117.2519083969 / 960) * 100vw);
  height: calc((117.2519083969 / 960) * 100vw);
  background-color: var(--color-primary);
  border-radius: var(--border-rounded-full);
  border: none;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.header .header__spbtn .header__spbtn-container {
  position: relative;
  display: block;
  width: calc((58.6259541985 / 960) * 100vw);
  height: calc((4.8854961832 / 960) * 100vw);
}
.header .header__spbtn .header__spbtn-container > span:nth-child(1) {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  border-radius: 4px;
}
.header .header__spbtn .header__spbtn-container > span:nth-child(2) {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transform: translateY(calc((-14.6564885496 / 960) * 100vw)) rotate(0deg);
          transform: translateY(calc((-14.6564885496 / 960) * 100vw)) rotate(0deg);
  border-radius: 4px;
}
.header .header__spbtn .header__spbtn-container > span:nth-child(3) {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transform: translateY(calc((14.6564885496 / 960) * 100vw)) rotate(0deg);
          transform: translateY(calc((14.6564885496 / 960) * 100vw)) rotate(0deg);
  border-radius: 4px;
}

body.is-spmenuActive .header .header__spbtn .header__spbtn-container > span:nth-child(1) {
  opacity: 0;
}
body.is-spmenuActive .header .header__spbtn .header__spbtn-container > span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
body.is-spmenuActive .header .header__spbtn .header__spbtn-container > span:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.no1__list {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 16px;
}
@media print, screen and (min-width: 960px) {
  .no1__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.no1__list .no1__item {
  position: relative;
}
.no1__list .no1__item:first-child {
  grid-column: 1/-1;
  width: 50%;
  margin: auto;
}
@media print, screen and (min-width: 960px) {
  .no1__list .no1__item:first-child {
    grid-column: auto;
    width: auto;
  }
}
.no1__list .no1__item:focus:after {
  content: attr(aria-label);
  display: block;
  position: absolute;
  display: block;
  padding: calc((24.427480916 / 960) * 100vw);
  width: 120%;
  left: -10%;
  font-size: calc((29.3129770992 / 960) * 100vw);
  line-height: 1.3;
  background: #333;
  color: #fff;
  border-radius: calc((14.6564885496 / 960) * 100vw);
  margin-top: calc((34.1984732824 / 960) * 100vw);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  z-index: calc(var(--z-index-header) - 10);
}
@media print, screen and (min-width: 960px) {
  .no1__list .no1__item:focus:after {
    display: none;
  }
}
.no1__list .no1__item:focus:before {
  --size: calc((34.1984732824 / 960) * 100vw);
  content: "";
  position: absolute;
  bottom: -16%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: var(--size);
  height: calc(var(--size) / 2 * 1.7320508076);
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #333;
}
@media print, screen and (min-width: 960px) {
  .no1__list .no1__item:focus:before {
    display: none;
  }
}

.spmenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--z-index-header) - 1);
  width: 100%;
  height: 100svh;
  background-color: var(--color-gray);
  -webkit-padding-after: calc((97.7099236641 / 960) * 100vw);
          padding-block-end: calc((97.7099236641 / 960) * 100vw);
  overflow-y: scroll;
}
@media print, screen and (min-width: 960px) {
  .spmenu {
    display: none;
  }
}
.spmenu .spmenu__list {
  margin-block: calc(calc((78.1679389313 / 960) * 100vw) + var(--header-height)) calc((78.1679389313 / 960) * 100vw);
  list-style: none;
}
.spmenu .spmenu__list .spmenu__list-item {
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: solid 1px #C8C8C8;
}
.spmenu .spmenu__list .spmenu__list-item a {
  display: block;
  font-size: calc((39.0839694656 / 960) * 100vw);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding-block: calc((63.5114503817 / 960) * 100vw);
  width: 100%;
}
.spmenu .spmenu__list .spmenu__list-item a:hover {
  color: var(--color-primary);
}
.spmenu .spmenu__btn {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc((58.6259541985 / 960) * 100vw);
}
.spmenu .spmenu__btn a {
  width: 100%;
}

.bottomcta {
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((29.3129770992 / 960) * 100vw);
  background-color: rgba(0, 0, 0, 0.85);
  height: var(--bottomcta-height);
  padding-inline: calc((24.427480916 / 960) * 100vw);
  z-index: calc(var(--z-index-header) - 2);
  left: 0;
  bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .bottomcta {
    display: none;
  }
}
.bottomcta a {
  width: 100%;
}

.fv {
  --z-index: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-gray)), color-stop(75%, var(--color-gray)), color-stop(80%, white), to(white));
  background: -webkit-linear-gradient(top, var(--color-gray) 0%, var(--color-gray) 75%, white 80%, white 100%);
  background: linear-gradient(to bottom, var(--color-gray) 0%, var(--color-gray) 75%, white 80%, white 100%);
  height: 1054px;
  margin-top: calc(0px - var(--header-height));
  margin-bottom: calc((83.0534351145 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .fv {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--color-gray)), color-stop(77.5%, var(--color-gray)), color-stop(77.6%, white), to(white));
    background: -webkit-linear-gradient(top, var(--color-gray) 0%, var(--color-gray) 77.5%, white 77.6%, white 100%);
    background: linear-gradient(to bottom, var(--color-gray) 0%, var(--color-gray) 77.5%, white 77.6%, white 100%);
    margin-bottom: 24px;
  }
}
.fv .fv__bg {
  max-width: 100%;
  width: 100%;
  inset-block: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin-inline: 0;
  z-index: var(--z-index);
}
@media print, screen and (min-width: 960px) {
  .fv .fv__bg {
    max-width: 719px;
    margin-inline: auto;
    inset-inline-start: 94px;
  }
}
.fv .fv__bg img {
  height: 88%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: calc((63.5114503817 / 960) * 100vw) var(--header-height);
     object-position: calc((63.5114503817 / 960) * 100vw) var(--header-height);
}
@media print, screen and (min-width: 960px) {
  .fv .fv__bg img {
    height: 72.5%;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 0 0;
       object-position: 0 0;
  }
}
.fv .fv__inner {
  display: block flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 36px;
  padding-top: calc((229.6183206107 / 960) * 100vw);
  padding-left: 0;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__inner {
    padding-top: 110px;
  }
}
@media print, screen and (min-width: 1400px) {
  .fv .fv__inner {
    gap: 36px;
    padding-left: 32px;
  }
}
.fv .fv__info {
  max-width: 100%;
  width: 100%;
  padding-top: 0;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__info {
    max-width: 672px;
  }
}
.fv .fv__info > picture img {
  margin-top: calc((-620.4580152672 / 960) * 100vw);
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__info > picture img {
    margin-top: -17vw;
    width: 53vw;
  }
}
@media print, screen and (min-width: 1400px) {
  .fv .fv__info > picture img {
    margin-top: -225px;
    width: 100%;
  }
}
.fv .fv__text {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__text {
    max-width: 528px;
    margin-left: 30px;
  }
}
.fv .fv__title {
  margin-bottom: calc((53.7404580153 / 960) * 100vw);
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__title {
    margin-bottom: 34px;
    width: 40vw;
  }
}
@media print, screen and (min-width: 1400px) {
  .fv .fv__title {
    width: 100%;
  }
}
.fv .fv__no1 {
  width: 72vw;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__no1 {
    width: 100%;
  }
}
.fv .fv__no1 .fv__no1-lead {
  margin-bottom: 16px;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__no1 .fv__no1-lead {
    width: 40vw;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .fv .fv__no1 .no1__list {
    width: 40vw;
  }
}
@media print, screen and (min-width: 1400px) {
  .fv .fv__no1 .no1__list {
    width: 100%;
  }
}
.fv .fv__info-notes {
  list-style: none;
  container: note-counter;
  font-size: calc((24.427480916 / 960) * 100vw);
  letter-spacing: 0.02em;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc((9.7709923664 / 960) * 100vw);
  width: 84%;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__info-notes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    gap: 4px;
    width: 100%;
  }
}
@media print, screen and (min-width: 1400px) {
  .fv .fv__info-notes {
    width: 100%;
  }
}
.fv .fv__info-notes li {
  display: inline;
  position: relative;
  padding-left: 2em;
  counter-increment: note-counter;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__info-notes li {
    padding-left: 25px;
    display: block;
  }
}
.fv .fv__info-notes li::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  content: "※" counter(note-counter);
}
@media print, screen and (min-width: 960px) {
  .fv .fv__info-notes li::before {
    inset-inline-start: 6px;
  }
}
.fv .fv__form {
  display: none;
  max-width: 518px;
  width: 100%;
  padding-block: 20px 0;
  padding-inline: 20px 10px;
  border-radius: 8px;
  background-color: white;
  -webkit-box-shadow: 2px 2px 10px rgba(54, 47, 48, 0.25);
          box-shadow: 2px 2px 10px rgba(54, 47, 48, 0.25);
  z-index: calc(var(--z-index) + 1);
  min-height: 870px;
}
@media print, screen and (min-width: 960px) {
  .fv .fv__form {
    display: block;
  }
}
.fv .fv__form .fv__form-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}
.fv .fv__form .fv__notes {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}

.logo .logo__heading {
  font-size: calc((39.0839694656 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  margin-bottom: calc((58.6259541985 / 960) * 100vw);
  line-height: 175%;
}
@media print, screen and (min-width: 960px) {
  .logo .logo__heading {
    font-size: 24px;
    margin-bottom: 37px;
  }
}
.logo .logo__container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.logo .logo__container[data-slider=true] .logo__slider {
  gap: 0 20px;
  -webkit-animation: slide 40s linear infinite;
          animation: slide 40s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.logo .logo__container[data-slider=false] .logo__slider {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  width: 100%;
  padding: 0 20px;
}
.logo .logo__slider {
  display: block flex;
  list-style: none;
}
.logo .logo__slider li img {
  width: auto;
  height: 64px;
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.logo .logo__scroll .logo__scroll-wrap {
  overflow: hidden;
}
.logo .logo__scroll .logo__scroll-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
          animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
.logo .logo__scroll .logo__scroll-list img {
  max-width: 220%;
}
@media print, screen and (min-width: 960px) {
  .logo .logo__scroll .logo__scroll-list img {
    max-width: 100%;
  }
}

.reason {
  padding-block: calc((195.4198473282 / 960) * 100vw) calc((141.679389313 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .reason {
    padding-block: 110px 80px;
  }
}
.reason .reason__card {
  display: block grid;
  grid-template-columns: 1fr;
  gap: calc((63.5114503817 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 32px;
  }
}
.reason .reason__card .reason__card-item {
  display: block grid;
  gap: calc((39.0839694656 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-item {
    gap: 24px;
  }
}
.reason .reason__card .reason__card-title {
  color: var(--color-block);
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((29.3129770992 / 960) * 100vw);
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin-bottom: calc((19.5419847328 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-title {
    gap: 12px;
    margin-bottom: 16px;
  }
}
.reason .reason__card .reason__card-title > *:nth-child(1) {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: calc((117.2519083969 / 960) * 100vw);
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-title > *:nth-child(1) {
    font-size: 60px;
  }
}
.reason .reason__card .reason__card-title > *:nth-child(1)::before {
  display: block;
  content: "REASON";
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-title > *:nth-child(1)::before {
    font-size: 16px;
  }
}
.reason .reason__card .reason__card-title > *:nth-child(2) {
  font-size: calc((58.6259541985 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-title > *:nth-child(2) {
    font-size: 30px;
  }
}
.reason .reason__card .reason__card-text {
  font-size: calc((34.1984732824 / 960) * 100vw);
  letter-spacing: 0.02em;
  line-height: 175%;
  padding-inline: calc((29.3129770992 / 960) * 100vw);
  padding-block: calc((29.3129770992 / 960) * 100vw);
  -webkit-box-shadow: 0px calc((4.8854961832 / 960) * 100vw) calc((29.3129770992 / 960) * 100vw) rgba(0, 0, 0, 0.2);
          box-shadow: 0px calc((4.8854961832 / 960) * 100vw) calc((29.3129770992 / 960) * 100vw) rgba(0, 0, 0, 0.2);
  background-color: var(--color-gray);
}
@media print, screen and (min-width: 960px) {
  .reason .reason__card .reason__card-text {
    font-size: 16px;
    line-height: 28px;
    padding-inline: 12px;
    padding-block: 12px;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  }
}
.reason .reason__card .reason__card-text > em {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 700;
}

.problem {
  padding-block: calc((127.0229007634 / 960) * 100vw);
  background-color: var(--color-gray);
}
@media print, screen and (min-width: 960px) {
  .problem {
    padding-block: 80px;
  }
}
.problem .problem__list {
  display: block grid;
  grid-template-columns: 1fr;
  gap: calc((43.9694656489 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .problem .problem__list {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 32px;
  }
}
.problem .problem__list .problem__item {
  display: block flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((39.0839694656 / 960) * 100vw);
  margin-inline: auto;
  -webkit-padding-start: calc((73.2824427481 / 960) * 100vw);
          padding-inline-start: calc((73.2824427481 / 960) * 100vw);
  -webkit-padding-before: 0;
          padding-block-start: 0;
  width: calc((764.5801526718 / 960) * 100vw);
  height: calc((200.3053435115 / 960) * 100vw);
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-rounded-full);
  font-weight: 700;
  font-size: calc((39.0839694656 / 960) * 100vw);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: left;
}
@media print, screen and (min-width: 960px) {
  .problem .problem__list .problem__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding-inline: 0;
    -webkit-padding-before: 28px;
            padding-block-start: 28px;
    width: 100%;
    height: 212px;
    font-size: 26px;
    text-align: center;
  }
}
.problem .problem__list .problem__item:nth-child(odd) {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media print, screen and (min-width: 960px) {
  .problem .problem__list .problem__item:nth-child(odd) {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}
.problem .problem__list .problem__item em {
  color: var(--color-primary);
  font-style: normal;
}
.problem .problem__list .problem__item img {
  width: calc((63.5114503817 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .problem .problem__list .problem__item img {
    width: 32px;
  }
}
.problem .problem__img {
  display: block;
  -webkit-margin-before: calc((53.7404580153 / 960) * 100vw);
          margin-block-start: calc((53.7404580153 / 960) * 100vw);
  margin-inline: auto;
  max-width: 90%;
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .problem .problem__img {
    -webkit-margin-before: -50px;
            margin-block-start: -50px;
    max-width: 450px;
  }
}

.point {
  padding-block: calc((136.7938931298 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point {
    padding-block: 80px;
  }
}
.point .point__heading {
  display: inline-block;
  -webkit-margin-after: calc((78.1679389313 / 960) * 100vw);
          margin-block-end: calc((78.1679389313 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point .point__heading {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
}
.point .point__heading .section-heading {
  -webkit-margin-after: calc((29.3129770992 / 960) * 100vw);
          margin-block-end: calc((29.3129770992 / 960) * 100vw);
  font-size: calc((56.1832061069 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point .point__heading .section-heading {
    -webkit-margin-after: 12px;
            margin-block-end: 12px;
    font-size: 48px;
  }
}
.point .point__heading .point__heading-notes {
  font-size: calc((29.3129770992 / 960) * 100vw);
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-margin-before: calc((39.0839694656 / 960) * 100vw);
          margin-block-start: calc((39.0839694656 / 960) * 100vw);
  -webkit-margin-after: calc((87.9389312977 / 960) * 100vw);
          margin-block-end: calc((87.9389312977 / 960) * 100vw);
  text-align: left;
}
@media print, screen and (min-width: 960px) {
  .point .point__heading .point__heading-notes {
    font-size: 12px;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 36px;
            margin-block-end: 36px;
    text-align: right;
  }
}
.point .point__heading .point__heading-sub {
  font-size: calc((39.0839694656 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.75;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .point .point__heading .point__heading-sub {
    font-size: 18px;
  }
}
.point .point__list {
  list-style: none;
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc((48.8549618321 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point .point__list {
    gap: 70px;
  }
}
.point .point__item {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((102.5954198473 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point .point__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 62px;
  }
}
.point .point__item:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media print, screen and (min-width: 960px) {
  .point .point__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
}
.point .point__item .point__item-title {
  display: block flex;
  color: var(--color-block);
  margin-bottom: calc((43.9694656489 / 960) * 100vw);
  gap: calc((29.3129770992 / 960) * 100vw);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }
}
.point .point__item .point__item-title *:nth-child(1) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: calc((97.7099236641 / 960) * 100vw);
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-title *:nth-child(1) {
    font-size: 56px;
  }
}
.point .point__item .point__item-title *:nth-child(1)::before {
  display: block;
  content: "POINT";
  font-size: calc((34.1984732824 / 960) * 100vw);
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-title *:nth-child(1)::before {
    font-size: 20px;
  }
}
.point .point__item .point__item-title *:nth-child(2) {
  font-size: calc((48.8549618321 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-wrap: auto;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-title *:nth-child(2) {
    font-size: 32px;
  }
}
.point .point__item .point__item-desc {
  font-size: calc((34.1984732824 / 960) * 100vw);
  letter-spacing: 0.02em;
  line-height: 175%;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-desc {
    font-size: 18px;
  }
}
.point .point__item .point__item-desc > em {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 700;
}
.point .point__item .point__item-desc sup {
  font-size: calc((19.5419847328 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-desc sup {
    font-size: 8px;
  }
}
.point .point__item .point__item-notes {
  position: relative;
  font-size: calc((29.3129770992 / 960) * 100vw);
  letter-spacing: 0.02em;
  line-height: 175%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-padding-start: 1.1em;
          padding-inline-start: 1.1em;
}
@media print, screen and (min-width: 960px) {
  .point .point__item .point__item-notes {
    font-size: 14px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    -webkit-padding-start: 16px;
            padding-inline-start: 16px;
  }
}
.point .point__item .point__item-notes::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.cta {
  --z-index: 1;
  background-color: var(--color-primary);
  padding-block: calc((97.7099236641 / 960) * 100vw) calc((136.7938931298 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .cta {
    padding-block: 80px;
  }
}
.cta .cta__inner {
  position: relative;
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: calc(var(--z-index) + 1);
}
.cta .cta__bg {
  position: absolute;
  max-width: 100%;
  top: unset;
  bottom: calc((-195.4198473282 / 960) * 100vw);
  right: calc((-48.8549618321 / 960) * 100vw);
  margin: unset;
  z-index: var(--z-index);
  opacity: 0.2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: calc((48.8549618321 / 960) * 100vw);
     object-position: calc((48.8549618321 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .cta .cta__bg {
    max-width: auto;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.4;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 0;
       object-position: 0;
  }
}
.cta .cta__title {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-inline: auto;
  font-size: calc((48.8549618321 / 960) * 100vw);
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 175%;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .cta .cta__title {
    font-size: 26px;
    letter-spacing: 0;
  }
}
.cta .cta__title::before, .cta .cta__title::after {
  position: absolute;
  display: block;
  width: calc((4.8854961832 / 960) * 100vw);
  height: calc((136.7938931298 / 960) * 100vw);
  content: "";
  background-color: white;
}
@media print, screen and (min-width: 960px) {
  .cta .cta__title::before, .cta .cta__title::after {
    width: 2px;
    height: 80px;
  }
}
.cta .cta__title::before {
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
  top: calc((17.0992366412 / 960) * 100vw);
  left: calc((-46.4122137405 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .cta .cta__title::before {
    top: 7px;
    left: -24px;
  }
}
.cta .cta__title::after {
  -webkit-transform: rotate(-166deg);
          transform: rotate(-166deg);
  top: calc((17.0992366412 / 960) * 100vw);
  right: calc((-46.4122137405 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .cta .cta__title::after {
    top: 7px;
    right: -24px;
  }
}
.cta .cta__btns {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((58.6259541985 / 960) * 100vw);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  -webkit-margin-before: calc((78.1679389313 / 960) * 100vw);
          margin-block-start: calc((78.1679389313 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .cta .cta__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 56px;
    max-width: 970px;
    -webkit-margin-before: 66px;
            margin-block-start: 66px;
  }
}

.authority {
  padding-block: calc((136.7938931298 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .authority {
    padding-block: 56px;
  }
}
.authority .authority__inner {
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 960px) {
  .authority .authority__inner {
    max-width: 928px;
  }
}
.authority .authority__img {
  -webkit-margin-after: calc((24.427480916 / 960) * 100vw);
          margin-block-end: calc((24.427480916 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .authority .authority__img {
    -webkit-margin-after: 14px;
            margin-block-end: 14px;
  }
}
.authority .authority__img img {
  width: 100%;
}
.authority .authority__notes {
  list-style: none;
  container: note-counter;
  font-size: calc((29.3129770992 / 960) * 100vw);
  letter-spacing: 0.02em;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media print, screen and (min-width: 960px) {
  .authority .authority__notes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    gap: 4px;
  }
}
.authority .authority__notes li {
  display: inline;
  position: relative;
  padding-left: 1.8em;
  counter-increment: note-counter;
}
@media print, screen and (min-width: 960px) {
  .authority .authority__notes li {
    display: block;
    padding-left: 26px;
  }
}
.authority .authority__notes li::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  content: "※" counter(note-counter);
}

.voice {
  padding-block: calc((136.7938931298 / 960) * 100vw);
  background-color: var(--color-gray);
}
@media print, screen and (min-width: 960px) {
  .voice {
    padding-block: 80px;
  }
}
.voice .section-heading {
  -webkit-margin-after: calc((43.9694656489 / 960) * 100vw);
          margin-block-end: calc((43.9694656489 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .section-heading {
    -webkit-margin-after: 50px;
            margin-block-end: 50px;
  }
}
.voice .voice__container {
  max-width: 1154px;
  width: 100%;
  margin-inline: auto;
}
.voice .voice__card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  max-width: 100%;
  width: 100%;
  background-color: white;
  border-radius: calc((19.5419847328 / 960) * 100vw);
  gap: 0;
  -webkit-box-shadow: 0px calc((9.7709923664 / 960) * 100vw) calc((39.0839694656 / 960) * 100vw) rgba(36, 35, 35, 0.08);
          box-shadow: 0px calc((9.7709923664 / 960) * 100vw) calc((39.0839694656 / 960) * 100vw) rgba(36, 35, 35, 0.08);
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card {
    max-width: 352px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 4px 19px rgba(36, 35, 35, 0.08);
            box-shadow: 0px 4px 19px rgba(36, 35, 35, 0.08);
  }
}
.voice .voice__card .voice__card-details {
  padding-inline: calc((48.8549618321 / 960) * 100vw);
  padding-block: calc((68.3969465649 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-details {
    padding-inline: 21px;
    padding-block: 28px;
  }
}
.voice .voice__card .voice__card-img {
  border-radius: calc((19.5419847328 / 960) * 100vw) calc((19.5419847328 / 960) * 100vw) 0 0;
  aspect-ratio: 352/235;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-img {
    border-radius: 8px 8px 0 0;
  }
}
.voice .voice__card .voice__card-img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.voice .voice__card .voice__card-tag {
  color: var(--color-primary);
  background-color: var(--color-pink);
  border: solid 1px #FFEEF1;
  border-radius: calc((9.7709923664 / 960) * 100vw);
  font-size: calc((29.3129770992 / 960) * 100vw);
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.02em;
  padding-inline: calc((14.6564885496 / 960) * 100vw);
  padding-block: calc((4.8854961832 / 960) * 100vw);
  -webkit-margin-after: calc((24.427480916 / 960) * 100vw);
          margin-block-end: calc((24.427480916 / 960) * 100vw);
  display: inline-block;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-tag {
    border-radius: 4px;
    font-size: 12px;
    padding-inline: 6px;
    padding-block: 2px;
    -webkit-margin-after: 10px;
            margin-block-end: 10px;
  }
}
.voice .voice__card .voice__card-title {
  font-weight: 700;
  font-size: calc((43.9694656489 / 960) * 100vw);
  line-height: 150%;
  text-wrap: auto;
  -webkit-margin-after: calc((19.5419847328 / 960) * 100vw);
          margin-block-end: calc((19.5419847328 / 960) * 100vw);
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-title {
    font-size: 20px;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.voice .voice__card .voice__card-company {
  font-weight: 700;
  line-height: 150%;
  -webkit-margin-after: calc((19.5419847328 / 960) * 100vw);
          margin-block-end: calc((19.5419847328 / 960) * 100vw);
  font-size: calc((36.641221374 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-company {
    -webkit-margin-after: 8px;
            margin-block-end: 8px;
    font-size: 16px;
  }
}
.voice .voice__card .voice__card-info {
  border-top: solid 1px #E3E3E3;
  -webkit-padding-before: calc((14.6564885496 / 960) * 100vw);
          padding-block-start: calc((14.6564885496 / 960) * 100vw);
  -webkit-padding-after: calc((48.8549618321 / 960) * 100vw);
          padding-block-end: calc((48.8549618321 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-info {
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
}
.voice .voice__card .voice__card-info dl {
  display: block flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc((29.3129770992 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-info dl {
    gap: 12px;
  }
}
.voice .voice__card .voice__card-info dl dt {
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 175%;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-info dl dt {
    font-size: 14px;
  }
}
.voice .voice__card .voice__card-info dl dd {
  font-size: calc((31.7557251908 / 960) * 100vw);
  font-weight: 700;
  line-height: 150%;
  color: #5C5C5C;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-info dl dd {
    font-size: 13px;
  }
}
.voice .voice__card .voice__card-btn {
  display: block flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: calc((19.5419847328 / 960) * 100vw);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: white;
  border: solid 1px var(--color-primary);
  border-radius: var(--border-rounded-full);
  padding-inline: calc((39.0839694656 / 960) * 100vw);
  padding-block: calc((29.3129770992 / 960) * 100vw);
  color: var(--color-primary);
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 960px) {
  .voice .voice__card .voice__card-btn {
    gap: 8px;
    padding-inline: 16px;
    padding-block: 12px;
    font-size: 14px;
  }
}
.voice .voice__card .voice__card-btn path {
  stroke: var(--color-primary);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.voice .voice__card .voice__card-btn:hover {
  color: white;
  background-color: var(--color-primary);
}
.voice .voice__card .voice__card-btn:hover path {
  stroke: white;
}
.voice.wrap {
  padding-inline: calc((19.5419847328 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice.wrap {
    padding-inline: 20px;
  }
}
.voice .swiper-slide {
  padding-inline: calc((34.1984732824 / 960) * 100vw);
  padding-block: calc((48.8549618321 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-slide {
    padding-inline: 14px;
    padding-block: 20px;
  }
}
.voice .swiper-pagination {
  bottom: calc((-117.2519083969 / 960) * 100vw) !important;
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-pagination {
    bottom: -56px !important;
  }
}
.voice .swiper-pagination .swiper-pagination-bullet {
  width: calc((19.5419847328 / 960) * 100vw);
  height: calc((19.5419847328 / 960) * 100vw);
  margin: 0 calc((7.3282442748 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}
.voice .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.voice .swiper-button-next {
  right: calc((26.8702290076 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-button-next {
    right: 0;
  }
}
@media print, screen and (min-width: 1400px) {
  .voice .swiper-button-next {
    right: -84px;
  }
}
.voice .swiper-button-prev {
  left: calc((26.8702290076 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-button-prev {
    left: 0;
  }
}
@media print, screen and (min-width: 1400px) {
  .voice .swiper-button-prev {
    left: -84px;
  }
}
.voice .swiper-button-next, .voice .swiper-button-prev {
  top: 105%;
  width: calc((117.2519083969 / 960) * 100vw);
  height: calc((117.2519083969 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .voice .swiper-button-next, .voice .swiper-button-prev {
    top: 104%;
    width: 60px;
    height: 60px;
  }
}
@media print, screen and (min-width: 1400px) {
  .voice .swiper-button-next, .voice .swiper-button-prev {
    top: 62.5%;
  }
}
.voice .swiper-button-next:after, .voice .swiper-button-prev:after {
  display: none;
}

.step {
  --z-index: 1;
  padding-block: calc((224.7328244275 / 960) * 100vw) calc((161.2213740458 / 960) * 100vw);
  background-color: var(--color-gray);
}
@media print, screen and (min-width: 960px) {
  .step {
    padding-block: 132px 82px;
  }
}
.step .step__heading {
  -webkit-margin-after: calc((156.3358778626 / 960) * 100vw);
          margin-block-end: calc((156.3358778626 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .step .step__heading {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
}
.step .step__heading .section-heading {
  -webkit-margin-after: calc((39.0839694656 / 960) * 100vw);
          margin-block-end: calc((39.0839694656 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .step .step__heading .section-heading {
    -webkit-margin-after: 34px;
            margin-block-end: 34px;
  }
}
.step .step__heading .step__heading-notes {
  text-align: center;
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .step .step__heading .step__heading-notes {
    font-size: 18px;
  }
}
.step .step__bg {
  position: relative;
}
.step .step__bg::before {
  display: none;
  position: absolute;
  top: 53%;
  bottom: 50%;
  left: -20px;
  margin: auto;
  content: "";
  width: calc(100% + 40px);
  height: 6px;
  z-index: var(--z-index);
  background-color: var(--color-primary);
  background: -webkit-linear-gradient(left, var(--color-primary) 0%, var(--color-primary) calc(100% - 16px), var(--color-gray) calc(100% - 16px), var(--color-gray) 100%);
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) calc(100% - 16px), var(--color-gray) calc(100% - 16px), var(--color-gray) 100%);
}
@media print, screen and (min-width: 960px) {
  .step .step__bg::before {
    display: block;
  }
}
.step .step__bg::after {
  --size: 36px;
  content: "";
  display: none;
  position: absolute;
  top: 49.2%;
  bottom: 50%;
  right: -20px;
  width: var(--size);
  height: calc(var(--size) / 1.9 * 1.7320508076);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--color-primary);
  z-index: calc(var(--z-index) + 2);
}
@media print, screen and (min-width: 960px) {
  .step .step__bg::after {
    display: block;
  }
}
.step .step__list {
  position: relative;
  z-index: calc(var(--z-index) + 3);
  display: block flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc((97.7099236641 / 960) * 100vw);
  padding-inline: calc((48.8549618321 / 960) * 100vw);
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 960px) {
  .step .step__list {
    gap: 56px;
    padding-inline: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.step .step__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-block: calc((39.0839694656 / 960) * 100vw);
  padding-inline: calc((41.5267175573 / 960) * 100vw);
  gap: calc((34.1984732824 / 960) * 100vw);
  max-width: 100%;
  width: 100%;
  -webkit-box-shadow: calc((4.8854961832 / 960) * 100vw) calc((4.8854961832 / 960) * 100vw) calc((24.427480916 / 960) * 100vw) rgba(54, 47, 48, 0.25);
          box-shadow: calc((4.8854961832 / 960) * 100vw) calc((4.8854961832 / 960) * 100vw) calc((24.427480916 / 960) * 100vw) rgba(54, 47, 48, 0.25);
  border-radius: calc((19.5419847328 / 960) * 100vw);
  background-color: white;
  z-index: calc(var(--z-index) + 1);
}
@media print, screen and (min-width: 960px) {
  .step .step__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 16px;
    padding-inline: 16px;
    gap: 16px;
    max-width: 238px;
    -webkit-box-shadow: 2px 2px 10px rgba(54, 47, 48, 0.25);
            box-shadow: 2px 2px 10px rgba(54, 47, 48, 0.25);
    border-radius: 8px;
  }
}
.step .step__item .step__item-num {
  color: var(--color-block);
}
.step .step__item .step__item-num *:nth-child(1) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: calc((97.7099236641 / 960) * 100vw);
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .step .step__item .step__item-num *:nth-child(1) {
    font-size: 48px;
  }
}
.step .step__item .step__item-num *:nth-child(1)::before {
  display: block;
  content: "FLOW";
  font-size: calc((39.0839694656 / 960) * 100vw);
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .step .step__item .step__item-num *:nth-child(1)::before {
    font-size: 18px;
  }
}
.step .step__item .step__item-title {
  font-size: calc((41.5267175573 / 960) * 100vw);
  font-weight: 700;
  line-height: 175%;
  text-align: center;
  color: var(--color-primary);
  text-wrap: unset;
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
}
@media print, screen and (min-width: 960px) {
  .step .step__item .step__item-title {
    font-size: 17px;
    -webkit-margin-after: 10px;
            margin-block-end: 10px;
  }
}
.step .step__item .step__item-desc {
  font-size: calc((34.1984732824 / 960) * 100vw);
  line-height: 175%;
}
@media print, screen and (min-width: 960px) {
  .step .step__item .step__item-desc {
    font-size: 14px;
  }
}
.step .step__item:not(:last-child)::before {
  --size: calc((43.9694656489 / 960) * 100vw);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: calc((-97.7099236641 / 960) * 100vw);
  left: 0;
  margin: auto;
  width: var(--size);
  height: calc(var(--size) / 1.9 * 1.7320508076);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--color-primary);
  z-index: calc(var(--z-index) + 2);
}
@media print, screen and (min-width: 960px) {
  .step .step__item:not(:last-child)::before {
    display: none;
  }
}
.step .step__item:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: calc((-85.4961832061 / 960) * 100vw);
  left: 0;
  margin: auto;
  width: calc((7.3282442748 / 960) * 100vw);
  height: calc((85.4961832061 / 960) * 100vw);
  background-color: var(--color-primary);
}
@media print, screen and (min-width: 960px) {
  .step .step__item:not(:last-child)::after {
    display: none;
  }
}
.step .step__support {
  -webkit-margin-before: calc((175.8778625954 / 960) * 100vw);
          margin-block-start: calc((175.8778625954 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .step .step__support {
    -webkit-margin-before: 66px;
            margin-block-start: 66px;
  }
}
.step .step__support .step__support-title {
  text-align: center;
  font-weight: 700;
  font-size: calc((48.8549618321 / 960) * 100vw);
  letter-spacing: 0.02em;
  -webkit-margin-after: calc((68.3969465649 / 960) * 100vw);
          margin-block-end: calc((68.3969465649 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .step .step__support .step__support-title {
    font-size: 26px;
    -webkit-margin-after: 28px;
            margin-block-end: 28px;
  }
}
.step .step__support ul {
  display: block flex;
  gap: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
@media print, screen and (min-width: 960px) {
  .step .step__support ul {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.step .step__support ul li {
  padding-inline: calc((24.427480916 / 960) * 100vw);
  padding-block: calc((36.641221374 / 960) * 100vw);
  width: 50%;
}
@media print, screen and (min-width: 960px) {
  .step .step__support ul li {
    padding-inline: 23px;
    padding-block: 24px;
    width: auto;
  }
}
.step .step__support ul li > img {
  max-width: calc((244.2748091603 / 960) * 100vw);
  width: 100%;
  margin-inline: auto;
  -webkit-margin-after: calc((19.5419847328 / 960) * 100vw);
          margin-block-end: calc((19.5419847328 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .step .step__support ul li > img {
    max-width: 100px;
    -webkit-margin-after: 18px;
            margin-block-end: 18px;
  }
}
.step .step__support ul li > p {
  font-size: calc((39.0839694656 / 960) * 100vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .step .step__support ul li > p {
    font-size: 18px;
  }
}

.faq {
  padding-block: calc((131.9083969466 / 960) * 100vw) calc((180.7633587786 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .faq {
    padding-block: 80px;
  }
}
.faq .faq__list {
  display: block flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
  max-width: 928px;
  width: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 960px) {
  .faq .faq__list {
    padding-block: 80px;
  }
}
.faq .faq__item dt {
  position: relative;
  padding-inline: calc((36.641221374 / 960) * 100vw) calc((97.7099236641 / 960) * 100vw);
  padding-block: calc((48.8549618321 / 960) * 100vw);
  display: block flex;
  gap: calc((29.3129770992 / 960) * 100vw);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 700;
  background-color: #F7F7F7;
  border: solid 1px #E3E3E3;
  border-radius: calc((24.427480916 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .faq .faq__item dt {
    padding-inline: 24px 56px;
    padding-block: 20px;
    gap: 15px;
    border-radius: 10px;
    font-size: 16px;
  }
}
.faq .faq__item dt::before, .faq .faq__item dt::after {
  content: "";
  display: block;
  width: calc((34.1984732824 / 960) * 100vw);
  height: calc((4.8854961832 / 960) * 100vw);
  background-color: var(--color-block);
  position: absolute;
  top: 0;
  right: calc((36.641221374 / 960) * 100vw);
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 960px) {
  .faq .faq__item dt::before, .faq .faq__item dt::after {
    width: 18px;
    height: 2px;
    right: 23px;
  }
}
.faq .faq__item:not(.is-active) dt::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq .faq__item dd {
  line-height: 175%;
  -webkit-padding-before: calc((43.9694656489 / 960) * 100vw);
          padding-block-start: calc((43.9694656489 / 960) * 100vw);
  padding-inline: calc((48.8549618321 / 960) * 100vw);
  font-size: calc((34.1984732824 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .faq .faq__item dd {
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
    padding-inline: 75px;
    font-size: 16px;
  }
}
.faq .faq__item dd a {
  color: var(--color-primary);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq .faq__item dd a:hover {
  opacity: 0.7;
}
.faq .faq__item dd .faq__spacer {
  display: block;
  height: calc((43.9694656489 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .faq .faq__item dd .faq__spacer {
    height: 18px;
  }
}
.faq .faq__notes {
  position: relative;
  font-size: calc((29.3129770992 / 960) * 100vw);
  letter-spacing: 0.02em;
  line-height: 175%;
  -webkit-padding-start: 1.2em;
          padding-inline-start: 1.2em;
}
@media print, screen and (min-width: 960px) {
  .faq .faq__notes {
    font-size: 12px;
  }
}
.faq .faq__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.contact {
  padding-block: calc((39.0839694656 / 960) * 100vw);
  background-color: #FFEEF1;
}
@media print, screen and (min-width: 960px) {
  .contact {
    padding-block: 120px;
  }
}
.contact .contact__container {
  border-radius: calc((39.0839694656 / 960) * 100vw);
  background-color: white;
  padding-block: calc((83.0534351145 / 960) * 100vw) 0;
  padding-inline: calc((14.6564885496 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .contact .contact__container {
    border-radius: 16px;
    padding-block: 80px;
    padding-inline: 96px;
  }
}
.contact .contact__heading {
  -webkit-margin-after: calc((68.3969465649 / 960) * 100vw);
          margin-block-end: calc((68.3969465649 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .contact .contact__heading {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
}
.contact .contact__heading .section-heading {
  -webkit-margin-after: calc((43.9694656489 / 960) * 100vw);
          margin-block-end: calc((43.9694656489 / 960) * 100vw);
}
@media print, screen and (min-width: 960px) {
  .contact .contact__heading .section-heading {
    -webkit-margin-after: 34px;
            margin-block-end: 34px;
  }
}
.contact .contact__heading .contact__heading-notes {
  text-align: center;
  font-size: calc((34.1984732824 / 960) * 100vw);
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .contact .contact__heading .contact__heading-notes {
    font-size: 18px;
  }
}

.footer {
  font-weight: 400;
  line-height: 1.92857;
}
.footer ul {
  list-style: none;
}
.footer a {
  text-decoration: none;
}
.footer .EVC_Footer__txtArea {
  background-color: #222222;
  color: #fff;
  padding-bottom: var(--bottomcta-height);
}
@media print, screen and (min-width: 960px) {
  .footer .EVC_Footer__txtArea {
    padding-bottom: 0;
  }
}
.footer .EVC_Footer__txtArea__inner {
  padding: 0 3.3333333333vw;
}
@media print, screen and (min-width: 960px) {
  .footer .EVC_Footer__txtArea__inner {
    width: min(calc((1180/1200)*100vw), 1180px);
    padding: min(calc((15/1200)*100vw), 15px) min(calc((10/1200)*100vw), 10px);
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .EVC_Footer__txtArea__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.6666666667vw 0;
}
@media print, screen and (min-width: 960px) {
  .footer .EVC_Footer__txtArea__link {
    width: min(calc((450/1200)*100vw), 450px);
    padding: 0 0 min(calc((10/1200)*100vw), 10px);
  }
}
.footer .EVC_Footer__txtArea__link a {
  font-size: 3.2vw;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .footer .EVC_Footer__txtArea__link a {
    font-size: min(calc((13/1200)*100vw), 13px);
  }
}
.footer .EVC_Footer__txtArea__copy {
  font-size: 2.6666666667vw;
  letter-spacing: 0.1em;
  padding: 3.4666666667vw 0;
  text-align: center;
  border-top: 1px solid #515151;
}
@media print, screen and (min-width: 960px) {
  .footer .EVC_Footer__txtArea__copy {
    font-size: min(calc((13/1200)*100vw), 13px);
    text-align: left;
    padding: 0;
    border: none;
  }
}