@charset "UTF-8";

:where(:root) {
  --color-main: #0054db;
  --color-accent: #ff4c00;
  --color-text: #242a33;
  interpolate-size: allow-keywords;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-inline-size: 100%;
  display: block flow;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

* {
  /* Prevent inline elements from extending beyond their container's bounds. */
  min-inline-size: 0;
}

ul,
ol {
  list-style: none;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 62.5%;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8125;
  overflow-x: clip;
  min-block-size: 100svb;
}

img {
  block-size: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

@media (768px <= width) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.inner {
  padding-inline: 2rem;
  box-sizing: content-box;
  margin-inline: auto;
}

@media (768px <= width) {
  .inner {
    max-inline-size: 120rem;
    padding-inline: 4rem;
  }
}

@media (768px <= width) {
  .hidden-pc {
    display: none !important;
  }
}

.visible-pc {
  display: none !important;
}

@media (768px <= width) {
  .visible-pc {
    display: revert;
  }
}

.header {
  position: fixed;
  z-index: 41;
  inset-inline: 0;
  padding-block-start: 1rem;
}
@media (768px <= width) {
  .header {
    padding-block-start: 1.5rem;
  }
}

@media (768px <= width) {
  .header__inner {
    max-inline-size: 128rem;
    padding-inline: 2rem;
  }
}
@media (1368px <= width) {
  .header__inner {
    max-inline-size: 119rem;
  }
}

@media (768px <= width) {
  .header__container {
    display: block flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (1368px <= width) {
  .header__container {
    margin-inline-end: -8.8rem;
  }
}

.header__logo {
  max-inline-size: 20rem;
  margin-inline: -0.4055rem;
}
.header__logo img {
  inline-size: 100%;
}

.header__nav {
  display: none;
}
@media (768px <= width) {
  .header__nav {
    display: block flex;
    column-gap: 1.2rem;
  }
  .header__nav .button ,
  .header__nav .secondary-button{
    padding-block: 1.6rem;
    padding-inline-start: 3.2rem;
    column-gap: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (1368px <= width) {
  .header__nav .button,
  .header__nav .secondary-button {
    padding-inline-start: 5.7rem;
    column-gap: 2.4rem;
  }
}

@media (768px <= width) {
  .header__list {
    display: block flex;
    align-items: center;
    column-gap: 0.9rem;
  }
}
@media (768px <= width) {
  .header__list li {
    line-height: 1;
  }
}
@media (768px <= width) {
  .header__list a {
    padding-inline: 0.8rem;
    color: #fff;
    font-size: 1.4rem;
    line-height: calc(17 / 14);
    transition: color 0.3s ease;
  }
  .is-scrolled .header__list a {
    color: var(--color-text);
  }
}

.drawer-icon {
  position: fixed;
  z-index: 41;
  inset-block-start: 1rem;
  inset-inline-end: 2rem;
  inline-size: 5.5rem;
  block-size: 5.5rem;
  padding-block: 1.7rem;
  padding-inline: 1.4rem;
  display: block flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  transition: background-color 0.5s ease;
}
@media (768px <= width) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-open {
  background-color: var(--color-main);
}

.drawer-icon__bar {
  inline-size: 100%;
  block-size: 0.3rem;
  background-color: var(--color-main);
  transition: all 0.5s ease;
}
.is-open .drawer-icon__bar {
  background-color: #fff;
}
.is-open .drawer-icon__bar:nth-of-type(1) {
  rotate: 225deg;
  translate: 0 0.9rem;
}
.is-open .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.is-open .drawer-icon__bar:nth-of-type(3) {
  rotate: -225deg;
  translate: 0 -0.9rem;
}

.drawer {
  position: fixed;
  z-index: 40;
  overflow-y: scroll;
  inset-inline: 0;
  translate: 0 -101%;
  transition: translate 0.5s ease;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-main);
  border-end-end-radius: 2rem;
  border-end-start-radius: 2rem;
  padding-block-start: 11.5rem;
}
.drawer.is-open {
  translate: 0;
}

.drawer__body {
  inline-size: 100%;
  block-size: fit-content;
  position: relative;
  padding-block-end: 2rem;
  padding-inline: 2rem;
}

.drawer__list li {
  line-height: 1;
}
.drawer__list a {
  line-height: calc(29 / 16);
  display: block grid;
  align-content: center;
  block-size: 5.9rem;
  border-block-end: 0.1rem dashed;
  color: #0054db;
  font-size: 1.6rem;
}
.drawer__list li:first-of-type a {
  border-block-start: 0.1rem dashed;
  block-size: 6rem;
}

.first-view {
  background-color: var(--color-main);
  padding-block-start: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (768px <= width) {
  .first-view {
    padding-block-start: 18rem;
    padding-block-end: 33.6rem;
  }
}

@media (768px <= width) {
  .first-view__inner {
    position: relative;
  }
}

.first-view__image {
  max-inline-size: 23.7rem;
  margin-inline: auto;
  block-size: 27.7rem;
}
@media (768px <= width) {
  .first-view__image {
    max-inline-size: 36.7rem;
    block-size: auto;
    position: absolute;
    inset-block-start: -7rem;
    inset-inline-start: 36.8rem;
  }
}
.first-view__image img {
  inline-size: 100%;
  block-size: 100%;
}
@media (768px <= width) {
  .first-view__image img {
    block-size: auto;
  }
}

.first-view__text-wrap {
  color: #fff;
  margin-block-start: 1rem;
  text-align: center;
}
@media (768px <= width) {
  .first-view__text-wrap {
    position: relative;
    text-align: revert;
    margin-block-start: revert;
  }
}

.first-view__text {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: calc(31 / 26);
  text-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.25);
}
@media (768px <= width) {
  .first-view__text {
    font-size: 3rem;
    line-height: calc(36 / 30);
  }
}
.first-view__text.-large {
  margin-block-start: 1.3rem;
  font-weight: 900;
  font-size: 5rem;
  line-height: calc(60 / 50);
}
@media (768px <= width) {
  .first-view__text.-large {
    margin-block-start: 1.2rem;
    font-size: 6rem;
    line-height: calc(72 / 60);
  }
}
.first-view__text .highlight {
  position: relative;
  z-index: 1;
}
.first-view__text .highlight::before,
.first-view__text .highlight::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 0.3rem;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
  border-radius: calc(infinity * 1px);
}
.first-view__text .highlight::before {
  inset-block-end: 0.3rem;
}
@media (768px <= width) {
  .first-view__text .highlight::before {
    inset-block-end: 0.6rem;
  }
}
.first-view__text .highlight::after {
  inset-block-end: -0.2rem;
}
@media (768px <= width) {
  .first-view__text .highlight::after {
    inset-block-end: 0.1rem;
  }
}
.first-view__text .small {
  font-size: 3.6rem;
  line-height: 1;
}
@media (768px <= width) {
  .first-view__text .small {
    font-weight: 700;
    font-size: 4rem;
  }
}

.first-view__title {
  margin-block-start: 0.6rem;
  font-weight: 900;
  font-size: 7rem;
  line-height: calc(84 / 70);
  margin-inline-end: -0.4rem;
  text-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.25);
}
@media (768px <= width) {
  .first-view__title {
    font-size: 9rem;
    line-height: calc(108 / 90);
    margin-inline-end: revert;
  }
}

.first-view__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
  margin-block-start: 1rem;
  text-align: center;
}

@media (768px <= width) {
  .first-view__button {
    display: none;
  }
}

.first-view__highlights-image {
  margin-block-start: 4rem;
  margin-inline: -0.842rem;
  max-inline-size: revert;
}

@media (768px <= width) {
  .first-view__highlights-image {
    max-inline-size: 58.7rem;
    position: absolute;
    margin-block-start: revert;
    margin-inline: revert;
    inset-block-end: -33.6rem;
    inset-inline-start: 4.6rem;
  }
}

.first-view__highlights-image img {
  inline-size: 100%;
}

.first-view__form-block {
  display: none;
}

@media (768px <= width) {
  .first-view__form-block {
    display: block flow;
    position: absolute;
    background-color: #fff;
    border-radius: 2.4rem;
    inline-size: 48rem;
    inset-inline-end: 3.8rem;
    inset-block-start: -7.1rem;
  }
}

@media (768px <= width) {
  .first-view-form-block {
    padding-inline: 4rem;
    padding-block: 2.4rem;
  }
}

@media (768px <= width) {
  .first-view-form-block__title {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: calc(26 / 18);
  }
}

@media (768px <= width) {
  .first-view-form-block__text {
    margin-block-start: 0.4rem;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: calc(17 / 14);
  }
}

@media (768px <= width) {
  .first-view-form-block__area {
    margin-block-start: 1.2rem;
  }
}

@media (768px <= width) {
  .first-view-form__lists {
    display: block grid;
    row-gap: 1.2rem;
  }
}

@media (768px <= width) {
  .first-view-form__list {
    display: block grid;
    row-gap: 0.4rem;
  }
}

@media (768px <= width) {
  .first-view-form__text {
    display: block flex;
    column-gap: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    align-items: center;
  }
}

@media (768px <= width) {
  .first-view-form__required,
  .first-view-form__optional {
    color: #fff;
    display: block grid;
    place-content: center;
    padding-inline: 1.6rem;
    padding-block: 0.2rem;
    border-radius: calc(infinity * 1px);
    font-size: 1.4rem;
    line-height: calc(17 / 14);
  }
}

@media (768px <= width) {
  .first-view-form__required {
    background-color: #f73331;
  }
}

@media (768px <= width) {
  .first-view-form__optional {
    background-color: #22833b;
  }
}

@media (768px <= width) {
  .first-view-form__input [type="text"],
  .first-view-form__input [type="email"],
  .first-view-form__input [type="tel"],
  .first-view-form__input select,
  .first-view-form__input textarea {
    box-shadow: none;
    border: 0.1rem solid #a0a8b4;
    border-radius: 0.5rem;
    padding-block: 0.9rem;
    padding-inline: 1.5rem;
    appearance: none;
    inline-size: 100%;
    color: var(--color-text);
    background-color: #effcff;
    font-family: inherit;
    font-size: 1.4rem;
    line-height: calc(17 / 14);
  }
  .first-view-form__input [type="text"]::placeholder,
  .first-view-form__input [type="email"]::placeholder,
  .first-view-form__input [type="tel"]::placeholder,
  .first-view-form__input select::placeholder,
  .first-view-form__input textarea::placeholder {
    color: rgba(36, 42, 51, 0.64);
  }
  .first-view-form__input [type="text"]:focus,
  .first-view-form__input [type="email"]:focus,
  .first-view-form__input [type="tel"]:focus,
  .first-view-form__input select:focus,
  .first-view-form__input textarea:focus {
    outline: 0.1rem solid var(--color-main);
  }
}
@media (768px <= width) {
  .first-view-form__input select {
    color: rgba(36, 42, 51, 0.64);
    background: #effcff url("../img/triangle-down.svg") no-repeat right 1em
      center/1.2rem auto;
  }
}

@media (768px <= width) {
  .first-view-form__consent {
    margin-block-start: 1.2rem;
    font-size: 1.4rem;
    line-height: calc(17 / 14);
  }
}

@media (768px <= width) {
  .first-view-form__acceptance {
    margin-block-start: 0.4rem;
  }
  .first-view-form__acceptance label {
    display: block flex;
    column-gap: 0.4rem;
    align-items: center;
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }
  .first-view-form__acceptance .wpcf7-list-item {
    margin: 0;
  }
  .first-view-form__acceptance [type="checkbox"] {
    flex-shrink: 0;
    appearance: none;
    inline-size: 1.2rem;
    block-size: 1.2rem;
    margin: 0;
    background-color: #effcff;
    border: 0.1rem solid var(--color-text);
    border-radius: 0.2rem;
    cursor: pointer;
    position: relative;
  }
  .first-view-form__acceptance [type="checkbox"]::before {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    inline-size: 0.9rem;
    block-size: 0.9rem;
    background: transparent url("../img/check-blue.svg") no-repeat center
      center/contain;
    transition: opacity 0.3s ease 0s;
    opacity: 0;
  }
  .first-view-form__acceptance [type="checkbox"]:checked::before {
    opacity: 1;
  }
}

@media (768px <= width) {
  .first-view-form__button {
    margin-block-start: 1.6rem;
    text-align: center;
  }
  .first-view-form__button [type="submit"] {
    display: inline grid;
    align-content: center;
    grid-template-columns: 1fr 2rem;
    color: #fff;
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
    border-radius: calc(infinity * 1px);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-block: 1.6rem;
    padding-inline-start: 5.7rem;
    padding-inline-end: 7.6rem;
    border: none;
    cursor: pointer;
    background-image: url("../img/circle-triangle-right.svg"),
      linear-gradient(to right, #ff4d00, #ffb800);
    background-repeat: no-repeat;
    background-position: right 3.2rem center, center;
    background-size: 2rem auto, 100% 100%;
    transition: translate 0.1s ease, box-shadow 0.1s ease;
  }
}
@media (768px <= width) and (any-hover: hover) {
  .first-view-form__button [type="submit"]:hover {
    translate: 0 0.4rem;
    box-shadow: none;
  }
}
@media (768px <= width) {
  .first-view-form__button [type="submit"]:active {
    translate: 0 0.4rem;
    box-shadow: none;
  }
}

.clients-marquee {
  padding-block: 1rem;
  display: block grid;
  row-gap: 1rem;
}
@media (768px <= width) {
  .clients-marquee {
    row-gap: 2rem;
  }
}

.clients-row-top__swiper-wrapper {
  transition-timing-function: linear;
}

.clients-row-top__swiper-slide {
  max-inline-size: 12rem;
}
@media (768px <= width) {
  .clients-row-top__swiper-slide {
    max-inline-size: 22rem;
  }
}
.clients-row-top__swiper-slide img {
  inline-size: 100%;
}

.clients-row-bottom__swiper-wrapper {
  transition-timing-function: linear;
}

.clients-row-bottom__swiper-slide {
  max-inline-size: 12rem;
}
@media (768px <= width) {
  .clients-row-bottom__swiper-slide {
    max-inline-size: 22rem;
  }
}
.clients-row-bottom__swiper-slide img {
  inline-size: 100%;
}

.links {
  padding-block: 2rem;
}
@media (768px <= width) {
  .links {
    padding-block: 1.8rem;
  }
}

.links__container {
  max-inline-size: 28rem;
  margin-inline: auto;
  display: block grid;
  row-gap: 1.5rem;
}
@media (768px <= width) {
  .links__container {
    grid-template-columns: repeat(2, 1fr);
    max-inline-size: 62rem;
    column-gap: 3rem;
  }
}

.links-button {
  padding-inline: 2rem;
  padding-block: 2.8rem;
  border-radius: 1rem;
  background-color: var(--color-main);
  color: #fff;
  display: block grid;
  align-items: center;
  grid-template-columns: 1fr 2rem;
  column-gap: 1rem;
  line-height: 1.5;
}
.links-button svg {
  inline-size: 100%;
  block-size: auto;
}
.links-button.-download {
  background: var(--color-main)
    url("../img/links-button-background-image-01.png") no-repeat center
    right/contain;
}
.links-button.-multiple {
  background: var(--color-main)
    url("../img/links-button-background-image-02.png") no-repeat center
    right/contain;
}

.meo-overview {
  padding-block: 6rem;
  position: relative;
}
@media (768px <= width) {
  .meo-overview {
    padding-block: 8rem;
  }
}

.meo-overview__background-decoration {
  position: absolute;
  inset-inline-end: -12.5rem;
  inset-block-start: -16.4rem;
  inline-size: 25rem;
  z-index: -1;
}
@media (768px <= width) {
  .meo-overview__background-decoration {
    display: revert;
    inset-inline-end: calc(50% - 99.03rem);
    inset-block-start: -36rem;
    inline-size: 56rem;
  }
}
.meo-overview__background-decoration img {
  inline-size: 100%;
}

.meo-overview__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(35 / 24);
  text-align: center;
}
@media (768px <= width) {
  .meo-overview__title {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}
.meo-overview__title .small {
  font-size: 2rem;
}
@media (768px <= width) {
  .meo-overview__title .small {
    font-size: 2.4rem;
  }
}

.meo-overview__container {
  margin-block-start: 3.5rem;
  background-color: #effcff;
  border-radius: 2rem;
  padding-block-start: 5rem;
  padding-block-end: 5rem;
  padding-inline-start: 3rem;
  padding-inline-end: 2rem;
}
@media (768px <= width) {
  .meo-overview__container {
    margin-block-start: 6rem;
    padding-block-end: 5rem;
    padding-inline-start: 6rem;
    padding-inline-end: 6rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
    display: block flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (768px <= width) {
  .meo-overview__body {
    max-inline-size: 44.5rem;
  }
}

.meo-overview__lead {
  display: block grid;
  row-gap: 0.7rem;
}
.meo-overview__lead li {
  font-weight: 900;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-inline-start: 1.6em;
  position: relative;
}
.meo-overview__lead li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.1em;
  inset-block-start: 0.4em;
  inline-size: 2rem;
  block-size: 2rem;
  background: url("../img/check.svg") no-repeat center center/contain;
}
.meo-overview__lead li .highlight {
  position: relative;
  display: inline flow-root;
  z-index: 1;
}
.meo-overview__lead li .highlight::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0.35em;
  inline-size: 100%;
  block-size: 0.35em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
}
@media (768px <= width) {
  .meo-overview__lead li .highlight.-sp {
    display: contents;
  }
}
.meo-overview__lead li .highlight.-pc::after {
  background: none;
}
@media (768px <= width) {
  .meo-overview__lead li .highlight.-pc::after {
    background: linear-gradient(to right, #ff4d00, #ffb800);
  }
}
.meo-overview__lead .line-break-sp {
  line-height: 1.4;
}
@media (768px <= width) {
  .meo-overview__lead .line-break-sp {
    line-height: 2;
  }
}
.meo-overview__lead .line-break-sp::before {
  inset-block-start: 0.2em;
}
@media (768px <= width) {
  .meo-overview__lead .line-break-sp::before {
    inset-block-start: 0.4em;
  }
}
.meo-overview__lead .line-break-sp .highlight::after {
  inset-block-end: 0.05em; /* テキストとの距離 */
}
@media (768px <= width) {
  .meo-overview__lead .line-break-sp .highlight::after {
    inset-block-end: 0.35em; /* テキストとの距離 */
  }
}

.meo-overview__description {
  margin-block-start: 3.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
  max-inline-size: 27.5rem;
}
@media (768px <= width) {
  .meo-overview__description {
    max-inline-size: revert;
  }
}
.meo-overview__description .accent {
  color: var(--color-accent);
  font-weight: 900;
}

.meo-overview__image {
  margin-block-start: 3rem;
  margin-inline-start: 0.5rem;
  max-inline-size: 27.5rem;
}
@media (768px <= width) {
  .meo-overview__image {
    margin-block-start: revert;
    margin-inline-start: revert;
    max-inline-size: 40rem;
  }
}
.meo-overview__image img {
  inline-size: 100%;
}

.meo-types {
  padding-block-start: 2rem;
  padding-block-end: 6rem;
}
@media (768px <= width) {
  .meo-types {
    padding-block-start: 4rem;
    padding-block-end: 8rem;
  }
}

.meo-types__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(35 / 24);
  text-align: center;
}
@media (768px <= width) {
  .meo-types__title {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}
.meo-types__title .small {
  font-size: 2rem;
}
@media (768px <= width) {
  .meo-types__title .small {
    font-size: 2.4rem;
  }
}

.meo-types__description {
  margin-block-start: 3.5rem;
}
@media (768px <= width) {
  .meo-types__description {
    margin-block-start: 3rem;
    max-inline-size: 73rem;
    margin-inline: auto;
  }
}

.meo-types__container {
  margin-block-start: 4rem;
}
@media (768px <= width) {
  .meo-types__container {
    margin-block-start: 4rem;
    display: block flex;
    align-items: end;
    max-inline-size: 120rem;
    margin-inline: auto;
    position: relative;
  }
}

.meo-types__line {
  display: none;
}
@media (768px <= width) {
  .meo-types__line {
    display: revert;
    position: absolute;
  }
}
.meo-types__line.-blue {
  inset-block-start: 9rem;
  inset-inline-start: 32rem;
  inline-size: 16rem;
}
.meo-types__line.-red {
  inset-block-start: 32rem;
  inset-inline-start: 32rem;
  inline-size: 16rem;
}
.meo-types__line.-green {
  inset-block-start: 53rem;
  inset-inline-start: 32rem;
  inline-size: 16rem;
}

.meo-types__image {
  max-inline-size: 33rem;
  margin-inline: auto;
}
@media (768px <= width) {
  .meo-types__image {
    margin-block-end: 1.4rem;
  }
}
.meo-types__image img {
  inline-size: 100%;
}

.meo-types__body {
  display: block grid;
  row-gap: 2rem;
  margin-block-start: 2.7rem;
}
@media (768px <= width) {
  .meo-types__body {
    row-gap: 3rem;
    margin-block-start: revert;
    max-inline-size: 72rem;
  }
}

.meo-types-card {
  border: 0.3rem solid #d9d9d9;
  border-radius: 2rem;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.25);
  padding-block: 2.7rem;
  padding-inline: 1.7rem;
}
@media (768px <= width) {
  .meo-types-card {
    padding-block: 2.5rem;
    padding-inline: 3.1rem;
  }
}
.meo-types-card.-blue {
  border-color: #0075ff;
}
.meo-types-card.-red {
  border-color: #ff004d;
}
.meo-types-card.-green {
  border-color: #11d125;
}

.meo-types-card__title {
  font-size: 1.8rem;
  line-height: calc(32 / 18);
}
@media (768px <= width) {
  .meo-types-card__title {
    font-size: 2.4rem;
    line-height: calc(43 / 24);
  }
}
.-blue .meo-types-card__title {
  color: #0075ff;
}
.-red .meo-types-card__title {
  color: #ff004d;
}
.-green .meo-types-card__title {
  color: #11d125;
}

.meo-types-card__description {
  margin-block-start: 1.6rem;
  font-weight: 400;
}
@media (768px <= width) {
  .meo-types-card__description {
    margin-block-start: 0.5rem;
  }
}

.problem__body {
  background-color: #d8e1ef;
  padding-block: 6rem 3.6rem;
}
@media (768px <= width) {
  .problem__body {
    padding-block: 8rem 1.8rem;
  }
}

.problem__title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media (768px <= width) {
  .problem__title {
    font-size: 2.4rem;
  }
}
.problem__title .large {
  font-size: 2.4rem;
  line-height: calc(35 / 24);
}
@media (768px <= width) {
  .problem__title .large {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}

.problem__container {
  margin-block-start: 3.5rem;
}
@media (768px <= width) {
  .problem__container {
    margin-block-start: 4rem;
    max-inline-size: 97rem;
    margin-inline: auto;
    display: block flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
  }
}

.problem__list {
  background-color: #fff;
  padding-block: 3rem;
  padding-inline: 2rem;
  border-radius: 2rem;
  display: block grid;
  row-gap: 1rem;
  position: relative;
  z-index: 1;
}
.problem__list::before {
  display: none;
}
@media (768px <= width) {
  .problem__list::before {
    display: revert;
    content: "";
    position: absolute;
    inline-size: 8.5rem;
    block-size: 6.3rem;
    background: url("../img/fukidashi.svg") no-repeat center center/contain;
    inset-inline-start: -5.6rem;
    inset-block-end: 4rem;
    z-index: -1;
  }
}
.problem__list::after {
  content: "";
  position: absolute;
  inline-size: 6rem;
  block-size: 8.6rem;
  background: url("../img/sp/fukidashi.svg") no-repeat center center/contain;
  inset-inline-end: 9rem;
  inset-block-end: -4rem;
  z-index: -1;
}
@media (768px <= width) {
  .problem__list::after {
    display: none;
  }
}
@media (768px <= width) {
  .problem__list {
    padding-block: 5rem;
    padding-inline: 6rem;
  }
}
.problem__list li {
  line-height: calc(22 / 16);
  padding-inline-start: 2em;
  position: relative;
}
@media (768px <= width) {
  .problem__list li {
    line-height: calc(29 / 16);
    padding-inline-start: 2.7em;
  }
}
.problem__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.1em;
  inline-size: 2rem;
  block-size: 2rem;
  background: url("../img/check.svg") no-repeat center center/contain;
}

.problem__image {
  margin-block-start: 4.8rem;
}
@media (768px <= width) {
  .problem__image {
    max-inline-size: 31.8rem;
    margin-block-start: 1.8rem;
    margin-inline-start: 6.2rem;
  }
}
.problem__image img {
  inline-size: 100%;
}

.problem__separator {
  block-size: 6rem;
  margin-block-start: -0.1rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #d8e1ef;
}

.solution {
  padding-block: 1.9rem 21.21rem;
  position: relative;
  overflow: hidden;
}
@media (768px <= width) {
  .solution {
    padding-block: 3rem 5rem;
  }
}

.solution__background-decoration {
  display: none;
  position: absolute;
}
@media (768px <= width) {
  .solution__background-decoration {
    display: revert;
    inset-inline-start: calc(50% - 114.56rem);
    inset-block-end: -24rem;
    inline-size: 70.8rem;
  }
}
.solution__background-decoration img {
  inline-size: 100%;
}

@media (768px <= width) {
  .solution__inner {
    position: relative;
    max-inline-size: 96.2rem;
  }
}

.solution__title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media (768px <= width) {
  .solution__title {
    font-size: 2.4rem;
  }
}
.solution__title .large {
  font-size: 2.4rem;
  line-height: calc(35 / 24);
}
@media (768px <= width) {
  .solution__title .large {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}

.solution__logo {
  margin-block-start: 2.4rem;
  max-inline-size: 33.5rem;
  margin-inline: auto;
}
@media (768px <= width) {
  .solution__logo {
    margin-block-start: 2.2rem;
  }
}
.solution__logo img {
  inline-size: 100%;
}

.solution__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  text-align: center;
  margin-block-start: 2rem;
}

@media (768px <= width) {
  .solution__button {
    flex-direction: row;
    column-gap: 1rem;
    margin-block-start: 1.9rem;
  }
}

.solution__image {
  inline-size: 12rem;
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  margin-inline: auto;
}
@media (768px <= width) {
  .solution__image {
    inline-size: 20rem;
    inset-inline-start: unset;
    inset-inline-end: 4rem;
    inset-block-end: -5rem;
  }
}
.solution__image img {
  inline-size: 100%;
}

.button {
  padding-block: 2.4rem;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  border-radius: calc(infinity * 1px);
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  padding-inline-start: 4.8rem;
  padding-inline-end: 3.2rem;
  display: inline grid;
  align-items: center;
  grid-template-columns: 1fr 2rem;
  column-gap: 2.4rem;
  box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
  transition: translate 0.1s ease, box-shadow 0.1s ease;
}

.secondary-button{
  padding-block: 2.4rem;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  color: #0054db;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  padding-inline-start: 4.8rem;
  padding-inline-end: 3.2rem;
  display: inline grid;
  align-items: center;
  grid-template-columns: 1fr 2rem;
  column-gap: 2.4rem;
  box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
  transition: translate 0.1s ease, box-shadow 0.1s ease;
  border: 0.2rem solid #0054db;
}

@media (any-hover: hover) {
  .button:hover {
    translate: 0 0.4rem;
    box-shadow: none;
  }
}
.button:active {
  translate: 0 0.4rem;
  box-shadow: none;
}
.button svg {
  inline-size: 100%;
  block-size: auto;
}

@media (any-hover: hover) {
  .secondary-button:hover {
    translate: 0 0.4rem;
    box-shadow: none;
  }
}
.secondary-button:active {
  translate: 0 0.4rem;
  box-shadow: none;
}
.secondary-button svg {
  inline-size: 100%;
  block-size: auto;
}

.scroll-notice {
  margin-block-start: 4rem;
  inline-size: 100%;
  display: block grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1em;
  padding-inline: 1rem;
  align-items: center;
  background-color: #effcff;
  color: var(--color-main);
  block-size: 2.5rem;
  border-radius: calc(infinity * 1px);
  font-size: 1.4rem;
  line-height: 1;
}
.scroll-notice::before {
  content: "";
  justify-self: start;
  inline-size: 1.4rem;
  block-size: 0.9rem;
  background: url("../img/triangle-left.svg") no-repeat center center/contain;
}
.scroll-notice::after {
  content: "";
  justify-self: end;
  inline-size: 1.4rem;
  block-size: 0.9rem;
  background: url("../img/triangle-right.svg") no-repeat center center/contain;
}
@media (768px <= width) {
  .scroll-notice {
    display: none;
  }
}

.strengths {
  padding-block: 6rem;
  background-color: #effcff;
}
@media (768px <= width) {
  .strengths {
    padding-block-start: 7.5rem;
    padding-block-end: 8rem;
  }
}

.strengths__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
@media (768px <= width) {
  .strengths__title {
    font-size: 3.2rem;
  }
}
.strengths__title .line-break {
  position: relative;
  display: inline flow-root;
  translate: 0 -75%;
}
@media (768px <= width) {
  .strengths__title .line-break {
    display: revert;
  }
}
.strengths__title .small {
  font-size: 2rem;
}
@media (768px <= width) {
  .strengths__title .small {
    font-size: 2.4rem;
  }
}
.strengths__title .large {
  font-size: 4rem;
  line-height: calc(58 / 40);
  color: #0054db;
}

.strengths__logo-wrapper {
  margin-inline-end: 1rem;
}
@media (768px <= width) {
  .strengths__logo-wrapper {
    position: relative;
    display: inline flow-root;
    translate: 0 0.5rem;
  }
}
.strengths__logo-wrapper img {
  display: inline flow;
}

.strengths__container {
  margin-block-start: 5rem;
  display: block grid;
  row-gap: 4rem;
  counter-reset: card-counter;
}
@media (768px <= width) {
  .strengths__container {
    margin-block-start: 7.3rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
  }
}

.strengths-card {
  background-color: #fff;
  border-radius: 2rem;
  padding-block-start: 5.8rem;
  padding-block-end: 4.6rem;
  position: relative;
}
.strengths-card::before {
  counter-increment: card-counter;
  content: counter(card-counter, decimal-leading-zero);
  position: absolute;
  font-size: 2.6rem;
  line-height: calc(31 / 26);
  color: #fff;
  background: linear-gradient(to right, #4cdeff, #0054db);
  inline-size: 4.8rem;
  aspect-ratio: 1;
  display: block grid;
  place-content: center;
  border-radius: calc(infinity * 1px);
  inset-block-start: -2.4rem;
  inset-inline: 0;
  margin-inline: auto;
}

.strengths-card__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: calc(35 / 24);
  text-align: center;
}
.strengths-card__title .orange {
  color: var(--color-accent);
}

.strengths-card__image {
  max-inline-size: 28rem;
  margin-inline: auto;
  margin-block-start: 4rem;
}
.strengths-card__image img {
  inline-size: 100%;
}

.strengths-card__description {
  max-inline-size: 28rem;
  margin-inline: auto;
  margin-block-start: 2.9rem;
  line-height: calc(26 / 16);
}

.functions {
  padding-block: 6rem;
}
@media (768px <= width) {
  .functions {
    padding-block: 8rem;
  }
}

.functions__inner {
  padding-inline: 1.5rem;
}

.functions__logo {
  width: 80%;
  margin: 0 auto 2rem;
}

@media (768px <= width) {
  .functions__logo {
    width: 40%;
    margin: 0 auto 4rem;
  }
}

.functions__title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media (768px <= width) {
  .functions__title {
    font-size: 2.4rem;
  }
}
.functions__title .large {
  font-size: 2.4rem;
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .functions__title .large {
    font-size: 3.2rem;
    line-height: calc(38 / 32);
  }
}
.functions__title .highlight {
  margin-block-start: 1rem;
  display: inline flow-root;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: calc(43 / 36);
  color: var(--color-main);
  position: relative;
  z-index: 1;
}
@media (768px <= width) {
  .functions__title .highlight {
    margin-block-start: 1.2rem;
    font-size: 6rem;
    line-height: calc(72 / 60);
  }
}
.functions__title .highlight::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  inline-size: 100%;
  block-size: 0.2em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
}
@media (768px <= width) {
  .functions__title .highlight::after {
    block-size: 0.15em;
    inset-block-end: 0.05em;
  }
}

.functions__swiper {
  margin-block-start: 4rem;
}
@media (768px <= width) {
  .functions__swiper {
    margin-block-start: 5rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
  }
}

@media (768px <= width) {
  .functions__swiper-wrapper {
    display: block grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}

.functions__swiper-slide {
  inline-size: 24.5rem;
}

.functions-card {
  margin-block-start: 2.2rem;
  padding-block-start: 4.2rem;
  padding-block-end: 3rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.functions-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.3rem;
  background: linear-gradient(to right, #4cdeff, #0054db);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 2rem;
}

.functions-card__title {
  position: absolute;
  inset-block-start: -2.2rem;
  inset-inline: 0;
  margin-inline: auto;
  inline-size: 18.4rem;
  display: block grid;
  place-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: calc(22 / 18);
  color: #fff;
  background: linear-gradient(to right, #4cdeff, #0054db);
  padding-block: 1rem;
  border-radius: calc(infinity * 1px);
}

.functions-card__image-wrap {
  block-size: 16.9rem;
  display: block grid;
  place-content: center;
}

.functions-card__image:has(img[src*="01"]) {
  inline-size: 14.9rem;
}
.functions-card__image:has(img[src*="02"]) {
  inline-size: 16.3rem;
}
.functions-card__image:has(img[src*="03"]) {
  inline-size: 13.2rem;
}
.functions-card__image:has(img[src*="04"]) {
  inline-size: 14.2rem;
}
.functions-card__image:has(img[src*="05"]) {
  inline-size: 15rem;
}
.functions-card__image:has(img[src*="06"]) {
  inline-size: 15rem;
}
.functions-card__image:has(img[src*="07"]) {
  inline-size: 15.9rem;
}
.functions-card__image:has(img[src*="08"]) {
  inline-size: 17.5rem;
}
.functions-card__image img {
  inline-size: 100%;
}

.functions-card__description {
  text-align: center;
  margin-block-start: 1.7rem;
  line-height: calc(19 / 16);
}

.features {
  padding-block: 6rem;
  background-color: #effcff;
}
@media (768px <= width) {
  .features {
    padding-block: 8rem;
  }
}

.features__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  display: block flex;
  align-items: center;
  justify-content: center;
}
@media (768px <= width) {
  .features__title {
    font-size: 2.4rem;
  }
}
.features__title .text {
  line-height: calc(24 / 20);
}
@media (768px <= width) {
  .features__title .text {
    line-height: calc(35 / 24);
    translate: 0 21%;
  }
}

.features__logo-wrapper {
  margin-inline-end: 1.2rem;
}
.features__logo-wrapper img {
  display: inline flow;
}

.features__container {
  margin-block-start: 4rem;
  display: block grid;
  row-gap: 2rem;
}
@media (768px <= width) {
  .features__container {
    margin-block-start: 5rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

.features-card {
  background-color: #fff;
  border-radius: 2rem;
  padding-block-start: 3rem;
  padding-block-end: 2.7rem;
  padding-inline: 2rem;
}
@media (768px <= width) {
  .features-card {
    padding-block-end: 3rem;
    padding-inline: 3rem;
  }
}

.features-card__title-wrap {
  display: block flex;
  column-gap: 1.5rem;
  align-items: center;
}

.features-card__icon {
  max-inline-size: 3rem;
}
.features-card__icon img {
  inline-size: 100%;
}

.features-card__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: calc(24 / 20);
  position: relative;
  display: inline flow-root;
  z-index: 1;
}
.features-card__title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0.05em;
  inline-size: 100%;
  block-size: 0.3em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
  margin-bottom: -0.3rem;
}

.features-card__description {
  margin-block-start: 1.7rem;
  line-height: calc(26 / 16);
}
.features-card__description .orange {
  color: var(--color-accent);
}

.features-card__image {
  margin-block-start: 0.7rem;
  margin-inline: -1.2rem;
  max-inline-size: 48rem;
}
@media (768px <= width) {
  .features-card__image {
    margin-block-start: 2rem;
    margin-inline: -2rem;
  }
}
.features-card__image img {
  inline-size: 100%;
}

.comparison {
  padding-block: 6rem;
  background-color: var(--color-main);
}
@media (768px <= width) {
  .comparison {
    padding-block: 7.3rem 8rem;
  }
}

.comparison__title {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .comparison__title {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}
.comparison__title .small {
  font-size: 2rem;
  line-height: 1;
}
@media (768px <= width) {
  .comparison__title .small {
    font-size: 2.4rem;
  }
}

.comparison__table-wrapper {
  margin-block-start: 1rem;
  overflow-x: auto;
}
@media (768px <= width) {
  .comparison__table-wrapper {
    margin-block-start: 5rem;
  }
}

.comparison-table {
  inline-size: 102.5rem;
  block-size: 77.6rem;
  border-collapse: separate;
  border-spacing: 0;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
}
.comparison-table thead th {
  block-size: 6.6rem;
  background-color: #effcff;
  font-weight: 500;
  font-size: 2rem;
  line-height: calc(24 / 20);
  text-align: center;
  vertical-align: middle;
  border-start-start-radius: 2rem;
  border-start-end-radius: 2rem;
}
.comparison-table thead th:first-child {
  background-color: transparent;
}
.comparison-table tbody th,
.comparison-table tbody td {
  block-size: 14.2rem;
  vertical-align: middle;
  text-align: center;
}
.comparison-table tbody tr:first-child th {
  border-start-start-radius: 2rem;
}
.comparison-table tbody tr:last-child th {
  border-end-start-radius: 2rem;
}
.comparison-table tbody tr:last-child td:last-child {
  border-end-end-radius: 2rem;
}
.comparison-table tbody th {
  inline-size: 15.5rem;
  font-weight: 700;
  padding-inline: 1.6rem;
  line-height: calc(19 / 16);
}
.comparison-table tbody td {
  inline-size: 29rem;
  color: #767676;
  font-weight: 400;
  line-height: calc(21 / 16);
}
.comparison-table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.comparison-table tbody tr:nth-child(even) {
  background-color: #effcff;
}
.comparison-table thead .highlight {
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: calc(34 / 28);
}
.comparison-table tbody .highlight {
  border-inline: 0.5rem solid var(--color-accent);
  font-weight: 700;
  font-size: 2rem;
  line-height: calc(21 / 20);
  color: var(--color-main);
}
.comparison-table tbody .highlight .small {
  font-size: 1.4rem;
}
.comparison-table tbody tr:first-child .highlight {
  border-block-start: 0.5rem solid var(--color-accent);
}
.comparison-table tbody tr:last-child .highlight {
  border-block-end: 0.5rem solid var(--color-accent);
}
.comparison-table .icon-text {
  display: block grid;
  place-items: center;
  row-gap: 1rem;
}
.comparison-table .icon {
  inline-size: 4.8rem;
  block-size: 4.7rem;
}
.comparison-table .icon.-triangle {
  inline-size: 4rem;
  block-size: 3.6rem;
}
.comparison-table .icon.-large {
  inline-size: 5.2rem;
  block-size: 5rem;
}

.industries {
  padding-block: 6rem;
  background-color: #effcff;
  position: relative;
  overflow: hidden;
}
@media (768px <= width) {
  .industries {
    padding-block: 8rem;
  }
}

.industries__background-decoration {
  position: absolute;
}
.industries__background-decoration.-left {
  inset-inline-start: -12.5rem;
  inset-block-end: -16.4rem;
  inline-size: 25rem;
}
@media (768px <= width) {
  .industries__background-decoration.-left {
    inset-inline-start: calc(50% - 120.175rem);
    inset-block-end: -18.5rem;
    inline-size: 70.8rem;
  }
}
.industries__background-decoration.-right {
  inset-inline-end: -12.5rem;
  inset-block-start: -16.4rem;
  inline-size: 25rem;
}
@media (768px <= width) {
  .industries__background-decoration.-right {
    inset-inline-end: calc(50% - 99.13rem);
    inset-block-start: -36.5rem;
    inline-size: 56rem;
  }
}
.industries__background-decoration img {
  inline-size: 100%;
}

.industries__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  display: block flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.5rem;
}
@media (768px <= width) {
  .industries__title {
    flex-direction: revert;
  }
}
.industries__title .text {
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .industries__title .text {
    line-height: calc(35 / 24);
    translate: 0 13%;
  }
}

.industries__scroll-notice {
  background-color: #fff;
}

.industries__logo-wrapper {
  margin-inline-end: 1.2rem;
}
.industries__logo-wrapper img {
  display: inline flow;
}

.industries__swiper {
  margin-block-start: 4rem;
}
@media (768px <= width) {
  .industries__swiper {
    margin-block-start: 5rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
  }
}

.industries__swiper-wrapper {
  display: block flex;
}
@media (768px <= width) {
  .industries__swiper-wrapper {
    display: block grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
}

.industries__swiper-slide {
  inline-size: 23.8rem;
  block-size: auto;
}

.industries-card {
  border-radius: 2rem;
  background-color: #fff;
  padding-block-end: 3.5rem;
  padding-inline: 2.5rem;
  display: block flex;
  flex-direction: column;
  block-size: 100%;
}

.industries-card__image {
  max-inline-size: 23.8rem;
  margin-inline: -2.5rem;
}
.industries-card__image img {
  inline-size: 100%;
}

.industries-card__title {
  margin-block-start: 2.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: calc(29 / 24);
  inline-size: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.industries-card__title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -0.05em;
  inline-size: 100%;
  block-size: 0.3em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
}

.industries-card__description {
  margin-block-start: 2.7rem;
  font-size: 1.4rem;
  line-height: calc(20 / 14);
}

.voices {
  padding-block: 6rem;
}
@media (768px <= width) {
  .voices {
    padding-block: 8rem;
  }
}

.voices__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
  text-align: center;
}
@media (768px <= width) {
  .voices__title {
    font-size: 3.2rem;
    line-height: calc(38 / 32);
  }
}
.voices__title .small {
  font-size: 2rem;
  line-height: 1;
}
@media (768px <= width) {
  .voices__title .small {
    font-size: 2.4rem;
  }
}

.voices__container {
  margin-block-start: 3.5rem;
  display: block grid;
  row-gap: 2rem;
  grid-template-columns: repeat(1, 33.3rem);
  justify-content: center;
}
@media (768px <= width) {
  .voices__container {
    margin-block-start: 5.8rem;
    max-inline-size: 109.9rem;
    margin-inline: auto;
    column-gap: 5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.voices-card {
  border-radius: 2rem;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.25);
  padding-inline: 2rem;
  padding-block-end: 1.7rem;
  overflow: hidden;
}

.voices-card__image {
  max-inline-size: 33.3rem;
  margin-inline: -2.1rem;
  block-size: 23.6rem;
}
.voices-card__image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.voices-card__title {
  margin-block-start: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: calc(36 / 24);
}

.voices-card__description {
  margin-block-start: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.cta {
  text-align: center;
  padding-block: 8rem;
  background-color: var(--color-main);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (768px <= width) {
  .cta {
    padding-block: 5.2rem;
  }
}

.cta__background-decoration {
  position: absolute;
}
.cta__background-decoration.-left {
  inset-inline-start: -12.5rem;
  inset-block-end: -16.4rem;
  inline-size: 25rem;
}
@media (768px <= width) {
  .cta__background-decoration.-left {
    inset-inline-start: calc(50% - 114.561rem);
    inset-block-end: -28.2rem;
    inline-size: 70.8rem;
  }
}
.cta__background-decoration.-right {
  inset-inline-end: -12.5rem;
  inset-block-start: -16.4rem;
  inline-size: 25rem;
}
@media (768px <= width) {
  .cta__background-decoration.-right {
    inset-inline-end: calc(50% - 99.03rem);
    inset-block-start: -36.5rem;
    inline-size: 56rem;
  }
}
.cta__background-decoration img {
  inline-size: 100%;
}

.cta__inner {
  padding-inline: 1.8rem;
}
@media (768px <= width) {
  .cta__inner {
    padding-inline: 4rem;
  }
}

.cta__text {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .cta__text {
    font-size: 3rem;
    line-height: calc(36 / 30);
  }
}
.cta__text.-large {
  margin-block-start: 2rem;
  font-size: 4rem;
  line-height: calc(48 / 40);
}
@media (768px <= width) {
  .cta__text.-large {
    margin-block-start: 1.7rem;
    font-size: 6rem;
    line-height: calc(72 / 60);
    font-weight: 900;
  }
}
.cta__text.-large .highlight {
  position: relative;
  z-index: 1;
}
.cta__text.-large .highlight::before,
.cta__text.-large .highlight::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 0.3rem;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
  border-radius: calc(infinity * 1px);
}
.cta__text.-large .highlight::before {
  inset-block-end: 0.3rem;
}
@media (768px <= width) {
  .cta__text.-large .highlight::before {
    inset-block-end: 0.6rem;
  }
}
.cta__text.-large .highlight::after {
  inset-block-end: -0.2rem;
}
@media (768px <= width) {
  .cta__text.-large .highlight::after {
    inset-block-end: 0.1rem;
  }
}
.cta__text.-large .small {
  font-size: 3rem;
  line-height: 1;
}
@media (768px <= width) {
  .cta__text.-large .small {
    font-weight: 700;
    font-size: 4rem;
  }
}

.cta__title {
  margin-block-start: 1.5rem;
  font-weight: 900;
  font-size: 7rem;
  line-height: calc(84 / 70);
}
@media (768px <= width) {
  .cta__title {
    margin-block-start: 0.5rem;
    font-size: 9rem;
    line-height: calc(108 / 90);
  }
}

.cta__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  margin-block-start: 3rem;
}

@media (768px <= width) {
  .cta__button {
    flex-direction: row;
    column-gap: 1rem;
  }
}

.visualization {
  padding-block: 6rem;
}
@media (768px <= width) {
  .visualization {
    padding-block: 8rem;
  }
}

.visualization__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
  text-align: center;
}
@media (768px <= width) {
  .visualization__title {
    font-size: 3.2rem;
    line-height: 1;
  }
}
.visualization__title .small {
  font-size: 2rem;
  line-height: 1;
}
@media (768px <= width) {
  .visualization__title .small {
    font-size: 2.4rem;
  }
}
.visualization__title .highlight {
  font-weight: 700;
  font-size: 4rem;
  line-height: calc(52 / 40);
  color: var(--color-main);
  position: relative;
  z-index: 1;
}
@media (768px <= width) {
  .visualization__title .highlight {
    font-size: 6rem;
    line-height: calc(87 / 60);
  }
}
.visualization__title .highlight::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0.18em;
  inline-size: 100%;
  block-size: 0.18em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
}

.visualization__container {
  margin-block-start: 5.5rem;
  display: block grid;
  row-gap: 2rem;
}
@media (768px <= width) {
  .visualization__container {
    margin-block-start: 5rem;
    row-gap: 3.5rem;
    max-inline-size: 102.5rem;
    margin-inline: auto;
  }
}

.visualization-card {
  padding-block: 3rem 2.4rem;
  border-radius: 2rem;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.25);
  padding-inline: 3rem;
  background-image: url("../img/visualization-card-background-image.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 24.9rem;
}
@media (768px <= width) {
  .visualization-card {
    display: block flex;
    justify-content: space-between;
    padding-inline-end: 2.6rem;
    padding-block: 4rem;
  }
}
.visualization-card.is-reverse {
  background-image: url("../img/visualization-card-background-image-reverse.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (768px <= width) {
  .visualization-card.is-reverse {
    flex-direction: row-reverse;
    padding-inline-end: 3rem;
    padding-inline-start: 2.6rem;
  }
}

@media (768px <= width) {
  .visualization-card__body {
    max-inline-size: 42.5rem;
  }
}

.visualization-card__title {
  inline-size: fit-content;
  margin-inline: auto;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: calc(26 / 18);
  position: relative;
  z-index: 1;
}
@media (768px <= width) {
  .visualization-card__title {
    margin-inline: revert;
    font-size: 2.4rem;
    line-height: calc(35 / 24);
  }
}
.visualization-card__title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -0.1em;
  inline-size: 100%;
  block-size: 0.4em;
  background: linear-gradient(to right, #ff4d00, #ffb800);
  z-index: -1;
  pointer-events: none;
}
@media (768px <= width) {
  .visualization-card__title::after {
    block-size: 0.7rem;
    inset-block-end: 0;
  }
}

.visualization-card__description {
  margin-block-start: 2rem;
  line-height: calc(26 / 16);
}

.visualization-card__image {
  margin-block-start: 2.4rem;
  margin-inline: -0.75rem;
  max-inline-size: 52rem;
}
@media (768px <= width) {
  .visualization-card__image {
    margin-block-start: revert;
    margin-block: -1.2rem;
  }
}
.visualization-card__image img {
  inline-size: 100%;
}

.faq {
  padding-block: 6rem;
  background-color: #effcff;
}
@media (768px <= width) {
  .faq {
    padding-block: 8rem;
  }
}

.faq__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .faq__title {
    font-size: 3.2rem;
    line-height: calc(46 / 32);
  }
}
.faq__title .small {
  font-size: 2rem;
  line-height: 1;
}
@media (768px <= width) {
  .faq__title .small {
    font-size: 2.8rem;
  }
}

.faq__container {
  margin-block-start: 4rem;
}
@media (768px <= width) {
  .faq__container {
    margin-block-start: 5rem;
    max-inline-size: 74rem;
    margin-inline: auto;
  }
}

.qa-box {
  padding-block: 1.9rem 2rem;
}
@media (768px <= width) {
  .qa-box {
    padding-block: 2.9rem 3rem;
  }
}
.qa-box:first-child {
  padding-block-start: 0;
}
.qa-box:not(:first-child) {
  border-block-start: 0.1rem dashed var(--color-text);
}
.qa-box:last-child {
  padding-block-end: 0;
}
.qa-box::details-content {
  overflow: clip;
  block-size: 0;
  transition-duration: 0.3s;
  transition-property: content-visibility, block-size;
  transition-behavior: allow-discrete;
}
.qa-box[open]::details-content {
  block-size: unset;
}

.qa-box__head {
  cursor: pointer;
  display: block flow;
}
.qa-box__head::-webkit-details-marker {
  display: none;
}

.qa-box__inner {
  display: block flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 0.8rem;
}

.qa-box__text-wrap {
  display: block flex;
  column-gap: 1.5rem;
  align-items: start;
}
@media (768px <= width) {
  .qa-box__text-wrap {
    column-gap: 3rem;
  }
}

.qa-box__head-icon {
  font-size: 2.4rem;
  display: block grid;
  place-content: center;
  padding-block-end: 0.1em;
  padding-inline-end: 0.05em;
  color: #fff;
  inline-size: 4.9rem;
  aspect-ratio: 1;
  background-color: var(--color-accent);
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
}

.qa-box__head-text {
  padding-block-start: 1rem;
  line-height: calc(29 / 16);
}

.qa-box__icon {
  inline-size: 2.4rem;
  aspect-ratio: 1;
  position: relative;
  border: var(--color-main) 0.1rem solid;
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
  margin-block-start: 1.4rem;
}
.qa-box__icon::before,
.qa-box__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  inline-size: 1.6rem;
  block-size: 0.2rem;
  margin: auto;
  background-color: var(--color-main);
}
.qa-box__icon::after {
  transition: rotate 0.3s;
  rotate: 90deg;
}

.qa-box[open] .qa-box__icon::after {
  rotate: 360deg;
}

.qa-box__body {
  padding-block-start: 2rem;
}

.qa-box__a {
  display: block flex;
  column-gap: 1.5rem;
  align-items: start;
}
@media (768px <= width) {
  .qa-box__a {
    column-gap: 3rem;
  }
}

.qa-box__a-icon {
  font-size: 2.4rem;
  display: block grid;
  place-content: center;
  padding-block-end: 0.1em;
  padding-inline-end: 0.05em;
  color: #fff;
  inline-size: 4.9rem;
  aspect-ratio: 1;
  background-color: var(--color-main);
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
}

.qa-box__a-text {
  padding-block-start: 1rem;
  line-height: calc(29 / 16);
}

.contact {
  padding-block: 6rem;
}
@media (768px <= width) {
  .contact {
    padding-block: 8rem;
  }
}

.contact__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
}
@media (768px <= width) {
  .contact__title {
    font-size: 2.8rem;
    line-height: calc(41 / 28);
  }
}

.contact__area {
  margin-block-start: 4rem;
}
@media (768px <= width) {
  .contact__area {
    margin-block-start: 5rem;
    max-inline-size: 74rem;
    margin-inline: auto;
  }
}

.form__lists {
  display: block grid;
  row-gap: 4rem;
}

.form__list {
  display: block grid;
  row-gap: 0.8rem;
}

.form__text {
  display: block flex;
  column-gap: 0.8rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
}

.form__required {
  background-color: #f73331;
  color: #fff;
  display: block grid;
  place-content: center;
  padding-inline: 1.6rem;
  padding-block: 0.2rem;
  border-radius: calc(infinity * 1px);
  font-size: 1.6rem;
  line-height: calc(23 / 16);
}

.form__input [type="text"],
.form__input [type="email"],
.form__input [type="tel"],
.form__input select,
.form__input textarea {
  box-shadow: none;
  border: 0.1rem solid #a7a7a7;
  border-radius: 0.5rem;
  padding-block: 1.1rem;
  padding-inline: 1.5rem;
  appearance: none;
  inline-size: 100%;
  color: var(--color-text);
  background-color: #effcff;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: calc(19 / 16);
}
.form__input [type="text"]::placeholder,
.form__input [type="email"]::placeholder,
.form__input [type="tel"]::placeholder,
.form__input select::placeholder,
.form__input textarea::placeholder {
  color: rgba(36, 42, 51, 0.64);
}
.form__input [type="text"]:focus,
.form__input [type="email"]:focus,
.form__input [type="tel"]:focus,
.form__input select:focus,
.form__input textarea:focus {
  outline: 0.1rem solid var(--color-main);
}
.form__input textarea {
  block-size: 16rem;
  resize: vertical;
}

.form__button {
  margin-block-start: 4rem;
  text-align: center;
}
.form__button [type="submit"] {
  display: inline grid;
  align-content: center;
  grid-template-columns: 1fr 2rem;
  color: #fff;
  box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
  border-radius: calc(infinity * 1px);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  padding-block: 2.4rem;
  padding-inline-start: 4.8rem;
  padding-inline-end: 7.6rem;
  border: none;
  cursor: pointer;
  background-image: url("../img/circle-triangle-right.svg"),
    linear-gradient(to right, #ff4d00, #ffb800);
  background-repeat: no-repeat;
  background-position: right 3.2rem center, center;
  background-size: 2rem auto, 100% 100%;
  transition: translate 0.1s ease, box-shadow 0.1s ease;
}
@media (any-hover: hover) {
  .form__button [type="submit"]:hover {
    translate: 0 0.4rem;
    box-shadow: none;
  }
}
.form__button [type="submit"]:active {
  translate: 0 0.4rem;
  box-shadow: none;
}
.form__button [type="submit"]:disabled {
  background-image: url("../img/circle-triangle-right-gray.svg"),
    linear-gradient(to right, #eee, #eee);
  color: #bdbdbd;
  cursor: default;
  box-shadow: none;
}

span.wpcf7-spinner {
  display: none;
}

.page-top {
  display: inline flow-root;
  max-inline-size: 4.8rem;
  aspect-ratio: 1;
  position: fixed;
  inset-block-end: 7.5rem;
  inset-inline-end: 2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 30;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (768px <= width) {
  .page-top {
    inset-block-end: 1.7rem;
    inset-inline-end: 1.2rem;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.page-top img {
  inline-size: 100%;
}

.contact-thanks {
  padding: 1.2rem 0 0;
}

@media (768px <= width) {
  .contact-thanks {
    padding: 20rem 0 0;
  }
}

.contact-thanks__title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media (768px <= width) {
  .contact-thanks__title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

.contact-thanks__text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 6rem;
}
@media (768px <= width) {
  .contact-thanks__text {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8rem;
  }
}

.contact-thanks .cta__button {
  width: fit-content;
  margin: 0 auto;
}

.l-footer__object {
  display: none;
}

.footer-object__logo {
  display: block;
  max-width: 28rem;
  margin: 0 auto 3rem;
}

.footer-object__nav-wrap {
  max-width: 128rem;
  margin: 0 auto;
}

.footer-object__main-nav {
  margin-bottom: 2rem;
}

.footer-object__main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  margin-bottom: 2rem;
}

.footer-object__main-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}
.footer-object__main-link span {
  display: block;
}
.footer-object__main-link span:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.8rem;
}
.footer-object__main-link span:last-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.footer-object__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.footer-object__sub-item {
  width: 100%;
}
.footer-object__sub-item:first-of-type .footer-object__sub-link {
  background-color: #dc0e3f;
}
.footer-object__sub-item:nth-of-type(2) .footer-object__sub-link {
  background-color: #dd5635;
}
.footer-object__sub-item:nth-of-type(3) .footer-object__sub-link {
  background-color: #e8b50d;
}
.footer-object__sub-item:nth-of-type(4) .footer-object__sub-link {
  background-color: #57ad4a;
}
.footer-object__sub-item:nth-of-type(5) .footer-object__sub-link {
  background-color: #3c67a7;
}
.footer-object__sub-item:nth-of-type(6) .footer-object__sub-link {
  background-color: #714687;
}
.footer-object__sub-item:nth-of-type(7) .footer-object__sub-link {
  background-color: #34284f;
}

.footer-object__sub-link {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}

.l-footer__bottom-wrap {
  background-color: #393f48;
}

.l-footer__bottom {
  padding: 6rem 2rem;
}

.footer-bottom__nav-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  row-gap: 2rem;
  max-width: 144rem;
  margin: 0 auto;
}

.footer-bottom__nav {
  border-left: 0.1rem solid #fff;
  padding: 1rem 2rem;
}

.footer-bottom__category-nav {
  border-left: none;
}

.footer-bottom__nav-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.footer-bottom__list {
  display: block;
}

.footer-bottom__category-nav .footer-bottom__list,
.footer-bottom__area-nav .footer-bottom__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.footer-bottom__item {
  margin-bottom: 1rem;
}
.footer-bottom__item:last-of-type {
  margin-bottom: 0;
}

.footer-bottom__link {
  font-size: 1.6rem;
  color: #fff;
}

.l-footer__flex-btn {
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.l-footer__btn {
  width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  border-radius: 3rem;
  padding: 1.5rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  border: 0.2rem solid #0054db;
  background-color: #fff;
}
.l-footer__btn:first-of-type {
  background-color: #0054db;
  color: #fff;
}

.l-footer__copyright {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
}

@media screen and (max-width: 768px) {
  .l-footer__object {
    display: block;
    padding: 2rem 2rem;
    background-color: #fff1f1;
  }
  .footer-object__logo {
    max-width: 26rem;
    margin: 0 auto 3rem;
  }
  .footer-object__nav-wrap {
    max-width: 100%;
  }
  .footer-object__main-nav {
    margin-bottom: 0;
  }
  .footer-object__main-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 2rem;
  }
  .footer-object__main-link {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
  .footer-object__main-link span:first-of-type {
    width: 1.8rem;
  }
  .footer-object__main-link span:last-of-type {
    font-size: 1.4rem;
  }
  .footer-object__sub-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
  }
  .footer-object__sub-link {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .l-footer__bottom {
    padding: 1rem 2rem;
  }
  .footer-bottom__nav-wrap {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    max-width: 100%;
  }
  .footer-bottom__nav {
    border-left: none;
    padding: 2rem 1rem;
    border-bottom: 0.1rem solid #fff;
  }
  .footer-bottom__category-nav {
    grid-column: 1/3;
  }
  .footer-bottom__area-nav {
    grid-column: 1/3;
  }
  .footer-bottom__about-nav {
    grid-column: 1/3;
    border-bottom: none;
  }
  .footer-bottom__nav-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .footer-bottom__category-nav .footer-bottom__list,
  .footer-bottom__area-nav .footer-bottom__list {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
  .footer-bottom__item {
    margin-bottom: 1rem;
  }
  .footer-bottom__link {
    font-size: 1.2rem;
  }
  .l-footer__flex-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .l-footer__btn:last-of-type {
    margin-bottom: 0;
  }
  .l-footer__btn {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
    margin: 0 auto;
    border-radius: 3rem;
  }
  .l-footer__copyright {
    font-size: 1.2rem;
  }

  .l-footer__recaptcha-text {
    font-size: 1.2rem;
  }
}

.footer-cta {
  inline-size: 100%;
  block-size: 5rem;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  inset-block-end: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.footer-cta.is-show {
  opacity: 1;
  visibility: visible;
}

.footer-cta .button, 
.footer-cta .secondary-button{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0;
  box-shadow: initial;
  font-size: 1.4rem;
  line-height: 1.5;
  width: 50%;
  height: 100%;
}

.footer-cta .secondary-button{
  padding: 1.2rem 1rem;
}

.footer-cta.diagnosis .button{
  width: 100%;
}

@media (768px <= width) {
  .footer-cta {
    display: none;
  }
}

.l-footer__recaptcha-text {
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
}