/* ========================================================================
   Component: Common
========================================================================== */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
  color: #333;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}
@media screen and (max-width: 425px) {
  body {
    font-size: 1.4rem;
  }
}
.js-scrollable ::-webkit-scrollbar {
  height: 3px;
}
.js-scrollable ::-webkit-scrollbar-thumb {
  background: #3f84a7;
}
.content {
  margin-top: 0;
}
picture img,
img {
  max-width: 100%;
  height: auto;
}
.list-asterisk > li,
.list-bullet > li,
.list-asterisk-num > li {
  position: relative;
  padding-left: 1em;
  counter-increment: cnt;
  font-size: 1.2rem;
  line-height: 1.6;
}
.list-asterisk > li::before,
.list-bullet > li::before,
.list-asterisk-num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: $list-bullet-size;
  height: $list-bullet-size;
}
.list-asterisk > li {
  padding-left: $list-bullet-size;
}
.list-asterisk > li::before {
  content: "※";
}
.list-bullet > li {
  padding-left: $list-bullet-size;
}
.list-bullet > li::before {
  content: "・";
}
.list-asterisk-num > li {
  padding-left: 2em;
}
.list-asterisk-num > li::before {
  content: "※" counter(cnt);
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-bole {
  font-weight: bold !important;
}
.text-link {
  color: #3f84a7;
  text-decoration: underline;
  transition: 0.3s;
}
.text-link:hover {
  text-decoration: none;
}
.js-anchor.current {
  color: color-navy;
}
.show-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .show-sp {
    display: inherit;
  }
}
@media screen and (max-width: 768px) {
  .show-pc {
    display: none;
  }
}
sup {
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
}
.wrapper {
  overflow: hidden;
}
a {
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@font-face {
  font-family: 'icomoon';
  src: url("/service/robot/fonts/icomoon.eot?tr6sue");
  src: url("/service/robot/fonts/icomoon.eot?tr6sue#iefix") format('embedded-opentype'), url("/service/robot/fonts/icomoon.ttf?tr6sue") format('truetype'), url("/service/robot/fonts/icomoon.woff?tr6sue") format('woff'), url("/service/robot/fonts/icomoon.svg?tr6sue#icomoon") format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
/* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-youtube:before {
  content: "\ea9d";
}
.link {
  color: #3f84a7;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}
.link-external:after {
  font-family: 'icomoon' !important;
  font-size: 0.8em;
  content: "\e900";
  display: inline-block;
  margin-left: 0.3em;
}
/* ========================================================================
   Component: ticker
========================================================================== */
.ticker {
  background: #dbdbdb;
  padding: 7px 10px;
}
.ticker-inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticker-title {
  font-size: 1.2rem;
  font-weight: bold;
  width: 7em;
}
.ticker-title:before {
  content: "";
  width: 22px;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  background: url("/images/service/robot/icon_news.svg");
}
.ticker-list {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}
.ticker-list-date,
.ticker-list-text {
  font-size: 1.2rem;
}
.ticker-list-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 1em;
}
@media screen and (max-width: 480px) {
  .ticker-list-text {
    width: 48vw;
  }
}
/* ========================================================================
   Component Breadcrumb
 ========================================================================== */
.content {
  position: relative;
}
.breadcrumb {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.breadcrumb-inner {
  margin: 0 auto;
  width: 90vw;
}
@media screen and (max-width: 768px) {
  .breadcrumb-inner {
    width: 100vw;
    padding: 0 10px;
  }
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb-list {
    padding: 10px 0;
  }
}
.breadcrumb-list >li {
  font-size: 1.2rem;
}
.breadcrumb-list >li >span {
  color: #000;
}
.breadcrumb-list >li >a {
  display: inline-block;
  color: #3f84a7;
  position: relative;
  padding-right: 40px;
}
.breadcrumb-list >li >a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
}
/* ========================================================================
   Component: cta
========================================================================== */
.cta {
  background: transparent linear-gradient(0deg, #d5574c 0%, rgba(209,27,21,0.98) 100%);
  color: #fff;
  padding: 90px 20px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 40px 20px;
  }
}
.cta-inner {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  text-align: center;
}
.cta-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 425px) {
  .cta-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.cta-text {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 425px) {
  .cta-text {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.cta-button {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #d11b0b;
  text-align: center;
  max-width: 460px;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  transition: 0.3s;
}
@media screen and (max-width: 425px) {
  .cta-button {
    font-size: 1.6rem;
  }
}
.cta-button a {
  display: block;
  padding: 25px 0;
  position: relative;
  z-index: 2;
}
.cta-button:before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 3px solid #d11b0b;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.cta-button:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #d11b0b;
  border-right: 2px solid #d11b0b;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 425px) {
  .cta-button:after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}
.cta-button:hover {
  opacity: 0.7;
}
.cta-button:hover:before {
  border: 3px solid transparent;
}
/* ========================================================================
   Component: section
========================================================================== */
.section-inner {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;
}
.section-title {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 425px) {
  .section-title {
    font-size: 2.5rem;
    margin-top: 0.4em;
  }
}
.section-title-area {
  position: relative;
}
@media screen and (min-width: 769px) {
  .section-title-area {
    padding-left: 120px;
  }
}
.section-title-area:before {
  display: inline-block;
  content: "";
  color: #d11b0b;
  border-top: 1px solid #d11b0b;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.5;
}
@media screen and (min-width: 769px) {
  .section-title-area:before {
    position: absolute;
    top: 20px;
    left: 0;
  }
}
.section-catch {
  font-size: 2.2rem;
  color: #3a5369;
  line-height: 1.8;
}
@media screen and (max-width: 425px) {
  .section-catch {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.section-link {
  display: inline-block;
  color: #3f84a7;
  border-bottom: 1px solid #3f84a7;
  line-height: 1.6;
  transition: 0.3s;
}
.section-link:hover {
  border-bottom: 1px solid transparent;
}
.section-link.arrow-right {
  position: relative;
  padding-right: 1em;
}
.section-link.arrow-right::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #3f84a7;
  border-right: 1px solid #3f84a7;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.section-lead {
  line-height: 1.8;
}
/* ========================================================================
   Component: header
========================================================================== */
.header-corp {
  z-index: 4;
}
.header {
  height: 60px;
  z-index: 3;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 15px;
  line-height: 1.2;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header-text {
    margin-left: 10px;
    font-size: 1.4rem;
    text-align: left;
  }
}
.header-text span {
  display: block;
  font-size: 1.4rem;
}
.header-button {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: transparent linear-gradient(115deg, #d0010d 0%, #ed545d 100%);
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: -6px;
  z-index: 1;
  transition: opacity, 400ms;
}
@media screen and (min-width: 1025px) {
  .header-button {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1301px) {
  .header-button {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1300px) {
  .header-button {
    padding: 0 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .header-button {
    padding: 0 20px;
  }
}
.header-button span {
  padding-right: 1em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .header-button span {
    font-size: 1.2rem;
  }
}
.header-button span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-button:hover {
  outline: 2px solid transparent;
  opacity: 0.7;
}
.header-navi {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    margin: 0;
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    transform: translateY(-100%);
    transition: transform, 400ms;
    z-index: 0;
  }
}
.header-nav-button {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .header-nav-button {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list {
    width: 100%;
    padding: 40px 20px;
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li {
    margin-bottom: 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li button,
  .header-nav-list > li a {
    display: inline-block;
    padding: 0 25px;
  }
}
@media screen and (max-width: 1300px) {
  .header-nav-list > li button,
  .header-nav-list > li a {
    padding: 0 1vw;
  }
}
.header-nav-list > li:first-child button {
  color: #3f84a7;
  padding: 0 25px 0 50px;
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li:last-child {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child {
    margin-top: 30px;
    text-align: center;
    border-bottom: none;
    text-align: center;
  }
}
.header-nav-list > li:last-child button {
  position: relative;
  padding-left: 1.8em;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child button {
    text-align: center;
    color: #3f84a7;
  }
}
.header-nav-list > li:last-child button span {
  position: relative;
  padding: 0 1.5em;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child button span:before {
    content: "✖";
    font-size: 2rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li.only-sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li a,
  .header-nav-list > li button {
    width: 100%;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li > a {
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li > a:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #3f84a7;
    border-right: 2px solid #3f84a7;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li.is-active .header-nav-list-pulldown {
    visibility: visible;
    opacity: 1;
    transition-duration: 500ms;
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li.is-active .header-nav-list-pulldown {
    max-height: 500px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-menu.is_current a {
    color: #3f84a7;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-menu button {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-pulldown {
    width: 100%;
    position: absolute;
    top: 110px;
    left: 0;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity, 200ms;
    z-index: 2;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-pulldown {
    overflow: hidden;
    max-height: 0;
    transition: max-height, 500ms;
  }
}
.header-nav-list-sub {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub {
    padding: 10px;
  }
}
.header-nav-list-sub li {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub li {
    padding: 20px 50px;
    border-right: 1px solid #dbdbdb;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub li {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header-nav-list-sub-img {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub-img {
    display: none;
  }
}
.header-nav-list-sub-copy {
  font-size: 1.1rem;
  color: #777;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub-copy {
    display: none;
  }
}
.header-nav-list-sub-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
}
.header-nav-list-sub-link:hover {
  opacity: 0.5;
  background: #fff;
}
.header-nav-list-service,
.header-nav-list-service-text {
  display: block;
}
.header-nav-list-service br,
.header-nav-list-service-text br {
  display: inherit;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-service br,
  .header-nav-list-service-text br {
    display: none;
  }
}
.header-nav-list-service {
  font-size: 2rem;
  font-weight: bold;
  color: #3f84a7;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-service {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .header-nav-list-service {
    font-size: 1.6rem;
  }
}
.hamburger {
  position: relative;
  padding: 15px 18px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger-box {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  top: 3px;
}
.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger-inner:before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger-inner:after {
  top: 16px;
}
.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  background-color: #41464c;
  height: 2px;
  width: 20px;
  background-color: #3f84a7;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.is-active .hamburger-inner:after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header.is-fixed .header-nav-list-pulldown {
    top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .header.is-active .header-nav {
    transform: translateY(0vh);
  }
}
.js-pulldownmenu {
  cursor: pointer;
}
.js-pulldownmenu button {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:before,
  .js-pulldownmenu button:after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #3f84a7;
    position: absolute;
    top: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:before {
    transform: rotate(90deg);
    transition: transform 0.3s;
    right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:after {
    transform: rotate(0deg);
    right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu.is-active button:before {
    transform: rotate(180deg);
  }
}
/* ========================================================================
   Component: compare
========================================================================== */
.compare {
  background: #f4f4f5;
  padding: 120px 0;
}
@media screen and (max-width: 820px) {
  .compare {
    padding: 60px 0;
  }
}
.compare .compare-title-area {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .compare .compare-title-area {
    margin-bottom: 20px;
  }
}
.compare .compare-title-area:before {
  content: "line up";
}
.compare-inner {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: auto;
}
.compare-content {
  width: 1080px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .compare-content {
    width: 700px;
    padding: 0 20px 8px 0;
    box-sizing: border-box;
  }
}
.compare-content:before {
  content: "";
  background-size: contain;
  width: 1080px;
  height: 455px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.webp .compare-content:before {
  background-image: url("/images/service/robot/common/bg_compare.png.webp") !important;
}
.no-webp .compare-content:before {
  background-image: url("/images/service/robot/common/bg_compare.png");
}
@media screen and (max-width: 820px) {
  .compare-content:before {
    width: 700px;
    height: 295px;
  }
}
.compare-content-inner {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-left: 40px;
}
@media screen and (max-width: 820px) {
  .compare-content-inner {
    margin-left: 30px;
  }
}
.compare-content-col {
  width: 206px;
  margin: 0 5px;
}
@media screen and (max-width: 820px) {
  .compare-content-col {
    width: 130px;
  }
}
.compare-content-img {
  text-align: center;
}
.compare-content-link {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e1e0e1;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .compare-content-link {
    height: 100px;
    padding: 10px;
  }
}
.compare-content-link:before {
  width: 12px;
  height: 12px;
  content: "";
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #e1e0e1 transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.compare-content-link.current {
  background: #fff;
  box-shadow: 0px 6px 10px rgba(0,0,0,0.1);
}
.compare-content-link.current:before {
  border-color: #fff transparent transparent transparent;
}
.compare-content-link.current .compare-content-link-service {
  color: #3f84a7;
}
.compare-content-link.current .compare-content-link-service:before {
  content: none;
}
.compare-content-link-service {
  min-width: 160px;
  font-size: 2rem;
  font-weight: bold;
  color: #7e7e7e;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .compare-content-link-service {
    min-width: 0;
    font-size: 1.6rem;
  }
}
.compare-content-link-service:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #3f84a7;
  border-right: 2px solid #3f84a7;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.compare-content-link:hover {
  opacity: 1;
  background: #fff;
  box-shadow: 0px 6px 10px rgba(0,0,0,0.1);
}
.compare-content-link:hover:before {
  border-color: #fff transparent transparent transparent;
}
.compare-content-link-text {
  line-height: 1.4;
}
@media screen and (max-width: 820px) {
  .compare-content-link-text {
    font-size: 1.2rem;
  }
}
.compare .js-scrollable {
  width: calc(100% + 20px);
  padding-bottom: 10px;
}
#SERVI .compare-content-col.servi .compare-content-link {
  background: #fff;
}
#SERVI .compare-content-col.servi .compare-content-link:before {
  border-color: #fff transparent transparent transparent;
}
#SERVI .compare-content-col.servi .compare-content-link-service {
  color: #3f84a7;
}
#BELLABOT .compare-content-col.bellabot .compare-content-link {
  background: #fff;
}
#BELLABOT .compare-content-col.bellabot .compare-content-link:before {
  border-color: #fff transparent transparent transparent;
}
#BELLABOT .compare-content-col.bellabot .compare-content-link-service {
  color: #3f84a7;
}
#KETTYBOT .compare-content-col.kettybot .compare-content-link {
  background: #fff;
}
#KETTYBOT .compare-content-col.kettybot .compare-content-link:before {
  border-color: #fff transparent transparent transparent;
}
#KETTYBOT .compare-content-col.kettybot .compare-content-link-service {
  color: #3f84a7;
}
#PUDUBOT2 .compare-content-col.pudubot2 .compare-content-link {
  background: #fff;
}
#PUDUBOT2 .compare-content-col.pudubot2 .compare-content-link:before {
  border-color: #fff transparent transparent transparent;
}
#PUDUBOT2 .compare-content-col.pudubot2 .compare-content-link-service {
  color: #3f84a7;
}
/* ========================================================================
   Component: pagetop
========================================================================== */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  display: none;
}
.pagetop a {
  width: 60px;
  height: 60px;
  background: #4d4d4d 0% 0% no-repeat padding-box;
  border-radius: 50%;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetop a:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.pagetop a:hover {
  opacity: 0.5;
}
/* ========================================================================
   Component: footer
========================================================================== */
.footer-inner {
  max-width: 1260px;
  margin: auto;
}
.footer p {
  font-weight: inherit;
  line-height: 1.6em;
}
