[data-anime].is-show {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-anime=c-anime-box].is-show [data-anime] {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-anime=c-fade] {
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anime=c-fade-in] {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime=c-mask-right] {
  opacity: 0;
  clip-path: inset(0% 100% 0% 0%);
  transition: opacity 1.6s cubic-bezier(0.165, 0.84, 0.44, 1), clip-path 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime=c-blur] {
  filter: blur(2px);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime=c-blur-in] {
  filter: blur(2px);
  opacity: 0;
  transform: translateY(5px) scale(1.01);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-anime=c-scale] {
  transform: scale(1.01);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*-------------------------------------------> Viewport size */
/*-------------------------------------------> Design comp size */
/*-------------------------------------------> Media queries */
/*-------------------------------------------> SP : contents width */
/*-------------------------------------------> PC : contents width */
/*-------------------------------------------> web font */
/*-------------------------------------------> hover animation */
/*-------------------------------------------> font size (rem) */
/*-------------------------------------------> percentage (%) */
/*-------------------------------------------> vw ( width / height / padding / margin / position / and more ) */
/*-------------------------------------------> line-height */
/*-------------------------------------------> half */
.m-button-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .m-button-box {
    grid-template-columns: 100%;
  }
}

.m-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #000;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button a:hover {
    opacity: 0.7;
  }
}
.m-button a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button a.--plus::before {
    right: 20px;
  }
}
.m-button a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button a.--plus::after {
    right: 14px;
  }
}
.m-button a {
  border: 1px solid #000;
}
@media (hover: hover) {
  .m-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button a:hover {
    opacity: 0.7;
  }
}
.m-button.--transparent-white a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--transparent-white a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--transparent-white a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--transparent-white a:hover {
    opacity: 0.7;
  }
}
.m-button.--transparent-white a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a.--plus::before {
    right: 20px;
  }
}
.m-button.--transparent-white a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--transparent-white a.--plus::after {
    right: 14px;
  }
}
.m-button.--transparent-white a {
  border: 1px solid #fff;
}
.m-button.--black a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--black a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--black a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--black a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--black a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--black a:hover {
    opacity: 0.7;
  }
}
.m-button.--black a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--black a.--plus::before {
    right: 20px;
  }
}
.m-button.--black a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--black a.--plus::after {
    right: 14px;
  }
}
.m-button.--black a {
  border: none;
}
.m-button.--white a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--white a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--white a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--white a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--white a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--white a:hover {
    opacity: 0.7;
  }
}
.m-button.--white a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--white a.--plus::before {
    right: 20px;
  }
}
.m-button.--white a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--white a.--plus::after {
    right: 14px;
  }
}
.m-button.--white a {
  border: none;
}
.m-button.--red a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e13928;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--red a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--red a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--red a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--red a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--red a:hover {
    opacity: 0.7;
  }
}
.m-button.--red a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--red a.--plus::before {
    right: 20px;
  }
}
.m-button.--red a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--red a.--plus::after {
    right: 14px;
  }
}
.m-button.--red a {
  border: none;
}
.m-button.--gradation a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.m-button.--gradation a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .m-button.--gradation a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .m-button.--gradation a:hover {
    opacity: 0.7;
  }
}
.m-button.--gradation a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a.--plus::before {
    right: 20px;
  }
}
.m-button.--gradation a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .m-button.--gradation a.--plus::after {
    right: 14px;
  }
}
.m-button.--gradation a {
  background: linear-gradient(-30deg, #384d9f, #7c9cd1);
  border: none;
}
.m-button.--size-s a {
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--size-s a {
    font-size: 1.3rem;
    line-height: 1;
  }
}
.m-button.--size-l a {
  width: 420px;
  height: 70px;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .m-button.--size-l a {
    font-size: 1.4rem;
    line-height: 1;
    width: 270px;
    height: 48px;
  }
}

#onetrust-banner-sdk {
  display: none;
}

.content {
  color: #000;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
  max-width: none;
  padding: var(--nav-height, 0) 0 0;
  z-index: auto;
  -webkit-font-smoothing: auto;
}
@media screen and (max-width: 768px) {
  .content {
    padding: var(--nav-height, 0) 0 0;
  }
}

.str-renew {
  position: relative;
}

br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}
br.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

.section-inner {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 1070px;
}
@media screen and (max-width: 768px) {
  .section-inner {
    width: 90.625%;
    margin: auto;
    padding: 0;
  }
}
.section-inner-wide {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 1170px;
}
@media screen and (max-width: 768px) {
  .section-inner-wide {
    width: 90.625%;
    margin: auto;
    padding: 0;
  }
}

.section-block {
  max-width: 1050px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .section-block {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .section-title {
    gap: 0;
  }
}
.section-title-en {
  color: #384d9f;
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.section-title-en else {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section-title-en {
    font-size: 1.2rem;
    line-height: 2.1666666667;
  }
}
.section-title-ja {
  color: #000;
  font-size: 4.2rem;
  line-height: 1.380952381;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-title-ja {
    font-size: 2.2rem;
    line-height: 1.33;
  }
}
.section-title-ja span {
  font-weight: inherit;
  line-height: inherit;
  display: block;
}
.section-title-ja b {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.section-title-ja b else {
  font-weight: 500;
}
.section-title-ja b {
  font-size: 4.8rem;
  letter-spacing: -0.025em;
  padding-inline: 0.1em;
  font-feature-settings: "palt";
  vertical-align: unset;
  position: relative;
  top: 1px;
}
.section-title-ja b:first-child, .section-title-ja b:last-child {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .section-title-ja b {
    font-size: 2.6rem;
  }
}
.section-title strong {
  color: #384d9f;
  font-weight: inherit;
}

.section-lead-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .section-lead-box {
    margin-top: 20px;
  }
}

.section-lead {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .section-lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.section-lead strong {
  color: #384d9f;
  font-weight: 600;
}
.section-lead span {
  display: inline-block;
}

.modal {
  color: #000;
  font-family: inherit;
  display: none;
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  padding: 100px 20px;
  background: rgba(8, 11, 24, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
}

.modal__container {
  width: 100%;
  max-width: 1070px;
  padding: 40px;
  margin: auto;
  background-color: #fff;
  transform: scale(0.9);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .modal__container {
    padding: 20px;
  }
}

.modal-close {
  position: relative;
  width: 45px;
  height: 45px;
  cursor: pointer;
  position: absolute;
  top: -60px;
  right: -4px;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 1px;
  background-color: #fff;
  transform-origin: center;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .modal-close {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .modal-close:hover {
    opacity: 0.7;
  }
}

.modal[aria-hidden=false] .modal__container {
  animation: scaleIn 0.3s ease forwards;
}

.modal[aria-hidden=true] .modal__container {
  animation: scaleOut 0.25s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.--text-bg-gradation {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.0625;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #7c9cd1 0%, #384d9f 100%);
}
.--text-bg-gradation:has(span) {
  background: none;
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  .--text-bg-gradation:has(span) {
    background: linear-gradient(90deg, #7c9cd1 0%, #384d9f 100%);
  }
}
.--text-bg-gradation span {
  background: linear-gradient(90deg, #7c9cd1 0%, #384d9f 100%);
}
@media screen and (max-width: 768px) {
  .--text-bg-gradation span {
    background: none;
  }
}
.--text-bg-gradation .palt {
  font-feature-settings: "palt";
}

.--bg-gradation {
  position: relative;
  z-index: 0;
}
.--bg-gradation::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #080b18;
  z-index: -2;
}
.--bg-gradation::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #7c9cd1, #11172f);
  opacity: 0.25;
  z-index: -1;
}

.--gradation-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #fff;
  width: 420px;
  height: 70px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .--gradation-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.--gradation-button a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .--gradation-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .--gradation-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .--gradation-button a:hover {
    opacity: 0.7;
  }
}
.--gradation-button a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .--gradation-button a.--plus::before {
    right: 20px;
  }
}
.--gradation-button a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .--gradation-button a.--plus::after {
    right: 14px;
  }
}
.--gradation-button a {
  background: linear-gradient(-30deg, #384d9f, #7c9cd1);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .--gradation-button a {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0em;
    width: 270px;
    height: 48px;
  }
}
.--gradation-button a::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyAKIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIgogd2lkdGg9IjZweCIgaGVpZ2h0PSI5cHgiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiICBmaWxsPSIjZmZmIgogZD0iTS0wLjAwNCwtMC4wMDggTDUuOTk1LDQuNTAwIEwtMC4wMDQsOS4wMTEgIi8+Cjwvc3ZnPg==");
}
@media (hover: hover) {
  .--gradation-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .--gradation-button a:hover {
    opacity: 0.7;
  }
}

.--shadow {
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.02);
}

.--check {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .--check {
    gap: 10px;
  }
}
.--check::before {
  content: "";
  display: block;
  min-width: 26px;
  min-height: 23px;
  margin-top: 2px;
  background: linear-gradient(315deg, #384d9f, #7c9cd1);
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 23'><polygon points='12.01 16.01 5.65 9.67 7.07 8.25 12.01 13.18 24.43 .79 25.84 2.21 12.01 16.01' fill='black'/><polygon points='23 22.92 0 22.92 0 0 18.5 0 18.5 1 1 1 1 21.92 22 21.92 22 10.92 23 10.92 23 22.92' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 23'><polygon points='12.01 16.01 5.65 9.67 7.07 8.25 12.01 13.18 24.43 .79 25.84 2.21 12.01 16.01' fill='black'/><polygon points='23 22.92 0 22.92 0 0 18.5 0 18.5 1 1 1 1 21.92 22 21.92 22 10.92 23 10.92 23 22.92' fill='black'/></svg>") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .--check::before {
    min-width: 15px;
    min-height: 14px;
  }
}

.--bg-deco {
  position: relative;
  z-index: 0;
}
.--bg-deco::before, .--bg-deco::after {
  content: "";
  position: absolute;
  z-index: -10;
  background-size: 100%;
}
.--bg-deco::before {
  background-image: url("../img/bg-deco_left-bottom.png");
  width: 613px;
  height: 590px;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .--bg-deco::before {
    width: 306.5px;
    height: 295px;
  }
}
.--bg-deco::after {
  background-image: url("../img/bg-deco_right-top.png");
  width: 600px;
  height: 795px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .--bg-deco::after {
    width: 300px;
    height: 397.5px;
  }
}

.anniversary {
  position: relative;
  z-index: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, #fff, #ededed);
}
@media screen and (max-width: 768px) {
  .anniversary {
    min-height: auto;
    padding-block: 30px;
  }
}
.anniversary .anniversary-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: -1;
}
.anniversary .anniversary-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anniversary .anniversary-inner {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 670px;
  padding-inline: 13px 0;
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  grid-template-areas: "title logo" "button logo";
  row-gap: 34px;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-inner {
    width: 90.625%;
    margin: auto;
    padding: 0;
    padding-inline: 0;
    justify-items: center;
    grid-template-columns: 100%;
    grid-template-areas: "title" "logo" "button";
    row-gap: 0;
  }
}
.anniversary .anniversary-title {
  grid-area: title;
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  vertical-align: text-bottom;
  gap: 7px;
}
.anniversary .anniversary-title b {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.anniversary .anniversary-title b else {
  font-weight: 500;
}
.anniversary .anniversary-title__mid {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-title__mid {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
.anniversary .anniversary-title__mid b {
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  padding-inline: 0.14em;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-title__mid b {
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.02em;
    top: 0;
  }
}
.anniversary .anniversary-title__lg {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-title__lg {
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}
.anniversary .anniversary-title__lg b {
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  padding-inline: 0.1em;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-title__lg b {
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 0.03em;
    top: 0;
  }
}
.anniversary .anniversary-button {
  grid-area: button;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button {
    margin-top: 24px;
  }
}
.anniversary .anniversary-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
  width: 347px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.anniversary .anniversary-button a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .anniversary .anniversary-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .anniversary .anniversary-button a:hover {
    opacity: 0.7;
  }
}
.anniversary .anniversary-button a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::before {
    right: 20px;
  }
}
.anniversary .anniversary-button a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::after {
    right: 14px;
  }
}
.anniversary .anniversary-button a {
  border: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #fff;
    width: 240px;
    height: 44px;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0 25px;
    border-radius: calc(infinity * 1px);
    margin: auto;
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .anniversary .anniversary-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a::after {
    content: "";
    width: 6px;
    height: 9px;
    display: block;
    background-color: #fff;
    mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
    -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .anniversary .anniversary-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .anniversary .anniversary-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .anniversary .anniversary-button a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::before {
    content: "";
    display: block;
    width: 1px;
    height: 13px;
    background-image: none;
    background-color: #fff;
    position: absolute;
    right: 36px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::before {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::after {
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    background-color: #fff;
    background-image: none;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .anniversary .anniversary-button a.--plus::after {
    right: 14px;
  }
}
@media (hover: hover) {
  .anniversary .anniversary-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .anniversary .anniversary-button a:hover {
    opacity: 0.7;
  }
}
.anniversary .anniversary-logo {
  grid-area: logo;
  width: 226px;
}
@media screen and (max-width: 768px) {
  .anniversary .anniversary-logo {
    width: 126.5px;
    margin-top: 20px;
  }
}
.anniversary [data-anime=anniversary-scale] {
  overflow: hidden;
}
.anniversary [data-anime=anniversary-scale] img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.anniversary [data-anime=anniversary-scale].is-show img {
  opacity: 1;
  transform: none;
}

.cta {
  position: relative;
  z-index: 0;
}
.cta .cta-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta .cta-inner {
  padding: 10px;
  min-height: 174px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta .cta-inner {
    min-height: 163px;
  }
}
.cta .cta-button-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, 275px);
  width: 100%;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .cta .cta-button-box {
    flex-direction: column;
    grid-template-columns: 100%;
    gap: 15px;
  }
}
.cta .cta-button:nth-child(1) a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(1) a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.cta .cta-button:nth-child(1) a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(1) a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .cta .cta-button:nth-child(1) a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .cta .cta-button:nth-child(1) a:hover {
    opacity: 0.7;
  }
}
.cta .cta-button:nth-child(1) a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(1) a.--plus::before {
    right: 20px;
  }
}
.cta .cta-button:nth-child(1) a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(1) a.--plus::after {
    right: 14px;
  }
}
.cta .cta-button:nth-child(2) a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e13928;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(2) a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.cta .cta-button:nth-child(2) a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(2) a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .cta .cta-button:nth-child(2) a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .cta .cta-button:nth-child(2) a:hover {
    opacity: 0.7;
  }
}
.cta .cta-button:nth-child(2) a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(2) a.--plus::before {
    right: 20px;
  }
}
.cta .cta-button:nth-child(2) a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .cta .cta-button:nth-child(2) a.--plus::after {
    right: 14px;
  }
}
.cta [data-anime=cta-scale] {
  overflow: hidden;
}
.cta [data-anime=cta-scale] img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta [data-anime=cta-scale].is-show img {
  opacity: 1;
  transform: none;
}

.support {
  background-color: #ededed;
}
.support .support-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .support .support-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.support .support-content {
  background-color: #fff;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .support .support-content {
    grid-column: 1;
    padding: 17px 15px 15px;
    gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.support .support-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .support .support-text {
    gap: 4px;
  }
}
.support .support-text__mid {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-weight: 600;
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .support .support-text__mid {
    font-size: 1.05rem;
    line-height: 1.7142857143;
    letter-spacing: 0em;
    max-width: 440px;
  }
}
@media screen and (max-width: 768px) {
  .support .support-text__mid sup {
    font-size: 1rem;
  }
}
.support .support-text__lg {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .support .support-text__lg {
    font-size: 1.8rem;
    line-height: 1.1666666667;
    letter-spacing: 0.02em;
    margin-top: 10px;
  }
}
.support .support-text__lg span {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  padding-inline: 4px;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .support .support-text__lg span {
    padding-inline: 2px;
    margin-right: 2px;
  }
}
.support .support-note {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  font-weight: 400;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .support .support-note {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .support .support-img {
    width: 59.2307692308%;
    margin-inline: auto;
  }
}

.security::before, .security::after {
  content: "";
}
.security .security-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .security .security-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}

.contact {
  position: relative;
}
.contact .contact-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contact .contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact .contact-inner {
  padding-block: 60px;
  max-width: 1210px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner {
    width: 90.625%;
    margin: auto;
    padding: 0;
    max-width: 500px;
    padding-block: 40px;
  }
}
.contact .contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 380px));
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list {
    grid-template-columns: 100%;
    gap: 15px;
  }
}
.contact .contact-list li {
  width: 100%;
  min-height: 288px;
  padding: 45px 10px 56px;
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li {
    min-height: 170px;
    padding: 10px 0 24px;
  }
}
.contact .contact-list li figure,
.contact .contact-list li picture {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li figure,
  .contact .contact-list li picture {
    height: auto;
  }
}
.contact .contact-list li .--contact {
  width: 54px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .--contact {
    width: 46px;
  }
}
.contact .contact-list li .--catalog {
  width: 41px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .--catalog {
    width: 31px;
  }
}
.contact .contact-list li .--monitor {
  width: 56px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .--monitor {
    width: 47px;
  }
}
.contact .contact-list li .--svf {
  width: 84px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .--svf {
    width: 69px;
  }
}
.contact .contact-list li .--svf-cloud {
  width: 197px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .--svf-cloud {
    width: 172px;
  }
}
.contact .contact-list li .content-text {
  margin-top: 10px;
}
.contact .contact-list li p {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li p {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.contact .contact-list li .desc {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .contact .contact-list li .desc {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0em;
  }
}
.contact .contact-button-box {
  margin-top: 33px;
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact .contact-button-box {
    gap: 10px;
    margin-top: 20px;
  }
}
.contact .contact-button-box .contact-button {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .contact .contact-button-box .contact-button {
    margin-top: 0;
  }
}
.contact .contact-button {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .contact .contact-button {
    margin-top: 20px;
  }
}
.contact .contact-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #000;
  width: 310px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact-button a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.contact .contact-button a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #000;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact .contact-button a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .contact .contact-button a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .contact .contact-button a:hover {
    opacity: 0.7;
  }
}
.contact .contact-button a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact .contact-button a.--plus::before {
    right: 20px;
  }
}
.contact .contact-button a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .contact .contact-button a.--plus::after {
    right: 14px;
  }
}
.contact .contact-button a {
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .contact .contact-button a {
    font-size: 1.1rem;
    width: 230px;
    height: 31px;
  }
}
.contact .contact-button.--black a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  width: 310px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--black a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.contact .contact-button.--black a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--black a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .contact .contact-button.--black a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .contact .contact-button.--black a:hover {
    opacity: 0.7;
  }
}
.contact .contact-button.--black a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--black a.--plus::before {
    right: 20px;
  }
}
.contact .contact-button.--black a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--black a.--plus::after {
    right: 14px;
  }
}
.contact .contact-button.--black a {
  border: none;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--black a {
    font-size: 1.1rem;
    width: 230px;
    height: 31px;
  }
}
.contact .contact-button.--red a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e13928;
  color: #fff;
  width: 310px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--red a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.contact .contact-button.--red a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--red a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .contact .contact-button.--red a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .contact .contact-button.--red a:hover {
    opacity: 0.7;
  }
}
.contact .contact-button.--red a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--red a.--plus::before {
    right: 20px;
  }
}
.contact .contact-button.--red a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--red a.--plus::after {
    right: 14px;
  }
}
.contact .contact-button.--red a {
  border: none;
}
@media screen and (max-width: 768px) {
  .contact .contact-button.--red a {
    font-size: 1.1rem;
    width: 230px;
    height: 31px;
  }
}

.trust-banner-block {
  color: #fff;
  width: 100%;
  height: auto;
  position: relative;
  padding: 40px 50px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .trust-banner-block {
    padding: 24px 17px 20px;
  }
}
.trust-banner-block .trust-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.trust-banner-block .trust-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-banner-block .trust-banner-box {
  display: grid;
  grid-template-columns: 238px auto;
  column-gap: 91px;
  align-content: start;
  position: relative;
  grid-template-areas: "title text" "note button";
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-box {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "text" "button" "note";
  }
}
.trust-banner-block .trust-banner-title {
  grid-area: title;
  width: 238px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-title {
    width: 142px;
    margin-top: unset;
  }
}
.trust-banner-block .trust-banner-note {
  grid-area: note;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 30px;
  max-width: 210px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-note {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1;
    max-width: 100%;
  }
}
.trust-banner-block .trust-banner-text {
  grid-area: text;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-text {
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: 0.02em;
    margin-top: 15px;
  }
}
.trust-banner-block .trust-banner-text strong {
  font-weight: inherit;
  color: #4a429a;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  letter-spacing: 0.02em;
  background-color: #fff;
  padding-inline: 4px;
  margin-inline: 6px;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-text strong {
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: 0.02em;
    margin-inline: 0 6px;
  }
}
.trust-banner-block .trust-banner-text::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(236, 243, 249, 0.1);
  position: absolute;
  top: 0;
  left: 284px;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-text::before {
    display: none;
  }
}
.trust-banner-block .trust-banner-button {
  grid-area: button;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-button {
    margin-top: 17px;
  }
}
.trust-banner-block .trust-banner-button a {
  max-width: 347px;
  height: 49px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trust-banner-block .trust-banner-button a {
    max-width: 100%;
    width: 100%;
    max-width: 213px;
    height: 37px;
    margin: 0 auto;
  }
}

.output .hero {
  margin: 0 auto;
  height: 460px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .output .hero {
    height: 100%;
  }
}
.output .hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.output .hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-bg img {
    object-position: center bottom;
  }
}
.output .hero .hero-inner {
  height: 100%;
  display: grid;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-inner {
    padding: 30px 8px;
    width: 100%;
  }
}
.output .hero .hero-content {
  width: 470px;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-content {
    width: 100%;
    text-align: center;
  }
}
.output .hero .hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.output .hero .hero-title {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .output .hero .hero-title {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.5625;
    letter-spacing: 0.04em;
  }
}
.output .hero .hero-title b {
  font-size: 5.2rem;
  line-height: 1.1538461538;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.output .hero .hero-title b else {
  font-weight: 500;
}
.output .hero .hero-title b {
  position: relative;
  top: 1px;
  padding-inline: 0 0.1em;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-title b {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
.output .hero .hero-title span {
  font-weight: 600;
  background-image: linear-gradient(rgba(135, 181, 234, 0.6), rgba(135, 181, 234, 0.6));
  background-position: 0 calc(100% - 1px);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-title span {
    background-size: 100% 3px;
  }
}
.output .hero .hero-lead {
  color: #fff;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-lead {
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-top: 20px;
  }
}
.output .hero .hero-logo {
  width: 156px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-logo {
    width: 119px;
    margin-top: 17px;
    margin-inline: auto;
  }
}
.output .hero .hero-logo img {
  width: 100%;
}
.output .hero .hero-button-box {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-button-box {
    margin-top: 25px;
  }
}
.output .hero .hero-button a {
  line-height: 1.33;
}
.output .hero .hero-button a .--small {
  display: inline;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  bottom: 1px;
}
@media screen and (max-width: 768px) {
  .output .hero .hero-button a .--small {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.output .hero .hero-button a span {
  text-align: center;
}
.output .hero .hero-note {
  color: #fff;
  font-weight: 400;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.75;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .output .hero .hero-note {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .output .hero .hero-note {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.75em;
    text-indent: -1.25em;
    padding-left: 1.25em;
  }
}
.output .about {
  background-color: #ededed;
}
.output .about .about-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .about .about-inner {
    padding-block: 40px;
    row-gap: 0;
  }
}
.output .about .about-content {
  display: grid;
  grid-template-columns: 1fr 37.2380952381%;
  grid-template-areas: ". img" "text img" "note img" ". img" "customers customers";
}
@media screen and (max-width: 768px) {
  .output .about .about-content {
    grid-template-columns: 100%;
    grid-template-areas: "text" "img" "customers" "note";
  }
}
.output .about .about-text {
  grid-area: text;
  margin-top: 26px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .output .about .about-text {
    margin-top: 26px;
  }
}
.output .about .about-text__gradation {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-inline: 10px 3px;
  margin-right: 12px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .output .about .about-text__gradation {
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.02em;
    padding-inline: 5px 3px;
    padding-block: 2px;
    margin-right: unset;
  }
}
.output .about .about-text__gradation b {
  font-size: 4rem;
  line-height: 1.175;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.output .about .about-text__gradation b else {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .output .about .about-text__gradation b {
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
.output .about .about-text__lg {
  font-size: 4.4rem;
  line-height: 1.3636363636;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .output .about .about-text__lg {
    font-size: 2.3rem;
    line-height: 1.3043478261;
    letter-spacing: 0.02em;
    font-feature-settings: "palt";
    margin-right: 12px;
  }
}
.output .about .about-text__lg b {
  font-size: 5.2rem;
  line-height: 1.1538461538;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.output .about .about-text__lg b else {
  font-weight: 500;
}
.output .about .about-text__lg b {
  position: relative;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .output .about .about-text__lg b {
    font-size: 2.7rem;
    line-height: 1.1111111111;
    letter-spacing: 0.02em;
    font-feature-settings: "palt";
    top: 2px;
  }
}
.output .about .about-text__mid {
  font-size: 2.9rem;
  line-height: 1.4827586207;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-top: 12px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .output .about .about-text__mid {
    font-size: 1.6rem;
    line-height: 1.5625;
    letter-spacing: 0.02em;
    margin-top: 12px;
    display: inline;
    position: relative;
    top: 1px;
  }
}
.output .about .about-text__mid span {
  font-weight: inherit;
  display: inline-block;
}
.output .about .about-text sup {
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .output .about .about-text sup {
    font-size: 1rem;
    position: absolute;
    top: 1px;
    right: -17px;
  }
}
.output .about .about-note-box {
  grid-area: note;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .output .about .about-note-box {
    margin-top: 16px;
  }
}
.output .about .about-note {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  font-weight: 400;
  text-indent: -2.5em;
  padding-left: 2.5em;
  max-width: 580px;
}
@media screen and (max-width: 768px) {
  .output .about .about-note {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.output .about .about-note span {
  padding-right: 0.5em;
  font-weight: inherit;
}
.output .about .about-img {
  grid-area: img;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .output .about .about-img {
    width: 71.6666666667%;
    margin-inline: auto;
    margin-top: 22px;
  }
}
.output .about .customers {
  grid-area: customers;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .output .about .customers {
    margin-top: 22px;
  }
}
.output .customers {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
  gap: 5px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .output .customers {
    width: 100%;
    gap: 4px;
  }
}
.output .customers .customers-item {
  display: grid;
  place-items: center;
  width: 206px;
}
@media screen and (max-width: 768px) {
  .output .customers .customers-item {
    width: 32.4137931034%;
  }
}
.output .customers .customers-item img {
  width: 100%;
}
.output .customers.is-show {
  clip-path: none;
}
.output .why {
  position: relative;
  z-index: 0;
}
.output .why .why-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .why .why-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.output .why .why-card-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block {
    grid-template-columns: 100%;
  }
}
.output .why .why-card-block .why-card-box {
  padding: 40px 40px 34px;
  background-color: #fff;
  box-shadow: 0px 0px 60px 40px rgba(0, 0, 0, 0.03);
  display: grid;
  column-gap: 32px;
  grid-template-columns: auto 33.3333333333%;
  grid-template-areas: "title img" "lead img" "text text";
  align-content: start;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-box {
    column-gap: 16px;
    padding: 25px 20px 25px;
  }
}
.output .why .why-card-block .why-card-title {
  grid-area: title;
  display: grid;
  justify-items: start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-title {
    gap: 8px;
  }
}
.output .why .why-card-block .why-card-title .num {
  color: rgba(56, 77, 159, 0.7);
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.output .why .why-card-block .why-card-title .num else {
  font-weight: 500;
}
.output .why .why-card-block .why-card-title .num {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-title .num {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
.output .why .why-card-block .why-card-title .name {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  text-align: center;
  padding: 4px 5px 4px 4px;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-title .name {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 3px 4px 4px;
  }
}
.output .why .why-card-block .why-card-lead {
  grid-area: lead;
  color: #384d9f;
  margin-top: 14px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-lead {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    letter-spacing: 0.02em;
    margin-top: 8px;
  }
}
.output .why .why-card-block .why-card-text {
  grid-area: text;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-text {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
.output .why .why-card-block .why-card-img {
  grid-area: img;
}
@media screen and (max-width: 768px) {
  .output .why .why-card-block .why-card-img {
    width: 88.5px;
  }
}
.output .cta.--type1 .cta-button-box {
  grid-template-columns: repeat(auto-fit, 320px);
}
@media screen and (max-width: 768px) {
  .output .cta.--type1 .cta-button-box {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 768px) {
  .output .cta.--type1 .cta-button {
    text-align: center;
  }
}
.output .cta.--type1 .cta-button a {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .output .cta.--type1 .cta-button a {
    font-size: 1.2rem;
    line-height: 1.3333333333;
  }
}
.output .cta.--type1 .cta-button a > span {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .output .cta.--type1 .cta-button a > span {
    display: block;
  }
}
.output .cta.--type1 .cta-button a .--small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .output .cta.--type1 .cta-button a .--small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-inner {
    padding: 30px 0;
  }
}
.output .cta.--type2 .cta-content {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-content {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
  }
}
.output .cta.--type2 .cta-text {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-text {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    letter-spacing: 0.02em;
    text-align: center;
  }
}
.output .cta.--type2 .cta-button-box {
  width: auto;
  grid-template-columns: repeat(auto-fit, 320px);
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-button-box {
    grid-template-columns: 100%;
  }
}
.output .cta.--type2 .cta-button:nth-child(1) a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e13928;
  color: #fff;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 25px;
  border-radius: calc(infinity * 1px);
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-button:nth-child(1) a {
    width: 240px;
    height: 44px;
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
.output .cta.--type2 .cta-button:nth-child(1) a::after {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'><path d='M0 0 L6 4.5 L0 9 Z' fill='black'/></svg>") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-button:nth-child(1) a::after {
    width: 4px;
    height: 7px;
    right: 16px;
  }
}
@media (hover: hover) {
  .output .cta.--type2 .cta-button:nth-child(1) a {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .output .cta.--type2 .cta-button:nth-child(1) a:hover {
    opacity: 0.7;
  }
}
.output .cta.--type2 .cta-button:nth-child(1) a.--plus::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-button:nth-child(1) a.--plus::before {
    right: 20px;
  }
}
.output .cta.--type2 .cta-button:nth-child(1) a.--plus::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  background-image: none;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 768px) {
  .output .cta.--type2 .cta-button:nth-child(1) a.--plus::after {
    right: 14px;
  }
}
.output .cta.--type2 .cta-button:nth-child(1) a {
  font-size: 1.6rem;
}
.output .trust {
  position: relative;
  z-index: 0;
  background-color: #ededed;
}
.output .trust .trust-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .trust .trust-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.output .trust .trust-content {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .output .trust .trust-content {
    gap: 15px;
  }
}
.output .choose .choose-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.output .choose .choose-card-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block {
    grid-column: 1;
    grid-template-columns: auto;
  }
}
.output .choose .choose-card-block .choose-card-box {
  padding: 40px 40px 50px;
  display: grid;
  justify-items: center;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-box {
    padding: 20px 15px;
  }
}
.output .choose .choose-card-block .choose-card-box.--on-premises {
  background-color: rgba(56, 77, 159, 0.05);
}
.output .choose .choose-card-block .choose-card-box.--on-premises .choose-card-title {
  background-color: #384d9f;
}
.output .choose .choose-card-block .choose-card-box.--on-premises .choose-card-name span::after {
  background: linear-gradient(0deg, rgba(56, 77, 159, 0.4) 6px, transparent 6px);
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-box.--on-premises .choose-card-name span::after {
    background: linear-gradient(0deg, rgba(56, 77, 159, 0.4) 3px, transparent 3px);
  }
}
.output .choose .choose-card-block .choose-card-box.--on-premises .choose-card-list li::before {
  background-color: #384d9f;
}
.output .choose .choose-card-block .choose-card-box.--cloud {
  background-color: rgba(124, 156, 209, 0.05);
}
.output .choose .choose-card-block .choose-card-box.--cloud .choose-card-title {
  background-color: #7c9cd1;
}
.output .choose .choose-card-block .choose-card-box.--cloud .choose-card-name span::after {
  background: linear-gradient(0deg, rgba(124, 156, 209, 0.4) 6px, transparent 6px);
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-box.--cloud .choose-card-name span::after {
    background: linear-gradient(0deg, rgba(124, 156, 209, 0.4) 3px, transparent 3px);
  }
}
.output .choose .choose-card-block .choose-card-box.--cloud .choose-card-list li::before {
  background-color: #7c9cd1;
}
.output .choose .choose-card-block .choose-card-title {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  font-weight: 500;
  width: 100%;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-title {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.04em;
    height: 25px;
  }
}
.output .choose .choose-card-block .choose-card-title span {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-title span {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
.output .choose .choose-card-block .choose-card-name {
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-name {
    margin-top: 20px;
  }
}
.output .choose .choose-card-block .choose-card-name span {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: inline-block;
  font-feature-settings: "palt";
  text-decoration: underline;
  text-decoration-color: rgba(56, 77, 159, 0.4);
  text-decoration-thickness: 6px;
  text-underline-offset: 1px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-name span {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-decoration-thickness: 4px;
    text-underline-offset: 1px;
  }
}
.output .choose .choose-card-block .choose-card-list {
  margin-top: 18px;
}
.output .choose .choose-card-block .choose-card-list li {
  font-size: 2rem;
  line-height: 1.5;
  padding-inline: 8px 12px;
  padding-block: 12px;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-list li {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    padding-inline: 5px 10px;
    padding-block: 8px;
  }
}
.output .choose .choose-card-block .choose-card-button {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-button {
    margin-top: 20px;
  }
}
.output .choose .choose-card-block .choose-card-button a {
  max-width: 334px;
}
@media screen and (max-width: 768px) {
  .output .choose .choose-card-block .choose-card-button a {
    max-width: 210px;
    text-align: center;
  }
  .output .choose .choose-card-block .choose-card-button a > span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3333333333;
  }
}
.output .step {
  background-color: #ededed;
}
.output .step .step-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .step .step-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.output .step .step-card-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block {
    grid-column: 1;
    grid-template-columns: auto;
  }
}
.output .step .step-card-block .step-card-box {
  padding: 48px 40px;
  display: grid;
  justify-items: center;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-box {
    padding: 20px 15px;
  }
}
.output .step .step-card-block .step-card-title {
  color: #7c9cd1;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  font-weight: 500;
  width: 100%;
  height: 39px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-title {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.04em;
    height: 25px;
  }
}
.output .step .step-card-block .step-card-name {
  margin-top: 32px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-name {
    margin-top: 20px;
    height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-name picture,
  .output .step .step-card-block .step-card-name img {
    width: auto;
    height: 100%;
  }
}
.output .step .step-card-block .step-card-text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-text {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-top: 20px;
  }
}
.output .step .step-card-block .step-card-button {
  width: 100%;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .output .step .step-card-block .step-card-button {
    margin-top: 20px;
  }
}
.output .step .step-card-block .step-card-button a {
  max-width: 260px;
}
.output .ecosystem::before, .output .ecosystem::after {
  content: "";
}
.output .ecosystem .ecosystem-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .output .ecosystem .ecosystem-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.output .contact .contact-list li {
  padding-block: 56px;
}
@media screen and (max-width: 768px) {
  .output .contact .contact-list li {
    padding-block: 24px;
  }
}
.output .contact .contact-list li .content-text {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .output .contact .contact-list li .content-text {
    margin-top: 20px;
  }
}
.output .contact .contact-list .contact-button-box .contact-button:nth-of-type(1) a {
  background-color: #e13928;
}