@charset "UTF-8";
/* #header-site */
#header-site {
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 11;
}

#header-site .logo-header {
  display: inline-block;
  width: 140px;
}

@media screen and (max-width: 767px) {
  #header-site * {
    -webkit-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  /* #header-site.thin */
  #header-site {
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
  #header-site .logo-header {
    width: 75px;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  #header-site .logo-header img {
    width: 100%;
    max-width: 100%;
  }
}

#header-site .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 15px;
}

@media screen and (max-width: 768px) {
  #header-site .inner {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 1440px) {
  #header-site .inner .logo-header {
    margin-left: 0;
  }
}

#header-site .inner .mobile-icon {
  width: 26px;
  height: 25px;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  position: absolute;
  right: 20px;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 12;
  display: none;
}

@media screen and (max-width: 1024px) {
  #header-site .inner .mobile-icon {
    display: block;
  }
}

#header-site .inner .mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 2px;
  margin-top: -2px;
  background-color: #087ba3;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 3px;
}

#header-site .inner .mobile-icon span:before, #header-site .inner .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #087ba3;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}

#header-site .inner .mobile-icon span:before {
  -webkit-transform: translateY(-250%);
  -ms-transform: translateY(-250%);
  transform: translateY(-250%);
  top: -4px;
}

#header-site .inner .mobile-icon span:after {
  -webkit-transform: translateY(250%);
  -ms-transform: translateY(250%);
  transform: translateY(250%);
  bottom: -4px;
}

#header-site .inner .mobile-icon.mobile-close span {
  background-color: transparent;
}

#header-site .inner .mobile-icon.mobile-close span:before, #header-site .inner .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #087ba3;
}

#header-site .inner .mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 2px;
}

#header-site .inner .mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  bottom: -2px;
}

#header-site.active {
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
}

#header-site.active .nav-menu {
  opacity: 1;
  visibility: visible;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
  #header-site.header-site-02 {
    position: static;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
  }
  .nav-menu.active {
    display: block;
  }
}

.nav-menu .show-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .nav-menu .show-menu {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.nav-menu .show-menu > .item {
  padding: 0 2px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .nav-menu .show-menu > .item {
    display: inline-block;
  }
}

.nav-menu .show-menu > .item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-menu {
  width: calc(100% - 160px);
}

@media screen and (max-width: 1200px) and (-ms-high-contrast: active), screen and (max-width: 1200px) and (-ms-high-contrast: none) {
  .nav-menu .show-menu > .item.item01 img,
  .nav-menu .show-menu > .item.item02 img,
  .nav-menu .show-menu > .item.item03 img {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.nav-menu .show-menu > .item {
  margin-right: 6px;
}

.nav-menu .show-menu > .item.item03 {
  margin-right: 0;
}

@media screen and (max-width: 640px) {
  .nav-menu .show-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .nav-menu .show-menu > .item {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }
  .nav-menu .show-menu > .item img {
    width: 100%;
    max-width: 100%;
  }
}

.header__custom {
  padding: 20px 0 20px;
}

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

@media screen and (max-width: 640px) {
  .header__custom {
    padding: 5px 0;
  }
}

.header__custom .header__logo {
  width: 160px;
}

@media screen and (max-width: 640px) {
  .header__custom .header__logo {
    width: 100px;
    padding-right: 10px;
  }
}

.header__custom .header__listbtn {
  width: calc(100% - 160px);
}

@media screen and (max-width: 1200px) and (-ms-high-contrast: active), screen and (max-width: 1200px) and (-ms-high-contrast: none) {
  .header__custom .header__listbtn .item01 {
    width: 40.4%;
  }
  .header__custom .header__listbtn .item01 img {
    width: 100%;
  }
  .header__custom .header__listbtn .item02, .header__custom .header__listbtn .item03 {
    width: 28.62%;
  }
  .header__custom .header__listbtn .item02 img, .header__custom .header__listbtn .item03 img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .header__custom .header__listbtn {
    width: calc(100% - 100px);
  }
}

.header__custom .header__listbtn .list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header__custom .header__listbtn .list-btn .item {
  margin-right: 6px;
}

.header__custom .header__listbtn .list-btn .item:last-child {
  margin-right: 0;
}

.header__custom ~ .main-page {
  margin-top: 87px;
}

@media screen and (max-width: 640px) {
  .header__custom ~ .main-page {
    margin-top: 46px;
  }
}

@media screen and (max-width: 640px) and (-ms-high-contrast: active), screen and (max-width: 640px) and (-ms-high-contrast: none) {
  .header__custom ~ .main-page {
    margin-top: 46px;
  }
}

.container {
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

.container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container img {
  max-width: 100%;
}

.main-page {
  margin-top: 110px;
}

@media screen and (max-width: 1024px) {
  .main-page {
    margin-top: 84px;
  }
}

@media screen and (max-width: 767px) {
  .main-page {
    margin-top: 51.7px;
  }
}

.inner {
  display: block;
  width: 100%;
  max-width: 1130px;
  padding: 0 15px;
  margin: 0 auto;
}

.inner-900 {
  max-width: 930px;
}

.inner-852 {
  max-width: 882px;
}

.inner-740 {
  max-width: 770px;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  #header-site .inner {
    padding: 30px 14px 16px;
    max-width: 1048px;
  }
}

@media screen and (min-width: 641px) {
  .nav-menu .show-menu > .item {
    margin-right: 2px;
  }
}

@media screen and (max-width: 640px) {
  .nav-menu .show-menu > .item img {
    width: auto;
  }
}

.sec-mv {
  margin-bottom: 39px;
}

@media screen and (max-width: 1040px) {
  .sec-mv {
    margin-bottom: 3.750vw;
  }
}

.sec-mv .block {
  display: inline-block;
  width: 100%;
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_01.png") no-repeat center top/contain;
  padding: 38px 15px 0;
}

@media screen and (max-width: 1040px) {
  .sec-mv .block {
    padding-top: 3.654vw;
  }
}

.sec-mv .block-ttl {
  text-align: center;
  color: #515D75;
  font-weight: 600;
  font-size: 62px;
  line-height: 1;
}

@media screen and (max-width: 1040px) {
  .sec-mv .block-ttl {
    font-size: 5.962vw;
  }
}

.sec-mv .block-ttl small {
  display: block;
  font-size: 36px;
  line-height: 1.28;
  font-weight: 600;
  margin-bottom: 7px;
}

@media screen and (max-width: 1040px) {
  .sec-mv .block-ttl small {
    font-size: 3.462vw;
    margin-bottom: 0.673vw;
  }
}

.sec-mv .block-img {
  text-align: center;
  margin-bottom: -250px;
}

@media screen and (max-width: 1040px) {
  .sec-mv .block-img {
    margin-bottom: -24.038vw;
  }
}

.sec-solve {
  text-align: center;
  margin-bottom: 82px;
}

@media screen and (max-width: 730px) {
  .sec-solve {
    margin-bottom: 11.233vw;
  }
}

.sec-solve .block-ttl {
  margin-bottom: 18px;
}

.sec-solve .block-ttl span {
  color: #515D75;
  font-weight: 600;
  font-size: 59.51px;
  line-height: 1.2;
  display: block;
  margin-top: 3px;
}

@media screen and (max-width: 730px) {
  .sec-solve .block-ttl span {
    font-size: 8.152vw;
  }
}

.sec-reduce-mistake .block {
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_02.png") no-repeat center top, -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #FFA000));
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_02.png") no-repeat center top, -o-linear-gradient(top, transparent 50%, #FFA000 0%);
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_02.png") no-repeat center top, linear-gradient(to bottom, transparent 50%, #FFA000 0%);
  padding: 123px 15px 25px;
  color: #ffffff;
  margin-bottom: -176px;
  position: relative;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block {
    background-size: contain;
    padding-top: 13.977vw;
    padding-bottom: 2.841vw;
    margin-bottom: -20vw;
  }
}

.sec-reduce-mistake .block-ttl {
  text-align: center;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.27;
  margin-bottom: 7px;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-ttl {
    font-size: 5.114vw;
    margin-bottom: 0.795vw;
  }
}

.sec-reduce-mistake .block-stl {
  text-align: center;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.2912;
  margin-bottom: 14px;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-stl {
    font-size: 2.841vw;
    margin-bottom: 1.591vw;
  }
}

.sec-reduce-mistake .block-txt {
  text-align: center;
  margin-bottom: 43px;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-txt {
    margin-bottom: 4.886vw;
  }
}

.sec-reduce-mistake .block-txt span {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 4px 29px 0;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-txt span {
    font-size: 1.705vw;
    padding: 0.455vw 3.295vw 0;
  }
}

.sec-reduce-mistake .block-img {
  position: relative;
  max-width: 820px;
  margin: 0 auto 15px;
}

.sec-reduce-mistake .block-price {
  position: absolute;
  top: 59.2%;
  left: 43%;
  right: 2%;
  font-weight: 600;
  font-size: 42.23px;
  line-height: 1.18;
  z-index: 1;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-price {
    font-size: 4.799vw;
    top: 58%;
  }
}

.sec-reduce-mistake .block-price small {
  font-weight: 600;
  font-size: 17.83px;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-price small {
    font-size: 2.026vw;
  }
}

.sec-reduce-mistake .block-btn {
  text-align: center;
}

@media screen and (max-width: 880px) {
  .sec-reduce-mistake .block-btn a img {
    width: 39.773vw;
  }
}

.sec-problem {
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_03.png") no-repeat center top;
  padding: 375px 0 82px;
}

@media screen and (max-width: 880px) {
  .sec-problem {
    padding-top: 42.614vw;
    padding-bottom: 50px;
    background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_03.png") no-repeat center top, -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #F1F0ED));
    background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_03.png") no-repeat center top, -o-linear-gradient(top, transparent 50%, #F1F0ED 0%);
    background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_03.png") no-repeat center top, linear-gradient(to bottom, transparent 50%, #F1F0ED 0%);
  }
}

.sec-problem .block-ttl {
  text-align: center;
  font-weight: 600;
  color: #515D75;
  font-size: 36.2px;
  line-height: 1.2;
  margin-bottom: 42px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 374px) {
  .sec-problem .block-ttl {
    font-size: 20px;
  }
}

.sec-problem .block-ttl:before {
  content: '';
  position: absolute;
  width: 500px;
  height: 82px;
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/img_05.png") no-repeat center/contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -94px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-ttl:before {
    width: 250px;
    height: 41px;
    top: -47px;
  }
}

.sec-problem .block-ttl span {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFA300), color-stop(50%, transparent));
  background-image: -o-linear-gradient(left, #FFA300 50%, transparent 50%);
  background-image: linear-gradient(to right, #FFA300 50%, transparent 50%);
  background-size: 200% 10px;
  background-repeat: no-repeat;
  background-position: 0 .9em;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-ttl span {
    background-size: 200% 8px;
  }
}

.sec-problem .block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sec-problem .block-list .item {
  width: calc(50% - 16px);
  margin-bottom: 19px;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-list .item {
    width: 100%;
  }
}

.sec-problem .block-list .item-wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec-problem .block-list .item-wrap {
    max-width: 354px;
    margin: 0 auto;
  }
}

.sec-problem .block-list .item-ttl {
  text-align: center;
  color: #515D75;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.42;
  position: absolute;
  top: 12.4%;
  left: 15px;
  right: 15px;
}

@media screen and (max-width: 384px) {
  .sec-problem .block-list .item-ttl {
    font-size: 4.427vw;
  }
}

.sec-problem .block-list .item-stl {
  text-align: center;
  color: #FFA300;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.14;
  position: absolute;
  top: 53.7%;
  left: 15px;
  right: 15px;
}

@media screen and (max-width: 384px) {
  .sec-problem .block-list .item-stl {
    font-size: 5.469vw;
  }
}

.sec-problem .block-list .item-txt {
  color: #515D75;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  position: absolute;
  top: 81.25%;
  left: 26px;
  right: 25px;
  letter-spacing: -1.3px;
}

@media screen and (max-width: 384px) {
  .sec-problem .block-list .item-txt {
    font-size: 3.906vw;
    left: 6.771vw;
    right: 6.510vw;
  }
}

.sec-feature {
  padding: 135px 0 72px;
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_04.png") no-repeat center top;
}

@media screen and (max-width: 1700px) {
  .sec-feature {
    background-size: contain;
  }
}

@media screen and (max-width: 852px) {
  .sec-feature {
    padding-top: 15.845vw;
    padding-bottom: 8.451vw;
  }
}

.sec-feature .block {
  position: relative;
}

.sec-feature .block-ttl {
  position: absolute;
  text-align: center;
  left: 15px;
  right: 15px;
  top: 5.2%;
  font-weight: 600;
  color: #515D75;
  font-size: 30px;
  line-height: 1.34;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-ttl {
    font-size: 3.521vw;
  }
}

.sec-feature .block-stl01 {
  position: absolute;
  z-index: 1;
  top: 12%;
  left: 6%;
  width: 150px;
  color: #515D75;
  font-weight: 600;
  font-size: 35.55px;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-stl01 {
    font-size: 4.173vw;
  }
}

.sec-feature .block-stl02 {
  position: absolute;
  z-index: 1;
  top: 28.2%;
  left: 12.7%;
  width: 170px;
  color: #515D75;
  font-weight: 600;
  font-size: 25.87px;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-stl02 {
    font-size: 3.036vw;
  }
}

.sec-feature .block-stl02 strong {
  font-size: 35.87px;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-stl02 strong {
    font-size: 4.210vw;
  }
}

.sec-feature .block-stl03 {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #243653;
  top: 72%;
  left: 15px;
  right: 15px;
  font-weight: 600;
  font-size: 19.27px;
  line-height: 1.14;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-stl03 {
    font-size: 2.262vw;
  }
}

.sec-feature .block-order {
  position: absolute;
  z-index: 1;
  left: 48.3%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  text-align: center;
  color: #243653;
  font-weight: 600;
  font-size: 23.21px;
  line-height: 1.34;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-order {
    font-size: 2.724vw;
  }
}

.sec-feature .block-order strong {
  font-size: 27px;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-order strong {
    font-size: 3.169vw;
  }
}

.sec-feature .block-order01 {
  top: 17.25%;
}

.sec-feature .block-order02 {
  top: 31.6%;
}

.sec-feature .block-order03 {
  top: 48.1%;
}

.sec-feature .block-order04 {
  top: 61%;
}

.sec-feature .block-txt {
  position: absolute;
  z-index: 1;
  width: 220px;
  left: 65.5%;
  top: 18%;
  color: #243653;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt {
    width: 25.822vw;
    font-size: 1.761vw;
    left: 64%;
  }
}

.sec-feature .block-txt strong {
  font-weight: 700;
  font-size: 28.27px;
  line-height: 1.27;
  display: block;
  margin-bottom: 4px;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt strong {
    font-size: 3.318vw;
    margin-bottom: 0.469vw;
  }
}

.sec-feature .block-txt01 {
  top: 14.25%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt01 {
    top: 14%;
  }
}

.sec-feature .block-txt02 {
  top: 32.5%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt02 {
    top: 32.25%;
  }
}

.sec-feature .block-txt03 {
  top: 59.35%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt03 {
    top: 59.10%;
  }
}

.sec-feature .block-txt04 {
  width: 200px;
  left: 36%;
  top: 85.45%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt04 {
    width: 23.474vw;
    top: 85%;
    left: 35%;
  }
}

.sec-feature .block-txt04 strong {
  font-size: 23.57px;
  line-height: 1.26;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt04 strong {
    font-size: 2.766vw;
  }
}

.sec-feature .block-txt05 {
  width: 200px;
  left: 65.6%;
  top: 85.45%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt05 {
    width: 23.474vw;
    top: 85%;
    left: 64.6%;
  }
}

.sec-feature .block-txt05 strong {
  font-size: 23.57px;
  line-height: 1.26;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-txt05 strong {
    font-size: 2.766vw;
  }
}

.sec-feature .block-item {
  position: absolute;
  z-index: 1;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.32;
  color: #243653;
  width: 150px;
  text-align: center;
  top: 75.66%;
}

@media screen and (max-width: 852px) {
  .sec-feature .block-item {
    font-size: 2.230vw;
    width: 17.606vw;
  }
}

.sec-feature .block-item01 {
  left: 13.8%;
}

.sec-feature .block-item02 {
  left: 39.5%;
}

.sec-feature .block-item03 {
  left: 65.5%;
}

.sec-trade-auto {
  background: url("/-/Media/Ricoh/Sites/co_jp/service/trade-automation/special/point/img/bg_05.png") no-repeat center top;
  padding: 18px 0 55px;
}

@media screen and (max-width: 830px) {
  .sec-trade-auto {
    padding-top: 2.169vw;
    padding-bottom: 6.627vw;
  }
}

.sec-trade-auto .block-img {
  max-width: 800px;
  margin: 0 auto -64px;
  position: relative;
}

@media screen and (max-width: 830px) {
  .sec-trade-auto .block-img {
    margin-bottom: -7.711vw;
  }
}

.sec-trade-auto .block-link {
  position: absolute;
  display: block;
  width: 42.5%;
  height: 19.5%;
  left: 2.5%;
  top: 27%;
  z-index: 2;
}

.sec-trade-auto .block-txt {
  z-index: 1;
  color: #000000;
  font-weight: 500;
  font-size: 16.93px;
  line-height: 1.6;
  position: absolute;
  left: 2.8%;
}

@media screen and (max-width: 830px) {
  .sec-trade-auto .block-txt {
    font-size: 2.040vw;
  }
}

.sec-trade-auto .block-txt small {
  font-size: 13.75px;
  font-weight: 400;
}

@media screen and (max-width: 830px) {
  .sec-trade-auto .block-txt small {
    font-size: 1.657vw;
  }
}

.sec-trade-auto .block-txt a {
  color: #0000FF;
}

.sec-trade-auto .block-txt p:not(:last-child) {
  margin-bottom: 4px;
}

.sec-trade-auto .block-txt01 {
  top: 20%;
}

.sec-trade-auto .block-txt02 {
  top: 49.6%;
}

.sec-trade-auto .block-btn {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-trade-auto .block-btn .item {
  margin: 0 4px;
}
