[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;
  }
}

.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;
  }
}

.m-item-block {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .m-item-block {
    gap: 10px;
  }
}

.m-item-box {
  background-color: #fff;
  padding: 40px 50px 60px;
}
@media screen and (max-width: 768px) {
  .m-item-box {
    padding: 25px 20px;
  }
}

.m-item-title {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-item-title {
    gap: 12px;
    padding-right: 10px;
    padding-bottom: 16px;
  }
}
.m-item-title::after {
  content: "";
  width: 34px;
  height: 3px;
  background-color: #384d9f;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .m-item-title::after {
    width: 17px;
    height: 1.5px;
  }
}
.m-item-title::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .m-item-title::before {
    height: 1.5px;
  }
}
.m-item-title .m-name {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  font-weight: 600;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .m-item-title .m-name {
    font-size: 1.8rem;
    line-height: 1.3888888889;
    letter-spacing: 0.02em;
    padding-top: 6px;
  }
}
.m-item-title .m-name span {
  display: inline-block;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .m-item-title .m-name span {
    display: inline;
  }
}
.m-item-title .m-num {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.m-item-title .m-num else {
  font-weight: 500;
}
.m-item-title .m-num {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 54px;
  height: 63px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .m-item-title .m-num {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.06em;
    min-width: 33px;
    height: 38px;
  }
}
.m-item-title .m-num::before {
  content: "";
  display: block;
  width: 54px;
  height: 63px;
  background-color: #384d9f;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 63'><path fill='black' d='M0.002 16.49 L27.002 0.982 L54.002 16.49 L54.002 47.505 L27.002 63.012 L0.002 47.505 Z'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 63'><path fill='black' d='M0.002 16.49 L27.002 0.982 L54.002 16.49 L54.002 47.505 L27.002 63.012 L0.002 47.505 Z'/></svg>") no-repeat center/contain;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .m-item-title .m-num::before {
    width: 33px;
    height: 38px;
  }
}

.m-item-content:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .m-item-content:not(:first-child) {
    margin-top: 13px;
  }
}

.m-item-content-box {
  display: grid;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .m-item-content-box {
    gap: 16px;
  }
}
.m-item-content-box + .m-item-content-box {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .m-item-content-box + .m-item-content-box {
    margin-top: 28px;
    padding-top: 28px;
  }
}

.m-item-sub-title {
  color: #384d9f;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .m-item-sub-title {
    font-size: 1.3rem;
    line-height: 1.3846153846;
  }
}
.m-item-sub-title + .m-item-text {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .m-item-sub-title + .m-item-text {
    margin-top: 12px;
  }
}

.m-item-text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .m-item-text {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
.m-item-text + .m-item-text {
  margin-top: 0.5em;
}
.m-item-text strong {
  color: #384d9f;
}
.m-item-text strong.--weight-600 {
  font-weight: 600;
}
.m-item-text strong.--color-black {
  color: #000;
}
.m-item-text span {
  display: inline-block;
  font-weight: inherit;
}

.m-item-note {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .m-item-note {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 12px;
  }
}

.m-item-button {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .m-item-button {
    margin-top: 15px;
  }
}
.m-item-button a {
  max-width: 271px;
  height: 44px;
  margin-inline: 0;
}
@media screen and (max-width: 768px) {
  .m-item-button a {
    font-size: 1rem;
    line-height: 1;
    width: 245px;
    height: 37px;
    margin-inline: auto;
  }
}

.sap .hero {
  margin: 0 auto;
  height: 360px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sap .hero {
    height: 180px;
  }
}
.sap .hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sap .hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-bg img {
    object-position: center bottom;
  }
}
.sap .hero .hero-inner {
  height: 100%;
  display: grid;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-inner {
    padding-block: 30px;
    padding-inline: 13px;
    width: 100%;
    text-align: center;
  }
}
.sap .hero .hero-heading {
  color: #fff;
  font-size: 4.4rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-heading {
    font-size: 2.5rem;
    line-height: 1.28;
    letter-spacing: 0.1em;
    text-align: left;
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }
}
.sap .hero .hero-heading b {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.sap .hero .hero-heading b else {
  font-weight: 500;
}
.sap .hero .hero-heading b {
  position: relative;
  top: 2px;
  padding-inline: 0.2em;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-heading b {
    font-size: 3rem;
    letter-spacing: 0;
  }
}
.sap .hero .hero-heading b:first-child, .sap .hero .hero-heading b:last-child {
  padding-left: 0;
}
.sap .hero .hero-heading span {
  display: inline-block;
  font-weight: inherit;
}
.sap .hero .hero-lead {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0em;
    text-align: left;
    max-width: 440px;
    margin-inline: auto;
    margin-top: 10px;
  }
}
.sap .hero .hero-button-box {
  width: 470px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-button-box {
    width: 230px;
    margin-inline: auto;
    margin-top: 25px;
    grid-template-columns: 100%;
  }
}
.sap .hero .hero-button a {
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sap .hero .hero-button a {
    width: 100%;
    height: 31px;
    font-size: 1.1rem;
  }
}
.sap .support {
  background-color: #ededed;
}
.sap .support .support-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .sap .support .support-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
@media screen and (min-width: 769px) {
  .sap .support .support-block {
    grid-template-columns: 54.4761904762% 41.9047619048%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .sap .support .section-title-ja span {
    display: inline;
  }
}
.sap .merit {
  position: relative;
  z-index: 0;
}
.sap .merit .merit-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
@media screen and (min-width: 769px) {
  .sap .merit .merit-block {
    grid-template-columns: 57.1428571429% 41.9047619048%;
    justify-content: space-between;
  }
}
.sap .merit .merit-card-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-card-block {
    grid-template-columns: 100%;
  }
}
.sap .merit .merit-card-block .merit-card-box {
  padding: 40px 40px 34px;
  background-color: #fff;
  box-shadow: 0px 0px 60px 40px rgba(0, 0, 0, 0.03);
  display: grid;
  align-content: start;
  justify-items: center;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-card-block .merit-card-box {
    column-gap: 16px;
    padding: 25px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-card-block .merit-card-img {
    width: 88.5px;
  }
}
.sap .merit .merit-card-block .merit-card-title {
  color: #384d9f;
  margin-top: 24px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-card-block .merit-card-title {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-top: 20px;
    align-items: flex-start;
  }
}
.sap .merit .merit-card-block .merit-card-title span {
  display: inline-block;
  font-weight: inherit;
}
.sap .merit .merit-card-block .merit-card-text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .sap .merit .merit-card-block .merit-card-text {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
.sap .function {
  background-color: #f2f2f2;
}
.sap .function .function-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .sap .function .function-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.sap .function .function-content {
  display: grid;
  gap: 24px;
}
.sap .function .function-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 326px 1fr;
  gap: 48px;
  min-height: 346px;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card {
    padding: 20px;
    grid-template-columns: 100%;
    gap: 0;
    min-height: auto;
  }
}
.sap .function .function-card .card-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-logo-wrap {
    flex-direction: row;
    gap: 2px;
  }
}
.sap .function .function-card .card-logo-wrap .card-logo {
  min-height: 132px;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-logo-wrap .card-logo {
    width: 100%;
    min-height: auto;
    height: 58px;
  }
}
.sap .function .function-card .card-logo-wrap .card-logo img {
  width: 100%;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-logo-wrap .card-logo img {
    height: 14px;
  }
}
.sap .function .function-card .card-text-wrap {
  display: flex;
  flex-direction: column;
}
.sap .function .function-card .card-text-wrap .card-title {
  font-size: 2.2rem;
  line-height: 1.6363636364;
  font-weight: 600;
  color: #7c9cd1;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-text-wrap .card-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 16px;
  }
}
.sap .function .function-card .card-text-wrap .card-title span {
  display: inline-block;
}
.sap .function .function-card .card-text-wrap .card-text {
  color: #fff;
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-text-wrap .card-text {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.sap .function .function-card .card-text-wrap .card-note {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-text-wrap .card-note {
    margin-top: 4px;
    font-size: 1.1rem;
    line-height: 1.6363636364;
  }
}
.sap .function .function-card .card-text-wrap .card-button {
  margin-top: 27px;
  display: flex;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-text-wrap .card-button {
    margin-top: 17px;
    margin-inline: auto;
  }
}
.sap .function .function-card .card-text-wrap .card-button a {
  max-width: 260px;
  margin: auto 0 0;
}
.sap .function .function-card .card-text-wrap .card-button .--spais {
  position: relative;
  left: -4px;
}
@media screen and (max-width: 768px) {
  .sap .function .function-card .card-text-wrap .card-button .--spais {
    left: -2px;
  }
}
.sap .case .case-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-inner {
    padding-block: 40px;
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
.sap .case .case-area {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 338px);
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-area {
    gap: 20px;
    justify-items: center;
    grid-template-columns: 100%;
  }
}
.sap .case .case-card {
  max-width: 338px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .sap .case .case-card {
    max-width: 100%;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.03);
  }
}
@media (hover: hover) {
  .sap .case .case-card {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .sap .case .case-card:hover {
    opacity: 0.7;
  }
}
.sap .case .case-card img {
  width: 100%;
}
.sap .case .case-name {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sap .case .case-name {
    height: 96px;
  }
}
.sap .case .case-name img {
  width: auto;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-name img {
    height: 96px;
  }
}
.sap .case .case-title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  font-weight: 600;
  padding: 28px 30px 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sap .case .case-title {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    letter-spacing: 0.08em;
    padding: 19px 14px 0;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sap .case .case-title br {
    display: none;
  }
}
.sap .case .case-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  font-weight: 500;
  padding: 14px 30px 28px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-text {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0.08em;
    padding: 6px 14px 17px;
    min-height: auto;
  }
}
.sap .case .case-data {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ededed;
}
@media screen and (max-width: 768px) {
  .sap .case .case-data {
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0.08em;
    height: 27px;
  }
}
.sap .case .case-link-text {
  text-align: center;
  padding-block: 34px 40px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-link-text {
    padding-block: 18px 25px;
  }
}
.sap .case .case-link-text span {
  color: #384d9f;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  border-bottom: 1px solid #384d9f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sap .case .case-link-text span {
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0.08em;
    gap: 7px;
  }
}
.sap .case .case-link-text span::after {
  content: "";
  width: 7px;
  height: 11px;
  background-color: #384d9f;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.6 10.8'><polygon points='.6 10.8 0 10 6 5.4 0 .8 .6 0 7.6 5.4 .6 10.8' 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 7.6 10.8'><polygon points='.6 10.8 0 10 6 5.4 0 .8 .6 0 7.6 5.4 .6 10.8' fill='black'/></svg>") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .sap .case .case-link-text span::after {
    width: 4px;
    height: 16px;
  }
}
.sap .price {
  background-color: #f2f2f2;
}
.sap .price .price-inner {
  padding-block: 100px;
  display: grid;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .sap .price .price-inner {
    padding-block: 40px;
    row-gap: 30px;
  }
}
.sap .price .item-tab .tab-nav .section-inner {
  width: 100%;
}
.sap .price .item-tab .tab-nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .tab-nav ul {
    gap: 2px;
    height: 46.5px;
  }
}
.sap .price .item-tab .tab-nav ul li {
  margin-top: 20px;
  border: 1px solid #60636d;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .tab-nav ul li {
    margin-top: 6.5px;
  }
}
.sap .price .item-tab .tab-nav ul li:has(.is-active) {
  margin-top: 0;
  background-color: #374157;
  position: relative;
  top: 1px;
}
.sap .price .item-tab .tab-nav ul li:has(.is-active)::before, .sap .price .item-tab .tab-nav ul li:has(.is-active)::after {
  display: none;
}
.sap .price .item-tab .tab-nav ul li p {
  font-size: 2rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.sap .price .item-tab .tab-nav ul li p else {
  font-weight: 500;
}
.sap .price .item-tab .tab-nav ul li p {
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .tab-nav ul li p {
    font-size: 1rem;
    line-height: 1.1;
    padding: 0 2px;
  }
}
@media (hover: hover) {
  .sap .price .item-tab .tab-nav ul li p {
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .sap .price .item-tab .tab-nav ul li p:hover {
    opacity: 0.7;
  }
}
.sap .price .item-tab .item-tab-wrap {
  background: linear-gradient(0deg, #1d2130, #374157);
  border: 1px solid #60636d;
}
.sap .price .item-tab .item-tab {
  display: none;
  padding: 50px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-tab {
    gap: 20px;
    padding: 20px 15px 30px;
  }
}
.sap .price .item-tab .item-tab.is-show {
  display: grid;
}
.sap .price .item-tab .item-lead {
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-lead {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.sap .price .item-tab .item-lead strong {
  color: #7c9cd1;
  font-weight: inherit;
}
.sap .price .item-tab .item-lead span {
  display: inline-block;
}
.sap .price .item-tab .item-table-content {
  display: grid;
  grid-template-columns: 120px 235px 1fr;
  grid-template-areas: "head-1 title-1 text-1" "head-1 title-2 text-2" "head-1 title-3 text-3" "head-2 title-4 text-4";
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content {
    grid-template-columns: 70px 1fr;
    grid-template-areas: "head-1 title-1" "head-1 text-1" "head-1 title-2" "head-1 text-2" "head-1 title-3" "head-1 text-3" "head-2 title-4" "head-2 text-4";
  }
}
.sap .price .item-tab .item-table-content .table-item.--head {
  color: #fff;
  background-color: #384d9f;
  font-size: 1.6rem;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--head {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
.sap .price .item-tab .item-table-content .table-item.--head:nth-child(2) {
  background-color: #5873b7;
}
.sap .price .item-tab .item-table-content .table-item.--title {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  background-color: #7c9cd1;
  display: flex;
  align-items: center;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--title {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    padding-left: 0;
    padding-block: 5px;
    justify-content: center;
    text-align: center;
  }
}
.sap .price .item-tab .item-table-content .table-item.--text {
  background-color: #fff;
  padding: 20px;
  display: grid;
  gap: 16px 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--text {
    padding: 13px 15px 15px;
    gap: 5px 0;
  }
}
.sap .price .item-tab .item-table-content .table-item.--text .text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--text .text {
    font-size: 1.1rem;
    line-height: 1.4545454545;
  }
}
.sap .price .item-tab .item-table-content .table-item.--text .text span {
  font-size: 1.4rem;
  line-height: 2;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--text .text span {
    display: inline;
    font-size: 1.1rem;
    line-height: 1.4545454545;
  }
}
.sap .price .item-tab .item-table-content .table-item.--text .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--text .tag-list {
    gap: 4px;
  }
}
.sap .price .item-tab .item-table-content .table-item.--text .tag-list li {
  color: #384d9f;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
  padding: 4px 15px;
  background-color: rgba(56, 77, 159, 0.1);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-table-content .table-item.--text .tag-list li {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 4px;
  }
}
.sap .price .item-tab .item-table-content .--head:nth-child(1 of .--head) {
  grid-area: head-1;
}
.sap .price .item-tab .item-table-content .--title:nth-child(1 of .--title) {
  grid-area: title-1;
}
.sap .price .item-tab .item-table-content .--text:nth-child(1 of .--text) {
  grid-area: text-1;
}
.sap .price .item-tab .item-table-content .--head:nth-child(2 of .--head) {
  grid-area: head-2;
}
.sap .price .item-tab .item-table-content .--title:nth-child(2 of .--title) {
  grid-area: title-2;
}
.sap .price .item-tab .item-table-content .--text:nth-child(2 of .--text) {
  grid-area: text-2;
}
.sap .price .item-tab .item-table-content .--head:nth-child(3 of .--head) {
  grid-area: head-3;
}
.sap .price .item-tab .item-table-content .--title:nth-child(3 of .--title) {
  grid-area: title-3;
}
.sap .price .item-tab .item-table-content .--text:nth-child(3 of .--text) {
  grid-area: text-3;
}
.sap .price .item-tab .item-table-content .--head:nth-child(4 of .--head) {
  grid-area: head-4;
}
.sap .price .item-tab .item-table-content .--title:nth-child(4 of .--title) {
  grid-area: title-4;
}
.sap .price .item-tab .item-table-content .--text:nth-child(4 of .--text) {
  grid-area: text-4;
}
.sap .price .item-tab .item-price-content {
  display: grid;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content {
    gap: 20px;
  }
}
.sap .price .item-tab .item-price-content .price-block {
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block {
    gap: 10px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box {
  display: grid;
  background-color: #fff;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud {
  grid-template-columns: minmax(240px, 31.106870229%) 1fr;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud {
    grid-template-columns: 100%;
    padding-block: 15px 0;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title {
  padding-inline: 10px;
  display: flex;
  align-items: center;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan {
  padding-top: 4px;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong {
  color: #384d9f;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong else {
  font-weight: 500;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  padding-inline: 0.08em;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
  }
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong else {
    font-weight: 500;
  }
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan strong {
    top: 2px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan .desc {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .price-title .plan .desc {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .plan-desc {
  padding-block: 9px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .plan-desc {
    margin-top: 10px;
    padding-block: 15px 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .plan-desc::before {
    content: "";
    width: 84.6153846154%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost {
    font-size: 1.25rem;
    line-height: 1;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost strong {
  color: #384d9f;
  font-size: 5.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost strong else {
  font-weight: 500;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost strong {
  padding-inline: 0.05em;
  top: 4px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--cloud .cost strong {
    font-size: 2.4rem;
    line-height: 1;
    top: 2px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud {
  grid-template-columns: minmax(190px, 23.1870229008%) 1fr;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud {
    padding-block: 20px 18px;
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .price-plan {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .price-plan {
    padding-inline: 14px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .plan-name {
  background-color: #7c9cd1;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .price-title span {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(124, 156, 209, 0.4);
  text-decoration-thickness: 6px;
  text-underline-offset: 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .price-title span {
    text-decoration-thickness: 4px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .plan-desc .text {
  width: auto;
}
@media screen and (max-width: 1000px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .plan-desc .text {
    width: 70%;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-cloud .plan-desc .text {
    width: 100%;
    text-align: left;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises {
  grid-template-columns: minmax(190px, 23.1870229008%) 1fr;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises {
    padding-block: 20px 18px;
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .price-plan {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .price-plan {
    padding-inline: 14px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .plan-name {
  background-color: #384d9f;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .price-title span {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(56, 77, 159, 0.4);
  text-decoration-thickness: 6px;
  text-underline-offset: 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .price-title span {
    text-decoration-thickness: 4px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .plan-desc .text {
  width: auto;
}
@media screen and (max-width: 1000px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .plan-desc .text {
    width: 70%;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--archiver-on-premises .plan-desc .text {
    width: 100%;
    text-align: left;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct {
  grid-template-columns: 100%;
}
.sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .plan-name {
  height: 48px;
  background-color: #384d9f;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .plan-name {
    height: 25px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .price-title span {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(56, 77, 159, 0.4);
  text-decoration-thickness: 6px;
  text-underline-offset: 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .price-title span {
    text-decoration-thickness: 4px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .plan-desc {
  padding-block: 22px 33px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .plan-desc {
    padding-block: 18px;
    grid-template-areas: "initial icon monthly text";
  }
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box.--trunsuct .plan-desc .text {
    margin-top: 9px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .price-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sap .price .item-tab .item-price-content .price-block .price-box .price-title::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .price-title::after {
    display: none;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .price-title .name {
  min-width: 166px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .price-title .name {
    min-width: auto;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .price-title span {
  font-size: 2.2rem;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  display: inline-block;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .price-title span {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    letter-spacing: 0.04em;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .price-title span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-name {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-feature-settings: "palt";
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-name {
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 600;
    height: 19px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc {
  padding-block: 18px 3px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc {
    padding-block: 15px 0;
    display: grid;
    align-items: center;
    grid-template-areas: "initial icon monthly" ". . text";
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost {
    font-size: 1.1rem;
    line-height: 1;
  }
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost.--initial {
    grid-area: initial;
  }
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost.--monthly {
    grid-area: monthly;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost strong {
  color: #384d9f;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost strong else {
  font-weight: 500;
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost strong {
  padding-inline: 0.1em;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .cost strong {
    font-size: 2.2rem;
    line-height: 1;
    top: 1px;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .icon {
  margin-inline: 14px;
  top: -3px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .icon {
    margin-inline: 6px 4px;
    width: 20px;
    grid-area: icon;
    top: 0;
  }
}
.sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .text {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 8px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-block .price-box .plan-desc .text {
    font-size: 1rem;
    line-height: 1;
    padding-bottom: 4px;
    grid-area: text;
    white-space: nowrap;
    margin-top: 5px;
    margin-left: 0;
  }
}
.sap .price .item-tab .item-price-content .price-note {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  font-weight: 400;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .sap .price .item-tab .item-price-content .price-note {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.sap .price .item-tab .item-price-content .price-note strong {
  color: #7c9cd1;
  font-weight: 600;
}
.sap .price .item-tab .item-button a {
  max-width: 355px;
}
.sap .price .item-tab .item-button a span {
  display: inline-block;
  text-align: center;
  lighting-color: 1.2307692308;
}
.sap .price .item-tab .item-button.p-size-l a {
  max-width: 455px;
}