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

.salesforce .section-inner {
  max-width: 1170px;
}
.salesforce {
  /*-------------------------------------------> Viewport size */
  /*-------------------------------------------> Design comp size */
  /*-------------------------------------------> Media queries */
  /*-------------------------------------------> SP : contents width */
  /*-------------------------------------------> PC : contents width */
  /*-------------------------------------------> web font */
  /*-------------------------------------------> animation */
  /* easeInOutExpo */
  /*-------------------------------------------> font size (rem) */
  /*-------------------------------------------> font size (vw -> rem) */
  /*-------------------------------------------> fletter space */
  /*-------------------------------------------> percentage (%) */
  /*-------------------------------------------> vw ( width / height / padding / margin / position / and more ) */
  /*-------------------------------------------> color */
  /* Base color
  -------------------------------------*/
  /* Material color
  -------------------------------------*/
  /*-------------------------------------------> easing */
  /*-------------------------------------------> image */
}
.salesforce img {
  max-width: 100%;
  height: auto;
  line-height: 1;
}
.salesforce {
  /*-------------------------------------------> br */
}
.salesforce br.sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .salesforce br.sp {
    display: none;
  }
}
.salesforce br.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .salesforce br.pc {
    display: block;
  }
}
.salesforce {
  /*-------------------------------------------> Viewport size */
  /*-------------------------------------------> Design comp size */
  /*-------------------------------------------> Media queries */
  /*-------------------------------------------> SP : contents width */
  /*-------------------------------------------> PC : contents width */
  /*-------------------------------------------> web font */
  /*-------------------------------------------> animation */
  /* easeInOutExpo */
  /*-------------------------------------------> font size (rem) */
  /*-------------------------------------------> font size (vw -> rem) */
  /*-------------------------------------------> fletter space */
  /*-------------------------------------------> percentage (%) */
  /*-------------------------------------------> vw ( width / height / padding / margin / position / and more ) */
  /*-------------------------------------------> color */
  /* Base color
  -------------------------------------*/
  /* Material color
  -------------------------------------*/
  /*-------------------------------------------> easing */
  /*-------------------------------------------> PAGE WRAPPER */
}
.salesforce .main {
  padding-top: 78px;
}
@media screen and (max-width: 768px) {
  .salesforce .main {
    padding-top: 51px;
  }
}
.salesforce .main .section-inner {
  width: 100%;
  padding: 0 10px;
  margin: auto;
  max-width: 1170px;
}
@media screen and (max-width: 768px) {
  .salesforce .main .section-inner {
    width: 90.625%;
    margin: auto;
    padding: 0;
  }
}
.salesforce {
  /*-------------------------------------------> PAGE HEADER */
}
.salesforce .header {
  background: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .salesforce .header::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eff0f0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.salesforce .header-inner {
  width: 100%;
  padding: 0 30px 0 34px;
  margin: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .salesforce .header-inner {
    padding: 0 15px 0 17px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .header-inner {
    height: 51px;
    padding: 0 6px 0 30px;
  }
}
.salesforce .header-logo {
  width: 175px;
}
@media screen and (max-width: 1024px) {
  .salesforce .header-logo {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .header-logo {
    width: 100px;
  }
}
.salesforce .nav-switch {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .salesforce .nav-switch {
    display: block;
  }
}
.salesforce .nav-switch:focus {
  border: 0;
  outline: none;
}
.salesforce .nav-switch.--show span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.salesforce .nav-switch.--show span:nth-child(2) {
  opacity: 0;
}
.salesforce .nav-switch.--show span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}
.salesforce .nav-switch.--show + .nav {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: all;
}
.salesforce .nav-switch span {
  width: 20px;
  height: 2px;
  background: #666;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  transform-origin: center;
}
.salesforce .nav-switch span:nth-child(1) {
  top: 12.5px;
  transform: rotate(0);
  transition: transform 0.2s ease-in-out;
}
.salesforce .nav-switch span:nth-child(2) {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
  top: 0;
  bottom: 0;
}
.salesforce .nav-switch span:nth-child(3) {
  top: 25.5px;
  transform: rotate(0);
  transition: transform 0.2s ease-in-out;
}
.salesforce .nav {
  width: calc(100% - 270px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .salesforce .nav {
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav {
    width: 100%;
    background: #fff;
    padding: 15px 20px 36px;
    flex-direction: column;
    gap: 36px;
    position: absolute;
    top: 51px;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity, 0.3s ease, transform 0.3s ease;
  }
}
.salesforce .nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .salesforce .nav-list {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav-list {
    width: 100%;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav-list li {
    width: 100%;
    border-bottom: 1px solid #eff0f0;
  }
}
.salesforce .nav-list li a {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  letter-spacing: 0em;
}
@media screen and (max-width: 1024px) {
  .salesforce .nav-list li a {
    font-size: 1.3rem;
    line-height: 1.5384615385em;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav-list li a {
    position: relative;
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.5384615385em;
    letter-spacing: 0em;
    padding: 20px 0;
  }
  .salesforce .nav-list li a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2px;
    margin: auto;
  }
}
@media (hover: hover) {
  .salesforce .nav-list li a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .nav-list li a:hover {
    opacity: 0.7;
  }
}
.salesforce .nav-button {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .salesforce .nav-button {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav-button {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }
}
.salesforce .nav-button a {
  color: #fff;
  width: 132px;
  display: block;
  font-size: 1.3rem;
  line-height: 1.5384615385em;
  letter-spacing: 0em;
  padding: 11px 0;
  text-align: center;
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  .salesforce .nav-button a {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .nav-button a {
    width: 100%;
    padding: 10px 0;
    font-weight: 500;
  }
}
@media (hover: hover) {
  .salesforce .nav-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .nav-button a:hover {
    opacity: 0.7;
  }
}
.salesforce .nav-button__download {
  background: #40b3d9;
}
.salesforce .nav-button__contact {
  background: #f5b431;
}
.salesforce .footer p {
  text-align: center;
  padding: 15px 0;
}
.salesforce .footer p small {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6666666667em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .salesforce .footer p small {
    font-size: 1.05rem;
    line-height: 1.9047619048em;
    letter-spacing: 0.03em;
  }
}
.salesforce {
  /*-------------------------------------------> Viewport size */
  /*-------------------------------------------> Design comp size */
  /*-------------------------------------------> Media queries */
  /*-------------------------------------------> SP : contents width */
  /*-------------------------------------------> PC : contents width */
  /*-------------------------------------------> web font */
  /*-------------------------------------------> animation */
  /* easeInOutExpo */
  /*-------------------------------------------> font size (rem) */
  /*-------------------------------------------> font size (vw -> rem) */
  /*-------------------------------------------> fletter space */
  /*-------------------------------------------> percentage (%) */
  /*-------------------------------------------> vw ( width / height / padding / margin / position / and more ) */
  /*-------------------------------------------> color */
  /* Base color
  -------------------------------------*/
  /* Material color
  -------------------------------------*/
  /*-------------------------------------------> easing */
}
.salesforce .--marker {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(64, 179, 217) 0%, rgb(64, 179, 217) 95%, rgba(255, 255, 255, 0) 95%);
  color: #fff;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .salesforce .--marker {
    padding: 0 5px;
  }
}
.salesforce .--underline {
  text-decoration-color: rgba(241, 150, 0, 0.3);
  text-decoration-line: underline;
  text-decoration-thickness: 12px;
  text-underline-offset: -2px;
}
@media screen and (max-width: 768px) {
  .salesforce .--underline {
    text-decoration-thickness: 6px;
    text-underline-offset: -2px;
  }
}
.salesforce .section-heading {
  margin-bottom: 74px;
}
@media screen and (max-width: 768px) {
  .salesforce .section-heading {
    margin-bottom: 27px;
  }
}
.salesforce .section-heading__en {
  text-align: center;
  color: #40b3d9;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .salesforce .section-heading__en {
    font-size: 1rem;
    line-height: 1em;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }
}
.salesforce .section-heading__ja {
  font-feature-settings: "palt";
  text-align: center;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.6388888889em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .salesforce .section-heading__ja {
    font-size: 2rem;
    line-height: 1.5em;
  }
}
.salesforce .section-heading__ja b {
  color: #40b3d9;
}
.salesforce .section-heading b,
.salesforce .section-heading span {
  font-weight: 700;
}
.salesforce .hero {
  position: relative;
  z-index: 0;
}
.salesforce .hero .section-inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 961px) {
  .salesforce .hero .section-inner {
    flex-direction: column;
    align-items: center;
  }
}
.salesforce .hero__body {
  position: relative;
  z-index: 2;
  width: 460px;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero__body {
    width: 100%;
    padding-top: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.salesforce .hero__image {
  position: relative;
  width: 590px;
  padding-top: 122px;
}
@media screen and (max-width: 1069px) {
  .salesforce .hero__image {
    width: 50.4347826087%;
  }
}
@media screen and (max-width: 961px) {
  .salesforce .hero__image {
    width: 590px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .hero__image {
    width: 100%;
    padding-top: 56.5px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.salesforce .hero__image:before {
  content: "";
  width: 679px;
  height: 375px;
  position: absolute;
  top: 0px;
  right: -49px;
  background: url(../img/hero_bg.svg) center bottom/100% auto no-repeat;
}
@media screen and (max-width: 961px) {
  .salesforce .hero__image:before {
    height: 438px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .hero__image:before {
    width: 100%;
    height: 100%;
    background-position: center top;
    right: 0;
  }
}
.salesforce .hero__note {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1em;
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero__note {
    font-size: 1rem;
    line-height: 1.2em;
    margin-top: 47.5px;
    padding-left: 15px;
  }
}
.salesforce .hero .--logos {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--logos {
    justify-content: flex-start;
  }
}
.salesforce .hero .--logos img {
  width: 85px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--logos img {
    width: 57px;
  }
}
.salesforce .hero .--title {
  font-feature-settings: "palt";
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title {
    margin-top: 8px;
  }
}
.salesforce .hero .--title b {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 5%, rgb(64, 179, 217) 5%, rgb(64, 179, 217) 85%, rgba(255, 255, 255, 0) 85%);
  color: #fff;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title b {
    padding: 0 5px;
  }
}
.salesforce .hero .--title span,
.salesforce .hero .--title b,
.salesforce .hero .--title small {
  font-weight: 700;
}
.salesforce .hero .--title01 {
  font-size: 3.5rem;
  line-height: 1.8857142857em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title01 {
    font-size: 2.05rem;
    line-height: 1.9024390244em;
    letter-spacing: 0.02em;
  }
}
.salesforce .hero .--title01 small {
  font-size: 2.45rem;
  line-height: 1em;
  letter-spacing: 0.02em;
  padding-left: 3px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title01 small {
    font-size: 1.435rem;
    line-height: 1em;
    letter-spacing: 0.02em;
  }
}
.salesforce .hero .--title02 {
  font-size: 6rem;
  line-height: 1.4666666667em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title02 {
    font-size: 3.5rem;
    line-height: 1.4714285714em;
    letter-spacing: 0.02em;
  }
}
.salesforce .hero .--title02 b {
  font-size: 6rem;
  line-height: 1.4666666667em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title02 b {
    font-size: 3.5rem;
    line-height: 1.4714285714em;
    letter-spacing: 0.02em;
  }
}
.salesforce .hero .--title02 small {
  font-size: 4.2rem;
  line-height: 1em;
  letter-spacing: 0.02em;
  padding-left: 3px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--title02 small {
    font-size: 2.45rem;
    line-height: 1em;
    letter-spacing: 0.02em;
  }
}
.salesforce .hero .--image {
  position: relative;
}
.salesforce .hero .--result {
  position: absolute;
  right: 20px;
  bottom: -45px;
  width: 166px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .--result {
    width: 110px;
    height: 110px;
    bottom: -32px;
    right: 0;
  }
}
.salesforce .hero .mdl-button {
  margin-top: 50px;
  width: 245px;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .mdl-button {
    width: 100%;
    margin-bottom: 12px;
    margin-top: 29px;
  }
}
.salesforce .hero .mdl-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5b431;
  color: #fff;
  max-width: 245px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 45px;
  border-radius: 29.5px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .hero .mdl-button a {
    max-width: 100%;
    width: 100%;
    height: 44px;
    font-size: 13px;
    line-height: 16px;
    padding: 0 36px;
    border-radius: 22px;
  }
}
@media (hover: hover) {
  .salesforce .hero .mdl-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .hero .mdl-button a:hover {
    opacity: 0.7;
  }
}
.salesforce .hero .mdl-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%);
}
.salesforce .hero .mdl-button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.salesforce .hero .mdl-button a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.salesforce .hero .mdl-button a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.salesforce .cta {
  background: url(../img/cta_bg_pc.jpg) center/cover no-repeat;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .salesforce .cta {
    background: url(../img/cta_bg_sp.jpg) center/cover no-repeat;
    padding: 40px 0;
  }
}
.salesforce .cta .section-inner {
  display: flex;
  justify-content: center;
  gap: 0 5.2173913043%;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .section-inner {
    flex-direction: column;
    gap: 20px;
  }
}
.salesforce .cta__content {
  text-align: center;
  width: 43.0434782609%;
  background-color: #fff;
  padding: 37px 10px 50px;
}
@media screen and (max-width: 768px) {
  .salesforce .cta__content {
    width: 100%;
    padding: 20px 0 26px;
  }
}
.salesforce .cta__content::before {
  content: "";
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .salesforce .cta__content::before {
    margin-bottom: 17px;
  }
}
.salesforce .cta__content p {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .salesforce .cta__content p {
    font-size: 1.6rem;
    line-height: 1.40625em;
    letter-spacing: 0em;
    margin-bottom: 17px;
    min-height: initial;
  }
}
.salesforce .cta .--contact::before {
  width: 54px;
  height: 56px;
  background: url(../img/icon_contact.svg) center bottom/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--contact::before {
    width: 46px;
    height: 40px;
  }
}
.salesforce .cta .--contact .mdl-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5b431;
  color: #fff;
  max-width: 295px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 45px;
  border-radius: 29.5px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--contact .mdl-button a {
    max-width: 100%;
    width: 100%;
    height: 44px;
    font-size: 13px;
    line-height: 16px;
    padding: 0 36px;
    border-radius: 22px;
  }
}
@media (hover: hover) {
  .salesforce .cta .--contact .mdl-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .cta .--contact .mdl-button a:hover {
    opacity: 0.7;
  }
}
.salesforce .cta .--contact .mdl-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%);
}
.salesforce .cta .--contact .mdl-button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.salesforce .cta .--contact .mdl-button a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.salesforce .cta .--contact .mdl-button a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.salesforce .cta .--contact .mdl-button a {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--contact .mdl-button a {
    height: 31px;
  }
  .salesforce .cta .--contact .mdl-button a::after {
    right: 11px;
    border-width: 3.5px 0 3.5px 4px;
  }
}
.salesforce .cta .--request::before {
  width: 41px;
  height: 56px;
  background: url(../img/icon_request.svg) center bottom/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--request::before {
    width: 32px;
    height: 40px;
  }
}
.salesforce .cta .--request .mdl-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #303030;
  color: #fff;
  max-width: 295px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 45px;
  border-radius: 29.5px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--request .mdl-button a {
    max-width: 100%;
    width: 100%;
    height: 44px;
    font-size: 13px;
    line-height: 16px;
    padding: 0 36px;
    border-radius: 22px;
  }
}
@media (hover: hover) {
  .salesforce .cta .--request .mdl-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .cta .--request .mdl-button a:hover {
    opacity: 0.7;
  }
}
.salesforce .cta .--request .mdl-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%);
}
.salesforce .cta .--request .mdl-button a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.salesforce .cta .--request .mdl-button a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.salesforce .cta .--request .mdl-button a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.salesforce .cta .--request .mdl-button a {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .salesforce .cta .--request .mdl-button a {
    height: 31px;
  }
  .salesforce .cta .--request .mdl-button a::after {
    right: 11px;
    border-width: 3.5px 0 3.5px 4px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .cta .mdl-button {
    width: 230px;
    margin: auto;
  }
  .salesforce .cta .mdl-button a {
    font-size: 11px !important;
  }
}
.salesforce .about {
  position: relative;
  padding: 85px 0 56px;
}
@media screen and (max-width: 768px) {
  .salesforce .about {
    padding: 38px 0 27px;
  }
}
.salesforce .about::before {
  content: "";
  width: 224px;
  height: 490px;
  position: absolute;
  right: 0;
  top: -60px;
  background-position: center right;
  background-size: contain;
  background-image: image-set(url(../img/about_object01.jpg) 1x, url(../img/about_object01@2x.jpg) 2x);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .salesforce .about::before {
    width: 91px;
    height: 245px;
    top: -80px;
  }
}
.salesforce .about::after {
  content: "";
  width: 226px;
  height: 532px;
  position: absolute;
  left: 0;
  bottom: -176px;
  background-position: center left;
  background-size: contain;
  background-image: image-set(url(../img/about_object02.jpg) 1x, url(../img/about_object02@2x.jpg) 2x);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .salesforce .about::after {
    width: 86px;
    height: 266px;
    bottom: 0;
  }
}
.salesforce .about .section-inner {
  position: relative;
  z-index: 1;
}
.salesforce .about-title {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.84375em;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .salesforce .about-title {
    font-size: 1.8rem;
    line-height: 1.6666666667em;
    letter-spacing: 0.03em;
    margin-bottom: 26px;
  }
}
.salesforce .about-title b {
  font-weight: 700;
  padding: 0 0 0 8px;
}
@media screen and (max-width: 768px) {
  .salesforce .about-title b {
    padding: 0 5px;
  }
}
.salesforce .about-title b + br + b {
  padding: 0 8px 0 0;
  margin-right: 7px;
}
@media screen and (max-width: 768px) {
  .salesforce .about-title b + br + b {
    padding: 0 5px;
    margin-right: 4px;
  }
}
.salesforce .about figure {
  box-shadow: inset 0 0 0 2px #40b3d9;
  padding: 40px 50px;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .salesforce .about figure {
    padding: 13px;
    margin-bottom: 42px;
  }
}
.salesforce .about .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.salesforce .about .service-list .service-item {
  background-image: url(../img/service-list-bg.png);
  background-size: 105% 105%;
  background-position: center center;
  background-repeat: no-repeat;
  border: solid 1px #596072;
  padding: 45px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item {
    padding: 25px 44px;
  }
}
.salesforce .about .service-list .service-item .--headline {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item .--headline {
    font-size: 1.3rem;
    line-height: 1.6923076923em;
  }
}
.salesforce .about .service-list .service-item .--headline span {
  font-weight: 500;
  color: #7c9cd1;
}
.salesforce .about .service-list .service-item .--logo {
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item .--logo {
    margin-inline: auto;
    height: auto;
    padding-block: 18px 20px;
  }
}
.salesforce .about .service-list .service-item .--btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: "transparent";
  color: #fff;
  max-width: 294px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 45px;
  border-radius: 29.5px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item .--btn a {
    max-width: 100%;
    width: 100%;
    height: 44px;
    font-size: 13px;
    line-height: 16px;
    padding: 0 36px;
    border-radius: 22px;
  }
}
@media (hover: hover) {
  .salesforce .about .service-list .service-item .--btn a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .about .service-list .service-item .--btn a:hover {
    opacity: 0.7;
  }
}
.salesforce .about .service-list .service-item .--btn 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%);
}
.salesforce .about .service-list .service-item .--btn a.--white::after {
  border-color: transparent transparent transparent #ffffff;
}
.salesforce .about .service-list .service-item .--btn a.--skyblue::after {
  border-color: transparent transparent transparent #6bcbd8;
}
.salesforce .about .service-list .service-item .--btn a.--blue::after {
  border-color: transparent transparent transparent #1161a8;
}
.salesforce .about .service-list .service-item .--btn a {
  width: 100%;
  border: solid 1px #fff;
  height: 54px;
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item .--btn a {
    max-width: 200px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item.--svfc .--logo {
    width: 125px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item.--archiver .--logo {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .about .service-list .service-item.--transact .--logo {
    width: 154px;
  }
}
.salesforce .about-text {
  text-align: center;
  padding-top: 90px;
  font-feature-settings: "palt";
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.875em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .about-text {
    padding-top: 50px;
    font-size: 1.8rem;
    line-height: 1.6666666667em;
  }
}
.salesforce .about-text b,
.salesforce .about-text span {
  font-weight: 700;
}
.salesforce .check {
  position: relative;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .salesforce .check {
    padding-bottom: 55px;
  }
}
.salesforce .check-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-title {
    margin-bottom: 28px;
  }
}
.salesforce .check-title__en {
  text-align: center;
  color: #40b3d9;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-title__en {
    font-size: 1rem;
    line-height: 1em;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
  }
}
.salesforce .check-title__ja {
  font-feature-settings: "palt";
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .check-title__ja {
    font-size: 1.6rem;
    line-height: 1.5625em;
  }
}
.salesforce .check-title__ja span {
  display: inline-block;
}
.salesforce .check-title span {
  font-weight: 700;
}
.salesforce .check-step {
  background: #eff8fc;
  padding: 72px 50px 65px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step {
    padding: 40px 15px 17px;
  }
}
.salesforce .check-step__lists {
  display: flex;
  gap: 0 0.824742268%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
}
.salesforce .check-step__lists li {
  position: relative;
  text-align: center;
  width: 24.3298969072%;
  background: #fff;
  padding: 43px 26px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists li {
    width: 100%;
    padding: 32px 15px 30px;
  }
}
.salesforce .check-step__lists li:not(:last-child)::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  background: url(../img/step_icon_arrow.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists li:not(:last-child)::after {
    width: 30px;
    height: 30px;
    right: 0;
    left: 0;
    top: auto;
    bottom: -19px;
    transform: rotate(90deg);
  }
}
.salesforce .check-step__lists .--number {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #40b3d9;
  font-size: 2.34rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  padding-bottom: 23px;
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists .--number {
    font-size: 1.9rem;
    line-height: 1em;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
.salesforce .check-step__lists .--number small {
  font-weight: 500;
  padding-right: 5px;
  font-size: 1.8rem;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists .--number small {
    padding-right: 4px;
    font-size: 1.5rem;
    line-height: 1em;
  }
}
.salesforce .check-step__lists .--number::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #e5e5e5;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists .--number::before {
    width: 30px;
  }
}
.salesforce .check-step__lists .--text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__lists .--text {
    font-size: 1.6rem;
    line-height: 1.5em;
    letter-spacing: -0.01em;
  }
}
.salesforce .check-step__text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 768px) {
  .salesforce .check-step__text {
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.6923076923em;
  }
}
.salesforce .reason {
  background: #f7f7f7;
  padding: 94px 0 110px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason {
    padding: 47px 0 55px;
  }
}
.salesforce .reason-point {
  background: #fff;
  padding: 80px 7.8260869565% 0;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point {
    padding: 40px 15px 0;
  }
}
.salesforce .reason-point__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__content {
    flex-direction: column;
  }
}
.salesforce .reason-point__content:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__content:nth-child(even) {
    flex-direction: column;
  }
}
.salesforce .reason-point__content:not(:last-child) {
  padding-bottom: 80px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__content:not(:last-child) {
    padding-bottom: 33px;
    margin-bottom: 32px;
  }
}
.salesforce .reason-point__body {
  width: 41.7525773196%;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body {
    width: 100%;
  }
}
.salesforce .reason-point__body .--number span {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  background: #40b3d9;
  font-size: 1.6rem;
  line-height: 1em;
  padding: 6px 8px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .--number span {
    font-size: 1rem;
    line-height: 1em;
    padding: 4px 5px 3px;
  }
}
.salesforce .reason-point__body .--title {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5384615385em;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .--title {
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}
.salesforce .reason-point__body .--text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .--text {
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6923076923em;
  }
}
.salesforce .reason-point__body .mdl-button {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .mdl-button {
    margin-top: 23px;
  }
}
.salesforce .reason-point__body .mdl-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d9d9d9;
  color: #000;
  max-width: 200px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 40px;
  border-radius: 29.5px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .mdl-button a {
    min-width: auto;
    max-width: 141px;
    width: 100%;
    height: 31px;
    font-size: 11px;
    padding: 0 18px;
    border-radius: 22px;
    margin: auto;
  }
}
@media (hover: hover) {
  .salesforce .reason-point__body .mdl-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .reason-point__body .mdl-button a:hover {
    opacity: 0.6;
  }
}
.salesforce .reason-point__body .mdl-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: 15px;
  transform: translateY(-50%);
  border-color: transparent transparent transparent #000;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__body .mdl-button a::after {
    right: 10px;
    border-width: 3.5px 0 3.5px 4px;
  }
}
.salesforce .reason-point__image {
  width: 50.5154639175%;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-point__image {
    width: 100%;
    margin-top: 27px;
  }
}
.salesforce .reason-price {
  width: 100%;
  background: #fff;
  padding: 100px 7.8260869565%;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price {
    padding: 40px 15px;
  }
}
.salesforce .reason-price__content {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content {
    flex-direction: column;
  }
}
.salesforce .reason-price__content:not(:last-child) {
  margin-bottom: 24px;
}
.salesforce .reason-price__content dt {
  width: 35.4639175258%;
  text-align: center;
  background: #eff8fc;
  padding: 61px 5.1546391753%;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dt {
    width: 100%;
    padding: 14px 0;
  }
}
.salesforce .reason-price__content dd {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd {
    border-top: 0;
    border-left: 1px solid #e5e5e5;
    padding: 25px 0 24px;
  }
}
.salesforce .reason-price__content dd .--text01 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.55em;
  color: #40b3d9;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd .--text01 {
    font-size: 1.3rem;
    line-height: 1em;
  }
}
.salesforce .reason-price__content dd .--text01 small {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.2142857143em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd .--text01 small {
    font-size: 1rem;
    line-height: 1em;
  }
}
.salesforce .reason-price__content dd .--text02 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 12px;
}
.salesforce .reason-price__content dd .--text02 span:nth-child(1) {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1em;
  padding-bottom: 10px;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd .--text02 span:nth-child(1) {
    font-size: 1.4rem;
    line-height: 1em;
    padding-bottom: 5px;
    padding-right: 5px;
  }
}
.salesforce .reason-price__content dd .--text02 span:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #40b3d9;
  font-size: 5.8rem;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd .--text02 span:nth-child(2) {
    font-size: 3rem;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
}
.salesforce .reason-price__content dd .--text02 span:nth-child(3) {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1em;
  padding-bottom: 10px;
  padding-left: 3px;
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content dd .--text02 span:nth-child(3) {
    font-size: 1.3rem;
    line-height: 1em;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content.--svfc dt img {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .reason-price__content.--archiver dt img {
    width: 220px;
  }
}
.salesforce .case {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .salesforce .case {
    padding: 48px 0 55px;
  }
}
.salesforce .case::before {
  content: "";
  width: 189px;
  height: 490px;
  position: absolute;
  right: 0;
  top: -210px;
  background-position: center right;
  background-size: contain;
  background-image: image-set(url(../img/about_object01.jpg) 1x, url(../img/about_object01@2x.jpg) 2x);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .salesforce .case::before {
    width: 105px;
    height: 245px;
    top: -160px;
  }
}
.salesforce .case::after {
  content: "";
  width: 203px;
  height: 490px;
  position: absolute;
  left: 0;
  bottom: -245px;
  background-position: center left;
  background-size: contain;
  background-image: image-set(url(../img/about_object02.jpg) 1x, url(../img/about_object02@2x.jpg) 2x);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .salesforce .case::after {
    width: 108px;
    height: 266px;
    bottom: -78px;
  }
}
.salesforce .case-list {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list {
    flex-direction: column;
    padding: 0;
  }
}
.salesforce .case-list__item {
  width: calc((100% - 45px) / 4);
  background: #fff;
  box-shadow: 0 0 26px 0 rgba(49, 60, 71, 0.12);
}
@media screen and (max-width: 768px) {
  .salesforce .case-list__item {
    width: 100%;
  }
}
.salesforce .case-list .--body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--body {
    padding: 20px 15px 32px;
  }
}
.salesforce .case-list .--name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5em;
  min-height: 54px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--name {
    font-size: 1.6rem;
    line-height: 1.4375em;
    min-height: inherit;
    text-align: center;
  }
}
.salesforce .case-list .--text {
  font-size: 1.4rem;
  line-height: 1.8571428571em;
  margin-top: 10px;
  margin-bottom: 24px;
  min-height: 130px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--text {
    font-size: 1.2rem;
    line-height: 1.9166666667em;
    min-height: inherit;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.salesforce .case-list .--logo {
  margin-top: auto;
  text-align: center;
}
.salesforce .case-list .--table {
  width: 100%;
  margin-top: 24px;
  font-size: 1.3rem;
  line-height: 1.2307692308em;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--table {
    font-size: 1.1rem;
    line-height: 1.9090909091em;
    margin-top: 28px;
  }
}
.salesforce .case-list .--table tr {
  border-bottom: 1px solid #fff;
}
.salesforce .case-list .--table tr:first-child td p {
  display: flex;
  align-items: center;
  min-height: 48px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--table tr:first-child td p {
    min-height: inherit;
  }
}
.salesforce .case-list .--table th {
  text-align: center;
  font-weight: 500;
  background: #dbdcdc;
  padding: 6px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--table th {
    padding: 5px 12px;
  }
}
.salesforce .case-list .--table td {
  background: #eff0f0;
  padding: 8px 10px;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--table td {
    padding: 5px 15px;
  }
}
.salesforce .case-list .--more {
  margin-top: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--more {
    margin-top: 10px;
  }
}
.salesforce .case-list .--more a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 5px;
  gap: 10px;
  max-width: 133px;
  border-bottom: 2px solid #40b3d9;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--more a {
    max-width: 110px;
    gap: 8px;
  }
}
@media (hover: hover) {
  .salesforce .case-list .--more a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .case-list .--more a:hover {
    opacity: 0.7;
  }
}
.salesforce .case-list .--more a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  border-color: transparent transparent transparent #40b3d9;
}
.salesforce .case-list .--more a span {
  color: #40b3d9;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .salesforce .case-list .--more a span {
    font-size: 1.2rem;
    line-height: 2.5em;
  }
}
.salesforce .solution {
  background: #f7f7f7;
  padding: 100px 0 110px;
}
@media screen and (max-width: 768px) {
  .salesforce .solution {
    padding: 48px 0 55px;
  }
}
.salesforce .solution-list {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list {
    padding: 0;
  }
}
.salesforce .solution-list__content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content {
    flex-direction: column;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  }
}
.salesforce .solution-list__content:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content:nth-child(odd) {
    flex-direction: column;
  }
}
.salesforce .solution-list__content:not(:first-child) .solution-list__body {
  padding: 53px 6.0952380952%;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content:not(:first-child) .solution-list__body {
    padding: 22px 15px 28px;
  }
}
.salesforce .solution-list__content:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content.--solution01 .--logo {
    width: 93.4615384615%;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content.--solution02 .--logo {
    width: 69.0384615385%;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content.--solution03 .--logo {
    width: 93.0769230769%;
  }
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__content.--solution04 .--logo {
    width: 93.0769230769%;
  }
}
.salesforce .solution-list__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__image {
    width: 100%;
  }
}
.salesforce .solution-list__image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.salesforce .solution-list__body {
  width: 50%;
  text-align: center;
  padding: 39px 6.0952380952%;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body {
    width: 100%;
    padding: 22px 15px 28px;
  }
}
.salesforce .solution-list__body .--lead span {
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid #40b3d9;
  font-size: 1.6rem;
  line-height: 1.875em;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .--lead span {
    font-size: 1.3rem;
    line-height: 1.9230769231em;
  }
}
.salesforce .solution-list__body .--logo {
  margin: 23px auto 0;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .--logo {
    margin-top: 17px;
  }
}
.salesforce .solution-list__body .--text {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8125em;
  letter-spacing: 0em;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .--text {
    font-size: 1.3rem;
    line-height: 1.6923076923em;
    letter-spacing: 0em;
    margin-top: 23px;
  }
}
.salesforce .solution-list__body .mdl-button {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .mdl-button {
    margin-top: 23px;
  }
}
.salesforce .solution-list__body .mdl-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d9d9d9;
  color: #000;
  max-width: 200px;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  padding: 0 40px;
  border-radius: 29.5px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .mdl-button a {
    min-width: auto;
    max-width: 141px;
    width: 100%;
    height: 31px;
    font-size: 11px;
    padding: 0 18px;
    border-radius: 22px;
  }
}
@media (hover: hover) {
  .salesforce .solution-list__body .mdl-button a {
    opacity: 1;
    transition: opacity 0.2s;
  }
  .salesforce .solution-list__body .mdl-button a:hover {
    opacity: 0.6;
  }
}
.salesforce .solution-list__body .mdl-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: 15px;
  transform: translateY(-50%);
  border-color: transparent transparent transparent #000;
}
@media screen and (max-width: 768px) {
  .salesforce .solution-list__body .mdl-button a::after {
    right: 10px;
    border-width: 3.5px 0 3.5px 4px;
  }
}