@charset "utf-8";

/* start main */
@media screen and (max-width: 767px) {
  .main {
    margin-top: 105px;
  }
}
/* end main */

/* start bottom menu */
.bottom-menu {
  background-color: #1d4493;
}

.bottom-menu__list {
  display: flex;
  justify-content: center;
  height: 60px;
}

.bottom-menu__item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.bottom-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item.current {
  background-color: rgba(255, 255, 255, 0.2);
}

.bottom-menu__link {
  color: #fff;
  padding: 0 55px;
  display: flex;
  align-items: center;
  transition: all .4s cubic-bezier(.455,.03,.515,.955);
}

.bottom-menu__link:hover {
  background-color: rgba(255, 255, 255, .2);
}

.bottom-menu__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.05em;
}

@media screen and (max-width:1024px) {
  .bottom-menu__text {
    font-size: 12px;
  }

  .bottom-menu__link {
    padding: 0 45px;
  }
}

@media screen and (max-width: 767px) {
  .bottom-menu {
    width: 100%;
    position: fixed;
    top: 55px;
    z-index: 3;
    box-shadow: 12px 0 18px 14px rgba(0, 0, 0, 0.17);
  }

  .bottom-menu__list {
    height: 50px;
  }

  .bottom-menu__item {
    width: 20%;
  }

  .bottom-menu__item:first-of-type:before {
    content: none;
  }

  .bottom-menu__item:last-of-type::after {
    content: none;
  }

  .bottom-menu__link {
    padding: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bottom-menu__text {
    font-size: 1vw;
    padding: 0 10px;
    letter-spacing: 0.06em;
  }
}
/* end bottom menu */

/* start main visual */
.main-visual {
  background-image: url(../images/opsramp/bg-main-visual.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.main-visual__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  overflow: hidden;
  padding-bottom: 50px;
}

.main-visual__media {
  position: relative;
  top: 15px;
  left: 60px;
}

.main-visual__ttl {
  font-weight: bold;
  font-size: 42px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.main-visual__ttl-catch {
  color: #6cedda;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.2em;
}

.main-visual__read {
  text-align: center;
  line-height: 1.88;
  font-size: 18px;
  margin-top: 20px;
  letter-spacing: 0.08em;
}

.main-visual__body {
  white-space: nowrap;
}

.main-visual__btn {
  text-align: center;
}

.main-visual__btn-link {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  padding: 23px 60px 23px 34px;
  color: #fff;
  border-radius: 31px;
  background-color: #26d5bb;
  background-image: -moz-linear-gradient( 306deg, rgba(55,176,239,56) 0%, rgba(37,209,184,.56) 100%);
  background-image: -webkit-linear-gradient( 306deg, rgba(55,176,239,56) 0%, rgba(37,209,184,.56) 100%);
  background-image: -ms-linear-gradient( 306deg, rgba(55,176,239,56) 0%, rgba(37,209,184,.56) 100%);
  background-image: linear-gradient( 306deg, rgba(55,176,239,56) 0%, rgba(37,209,184,.56) 100%);
  margin-top: 30px;
  transition: all .6s cubic-bezier(.455,.03,.515,.955);
}

.main-visual__btn-link:hover {
  opacity: 0.7;
}

.main-visual__btn-link::before {
    position: absolute;
    content: '';
}

.main-visual__btn-link::before {
  top: 50%;
  right: 30px;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff
}

@media screen and (max-width: 1400px) {
  .main-visual__inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width:1024px) {
  .main-visual__inner {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .main-visual {
    background-image: url(../images/opsramp/bg-mobile-main-visual.png);
  }

  .main-visual__media {
    left: 0;
    top: 0;
  }

  .main-visual__inner {
    position: relative;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .main-visual__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .main-visual__ttl img {
    width: 70%;
  }

  .main-visual__ttl-catch {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .main-visual__read {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
  }

  .main-visual__btn-link {
    font-size: 13px;
    margin-top: 15px;
    padding: 16px 28px;
  }

  .main-visual__btn-link::before {
    right: 18px;
    width: 6.5px;
    height: 6.5px;
    margin-top: -3.5px;
  }

  .main-visual__media {
    padding-top: 20px;
  }
}
/* end main visual */

/* start opsramp */
.opsramp {
  background-color: #f5f6fd;
  position: relative;
  z-index: 1;
  padding: 0 10px 140px;
}

.opsramp__inner {
  max-width: 1150px;
  margin: auto;
  position: relative;
  top: -55px;
}

.opsramp__container {
  background-color: #fff;
  border-radius: 30px;
  padding: 70px 70px 100px;
  box-shadow: 0px 0px 5.16px 0.84px rgba(100, 104, 135, 0.16);
}

.opsramp__container:nth-of-type(2),
.opsramp__container:last-of-type {
  margin-top: 48px;
}

.opsramp__box--wrapper {
  border-radius: 30px;
  border: 2px solid #f5f6fd;
  max-width: 950px;
  margin: 56px auto 0;
  padding: 20px 74px 46px;
}

.opsramp__heading {
  text-align: center;
}

.opsramp__heading-text {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  font-family: "Montserrat";
  letter-spacing: 0.06em;
  background-color: #1e4270;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 5px;
  position: relative;
}

.opsramp__heading-text::after {
  content: "";
  border: solid transparent;
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  border-color: rgba(30, 66, 112, 0);
  border-top-width: 13px;
  border-left-width: 4.5px;
  border-right-width: 4.5px;
  margin-left: -4.5px;
  border-top-color: #1E4270;
  top: 98%;
  left: 50%;
}

.opsramp__read-text p {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.opsramp__title {
  text-align: center;
  color: #062d60;
}

.opsramp__title--01 {
  font-size: 32px;
  line-height: 1.77;
  margin: 18px 0 30px;
}

.opsramp__title--02 {
  font-size: 30px;
  line-height: 1.93;
  letter-spacing: 0.06em;
  margin: 66px 0 20px;
}

.opsramp__title--03 {
  font-size: 31px;
  line-height: 1.967;
  letter-spacing: 0.02em;
  margin: 17px 0 0;
}

.opsramp__title--04 {
  font-size: 30px;
  line-height: 1.73;
  letter-spacing: 0.02em;
  margin-top: 64px;
}

.opsramp__title--05 {
  font-size: 32px;
  font-family: "Montserrat";
  line-height: 1.62;
}

.opsramp__title--06 {
  font-size: 31px;
  line-height: 1.67;
  letter-spacing: 0.08em;
  margin-top: 20px;
}

.opsramp__sub-title {
  text-align: center;
}

.opsramp__sub-title span {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  background-color: #062d60;
  color: #fff;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 13px;
}

.opsramp__read {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opsramp__read-thumbnail {
  width: 48%;
}

.opsramp__read-text {
  width: 48%;
}

.opsramp__image-solution {
  max-width: 920px;
  margin: 23px auto 0;
}

.opsramp__image-platform {
  max-width: 826px;
  margin: 26px auto 0;
}

.opsramp-slide {
  margin-top: 32px;
}

.opsramp-slide__list {
  max-width: 720px;
  margin: auto;
}

.opsramp__offer {
  margin-top: 55px;
}

.opsramp__offer-item {
  max-width: 950px;
  margin: auto;
  padding: 0 0 0 35px;
  color: #062d60;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  position: relative;
  margin-left: 70px;
  letter-spacing: 0.03em;
}

.opsramp__offer-item:nth-last-child(n+2){
  text-underline-offset: -4px;
  text-decoration-line: underline;
  text-decoration-color: #d8eff6;
  text-decoration-thickness: 8px;

}

.opsramp__offer-item .underline {
  position: relative;
  z-index: 1;
  text-decoration-line: none;
}

.opsramp__offer-item .underline::before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 8px solid #d8eff6;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

.opsramp__offer-item + .opsramp__offer-item {
  margin-top: 17px;
}

.opsramp__offer-item img {
  position: absolute;
  top: 6px;
  left: 0;
}

.opsramp__inner-our-service {
  max-width: 840px;
  margin: 28px auto 0;
}

.opsramp__table {
  font-weight: bold;
  font-size: 16px;
  width: 100%;
}

.opsramp__table thead th {
  background-color: #1e4270;
  color: #fff;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}

.opsramp__table tbody td {
  background-color: #f5f6fd;
  color: #4b4b4b;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}

.opsramp__table tbody tr.select td {
  background-color: #eceefa;
  color: #062d60;
}

.opsramp__table tbody td div {
  position: relative;
  display: inline-block;
}

.opsramp__table tbody td div span {
  font-size: 11px;
  vertical-align: top;
  position: absolute;
  top: -2px;
  right: -1.78em;
}

.opsramp__table tbody td:first-of-type div span {
  position: relative;
  right: 0;
}

.opsramp__table thead th:first-child {
  width: 50%;
}

.opsramp__table-notes {
  margin-top: 40px;
}

.opsramp__table-notes p {
  color: #4b4b4b;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding-left: 2em;
	text-indent: -2em;
}

@media screen and (min-width: 768px) {
  .opsramp-slide__list {
    display: flex;
    justify-content: space-between;
  }
  .opsramp-slide__item {
    flex-shrink: initial !important;
    width: 32.11% !important;
  }
}

@media screen and (max-width: 767px) {
  .opsramp {
    padding: 0;
  }

  .opsramp__box--wrapper {
    margin-top: 5px;
    padding: 23px 10px;
  }

  .opsramp__container + .opsramp__container {
    margin-top: 14px;
  }

  .opsramp__inner {
    top: -23px;
    padding: 0 10px 40px;
  }

  .opsramp__container {
    padding: 20px 10px 35px;
  }

  .opsramp__title--01 {
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: 0.105em;
    margin: 12px 0 0;
  }

  .opsramp__title--02 {
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: 0.06em;
    margin: 32px 0 20px;
  }

  .opsramp__title--03 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin: 0 0 0;
  }

  .opsramp__title--04 {
    font-size: 19px;
    line-height: 1.63;
    letter-spacing: 0.03em;
    margin-top: 33px;
  }

  .opsramp__title--05 {
    font-size: 23px;
    line-height: 1.46;
  }

  .opsramp__title--06 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 7px;
  }

  .opsramp__sub-title span {
    font-size: 10px;
    padding: 4px 10px;
  }

  .opsramp__inner-our-service {
    margin-top: 10px;
  }

  .opsramp__heading {
    margin-bottom: 17px;
  }

  .opsramp__heading-text {
    font-size: 12px;
    padding: 6.5px 12px;
  }

  .opsramp__heading-text::after {
    border-top-width: 9px;
    border-left-width: 4.5px;
    border-right-width: 4.5px;
    margin-left: -4.5px;
  }

  .opsramp__image-solution {
    margin-top: 19px;
  }

  .opsramp__read {
    flex-wrap: wrap;
  }

  .opsramp__box:nth-of-type(2n) .opsramp__read {
    flex-direction: column-reverse;
  }

  .opsramp__box:nth-of-type(2) .opsramp__read-thumbnail {
    width: 100%;
    padding: 0 8%;
  }

  .opsramp__read {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .opsramp__read-thumbnail {
    width: 100%;
  }

  .opsramp__read-text {
    width: 100%;
    margin-top: 20px;
    padding: 0 12px;
  }

  .opsramp__read-text p {
    font-size: 12px;
  }

  .opsramp__read-text p + p {
    margin-top: 6px;
  }

  .opsramp-slide {
    margin-top: 15px;
  }

  .opsramp-slide__pagination {
    position: relative !important;
    bottom: 0 !important;
    margin: 17px 0;
  }

  .swiper-pagination-bullet-active {
    background-color: #5a5967 !important;
  }

  .opsramp__offer {
    margin-top: 30px;
  }

  .opsramp__offer-item {
    margin-left: 10px;
    font-size: 14px;
    padding: 0 0px 0 20px;
    text-decoration: underline 4px #d8eff6;
    text-underline-offset: -2px;
  }

  .opsramp__offer-item + .opsramp__offer-item {
    margin-top: 12px;
  }

  .opsramp__offer-item .underline::before {
    bottom: 0;
    border-bottom: 4px solid #d8eff6;
  }

  .opsramp__offer-item img {
    width: 14px;
  }

  .opsramp__table {
    font-size: 10px;
  }

  .opsramp__table thead th {
    padding: 10px;
  }

  .opsramp__table tbody td {
    padding: 10px;
  }

  .opsramp__table tbody td span {
    font-size: 8px;
  }

  .opsramp__table-notes {
    margin-top: 40px;
  }

  .opsramp__table-notes p {
    font-size: 9px;
    line-height: 1.55;
    padding-left: 2em;
    text-indent: -2em;
  }
  .opsramp__table-notes p + p {
    margin-top: 3px;
  }
}
/* end opsramp */