*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus) {
  outline: none;
}

:where(:focus-visible) {
  outline: none;
}

:where(:focus-visible):is(button, a, input, textarea, [tabindex="0"]) {
  outline: 0.125rem solid CanvasText;
  box-shadow: 0 0 0 0.125rem Canvas;
  outline-offset: 0.125rem;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 0.0625rem !important;
  width: 0.0625rem !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --vh: 1vh;
  --vw: 1vw;
  --white: #fff;
  --light-gray: #bbbbbb;
  --gray: #959595;
  --dark-gray: #707070;
  --black: #000000;
  --primary: #0050a4;
  --light-primary: #dbdfec;
  --secondary: #f5c400;
  --point: #c94232;
  --text-color: #535a6e;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5;
  --container-width: 80rem;
  --side-padding: 5.1875rem;
  --side-padding-mobile: 1.25rem;
  --inter: "Inter", sans-serif;
  --trim: trim-both cap alphabetic;
  --headerHeight: 3.75rem;
  --footerHeight: 5rem;
}

html,
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-family: var(--font-family-base);
  color: var(--text-color);
  font-weight: 400;
  background: var(--white);
  width: 100%;
  overflow-x: visible;
}

html:has(.is-gnavi-open) {
  scrollbar-gutter: stable;
  overflow: clip;
}

body {
  background-color: #fff;
  color: var(--black);
  overflow-y: auto;
}

.pageLayout {
  width: 100%;
  box-sizing: border-box;
}
.pageLayout > aside h2 {
  margin-bottom: 3.75rem;
}
.pageLayout > aside iframe {
  box-sizing: border-box;
  max-width: 75rem;
  margin-inline: auto;
  width: 100%;
}

.ff-num {
  font-family: var(--font-family-en);
}

.fw-md {
  font-weight: 600;
}

.bg-gray {
  background: #ededed !important;
}

:where(a:not[class]) {
  color: var(--primary);
  text-decoration: none;
}
:where(a:not[class]):hover {
  text-decoration: underline;
}

.on-fade {
  transition: opacity 0.3s;
}
.on-fade:hover {
  opacity: 0.8;
}

.sp_show {
  display: none;
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  justify-content: space-between;
  padding-inline: 1.875rem;
  max-width: none;
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.1);
}
.layout-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  margin-inline: auto;
}
.layout-header__logo {
  display: inline-block;
  flex-shrink: 0;
}
.layout-header__logo img {
  height: 2.5rem;
}
.layout-header .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.layout-header .button-wrapper .button {
  width: 14.375rem;
}
.layout-header .button-wrapper .button-dl br {
  display: none;
}
.layout-header .button-wrapper .button-contact {
  display: inline-block;
  margin-right: 1rem;
}

.layout-footer {
  background-color: var(--black);
  color: var(--white);
  padding-inline: var(--side-padding);
}
.layout-footer__inner {
  max-width: 75rem;
  margin-inline: auto;
  position: relative;
  padding-block: 1.4375rem;
}
.layout-footer__inner.__is-pre {
  padding-block: 0.3125rem;
}
.layout-footer__inner .copyright {
  text-align: center;
  font-size: 0.6875rem;
}
.layout-footer__logo {
  width: fit-content;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.layout-footer__logo img {
  height: 0.875rem;
}

.sidebar-layout-container__to-pageTop {
  background: #0050a4;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  z-index: 4000;
  transition: 0.3s;
  margin-bottom: 1.875rem;
  visibility: hidden;
  transform: translateY(1.25rem);
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.15);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}
.sidebar-layout-container__to-pageTop img {
  width: 1.125rem;
  height: 1.125rem;
}
.sidebar-layout-container__to-pageTop:hover {
  opacity: 0.8;
}

.layout-footer__btn {
  display: none;
}

.layout-footer__btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sidebar-layout-container__to-pageTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.warning__list-wrapper {
  max-width: 71.25rem;
  display: block;
  margin-inline: auto;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-indent: -1em;
  line-height: 1.4;
  padding-left: 1.5em;
  padding: 0;
  margin-bottom: 2.5rem;
}
.warning__list-wrapper li {
  margin-bottom: 0.5rem;
}

.section {
  padding: 9.375rem 2.5rem;
}
.section__inner {
  max-width: 75rem;
  margin-inline: auto;
}
.section__inner.__wide-md {
  max-width: 57rem;
}
.section__inner.__wide-sm {
  max-width: 48.75rem;
}

.bg_section {
  padding: 6.875rem 2.5rem;
}
.bg_section {
  background: #e1eef6;
}

.bg_section-blue {
  padding: 6.875rem 2.5rem;
}
.bg_section-blue {
  background: #447fbc;
}

.bg_section-gray {
  padding: 6.875rem 2.5rem;
}
.bg_section-gray {
  background: #f6f6f6;
}

.section-mv {
  position: relative;
  margin: 5rem 0 3.75rem;
  width: 100%;
  height: 40rem;
  padding-top: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/mv_bg.svg) center center/cover;
}
.section-mv .mv-area {
  max-width: 75rem;
  margin-left: 2.8125rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-mv .mv-images {
  width: 50%;
}
.section-mv .mv-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-mv .mv-catch h1 {
  font-size: 3.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
}
.section-mv .mv-catch h1 p {
  background: linear-gradient(90deg, #0050a4, #447fbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 1.25rem;
}
.section-mv .mv-catch > p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02rem;
  margin: 1.25rem 0;
}
.section-mv .btn-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin-bottom: 5rem;
}
.section-mv .mv-content-btn {
  max-width: 28.125rem;
  height: 4.6875rem;
  border-radius: 8px;
  background: var(--point);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 0.9375rem -0.3125rem #777777;
  transition: 0.3s;
}
.section-mv .mv-content-btn a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-mv .mv-content-btn:hover {
  opacity: 0.8;
}
.section-mv .mv-dl-btn {
  max-width: 28.125rem;
  height: 4.6875rem;
  border-radius: 8px;
  background: var(--secondary);
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 0.9375rem -0.3125rem #777777;
  transition: 0.3s;
}
.section-mv .mv-dl-btn a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-mv .mv-dl-btn:hover {
  opacity: 0.8;
}
.section-mv .mv-cardWrapper {
  width: 100%;
  padding: 0 2.5rem;
}
.section-mv .mv-card {
  width: 100%;
  max-width: 72rem;
  min-height: 8.75rem;
  margin-inline: auto;
  box-sizing: border-box;
  border-radius: 8px;
  background-image: linear-gradient(90deg, #0050a4, #447fbc);
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  justify-content: center;
}
.section-mv .mv-card .item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: min(5.5%, 4.375rem);
  position: relative;
  word-break: break-all;
}
.section-mv .mv-card .item-head::after {
  content: "";
  width: 0.0625rem;
  height: 6.125rem;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(15deg);
  position: absolute;
  top: 0.625rem;
  right: -2.5rem;
}
.section-mv .mv-card .item-head:last-of-type:after {
  content: none;
}
.section-mv .mv-card .item-head:last-of-type {
  margin-right: 0;
}
.section-mv .mv-card .item-img {
  width: 4.25rem;
  height: 4.25rem;
  margin-right: 0.9375rem;
}
.section-mv .mv-card .item-box {
  display: flex;
  align-items: center;
}
.section-mv .mv-card .item-headding {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.section-mv .mv-card .item-headding .item-hedding-sub {
  font-size: 1rem;
}
.section-mv .mv-card .item-headding .item-hedding-col {
  color: #ffe97a;
}
.section-mv .mv-card .item-headding .item-hedding-col br {
  display: none;
}
.section-mv .mv-card .item-text {
  font-size: 5rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #ffe97a;
  margin-left: 1.25rem;
}
.section-mv .mv-card .item-text span {
  font-size: 2rem;
  font-weight: 700;
}

.page-heading {
  color: var(--primary);
  text-align: center;
  font-size: 2rem;
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 1.125rem;
  line-height: 1.6;
}
.page-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 2px;
  background-color: var(--primary);
  left: 50%;
  transform: translateX(-50%);
}
.page-heading.__has-subText {
  display: flex;
  flex-direction: column;
}
.page-heading .subText {
  font-size: 1.5rem;
  line-height: 1.3;
}

.primary-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  position: relative;
  margin-bottom: 5.625rem;
}
.primary-heading p {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.primary-heading span {
  color: var(--primary);
}
.primary-heading::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  height: 0.25rem;
  display: block;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #0050a4, #447fbc);
}

.primary-heading.row-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-heading.row-heading .primary-heading-img {
  margin-right: 0.5rem;
}
.primary-heading.row-heading .primary-heading-img img {
  height: 3.75rem;
}

.primary-heading.col-sub {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 4.375rem;
  line-height: 1.6;
}
.primary-heading.col-sub span {
  color: #ffe97a;
}
.primary-heading.col-sub::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  height: 0.25rem;
  display: block;
  border-radius: 50px;
  background: #ffe97a;
}

.tertiary-heading {
  color: #282d3c;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.lead-title {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.lead-text {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.02rem;
  margin-bottom: 4.0625rem;
}

.lead-text-sub {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  margin-bottom: 2.5rem;
}

.button-wrapper {
  width: 14.5rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}
.button:hover {
  opacity: 0.8;
}
.button.button-dl {
  color: var(--black);
  background-color: var(--secondary);
}
.button.button-contact {
  color: var(--white);
  background-color: var(--point);
}
.button.__has-shadow {
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.15);
}

.case__content .case__inner {
  max-width: 70.75rem;
  margin: 0 auto 6.25rem;
}
.case__content .case__inner:last-of-type {
  margin-bottom: 0;
}
.case__content .case__main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.15);
  border: 1px solid #dae7f0;
  border-radius: 8px;
  padding: 2.375rem 6.25rem 0 5rem;
  margin-bottom: 4.375rem;
}
.case__content .case__main .case_number {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.25rem;
}
.case__content .case__main .case_number span {
  margin-left: 0.5rem;
}
.case__content .case__main .case_title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.case__content .case__main .case_text {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05;
  margin-bottom: 2.375rem;
  max-width: 37.5rem;
}
.case__content .case__main.fast {
  padding: 2.375rem 2.5rem 0 5rem;
}
.case__content .case__bottom {
  width: 100%;
  max-width: 70.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case__content .case__bottom > div {
  width: 49%;
}
.case__content .case__bottom .case__left,
.case__content .case__bottom .case__right {
  border: 3px solid #447fbc;
  border-radius: 8px;
  background: #f5fbff;
  height: 10.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.case__content .case__bottom .case__left h3,
.case__content .case__bottom .case__right h3 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}
.case__content .case__bottom .case__left h3::after,
.case__content .case__bottom .case__right h3::after {
  content: "";
  display: block;
  width: 14.75rem;
  height: 0.25rem;
  position: absolute;
  top: 1.6875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f5fbff;
  z-index: -2;
}
.case__content .case__bottom .case__left h3::before,
.case__content .case__bottom .case__right h3::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.8125rem;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.case__content .case__bottom .case__left .case_sub-text,
.case__content .case__bottom .case__right .case_sub-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding: 2.5rem 0;
}
.case__content .case__bottom .case__left .case_sub-text span,
.case__content .case__bottom .case__right .case_sub-text span {
  padding: 0 0.875rem;
  background: linear-gradient(transparent 70%, #e1eef6 60%);
}
.case__content .case__bottom .case__left .cas_img {
  width: 3.75rem;
  height: 3.5625rem;
  margin-right: 1.25rem;
}
.case__content .case__bottom .case__right {
  border: 3px solid #ffe97a;
  background: #fffcec;
}
.case__content .case__bottom .case__right h3::after {
  content: "";
  background: #fffcec;
}
.case__content .case__bottom .case__right h3::before {
  content: "";
  background: var(--secondary);
}
.case__content .case__bottom .case__right .case_sub-text span {
  padding: 0 0.875rem;
  background: linear-gradient(transparent 70%, #ffe97a 60%);
}
.case__content .case__bottom .case__right .cas_img {
  width: 3.75rem;
  height: 3.5625rem;
  margin-right: 1.25rem;
}

.step__content {
  max-width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}
.step__content .step__inner {
  width: 17.25rem;
  min-height: 33.125rem;
  padding: 0.875rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 0.9375rem -0.3125rem rgba(123, 123, 123, 0.1);
  background: #fff;
  position: relative;
}
.step__content .step__inner::after {
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 2rem;
  background: #7baed3;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: -1.5rem;
}
.step__content .step__inner:last-of-type::after {
  content: none;
}
.step__content .step__inner .step__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__content .step__inner .step_number {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
.step__content .step__inner .step_number span {
  font-size: 2rem;
  padding-left: 0.5rem;
}
.step__content .step__inner .step_img {
  min-height: 9.375rem;
  margin-bottom: 0.9375rem;
}
.step__content .step__inner h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.0625rem;
}
.step__content .step__inner h3.line {
  padding-top: 0.625rem;
  margin-bottom: 1.875rem;
}
.step__content .step__inner .step_text {
  font-size: 1rem;
  line-height: 1.8;
  margin-inline: auto;
  max-width: 34.375rem;
}
.step__content .step__inner .step_text-sub {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.625rem;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}

.step__illustration {
  padding: 3.5rem 0;
  border-radius: 8px;
  background: #fff;
}
.step__illustration .step_img {
  max-width: 52.5rem;
  height: 25rem;
  margin-inline: auto;
  display: block;
}
.step__illustration .step_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.step__content.border_blue {
  position: relative;
  margin-bottom: 1.875rem;
}
.step__content.border_blue::after {
  content: "";
  width: 62.5rem;
  height: 0.125rem;
  display: block;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.step__content.border_blue .step__inner {
  width: 17.25rem;
  min-height: 24.375rem;
  border: 2px solid var(--primary);
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.15);
  position: relative;
  z-index: 2;
}
.step__content.border_blue .step__inner::before {
  content: "";
  width: 10.125rem;
  height: 0.9375rem;
  display: block;
  background: #ffffff;
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
}
.step__content.border_blue .step__inner::after {
  content: none;
}
.step__content.border_blue .step_number {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--primary);
  position: absolute;
  top: -1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.step__content.border_blue .step_number span {
  font-size: 2rem;
  padding-left: 0.5rem;
}
.step__content.border_blue .step_number.last {
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.step__content.border_blue .step_img {
  margin: 3.125rem 0 1.5625rem;
  min-height: 7.5rem;
}
.step__content.border_blue .step_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__content.border_blue h3 {
  margin-bottom: 1.5625rem;
}

.step_sub-text {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-indent: -1em;
  padding-left: 1em;
}

.scene__content {
  border-radius: 8px;
  background: #f9f9f9;
  padding: 2.5rem;
}
.scene__content .scene_img {
  margin: 0 0 1.5625rem;
}
.scene__content .scene_img img {
  margin: 0 auto;
  height: 3.75rem;
}
.scene__content .scene__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.scene__content .scene_box {
  width: calc(50% - 0.625rem);
  height: 20rem;
  padding: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 0 0.9375rem -0.3125rem rgba(100, 100, 100, 0.1);
  background: #fff;
}
.scene__content .scene_box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}
.scene__content .scene_box p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}
.scene__content .scene_box .scene_img-sub.first {
  height: 10.625rem;
}
.scene__content .scene_box .scene_img-sub.first img {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  object-fit: contain;
}
.scene__content .scene_box .scene_img-sub {
  width: 25.75rem;
  height: 10.625rem;
  margin: 0 auto;
}

.service__content .service__inner {
  max-width: 75rem;
  min-height: 22.9375rem;
  margin-inline: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 80, 164, 0.1);
  padding: 2.5rem;
}
.service__content .service__inner > p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}
.service__content .service__inner > p:last-of-type {
  margin-bottom: 0;
}
.service__content .service_card {
  display: flex;
  align-items: flex-start;
}
.service__content .service_box {
  width: 25%;
  height: 12.5rem;
  margin-bottom: 1.5rem;
  margin-inline: auto;
  position: relative;
}
.service__content .service_box:first-of-type {
  padding-right: 1.875rem;
}
.service__content .service_box:last-of-type {
  padding-left: 1.875rem;
}
.service__content .service_box:last-of-type:before {
  content: "";
  display: none;
}
.service__content .service_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0.0625rem;
  height: 12.5rem;
  display: block;
  background: rgba(0, 0, 0, 0.25);
}
.service__content .service_box > h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0.875rem 0 1.5625rem;
}
.service__content .service_box .service_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 14.375rem;
  margin: 0 auto;
  gap: 1.25rem;
}
.service__content .service_box .service_img img {
  max-height: 1.5rem;
}
.service__content .service_box .service_img.credit_card {
  width: 10rem;
}
.service__content .service_box .service_img.credit_card img {
  max-height: 1.5rem;
}
.service__content .service_box .service_img.credit_card img:nth-of-type(3),
.service__content .service_box .service_img.credit_card img:nth-of-type(4),
.service__content .service_box .service_img.credit_card img:nth-of-type(5) {
  max-height: 2rem;
}
.service__content .service_box .service_img.id_clearing img {
  max-height: 1.5rem;
}
.service__content .service_box .service_img.id_clearing img:nth-of-type(3) {
  margin-top: 0.125rem;
  max-height: 1.125rem;
}
.service__content .service_box .service_img.pay {
  margin-top: 3.4375rem;
}
.service__content .service_box .service_img.pay img {
  max-height: 1.875rem;
}
.service__content .service_box .service_box_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service__content .service_box .service_img.cvs {
  margin: 0.625rem 0 1rem;
}
.service__content .service_box .service_img.cvs img {
  max-height: 2.1875rem;
}
.service__content .service_box > p {
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.question__content .question__inner {
  width: 90%;
  background: #fff;
  max-width: 75rem;
  border-radius: 8px;
  padding: 1.5625rem 1.875rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 1rem rgba(123, 123, 123, 0.1);
}
.question__content .question__inner > h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  text-indent: -2em;
  padding-left: 2em;
}
.question__content .question__inner > h3 span {
  color: var(--primary);
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-right: 0.5rem;
}
.question__content .question__inner > p {
  font-size: 1.125rem;
  line-height: 1.6;
  padding-left: 1.5625rem;
  display: flex;
  align-items: center;
}
.question__content .question__inner > p span {
  color: #7baed3;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-right: 0.5rem;
}
.question__content .question__inner > p > a {
  color: #0050a4;
  transition: 0.3s;
}
.question__content .question__inner > p > a:hover {
  opacity: 0.5;
}
.question__content .question__inner .annotation {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  padding-top: 0.75rem;
}
.question__content .question__inner.last > p {
  display: block;
  line-height: 1.3;
  padding-left: 4.25rem;
  text-indent: -2.5rem;
}

.rounded-0 {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 8px !important;
}
.rounded-md {
  border-radius: 16px !important;
}
.rounded-lg {
  border-radius: 32px !important;
}
.rounded-full {
  border-radius: 100vmax !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.fz-xs {
  font-size: 0.75rem !important;
}
.fz-sm {
  font-size: 0.875rem !important;
}
.fz-base {
  font-size: 1rem !important;
}
.fz-lg {
  font-size: 1.125rem !important;
}
.fz-xl {
  font-size: 1.25rem !important;
}
.fz-xxl {
  font-size: 1.5rem !important;
}
.fz-xxxl {
  font-size: 1.625rem !important;
}
.fz-xxxxl {
  font-size: 1.75rem !important;
}
.fz-xxxxxl {
  font-size: 1.875rem !important;
}
.fw-normal {
  font-weight: normal !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: bold !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.3 !important;
}
.lh-md {
  line-height: 1.5 !important;
}
.lh-base {
  line-height: 2 !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.color-gray {
  color: #888888 !important;
}

.color-primary {
  color: var(--primary) !important;
}

.lang-en {
  font-family: var(--font-family-en);
}

.uppercase {
  text-transform: uppercase;
}

.grid {
  display: grid !important;
}
.grid--ai-center {
  align-items: center;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.gap-0 {
  gap: 0 !important;
}
.gap-xs {
  gap: 0.25rem !important;
}
.gap-sm {
  gap: 0.5rem !important;
}
.gap-md {
  gap: 1rem !important;
}
.gap-lg {
  gap: 1.5rem !important;
}
.gap-xl {
  gap: 2rem !important;
}
.gap-xxl {
  gap: 2.5rem !important;
}
.gap-xxxl {
  gap: 3rem !important;
}
.gap-4xl {
  gap: 4rem !important;
}
.gap-5xl {
  gap: 5rem !important;
}
.gap-6xl {
  gap: 6rem !important;
}
.gap-7xl {
  gap: 7rem !important;
}
.gap-8xl {
  gap: 8rem !important;
}
.gap-9xl {
  gap: 9rem !important;
}
.gap-10xl {
  gap: 10rem !important;
}
.gap-x-0 {
  column-gap: 0;
}
.gap-x-xs {
  column-gap: 0.25rem;
}
.gap-x-sm {
  column-gap: 0.5rem;
}
.gap-x-md {
  column-gap: 1rem;
}
.gap-x-lg {
  column-gap: 1.5rem;
}
.gap-x-xl {
  column-gap: 2rem;
}
.gap-x-xxl {
  column-gap: 2.5rem;
}
.gap-x-xxxl {
  column-gap: 3rem;
}
.gap-x-4xl {
  column-gap: 4rem;
}
.gap-x-5xl {
  column-gap: 5rem;
}
.gap-x-6xl {
  column-gap: 6rem;
}
.gap-x-7xl {
  column-gap: 7rem;
}
.gap-x-8xl {
  column-gap: 8rem;
}
.gap-x-9xl {
  column-gap: 9rem;
}
.gap-x-10xl {
  column-gap: 10rem;
}
.gap-y-0 {
  row-gap: 0;
}
.gap-y-xs {
  row-gap: 0.25rem;
}
.gap-y-sm {
  row-gap: 0.5rem;
}
.gap-y-md {
  row-gap: 1rem;
}
.gap-y-lg {
  row-gap: 1.5rem;
}
.gap-y-xl {
  row-gap: 2rem;
}
.gap-y-xxl {
  row-gap: 2.5rem;
}
.gap-y-xxxl {
  row-gap: 3rem;
}
.gap-y-4xl {
  row-gap: 4rem;
}
.gap-y-5xl {
  row-gap: 5rem;
}
.gap-y-6xl {
  row-gap: 6rem;
}
.gap-y-7xl {
  row-gap: 7rem;
}
.gap-y-8xl {
  row-gap: 8rem;
}
.gap-y-9xl {
  row-gap: 9rem;
}
.gap-y-10xl {
  row-gap: 10rem;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mb-xs {
  margin-bottom: 0.25rem !important;
}

.mt-xs {
  margin-top: 0.25rem !important;
}
.mb-sm {
  margin-bottom: 0.5rem !important;
}

.mt-sm {
  margin-top: 0.5rem !important;
}
.mb-md {
  margin-bottom: 1rem !important;
}

.mt-md {
  margin-top: 1rem !important;
}
.mb-lg {
  margin-bottom: 1.5rem !important;
}

.mt-lg {
  margin-top: 1.5rem !important;
}
.mb-xl {
  margin-bottom: 2rem !important;
}

.mt-xl {
  margin-top: 2rem !important;
}
.mb-xxl {
  margin-bottom: 2.5rem !important;
}

.mt-xxl {
  margin-top: 2.5rem !important;
}
.mb-xxxl {
  margin-bottom: 3rem !important;
}

.mt-xxxl {
  margin-top: 3rem !important;
}
.mb-4xl {
  margin-bottom: 4rem !important;
}

.mt-4xl {
  margin-top: 4rem !important;
}
.mb-5xl {
  margin-bottom: 5rem !important;
}

.mt-5xl {
  margin-top: 5rem !important;
}
.mb-6xl {
  margin-bottom: 6rem !important;
}

.mt-6xl {
  margin-top: 6rem !important;
}
.mb-7xl {
  margin-bottom: 7rem !important;
}

.mt-7xl {
  margin-top: 7rem !important;
}
.mb-8xl {
  margin-bottom: 8rem !important;
}

.mt-8xl {
  margin-top: 8rem !important;
}
.mb-9xl {
  margin-bottom: 9rem !important;
}

.mt-9xl {
  margin-top: 9rem !important;
}
.mb-10xl {
  margin-bottom: 10rem !important;
}

.mt-10xl {
  margin-top: 10rem !important;
}
.ml-md {
  margin-left: 1rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}
.m-inline-auto {
  margin-inline: auto !important;
}

.m-inline-inherit {
  margin-inline: inherit !important;
}

.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-66 {
  width: 66% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}

.w-fit {
  width: fit-content !important;
}
.minh-unset {
  min-height: unset !important;
}

.no-break {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (min-width: 576px) {
  .rounded-sm-0 {
    border-radius: 0 !important;
  }
  .rounded-sm-sm {
    border-radius: 8px !important;
  }
  .rounded-sm-md {
    border-radius: 16px !important;
  }
  .rounded-sm-lg {
    border-radius: 32px !important;
  }
  .rounded-sm-full {
    border-radius: 100vmax !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-sm-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinksm--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-sm-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .fz-sm-xs {
    font-size: 0.75rem !important;
  }
  .fz-sm-sm {
    font-size: 0.875rem !important;
  }
  .fz-sm-base {
    font-size: 1rem !important;
  }
  .fz-sm-lg {
    font-size: 1.125rem !important;
  }
  .fz-sm-xl {
    font-size: 1.25rem !important;
  }
  .fz-sm-xxl {
    font-size: 1.5rem !important;
  }
  .fz-sm-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-sm-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-sm-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-sm-bold {
    font-weight: bold !important;
  }
  .lh-sm-1 {
    line-height: 1 !important;
  }
  .lh-sm-sm {
    line-height: 1.3 !important;
  }
  .lh-sm-md {
    line-height: 1.5 !important;
  }
  .lh-sm-base {
    line-height: 2 !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-sm {
    display: grid !important;
  }
  .grid-cols-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-sm-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-sm-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-sm-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-sm-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-xs {
    gap: 0.25rem !important;
  }
  .gap-sm-sm {
    gap: 0.5rem !important;
  }
  .gap-sm-md {
    gap: 1rem !important;
  }
  .gap-sm-lg {
    gap: 1.5rem !important;
  }
  .gap-sm-xl {
    gap: 2rem !important;
  }
  .gap-sm-xxl {
    gap: 2.5rem !important;
  }
  .gap-sm-xxxl {
    gap: 3rem !important;
  }
  .gap-sm-4xl {
    gap: 4rem !important;
  }
  .gap-sm-5xl {
    gap: 5rem !important;
  }
  .gap-sm-6xl {
    gap: 6rem !important;
  }
  .gap-sm-7xl {
    gap: 7rem !important;
  }
  .gap-sm-8xl {
    gap: 8rem !important;
  }
  .gap-sm-9xl {
    gap: 9rem !important;
  }
  .gap-sm-10xl {
    gap: 10rem !important;
  }
  .gap-x-sm-0 {
    column-gap: 0 !important;
  }
  .gap-x-sm-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-sm-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-sm-md {
    column-gap: 1rem !important;
  }
  .gap-x-sm-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-sm-xl {
    column-gap: 2rem !important;
  }
  .gap-x-sm-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-sm-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-sm-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-sm-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-sm-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-sm-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-sm-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-sm-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-sm-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-sm-0 {
    row-gap: 0 !important;
  }
  .gap-y-sm-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-sm-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-sm-md {
    row-gap: 1rem !important;
  }
  .gap-y-sm-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-sm-xl {
    row-gap: 2rem !important;
  }
  .gap-y-sm-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-sm-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-sm-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-sm-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-sm-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-sm-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-sm-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-sm-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-sm-10xl {
    row-gap: 10rem !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
  .mh-sm-100 {
    max-height: 100% !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-sm-xs {
    margin-top: 0.25rem !important;
  }
  .mb-sm-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-sm-sm {
    margin-top: 0.5rem !important;
  }
  .mb-sm-md {
    margin-bottom: 1rem !important;
  }
  .mt-sm-md {
    margin-top: 1rem !important;
  }
  .mb-sm-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-sm-lg {
    margin-top: 1.5rem !important;
  }
  .mb-sm-xl {
    margin-bottom: 2rem !important;
  }
  .mt-sm-xl {
    margin-top: 2rem !important;
  }
  .mb-sm-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-sm-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-sm-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-sm-xxxl {
    margin-top: 3rem !important;
  }
  .mb-sm-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-sm-4xl {
    margin-top: 4rem !important;
  }
  .mb-sm-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-sm-5xl {
    margin-top: 5rem !important;
  }
  .mb-sm-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-sm-6xl {
    margin-top: 6rem !important;
  }
  .mb-sm-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-sm-7xl {
    margin-top: 7rem !important;
  }
  .mb-sm-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-sm-8xl {
    margin-top: 8rem !important;
  }
  .mb-sm-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-sm-9xl {
    margin-top: 9rem !important;
  }
  .mb-sm-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-sm-10xl {
    margin-top: 10rem !important;
  }
  .m-inline-sm-auto {
    margin-inline: auto !important;
  }
  .m-inline-sm-inherit {
    margin-inline: inherit !important;
  }
  .position-sm-static {
    position: static !important;
  }
  .position-sm-relative {
    position: relative !important;
  }
  .position-sm-absolute {
    position: absolute !important;
  }
  .position-sm-fixed {
    position: fixed !important;
  }
  .position-sm-sticky {
    position: sticky !important;
  }
  .sm-visible {
    visibility: visible !important;
  }
  .sm-invisible {
    visibility: hidden !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-66 {
    width: 66% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .mw-sm-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .layout-header .button-wrapper {
    width: auto;
  }
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  .rounded-md-sm {
    border-radius: 8px !important;
  }
  .rounded-md-md {
    border-radius: 16px !important;
  }
  .rounded-md-lg {
    border-radius: 32px !important;
  }
  .rounded-md-full {
    border-radius: 100vmax !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-md-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinkmd--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-md-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .fz-md-xs {
    font-size: 0.75rem !important;
  }
  .fz-md-sm {
    font-size: 0.875rem !important;
  }
  .fz-md-base {
    font-size: 1rem !important;
  }
  .fz-md-lg {
    font-size: 1.125rem !important;
  }
  .fz-md-xl {
    font-size: 1.25rem !important;
  }
  .fz-md-xxl {
    font-size: 1.5rem !important;
  }
  .fz-md-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-md-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-md-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-md-bold {
    font-weight: bold !important;
  }
  .lh-md-1 {
    line-height: 1 !important;
  }
  .lh-md-sm {
    line-height: 1.3 !important;
  }
  .lh-md-md {
    line-height: 1.5 !important;
  }
  .lh-md-base {
    line-height: 2 !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-md {
    display: grid !important;
  }
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-xs {
    gap: 0.25rem !important;
  }
  .gap-md-sm {
    gap: 0.5rem !important;
  }
  .gap-md-md {
    gap: 1rem !important;
  }
  .gap-md-lg {
    gap: 1.5rem !important;
  }
  .gap-md-xl {
    gap: 2rem !important;
  }
  .gap-md-xxl {
    gap: 2.5rem !important;
  }
  .gap-md-xxxl {
    gap: 3rem !important;
  }
  .gap-md-4xl {
    gap: 4rem !important;
  }
  .gap-md-5xl {
    gap: 5rem !important;
  }
  .gap-md-6xl {
    gap: 6rem !important;
  }
  .gap-md-7xl {
    gap: 7rem !important;
  }
  .gap-md-8xl {
    gap: 8rem !important;
  }
  .gap-md-9xl {
    gap: 9rem !important;
  }
  .gap-md-10xl {
    gap: 10rem !important;
  }
  .gap-x-md-0 {
    column-gap: 0 !important;
  }
  .gap-x-md-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-md-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-md-md {
    column-gap: 1rem !important;
  }
  .gap-x-md-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-md-xl {
    column-gap: 2rem !important;
  }
  .gap-x-md-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-md-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-md-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-md-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-md-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-md-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-md-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-md-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-md-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-md-0 {
    row-gap: 0 !important;
  }
  .gap-y-md-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-md-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-md-md {
    row-gap: 1rem !important;
  }
  .gap-y-md-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-md-xl {
    row-gap: 2rem !important;
  }
  .gap-y-md-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-md-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-md-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-md-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-md-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-md-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-md-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-md-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-md-10xl {
    row-gap: 10rem !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-md-xs {
    margin-top: 0.25rem !important;
  }
  .mb-md-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-md-sm {
    margin-top: 0.5rem !important;
  }
  .mb-md-md {
    margin-bottom: 1rem !important;
  }
  .mt-md-md {
    margin-top: 1rem !important;
  }
  .mb-md-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-md-lg {
    margin-top: 1.5rem !important;
  }
  .mb-md-xl {
    margin-bottom: 2rem !important;
  }
  .mt-md-xl {
    margin-top: 2rem !important;
  }
  .mb-md-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-md-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-md-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-md-xxxl {
    margin-top: 3rem !important;
  }
  .mb-md-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-md-4xl {
    margin-top: 4rem !important;
  }
  .mb-md-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-md-5xl {
    margin-top: 5rem !important;
  }
  .mb-md-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-md-6xl {
    margin-top: 6rem !important;
  }
  .mb-md-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-md-7xl {
    margin-top: 7rem !important;
  }
  .mb-md-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-md-8xl {
    margin-top: 8rem !important;
  }
  .mb-md-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-md-9xl {
    margin-top: 9rem !important;
  }
  .mb-md-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-md-10xl {
    margin-top: 10rem !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .m-inline-md-auto {
    margin-inline: auto !important;
  }
  .m-inline-md-inherit {
    margin-inline: inherit !important;
  }
  .position-md-static {
    position: static !important;
  }
  .position-md-relative {
    position: relative !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
  .md-visible {
    visibility: visible !important;
  }
  .md-invisible {
    visibility: hidden !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-66 {
    width: 66% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .pageLayout > aside {
    padding-block: 6.25rem 0.625rem;
  }
  .pageLayout > aside iframe {
    height: 68.75rem;
  }
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  .rounded-lg-sm {
    border-radius: 8px !important;
  }
  .rounded-lg-md {
    border-radius: 16px !important;
  }
  .rounded-lg-lg {
    border-radius: 32px !important;
  }
  .rounded-lg-full {
    border-radius: 100vmax !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-lg-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinklg--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-lg-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .fz-lg-xs {
    font-size: 0.75rem !important;
  }
  .fz-lg-sm {
    font-size: 0.875rem !important;
  }
  .fz-lg-base {
    font-size: 1rem !important;
  }
  .fz-lg-lg {
    font-size: 1.125rem !important;
  }
  .fz-lg-xl {
    font-size: 1.25rem !important;
  }
  .fz-lg-xxl {
    font-size: 1.5rem !important;
  }
  .fz-lg-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-lg-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-lg-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-lg-bold {
    font-weight: bold !important;
  }
  .lh-lg-1 {
    line-height: 1 !important;
  }
  .lh-lg-sm {
    line-height: 1.3 !important;
  }
  .lh-lg-md {
    line-height: 1.5 !important;
  }
  .lh-lg-base {
    line-height: 2 !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-lg {
    display: grid !important;
  }
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-xs {
    gap: 0.25rem !important;
  }
  .gap-lg-sm {
    gap: 0.5rem !important;
  }
  .gap-lg-md {
    gap: 1rem !important;
  }
  .gap-lg-lg {
    gap: 1.5rem !important;
  }
  .gap-lg-xl {
    gap: 2rem !important;
  }
  .gap-lg-xxl {
    gap: 2.5rem !important;
  }
  .gap-lg-xxxl {
    gap: 3rem !important;
  }
  .gap-lg-4xl {
    gap: 4rem !important;
  }
  .gap-lg-5xl {
    gap: 5rem !important;
  }
  .gap-lg-6xl {
    gap: 6rem !important;
  }
  .gap-lg-7xl {
    gap: 7rem !important;
  }
  .gap-lg-8xl {
    gap: 8rem !important;
  }
  .gap-lg-9xl {
    gap: 9rem !important;
  }
  .gap-lg-10xl {
    gap: 10rem !important;
  }
  .gap-x-lg-0 {
    column-gap: 0 !important;
  }
  .gap-x-lg-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-lg-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-lg-md {
    column-gap: 1rem !important;
  }
  .gap-x-lg-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-lg-xl {
    column-gap: 2rem !important;
  }
  .gap-x-lg-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-lg-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-lg-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-lg-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-lg-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-lg-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-lg-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-lg-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-lg-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-lg-0 {
    row-gap: 0 !important;
  }
  .gap-y-lg-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-lg-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-lg-md {
    row-gap: 1rem !important;
  }
  .gap-y-lg-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-lg-xl {
    row-gap: 2rem !important;
  }
  .gap-y-lg-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-lg-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-lg-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-lg-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-lg-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-lg-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-lg-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-lg-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-lg-10xl {
    row-gap: 10rem !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-lg-xs {
    margin-top: 0.25rem !important;
  }
  .mb-lg-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-lg-sm {
    margin-top: 0.5rem !important;
  }
  .mb-lg-md {
    margin-bottom: 1rem !important;
  }
  .mt-lg-md {
    margin-top: 1rem !important;
  }
  .mb-lg-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-lg-lg {
    margin-top: 1.5rem !important;
  }
  .mb-lg-xl {
    margin-bottom: 2rem !important;
  }
  .mt-lg-xl {
    margin-top: 2rem !important;
  }
  .mb-lg-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-lg-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-lg-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-lg-xxxl {
    margin-top: 3rem !important;
  }
  .mb-lg-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-lg-4xl {
    margin-top: 4rem !important;
  }
  .mb-lg-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-lg-5xl {
    margin-top: 5rem !important;
  }
  .mb-lg-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-lg-6xl {
    margin-top: 6rem !important;
  }
  .mb-lg-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-lg-7xl {
    margin-top: 7rem !important;
  }
  .mb-lg-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-lg-8xl {
    margin-top: 8rem !important;
  }
  .mb-lg-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-lg-9xl {
    margin-top: 9rem !important;
  }
  .mb-lg-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-lg-10xl {
    margin-top: 10rem !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .m-inline-lg-auto {
    margin-inline: auto !important;
  }
  .m-inline-lg-inherit {
    margin-inline: inherit !important;
  }
  .position-lg-static {
    position: static !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
  .lg-visible {
    visibility: visible !important;
  }
  .lg-invisible {
    visibility: hidden !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-66 {
    width: 66% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .step__content {
    column-gap: 2rem;
  }
  .rounded-xl-0 {
    border-radius: 0 !important;
  }
  .rounded-xl-sm {
    border-radius: 8px !important;
  }
  .rounded-xl-md {
    border-radius: 16px !important;
  }
  .rounded-xl-lg {
    border-radius: 32px !important;
  }
  .rounded-xl-full {
    border-radius: 100vmax !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-xl-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinkxl--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xl-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .fz-xl-xs {
    font-size: 0.75rem !important;
  }
  .fz-xl-sm {
    font-size: 0.875rem !important;
  }
  .fz-xl-base {
    font-size: 1rem !important;
  }
  .fz-xl-lg {
    font-size: 1.125rem !important;
  }
  .fz-xl-xl {
    font-size: 1.25rem !important;
  }
  .fz-xl-xxl {
    font-size: 1.5rem !important;
  }
  .fz-xl-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-xl-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-xl-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-xl-bold {
    font-weight: bold !important;
  }
  .lh-xl-1 {
    line-height: 1 !important;
  }
  .lh-xl-sm {
    line-height: 1.3 !important;
  }
  .lh-xl-md {
    line-height: 1.5 !important;
  }
  .lh-xl-base {
    line-height: 2 !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-xl {
    display: grid !important;
  }
  .grid-cols-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-xl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-xl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-xl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-xl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-xs {
    gap: 0.25rem !important;
  }
  .gap-xl-sm {
    gap: 0.5rem !important;
  }
  .gap-xl-md {
    gap: 1rem !important;
  }
  .gap-xl-lg {
    gap: 1.5rem !important;
  }
  .gap-xl-xl {
    gap: 2rem !important;
  }
  .gap-xl-xxl {
    gap: 2.5rem !important;
  }
  .gap-xl-xxxl {
    gap: 3rem !important;
  }
  .gap-xl-4xl {
    gap: 4rem !important;
  }
  .gap-xl-5xl {
    gap: 5rem !important;
  }
  .gap-xl-6xl {
    gap: 6rem !important;
  }
  .gap-xl-7xl {
    gap: 7rem !important;
  }
  .gap-xl-8xl {
    gap: 8rem !important;
  }
  .gap-xl-9xl {
    gap: 9rem !important;
  }
  .gap-xl-10xl {
    gap: 10rem !important;
  }
  .gap-x-xl-0 {
    column-gap: 0 !important;
  }
  .gap-x-xl-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-xl-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-xl-md {
    column-gap: 1rem !important;
  }
  .gap-x-xl-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-xl-xl {
    column-gap: 2rem !important;
  }
  .gap-x-xl-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-xl-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-xl-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-xl-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-xl-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-xl-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-xl-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-xl-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-xl-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-xl-0 {
    row-gap: 0 !important;
  }
  .gap-y-xl-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-xl-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-xl-md {
    row-gap: 1rem !important;
  }
  .gap-y-xl-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-xl-xl {
    row-gap: 2rem !important;
  }
  .gap-y-xl-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-xl-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-xl-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-xl-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-xl-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-xl-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-xl-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-xl-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-xl-10xl {
    row-gap: 10rem !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
  .mh-xl-100 {
    max-height: 100% !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-xl-xs {
    margin-top: 0.25rem !important;
  }
  .mb-xl-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-xl-sm {
    margin-top: 0.5rem !important;
  }
  .mb-xl-md {
    margin-bottom: 1rem !important;
  }
  .mt-xl-md {
    margin-top: 1rem !important;
  }
  .mb-xl-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-xl-lg {
    margin-top: 1.5rem !important;
  }
  .mb-xl-xl {
    margin-bottom: 2rem !important;
  }
  .mt-xl-xl {
    margin-top: 2rem !important;
  }
  .mb-xl-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-xl-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-xl-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-xl-xxxl {
    margin-top: 3rem !important;
  }
  .mb-xl-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-xl-4xl {
    margin-top: 4rem !important;
  }
  .mb-xl-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-xl-5xl {
    margin-top: 5rem !important;
  }
  .mb-xl-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-xl-6xl {
    margin-top: 6rem !important;
  }
  .mb-xl-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-xl-7xl {
    margin-top: 7rem !important;
  }
  .mb-xl-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-xl-8xl {
    margin-top: 8rem !important;
  }
  .mb-xl-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-xl-9xl {
    margin-top: 9rem !important;
  }
  .mb-xl-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-xl-10xl {
    margin-top: 10rem !important;
  }
  .m-inline-xl-auto {
    margin-inline: auto !important;
  }
  .m-inline-xl-inherit {
    margin-inline: inherit !important;
  }
  .position-xl-static {
    position: static !important;
  }
  .position-xl-relative {
    position: relative !important;
  }
  .position-xl-absolute {
    position: absolute !important;
  }
  .position-xl-fixed {
    position: fixed !important;
  }
  .position-xl-sticky {
    position: sticky !important;
  }
  .xl-visible {
    visibility: visible !important;
  }
  .xl-invisible {
    visibility: hidden !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-66 {
    width: 66% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .mw-xl-100 {
    max-width: 100% !important;
  }
}

@media (max-width: 1199.98px) {
  .layout-header__logo img {
    max-height: 2.125rem;
  }
  .warning__list-wrapper {
    margin-inline: 0.75rem;
    padding: 1rem var(--side-padding-mobile);
  }
  .section {
    padding: 3.5rem 0;
  }
  .section__inner {
    width: 90%;
  }
  .bg_section {
    padding: 3.5rem 0;
  }
  .bg_section-blue {
    padding: 3.5rem 0;
  }
  .bg_section-gray {
    padding: 3.5rem 0;
  }
  .section-mv {
    width: 100%;
    padding: 1.875rem 0 6.25rem;
    margin: 3.125rem 0 3.75rem;
    height: fit-content;
    background: url(../images/mv_bg-sp.svg) center center/cover;
  }
  .section-mv .mv-area {
    max-width: fit-content;
    align-items: center;
    margin-left: 0;
  }
  .section-mv .mv-catch {
    margin: 0 0.625rem;
  }
  .section-mv .mv-catch h1 {
    font-size: 2.375rem;
    letter-spacing: -0.02rem;
    margin-top: 2.5rem;
    white-space: nowrap;
  }
  .section-mv .mv-catch > p {
    font-size: 1rem;
    letter-spacing: -0.06rem;
    margin: 1.125rem 0 1.125rem;
  }
  .section-mv .btn-wrapper {
    display: flex;
    row-gap: 0.75rem;
    align-items: center;
  }
  .section-mv .btn-wrapper .btn {
    margin: 0 0.25rem;
  }
  .section-mv .btn-wrapper {
    margin-bottom: 1.5rem;
  }
  .section-mv .mv-content-btn {
    display: block;
    width: 100%;
    max-width: 21.875rem;
    height: 3.5rem;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  .section-mv .mv-dl-btn {
    width: 100%;
    max-width: 21.875rem;
    height: 3.5rem;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  .section-mv .mv-cardWrapper {
    padding: 0;
  }
  .section-mv .mv-card {
    width: fit-content;
    max-width: fit-content !important;
    padding: 0 1.5rem 0%;
    position: absolute;
    bottom: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-mv .mv-card .item-head {
    margin-right: min(0.5%, 0.125rem);
    min-height: 7.5rem;
  }
  .section-mv .mv-card .item-head::after {
    top: 0.625rem;
    right: 1.25rem;
  }
  .section-mv .mv-card .item-img {
    width: 3.4375rem;
    height: 3.4375rem;
  }
  .section-mv .mv-card .item-box {
    width: 9.375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-mv .mv-card .item-headding {
    font-size: 1rem;
    white-space: nowrap;
  }
  .section-mv .mv-card .item-headding .item-hedding-sub {
    font-size: 0.75rem;
  }
  .section-mv .mv-card .item-headding .item-hedding-col br {
    display: block;
  }
  .section-mv .mv-card .item-text {
    font-size: 3.75rem;
    line-height: 1;
    white-space: nowrap;
    margin-left: 0;
  }
  .section-mv .mv-card .item-text span {
    font-size: 1.25rem;
  }
  .button {
    font-size: 1.125rem;
    border-radius: 4px;
  }
  .step__content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .step__content .step__inner {
    width: 100%;
    padding: 1.25rem 1.25rem 1.875rem;
    min-height: fit-content;
    margin-bottom: 2.8125rem;
  }
  .step__content .step__inner::after {
    top: 101%;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .step__content .step__inner .step__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9375rem;
  }
  .step__content .step__inner .step_number {
    margin: 0 0.625rem 1.5rem 0;
  }
  .step__content .step__inner .step_img {
    margin-bottom: 0;
  }
  .step__illustration {
    padding: 1.875rem 1.25rem;
  }
  .step__illustration .step_img {
    width: 100%;
    height: 100%;
  }
  .step__content.border_blue {
    padding-top: 1.25rem;
  }
  .step__content.border_blue::after {
    width: 0.125rem;
    height: calc(100% - 6.25rem);
  }
  .step__content.border_blue .step__inner {
    width: 100%;
    max-width: 37.5rem;
    height: auto;
    min-height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1.875rem 1.5rem;
  }
  .step__content.border_blue .step__inner::before {
    width: 7.625rem;
    left: 1.875rem;
    transform: translateX(0%);
  }
  .step__content.border_blue .step_number {
    font-size: 1.25rem;
    left: 3.125rem;
    transform: translateX(0%);
  }
  .step__content.border_blue .step_number span {
    font-size: 1.75rem;
  }
  .step__content.border_blue .step_number.last {
    font-size: 1.25rem;
    left: 2.5rem;
    transform: translateX(0%);
  }
  .step__content.border_blue .step_img img {
    padding-top: 1.25rem;
  }
  .step__content.border_blue .step_img {
    width: 6.25rem;
    height: 100%;
    margin: 0.9375rem 0.9375rem 0;
  }
  .step__content.border_blue .step__inner_bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .scene__content {
    padding: 2.125rem 1.25rem 1.5rem;
  }
  .scene__content .scene_img img {
    height: 2.5rem;
  }
  .scene__content .scene_box {
    width: 100%;
    height: auto;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 0 0.9375rem -0.3125rem rgba(100, 100, 100, 0.3);
  }
  .scene__content .scene_box .scene_img-sub.first {
    height: 6.25rem;
  }
  .scene__content .scene_box .scene_img-sub {
    width: 15rem;
    height: auto;
  }
  .service__content .service__inner {
    width: 90%;
    height: auto;
    padding: 1.5rem 1.25rem;
  }
  .service__content .service__inner > p {
    padding-left: 1.25rem;
    text-indent: -1.25rem;
  }
  .service__content .service_card {
    flex-direction: column;
  }
  .service__content .service_box {
    width: 100%;
    height: fit-content;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
  .service__content .service_box:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
  }
  .service__content .service_box:first-of-type {
    padding-right: 0;
  }
  .service__content .service_box:last-of-type {
    padding-left: 0;
  }
  .service__content .service_box::before {
    content: "";
    display: none;
  }
  .service__content .service_box > h3 {
    font-size: 1.125rem;
    margin: 0 0 1rem;
  }
  .service__content .service_box .service_img {
    flex-wrap: nowrap;
  }
  .service__content .service_box .service_img.credit_card img:nth-of-type(3),
  .service__content .service_box .service_img.credit_card img:nth-of-type(4),
  .service__content .service_box .service_img.credit_card img:nth-of-type(5) {
    max-height: 1.875rem;
  }
  .service__content .service_box .service_img.id_clearing {
    width: 18.75rem;
    flex-wrap: wrap;
  }
  .service__content .service_box .service_img.pay {
    margin-top: 0;
  }
  .service__content .service_box .service_box_inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .service__content .service_box .service_img.cvs {
    margin: 0 0.75rem 0 0;
    width: fit-content;
  }
}

@media (max-width: 991.98px) {
  .pageLayout > aside h2 {
    margin-bottom: 2rem;
  }
  .pageLayout > aside {
    padding-block: 3.125rem 0.625rem;
  }
  .pageLayout > aside iframe {
    height: 100vh;
  }
  .sp_show {
    display: block;
  }
  .primary-heading {
    font-size: 1.875rem;
  }
  .primary-heading.row-heading .primary-heading-img img {
    height: 3.125rem;
  }
  .primary-heading.col-sub {
    font-size: 1.875rem;
  }
  .case__content .case__main .case_title {
    font-size: 1.75rem;
  }
  .case__content .case__main .case_text {
    font-size: 1rem;
    margin-right: 1.25rem;
  }
  .case__content .case__main .case_text br {
    display: none;
  }
  .case__content .case__bottom .case__left .case_sub-text,
  .case__content .case__bottom .case__right .case_sub-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --headerHeight: 3.75rem;
    --footerHeight: 5rem;
  }
  .layout-header {
    padding-inline: 1rem;
    position: static;
  }
  .layout-header__inner {
    min-height: 3.125rem;
  }
  .layout-header__logo img {
    max-height: 1.1875rem;
  }
  .layout-header .button-wrapper .button {
    max-width: 5.875rem;
    height: 2.5rem;
    padding: 0.75rem 0.625rem;
    line-height: 1.2;
    font-size: 0.75rem;
  }
  .layout-header .button-wrapper .button-dl br {
    display: block;
  }
  .layout-header .button-wrapper .button-contact {
    margin-right: 0.25rem;
  }
  .layout-footer {
    padding-inline: var(--side-padding-mobile);
  }
  .layout-footer {
    padding-bottom: 3.125rem;
  }
  .layout-footer__inner {
    padding-block: 0 1rem;
    width: 90%;
  }
  .layout-footer__inner.__is-pre {
    padding-block: 0.3125rem;
  }
  .layout-footer__inner .copyright {
    padding-block: 1rem 0.625rem;
  }
  .sidebar-layout-container__to-pageTop {
    background: rgba(0, 80, 164, 0.75);
    width: 3.5rem;
    height: 3.5rem;
    right: 0.625rem;
    bottom: 3.75rem;
  }
  .layout-footer__btn {
    width: 100%;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s;
  }
  .layout-footer__btn .button-contact {
    height: 3.125rem;
    font-size: 1rem;
    border-radius: 0px;
  }
  .section-mv {
    width: 100%;
    padding: 0 0 6.25rem;
    margin: 0 0 17.5rem;
    height: fit-content;
  }
  .section-mv .mv-area {
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
  .section-mv .mv-images {
    order: 1;
    width: 90%;
    padding-top: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .section-mv .mv-catch {
    order: 2;
  }
  .section-mv .mv-catch h1 {
    font-size: 2rem;
    letter-spacing: -0.02rem;
    margin-top: 0;
  }
  .section-mv .mv-catch h1 p {
    padding-top: 0.625rem;
    letter-spacing: -0.1rem;
  }
  .section-mv .mv-catch > p {
    max-width: 21.875rem;
    font-size: 1rem;
    margin: 1.125rem 0 1.125rem;
  }
  .section-mv .mv-catch > p br {
    display: none;
  }
  .section-mv .mv-card {
    width: 100%;
    max-width: 21.875rem;
    padding: 0 0.75rem 1.5rem;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    bottom: -17.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-mv .mv-card .item-head {
    justify-content: flex-start;
  }
  .section-mv .mv-card .item-head::after {
    content: "";
    display: none;
  }
  .section-mv .mv-card .item-head {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .section-mv .mv-card .item-head:last-of-type {
    border-bottom: none;
    padding-top: 0.875rem;
  }
  .section-mv .mv-card .second,
  .section-mv .mv-card .fast {
    width: 8.75rem;
  }
  .section-mv .mv-card .item-img {
    width: 4.25rem;
    height: 4.25rem;
  }
  .section-mv .mv-card .item-box {
    width: fit-content;
    flex-direction: row;
    align-items: center;
  }
  .section-mv .mv-card .item-headding {
    font-size: 1.125rem;
  }
  .section-mv .mv-card .item-headding .item-hedding-sub {
    font-size: 1rem;
  }
  .section-mv .mv-card .item-text {
    font-size: 4.5rem;
    margin-left: 1.25rem;
  }
  .section-mv .mv-card .item-text span {
    font-size: 2rem;
  }
  .page-heading::after {
    width: 1.25rem;
    height: 0.125rem;
  }
  .primary-heading {
    font-size: 1.5rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    margin-bottom: 2.8125rem;
  }
  .primary-heading p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .primary-heading::before {
    width: 10rem;
    bottom: -1rem;
  }
  .primary-heading.row-heading .primary-heading-img img {
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .primary-heading.col-sub {
    font-size: 1.5rem;
  }
  .lead-title {
    font-size: 1.25rem;
  }
  .lead-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .lead-text-sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .button-wrapper {
    width: 100%;
    max-width: 14.5rem;
  }
  .case__content .case__inner {
    width: 100%;
    margin-bottom: 2rem;
  }
  .case__content .case__main {
    width: 100%;
    padding: 1.5rem 2rem 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 3.4375rem;
  }
  .case__content .case__main .case_number {
    font-size: 1.125rem;
  }
  .case__content .case__main .case_title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .case__content .case__main .case_text {
    font-size: 1rem;
    margin-right: 0;
  }
  .case__content .case__main .case_text br {
    display: none;
  }
  .case__content .case__main.fast {
    padding: 1.875rem 2rem 0;
  }
  .case__content .case__bottom {
    width: 100%;
    flex-direction: column;
  }
  .case__content .case__bottom > div {
    width: 100%;
  }
  .case__content .case__bottom .case__left,
  .case__content .case__bottom .case__right {
    height: 7.5rem;
  }
  .case__content .case__bottom .case__left h3,
  .case__content .case__bottom .case__right h3 {
    font-size: 1rem;
    top: -1.25rem;
  }
  .case__content .case__bottom .case__left h3::after,
  .case__content .case__bottom .case__right h3::after {
    width: 8.75rem;
    top: 1.0625rem;
  }
  .case__content .case__bottom .case__left h3::before,
  .case__content .case__bottom .case__right h3::before {
    top: -1.5625rem;
    left: 20%;
  }
  .case__content .case__bottom .case__left .case_sub-text,
  .case__content .case__bottom .case__right .case_sub-text {
    font-size: 1.125rem;
  }
  .case__content .case__bottom .case__left .cas_img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .case__content .case__bottom .case__right {
    margin-top: 1.5rem;
  }
  .case__content .case__bottom .case__right h3::before {
    top: -10.5625rem;
    left: 70%;
  }
  .case__content .case__bottom .case__right .cas_img {
    width: 3.5625rem;
    height: 2.25rem;
  }
  .step__content .step__inner h3 {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
  .step__content .step__inner h3.line {
    padding: 0;
    margin-bottom: 0.9375rem;
  }
  .step__content .step__inner .step_text {
    font-size: 0.875rem;
  }
  .step__content .step__inner .step_text-sub {
    font-size: 0.75rem;
  }
  .step__content .step__inner:last-of-type {
    margin-bottom: 0;
  }
  .step__illustration .step_img {
    max-width: 21.25rem;
  }
  .step__content.border_blue .step_img {
    width: 6.5rem;
    height: 100%;
    margin: 0.9375rem 0.9375rem 0;
  }
  .scene__content .scene_box h3 {
    font-size: 1.25rem;
  }
  .question__content .question__inner {
    padding: 1.25rem;
  }
  .question__content .question__inner > h3 {
    font-size: 1rem;
  }
  .question__content .question__inner > h3 span {
    font-size: 1.5rem;
  }
  .question__content .question__inner > p {
    font-size: 0.875rem;
    line-height: 1.4;
    align-items: flex-start;
    padding-left: 1.25rem;
  }
  .question__content .question__inner > p span {
    font-size: 1.5rem;
    line-height: 0.9;
  }
  .question__content .question__inner .annotation {
    padding-left: 2.5rem;
    text-indent: -1.25rem;
  }
  .question__content .question__inner.last > p {
    padding-left: 3.125rem;
    text-indent: -1.875rem;
  }
  .px-sm-md {
    padding-inline: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .step__content.border_blue .step_img {
    width: 12.5rem;
    height: 100%;
    margin: 0 0.9375rem 0 0;
  }
}
