@charset "UTF-8";
@media screen and (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1920px) {
  html {
    font-size: calc(100vw * 16 / 1920);
  }
}
@media screen and (min-width: 390px) and (max-width: 767.9px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(100vw * 16 / 390);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.top-hero {
  width: 100%;
  height: 67.5rem;
  position: relative;
  overflow-x: clip;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-hero {
    height: auto;
  }
}
.top-hero::before {
  position: absolute;
  content: "";
  width: 58.875rem;
  height: 13.53125rem;
  bottom: -0.0625rem;
  left: -0.0625rem;
  background-image: url(../img/hero_bg-ice.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -5;
}
@media screen and (max-width: 767.9px) {
  .top-hero::before {
    width: 31.25rem;
    height: 7.25rem;
  }
}

.top-hero__inner {
  max-width: 120rem;
  margin-inline: auto;
  height: inherit;
  position: relative;
}

.top-hero__content {
  padding-top: 11.75rem;
  padding-left: 6.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-hero__content {
    padding: 5rem 1.25rem 8.75rem;
  }
}

.top-hero__medal {
  max-width: 46.1875rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-hero__medal {
    max-width: 30rem;
  }
}

.top-hero__title {
  margin-top: 2.375rem;
  color: #fff;
  font-size: 4.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2051282051;
}
@media screen and (max-width: 767.9px) {
  .top-hero__title {
    margin-top: 0.875rem;
    font-size: clamp(2.375rem, 1.47rem + 3.714vw, 3.25rem);
    line-height: 1.2;
  }
}

.top-hero__buttons {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-hero__buttons {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    max-width: 15rem;
  }
}

.top-hero__btn {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.34375;
  max-width: 24.875rem;
  width: 100%;
  border-radius: 0.9375rem;
  padding: 1.375rem 2rem;
  -webkit-transition: border-width 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-width 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-width 0.2s ease;
  transition: transform 0.2s ease, border-width 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
  }
}
.top-hero__btn:hover {
  opacity: 1;
}

.top-hero__btn-small {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn-small {
    font-size: 0.625rem;
  }
}

.top-hero__btn--download {
  background-color: #5DA7FE;
  border-bottom: 0.4375rem solid #4B8CD8;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--download {
    text-align: center;
  }
}
.top-hero__btn--download::before {
  position: absolute;
  content: "";
  width: 1.6875rem;
  height: 1.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.125rem;
  background-image: url(../img/icon_download.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--download::before {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
  }
}
.top-hero__btn--download:hover {
  opacity: 1;
  -webkit-transform: translateY(0.4375rem);
          transform: translateY(0.4375rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--download:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #4B8CD8;
  }
}

.top-hero__btn--tel {
  background-color: #FF6C5F;
  border-bottom: 0.4375rem solid #D0594F;
  text-align: center;
  padding: 1.375rem 3.125rem 1.375rem 2rem;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--tel {
    padding: 0.625rem 1.25rem;
  }
}
.top-hero__btn--tel::before {
  position: absolute;
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.125rem;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--tel::before {
    width: 1.375rem;
    height: 1.375rem;
    right: 1.25rem;
  }
}
.top-hero__btn--tel:hover {
  opacity: 1;
  -webkit-transform: translateY(0.4375rem);
          transform: translateY(0.4375rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-hero__btn--tel:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #D0594F;
  }
}

.top-hero__image {
  max-width: 56.25rem;
  width: 100%;
  position: absolute;
  bottom: -4.0625rem;
  right: -2.25rem;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-hero__image {
    max-width: 70vw;
    right: -2.875rem;
  }
}

.top-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}

.top-service {
  background-color: #15174D;
}

.top-service__inner-top {
  max-width: 120rem;
  margin-inline: auto;
  padding-inline: 22.8125rem 5.3125rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__inner-top {
    max-width: 33.75rem;
    padding-inline: 1.25rem 1.25rem;
    padding-top: 3.75rem;
  }
}

.top-service__content {
  max-width: 92.1875rem;
  margin-inline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.top-service__img-wrap {
  margin-top: 0.625rem;
  max-width: 34.375rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-service__img-wrap {
    margin-top: 0;
  }
}
.top-service__img-wrap::before {
  position: absolute;
  content: "";
  width: 24.375rem;
  height: 28.375rem;
  top: 18.75rem;
  left: 9.0625rem;
  background-image: url(../img/service_character.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-service__img-wrap::before {
    display: none;
  }
}

.top-service__text-wrap {
  max-width: 55.3125rem;
}

.top-service__title {
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .top-service__title {
    font-size: 1.5rem;
  }
}
.top-service__title span {
  background-color: #5DA7FE;
  padding: 0 0.625rem;
}

.top-service__text {
  margin-top: 3.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4333333333;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-service__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.top-service__inner-bottom {
  max-width: 75rem;
  margin-inline: auto;
  padding-bottom: 6.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__inner-bottom {
    max-width: 33.75rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem 1.25rem;
  }
}

.top-service__item-title {
  margin-top: 0.3125rem;
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.86;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.top-service__item-title span {
  font-size: 3.75rem;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-title span {
    font-size: 1.75rem;
  }
}
.top-service__item-title::before {
  position: absolute;
  content: "";
  width: 1.9375rem;
  height: 4.9375rem;
  top: 0.3125rem;
  left: -2.0625rem;
  background-image: url(../img/deco_border-left.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-title::before {
    width: 1rem;
    height: 2.5rem;
    left: -1rem;
  }
}
.top-service__item-title::after {
  position: absolute;
  content: "";
  width: 1.9375rem;
  height: 4.9375rem;
  top: 0.3125rem;
  right: -2.0625rem;
  background-image: url(../img/deco_border-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-title::after {
    width: 1rem;
    height: 2.5rem;
    right: -1.25rem;
  }
}

.top-service__items {
  margin-top: 6.9375rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .top-service__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 3.125rem;
  }
}

.top-service__item {
  background-color: #5DA7FE;
  border-radius: 0.9375rem;
  max-width: 23.75rem;
  width: 100%;
  height: 23.75rem;
  position: relative;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .top-service__item {
    max-width: 100%;
    border-radius: 0.5rem;
    height: 10rem;
  }
}

.top-service__item:nth-child(2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(2) {
    margin-top: 0;
  }
}

.top-service__item-number {
  font-size: 3.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.0634920635;
  position: absolute;
  top: -1.875rem;
  left: 1.625rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-number {
    font-size: 2rem;
    top: -1rem;
  }
}

.top-service__item-img {
  margin-inline: auto;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img {
    margin-top: 0;
  }
}

.top-service__item:nth-child(1) .top-service__item-img {
  width: 9.75rem;
  height: 9.25rem;
  margin-bottom: 1.1875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(1) .top-service__item-img {
    width: 5rem;
    height: auto;
    margin-bottom: 0.625rem;
  }
}

.top-service__item:nth-child(2) .top-service__item-img {
  width: 8.625rem;
  height: 8.625rem;
  margin-bottom: 2.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(2) .top-service__item-img {
    width: 5rem;
    height: auto;
    margin-bottom: 0.625rem;
  }
}

.top-service__item:nth-child(3) .top-service__item-img {
  width: 12.25rem;
  height: 8.875rem;
  margin-top: -0.625rem;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(3) .top-service__item-img {
    width: 6.25rem;
    height: auto;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}

.top-service__item-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text {
    font-size: 1.25rem;
  }
}

.top-solution {
  overflow: hidden;
  position: relative;
}
.top-solution::before {
  position: absolute;
  content: "";
  width: 62rem;
  height: 6.8125rem;
  top: -0.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/deco_wave.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-solution::before {
    width: 21.875rem;
    height: 2.5rem;
  }
}
.top-solution::after {
  position: absolute;
  content: "";
  width: 79.125rem;
  height: 44.0625rem;
  bottom: -19.375rem;
  right: -25.3125rem;
  background-image: url(../img/deco_ice-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-solution::after {
    width: 37.5rem;
    height: 21.25rem;
    bottom: -11.875rem;
    right: -12.5rem;
  }
}

.top-solution__inner {
  max-width: 109.5rem;
  margin-inline: auto;
  padding-top: 16.875rem;
  padding-bottom: 13.1875rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-solution__inner {
    max-width: 33.75rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.top-solution__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.86;
  color: #15174D;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-solution__title {
    line-height: 1.2;
  }
}
.top-solution__title::before {
  position: absolute;
  content: "";
  width: 56.75rem;
  height: 1.5625rem;
  bottom: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFFF67;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-solution__title::before {
    width: 17.5rem;
    height: 0.9375rem;
    bottom: -0.3125rem;
  }
}
@media screen and (max-width: 767.9px) {
  .top-solution__title {
    font-size: 1.5rem;
  }
}
.top-solution__title span {
  font-size: 3.75rem;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-solution__title span {
    font-size: 1.75rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: transparent;
}

.top-solution__swiper.swiper {
  margin-top: 4.6875rem;
  overflow: initial;
  overflow-x: clip;
  padding: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-solution__swiper.swiper {
    margin-top: 2.5rem;
  }
}

.top-solution__swiper .swiper-slide {
  border-radius: 1.25rem;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767.9px) {
  .top-solution__swiper .swiper-slide {
    border-radius: 0.5rem;
  }
}

.top-solution__number-wrap {
  position: absolute;
  top: -1.875rem;
  left: 2.1875rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .top-solution__number-wrap {
    left: 1.25rem;
  }
}

.top-solution__number {
  font-size: 3.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  line-height: 1.0634920635;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-solution__number {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.top-solution__number::before {
  position: absolute;
  content: "";
  width: 3.625rem;
  height: 0.1875rem;
  bottom: -0.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-solution__number::before {
    width: 2.5rem;
    height: 0.125rem;
    bottom: 0;
  }
}

.top-solution__number-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  line-height: 1.075;
}
@media screen and (max-width: 767.9px) {
  .top-solution__number-text {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.top-solution__swiper .top-solution__img {
  border-radius: 1.25rem 1.25rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .top-solution__swiper .top-solution__img {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}

.top-solution__text-wrap {
  padding: 1.5rem 1.25rem 1.9375rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-solution__text-wrap {
    padding: 1.25rem;
  }
}
.top-solution__text-wrap::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 2.8125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-image: url(../img/icon_arrow-double-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-solution__text-wrap::before {
    width: 1.25rem;
    height: 1.5625rem;
  }
}

.top-solution__text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.425;
}
@media screen and (max-width: 767.9px) {
  .top-solution__text {
    font-size: 1.25rem;
  }
}

.top-solution__text-attention {
  margin-top: 5.625rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.425;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-solution__text-attention {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }
}

.top-solution__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.top-solution__nav .top-solution__swiper-button-prev,
.top-solution__nav .top-solution__swiper-button-next {
  position: absolute;
  top: 52.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5.6875rem;
  height: 5.6875rem;
  background: none;
  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;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
}
@media screen and (max-width: 767.9px) {
  .top-solution__nav .top-solution__swiper-button-prev,
  .top-solution__nav .top-solution__swiper-button-next {
    width: 2.8125rem;
    height: 2.8125rem;
    top: 50%;
  }
}
.top-solution__nav .top-solution__swiper-button-prev::after,
.top-solution__nav .top-solution__swiper-button-next::after {
  content: none;
}
.top-solution__nav .top-solution__swiper-button-prev img,
.top-solution__nav .top-solution__swiper-button-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-solution__nav .top-solution__swiper-button-prev {
  left: -2.4375rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .top-solution__nav .top-solution__swiper-button-prev {
    left: 0.625rem;
  }
}
.top-solution__nav .top-solution__swiper-button-prev:hover {
  -webkit-transform: translateX(-0.5rem) translateY(-50%);
          transform: translateX(-0.5rem) translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .top-solution__nav .top-solution__swiper-button-prev:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.top-solution__nav .top-solution__swiper-button-next {
  right: -2.4375rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .top-solution__nav .top-solution__swiper-button-next {
    right: 0.625rem;
  }
}
.top-solution__nav .top-solution__swiper-button-next:hover {
  -webkit-transform: translateX(0.5rem) translateY(-50%);
          transform: translateX(0.5rem) translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .top-solution__nav .top-solution__swiper-button-next:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.top-solution__cta {
  margin-top: 4.0625rem;
  max-width: 55.8125rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta {
    margin-top: 1.25rem;
    max-width: 31.25rem;
    padding: 0 1.25rem;
  }
}
.top-solution__cta::before {
  position: absolute;
  content: "";
  width: 11.4375rem;
  height: 14.625rem;
  top: -3.125rem;
  right: 2rem;
  background-image: url(../img/deco_character-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta::before {
    width: 5rem;
    height: 5.625rem;
    top: -0.625rem;
    right: 0.9375rem;
  }
}

.top-solution__cta-text {
  text-align: center;
  font-size: 1.875rem;
  color: #15174D;
  letter-spacing: 0.05em;
  line-height: 1.4333333333;
  font-weight: 700;
  padding-right: 3.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-text {
    padding-right: 3.75rem;
    font-size: 1rem;
  }
}

.top-solution__cta-tel {
  width: 100%;
  margin-top: 2.9375rem;
  background-color: #FF6C5F;
  color: #fff;
  display: block;
  border-radius: 2.25rem;
  border-bottom: 1rem solid #DE5D51;
  text-align: center;
  padding: 1.625rem 1.25rem 2.125rem;
  position: relative;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel {
    margin-top: 2.5rem;
    border-radius: 1rem;
    border-bottom: 0.5rem solid #DE5D51;
    padding: 0.875rem;
  }
}
.top-solution__cta-tel::before {
  position: absolute;
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.5625rem;
  background-image: url(../img/icon_arrow-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel::before {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 0.9375rem;
  }
}
.top-solution__cta-tel:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #D0594F;
  }
}

.top-solution__cta-tel-number {
  display: inline-block;
  font-size: 4.5rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-left: 5rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel-number {
    font-size: 1.75rem;
    padding-left: 2.1875rem;
    padding-right: 0;
  }
}
.top-solution__cta-tel-number::before {
  position: absolute;
  content: "";
  width: 3.375rem;
  height: 3.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel-number::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.top-solution__cta-tel-hours {
  font-size: 1.8125rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.4482758621;
}
@media screen and (max-width: 767.9px) {
  .top-solution__cta-tel-hours {
    font-size: 0.75rem;
  }
}

.top-work {
  background-color: #14174D;
}

.top-work__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 18.125rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__inner {
    max-width: 33.75rem;
    padding-top: 5rem;
    padding-bottom: 11.25rem;
    padding-inline: 1.25rem 1.25rem;
  }
}

.top-work__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-work__title {
    font-size: 1.75rem;
  }
}
.top-work__title span {
  font-size: 3.125rem;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-work__title span {
    font-size: 1.5rem;
  }
}
.top-work__title {
  position: relative;
}
.top-work__title::before {
  position: absolute;
  content: "WORKS";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #5DA7FE;
  opacity: 0.4;
  top: -9.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-work__title::before {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #5DA7FE;
    top: -2.5rem;
  }
}

.top-work__content {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__content {
    margin-top: 3.75rem;
  }
}

.top-work__item {
  position: relative;
  background-color: #ECECEC;
  border-radius: 2.25rem;
  padding: 2.5rem;
  padding: 6.25rem 9.375rem 7.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__item {
    padding: 2.5rem 1.25rem;
    border-radius: 1.125rem;
  }
}

.top-work__item:not(:first-child) {
  margin-top: 13.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__item:not(:first-child) {
    margin-top: 10rem;
  }
}

.top-work__item-number {
  position: absolute;
  top: -5.3125rem;
  left: 3.75rem;
  font-size: 11.8125rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.25rem #5DA7FE;
  letter-spacing: 0.05em;
  line-height: 1.0687830688;
  font-family: "Poppins", sans-serif;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-number {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #5DA7FE;
    top: -2.1875rem;
    left: 1.25rem;
  }
}

.top-work__item-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.425;
  color: #15174D;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-title {
    font-size: 1.5rem;
  }
}
.top-work__item-title::before {
  position: absolute;
  content: "";
  width: 56.375rem;
  height: 0.375rem;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-title::before {
    width: 16.25rem;
    height: 0.125rem;
    bottom: -0.75rem;
  }
}

.top-work__item-img-wrap {
  margin-top: 6.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5625rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-img-wrap {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.75rem;
  }
}
.top-work__item-img-wrap::before {
  position: absolute;
  content: "";
  width: 2.6875rem;
  height: 2.6875rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/icon_arrow-double-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-img-wrap::before {
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}

.top-work__item-img-before-wrap,
.top-work__item-img-after-wrap {
  position: relative;
}

.top-work__item-img-before,
.top-work__item-img-after {
  -o-object-fit: cover;
     object-fit: cover;
}

.top-work__item-img-before-text,
.top-work__item-img-after-text {
  position: absolute;
  top: -1.3125rem;
  left: -0.4375rem;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #5DA7FE;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.0857142857;
  background-color: #fff;
  border-radius: 100vw;
  border: 0.25rem solid #5DA7FE;
  padding: 0.28125rem 1.03125rem;
  min-width: 10.4375rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-img-before-text,
  .top-work__item-img-after-text {
    font-size: 1.5rem;
    border: 0.125rem solid #5DA7FE;
    min-width: initial;
  }
}

.top-work__item-text-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-text-wrap {
    margin-top: 1.25rem;
  }
}

.top-work__item-text-wrap.top-work__item-text-wrap--second {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-text-wrap.top-work__item-text-wrap--second {
    margin-top: 1.25rem;
  }
}

.top-work__item-text-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-text-title {
    font-size: 1.25rem;
    padding-left: 0.75rem;
  }
}
.top-work__item-text-title::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 2.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.25rem;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-text-title::before {
    width: 0.25rem;
    height: 1.25rem;
    left: 0;
  }
}

.top-work__item-text {
  margin-top: 0.5rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-text {
    font-size: 1rem;
  }
}

.top-work__item-bubble {
  position: absolute;
  z-index: 10;
  bottom: -1.875rem;
  left: 15rem;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-bubble {
    left: 2.5rem;
    bottom: -3.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80%;
  }
}
.top-work__item-bubble::before {
  position: absolute;
  content: "";
  width: 60.6875rem;
  height: 15.0625rem;
  top: 47%;
  left: 24.375rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/works_bubble.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-bubble::before {
    top: 70%;
    width: 21.875rem;
    height: 7.5rem;
    left: 9.125rem;
    background-image: url(../img/works_bubble-sp.png);
  }
}

.top-work__item-bubble-text {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.64;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-work__item-bubble-text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.top-search {
  background-color: #5DA7FE;
  padding: 4.875rem 1.25rem 8.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-search {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.top-search__inner {
  max-width: 91.4375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-search__inner {
    max-width: 31.25rem;
  }
}

.top-search__tabs {
  margin-top: -11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.4375rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-search__tabs {
    margin-top: -5.9375rem;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.top-search__tab {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.875rem 1.25rem;
  line-height: 1.075;
  border-radius: 1.875rem 1.875rem 0 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background-color: #fff;
  color: #5DA7FE;
  max-width: 29.75rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-search__tab {
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
    border-radius: 1.125rem 1.125rem 0 0;
  }
}
.top-search__tab.is-active {
  background-color: #5DA7FE;
  color: #fff;
  border-bottom: none;
}

.top-search__content {
  display: none;
  text-align: center;
}
.top-search__content.is-active {
  display: block;
}

.top-search__heading {
  margin-top: 3.25rem;
  margin-left: -1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
  line-height: 2.475;
}
@media screen and (max-width: 767.9px) {
  .top-search__heading {
    margin-top: 0;
    margin-left: 0;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.top-search__heading-highlight {
  font-size: 2.8125rem;
  color: #15174D;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-search__heading-highlight {
    font-size: 1.375rem;
  }
}
.top-search__heading-highlight::before {
  position: absolute;
  content: "";
  width: 33.3125rem;
  height: 1.125rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFFF67;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-search__heading-highlight::before {
    width: 16.25rem;
    height: 0.5rem;
  }
}

.top-search__categories {
  margin-top: 2.0625rem;
  margin-left: -1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5625rem 2.3125rem;
}
@media screen and (max-width: 767.9px) {
  .top-search__categories {
    margin-top: 1.25rem;
    margin-left: 0;
    gap: 0.625rem;
  }
}

.top-search__category-link {
  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;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  border: 0.125rem solid #fff;
  border-radius: 2.1875rem;
  padding: 3rem 1.25rem;
  min-width: 13.75rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 21.125rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-search__category-link {
    font-size: 1rem;
    padding: 1.25rem 0.625rem;
    min-width: auto;
    width: calc(50% - 0.3125rem);
    border-radius: 0.625rem;
  }
}
.top-search__category-link:hover {
  background-color: #fff;
  color: #5DA7FE;
  opacity: 1;
}

.top-search__category-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4.5625rem;
  line-height: 1.32;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-search__category-text {
    min-height: 2.75rem;
  }
}

.top-search__category-small {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.65;
}
@media screen and (max-width: 767.9px) {
  .top-search__category-small {
    font-size: 0.625rem;
    margin-top: 0.25rem;
  }
}

.top-search__buttons {
  margin-top: 3.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-search__buttons {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.top-search__btn {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4571428571;
  padding: 2.40625rem 1.25rem 2.40625rem 2.5rem;
  border-radius: 2.25rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
  max-width: 35.875rem;
  width: 100%;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
.top-search__btn::before {
  position: absolute;
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.25rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn::before {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 1.25rem;
  }
}
@media screen and (max-width: 767.9px) {
  .top-search__btn {
    font-size: 1.25rem;
    padding: 1.25rem 0.625rem;
    width: 100%;
    border-radius: 1.125rem;
  }
}
.top-search__btn:hover::before {
  -webkit-transform: translate(0.3125rem, -50%);
          transform: translate(0.3125rem, -50%);
}

.top-search__btn--case {
  background-color: #1C206C;
  border-bottom: 1rem solid rgb(12.3882978723, 15.3031914894, 56.1117021277);
  padding: 2.8125rem 3.75rem 2.25rem 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn--case {
    border-bottom: 0.5rem solid rgb(12.3882978723, 15.3031914894, 56.1117021277);
    padding: 1.25rem 0.625rem;
  }
}
.top-search__btn--case::before {
  background-image: url(../img/icon_arrow-navy-01.svg);
}
.top-search__btn--case:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn--case:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #11154D;
  }
}

.top-search__btn--tel {
  background-color: #FF6C5F;
  border-bottom: 1rem solid rgb(211.8260869565, 54.7826086957, 40.1739130435);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn--tel {
    border-bottom: 0.5rem solid rgb(211.8260869565, 54.7826086957, 40.1739130435);
    padding: 1.25rem 0.625rem;
  }
}
.top-search__btn--tel::before {
  background-image: url(../img/icon_arrow-red.svg);
}
.top-search__btn--tel:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn--tel:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #DE5D51;
  }
}

.top-search__btn--tel span {
  position: relative;
}
.top-search__btn--tel span::after {
  position: absolute;
  content: "";
  width: 2.625rem;
  height: 2.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -4.1875rem;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-search__btn--tel span::after {
    width: 1.25rem;
    height: 1.25rem;
    left: -1.875rem;
  }
}

.top-movie {
  background-color: #5DA7FE;
}

.top-movie__inner {
  max-width: 120rem;
  margin-inline: auto;
  background-color: #ECECEC;
  border-radius: 12.5rem;
  padding-top: 8.625rem;
  padding-bottom: 11.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-movie__inner {
    border-radius: 2.5rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.top-movie__content {
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-movie__content {
    max-width: 33.75rem;
    padding: 0 1.25rem;
  }
}

.top-movie__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #5DA7FE;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-movie__title {
    font-size: 1.5rem;
  }
}
.top-movie__title::before {
  position: absolute;
  content: "";
  width: 1.9375rem;
  height: 3.9375rem;
  top: 0;
  left: -2.3125rem;
  background-image: url(../img/deco_border-left-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-movie__title::before {
    width: 1rem;
    height: 2.5rem;
    top: -0.375rem;
    left: -1rem;
  }
}
.top-movie__title::after {
  position: absolute;
  content: "";
  width: 1.9375rem;
  height: 3.9375rem;
  top: 0;
  right: -2.3125rem;
  background-image: url(../img/deco_border-right-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-movie__title::after {
    width: 1rem;
    height: 2.5rem;
    top: -0.375rem;
    right: -1rem;
  }
}
.top-movie__title span {
  font-size: 3.125rem;
  color: #15174D;
  line-height: 0.86;
}
@media screen and (max-width: 767.9px) {
  .top-movie__title span {
    font-size: 1.5rem;
  }
}

.top-movie__wrap {
  margin-top: 4.1875rem;
  background-color: #fff;
  border: 0.1875rem solid #11154D;
  border-radius: 3.875rem;
  padding: 6.25rem 6.25rem 4.5625rem 6.25rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-movie__wrap {
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
    border-radius: 2.5rem;
    border: 0.125rem solid #11154D;
  }
}
.top-movie__wrap::before {
  position: absolute;
  content: "";
  width: 9.5rem;
  height: 12.5rem;
  bottom: -0.875rem;
  left: 3.9375rem;
  background-image: url(../img/deco_character-02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-movie__wrap::before {
    width: 4.375rem;
    height: 6.25rem;
    bottom: -4.375rem;
    left: 1.875rem;
  }
}
.top-movie__wrap::after {
  position: absolute;
  content: "";
  width: 10.1875rem;
  height: 13rem;
  bottom: -1.375rem;
  right: 3.6875rem;
  background-image: url(../img/deco_character-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-movie__wrap::after {
    width: 4.375rem;
    height: 6.25rem;
    bottom: -4.375rem;
    right: 1.875rem;
  }
}

.top-movie__wrap iframe {
  max-width: 62.5rem;
  width: 100%;
  height: 38.3125rem;
}
@media screen and (max-width: 767.9px) {
  .top-movie__wrap iframe {
    height: 12.5rem;
  }
}

.top-movie__wrap-text {
  margin-top: 2.125rem;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.0285714286;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-movie__wrap-text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.top-movie__wrap-text-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFFF67));
  background: linear-gradient(transparent 50%, #FFFF67 50%);
}

.top-difference {
  background-color: #5DA7FE;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.top-difference::before {
  position: absolute;
  content: "";
  width: 141.375rem;
  height: 43.75rem;
  bottom: -21.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/deco_ice.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-difference::before {
    width: 62.5rem;
    bottom: -23.125rem;
  }
}

.top-difference__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 18.3125rem;
  padding-bottom: 10.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-difference__inner {
    max-width: 33.75rem;
    padding: 6.25rem 1.25rem 3.75rem;
  }
}

.top-difference__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-difference__title {
    font-size: 1.75rem;
  }
}
.top-difference__title span {
  font-size: 3.125rem;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-difference__title span {
    font-size: 1.5rem;
  }
}
.top-difference__title {
  position: relative;
}
.top-difference__title::before {
  position: absolute;
  content: "DIFFERENCE";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #98C7FF;
  top: -9.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-difference__title::before {
    font-size: 3.375rem;
    -webkit-text-stroke: 0.0625rem #98C7FF;
    top: -1.875rem;
  }
}

.top-difference__text {
  margin-top: 5.9375rem;
  margin-right: -1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6333333333;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-difference__text {
    margin-top: 2.5rem;
    margin-right: 0;
    font-size: 1.25rem;
  }
}

.top-difference__table-wrap {
  margin-top: 4.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-difference__table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }
}

.top-difference__table-img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .top-difference__table-img {
    width: auto;
    min-width: 33.75rem;
    height: auto;
  }
}

.top-difference__img {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-difference__img {
    margin-top: 1.25rem;
  }
}

.top-reason {
  background-color: #15174D;
  overflow-x: clip;
}

.top-reason__inner {
  max-width: 94.1875rem;
  margin-inline: auto;
  padding-top: 18.4375rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__inner {
    max-width: 33.75rem;
    padding-top: 5rem;
    padding-inline: 1.25rem;
    padding-bottom: 3.75rem;
  }
}

.top-reason__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-reason__title {
    font-size: 1.75rem;
  }
}
.top-reason__title span {
  font-size: 3.125rem;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-reason__title span {
    font-size: 1.5rem;
  }
}
.top-reason__title::before {
  position: absolute;
  content: "REASON";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #5DA7FE;
  opacity: 0.4;
  top: -9.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-reason__title::before {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #5DA7FE;
    top: -2.5rem;
  }
}

.top-reason__items {
  margin-top: 9.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__items {
    margin-top: 3.75rem;
    gap: 3.125rem;
  }
}

.top-reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}

.top-reason__item.top-reason__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item.top-reason__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-reason__item.top-reason__item--reverse .top-reason__item-text-wrap::before {
  left: auto;
  right: -4.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-reason__item:nth-child(1) .top-reason__item-text-wrap {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item:nth-child(1) .top-reason__item-text-wrap {
    padding-top: 2.5rem;
  }
}

.top-reason__item:nth-child(2) .top-reason__item-text-wrap {
  padding-top: 6.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item:nth-child(2) .top-reason__item-text-wrap {
    padding-top: 2.5rem;
  }
}

.top-reason__item:nth-child(3) .top-reason__item-text-wrap {
  padding-top: 6.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item:nth-child(3) .top-reason__item-text-wrap {
    padding-top: 2.5rem;
  }
}

.top-reason__item-img-wrap {
  max-width: 44.8125rem;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}

.top-reason__item-img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-img {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

.top-reason__item-text-wrap {
  position: relative;
  z-index: 5;
  max-width: 35.125rem;
  height: 31.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-text-wrap {
    width: 100%;
    background-color: #5DA7FE;
    height: auto;
    padding: 1.25rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.top-reason__item-text-wrap::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 31.25rem;
  top: 50%;
  left: -4.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #5DA7FE;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-text-wrap::before {
    display: none;
  }
}

.top-reason__item-number {
  position: absolute;
  top: -5.9375rem;
  left: -0.625rem;
  font-size: 11.8125rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.25rem #fff;
  letter-spacing: 0.05em;
  line-height: 1.0687830688;
  font-family: "Poppins", sans-serif;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-number {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #fff;
    top: -2.1875rem;
    left: 1.25rem;
  }
}

.top-reason__item-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.425;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-title {
    font-size: 1.375rem;
  }
}
.top-reason__item-title::before {
  position: absolute;
  content: "";
  width: 3.0625rem;
  height: 0.25rem;
  bottom: -3.375rem;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-title::before {
    height: 0.125rem;
    bottom: -1.25rem;
  }
}

.top-reason__item:nth-child(2) .top-reason__item-title::before,
.top-reason__item:nth-child(3) .top-reason__item-title::before {
  bottom: -2.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item:nth-child(2) .top-reason__item-title::before,
  .top-reason__item:nth-child(3) .top-reason__item-title::before {
    bottom: -1.25rem;
  }
}

.top-reason__item-text {
  margin-top: 4.1875rem;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #15174D;
  letter-spacing: 0.05em;
  line-height: 1.56;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-text {
    font-size: 1rem;
    margin-top: 2.5rem;
    letter-spacing: 0.03em;
  }
}
.top-reason__item-text span {
  font-size: 1.875rem;
  line-height: 1.3;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item-text span {
    font-size: 1.125rem;
  }
}

.top-reason__item:nth-child(1) .top-reason__item-text {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-reason__item:nth-child(1) .top-reason__item-text {
    margin-top: 2.5rem;
  }
}

.top-voice {
  overflow-x: clip;
  position: relative;
}
.top-voice::before {
  position: absolute;
  content: "";
  width: 62rem;
  height: 6.8125rem;
  top: -0.0625rem;
  left: 79%;
  -webkit-transform: translateX(-50%) scaleX(-1);
          transform: translateX(-50%) scaleX(-1);
  background-image: url(../img/deco_wave.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-voice::before {
    width: 21.875rem;
    height: 2.5rem;
  }
}

.top-voice__inner {
  max-width: 120rem;
  margin-inline: auto;
  padding-top: 11.4375rem;
  padding-bottom: 11.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__inner {
    max-width: 33.75rem;
    padding: 6.25rem 1.25rem 3.75rem;
  }
}

.top-voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10.5rem;
  gap: 10.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__content {
    padding-left: 0rem;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-voice__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.2;
  position: relative;
  z-index: 10;
  padding-top: 11.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title {
    font-size: 1.5rem;
    padding-top: 4.375rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    background-color: #5DA7FE;
    padding: 1.25rem;
    text-align: center;
    border-radius: 100vw;
    letter-spacing: 0.05em;
  }
}
.top-voice__title::before {
  position: absolute;
  content: "";
  width: 14.5625rem;
  height: 35.25rem;
  top: 0.625rem;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/bg_bubble-vertical.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title::before {
    display: none;
  }
}
.top-voice__title::after {
  position: absolute;
  content: "";
  width: 4.25rem;
  height: 4.25rem;
  top: 6rem;
  left: 43%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_voice.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title::after {
    display: none;
  }
}
.top-voice__title span {
  font-size: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title span {
    font-size: 1.5rem;
  }
}

.top-voice__swiper-wrap {
  margin-top: 9.6875rem;
  max-width: 107rem;
  position: relative;
  width: 100%;
  min-height: 45.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-wrap {
    max-width: 100%;
    margin-top: 0;
    min-height: initial;
  }
}
.top-voice__swiper-wrap::before {
  position: absolute;
  content: "VOICE";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #98C7FF;
  opacity: 0.65;
  top: -14.6875rem;
  right: 13.125rem;
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-wrap::before {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.125rem #98C7FF;
    right: initial;
    top: -10.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-voice__swiper.swiper {
  padding: 0.625rem;
  margin-top: -0.625rem;
  margin-left: -0.625rem;
}

.top-voice__swiper.swiper .swiper-slide {
  background-color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  height: auto;
}

.top-voice__img {
  border-radius: 1.25rem 1.25rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 20.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__img {
    height: 15rem;
  }
}

.top-voice__body {
  padding: 1.3125rem 2rem 2.375rem 3rem;
  min-height: 24rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__body {
    padding: 1.25rem;
    min-height: 16.5625rem;
  }
}

.top-voice__title-wrap {
  position: relative;
  padding-left: 1.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title-wrap {
    padding-left: 1.25rem;
  }
}
.top-voice__title-wrap::after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-voice__title-wrap::after {
    width: 0.25rem;
    height: 3.5rem;
  }
}

.top-voice__category {
  font-size: 1.875rem;
  font-weight: 700;
  color: #5DA7FE;
  letter-spacing: 0.05em;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .top-voice__category {
    font-size: 1.125rem;
  }
}

.top-voice__post-title {
  margin-top: -0.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.425;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .top-voice__post-title {
    margin-top: -0.3125rem;
    font-size: 1.25rem;
  }
}

.top-voice__prefectures {
  margin-top: 1.25rem;
  font-size: 1.5625rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 2.28;
  text-align: center;
  background-color: #5DA7FE;
  border-radius: 100vw;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .top-voice__prefectures {
    font-size: 1.125rem;
  }
}

.top-voice__text {
  margin-top: 1rem;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #5DA7FE;
  letter-spacing: 0.05em;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 767.9px) {
  .top-voice__text {
    font-size: 1rem;
  }
}

.top-voice__nav {
  position: absolute;
  bottom: 1.875rem;
  left: -12.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-voice__nav {
    position: initial;
    -webkit-transform: none;
            transform: none;
  }
}

.top-voice__swiper-button-prev.swiper-button-prev {
  background-image: url(../img/icon_arrow-blue-left.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 4.8125rem;
  height: 4.8125rem;
  border-radius: 100vw;
  background-color: #5DA7FE;
  color: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-button-prev.swiper-button-prev {
    -webkit-transform: none;
            transform: none;
    width: 2.8125rem;
    height: 2.8125rem;
    top: 45%;
    left: -0.625rem;
  }
}
.top-voice__swiper-button-prev.swiper-button-prev:hover {
  -webkit-transform: translateX(0.5rem) rotate(180deg);
          transform: translateX(0.5rem) rotate(180deg);
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-button-prev.swiper-button-prev:hover {
    -webkit-transform: none;
            transform: none;
  }
}

.top-voice__swiper-button-next.swiper-button-next {
  background-image: url(../img/icon_arrow-blue-left.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 4.8125rem;
  height: 4.8125rem;
  border-radius: 100vw;
  background-color: #5DA7FE;
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-button-next.swiper-button-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    width: 2.8125rem;
    height: 2.8125rem;
    top: 45%;
    right: -0.625rem;
  }
}
.top-voice__swiper-button-next.swiper-button-next:hover {
  -webkit-transform: translateX(-0.5rem);
          transform: translateX(-0.5rem);
}
@media screen and (max-width: 767.9px) {
  .top-voice__swiper-button-next.swiper-button-next:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.top-voice__btn-wrap {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-voice__btn-wrap {
    margin-top: 2.5rem;
  }
}

.top-voice__btn.btn {
  padding: 2.8125rem 9.375rem 2.25rem 5.6875rem;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-voice__btn.btn {
    padding: 1.25rem 0.625rem;
  }
}
.top-voice__btn.btn:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-voice__btn.btn:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #11154D;
  }
}

.top-mind {
  background-color: #5CA7FE;
  overflow-x: clip;
}

.top-mind__inner {
  max-width: 117.5rem;
  margin-inline: auto;
  padding-top: 9.6875rem;
  padding-bottom: 13.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__inner {
    max-width: 33.75rem;
    padding-top: 5rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.top-mind__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  margin-left: 5.3125rem;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-mind__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 0;
  }
}
.top-mind__title-wrap::before {
  position: absolute;
  content: "MIND";
  font-size: 14.875rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #98C7FF;
  opacity: 0.65;
  top: 0.25rem;
  right: 20.625rem;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-mind__title-wrap::before {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 4.375rem;
    -webkit-text-stroke: 0.125rem #98C7FF;
    top: -3.75rem;
  }
}

.top-mind__title {
  font-size: 3.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #15174D;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-mind__title {
    font-size: 1.5rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: 100%;
    text-align: center;
    padding-right: 2.5rem;
  }
}
.top-mind__title::before {
  position: absolute;
  content: "";
  width: 22.25rem;
  height: 22.25rem;
  bottom: -2.8125rem;
  right: -17.5rem;
  background-image: url(../img/deco_machine.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  display: none;
}
@media screen and (max-width: 767.9px) {
  .top-mind__title::before {
    width: 10rem;
    height: 10rem;
    right: -1.875rem;
    bottom: -1.875rem;
  }
}
.top-mind__title span {
  font-size: 3.75rem;
  color: #fff;
  display: block;
  padding-top: 14.6875rem;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767.9px) {
  .top-mind__title span {
    font-size: 1.75rem;
    padding-top: 0;
    letter-spacing: 0.05em;
  }
}

.top-mind__text-wrap {
  max-width: 40.625rem;
}

.top-mind__text-title {
  font-size: 2.4375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4358974359;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-mind__text-title {
    font-size: 1.25rem;
  }
}

.top-mind__text {
  margin-top: 1.125rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.32;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-mind__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.top-mind__staffs {
  margin-top: 6.875rem;
  max-width: 75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staffs {
    margin-top: 2.5rem;
    gap: 1.25rem;
    max-width: 26.25rem;
  }
}

.top-mind__staff {
  background-color: #fff;
  border-radius: 3.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 4.1875rem 3.3125rem;
  gap: 0;
  position: relative;
  min-height: 18.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff {
    padding: 1.875rem 1.25rem;
    border-radius: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    min-height: 16.25rem;
    overflow: hidden;
  }
}
.top-mind__staff::before {
  position: absolute;
  content: "";
  width: 24.71875rem;
  height: 7.96875rem;
  bottom: -0.0625rem;
  right: -0.0625rem;
  background-image: url(../img/deco_ice-right-radius.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff::before {
    width: 12.5rem;
    height: 4.0625rem;
  }
}

.top-mind__staff.top-mind__staff--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  gap: 2.125rem;
  padding: 2.1875rem 4.0625rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff.top-mind__staff--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}
.top-mind__staff.top-mind__staff--reverse::before {
  right: initial;
  left: -0.0625rem;
  background-image: url(../img/deco_ice-left-radius.png);
}

.top-mind__staff.top-mind__staff--reverse .top-mind__staff-text {
  margin-top: 2.5rem;
  margin-left: -3.125rem;
  text-align: right;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff.top-mind__staff--reverse .top-mind__staff-text {
    margin-top: 0;
    margin-left: 0;
  }
}

.top-mind__staff.top-mind__staff--reverse .top-mind__staff-text span {
  margin-right: 0rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff.top-mind__staff--reverse .top-mind__staff-text span {
    margin-left: 0.3125rem;
  }
}

.top-mind__staff:nth-child(3) {
  gap: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff:nth-child(3) {
    gap: 1.875rem;
  }
}

.top-mind__staff-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.525;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-text {
    font-size: 1.125rem;
  }
}
.top-mind__staff-text span {
  color: #fff;
  background-color: #5DA7FE;
  line-height: 0.875;
  margin-right: 0.625rem;
  margin-top: 0.625rem;
  display: inline-block;
  padding: 0.71875rem 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-text span {
    margin-top: 0.3125rem;
    margin-right: 0.3125rem;
    padding: 0.625rem 0.3125rem;
  }
}

.top-mind__staff-name-item {
  position: relative;
  padding-left: 1.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-name-item {
    padding-left: 1rem;
  }
}
.top-mind__staff-name-item::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 4.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-name-item::before {
    width: 0.25rem;
    height: 3.125rem;
  }
}

.top-mind__staff-position {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-position {
    font-size: 1rem;
  }
}

.top-mind__staff-name {
  font-size: 2.4375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4358974359;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-name {
    font-size: 1.25rem;
  }
}

.top-mind__staff-img {
  position: absolute;
  bottom: 1.0625rem;
  right: 0;
  width: 21.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff-img {
    width: 36vw;
    bottom: 0.3125rem;
    z-index: -1;
    right: -3.75rem;
  }
}

.top-mind__staff:nth-child(1) .top-mind__staff-img {
  width: 21.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff:nth-child(1) .top-mind__staff-img {
    width: 62vw;
    max-width: 16.875rem;
  }
}

.top-mind__staff.top-mind__staff--reverse .top-mind__staff-img {
  width: 20.5rem;
  left: 4.375rem;
  bottom: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff.top-mind__staff--reverse .top-mind__staff-img {
    width: 56vw;
    left: -1.25rem;
    bottom: 0.3125rem;
    max-width: 15.625rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-mind__staff.top-mind__staff--reverse .top-mind__staff-name-wrap {
    max-width: 10.625rem;
  }
}

.top-mind__staff:nth-child(3) .top-mind__staff-img {
  width: 20.9375rem;
  right: 1.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__staff:nth-child(3) .top-mind__staff-img {
    width: 61vw;
    right: -3.125rem;
    max-width: 16.5625rem;
  }
}

.top-mind__btn-wrap.btn-wrap {
  margin-top: 5.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__btn-wrap.btn-wrap {
    margin-top: 2.5rem;
  }
}

.top-mind__btn.btn {
  max-width: 33.5rem;
  width: 100%;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
.top-mind__btn.btn:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-mind__btn.btn:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #11154D;
  }
}

.top-mind__content {
  margin-top: 7.9375rem;
  max-width: 117.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-mind__content {
    margin-top: 2.5rem;
  }
}

.top-mind__content-text {
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.86;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-mind__content-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.top-mind__content-text span {
  color: #15174D;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #FFFF67));
  background: linear-gradient(transparent 65%, #FFFF67 65%);
  margin-right: 1.25rem;
}

.top-mind__items {
  margin-top: 9.1875rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767.9px) {
  .top-mind__items {
    margin-top: 3.75rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.top-mind__item {
  position: relative;
}

.top-mind__item:nth-child(even) {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item:nth-child(even) {
    margin-top: 0;
  }
}

.top-mind__item-text-wrap {
  position: absolute;
  top: -2.25rem;
  right: 2.9375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-text-wrap {
    top: -1.25rem;
    right: 1.25rem;
  }
}

.top-mind__item-read {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.0222222222;
  color: #15174D;
  background-color: #fff;
  border: 0.1875rem solid #15174D;
  padding: 0.96875rem 0.59375rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-read {
    font-size: 1.5rem;
    border: 0.125rem solid #15174D;
  }
}

.top-mind__item-read.top-mind__item-read--secondary {
  display: inline-block;
  margin-right: -0.1875rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-read.top-mind__item-read--secondary {
    margin-right: -0.125rem;
  }
}

.top-mind__item-img {
  border-radius: 1.875rem 1.875rem 0 0;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-img {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.top-mind__item-body {
  background-color: #15174D;
  padding: 1.625rem 2.03125rem 1.6875rem;
  border-radius: 0 0 1.875rem 1.875rem;
  position: relative;
  z-index: 10;
  min-height: 13.1875rem;
  margin-top: -13.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-body {
    padding: 1.25rem 1.25rem;
    min-height: 10rem;
    margin-top: -13.125rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-mind__item:nth-child(4) .top-mind__item-body {
    margin-top: -14.375rem;
  }
}

.top-mind__item-body-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4666666667;
  color: #fff;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-body-title {
    font-size: 1.25rem;
    padding-left: 0.75rem;
  }
}
.top-mind__item-body-title {
  position: relative;
}
.top-mind__item-body-title::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 1.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-body-title::before {
    width: 0.25rem;
    height: 1.25rem;
  }
}

.top-mind__item-body-text {
  margin-top: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-mind__item-body-text {
    font-size: 1rem;
  }
}

.top-sns__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 18.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-sns__inner {
    max-width: 33.75rem;
    padding-top: 6.25rem;
    padding-inline: 1.25rem;
  }
}

.top-sns__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.86;
  color: #15174D;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-sns__title {
    font-size: 1.5rem;
  }
}
.top-sns__title::before {
  position: absolute;
  content: "";
  width: 10.6875rem;
  height: 5rem;
  top: -5.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/deco_check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-sns__title::before {
    width: 7.5rem;
    height: 3.75rem;
    top: -4.375rem;
  }
}
.top-sns__title span {
  font-size: 3.75rem;
  line-height: 0.7166666667;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-sns__title span {
    font-size: 1.75rem;
  }
}

.top-sns__read {
  margin-top: 5.125rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-sns__read {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.top-sns__items {
  margin-top: 2.8125rem;
  padding-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-sns__items {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-sns__items::before {
  position: absolute;
  content: "";
  width: 9.5rem;
  height: 12.5rem;
  bottom: -15rem;
  left: 25rem;
  background-image: url(../img/deco_character-02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-sns__items::before {
    left: 2.5rem;
    width: 6.25rem;
    height: 7.5rem;
    bottom: -9.375rem;
  }
}
.top-sns__items::after {
  position: absolute;
  content: "";
  width: 10.1875rem;
  height: 13rem;
  bottom: -15rem;
  right: 25rem;
  background-image: url(../img/deco_character-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-sns__items::after {
    right: 2.5rem;
    width: 6.25rem;
    height: 7.5rem;
    bottom: -9.375rem;
  }
}

.top-sns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 17.1875rem;
  width: 100%;
  padding: 2.41875rem 1.675rem 1.5625rem;
  background-color: #fff;
  border: 0.1875rem solid #15174D;
  border-radius: 2.34375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item {
    padding: 1.25rem;
    border-radius: 1.125rem;
    border: 0.125rem solid #15174D;
  }
}
.top-sns__item::before {
  content: "";
  position: absolute;
  bottom: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.1875rem solid transparent;
  border-right: 1.1875rem solid transparent;
  border-top: 1.5625rem solid #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item::before {
    display: none;
  }
}
.top-sns__item::after {
  content: "";
  position: absolute;
  bottom: -1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1.375rem solid #fff;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item::after {
    display: none;
  }
}
.top-sns__item:hover {
  opacity: 1;
}
.top-sns__item:hover .top-sns__item-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.top-sns__item:nth-child(2) {
  padding-top: 1.09375rem;
}

.top-sns__item:nth-child(3) {
  padding-top: 2.1875rem;
}

.top-sns__item:nth-child(4) {
  padding-top: 2.41875rem;
}

.top-sns__item-img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.top-sns__item-img.top-sns__item-img--x {
  width: 4.125rem;
  margin-bottom: 1.3625rem;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item-img.top-sns__item-img--x {
    width: 2.0625rem;
  }
}

.top-sns__item-img.top-sns__item-img--instagram {
  width: 7.6875rem;
  margin-bottom: 0.35rem;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item-img.top-sns__item-img--instagram {
    width: 3.84375rem;
  }
}

.top-sns__item-img.top-sns__item-img--facebook {
  width: 5rem;
  margin-bottom: 1.91875rem;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item-img.top-sns__item-img--facebook {
    width: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

.top-sns__item-img.top-sns__item-img--youtube {
  width: 6.125rem;
  margin-bottom: 2.40625rem;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item-img.top-sns__item-img--youtube {
    width: 3.0625rem;
    margin-bottom: 1.25rem;
  }
}

.top-sns__item-text {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.44;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-sns__item-text {
    font-size: 0.875rem;
  }
}

.marquee.marquee--sns {
  padding-top: 4.375rem;
  padding-bottom: 12.5rem;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .marquee.marquee--sns {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}

.marquee.marquee--sns .marquee-text {
  -webkit-text-stroke: 0.125rem #fff;
}

.top-company {
  background-color: #fff;
}

.top-company__inner {
  padding-top: 11.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__inner {
    padding-top: 3.75rem;
  }
}

.top-company__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.86;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-company__title {
    font-size: 1.75rem;
  }
}

.top-company__content {
  margin-top: 7.8125rem;
  max-width: 75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 1.25rem;
    margin-top: 2.5rem;
    gap: 2.5rem;
    max-width: 33.75rem;
  }
}

.top-company__text-wrap {
  max-width: 39.0625rem;
  width: 100%;
  margin-top: 7.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text-wrap {
    margin-top: 0;
  }
}

.top-company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1875rem solid #BEDCFF;
  padding-bottom: 0.8125rem;
  gap: 2.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
    padding-bottom: 0.625rem;
    border-bottom: 0.0625rem solid #BEDCFF;
  }
}

.top-company__list:not(:first-child) {
  margin-top: 0.9375rem;
}

.top-company__list-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #5DA7FE;
  padding-left: 1.5625rem;
  position: relative;
  min-width: 8.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__list-title {
    font-size: 1.125rem;
    padding-left: 1rem;
  }
}
.top-company__list-title::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 1.625rem;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.3125rem;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-company__list-title::before {
    width: 0.25rem;
    height: 1.25rem;
    left: 0;
  }
}

.top-company__list-text {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-company__list-text {
    font-size: 1rem;
  }
}

.top-company__img-wrap {
  max-width: 30.8125rem;
}

.top-company__detail {
  margin-top: 14.0625rem;
  background-color: #353866;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail {
    margin-top: 7.5rem;
  }
}
.top-company__detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40.9375rem;
  background-image: url(../img/company_bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail::before {
    height: 14.0625rem;
  }
}

.top-company__detail-inner {
  max-width: 76.6875rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.top-company__detail-title {
  position: absolute;
  top: -6.75rem;
  left: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-title {
    top: -4.375rem;
    left: 1.25rem;
  }
}

.top-company__detail-title-ja {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-title-ja {
    font-size: 1.5rem;
  }
}

.top-company__detail-title-en {
  display: block;
  font-size: 6.4375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0582524272;
  color: #5DA7FE;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-title-en {
    font-size: 3rem;
  }
}

.top-company__detail-content {
  padding-top: 25.5rem;
  padding-bottom: 5.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10.125rem;
  padding-left: 2.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 0;
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
    gap: 2.5rem;
  }
}

.top-company__detail-img-wrap {
  margin-top: 19.6875rem;
  max-width: 19.1875rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-img-wrap {
    margin-top: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 767.9px) {
  .top-company__detail-img-wrap img {
    max-width: 18.75rem;
  }
}

.top-company__detail-logo:not(:first-child) {
  margin-top: 1.0625rem;
}

.top-company__detail-logo-text {
  margin-top: 2.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-logo-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.top-company__detail-text {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.2333333333;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-text {
    font-size: 1rem;
  }
}

.top-company__detail-lists {
  margin-top: 3.25rem;
  margin-left: 0.9375rem;
  border-left: 0.25rem solid #fff;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-lists {
    margin-top: 2.5rem;
    margin-left: 0;
    border-left: 0.125rem solid #fff;
  }
}

.top-company__detail-list {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 5.3125rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-list {
    font-size: 1rem;
    padding-left: 4.375rem;
  }
}
.top-company__detail-list::before {
  position: absolute;
  content: "";
  width: 2.1875rem;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.875rem;
  background-image: url(../img/icon_crown.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-company__detail-list::before {
    width: 1.5625rem;
    height: 1.0625rem;
    left: 1.25rem;
  }
}

.top-company__detail-list:not(:first-child) {
  margin-top: 1.46875rem;
}

.top-company__swiper {
  aspect-ratio: 466/352;
  width: 100%;
  margin-inline: auto;
  height: 23.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__swiper {
    aspect-ratio: 200/160;
    height: 10rem;
  }
}

.top-company__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.top-company__swiper .swiper-slide {
  width: auto;
  max-width: 29.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .top-company__swiper .swiper-slide {
    max-width: 12.5rem;
  }
}

.top-company__swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-price {
  background-color: #15174D;
}

.top-price__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 18.4375rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-price__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.top-price__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  text-align: center;
  color: #5DA7FE;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-price__title {
    font-size: 1.75rem;
  }
}
.top-price__title::before {
  position: absolute;
  content: "PRICE";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #5DA7FE;
  opacity: 0.4;
  top: -9.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-price__title::before {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #5DA7FE;
    top: -2.5rem;
  }
}

.top-price__read {
  margin-top: 4.6875rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-price__read {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }
}

.top-price__items {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-price__items {
    margin-top: 2.5rem;
  }
}

.top-price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  background-color: #fff;
  border-radius: 3.3125rem;
  padding: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-price__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem;
    border-radius: 1.125rem;
    gap: 1.25rem;
  }
}

.top-price__item:not(:first-child) {
  margin-top: 1.875rem;
}

.top-price__item-text-wrap {
  max-width: 25.875rem;
  width: 100%;
}

.top-price__item-title {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  color: #15174D;
  text-align: center;
  background-color: #5DA7FE;
  padding: 1.9375rem;
  border-radius: 100vw;
}
@media screen and (max-width: 767.9px) {
  .top-price__item-title {
    font-size: 1.375rem;
    padding: 0.875rem;
  }
}

.top-price__item-text {
  margin-top: 2.3125rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-price__item-text {
    margin-top: 1.25rem;
    font-size: 1.375rem;
  }
}

.top-price__item-img-wrap {
  max-width: 39.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5625rem;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-price__item-img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-price__item-img-wrap::before {
  position: absolute;
  content: "";
  width: 1.8125rem;
  height: 2.0625rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/icon_arrow-double-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-price__item-img-wrap::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.top-price__item-img {
  max-width: 18.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-price__caption {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.25;
  color: #fff;
  text-align: right;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-price__caption {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    padding-right: 0;
  }
}

.top-price__btn-wrap.btn-wrap {
  max-width: 37.5rem;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-price__btn-wrap.btn-wrap {
    margin-top: 2.5rem;
  }
}

.top-price__btn.btn {
  background-color: #FF6C5F;
  border-bottom: 1rem solid #DE5D51;
  padding: 2.8125rem 6.25rem 2.1875rem 1.25rem;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-price__btn.btn {
    padding: 1.25rem 0.625rem;
    border-bottom: 0.5rem solid #DE5D51;
  }
}
.top-price__btn.btn::before {
  background-image: url(../img/icon_arrow-red.svg);
}
.top-price__btn.btn:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-price__btn.btn:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #DE5D51;
  }
}

.top-faq {
  background-color: #5DA7FE;
}

.top-faq__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 10rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-faq__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.top-faq__title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.7166666667;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-faq__title {
    font-size: 1.75rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .top-faq__title::before {
    position: absolute;
    content: "";
    width: 3.75rem;
    height: 3.421875rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -5rem;
    background-image: url(../img/deco_character-head.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.top-faq__items {
  margin-top: 6.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-faq__items {
    margin-top: 2.5rem;
  }
}

.top-faq__item {
  background-color: #fff;
  border-radius: 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-faq__item {
    border-radius: 0.75rem;
  }
}

.top-faq__item:not(:first-child) {
  margin-top: 1.375rem;
}

.top-faq__item-title {
  background-color: #15174D;
  padding: 1.875rem 3.125rem;
  border-radius: 1.5625rem 1.5625rem 0 0;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-faq__item-title {
    padding: 1.25rem;
    font-size: 1.25rem;
    border-radius: 0.75rem 0.75rem 0 0;
    text-indent: -1.2em;
    padding-left: 2em;
  }
}

.top-faq__item-body {
  padding: 1.5625rem 2.375rem 1.5625rem 11.6875rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-faq__item-body {
    padding: 1.25rem;
  }
}
.top-faq__item-body::before {
  position: absolute;
  content: "";
  width: 7.59375rem;
  height: 6.84375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.40625rem;
  background-image: url(../img/deco_character-head.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-faq__item-body::before {
    display: none;
  }
}

.top-faq__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #15174D;
  text-indent: -1em;
  padding-left: 1em;
  min-height: 6.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .top-faq__item-text {
    font-size: 1rem;
    min-height: initial;
  }
}

.top-blog {
  background-color: #fff;
  background-image: url(../img/bg_check.png);
  background-size: 1.375rem;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 767.9px) {
  .top-blog {
    background-size: 1rem;
  }
}

.top-blog__inner {
  max-width: 71.875rem;
  margin-inline: auto;
  padding-top: 18.4375rem;
  padding-bottom: 15.9375rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.top-blog__title {
  font-size: 3.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 0.86;
  color: #15174D;
  position: relative;
  z-index: 10;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__title {
    font-size: 1.75rem;
    text-align: center;
    margin-left: 0;
  }
}
.top-blog__title::before {
  position: absolute;
  content: "BLOG";
  font-size: 14.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #5DA7FE;
  opacity: 0.65;
  top: -10.4375rem;
  left: -2.71875rem;
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-blog__title::before {
    font-size: 4.375rem;
    -webkit-text-stroke: 0.0625rem #5DA7FE;
    top: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-blog__items {
  margin-top: 5.3125rem;
  margin-left: 14.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__items {
    margin-top: 2.5rem;
    margin-left: 0;
  }
}

.top-blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 4.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

.top-blog__item:not(:first-child) {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item:not(:first-child) {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid #5DA7FE;
  }
}

.top-blog__item a {
  color: #000;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.top-blog__item a:hover {
  opacity: 1;
  color: #5DA7FE;
}

.top-blog__item-category-wrap {
  max-width: 9.6875rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-category-wrap {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.top-blog__item-category {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
  background-color: #fff;
  border: 0.1875rem solid #5DA7FE;
  padding: 0.21875rem 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-category {
    font-size: 0.875rem;
    border: 0.125rem solid #5DA7FE;
  }
}

.top-blog__item-text-wrap {
  position: relative;
}
.top-blog__item-text-wrap::before {
  position: absolute;
  content: "";
  width: 0.3125rem;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -1.6875rem;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-text-wrap::before {
    display: none;
  }
}

.top-blog__item-date {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-date {
    font-size: 1rem;
  }
}

.top-blog__item-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-title {
    font-size: 1rem;
  }
}

.top-blog__btn-wrap {
  margin-top: 3.125rem;
  text-align: right;
  margin-right: -1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-blog__btn-wrap {
    margin-right: 0;
  }
}

.top-blog__btn {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5333333333;
  color: #000;
  padding-right: 5.25rem;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767.9px) {
  .top-blog__btn {
    font-size: 1.25rem;
    padding-right: 3.75rem;
  }
}
.top-blog__btn:hover {
  opacity: 1;
  color: #5DA7FE;
}
.top-blog__btn:hover::before {
  -webkit-transform: translate(0.3125rem, -50%);
          transform: translate(0.3125rem, -50%);
}
.top-blog__btn::before {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 3.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-image: url(../img/icon_arrow-blue-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top-blog__btn::before {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.top-demo {
  position: relative;
  z-index: 10;
  overflow-y: clip;
  overflow-x: clip;
}
.top-demo::before {
  position: absolute;
  content: "";
  width: 141.375rem;
  height: 43.75rem;
  bottom: -18.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/deco_ice.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-demo::before {
    width: 62.5rem;
    bottom: -23.125rem;
  }
}

.top-demo__bubble {
  margin-top: -8.5rem;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  color: #fff;
  text-align: center;
  background-color: #5DA7FE;
  border-radius: 100vw;
  position: relative;
  padding: 4.125rem;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-demo__bubble {
    margin-top: -2.8125rem;
    font-size: 1.125rem;
    padding: 2.5rem 1.25rem;
    line-height: 1.3;
  }
}
.top-demo__bubble::before {
  position: absolute;
  content: "";
  width: 2.6875rem;
  height: 2.3125rem;
  bottom: -2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #5DA7FE;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 767.9px) {
  .top-demo__bubble::before {
    width: 1.25rem;
    height: 1.0625rem;
    bottom: -1rem;
  }
}
.top-demo__bubble::after {
  position: absolute;
  content: "DEMONSTRATION";
  font-size: 11.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #8EC2FF;
  opacity: 0.65;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__bubble::after {
    font-size: 2.5rem;
    -webkit-text-stroke: 0.0625rem #8EC2FF;
    top: 2.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-demo__bubble span {
  position: relative;
}
.top-demo__bubble span::before {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 7.875rem;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -4.0625rem;
  background-image: url(../img/deco_border-left-large.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__bubble span::before {
    width: 1.875rem;
    height: 2.5rem;
    left: -1.875rem;
  }
}
.top-demo__bubble span::after {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 7.875rem;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -4.0625rem;
  background-image: url(../img/deco_border-right-large.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__bubble span::after {
    width: 1.875rem;
    height: 2.5rem;
    right: -1.875rem;
  }
}

.top-demo__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-bottom: 22.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
    padding-bottom: 5rem;
  }
}

.top-demo__info {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__info {
    margin-top: 2.5rem;
  }
}

.top-demo__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.86;
  color: #15174D;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top-demo__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.top-demo__title span {
  color: #5DA7FE;
  font-size: 3.75rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, yellow));
  background: linear-gradient(transparent 60%, yellow 60%);
  line-height: 0.7166666667;
}
@media screen and (max-width: 767.9px) {
  .top-demo__title span {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

.top-demo__area {
  margin-top: 5.125rem;
  max-width: 39.8125rem;
  background-color: #fff;
  border: 0.1875rem solid #5DA7FE;
  border-radius: 1.75rem;
  padding: 2.25rem 2.3125rem 2.25rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area {
    margin-top: 1.25rem;
    padding: 1.875rem;
    border-radius: 0.875rem;
    border: 0.125rem solid #5DA7FE;
  }
}
.top-demo__area::after {
  position: absolute;
  content: "";
  width: 49.0625rem;
  height: 46.375rem;
  top: -3.125rem;
  right: -40rem;
  background-image: url(../img/deco_track-character.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area::after {
    display: none;
  }
}

.top-demo__area-title {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3714285714;
  color: #5DA7FE;
  text-align: center;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area-title {
    font-size: 1.5rem;
    padding-left: 2.1875rem;
  }
}
.top-demo__area-title::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 3.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icon_map.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area-title::before {
    width: 1.5625rem;
    height: 1.875rem;
  }
}

.top-demo__area-text {
  margin-top: 1.875rem;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.8571428571;
  color: #5DA7FE;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area-text {
    font-size: 1.375rem;
  }
}
.top-demo__area-text::before {
  position: absolute;
  content: "";
  width: 31.8125rem;
  height: 1.4375rem;
  bottom: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFFF67;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area-text::before {
    width: 17.8125rem;
    height: 0.875rem;
    bottom: -0.625rem;
  }
}

.top-demo__area-caption {
  margin-top: 2.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-demo__area-caption {
    font-size: 0.875rem;
  }
}

.top-demo__info-text {
  margin-top: 4.5625rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.92;
  color: #15174D;
  max-width: 32.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__info-text {
    margin-top: 1.25rem;
    max-width: 100%;
    font-size: 1rem;
  }
}

.top-demo__steps {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #5DA7FE;
  border-radius: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-demo__steps::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 11.25rem;
    top: -12.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../img/deco_track-character-sp.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767.9px) {
  .top-demo__steps {
    margin-top: 13.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-demo__step {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 2.0625rem 0.625rem;
}
.top-demo__step:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 3.875rem;
  height: 10.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.25rem;
  background-image: url(../img/deco_step-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__step:not(:last-child)::before {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1.875rem;
    height: 1.875rem;
    background-image: url(../img/icon_arrow-blue-trans.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: initial;
    bottom: -0.625rem;
  }
}

.top-demo__step-number {
  position: absolute;
  font-size: 3.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  color: #fff;
  top: -2.8125rem;
  left: 2.65625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__step-number {
    font-size: 2rem;
    top: -1.375rem;
    left: 1.375rem;
  }
}

.top-demo__step-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-demo__step-title {
    font-size: 1.5rem;
  }
}

.top-demo__step-text {
  margin-top: 0.15625rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.92;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-demo__step-text {
    font-size: 1.25rem;
  }
}

.top-demo__detail {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail {
    margin-top: 2.5rem;
  }
}

.top-demo__detail-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail-lists {
    gap: 0.625rem;
  }
}

.top-demo__detail-list {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.92;
  color: #15174D;
  padding-left: 4.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail-list {
    font-size: 1.25rem;
    padding-left: 1.875rem;
  }
}
.top-demo__detail-list span {
  font-size: 2.1875rem;
  color: #5DA7FE;
  background-color: #fff;
  border: 0.1875rem solid #5DA7FE;
  padding: 0 0.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail-list span {
    font-size: 1.25rem;
    border: 0.125rem solid #5DA7FE;
  }
}
.top-demo__detail-list {
  position: relative;
}
.top-demo__detail-list::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/deco_ice-icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail-list::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.top-demo__detail-list:last-child::after {
  position: absolute;
  content: "";
  width: 48.125rem;
  height: 0.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-demo__detail-list:last-child::after {
    display: none;
  }
}

.top-demo__item-wrap {
  margin-top: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 74.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__item-wrap {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.top-demo__items {
  margin-left: 2.5rem;
  min-height: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-demo__items {
    margin-left: 0;
    min-height: initial;
    gap: 0.625rem;
  }
}

.top-demo__item {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #15174D;
  position: relative;
  padding-left: 1.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__item {
    font-size: 1rem;
    padding-left: 1.25rem;
  }
}
.top-demo__item::before {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  top: 0.6875rem;
  left: 0;
  background-color: #5DA7FE;
  border-radius: 100vw;
}
@media screen and (max-width: 767.9px) {
  .top-demo__item::before {
    width: 0.5rem;
    height: 0.5rem;
    top: 0.5625rem;
  }
}

.top-demo__style {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style {
    margin-top: 2.5rem;
  }
}

.top-demo__style-content {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-content {
    margin-top: 2.5rem;
  }
}

.top-demo__style-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.top-demo__style-services::before {
  position: absolute;
  content: "OR";
  font-size: 12.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.25rem #BFDDFF;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-services::before {
    font-size: 5rem;
    -webkit-text-stroke: 0.125rem #BFDDFF;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.top-demo__style-service {
  background-color: #fff;
  border-radius: 3.3125rem;
  min-height: 39.0625rem;
  padding: 18.75rem 2.8125rem 1.75rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service {
    padding: 7.5rem 1.25rem 1.25rem;
    min-height: 23.75rem;
    border-radius: 1.125rem;
  }
}

.top-demo__style-service:nth-child(1) {
  position: relative;
}
.top-demo__style-service:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 13.875rem;
  height: 8rem;
  top: 6.25rem;
  left: 47%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_track.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service:nth-child(1)::before {
    width: 6.9375rem;
    height: 4rem;
    top: 2.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-demo__style-service:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 5.5rem;
  height: 4.25rem;
  bottom: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_arrow-blue-trans.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service:nth-child(1)::after {
    display: none;
  }
}

.top-demo__style-service:nth-child(2) {
  position: relative;
}
.top-demo__style-service:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 10.0625rem;
  height: 8.875rem;
  top: 5.6875rem;
  left: 54%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_box.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service:nth-child(2)::before {
    width: 5.0625rem;
    height: 4.4375rem;
    top: 2.1875rem;
    left: 50%;
  }
}
.top-demo__style-service:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 5.5rem;
  height: 4.25rem;
  bottom: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_arrow-mint-trans.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service:nth-child(2)::after {
    background-image: url(../img/icon_arrow-blue-trans.svg);
    width: 3.75rem;
    height: 2.5rem;
    bottom: -1.375rem;
  }
}

.top-demo__style-service-title {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  color: #fff;
  background-color: #5DA7FE;
  border-radius: 100vw;
  text-align: center;
  padding: 1.9375rem 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service-title {
    font-size: 1.375rem;
    padding: 0.875rem;
  }
}

.top-demo__style-service-title.top-demo__style-service-title--mint {
  background-color: #7BC8CE;
}

.top-demo__style-service-text {
  margin-top: 2.3125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-service-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.top-demo__style-flows {
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flows {
    margin-top: 2.5rem;
  }
}
.top-demo__style-flows::before {
  position: absolute;
  content: "";
  width: 0.1875rem;
  height: 86.25rem;
  top: 0;
  left: 16.875rem;
  background-color: #5DA7FE;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flows::before {
    height: 121.875rem;
    left: 3.75rem;
  }
}
.top-demo__style-flows::after {
  position: absolute;
  content: "";
  width: 0.1875rem;
  height: 86.25rem;
  top: 0;
  right: 16.875rem;
  background-color: #5DA7FE;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flows::after {
    height: 121.875rem;
    right: 3.75rem;
  }
}

.top-demo__style-flow {
  background-color: #5DA7FE;
  border-radius: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 10.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: initial;
  }
}

.top-demo__style-flow:not(:first-child) {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.top-demo__style-flow.top-demo__style-flow--01 {
  gap: 9.0625rem;
  padding: 1.75rem 2.3125rem 2.3125rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--01 {
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.top-demo__style-flow.top-demo__style-flow--02 {
  gap: 5.375rem;
  background-color: #7D858E;
  padding: 0.875rem 3.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--02 {
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.top-demo__style-flow.top-demo__style-flow--half {
  margin-top: 0rem;
  gap: 5.0625rem;
  padding: 0.4375rem 1.25rem 0.4375rem 3.875rem;
  border-radius: 0.9375rem 0 0 0.9375rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 37.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--half {
    padding: 1.25rem;
    gap: 0.625rem;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.top-demo__style-flow.top-demo__style-flow--half .top-demo__style-flow-text-wrap {
  max-width: 16rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--half .top-demo__style-flow-text-wrap {
    max-width: initial;
  }
}

.top-demo__style-flow.top-demo__style-flow--04 {
  gap: 4.25rem;
  background-color: #7D858E;
  padding: 0.875rem 3.1875rem 0.875rem 3.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--04 {
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.top-demo__style-flow-title-wrap {
  text-align: center;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.top-demo__style-flow-number {
  display: block;
  font-size: 3.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0634920635;
  color: #fff;
  font-family: "Poppins", sans-serif;
  border-bottom: 0.1875rem solid #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-number {
    font-size: 2.5rem;
  }
}

.top-demo__style-flow-title {
  display: block;
  margin-top: 0.625rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-title {
    margin-top: 0;
    font-size: 1.25rem;
  }
}

.top-demo__style-flow-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-text {
    font-size: 1rem;
    text-align: left;
  }
}

.top-demo__style-flow-btn {
  margin-top: 1.75rem;
  display: inline-block;
  width: 42.0625rem;
  background-color: #fff;
  color: #5DA7FE;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  border-radius: 100vw;
  text-align: center;
  padding: 1.1875rem;
  position: relative;
  border: 0.1875rem solid #fff;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-btn {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    width: 100%;
  }
}
.top-demo__style-flow-btn::after {
  position: absolute;
  content: "";
  width: 0.8125rem;
  height: 1.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.96875rem;
  background-image: url(../img/icon_triangle-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-demo__style-flow-btn:hover {
  opacity: 1;
  background-color: #5DA7FE;
  color: #fff;
}
.top-demo__style-flow-btn:hover::after {
  background-image: url(../img/icon_triangle-right-white.svg);
}

.top-demo__style-flow-items {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-items {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-demo__style-flow.top-demo__style-flow--half.top-demo__style-flow--03 {
  background-color: #7BC8CE;
  border-radius: 0 0.9375rem 0.9375rem 0;
  padding: 0.1875rem 1.5rem;
  gap: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--half.top-demo__style-flow--03 {
    border-radius: 0 0 0.625rem 0.625rem;
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.top-demo__style-flow.top-demo__style-flow--half.top-demo__style-flow--05 {
  background-color: #7BC8CE;
  border-radius: 0 0.9375rem 0.9375rem 0;
  padding: 0.1875rem 2.625rem 0.1875rem 3.125rem;
  gap: 5.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--half.top-demo__style-flow--05 {
    border-radius: 0 0 0.625rem 0.625rem;
    padding: 1.25rem;
    gap: 0.625rem;
  }
}
.top-demo__style-flow.top-demo__style-flow--half.top-demo__style-flow--05 .top-demo__style-flow-text-wrap {
  max-width: initial;
}

.top-demo__style-flow.top-demo__style-flow--small {
  background-color: #fff;
  border: 0.1875rem solid #5DA7FE;
  max-width: 48.4375rem;
  margin-inline: auto;
  display: block;
  min-height: initial;
  padding: 1rem 1.25rem 1.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow.top-demo__style-flow--small {
    padding: 0.90625rem;
  }
}

.top-demo__style-flow-title.top-demo__style-flow-title--small {
  font-size: 2.1875rem;
  color: #5DA7FE;
  line-height: 1.4285714286;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-title.top-demo__style-flow-title--small {
    font-size: 1.5rem;
  }
}

.top-demo__style-flow-text.top-demo__style-flow-text--small {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .top-demo__style-flow-text.top-demo__style-flow-text--small {
    margin-top: 0.3125rem;
    font-size: 1rem;
    text-align: center;
  }
}

.top-demo__cta {
  margin-top: 9.1875rem;
  max-width: 55.8125rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta {
    margin-top: 1.25rem;
    width: 100%;
    max-width: 31.25rem;
  }
}

.top-demo__cta-tel {
  width: 100%;
  margin-top: 2.9375rem;
  background-color: #FF6C5F;
  color: #fff;
  display: block;
  border-radius: 2.25rem;
  border-bottom: 1rem solid #DE5D51;
  text-align: center;
  padding: 2.1875rem 1.25rem 1.25rem;
  position: relative;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel {
    margin-top: 2.5rem;
    border-radius: 1rem;
    border-bottom: 0.5rem solid #DE5D51;
    padding: 1.25rem 1.25rem 0.625rem;
  }
}
.top-demo__cta-tel::before {
  position: absolute;
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.5625rem;
  background-image: url(../img/icon_arrow-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel::before {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 0.9375rem;
  }
}
.top-demo__cta-tel:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #DE5D51;
  }
}
.top-demo__cta-tel:hover .solution__cta-tel-number {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.top-demo__cta-tel-number {
  display: inline-block;
  font-size: 4.5rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-left: 5rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel-number {
    font-size: 1.75rem;
    padding-left: 1.875rem;
  }
}
.top-demo__cta-tel-number::before {
  position: absolute;
  content: "";
  width: 3.375rem;
  height: 3.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel-number::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.top-demo__cta-tel-hours {
  font-size: 1.8125rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.4482758621;
}
@media screen and (max-width: 767.9px) {
  .top-demo__cta-tel-hours {
    font-size: 1rem;
  }
}

.top-contact {
  background-color: #5CA7FE;
}

.top-contact__inner {
  max-width: 64.8125rem;
  margin-inline: auto;
  padding-top: 10.5rem;
  padding-bottom: 11.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-contact__inner {
    max-width: 33.75rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.top-contact__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.86;
  text-align: center;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .top-contact__title {
    font-size: 1.5rem;
  }
}

.top-contact__read {
  margin-top: 7.1875rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.48;
  text-align: center;
  position: relative;
  z-index: 10;
  color: #5DA7FE;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-contact__read {
    margin-top: 3.75rem;
    font-size: 0.875rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
    padding-right: 1.875rem;
  }
}
.top-contact__read::before {
  position: absolute;
  content: "";
  width: 8.84375rem;
  height: 11rem;
  top: 27%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.9375rem;
  background-image: url(../img/deco_document.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-contact__read::before {
    width: 4.375rem;
    height: 5rem;
    left: -3.125rem;
    top: 4.375rem;
  }
}
.top-contact__read::after {
  position: absolute;
  content: "";
  width: 58.25rem;
  height: 12.0625rem;
  top: -3.4375rem;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/contact_bubble.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-contact__read::after {
    width: 20.625rem;
    top: -3.25rem;
    left: 57%;
    background-image: url(../img/contact_bubble-sp.png);
  }
}

.form {
  margin-top: 5.625rem;
  max-width: 64.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .form {
    margin-top: 3.75rem;
    max-width: 33.75rem;
  }
}

.form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .form__list {
    gap: 0.625rem;
  }
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4375rem;
}
@media screen and (max-width: 767.9px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__field.form__field--textarea,
.form__field.form__field--file {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__label {
  max-width: 22.375rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.5333333333;
}
@media screen and (max-width: 767.9px) {
  .form__label {
    font-size: 1.25rem;
  }
}
.form__label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__label.form__label--textarea label {
  padding-top: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .form__label.form__label--textarea label {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form__required {
  margin-left: auto;
  padding: 0.3125rem 0.71875rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FF6C5F;
  background-color: #fff;
  border-radius: 100vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .form__required {
    margin-left: 0.625rem;
    font-size: 0.875rem;
  }
}

.form__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.form__input {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.84;
  border: none;
  border-radius: 1.125rem;
  background-color: #fff;
  outline: none;
}
@media screen and (max-width: 767.9px) {
  .form__input {
    font-size: 1rem;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
  }
}
.form__input::-webkit-input-placeholder {
  color: #D6D6D6;
}
.form__input::-moz-placeholder {
  color: #D6D6D6;
}
.form__input:-ms-input-placeholder {
  color: #D6D6D6;
}
.form__input::-ms-input-placeholder {
  color: #D6D6D6;
}
.form__input::placeholder {
  color: #D6D6D6;
}

.form__textarea {
  width: 100%;
  height: 23.625rem;
  padding: 0.875rem 1.25rem;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 1.125rem;
  background-color: #fff;
  outline: none;
  resize: vertical;
}
@media screen and (max-width: 767.9px) {
  .form__textarea {
    font-size: 1.125rem;
    height: 16.25rem;
    border-radius: 0.5rem;
  }
}
.form__textarea::-webkit-input-placeholder {
  color: #D6D6D6;
}
.form__textarea::-moz-placeholder {
  color: #D6D6D6;
}
.form__textarea:-ms-input-placeholder {
  color: #D6D6D6;
}
.form__textarea::-ms-input-placeholder {
  color: #D6D6D6;
}
.form__textarea::placeholder {
  color: #D6D6D6;
}

.form__data-radio {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .form__data-radio {
    padding-top: 0;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.8125rem;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-radio {
    padding-top: 0;
  }
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: #15174D;
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item input[type=radio] {
  display: none;
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.84;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #15174D;
}
.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__photo-note {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.55;
  max-width: 40.25rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .form__photo-note {
    font-size: 1rem;
  }
}

.form__submit-button {
  margin-top: 4.59375rem;
  max-width: 37.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .form__submit-button {
    margin-top: 2.5rem;
  }
}
.form__submit-button::before {
  position: absolute;
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  top: 50%;
  right: 3.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icon_arrow-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .form__submit-button::before {
    top: 45%;
    width: 1.5625rem;
    height: 1.5625rem;
    right: 1.25rem;
  }
}
.form__submit-button:hover::before {
  -webkit-transform: translateY(calc(-50% + 1rem));
          transform: translateY(calc(-50% + 1rem));
}
@media screen and (max-width: 767.9px) {
  .form__submit-button:hover::before {
    -webkit-transform: translateY(calc(-50% + 0rem));
            transform: translateY(calc(-50% + 0rem));
  }
}

.form__submit-input {
  display: block;
  width: 100%;
  padding: 2.5rem 1.25rem;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #fff;
  background-color: #FF6C5F;
  border: none;
  border-radius: 2.25rem;
  cursor: pointer;
  border-bottom: 1rem solid #DE5D51;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .form__submit-input {
    font-size: 1.5rem;
    padding: 1.25rem;
    border-radius: 1.125rem;
    border-bottom: 0.5rem solid #DE5D51;
  }
}
.form__submit-input:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .form__submit-input:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #DE5D51;
  }
}

.file-drop {
  position: relative;
  background: #fff;
  border-radius: 1.125rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .file-drop {
    border-radius: 0.5rem;
    padding: 1.25rem;
  }
}

.file-drop__text {
  font-size: 1.25rem;
  color: #BFBEBE;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .file-drop__text {
    font-size: 1rem;
  }
}

.file-drop__sub {
  font-size: 1rem;
  color: #BFBEBE;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .file-drop__sub {
    font-size: 0.875rem;
  }
}

.file-drop__btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #ECECEC;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 767.9px) {
  .file-drop__btn {
    padding: 0.5rem 1rem;
  }
}

/* inputを全体に被せる */
.file-drop__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

/* ドラッグ時の演出 */
.file-drop.is-dragover {
  background: #ECECEC;
}

/* ファイル選択後プレビュー */
.file-drop__preview-wrap {
  position: relative;
  margin-top: 1.25rem;
}

.file-drop__preview-img {
  display: block;
  max-width: 100%;
  max-height: 10rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.file-drop__preview-name {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #555;
  text-align: center;
  word-break: break-all;
}

.file-drop__preview-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  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;
  z-index: 20;
}
.file-drop__preview-close:hover {
  background: #000;
}

.file-drop .wpcf7-form-control-wrap {
  display: contents;
}

.wpcf7-not-valid-tip {
  margin-top: 0.125rem;
  font-size: 1rem;
  color: #FF6C5F;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
  }
}

.wpcf7-response-output {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .wpcf7-response-output {
    font-size: 1rem;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

body {
  background-color: #ECECEC;
}

@media screen and (max-width: 767.9px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .md-show {
    display: block;
  }
}

.btn-wrap {
  margin-top: 4.375rem;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .btn-wrap {
    margin-top: 2.5rem;
    max-width: 33.75rem;
  }
}

.btn {
  display: inline-block;
  background-color: #1C206C;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.4571428571;
  color: #fff;
  text-align: center;
  padding: 2.8125rem 1.25rem;
  border-radius: 2.25rem;
  border-bottom: 1rem solid #11154D;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .btn {
    font-size: 1.25rem;
    padding: 1.25rem 0.625rem;
    border-bottom: 0.5rem solid #11154D;
    border-radius: 1.125rem;
  }
}
.btn:hover {
  opacity: 1;
}
.btn:hover::before {
  -webkit-transform: translate(0.3125rem, -50%);
          transform: translate(0.3125rem, -50%);
}
.btn::before {
  position: absolute;
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.25rem;
  background-image: url(../img/icon_arrow-navy-01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .btn::before {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 1.25rem;
  }
}

.marquee {
  overflow-x: clip;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-top: 6.875rem;
}
@media screen and (max-width: 767.9px) {
  .marquee {
    padding-top: 1.25rem;
  }
}

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 60s linear infinite;
          animation: marquee 60s linear infinite;
  will-change: transform;
}

.marquee-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  margin-right: 2.25rem;
  font-size: 6.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.125rem #5DA7FE;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .marquee-text {
    font-size: 3rem;
    margin-right: 1.125rem;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.slideInBottom {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767.9px) {
  .slideInBottom {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}

.slideInBottom.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page-hero {
  height: 48.375rem;
  background-image: url("../img/mind_hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: clip;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .page-hero {
    height: 34.375rem;
  }
}
.page-hero::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 2.8125rem;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_arrow-double-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: blink 2s ease-in-out infinite;
          animation: blink 2s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.page-hero.page-hero--mind::after {
  position: absolute;
  content: "MIND";
  font-size: 43.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.125rem #fff;
  opacity: 0.28;
  top: 56%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-hero.page-hero--mind::after {
    font-size: 9.375rem;
  }
}

.page-hero.page-hero--blog {
  background-image: url("../img/blog_hero.jpg");
}
.page-hero.page-hero--blog::after {
  position: absolute;
  content: "BLOG";
  font-size: 43.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.125rem #fff;
  opacity: 0.28;
  top: 56%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-hero.page-hero--blog::after {
    font-size: 9.375rem;
  }
}

.page-hero__content {
  display: grid;
  place-content: center;
  height: 100%;
}

.page-hero__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-top: 3.75rem;
  margin-left: -2.5rem;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title {
    margin-top: 1.25rem;
    margin-left: 0;
  }
}

.page-hero__title-main {
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0526315789;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title-main {
    font-size: 1.875rem;
  }
}

.page-hero__title-sub {
  font-size: 2.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1086956522;
  color: #fff;
  background-color: #5DA7FE;
  display: inline-block;
  margin-top: 8.75rem;
  margin-right: 1.375rem;
  padding: 1.0625rem 0.53125rem;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title-sub {
    font-size: 2.125rem;
    margin-right: 0.75rem;
    margin-top: 7.5rem;
    padding: 0.5rem;
  }
}

.page-hero__title-sub.page-hero__title-sub--blog {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title-sub.page-hero__title-sub--blog {
    margin-top: 10rem;
  }
}

[id] {
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  [id] {
    scroll-margin-top: 5rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 6.25rem;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .header {
    height: 5rem;
  }
}
.header.is-scrolled {
  background-color: rgba(21, 23, 77, 0.8);
  backdrop-filter: blur(3px);
}

.header.header--navy.is-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
}

.header__inner {
  width: 100%;
  margin-inline: auto;
  padding-left: 2rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__name {
  max-width: 25rem;
  height: 4.375rem;
}
@media screen and (max-width: 767.9px) {
  .header__name {
    max-width: 15rem;
    height: auto;
  }
}

.header__nav {
  height: inherit;
  margin-left: auto;
}

.header__nav-items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  margin-right: 3.75rem;
  height: 6.25rem;
}

.header__nav-item {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-link {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link::before {
  content: "";
  position: absolute;
  left: -1.125rem;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #5DA7FE;
  -webkit-transform: rotate(45deg) scale(0);
          transform: rotate(45deg) scale(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__nav-link:hover {
  color: #5DA7FE;
  opacity: 1;
}
.header__nav-link:hover::before {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}

.header__nav-items.header__nav-items--navy .header__nav-link {
  color: #15174D;
}
.header__nav-items.header__nav-items--navy .header__nav-link:hover {
  color: #5DA7FE;
}

.header__cta-wrapper {
  height: 8.5rem;
  margin-top: 2.25rem;
}

.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__tel-link {
  display: block;
  width: 100%;
  height: 100%;
}
.header__tel-link:hover {
  opacity: 1;
}
.header__tel-link:hover .header__tel-number {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.header__tel {
  background-color: #FF6C5F;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0.9375rem 1.25rem 2.3125rem;
  height: 100%;
  max-width: 20.8125rem;
  width: 100%;
  border-radius: 0 0 0 1.25rem;
  border-bottom: 0.375rem solid #D0594F;
}

.header__tel-label {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-right: 1.25rem;
}

.header__tel-number {
  color: #fff;
  font-size: 2.125rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding-left: 2.1875rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__tel-number::before {
  position: absolute;
  content: "";
  width: 1.625rem;
  height: 1.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  font-weight: 700;
  background-repeat: no-repeat;
}

.header__tel-hours {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 2.8125rem 0 1.875rem;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: inset 0 0 0 0.125rem #fff;
          box-shadow: inset 0 0 0 0.125rem #fff;
  border: 0.375rem solid #15174D;
  position: relative;
  letter-spacing: 0.08em;
}
.header__btn:hover {
  opacity: 1;
}
.header__btn:hover::before {
  -webkit-transform: translate(0.1875rem, -50%);
          transform: translate(0.1875rem, -50%);
}
.header__btn::before {
  position: absolute;
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.8125rem;
  background-image: url(../img/icon_arrow-white-01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__btn.header__btn--demo {
  background-color: #15174D;
  border-bottom: 0.1875rem solid #15174D;
}

.header__btn.header__btn--catalog {
  background-color: #15174D;
  border-top: 0.1875rem solid #15174D;
}

.hamburger {
  position: fixed;
  top: 1.875rem;
  right: 0.9375rem;
  z-index: 9999;
  width: 1.5625rem;
  height: 1rem;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 0.125rem;
  display: inline-block;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.header.header--navy .hamburger span {
  background-color: #15174D;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 0.5rem;
}

.hamburger span:nth-child(3) {
  top: 1rem;
}

.hamburger.is-active span:nth-child(1) {
  top: 0.5rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 0.5rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.header.header--navy .hamburger.is-active span {
  background-color: #fff;
}

body.is-drawer-open {
  overflow: hidden;
}

.drawer-menu {
  width: 100%;
  height: 100dvh;
  background-color: #15174d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
}

.drawer-menu__inner {
  width: 100%;
  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;
  height: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  width: 12.5rem;
  text-align: center;
}

.drawer-menu__cta-wrapper {
  margin-top: 2.5rem;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .drawer-menu__cta-wrapper {
    margin-top: 1.25rem;
  }
}

.drawer-menu__cta {
  background-color: #FF6C5F;
  border-radius: 0.5rem;
  padding: 0.625rem 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .drawer-menu__cta {
    border-bottom: 0.25rem solid #D0594F;
  }
}

.drawer-menu__tel-label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.drawer-menu__tel-number {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-left: 1.625rem;
  position: relative;
  position: relative;
}
.drawer-menu__tel-number::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.drawer-menu__tel-hours {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.drawer-menu__buttons {
  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;
  gap: 1.25rem;
}

.drawer-menu__btn {
  border: 0.0625rem solid #fff;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  position: relative;
}
.drawer-menu__btn::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.625rem;
  background-image: url(../img/icon_arrow-white-01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  background-color: #15174D;
}

.footer__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 9.5rem;
  padding-bottom: 5.375rem;
}
@media screen and (max-width: 767.9px) {
  .footer__inner {
    max-width: 33.75rem;
    padding: 2.5rem 1.25rem;
  }
}

.footer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6875rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.footer__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #5DA7FE;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4571428571;
  color: #fff;
  border-bottom: 1rem solid #4B8CD8;
  border-radius: 2.25rem;
  padding: 6.25rem 1.25rem 2.625rem;
  position: relative;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .footer__btn {
    font-size: 1.25rem;
    border-radius: 1.125rem;
    border-bottom: 0.5rem solid #4B8CD8;
    padding: 0.625rem 1.25rem;
    min-height: 6.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-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
    padding-right: 3.75rem;
  }
}
.footer__btn::before {
  position: absolute;
  content: "";
  width: 4.3125rem;
  height: 2.9375rem;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/icon_mail.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .footer__btn::before {
    width: 2.1875rem;
    height: 1.5625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: initial;
    right: 1.25rem;
  }
}
.footer__btn span {
  display: block;
  margin-top: 0.875rem;
  font-size: 1.5625rem;
  line-height: 1.44;
  color: #5DA7FE;
  background-color: #fff;
  border-radius: 100vw;
  max-width: 23.75rem;
  margin-inline: auto;
  padding: 0.28125rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn span {
    margin-top: 0;
    font-size: 0.875rem;
    padding: 0.25rem 1.25rem;
  }
}
.footer__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .footer__btn:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #4B8CD8;
  }
}

.footer__btn.footer__btn--tel {
  background-color: #FF6C5F;
  border-bottom: 1rem solid #DE5D51;
  padding: 8.9375rem 1.25rem 3.625rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn.footer__btn--tel {
    border-bottom: 0.5rem solid #DE5D51;
    padding: 1.25rem;
  }
}
.footer__btn.footer__btn--tel::before {
  top: 3.75rem;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/icon_tel.svg);
}
@media screen and (max-width: 767.9px) {
  .footer__btn.footer__btn--tel::before {
    width: 2rem;
    height: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.footer__btn.footer__btn--tel:hover {
  opacity: 1;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  border-bottom-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .footer__btn.footer__btn--tel:hover {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    border-bottom-color: #DE5D51;
  }
}

.footer__content {
  margin-top: 6.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .footer__content {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.footer__logo {
  max-width: 22.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer__logo {
    max-width: 18.75rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer__nav {
    margin-top: 0;
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.footer__nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .footer__nav-link {
    font-size: 1rem;
  }
}
.footer__nav-link::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -1.125rem;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #5DA7FE;
  -webkit-transform: rotate(45deg) scale(0) translateY(-50%);
          transform: rotate(45deg) scale(0) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer__nav-link:hover {
  color: #5DA7FE;
  opacity: 1;
}
.footer__nav-link:hover::before {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}

.footer__copyright {
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  text-align: center;
  display: inline-block;
  color: #15174D;
  width: 100%;
  padding: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .footer__copyright {
    padding: 0.625rem;
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }
}

.mind {
  overflow-x: clip;
}

.mind__head {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 7.1875rem;
  padding-bottom: 5.125rem;
  position: relative;
  overflow-y: clip;
  padding-left: 0.875rem;
}
@media screen and (max-width: 767.9px) {
  .mind__head {
    max-width: 33.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-inline: 1.25rem;
  }
}
.mind__head::before {
  position: absolute;
  content: "";
  width: 74rem;
  height: 41.1875rem;
  bottom: -18.125rem;
  right: -35.625rem;
  background-image: url(../img/deco_ice-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .mind__head::before {
    width: 25rem;
    height: 14.375rem;
    bottom: -7.5rem;
    right: -3.75rem;
  }
}

.mind__head.mind__head--reverse::before {
  right: auto;
  bottom: -16.25rem;
  left: -35.3125rem;
  background-image: url(../img/deco_ice-left.svg);
}
@media screen and (max-width: 767.9px) {
  .mind__head.mind__head--reverse::before {
    width: 25rem;
    height: 14.375rem;
    bottom: -7.5rem;
    left: -4.375rem;
  }
}

.mind__wrap--1 .mind__head::after {
  position: absolute;
  content: "";
  width: 43.8125rem;
  height: 70.125rem;
  top: 0.5rem;
  right: -8.125rem;
  background-image: url(../img/mind_staff-murakami.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--1 .mind__head::after {
    width: 75vw;
    max-width: 21.25rem;
    height: 31.25rem;
    top: -1.25rem;
    right: -3.4375rem;
  }
}

.mind__wrap--2 .mind__head::after {
  position: absolute;
  content: "";
  width: 52.25rem;
  height: 61.5rem;
  top: 1.8125rem;
  left: -10.625rem;
  background-image: url(../img/mind_staff-tokuda.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--2 .mind__head::after {
    width: 80vw;
    max-width: 24.375rem;
    height: 31.25rem;
    left: -3.75rem;
    top: -3.75rem;
  }
}

.mind__wrap--3 .mind__head::after {
  position: absolute;
  content: "";
  width: 59.8125rem;
  height: 74.75rem;
  top: -1.875rem;
  right: -15rem;
  background-image: url(../img/mind_staff-tone.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--3 .mind__head::after {
    width: 100vw;
    max-width: 24.375rem;
    height: 31.25rem;
    top: -1.875rem;
    right: -5rem;
  }
}

.mind__title {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.48;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .mind__title {
    font-size: 1.125rem;
  }
}
.mind__title span {
  color: #fff;
  background-color: #5DA7FE;
  display: inline-block;
  padding: 0 0.5rem;
  margin-top: 0.9375rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .mind__title span {
    margin-top: 0.3125rem;
    font-size: 1.125rem;
    padding: 0 0.25rem;
  }
}

.mind__title.mind__title--reverse {
  text-align: right;
}

.mind__profile {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767.9px) {
  .mind__profile {
    margin-top: 1.25rem;
  }
}

.mind__profile.mind__profile--reverse {
  margin-top: 9.1875rem;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .mind__profile.mind__profile--reverse {
    margin-top: 1.25rem;
    width: auto;
  }
}

.mind__name-item {
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .mind__name-item {
    padding-left: 0.875rem;
  }
}
.mind__name-item::before {
  position: absolute;
  content: "";
  width: 0.5625rem;
  height: 6.125rem;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .mind__name-item::before {
    width: 0.25rem;
    height: 3.125rem;
  }
}

@media screen and (max-width: 767.9px) {
  .mind__profile.mind__profile--reverse .mind__name-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
}

.mind__position {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .mind__position {
    font-size: 1rem;
  }
}

.mind__name {
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2444444444;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .mind__name {
    font-size: 1.5rem;
  }
}

.mind__detail {
  margin-top: 2.875rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .mind__detail {
    margin-top: 1.25rem;
    font-size: 1rem;
    text-shadow: 0.125rem 0.125rem 0.0625rem #ECECEC, -0.125rem -0.125rem 0.0625rem #ECECEC, -0.125rem 0.125rem 0.0625rem #ECECEC, 0.125rem -0.125rem 0.0625rem #ECECEC, 0 0.125rem 0.0625rem #ECECEC, 0 -0.125rem 0.0625rem #ECECEC, -0.125rem 0 0.0625rem #ECECEC, 0.125rem 0 0.0625rem #ECECEC;
  }
}
.mind__detail span {
  color: #15174D;
}

.mind__profile.mind__profile--reverse .mind__detail {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767.9px) {
  .mind__profile.mind__profile--reverse .mind__detail {
    margin-top: 1.25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
}

.mind__body {
  background-color: #5DA7FE;
  padding-top: 9.375rem;
  padding-bottom: 9.125rem;
}
@media screen and (max-width: 767.9px) {
  .mind__body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.mind__body-wrap {
  max-width: 120rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
}
@media screen and (max-width: 767.9px) {
  .mind__body-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
}

.mind__body-wrap.mind__body-wrap--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .mind__body-wrap.mind__body-wrap--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.mind__body-wrap.mind__body-wrap--reverse .mind__body-text-wrap {
  margin-top: 0;
}

.mind__body-img-wrap {
  max-width: 57.25rem;
}
@media screen and (max-width: 767.9px) {
  .mind__body-img-wrap {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.mind__body-img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .mind__body-img {
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .mind__body-wrap.mind__body-wrap--reverse .mind__body-img {
    padding-left: initial;
    padding-right: 1.25rem;
  }
}

.mind__body-text-wrap {
  margin-top: 6.0625rem;
}
@media screen and (max-width: 767.9px) {
  .mind__body-text-wrap {
    max-width: 33.75rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.mind__wrap--1 .mind__body-text-wrap {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--1 .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__wrap--1 .mind__body-wrap--reverse .mind__body-text-wrap {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--1 .mind__body-wrap--reverse .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__wrap--2 .mind__body-text-wrap {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--2 .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__wrap--2 .mind__body-wrap--reverse .mind__body-text-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--2 .mind__body-wrap--reverse .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__wrap--3 .mind__body-text-wrap {
  margin-top: 5.8125rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--3 .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__wrap--3 .mind__body-wrap--reverse .mind__body-text-wrap {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767.9px) {
  .mind__wrap--3 .mind__body-wrap--reverse .mind__body-text-wrap {
    margin-top: 0;
  }
}

.mind__body-text {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.76;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .mind__body-text {
    font-size: 0.875rem;
  }
}
.mind__body-text span {
  background-color: #FF6C5F;
  padding: 0 0.25rem;
}

.mind__body-wrap.mind__body-wrap--reverse .mind__body-text {
  text-align: right;
}

.blog__inner {
  max-width: 87.0625rem;
  margin-inline: auto;
  padding-top: 10.4375rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767.9px) {
  .blog__inner {
    max-width: 33.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.blog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767.9px) {
  .blog__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.75rem;
  }
}

.blog__list {
  max-width: 59.375rem;
  width: 100%;
}

.blog__heading {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: #5DA7FE;
  text-align: center;
  border: 0.1875rem solid #5DA7FE;
  padding: 2rem 1.25rem;
  width: 100%;
  border-radius: 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .blog__heading {
    font-size: 1.125rem;
    padding: 1.25rem 0.625rem;
    border-radius: 0.75rem;
  }
}

.blog__items {
  margin-top: 5.4375rem;
  display: grid;
  gap: 6.25rem 1.875rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767.9px) {
  .blog__items {
    margin-top: 1.25rem;
    gap: 1.25rem 0.625rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.blog__item-thumbnail {
  border-radius: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 460/335;
}
@media screen and (max-width: 767.9px) {
  .blog__item-thumbnail {
    border-radius: 0.5rem;
    aspect-ratio: 220/140;
  }
}

.blog__item-categorys {
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .blog__item-categorys {
    margin-top: 0.625rem;
    gap: 0.25rem;
  }
}

.blog__item-category {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.82;
  color: #fff;
  background-color: #5DA7FE;
  border-radius: 0.9375rem;
  padding: 1.03125rem 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .blog__item-category {
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
}

.news-item__date {
  display: inline-block;
  margin-top: 1.4375rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
  padding-left: 1.4375rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .news-item__date {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    padding-left: 0.75rem;
  }
}
.news-item__date::before {
  position: absolute;
  content: "";
  width: 0.5625rem;
  height: 2rem;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .news-item__date::before {
    width: 0.25rem;
    height: 1rem;
  }
}

.blog__item-text {
  margin-top: 0.6875rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #15174D;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767.9px) {
  .blog__item-text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.blog__pagination {
  margin-top: 9.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .blog__pagination {
    margin-top: 3.75rem;
  }
}
.blog__pagination p {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .blog__pagination p {
    font-size: 1rem;
  }
}

.blog__sidebar {
  max-width: 23.75rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .blog__sidebar {
    max-width: 100%;
  }
}

.sidebar-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category {
    gap: 1.25rem;
  }
}

.sidebar-category__item {
  list-style: none;
}

.sidebar-category__link {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4666666667;
  color: #fff;
  background-color: #5DA7FE;
  text-align: center;
  padding: 1.40625rem 1.25rem;
  border-radius: 1.25rem;
  text-decoration: none;
  border: 0.25rem solid #5DA7FE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__link {
    font-size: 1.25rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.sidebar-category__link:hover {
  opacity: 1;
  background-color: #fff;
  color: #5DA7FE;
}

.sidebar-category__link.sidebar-category__link--radius {
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__link.sidebar-category__link--radius {
    border-radius: 0.75rem 0.75rem 0 0;
  }
}

.sidebar-category__sub {
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.5rem 1.625rem 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__sub {
    padding: 1.25rem;
    border-radius: 0 0 0.75rem 0.75rem;
    gap: 1.25rem;
  }
}

.sidebar-category__sub-heading {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.44;
  color: #fff;
  background-color: #15174D;
  text-align: center;
  padding: 0.375rem 0.625rem;
  border-radius: 100vw;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__sub-heading {
    font-size: 1.125rem;
  }
}

.sidebar-category__sub-list {
  margin-top: 1.25rem;
  padding-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__sub-list {
    gap: 0.625rem;
    padding-left: 0.5rem;
  }
}

.sidebar-category__sub-item {
  list-style: disc;
  margin-left: 1.25rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.44;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .sidebar-category__sub-item {
    font-size: 1rem;
  }
}
.sidebar-category__sub-item a {
  text-decoration: none;
  color: #15174D;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.sidebar-category__sub-item a:hover {
  opacity: 1;
  color: #5DA7FE;
}

.blog__inner.blog__inner--detail {
  padding-top: 19.875rem;
}
@media screen and (max-width: 767.9px) {
  .blog__inner.blog__inner--detail {
    padding-top: 7.5rem;
  }
}

.detail__date {
  display: inline-block;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
  padding-left: 1.4375rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .detail__date {
    font-size: 0.875rem;
    padding-left: 0.75rem;
  }
}
.detail__date::before {
  position: absolute;
  content: "";
  width: 0.5625rem;
  height: 2rem;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .detail__date::before {
    width: 0.25rem;
    height: 1rem;
  }
}

.detail__title {
  margin-top: 2.375rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3666666667;
  color: #15174D;
  border-bottom: 0.375rem solid #5DA7FE;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .detail__title {
    margin-top: 0.625rem;
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom: 0.125rem solid #5DA7FE;
  }
}

.detail__categorys {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .detail__categorys {
    margin-top: 1rem;
    gap: 0.5rem;
  }
}

.detail__category {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.82;
  color: #fff;
  background-color: #5DA7FE;
  border-radius: 0.9375rem;
  padding: 1.03125rem 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .detail__category {
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
}

.detail__before-after-wrap {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.125rem;
}
@media screen and (max-width: 767.9px) {
  .detail__before-after-wrap {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.detail__before-after-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.detail__before-after-item .detail__before-after-item-img {
  margin-top: 0;
}

.detail__before-after-item-label {
  position: absolute;
  top: -1rem;
  left: -0.4375rem;
  font-size: 2.1875rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.0857142857;
  color: #5DA7FE;
  text-align: center;
  background-color: #fff;
  border: 0.25rem solid #5DA7FE;
  border-radius: 100vw;
  min-width: 10.4375rem;
  padding: 0.28125rem 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .detail__before-after-item-label {
    font-size: 1.125rem;
    border: 0.125rem solid #5DA7FE;
    min-width: 7.5rem;
    padding: 0.5rem;
  }
}

.detail__before-after-item-img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 460/335;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .detail__before-after-item-img {
    border-radius: 0.75rem;
    aspect-ratio: 220/140;
  }
}

.blog__no-posts {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .blog__no-posts {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.detail {
  margin-top: 3.75rem;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .detail {
    margin-top: 2.5rem;
  }
}

.detail > * + * {
  margin-top: 1.25rem;
}

.detail p {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.3;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .detail p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.detail ul {
  margin-top: 2.5rem;
  list-style-type: disc;
  padding-left: 1.25rem;
  color: #15174D;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .detail ul {
    margin-top: 1.25rem;
    line-height: 1.8;
  }
}

.detail li {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .detail li {
    font-size: 1rem;
  }
}

.detail ol {
  margin-top: 2.5rem;
  list-style-type: decimal;
  padding-left: 1.25rem;
  color: #15174D;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .detail ol {
    margin-top: 1.25rem;
    line-height: 1.8;
  }
}

.detail dl {
  margin-top: 2.5rem;
  list-style-type: decimal;
}
@media screen and (max-width: 767.9px) {
  .detail dl {
    margin-top: 1.25rem;
  }
}

.detail dt,
.detail dd {
  font-size: 1.25rem;
  font-weight: 700;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .detail dt,
  .detail dd {
    font-size: 1rem;
  }
}

.detail dd {
  padding-left: 1.25rem;
}

.detail blockquote {
  margin-top: 2.5rem;
  font-style: italic;
  border-left: 0.25rem solid #ccc;
  padding-left: 1.25rem;
  font-size: 1.25rem;
}
.detail blockquote p {
  color: #555;
}
@media screen and (max-width: 767.9px) {
  .detail blockquote {
    margin-top: 1.25rem;
    padding-left: 1rem;
  }
  .detail blockquote p {
    font-size: 1rem;
  }
}

.detail a {
  display: inline-block;
  font-size: 1.25rem;
  text-decoration: underline;
  color: #5DA7FE;
}
@media screen and (max-width: 767.9px) {
  .detail a {
    font-size: 1rem;
  }
}

.detail h1,
.detail h2 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #5DA7FE;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .detail h1,
  .detail h2 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
  }
}

.detail h3 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 0.25rem solid #5DA7FE;
  padding-bottom: 0.5rem;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .detail h3 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    border-bottom: 0.125rem solid #5DA7FE;
    padding-bottom: 0.375rem;
  }
}

.detail h4,
.detail h5,
.detail h6 {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  border-left: 0.375rem solid #5DA7FE;
  padding-left: 0.625rem;
  color: #15174D;
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .detail h4,
  .detail h5,
  .detail h6 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    border-left: 0.25rem solid #5DA7FE;
    padding-left: 0.5rem;
  }
}

.detail img,
.detail figure {
  margin-top: 2.5rem;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .detail img,
  .detail figure {
    margin-top: 1.25rem;
  }
}

.detail figcaption {
  margin-top: 0.375rem;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .detail figcaption {
    font-size: 0.75rem;
  }
}

.detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 1.25rem;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .detail table {
    font-size: 1rem;
  }
}

.detail th,
.detail td {
  border: 0.125rem solid #ddd;
  padding: 1.25rem;
  background-color: #fff;
  color: #15174D;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .detail th,
  .detail td {
    border: 0.0625rem solid #ddd;
    padding: 0.625rem;
  }
}

.detail thead th {
  background-color: #15174D;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.detail tbody th {
  background-color: #fff;
}

.detail pre {
  white-space: pre-wrap;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  height: 3.1875rem;
}
@media screen and (max-width: 767.9px) {
  .nav-links {
    height: 2.1875rem;
  }
}

.pagination__arrow {
  width: 3.1875rem;
  height: 3.1875rem;
}
@media screen and (max-width: 767.9px) {
  .pagination__arrow {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.nav-links .prev {
  margin-right: 1.75rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .nav-links .prev {
    margin-right: 0.875rem;
  }
}
.nav-links .prev:hover {
  opacity: 1;
  -webkit-transform: translateX(-0.3125rem);
          transform: translateX(-0.3125rem);
}

.nav-links .next {
  margin-left: 1.75rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .nav-links .next {
    margin-left: 0.875rem;
  }
}
.nav-links .next:hover {
  opacity: 1;
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.page-numbers {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .page-numbers {
    font-size: 1.125rem;
  }
}
.page-numbers:hover {
  opacity: 1;
  color: #5DA7FE;
}

.page-numbers:not(.prev):not(.next):not(.dots)::after {
  content: ".";
  margin-left: 0.375rem;
}
@media screen and (max-width: 767.9px) {
  .page-numbers:not(.prev):not(.next):not(.dots)::after {
    margin-left: 0.125rem;
  }
}

.page-numbers:not(.prev):not(.next):not(.dots):has(+ .next)::after,
.page-numbers:not(.prev):not(.next):not(.dots):last-child::after {
  content: none;
}

.page-numbers.current {
  color: #5DA7FE;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.detail__prev:hover,
.detail__next:hover {
  opacity: 1;
}

.detail__prev-icon {
  width: 3.1875rem;
  height: 3.1875rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .detail__prev-icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.detail__prev-icon:hover {
  opacity: 1;
  -webkit-transform: translateX(-0.3125rem);
          transform: translateX(-0.3125rem);
}

.detail__next-icon {
  width: 3.1875rem;
  height: 3.1875rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  .detail__next-icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.detail__next-icon:hover {
  opacity: 1;
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.detail__home-link {
  margin: 0 2.5rem;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.64;
  color: #15174D;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .detail__home-link {
    margin: 0 1.25rem;
    font-size: 1.125rem;
  }
}
.detail__home-link:hover {
  opacity: 1;
  color: #5DA7FE;
}

.page-hero.page-hero--404 {
  background-image: url("../img/404_hero.jpg");
}
.page-hero.page-hero--404::before {
  display: none;
}
.page-hero.page-hero--404::after {
  position: absolute;
  content: "404";
  font-size: 43.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 0.125rem #fff;
  opacity: 0.28;
  top: 56%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page-hero.page-hero--404::after {
    font-size: 12.5rem;
  }
}

.page-hero__title.page-hero__title--404 {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  margin-top: 3.75rem;
  margin-left: 0;
}
.page-hero__title.page-hero__title--404 .page-hero__title-main {
  display: inline-block;
  font-size: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title.page-hero__title--404 .page-hero__title-main {
    font-size: 2rem;
  }
}
.page-hero__title.page-hero__title--404 .page-hero__title-sub {
  display: inline-block;
  margin-top: 0;
  margin-right: 0;
  font-size: 3.75rem;
  color: #fff;
  background-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .page-hero__title.page-hero__title--404 .page-hero__title-sub {
    font-size: 2rem;
  }
}

.page-404__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767.9px) {
  .page-404__inner {
    max-width: 33.75rem;
    padding: 2.5rem 1.25rem;
  }
}

.page-404__text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #15174D;
}
@media screen and (max-width: 767.9px) {
  .page-404__text {
    font-size: 1rem;
  }
}

.page-404__btn {
  margin-top: 2.5rem;
  display: inline-block;
  width: 100%;
  max-width: 16.25rem;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: #15174D;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  text-align: center;
  text-decoration: none;
  border: 0.125rem solid #15174D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .page-404__btn {
    margin-top: 1.25rem;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    max-width: 13.75rem;
  }
}
.page-404__btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #15174D;
}/*# sourceMappingURL=style.css.map */