@charset "UTF-8";
/*----------------------------------------------------
  base (styling element directly contain reset style)
----------------------------------------------------*/
a {
  color: #0A68C2;
  text-decoration: none;
  word-break: break-all;
  text-decoration: none;
  word-break: break-all;
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

a img {
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  /*color: #4555C7;*/
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, table, dl, dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

svg, img {
  max-width: 100%;
  vertical-align: top;
}


.contents {
  margin: auto;
}

main section {
  display: block;
}

.sp {
  display: none;
}

em.line {
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #DB4980));
  background: linear-gradient(transparent 50%, #DB4980 0%);
  background: -webkit-linear-gradient(transparent 50%, #DB4980 0%);
}

.d-none {
  display: none;
  speak: none;
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
}

.card.-col2 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card.-col2 .card__item {
  width: 100%;
  background: #FFF;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
}

.card__item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 28px;
  background: #FFF;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  color: #333;
  -webkit-transition: all .3s;
  transition: all .3s;
  line-height: 1.4;
}

.card__item.-image {
  padding: 40px;
}

.card__text {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding: 15px 13px 1px;
}

.card__image {
  overflow: hidden;
}

.card__title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: normal;
}

.card__title b {
  font-size: 2.6rem;
}

.card__p {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box.-col2 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box.-col2 .box__item {
  width: calc(50% - 14px);
}

.box.-col3 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box.-col3 .box__item {
  width: calc(33.33333% - 18px);
}

.box.-col3::after {
  content: "";
  display: block;
  width: calc(33.33333% - 18px);
  height: 0;
}

.box__item {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 28px;
  color: #333;
}

.box__item img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.textLink {
  position: relative;
}

.textLink a {
  color: #FFF;
  display: inline-block;
  padding-right: 15px;
  margin-top: .5em;
}

.textLink a::before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #DB4980;
  border-right: 3px solid #DB4980;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.t-right {
  text-align: right;
}

p.small, small {
  font-size: 80%;
  width: 100%;
}

/*左から右へ伸びる*/
@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/*下から上にフェードイン*/
.sa {
  opacity: 0;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.sa.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.sa--up {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}

/*縮小した状態から拡大しながらフェードイン*/
.sa--scaleUp {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.section {
  padding: 100px 0 120px;
  margin: 0;
}

.section__inner {
  max-width: 1190px;
  margin: auto;
  padding: 0 25px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section__title {
  position: relative;
  margin-bottom: 65px;
  line-height: 1.2;
}

.section__titleJa {
  display: block;
  color: #FFF;
  font-size: 3.4rem;
  font-weight: normal;
  position: relative;
}

.section h2 {
  color: #23395D;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
}

.section h2.title {
  margin-bottom: .5em;
}

.section h2.-large {
  text-align: center;
  line-height: 1.6;
  margin: 60px 0 40px !important;
}

.section h2.-large span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 auto .5em;
  opacity: .5;
}

.section h2.-large em {
  color: #23395D;
  font-size: 4.4rem;
}

.section h2.-large em.line {
  opacity: 1 !important;
  position: relative;
  border-bottom: none;
  z-index: 1;
}

.section h2.-large em.line.show::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  -webkit-animation: border_anim 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: border_anim 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  border-bottom: 24px solid #F5F060;
  z-index: -1;
}

.section h2 b {
  font-size: 2.8rem;
}

.section h3 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
}

.section h3.title {
  color: #23395D;
  font-size: 2rem;
  border-bottom: 2px solid #DB4980;
  padding-bottom: 4px;
  line-height: 1.4;
  display: table;
  margin: 0 auto;
}

.section h4 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #DB4980;
  margin-bottom: .5em;
  line-height: 1.4;
}

.section p {
  margin-bottom: 0;
  line-height: 1.8;
}

.section p.lead {
  font-family: "SST Japanese Pro Bold";
  font-weight: normal;
  text-align: center;
  margin: 0 auto 2em;
}

.section p.lead strong {
  font-size: 2.6rem;
  font-family: "SST Japanese Pro Bold";
  font-weight: initial;
}

.section em.line {
  background: none;
  color: #DB4980;
  border-bottom: 2px solid #DB4980;
  padding-bottom: 2px;
}

.section ul {
  margin-left: 1em;
  line-height: 1.6;
}

.section ul li {
  text-indent: -18px;
  margin-left: 15px;
}

.section ul li::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background-color: #55C4E7;
  color: #23395D !important;
  border-radius: 50%;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.section ul li + li {
  margin-top: .5em;
}

.section ul.note li {
  text-indent: -3em;
  margin-left: 3em;
}

.section ul.note li::before {
  content: none;
}

.table {
  width: 100%;
  background: #FFF;
  border-collapse: collapse;
  line-height: 1.5;
  margin: 1.5em auto;
}

.table th {
  background: #23395D;
  border: 1px solid #DCDDDD;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  padding: 2em 1.5em;
  white-space: nowrap;
}

.table th span {
  color: #F5F060;
}

.table td {
  border: 1px solid #DCDDDD;
  padding: 1.5em 2em;
  vertical-align: top;
}

.table td b {
  font-size: 2.4rem;
}

.table td .num {
  font-size: 3.6rem;
}

.table ul {
  margin-left: 0;
}

.table.-responsive {
  border-bottom: 1px solid #DCDDDD;
}

.table.-styleCol.-responsive td {
  vertical-align: inherit;
}

.contactBtn {
  background: #55C4E7;
  color: #23395D !important;
}

.contactBtn:hover {
  background: #F5F060;
}

.dlBtn {
  background: #DB4980;
}

.dlBtn:hover {
  background: #F5F060;
}

.cta__btn {
  border-radius: 50px;
  color: #FFF;
  font-weight: normal;
  text-align: center;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  position: relative;
  -webkit-transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
  transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cta__btn:visited {
  color: #FFF;
}

.cta__btn span {
  position: relative;
  line-height: 3.5;
  -webkit-transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
  transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
}
.cta__btn.contactBtn::after {
    background: url(/service/cc/asset/img/icon_arrow_blue.svg) no-repeat;
}
.cta__btn::after {
  content: "";
  background: url(/service/cc/asset/img/icon_arrow.svg) no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.cta__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #F5F060;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 50px;
  overflow: hidden;
}

.cta__btn:hover {
  -webkit-transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
  transition: all 600ms cubic-bezier(0.385, 0.01, 0, 1);
  text-decoration: none;
  overflow: hidden;
}

.cta__btn:hover span {
  color: #23395D;
}

.cta__btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.cta__btn:hover::after {
  right: 24px;
  background: url(/service/cc/asset/img/icon_arrow_blue.svg) no-repeat;
}

.cta {
  background: url(/service/cc/asset/img/img_cta_bg_sp.jpg) center/cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 70px 0;
}

.cta__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta__title {
  color: #FFF;
  font-size: 3rem !important;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.25em;
}

.cta > .section__inner {
  padding: 0 20px;
}

.hero {
  background: #DB4980;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.hero .section__inner {
  width: auto;
  position: relative;
  margin: auto;
}

.hero__kv {
  position: absolute;
  top: 0;
  left: -140px;
}

.hero__body {
  position: relative;
}

.hero__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 500px;
}

.hero__btn .dlBtn {
  background: #FFF;
  color: #DB4980;
}

.hero__btn .dlBtn::after {
  background: url(/service/cc/asset/img/icon_arrow_pink.svg) no-repeat;
}

.hero__btn .dlBtn:hover {
  background: #F5F060;
}

.hero__btn .dlBtn:hover::after {
  background: url(/service/cc/asset/img/icon_arrow_blue.svg) no-repeat;
}

.about {
  background: #DCDCDC;
  position: relative;
  font-weight: normal;
}

.about h2.title {
  width: 100%;
  margin: 0;
}

.about .section__title {
  margin: 0;
  text-align: left;
}

.about__body {
  position: relative;
  margin: 0 10px 40px;
}

.about__image {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.about .card {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  gap: 28px;
}

.about .card__item {
  margin-bottom: 0 !important;
}

.about .card__image {
  padding: 6px 0 6px;
}

.about .card__image img {
  width: 270px;
  margin: 0 auto;
  display: block;
}

.about .card__text {
  position: relative;
  padding: 10px 30px 20px;
}

.about .card__title {
  color: #23395D;
  font-size: 2rem;
  position: relative;
  letter-spacing: -.03em;
}

.about .card__title b {
  font-size: 2.6rem;
}

.about .pattern__body {
  margin: 100px 0 140px;
}

.about .pattern__body .table {
  max-width: 820px;
}

.customize {
  background: #23395D;
  position: relative;
  overflow: hidden;
}

.customize::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 122px 0 122px;
  border-color: #DCDCDC transparent transparent transparent;
  z-index: 1;
}

.customize h2.-large {
  color: #F5F060;
}

.customize h2.-large em {
  color: #F5F060;
}

.customize h2.-large em.line.show::before {
  border-bottom: 24px solid #DB4980;
}

.customize h2 + p {
  color: #FFF;
  margin-bottom: 2em;
}

.customize__wrapper::before {
  content: "";
  background: url(/service/cc/asset/img/img_customize_bg.png) center top;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 1 !important;
  background-attachment: fixed;
}

@-webkit-keyframes rotate-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.customize__wrapper picture {
  display: block;
  width: 100%;
  position: relative;
  margin: -80px auto;
  z-index: 0;
}

.customize__wrapper picture::before {
  content: "";
  background: url(/service/cc/asset/img/img_customize_01_bg.png) left top no-repeat;
  position: absolute;
  top: 107px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 840px;
  height: 840px;
  -webkit-animation: rotate-anime 60s linear infinite;
          animation: rotate-anime 60s linear infinite;
  z-index: -1;
}

.customize__wrapper picture img {
  z-index: 1;
}

.customize__body {
  color: #FFF;
  max-width: 740px;
  padding: 20px 10px;
  margin: 0 auto;
}

.customize__body ul {
  margin-top: 1em;
}

.customize__item {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-left: 6px solid #DB4980;
  border-radius: 20px;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.customize__item .customize__title::before {
  background: url(/service/cc/asset/img/voicebot/icon_check.svg) no-repeat !important;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.customize__title {
  font-size: 2.1rem !important;
  font-weight: normal;
  color: #FFF;
  text-align: left !important;
  line-height: 1.4;
  margin: .25em 0 .25em;
  text-indent: -34px;
  padding-left: 34px;
}

.customize__title::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.function {
  position: relative;
  padding: 20px 10px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: inherit;
  margin-top: 20px;
}

.function::before {
  content: "";
  background: url(/service/cc/asset/img/voicebot/img_illust_01.png) center bottom/cover no-repeat;
  position: absolute;
  bottom: -50px;
  left: -54px;
  width: 85px;
  height: 213px;
}

.function::after {
  content: "";
  background: url(/service/cc/asset/img/voicebot/img_illust_02.png) center bottom/cover no-repeat;
  position: absolute;
  right: -70px;
  bottom: -50px;
  width: 200px;
  height: 213px;
}

.function__body {
  padding: 20px 10px;
}

.function h3.title {
  margin-bottom: 2.5em;
}

.function__item {
  width: 100%;
  margin-bottom: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.function__item:nth-of-type(n+2) {
  border-left: 1px dotted #CCC;
}

.function__item:nth-of-type(3) {
  border-left: none;
}

.function__item .box.-col2 .box__item {
  width: calc(50% - 4px);
  margin-bottom: 0 !important;
}

.report {
  background: #f4f4f4;
}

.report__body {
  max-width: 1000px;
  margin: 0 auto;
}

.report .list.-check {
  font-weight: normal;
}

.report .list.-check li {
  font-family: "SST Japanese Pro Bold";
  text-indent: -32px;
  margin-left: 25px;
}

.report .list.-check li::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background: url(/service/cc/asset/img/voicebot/icon_check.svg) no-repeat;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.report .list.-check li + li {
  margin-top: .5em;
}

.price {
  background: #DCDCDC;
}

.price__body {
  max-width: 800px;
  margin: 0 auto;
}

.price h3.title {
  margin: 1.5em auto .75em;
}

@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
  a:hover img {
    opacity: .85;
  }
  .footerBnr__list::after, .footerBnr__list::before {
    content: "";
    display: block;
    width: 290px;
  }
  .footerBnr__list::before {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .card {
    margin-bottom: 60px;
  }
  .card.-col2 .card__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 14px);
  }
  .section__titleJa {
    font-size: 5.4rem;
  }
  .section h2.title {
    font-size: 3.5rem;
  }
  .section h2.-large span {
    font-size: 1.4rem;
    margin: 0 auto .5em;
  }
  .section h2 b {
    font-size: 4.4rem;
  }
  .section h3 {
    font-size: 2.4rem;
  }
  .section h3.title {
    font-size: 3rem;
  }
  .section h4 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1em;
  }
  .table.-styleCol.-responsive .pc-none {
    border: none;
    background: transparent;
  }
  .contactBtn {
    margin-right: 12px;
  }
  .dlBtn {
    margin-left: 12px;
  }
  .cta__btn {
    font-size: 2.4rem;
    width: 100%;
    max-width: 460px;
    height: 84px;
  }
  .cta {
    padding: 100px 0;
    background: url(/service/cc/asset/img/img_cta_bg.jpg) center/cover;
  }
  .hero .section__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__kv img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 680px;
  }
  .hero__body {
    width: 1190px;
    height: 680px;
    margin: 0;
  }
  .about h2 img {
    margin: 0 0 0 12px;
  }
  .about .section__title {
    margin: 0 0 40px 60px;
  }
  .about__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 60px 160px;
  }
  .about__image {
    width: 532px;
    height: 413px;
    position: absolute;
    right: -100px;
    top: -40px;
  }
  .about__text {
    line-height: 2.2 !important;
  }
  .about .card__image {
    padding: 16px 0 8px;
  }
  .about .card__text {
    padding: 16px 64px 40px;
  }
  .customize h2 + p {
    font-size: 1.5rem;
    text-align: center;
  }
  .customize__body {
    padding: 0 140px 100px;
  }
  .customize__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 60px 15px 40px;
  }
  .customize__item .customize__title::before {
    -webkit-transform: translateY(0.2em);
            transform: translateY(0.2em);
  }
  .customize__title {
    font-size: 2.6rem !important;
    line-height: 1.8;
  }
  .function {
    padding: 50px 60px 80px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .function__body {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .function__item {
    width: 50%;
    padding: 0 22px;
  }
  .function__item:nth-child(n+3) {
    width: 33.33333%;
    margin-top: 40px;
  }
  .report__body .card__item.-image {
    padding: 80px;
  }
  .report .list.-check {
    max-width: 700px;
    font-size: 1.8rem;
    margin: 0 auto 3em;
  }
  .price .table {
    margin-top: 60px;
  }
  .price .table td {
    padding: 1.5em 8em;
  }
}

@media screen and (max-width: 1000px) {
  body {
    margin: 0;
  }
  .hero__btn {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  }
  .hero__btn .contactBtn {
    margin: -50px 0 10px;
  }
  .cta__box {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  }
  .function::before {
    left: -16px;
  }
  .function::after {
    right: -18px;
  }
}

@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
  body {
    min-width: 0;
    font-size: 1.4rem;
    overflow: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .card__item {
    margin-bottom: 20px;
  }
  .card__item.-image {
    padding: 20px;
  }
  .box {
    margin-bottom: 1.5em;
  }
  .box.-col2 .box__item {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .box.-col3 .box__item {
    width: 100%;
  }
  p.small, small {
    margin-bottom: 1.5em;
  }
  .section {
    padding: 60px 0;
  }
  .section__inner {
    width: auto;
    padding: 0 15px;
  }
  .section__title {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .section h2.-large {
    line-height: 1.4;
    margin: 20px 0 30px !important;
  }
  .section h2.-large em {
    font-size: 3rem;
  }
  .section h2.-large em.line.show::before {
    border-width: 16px;
  }
  .section p.lead {
    text-align: left;
  }
  .section p.lead strong {
    font-size: 2rem;
  }
  .section em.line {
    padding-bottom: 2px;
  }
  .table th {
    padding: 1em 1.5em;
    font-size: 1.4rem;
  }
  .table td {
    padding: 1em 1.5em;
  }
  .table td b {
    font-size: 1.8rem;
  }
  .table td .num {
    font-size: 2.4rem;
  }
  .table.-responsive th {
    display: block;
    border-bottom: none;
  }
  .table.-responsive td {
    display: block;
    border-bottom: none;
  }
  .table.-styleCol.-responsive thead {
    display: none;
  }
  .table.-styleCol.-responsive th {
    display: block;
    border-bottom: none;
  }
  .table.-styleCol.-responsive td {
    display: block;
    border-bottom: none;
    position: relative;
  }
  .table.-styleCol.-responsive td::before {
    /*display: table-cell;*/
    display: block;
    content: attr(data-label);
    color: #DB4980;
    width: 6em;
    vertical-align: top;
    margin-bottom: .5em;
  }
  .cta__btn {
    font-size: 1.6rem;
    width: 100%;
    height: 62px;
    margin-bottom: .5em;
  }
  .cta__btn::after {
    right: 20px;
  }
  .cta__btn:hover::after {
    right: 16px;
  }
  .cta__title {
    font-size: 2.1rem !important;
    margin-bottom: 1em;
  }
  .hero {
    padding: 30px 0 40px;
  }
  .hero__kv {
    position: initial;
    display: block;
    margin: 0 auto auto;
  }
  .hero__kv img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .hero__btn {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    margin: -30px auto 0;
  }
  .cta__box {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  }
  .about {
    padding: 60px 0 20px;
  }
  .about .section__inner {
    width: auto;
  }
  .about .card__title {
    font-size: 2rem;
  }
  .about .card__title b {
    font-size: 2.2rem;
  }
  .about .pattern__body {
    padding: 0;
  }
  .customize {
    padding: 60px 0 100px;
  }
  .customize::before {
    top: -50px;
  }
  .customize h2.-large em.line.show::before {
    border-bottom: 16px solid #DB4980;
  }
  .customize__wrapper picture {
    margin: -40px auto;
  }
  .customize__wrapper picture::before {
    background: url(/service/cc/asset/img/img_customize_01_bg_sp.png) center top/cover no-repeat;
    width: 100%;
    height: 100%;
    top: 13%;
  }
  .function::before {
    left: 0;
    width: 43px;
    height: 107px;
  }
  .function::after {
    right: -10px;
    width: 100px;
    height: 107px;
  }
  .function h3.title {
    margin-bottom: .5em;
  }
  .function h4.title {
    padding-left: .5em;
  }
  .function__item:nth-child(n+3) {
    margin-bottom: 1.5em;
  }
  .function__item:nth-of-type(n+2) {
    border-left: none;
    border-top: 1px dotted #CCC;
    padding-top: 20px;
  }
  .price .table td {
    text-align: center;
  }
}

@media screen and (max-width: 320px) {
  body {
    margin: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .logo__item {
    margin-top: 4px;
  }
  .headerSearch input[type='text'] {
    padding: 7px 10px 3px;
  }
  .box.-border .box__item ul {
    width: 100%;
  }
}
