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

/*-------------------------------------------> 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 ) */
.content.servicenow {
  font-feature-settings: "palt";
}
.content.servicenow #onetrust-consent-sdk {
  display: none;
}
.content.servicenow .content {
  padding: 0;
  max-width: none;
  color: #000;
  font-family: "Noto Sans JP", "Original Yu Gothic", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
}
.content.servicenow br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .content.servicenow br.sp {
    display: block;
  }
}
.content.servicenow br.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .content.servicenow br.pc {
    display: none;
  }
}
.content.servicenow .servicenow .section-inner, .content.servicenow .servicenow .navAnchor {
  width: 100%;
  max-width: 1070px;
  padding: 0 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .section-inner, .content.servicenow .servicenow .navAnchor {
    width: 90.625%;
    padding: 0;
  }
}
.content.servicenow .servicenow .section-header {
  text-align: center;
  padding: 120px 0 50px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .section-header {
    padding: 50px 0 37px;
  }
}
.content.servicenow .servicenow .section-header .--en {
  color: #326761;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.content.servicenow .servicenow .section-header .--en else {
  font-weight: 500;
}
.content.servicenow .servicenow .section-header .--en {
  font-size: 1.8rem;
  line-height: 1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .section-header .--en {
    font-size: 1.5rem;
    line-height: 1em;
  }
}
.content.servicenow .servicenow .section-header .--ja span {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.6388888889em;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, #fbab2f 73%, #fbab2f 95%, rgba(255, 255, 255, 0) 95%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .section-header .--ja span {
    font-size: 2.4rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .hero {
  background: #eaf0ef url(../img/hero_bg_pc.png) center/auto 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero {
    background: #eaf0ef url(../img/hero_bg_sp.png) center/cover no-repeat;
  }
}
.content.servicenow .servicenow .hero .section-inner, .content.servicenow .servicenow .hero .navAnchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 68px;
  padding-bottom: 130px;
}
@media screen and (max-width: 850px) {
  .content.servicenow .servicenow .hero .section-inner, .content.servicenow .servicenow .hero .navAnchor {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero .section-inner, .content.servicenow .servicenow .hero .navAnchor {
    width: 84.375%;
    padding-top: 25px;
    padding-bottom: 92px;
  }
}
.content.servicenow .servicenow .hero-body {
  width: 455px;
}
@media screen and (max-width: 850px) {
  .content.servicenow .servicenow .hero-body {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-body {
    width: 100%;
    max-width: 400px;
  }
}
.content.servicenow .servicenow .hero-logo {
  width: 377px;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-logo {
    width: 95.3703703704%;
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .hero-copy {
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-copy {
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .hero-copy span {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 2px solid #326761;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-copy span {
    font-size: 1.3rem;
    line-height: 1.6923076923em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .hero-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-title {
    margin-bottom: 20px;
  }
}
.content.servicenow .servicenow .hero-title span {
  display: inline-block;
  color: #fff;
  font-size: 5.4rem;
  line-height: 1.4074074074em;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-title span {
    font-size: 3.3rem;
    line-height: 1.4242424242em;
    letter-spacing: 0.01em;
  }
}
.content.servicenow .servicenow .hero-title .--marker01 {
  padding: 0 6px 0 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 2%, #326761 2%, #326761 85%, rgba(255, 255, 255, 0) 85%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-title .--marker01 {
    padding: 0 6px 0 6px;
  }
}
.content.servicenow .servicenow .hero-title .--marker02 {
  margin-top: -11px;
  padding: 0 7px 0 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, #326761 8%, #326761 99%, rgba(255, 255, 255, 0) 99%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-title .--marker02 {
    margin-top: -6px;
    padding: 0 7px 0 7px;
  }
}
.content.servicenow .servicenow .hero-title b {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.content.servicenow .servicenow .hero-title b else {
  font-weight: 500;
}
.content.servicenow .servicenow .hero-title b {
  font-size: 6.5rem;
  line-height: 1em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-title b {
    font-size: 3.95rem;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
.content.servicenow .servicenow .hero-title small {
  font-size: 70%;
  font-weight: 700;
  letter-spacing: 0;
}
.content.servicenow .servicenow .hero-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbab2f;
  color: #fff;
  min-width: 267px;
  max-width: 267px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 50px;
  border-radius: 50px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-button a {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
    height: 44px;
    font-size: 13px;
    padding: 0 30px;
  }
}
@media (hover: hover) {
  .content.servicenow .servicenow .hero-button a {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    backface-visibility: hidden;
  }
  .content.servicenow .servicenow .hero-button a:hover {
    opacity: 0.7;
  }
}
.content.servicenow .servicenow .hero-button a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-button a::after {
    border-width: 3.5px 0 3.5px 4px;
    right: 15px;
  }
}
.content.servicenow .servicenow .hero-button a.--white {
  color: #fff;
}
.content.servicenow .servicenow .hero-button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.content.servicenow .servicenow .hero-button a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.content.servicenow .servicenow .hero-button a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.content.servicenow .servicenow .hero-button a {
  margin: 0;
}
.content.servicenow .servicenow .hero-image {
  width: calc(100% - 456px);
  max-width: 594px;
  margin-right: -5.3333333333%;
}
@media screen and (max-width: 850px) {
  .content.servicenow .servicenow .hero-image {
    width: 88.8888888889%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .hero-image {
    width: 88.8888888889%;
  }
}
.content.servicenow .servicenow .navAnchor {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor {
    margin-top: -72px;
  }
}
.content.servicenow .servicenow .navAnchor-lists {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-lists {
    justify-content: space-between;
    padding: 4px 20px 20px;
    gap: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-item {
    border-bottom: 1px solid #e5e5e5;
  }
}
.content.servicenow .servicenow .navAnchor-item:nth-child(1), .content.servicenow .servicenow .navAnchor-item:nth-child(4) {
  width: 22.5714285714%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-item:nth-child(1), .content.servicenow .servicenow .navAnchor-item:nth-child(4) {
    width: 46%;
  }
}
.content.servicenow .servicenow .navAnchor-item:nth-child(2), .content.servicenow .servicenow .navAnchor-item:nth-child(3) {
  width: 27.4285714286%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-item:nth-child(2), .content.servicenow .servicenow .navAnchor-item:nth-child(3) {
    width: 46%;
  }
}
.content.servicenow .servicenow .navAnchor-item:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-item:not(:last-child) {
    border-right: 0;
  }
}
.content.servicenow .servicenow .navAnchor-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 23px 40px;
}
@media screen and (max-width: 900px) {
  .content.servicenow .servicenow .navAnchor-link {
    padding: 23px 30px;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-link {
    gap: 4px;
    padding: 15px 10px 13px 0;
  }
}
@media (hover: hover) {
  .content.servicenow .servicenow .navAnchor-link {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    backface-visibility: hidden;
  }
  .content.servicenow .servicenow .navAnchor-link:hover {
    opacity: 0.7;
  }
}
.content.servicenow .servicenow .navAnchor-link::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: #326761 transparent transparent transparent;
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .content.servicenow .servicenow .navAnchor-link::after {
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor-link::after {
    border-width: 5px 4.5px 0 4.5px;
    right: 0;
  }
}
.content.servicenow .servicenow .navAnchor .--en {
  color: #326761;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.content.servicenow .servicenow .navAnchor .--en else {
  font-weight: 500;
}
.content.servicenow .servicenow .navAnchor .--en {
  font-size: 1.4rem;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor .--en {
    font-size: 1rem;
    line-height: 1em;
  }
}
.content.servicenow .servicenow .navAnchor .--ja {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .navAnchor .--ja {
    font-size: 1.4rem;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .award {
  padding-block: 120px 0;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .award {
    padding-block: 50px 0;
  }
}
.content.servicenow .servicenow .award .award-content {
  max-width: 943px;
  margin-inline: auto;
  border: solid 1px #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.8324496288%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .award .award-content {
    padding: 5.1724137931%;
  }
}
.content.servicenow .servicenow .features-outline {
  background: #eaf0ef;
  padding: 50px 32px;
  margin-bottom: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-outline {
    padding: 15px;
    flex-direction: column;
    gap: 15px;
    margin-top: -10px;
    margin-bottom: 33px;
  }
}
.content.servicenow .servicenow .features-outline .--logo {
  width: 23.4279918864%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-outline .--logo {
    width: 51.9230769231%;
  }
}
.content.servicenow .servicenow .features-outline .--figure {
  width: 73.630831643%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-outline .--figure {
    width: 100%;
  }
}
.content.servicenow .servicenow .features-suggest {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.71875em;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding-bottom: 82px;
  margin-bottom: 60px;
  background-image: url(../img/features_arrow_pc.png);
  background-image: image-set(url(../img/features_arrow_pc.png) 1x, url(../img/features_arrow_pc@2x.png) 2x);
  background-size: 36px auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-suggest {
    background-size: 20px auto;
    font-size: 1.8rem;
    line-height: 1.6944444444em;
    letter-spacing: 0.03em;
    padding-bottom: 46px;
    margin-bottom: 20px;
  }
}
.content.servicenow .servicenow .features-suggest b {
  background: #326761;
  color: #fff;
  font-weight: 700;
  padding: 0 10px 2px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-suggest b {
    padding: 0 5px 2px;
  }
}
.content.servicenow .servicenow .features-product {
  position: relative;
  padding: 40px 4.7619047619% 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-product {
    padding: 20px 0 25px;
  }
}
.content.servicenow .servicenow .features-product::before, .content.servicenow .servicenow .features-product::after {
  content: "";
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  width: calc(50% - 2px);
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-product::before, .content.servicenow .servicenow .features-product::after {
    width: calc(50vw - 1px);
  }
}
.content.servicenow .servicenow .features-product::before {
  left: 0;
  background: #eaf0ef;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-product::before {
    left: auto;
    right: calc(50% + 1px);
  }
}
.content.servicenow .servicenow .features-product::after {
  right: 0;
  background: #d6e1df;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-product::after {
    right: auto;
    left: calc(50% + 1px);
  }
}
.content.servicenow .servicenow .features-service {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 44.7368421053%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service {
    width: 44.4827586207%;
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .features-service .--lead {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--lead {
    margin-bottom: 16px;
    min-height: 74px;
  }
}
.content.servicenow .servicenow .features-service .--lead span {
  font-size: 1.6rem;
  line-height: 2.0625em;
  font-weight: 700;
  border-bottom: 2px solid #326761;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--lead span {
    font-size: 1.1rem;
    line-height: 1.9090909091em;
    border-width: 1px;
  }
}
.content.servicenow .servicenow .features-service .--lead small {
  font-size: 1.2rem;
  line-height: 2.75em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--lead small {
    font-size: 0.9rem;
    line-height: 1.5555555556em;
  }
}
.content.servicenow .servicenow .features-service .--logo {
  position: relative;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--logo {
    height: 42px;
    margin-bottom: 15px;
    gap: 10px;
  }
}
.content.servicenow .servicenow .features-service .--logo img {
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--logo img {
    width: auto;
    height: 100%;
  }
}
.content.servicenow .servicenow .features-service .--svf {
  max-width: 228px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--svf {
    max-width: fit-content;
    height: 31px;
  }
}
.content.servicenow .servicenow .features-service .--archiver {
  max-width: 221px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--archiver {
    max-width: fit-content;
    height: 16px;
  }
}
.content.servicenow .servicenow .features-service .--transact {
  max-width: 230px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--transact {
    max-width: fit-content;
    height: 16px;
  }
}
.content.servicenow .servicenow .features-service .--button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbab2f;
  color: #fff;
  min-width: 267px;
  max-width: 267px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 50px;
  border-radius: 50px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--button a {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
    height: 44px;
    font-size: 13px;
    padding: 0 30px;
  }
}
@media (hover: hover) {
  .content.servicenow .servicenow .features-service .--button a {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    backface-visibility: hidden;
  }
  .content.servicenow .servicenow .features-service .--button a:hover {
    opacity: 0.7;
  }
}
.content.servicenow .servicenow .features-service .--button a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--button a::after {
    border-width: 3.5px 0 3.5px 4px;
    right: 15px;
  }
}
.content.servicenow .servicenow .features-service .--button a.--white {
  color: #fff;
}
.content.servicenow .servicenow .features-service .--button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.content.servicenow .servicenow .features-service .--button a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.content.servicenow .servicenow .features-service .--button a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.content.servicenow .servicenow .features-service .--button a {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service .--button a {
    height: 31px;
  }
}
.content.servicenow .servicenow .features-service-figure {
  padding-top: 52px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service-figure {
    padding-top: 11.6279069767%;
    border-width: 1px;
  }
}
.content.servicenow .servicenow .features-service-figure.--arrow {
  position: relative;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service-figure.--arrow {
    padding-top: 12.4031007752%;
  }
}
.content.servicenow .servicenow .features-service-figure.--arrow::after {
  content: "";
  width: 15.2941176471%;
  height: calc(100% - 52px);
  background: url(../img/features_service_arrow_pc@2x.png) center/contain no-repeat;
  position: absolute;
  top: 52px;
  right: -20%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-service-figure.--arrow::after {
    width: 17.8294573643%;
    height: calc(100% - 15px);
    top: 15px;
    right: -21.7054263566%;
    background: url(../img/features_service_arrow_sp.png) center/contain no-repeat;
  }
}
.content.servicenow .servicenow .features-alignment {
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 60px 55px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-alignment {
    padding: 15px 15px 12px;
  }
}
.content.servicenow .servicenow .features-alignment-notes {
  padding-top: 22px;
  text-align: left;
  max-width: 785px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-alignment-notes {
    padding-top: 12px;
  }
}
.content.servicenow .servicenow .features-alignment-notes li {
  font-size: 1.2rem;
  line-height: 1.8333333333em;
  text-indent: -2.5em;
  margin-left: 2.5em;
  font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .features-alignment-notes li {
    font-size: 0.8rem;
    line-height: 1.625em;
  }
}
.content.servicenow .servicenow .contact {
  padding: 87px 0;
  background: url(../img/contact_bg_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact {
    padding: 50px 0;
    background: url(../img/contact_bg_sp.jpg) center/cover no-repeat;
  }
}
.content.servicenow .servicenow .contact-heading {
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-heading {
    font-size: 2rem;
    line-height: 1em;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
}
.content.servicenow .servicenow .contact-lists {
  width: 100%;
  max-width: 1170px;
  padding: 0 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 2.7826086957%;
}
@media screen and (max-width: 900px) {
  .content.servicenow .servicenow .contact-lists {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-lists {
    flex-direction: column;
    width: 81.25%;
    padding: 0;
    gap: 20px;
  }
}
.content.servicenow .servicenow .contact-item {
  width: 31.4782608696%;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 45px 20px 63px;
}
@media screen and (max-width: 900px) {
  .content.servicenow .servicenow .contact-item {
    width: 40.2222222222%;
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-item {
    width: 100%;
    padding: 20px 35px 25px;
  }
}
.content.servicenow .servicenow .contact-item h3 {
  font-size: 2.2rem;
  line-height: 1.4545454545em;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-item h3 {
    font-size: 1.6rem;
    line-height: 1em;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }
}
.content.servicenow .servicenow .contact .--icon {
  width: 82px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact .--icon {
    width: 54px;
    height: 50px;
    margin-bottom: 12px;
  }
}
.content.servicenow .servicenow .contact-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbab2f;
  max-width: 282px;
  width: 100%;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 50px;
  border-color: transparent;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-button a {
    max-width: inherit;
    width: 100%;
    height: 31px;
    font-size: 11px;
    padding: 0 20px;
  }
}
@media (hover: hover) {
  .content.servicenow .servicenow .contact-button a {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    backface-visibility: hidden;
  }
  .content.servicenow .servicenow .contact-button a:hover {
    opacity: 0.7;
  }
}
.content.servicenow .servicenow .contact-button a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 8px;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .contact-button a::after {
    right: 11px;
    border-width: 4.5px 0 4.5px 6px;
  }
}
.content.servicenow .servicenow .contact-button a.--white {
  color: #fff;
}
.content.servicenow .servicenow .contact-button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.content.servicenow .servicenow .merit {
  text-align: center;
  margin-bottom: 121px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit {
    margin-bottom: 5px;
  }
}
.content.servicenow .servicenow .merit-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-lists {
    flex-direction: column;
  }
}
.content.servicenow .servicenow .merit-item {
  width: 33.3333333333%;
  padding: 48px 20px 40px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item {
    width: 100%;
    padding: 0 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.content.servicenow .servicenow .merit-item:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
  }
}
.content.servicenow .servicenow .merit-item .--icon {
  width: 180px;
  margin: 0 auto 36px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--icon {
    margin: 0;
    width: 44.6296296296%;
  }
}
.content.servicenow .servicenow .merit-item .--icon img {
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--icon img {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.07);
  }
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--body {
    width: 46.4814814815%;
    text-align: left;
  }
}
.content.servicenow .servicenow .merit-item .--label {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--label {
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .merit-item .--label span {
  display: inline-block;
  background: #326761;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.content.servicenow .servicenow .merit-item .--label span else {
  font-weight: 500;
}
.content.servicenow .servicenow .merit-item .--label span {
  font-size: 1.8rem;
  line-height: 1.3888888889em;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--label span {
    font-size: 1.5rem;
    line-height: 1.4em;
    padding: 0 3px 0 5px;
  }
}
.content.servicenow .servicenow .merit-item .--text {
  font-size: 1.6rem;
  line-height: 1.8125em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .merit-item .--text {
    font-size: 1.3rem;
    line-height: 1.6923076923em;
  }
}
.content.servicenow .servicenow .usecase-lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-lists {
    gap: 20px;
  }
}
.content.servicenow .servicenow .usecase-item {
  padding: 60px 5.7142857143%;
  background: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-item {
    padding: 20px 5.1724137931% 15px;
  }
}
.content.servicenow .servicenow .usecase-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 31px;
  margin-bottom: 40px;
  border-bottom: 3px solid #e6e6e6;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading {
    border-width: 2px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.content.servicenow .servicenow .usecase-heading::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #326761;
  position: absolute;
  left: 0;
  bottom: -3px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading::after {
    width: 30px;
    height: 2px;
    bottom: -2px;
  }
}
.content.servicenow .servicenow .usecase-heading .--person {
  width: 97px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading .--person {
    width: 75px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.content.servicenow .servicenow .usecase-heading-summary {
  width: calc(100% - 97px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading-summary {
    width: 100%;
    padding-left: 0;
  }
}
.content.servicenow .servicenow .usecase-heading-summary dl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading-summary dl {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 95px;
    min-height: 75px;
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .usecase-heading-summary dt {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.content.servicenow .servicenow .usecase-heading-summary dt else {
  font-weight: 500;
}
.content.servicenow .servicenow .usecase-heading-summary dt {
  font-size: 1.6rem;
  line-height: 1.6875em;
  letter-spacing: 0.02em;
  padding: 1px 7px 0;
  color: #fff;
  background: #326761;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading-summary dt {
    font-size: 1.3rem;
    line-height: 1.4615384615em;
    letter-spacing: 0.05em;
    padding: 0 4px;
  }
}
.content.servicenow .servicenow .usecase-heading-summary dd {
  font-size: 1.6rem;
  line-height: 1.75em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading-summary dd {
    font-size: 1.3rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .usecase-heading-summary .--title {
  color: #326761;
  font-size: 2.8rem;
  line-height: 1.5em;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-heading-summary .--title {
    font-size: 1.8rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .usecase-problem {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  padding: 46px 0 51px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem {
    flex-direction: column;
    padding: 23px 0 25px;
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .usecase-problem .--label {
  width: 27.6344086022%;
  margin-left: 7px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem .--label {
    width: 100%;
    margin-left: 0;
    font-size: 1.4rem;
    line-height: 1em;
    margin-bottom: 15px;
  }
}
.content.servicenow .servicenow .usecase-problem .--lists {
  width: 72.3655913978%;
  padding-right: 3.2258064516%;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem .--lists {
    width: 100%;
    padding: 0 21px;
  }
}
.content.servicenow .servicenow .usecase-problem .--lists li {
  position: relative;
  padding-left: 21px;
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem .--lists li {
    font-size: 1.2rem;
    line-height: 1.75em;
    padding-left: 19px;
  }
}
.content.servicenow .servicenow .usecase-problem .--lists li:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem .--lists li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.content.servicenow .servicenow .usecase-problem .--lists li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 12px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-problem .--lists li::before {
    top: 8px;
  }
}
.content.servicenow .servicenow .usecase-solve {
  background: #eaf0ef;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve {
    flex-direction: column;
    padding: 18px 0 25px;
  }
}
.content.servicenow .servicenow .usecase-solve .--label {
  width: 27.6344086022%;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6111111111em;
  font-weight: 700;
  color: #326761;
  padding-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--label {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
  }
}
.content.servicenow .servicenow .usecase-solve .--lists {
  width: 72.3655913978%;
  padding-right: 3.2258064516%;
  padding-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--lists {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
}
.content.servicenow .servicenow .usecase-solve .--lists li {
  position: relative;
  padding-left: 40px;
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--lists li {
    font-size: 1.2rem;
    line-height: 1.75em;
    padding-left: 25px;
  }
}
.content.servicenow .servicenow .usecase-solve .--lists li:not(:last-child) {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--lists li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.content.servicenow .servicenow .usecase-solve .--lists li::before {
  content: "";
  width: 26px;
  height: 24px;
  display: inline-block;
  background-image: url(../img/icon_check.png);
  background-image: image-set(url(../img/icon_check.png) 1x, url(../img/icon_check@2x.png) 2x);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--lists li::before {
    width: 18px;
    height: 16px;
  }
}
.content.servicenow .servicenow .usecase-solve .--figure {
  width: calc(100% - 76px);
  margin: auto;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-solve .--figure {
    width: calc(100% - 30px);
    padding: 26px 0 0;
  }
}
.content.servicenow .servicenow .usecase-note {
  padding-top: 7px;
  font-size: 1.2rem;
  line-height: 2.3333333333em;
  margin-bottom: -35px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .usecase-note {
    font-size: 1rem;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    margin-bottom: 0;
  }
}
.content.servicenow .servicenow .price {
  text-align: center;
  margin-bottom: 121px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price {
    margin-bottom: 50px;
  }
}
.content.servicenow .servicenow .price-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-lists {
    margin-bottom: 25px;
    gap: 20px;
  }
}
.content.servicenow .servicenow .price-item {
  width: calc(50% - 11px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  padding: 43px 20px 20px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item {
    width: 100%;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    padding: 20px 15px 15px;
  }
}
.content.servicenow .servicenow .price-item .--lead {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--lead {
    margin-bottom: 16px;
  }
}
.content.servicenow .servicenow .price-item .--lead span {
  font-size: 1.6rem;
  line-height: 2.0625em;
  font-weight: 700;
  border-bottom: 2px solid #326761;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--lead span {
    font-size: 1.3rem;
    line-height: 1.7692307692em;
    letter-spacing: 0.05em;
    border-width: 1px;
  }
}
.content.servicenow .servicenow .price-item .--lead small {
  font-size: 1.2rem;
  line-height: 2.75em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--lead small {
    font-size: 1rem;
    line-height: 2.3em;
  }
}
.content.servicenow .servicenow .price-item .--logo {
  position: relative;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--logo {
    flex-direction: row;
    height: auto;
    margin-bottom: 18px;
    gap: 14px;
    justify-content: center;
  }
}
.content.servicenow .servicenow .price-item .--logo img {
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--logo img {
    width: auto;
    height: 100%;
  }
}
.content.servicenow .servicenow .price-item .--svf {
  max-width: 228px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--svf {
    max-width: fit-content;
    height: 31px;
  }
}
.content.servicenow .servicenow .price-item .--archiver {
  max-width: 221px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--archiver {
    max-width: fit-content;
    height: 16px;
  }
}
.content.servicenow .servicenow .price-item .--transact {
  max-width: 230px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--transact {
    max-width: fit-content;
    height: 16px;
  }
}
.content.servicenow .servicenow .price-item .--price {
  background: #f7f7f7;
  padding: 20px 10px;
  min-height: 150px;
  flex: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price {
    padding: 15px 10px;
  }
}
.content.servicenow .servicenow .price-item .--price .--price-value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--price-value {
    gap: 4px;
  }
}
.content.servicenow .servicenow .price-item .--price .--price-value span {
  font-size: 2.4rem;
  line-height: 1.1666666667em;
  font-weight: 700;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--price-value span {
    font-size: 1.6rem;
    line-height: 1em;
  }
}
.content.servicenow .servicenow .price-item .--price .--price-value b {
  color: #326761;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.content.servicenow .servicenow .price-item .--price .--price-value b else {
  font-weight: 500;
}
.content.servicenow .servicenow .price-item .--price .--price-value b {
  font-size: 5rem;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--price-value b {
    font-size: 3rem;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
}
.content.servicenow .servicenow .price-item .--price .--price-value small {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4em;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--price-value small {
    font-size: 1.2rem;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
}
.content.servicenow .servicenow .price-item .--price .--ttl {
  color: #326761;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.content.servicenow .servicenow .price-item .--price .--ttl else {
  font-weight: 500;
}
.content.servicenow .servicenow .price-item .--price .--ttl {
  font-size: 1.7rem;
  line-height: 1.4117647059em;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--ttl {
    font-size: 1.7rem;
    line-height: 1.4117647059em;
    letter-spacing: 0.02em;
  }
}
.content.servicenow .servicenow .price-item .--price .--note {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: right;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-item .--price .--note {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6363636364em;
    letter-spacing: 0em;
  }
}
.content.servicenow .servicenow .price-link {
  display: inline-block;
}
.content.servicenow .servicenow .price-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #326761;
  color: #326761;
  gap: 7px;
}
@media (hover: hover) {
  .content.servicenow .servicenow .price-link a {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    backface-visibility: hidden;
  }
  .content.servicenow .servicenow .price-link a:hover {
    opacity: 0.7;
  }
}
.content.servicenow .servicenow .price-link a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #326761;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-link a::after {
    border-width: 3px 0 3px 4px;
  }
}
.content.servicenow .servicenow .price-link a span {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143em;
}
@media screen and (max-width: 768px) {
  .content.servicenow .servicenow .price-link a span {
    font-size: 1.2rem;
    line-height: 2em;
  }
}