/* ========================================================================
   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";
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
.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,
.list-circle > li {
  font-size: 1.4rem;
  line-height: 1.8;
  position: relative;
  counter-increment: cnt;
}
.list-asterisk > li::before,
.list-bullet > li::before,
.list-asterisk-num > li::before,
.list-circle > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}
.list-circle > li {
  font-size: 1.6rem;
  padding-left: 1em;
}
.list-circle > li::before {
  content: "●";
}
.list-asterisk > li {
  padding-left: 1em;
}
.list-asterisk > li::before {
  content: "※";
}
.list-bullet > li {
  padding-left: 1em;
}
.list-bullet > li::before {
  content: "・";
}
.list-asterisk-num > li {
  padding-left: 2em;
}
.list-asterisk-num > li::before {
  content: "※" counter(cnt);
}
.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;
}
/* ========================================================================
   Component: cta
========================================================================== */
.cta {
  background-position: center center;
  color: #fff;
}
.webp .cta {
  background-image: url("/images/service/healthcare/bg_cta.jpg.webp") !important;
}
.no-webp .cta {
  background-image: url("/images/service/healthcare/bg_cta.jpg");
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .webp .cta {
    background-image: url("/images/service/healthcare/bg_cta_sp.jpg.webp") !important;
  }
  .no-webp .cta {
    background-image: url("/images/service/healthcare/bg_cta_sp.jpg");
  }
}
.cta-inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-inner.section-inner {
    padding: 40px 20px;
  }
}
.cta-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .cta-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.cta-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cta-title {
    margin-bottom: 30px;
  }
}
.cta-button {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  max-width: 460px;
  background: #faa542;
  margin: auto;
  border-radius: 52px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cta-button {
    font-size: 1.6rem;
  }
}
.cta-button a {
  display: block;
  padding: 24px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .cta-button a {
    padding: 16px 0;
  }
}
.cta-button:after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cta-button:after {
    width: 12px;
    height: 12px;
    right: 20px;
  }
}
.cta-button:hover {
  opacity: 0.7;
}
.cta-button:hover:before {
  border: 3px solid transparent;
}
/* ========================================================================
   Component: section
========================================================================== */
.section-inner {
  width: 100%;
  max-width: 1044px;
  margin: auto;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding: 60px 20px;
  }
}
.section-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.section-title:after {
  content: "";
  width: 100px;
  height: 6px;
  border-radius: 3px;
  background: transparent linear-gradient(93deg, #50b4fd 0%, #3ee6d9 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.5rem;
    margin-top: 0.4em;
  }
}
.section-lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .section-lead {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-lead {
    font-size: 1.6rem;
  }
}
.section-lead.mb-40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-lead.mb-40 {
    margin-bottom: 20px;
  }
}
.section-subtitle {
  text-align: center;
  margin-bottom: 30px;
}
.section-subtitle span {
  display: inline-block;
  position: relative;
}
.section-subtitle span:before {
  content: "";
  background: url("/images/service/healthcare/icon_point.svg");
  width: 35px;
  height: 39px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .section-caution {
    text-align: center;
  }
}
.section-caution .list-asterisk {
  display: inline-block;
}
.section-caution .list-asterisk li {
  text-align: left;
}
.link-ex {
  text-decoration: underline;
}
.link-ex:after {
  display: inline-block;
  content: "";
  background: url("/images/service/healthcare/icon_link-ex.svg");
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
/* ========================================================================
   Component: header
========================================================================== */
header {
  width: 100%;
  position: relative;
  z-index: 4;
}
.header {
  height: 60px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
    position: relative;
  }
}
.header-inner {
  width: 100%;
  max-width: 1044px;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header-inner {
    padding: 0 0 0 20px;
  }
}
.header-logo {
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    left: 15px;
    z-index: 5;
  }
}
.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;
    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: 20px 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;
  }
}
.header-nav-list > li:first-child button {
  color: #3f84a7;
  padding: 0 25px 0 50px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li a {
    width: 100%;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 16px 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 #50b4fd;
    border-right: 2px solid #50b4fd;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li.show-sp {
    margin-top: 30px;
    text-align: center;
    border-bottom: none;
    text-align: center;
  }
}
.header-nav-list > li.show-sp a {
  color: #fff;
}
.hamburger {
  position: relative;
  padding: 12px 20px 0 20px;
  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: 38px;
  height: 30px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  top: 0px;
}
.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger-inner:before {
  top: 12px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger-inner:after {
  top: 24px;
}
.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  height: 3px;
  width: 38px;
  background-color: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.is-active .header-logo {
  color: #50b4fd;
}
.is-active .hamburger-inner {
  transform: translate3d(0, 16px, 0) rotate(35deg);
  background: #50b4fd;
}
.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
  background: #50b4fd;
}
.is-active .hamburger-inner:after {
  transform: translate3d(0, -24px, 0) rotate(-74deg);
  background: #50b4fd;
}
header.is-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}
header.is-fixed .header-logo {
  color: #50b4fd;
}
header.is-fixed .hamburger-inner,
header.is-fixed .hamburger-inner:before,
header.is-fixed .hamburger-inner:after {
  background: #50b4fd;
}
@media screen and (max-width: 1024px) {
  .header.is-active {
    background: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .header.is-active .header-nav {
    background: #fff;
    transform: translateY(0vh);
  }
}
@media screen and (max-width: 1024px) {
  .header.is-active:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.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: mainvisual
========================================================================== */
.mainvisual {
  position: relative;
  overflow: hidden;
}
.mainvisual:before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(118deg, #50b4fd 0%, #3ee6d9 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mainvisual-inner {
  width: 100%;
  max-width: 1044px;
  height: 700px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 821px) {
  .mainvisual-inner {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 820px) {
  .mainvisual-inner {
    padding: 20px 0 10px;
    height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual-inner {
    height: auto;
  }
}
@media screen and (min-width: 821px) {
  .mainvisual-detail {
    width: 55%;
    margin-top: -110px;
  }
}
@media screen and (max-width: 820px) {
  .mainvisual-detail {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
.mainvisual-title {
  font-size: 4rem;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mainvisual-title {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 821px) {
  .mainvisual-irrust {
    width: 778px;
    position: absolute;
    left: 55%;
    bottom: 3%;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual-irrust {
    position: relative;
    width: 116%;
    transform: translateX(-8%);
  }
}
@media screen and (max-width: 767px) {
  .mainvisual-irrust img {
    width: 100%;
  }
}
.mainvisual-subtitle {
  width: 490px;
  background: #fff;
  border-radius: 29px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .mainvisual-subtitle {
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual-subtitle {
    width: 100%;
  }
}
.mainvisual-subtitle:after {
  content: "";
  width: 10px;
  height: 16px;
  border-style: solid;
  border-width: 12px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: auto;
}
.mainvisual-subtitle-inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 3.2rem;
  color: #50b4fd;
  line-height: 1;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .mainvisual-subtitle-inner {
    font-size: 2.4rem;
  }
}
.mainvisual-subtitle-inner span {
  display: inline-block;
  line-height: 1;
}
.mainvisual-subtitle-inner .number {
  font-family: oswald;
}
.mainvisual-subtitle-inner small {
  font-size: 1.6rem;
  padding: 0 0.2em;
}
.mainvisual-cta {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mainvisual-cta {
    width: 94vw;
    bottom: 50px;
  }
}
/* ========================================================================
   Component: about
========================================================================== */
.about-lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .about-lead {
    margin-bottom: 30px;
  }
}
.about-lead .list-asterisk {
  margin-top: 25px;
}
.about-detail {
  border-top: 1px solid #000;
  padding-top: 30px;
}
.about-detail-button-more {
  text-align: center;
  margin-bottom: 20px;
}
.about-detail-button-more span {
  display: inline-block;
  color: #fff;
  background: transparent linear-gradient(100deg, #50b4fd 0%, #3ee6d9 100%);
  padding: 10px 70px;
  position: relative;
}
.about-detail-button-more span:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about-detail-button-more span:nth-child(2) {
  display: none;
}
.about-detail-text {
  width: 100%;
  max-width: 640px;
  margin: auto;
  overflow: hidden;
  transition: all 300ms;
  -webkit-line-clamp: 2;
  max-height: 7.5em;
}
.about-detail-text.is-open {
  max-height: 800px;
  -webkit-line-clamp: unset;
}
@media screen and (min-width: 768px) {
  .about-detail-text {
    text-align: center;
    -webkit-line-clamp: 3;
    max-height: 4.8em;
  }
}
.about-detail-text p {
  margin-bottom: 20px;
}
.about-detail-text dl {
  text-align: left;
  margin-bottom: 20px;
}
.about-detail-button-more {
  text-align: center;
  margin-bottom: 20px;
}
.about-detail-button-more span {
  display: inline-block;
  width: 220px;
  color: #fff;
  background: transparent linear-gradient(100deg, #50b4fd 0%, #3ee6d9 100%);
  padding: 10px 70px;
  position: relative;
}
.about-detail-button-more span:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about-detail-button-more span:nth-child(1):after {
  transform: rotate(135deg);
}
.about-detail-button-more span:nth-child(2) {
  display: none;
}
.about-detail-button-more span:nth-child(2):after {
  top: 5px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .about-detail .list-asterisk {
    text-align: center;
  }
}
.about-detail .list-asterisk li {
  display: inline-block;
}
.about-detail-text.is-open+.about-detail-button-more span:nth-child(1) {
  display: none;
}
.about-detail-text.is-open+.about-detail-button-more span:nth-child(2) {
  display: inline-block;
}
/* ========================================================================
   Component: scope
========================================================================== */
.scope-box {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .scope-box {
    margin-top: 45px;
  }
}
.scope-box.last {
  margin-bottom: 80px;
}
.scope-box-title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .scope-box-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.scope-box-title span:before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: transparent linear-gradient(100deg, #50b4fd 0%, #3ee6d9 100%);
  border-radius: 50%;
  margin-right: 8px;
}
.scope-box-title small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .scope-box-title small {
    display: block;
    font-size: 1.4rem;
  }
}
.scope-box-caution {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.scope-box .list-asterisk-num {
  display: inline-block;
}
.scope-cols {
  width: 100%;
  max-width: 770px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.scope-col {
  width: 31%;
  background: transparent linear-gradient(141deg, #50b4fd 0%, #3ee6d9 100%);
  border-radius: 16px;
  padding: 5px;
  margin-right: 3.5%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .scope-col {
    min-height: 290px;
  }
}
@media screen and (max-width: 767px) {
  .scope-col {
    width: 100%;
    margin-right: 0;
  }
}
.scope-col:nth-child(3) {
  margin-right: 0;
}
.scope-col-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 30px 20px 26px;
}
@media screen and (max-width: 767px) {
  .scope-col-inner {
    padding: 15px;
  }
}
.scope-col-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .scope-col-text {
    font-size: 1.4rem;
  }
}
.scope-col-text a {
  text-decoration: underline;
}
.scope-col-text a:hover {
  text-decoration: none;
}
.scope-detail {
  border-top: 1px solid #000;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .scope-detail .section-text {
    padding: 0 30px;
    text-align: center;
  }
}
/* ========================================================================
   Component: support
========================================================================== */
.support {
  background: #f2f2f2;
}
.support .section-inner {
  max-width: 830px;
}
.support-box {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .support-box {
    margin-top: 50px;
  }
}
.support-table table {
  width: 100%;
  background: transparent linear-gradient(92deg, #abdafc 0%, #a7faf4 100%);
  border-collapse: collapse;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support-table table {
    font-size: 1.4rem;
  }
}
.support-table table tr th,
.support-table table tr td {
  vertical-align: middle;
  padding: 10px;
}
.support-table table tr th {
  text-align: center;
}
.support-table table thead tr th,
.support-table table thead tr td {
  padding: 5px 20px;
}
.support-table table tbody {
  background: #fff;
}
.support-table table tbody tr:not(.total):nth-child(even) td {
  background: #e3f3ff;
}
.support-table table .add-border-bottom {
  border-bottom: 4px solid #f2f2f2;
}
.support-table table .add-border-right {
  border-right: 4px solid #f2f2f2;
}
.support-table table .price,
.support-table table .total {
  text-align: right;
}
.support-table table .bold {
  font-weight: bold;
}
.support-table-title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .support-table-title {
    font-size: 1.8rem;
  }
}
.support-table-title small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .support-table-title small {
    font-size: 1.4rem;
  }
}
.support-detail-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support-detail-title {
    font-size: 1.8rem;
  }
}
.support-price-basic {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 40px;
}
@media screen and (max-width: 767px) {
  .support-price-basic {
    margin: 10px 0 40px;
  }
}
.support-price-basic .number {
  line-height: 1;
  font-size: 5.6rem;
  color: #50b4fd;
}
.support-price-basic .en {
  font-size: 5rem;
  color: #50b4fd;
  padding: 0 5px 0 10px;
}
.support-price-cards {
  width: 100%;
  max-width: 790px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .support-price-cards {
    display: flex;
    justify-content: space-between;
  }
}
.support-price-card {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .support-price-card {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .support-price-card dl {
    margin-bottom: 15px;
  }
}
.support-price-card dl dt {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  background: transparent linear-gradient(96deg, #50b4fd 0%, #3ee6d9 100%);
}
.support-price-card dl dd {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .support-price-card dl dd {
    font-size: 1.6rem;
  }
}
.support-price-card dl dd .small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .support-price-card dl dd .small {
    font-size: 1.4rem;
  }
}
.support-price-text {
  font-weight: bold;
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .support-price-text {
    text-align: center;
  }
}
/* ========================================================================
   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 9;
}
