@charset "UTF-8";
/*============================================================
リセット
============================================================*/
/*! A Modern CSS Reset https://github.com/hankchizljaw/modern-css-reset*/
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip: ink;
}
img, picture {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/*============================================================
デフォルト
============================================================*/
body {
  line-height: 1;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@-moz-document url-prefix() {
}ul, ol {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  word-wrap: break-word;
}
a:focus:not(:focus-visible) {
  outline: 0;
}
a:focus-visible {
  outline: 2px solid #666;
}
.is-focus-hidden a {
  pointer-events: none;
}
a, a img {
  transition: .2s linear;
  -webkit-tap-highlight-color: transparent;
}
img {
  height: auto;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
form {
  margin: 0;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 32px;
  padding: 0 5px;
}
.type-mobile input[type="text"], .type-mobile input[type="tel"], .type-mobile input[type="email"], .type-mobile input[type="password"] {
  min-height: 38px;
}
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 5px;
  line-height: 150%;
}
input[type="radio"], input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
}
input[type="submit"], input[type="reset"], input[type="button"], button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  transition: .2s linear;
  -webkit-tap-highlight-color: transparent;
}
input[type="submit"]:not([disabled]), input[type="reset"]:not([disabled]), input[type="button"]:not([disabled]), button:not([disabled]) {
  cursor: pointer;
}
input[type="submit"]:focus:not(:focus-visible), input[type="reset"]:focus:not(:focus-visible), input[type="button"]:focus:not(:focus-visible), button:focus:not(:focus-visible) {
  outline: 0;
}
input[type="submit"]:focus-visible, input[type="reset"]:focus-visible, input[type="button"]:focus-visible, button:focus-visible {
  outline: 2px solid #666;
}
/*============================================================
レイアウト
============================================================*/
.l-wrapper.is-fixed {
  position: fixed;
  right: 0;
  left: 0;
}
_:lang(x)::-internal-media-controls-overlay-cast-button, .l-wrapper.is-fixed.pc {
  right: 17px;
}
@-moz-document url-prefix() {
  .l-wrapper.is-fixed {
    right: 17px;
  }
}
_:-ms-lang(x)::-ms-backdrop, .l-wrapper.is-fixed {
  right: 17px;
}
@supports (-ms-ime-align: auto) {
  .l-wrapper.is-fixed {
    right: 16px;
  }
}
.l-wrapper.is-fixed .cmn-btn-01 {
  pointer-events: none;
}
.l-wrapper.is-fixed-footer {
  /*フッター下固定のため*/
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
_:-ms-lang(x)::-ms-backdrop, .l-wrapper.is-fixed-footer {
  display: block;
  position: relative;
}
/*----------------------------------------
メインエリア
----------------------------------------*/
.l-main {
  width: 100%;
  color: #434542;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-main {
    margin: 0 auto;
  }
}
/*----------------------------------------
ヘッダー
----------------------------------------*/
.header-column1 {
  width: 100%;
  box-shadow: 0 0 18px rgba(103, 132, 193, .3);
}
@media screen and (max-width: 767px) {
  .header-column1 {
    top: 10px;
    padding: 0 10px;
  }
}
.header-inner {
  display: flex;
  width: 100%;
  max-width: 1000px;
  height: 75px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}
@media screen and (min-width: 768px) {
  .header-inner {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    z-index: 10;
    min-width: 320px;
    height: 56px;
    padding: 9px 0 9px 0;
  }
  _:-ms-lang(x)::-ms-backdrop, .header-inner {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    display: flex;
    align-items: center;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-pc .header-logo a:hover, .type-mobile .header-logo a:active {
  opacity: .7;
}
.header-logo img {
  margin: 0 0 0 20px;
  transition-property: opacity;
}
@media screen and (max-width: 930px) and (min-width: 768px) {
  .header-logo img {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo img {
    margin: 0;
  }
}
.nav {
  margin-left: auto;
}
/*--- pcメニュー -------------------*/
.menu-pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .menu-pc {
    display: none;
  }
}
.menu-pc li:not(:first-of-type) {
  margin-left: 2em;
}
@media screen and (max-width: 930px) and (min-width: 768px) {
  .menu-pc li:not(:first-of-type) {
    margin-left: .75em;
  }
}
.menu-pc a {
  position: relative;
  color: #434542;
  font-size: 14px;
}
@media screen and (max-width: 930px) and (min-width: 768px) {
  .menu-pc a {
    font-size: 12px;
  }
}
.type-pc .menu-pc a:hover::before, .type-mobile .menu-pc a:active::before {
  transform: translate(0, 1px);
}
.menu-pc a::before {
  display: inline-block;
  color: #6ab0e0;
  font-family: "icomoon";
  content: "\f001";
  transition: .2s ease-out;
  transform: translate(-2px, 1px);
}
/*--- spメニュー -------------------*/
.menu-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-sp {
    display: flex;
    position: fixed;
    z-index: 12;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh;
    padding: 14px 12px 0;
    background: rgba(122, 176, 208, .95);
    transition: all .2s linear;
    transform: translateX(-100vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (min-width: 651px) {
  .menu-sp {
    flex-wrap: wrap;
    align-content: flex-start;
  }
}
@media screen and (max-width: 767px) and (max-width: 650px) {
  .menu-sp {
    flex-direction: column;
    align-items: center;
  }
}
.menu-sp.is-visible {
  transform: translateX(-20vw);
}
.menu-sp.is-visible a {
  display: block;
}
.menu-sp li {
  width: 100%;
}
.menu-sp li:not(:first-of-type) {
  margin-top: .5em;
}
.menu-sp a {
  display: none;
  padding: 1em 12px .8em;
  border-radius: 2px;
  background: #fff;
  text-align: center;
  color: inherit;
}
.type-pc .menu-sp a:hover, .type-mobile .menu-sp a:active {
  opacity: .8;
}
.menu-sp a:focus:not(:focus-visible) {
  outline: 0;
}
.menu-sp a:focus-visible {
  opacity: .8;
}
/*--- メニュー開閉ボタン -------------------*/
.menu-btn {
  display: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    display: flex;
    position: absolute;
    z-index: 13;
    top: calc(((56px - 38px)/2) - 5px);
    right: 14px;
    width: 38px;
    height: 38px;
    background: transparent;
    cursor: pointer;
  }
}
.menu-btn::after {
  position: absolute;
  bottom: -.5em;
  left: 0;
  width: 38px;
  text-align: center;
  color: #434542;
  font-size: 10px;
  content: "menu";
}
_:-ms-lang(x)::-ms-backdrop, .menu-btn::after {
  bottom: 0;
}
.menu-btn.is-active::after {
  content: "close";
}
/*--- ハンバーガーライン -------------------*/
.type-pc .menu-btn:not(.is-active):hover span:nth-of-type(1) {
  top: 11px;
}
.type-pc .menu-btn:not(.is-active):hover span:nth-of-type(3) {
  top: 25px;
}
.menu-btn span {
  display: block;
  position: absolute;
  left: 5px;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #434542;
  transition: .2s linear;
}
.menu-btn span:nth-of-type(1) {
  top: 10px;
  transform: scale(1);
}
.menu-btn span:nth-of-type(2) {
  top: 18px;
  background: none;
}
.menu-btn span:nth-of-type(2)::before, .menu-btn span:nth-of-type(2)::after {
  display: block;
  position: absolute;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #434542;
  content: "";
  transition: all .2s;
  transform: rotate(0);
}
.menu-btn span:nth-of-type(3) {
  top: 26px;
  transform: scale(1);
}
.menu-btn.is-active span:nth-of-type(1) {
  top: 48%;
  transform: translateY(0) scale(0);
}
.menu-btn.is-active span:nth-of-type(2)::before {
  transform: rotate(45deg);
}
.menu-btn.is-active span:nth-of-type(2)::after {
  transform: rotate(-45deg);
}
.menu-btn.is-active span:nth-of-type(3) {
  top: 48%;
  transform: translateY(0) scale(0);
}
/*----------------------------------------
フッター
----------------------------------------*/
footer {
  width: 100%;
  background: #85bbdb;
}
@media screen and (max-width: 767px) {
  footer {
    min-width: auto;
  }
}
.is-fixed-footer footer {
  margin-top: auto;
}
_:-ms-lang(x)::-ms-backdrop, .is-fixed-footer footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer-inner {
  margin: 0 auto;
  padding: 80px 0 40px;
  color: #fff;
}
.footer-tel {
  text-align: center;
  font-size: 18px;
}
.footer-tel-number {
  margin: 10px 0 0;
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: bold !important;
}
.footer-tel-number::before {
  margin: 0 5px  0 0;
  font-size: 80%;
}
.footer-tel-time {
  margin: 10px 0 0;
}
.footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 40px 0 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  _:-ms-lang(x)::-ms-backdrop, .footer-link {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-link {
    padding: 20px 0;
  }
}
.footer-link-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-link-list {
    display: block;
  }
}
.footer-link-list li + li {
  margin: 0 0 0 2em;
}
@media screen and (max-width: 767px) {
  .footer-link-list li + li {
    margin: 1em 0 0;
  }
}
.footer-link-list li a {
  color: #434542;
}
.footer-link-list li a::before {
  display: inline-block;
  color: #6ab0e0;
  font-family: "icomoon";
  content: "\f001";
  transition: .2s ease-out;
  transform: translate(-2px, 1px);
}
.type-pc .footer-link-list li a:hover::before, .type-mobile .footer-link-list li a:active::before {
  transform: translate(0, 1px);
}
.footer-logo {
  margin: 40px 0 0;
}
.footer-logo img {
  margin: 0 auto;
}
/*============================================================
汎用スタイル
============================================================*/
.cmn-ttl-01 {
  text-align: center;
  color: #1f2a4b;
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cmn-ttl-01 {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-ttl-01 .sp-only {
    display: none;
  }
}
.cmn-ttl-en {
  text-align: center;
  color: #85bbdb;
  font-size: 20px;
}
/*----------------------------------------
トップへ戻るボタン
----------------------------------------*/
.pagetop {
  opacity: 0;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 10px;
  transition: .2s linear;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 5px;
    bottom: 5px;
  }
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #0b547b;
  color: #e8eaed;
  transition: .2s linear;
  transform: scale(1);
}
.type-pc .pagetop a:hover, .type-mobile .pagetop a:active {
  opacity: .9;
  transform: scale(1.05);
}
.pagetop a span::before {
  color: #fff;
  font-size: 18px;
}
/*----------------------------------------
アイコンフォント
----------------------------------------*/
@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url("../fonts/icon/icomoon.ttf?yk1d8a") format("truetype"), url("../fonts/icon/icomoon.woff?yk1d8a") format("woff"), url("../fonts/icon/icomoon.svg?yk1d8a#icomoon") format("svg");
}
[class^="fa-"], [class*=" fa-"] {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: never;
}
[class^="fa-"]::before, [class^="fa-"]::after, [class*=" fa-"]::before, [class*=" fa-"]::after {
  font-family: "icomoon";
}
.fa-chevron-right::before {
  content: "\f001";
}
.fa-arrow-up::before {
  content: "\f002";
}
.fa-arrow-left::before {
  display: inline-block;
  content: "\f002";
  transition: .2s;
  transform: rotate(-90deg);
}
.type-pc .fa-arrow-left:hover::before {
  transform: rotate(-90deg) translateY(-2px);
}
.fa-phone::before {
  content: "\f003";
}
.fa-angle-double-down::after {
  content: "\f004";
}
/*============================================================
トップページ
============================================================*/
/*----------------------------------------
概要（ファーストビュー）
----------------------------------------*/
.sec-top-summary {
  width: 100%;
  background: url("../img/bg_top_summary.png") no-repeat top -15px right 0;
  background-size: 600px auto;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .sec-top-summary {
    background-position: top -15px right -100px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-summary {
    background-position: bottom 20px right -90px;
    background-size: contain;
  }
}
.top-summary-contents {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 20px 118px;
}
@media screen and (max-width: 767px) {
  .top-summary-contents {
    padding: 40px 10px 60px;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .top-summary-txt {
    max-width: 60%;
  }
}
.top-summary-maincopy {
  letter-spacing: 2px;
  font-weight: 500;
  text-shadow: 2px  2px 1px #fff, -2px  2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px  0 1px #fff, 0  2px 1px #fff, -2px  0 1px #fff, 0 -2px 1px #fff;
}
.top-summary-maincopy span {
  display: block;
}
.top-summary-maincopy .s-point1 {
  font-size: 22px;
  letter-spacing: -.5px;
}
@media screen and (max-width: 767px) {
  .top-summary-maincopy .s-point1 {
    font-size: 18px;
  }
}
.top-summary-maincopy .s-point2 {
  margin: 18px 0 0;
  font-size: 54px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-summary-maincopy .s-point2 {
    font-size: 45px;
  }
}
.top-summary-maincopy .s-point3 {
  margin: 22px 0 0;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .top-summary-maincopy .s-point3 {
    font-size: 19px;
    letter-spacing: -.25px;
  }
}
.top-summary-subcopy {
  position: relative;
  max-width: 400px;
  margin: 80px 0 0;
  line-height: 180%;
  text-shadow: 2px  2px 1px #fff, -2px  2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px  0 1px #fff, 0  2px 1px #fff, -2px  0 1px #fff, 0 -2px 1px #fff;
}
@media screen and (max-width: 767px) {
  .top-summary-subcopy {
    max-width: none;
  }
}
.top-summary-subcopy .s-fz-s {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-summary-subcopy p + p {
    margin: .75em 0 0;
  }
}
.top-summary-subcopy::before {
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  width: 160px;
  height: 2px;
  background: #85bbdb;
  content: "";
}
/*----------------------------------------
得意とするAIソリューション
----------------------------------------*/
.sec-top-solution {
  padding: 0 100px;
  background: url("../img/bg_top_solution.jpg");
  background-size: cover;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .sec-top-solution {
    padding: 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-solution {
    padding: 40px 10px;
  }
}
.top-solution-contents {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(122, 176, 208, .52);
  background: #fff;
  transform: translateY(140px);
}
@media screen and (max-width: 767px) {
  .top-solution-contents {
    transform: translateY(80px);
  }
}
.top-solution-inner {
  padding: 80px 80px 0;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .top-solution-inner {
    padding: 80px 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .top-solution-inner {
    padding: 40px 10px 0;
  }
}
.top-solution-detail {
  max-width: 480px;
  margin: 30px auto 0;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .top-solution-detail {
    max-width: none;
  }
}
.top-solution-table {
  width: 100%;
  margin: 40px 0 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-solution-table {
    font-size: 14px;
  }
}
.top-solution-table th, .top-solution-table td {
  padding: 5px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .top-solution-table th br, .top-solution-table td br {
    display: none;
  }
}
.top-solution-table thead th {
  background: #7ab0d0;
  color: #fff;
  font-weight: normal;
}
.top-solution-table tbody tr:nth-of-type(odd) td {
  background: #f5f5f5;
}
.top-solution-table tbody tr:nth-of-type(even) td {
  background: #e6edf4;
}
.top-solution-table tr td {
  color: #5b5d5b;
}
.top-solution-table tr td:last-of-type {
  min-width: 4em;
}
.top-solution-table tr.s-point td {
  color: #1f2a4b;
  font-weight: bold;
}
.top-solution-img {
  margin: 40px 0 0;
}
.top-solution-img img {
  width: 100%;
  height: auto;
}
/*----------------------------------------
導入実績
----------------------------------------*/
.sec-top-experience {
  padding: 260px 0 140px;
}
@media screen and (max-width: 767px) {
  .sec-top-experience {
    padding: 100px 0 60px;
  }
}
.top-experience-ttl-secondary {
  padding: 0 0 1em;
  border-bottom: 1px solid #cdcdcd;
  text-align: center;
  color: #7ab0d0;
  font-size: 26px;
  line-height: 150%;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-experience-ttl-secondary .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-experience-ttl-secondary {
    font-size: 22px;
  }
}
.top-experience-contents {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px 0;
}
@media screen and (max-width: 767px) {
  .top-experience-contents {
    padding: 0 10px;
  }
}
.top-experience-txt {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 18px;
}
.top-experience-txt strong {
  text-shadow: 0 0 1px;
}
@media screen and (max-width: 767px) {
  .top-experience-txt {
    max-width: none;
    margin: 20px 0 0;
  }
}
.top-experience-txt p {
  line-height: 180%;
}
.top-experience-txt .s-fz-s {
  font-size: 14px;
}
.top-experience-txt p + p {
  margin: 2em 0 0;
}
.top-experience-txt-point {
  width: 100%;
  padding: 60px 20px;
  background: #65badb;
  background: linear-gradient(47deg, #0091cd 0%, #65badb 80%);
  text-align: center;
  color: #fff;
  font-size: 26px;
  line-height: 180%;
  text-shadow: 0 0 18px rgba(31, 42, 75, .7);
}
@media screen and (min-width: 767px) {
  .top-experience-txt-point .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-experience-txt-point {
    padding: 30px 10px;
    font-size: 22px;
  }
}
.top-experience-txt-point + .top-experience-contents {
  margin: 60px auto 0;
}
.top-experience-img {
  position: relative;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .top-experience-img {
    margin: 10px 0 0;
  }
}
.top-experience-img img {
  display: block;
  margin: 0 auto;
}
.top-experience-date {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .top-experience-date {
    display: block;
  }
}
.top-experience-date-item {
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .top-experience-date-item {
    max-width: none;
  }
}
.top-experience-date-item + .top-experience-date-item {
  margin: 0 0 0 2px;
}
@media screen and (max-width: 767px) {
  .top-experience-date-item + .top-experience-date-item {
    margin: 20px 0 0;
  }
}
.top-experience-date-ttl {
  padding: .75em 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .top-experience-date-ttl {
    border-radius: 8px 8px 0 0;
  }
}
.top-experience-date-ttl.type-before {
  background: #85bbdb;
}
@media screen and (min-width: 768px) {
  .top-experience-date-ttl.type-before {
    border-radius: 8px 0 0 0;
  }
}
.top-experience-date-ttl.type-after {
  background: #628fc7;
}
@media screen and (min-width: 768px) {
  .top-experience-date-ttl.type-after {
    border-radius: 0 8px 0 0;
  }
}
.top-experience-date-list li {
  margin: 1px 0 0;
  padding: 1em 0;
  text-align: center;
  color: #5b5b5b;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .top-experience-date-list li:last-of-type {
    border-radius: 0 0 8px 8px;
  }
}
.top-experience-date-list.type-before li {
  background: #e1ecf6;
}
@media screen and (min-width: 768px) {
  .top-experience-date-list.type-before li:last-of-type {
    border-radius: 0 0 0 8px;
  }
}
.top-experience-date-list.type-after li {
  background: #e3ecfc;
}
@media screen and (min-width: 768px) {
  .top-experience-date-list.type-after li:last-of-type {
    border-radius: 0 0 8px 0;
  }
}
/*----------------------------------------
導入のメリット
----------------------------------------*/
.sec-top-merit {
  background: #e1ecf6;
}
.top-merit-contents {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 20px 60px;
}
@media screen and (max-width: 767px) {
  .top-merit-contents {
    padding: 70px 10px;
  }
}
.top-merit-primary {
  overflow: hidden;
  margin: 60px auto 0;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(122, 176, 208, .52);
  background: #fff;
}
.top-merit-primary + .top-merit-primary {
  margin: 40px auto 0;
}
.top-merit-primary-ttl {
  padding: 18px 0;
  border-radius: 8px 8px 0 0;
  background: #1f2a4b;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}
.top-merit-secondary {
  width: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-merit-secondary {
    width: 100%;
  }
}
.top-merit-secondary-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-merit-secondary-flex {
    display: block;
  }
}
.top-merit-secondary-ttl {
  padding: 8px 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}
.type-merit .top-merit-secondary-ttl {
  background: #85bbdb;
}
.type-demerit .top-merit-secondary-ttl {
  background: #628fc7;
}
.top-merit-secondary-item {
  padding: 20px 40px 20px 50px;
  color: #5b5b5b;
}
@media screen and (max-width: 767px) {
  .top-merit-secondary-item {
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 40px;
  }
}
@media screen and (min-width: 768px) {
  .type-merit .top-merit-secondary-item, .type-demerit .top-merit-secondary-item {
    position: relative;
  }
  .type-merit .top-merit-secondary-item::before, .type-demerit .top-merit-secondary-item::before {
    display: block;
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e1ecf6;
    content: "";
  }
  .type-merit .top-merit-secondary-item::before {
    right: -1px;
  }
  .type-demerit .top-merit-secondary-item::before {
    left: -1px;
  }
}
@media screen and (max-width: 767px) {
  .type-demerit .top-merit-secondary-item {
    border-radius: 0 0 8px 8px;
  }
}
.top-merit-ol {
  font-size: 18px;
  line-height: 150%;
}
.top-merit-ol li + li {
  margin: 5px 0 0;
}
span + .top-merit-ol {
  margin: .25em 0 0;
}
.top-merit-ul li {
  position: relative;
}
.top-merit-ul li::before {
  position: absolute;
  left: -1em;
  content: "・";
}
/*----------------------------------------
リンク
----------------------------------------*/
.sec-top-link {
  margin: 80px 0 0;
}
.top-link-contents {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-link-contents {
    flex-direction: column;
    align-items: center;
  }
}
.top-link-item + .top-link-item {
  margin: 0 0 0 80px;
}
@media screen and (max-width: 767px) {
  .top-link-item + .top-link-item {
    margin: 20px 0 0;
  }
}
.top-link-item a {
  display: block;
  width: 280px;
  padding: 1.1em;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
}
.type-pc .top-link-item a:hover, .type-mobile .top-link-item a:active {
  box-shadow: 0 8px 16px rgba(104, 118, 148, .44);
  transform: translateY(-1px);
}
.top-link-item a.type-contact {
  background: #e6ad00;
}
.top-link-item a.type-case {
  background: #85bbdb;
}
/*----------------------------------------
お客様の声
----------------------------------------*/
.sec-top-voice {
  margin: 124px 0 0;
  padding: 0 0 80px;
}
@media screen and (max-width: 767px) {
  .sec-top-voice {
    padding: 120px 10px 60px;
  }
}
.top-voice-list {
  width: 100%;
  max-width: 640px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .top-voice-list {
    margin-top: 60px;
  }
}
.top-voice-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 8px;
  background: #e6edf4;
}
@media screen and (max-width: 767px) {
  .top-voice-item {
    display: block;
    padding: 0 20px 20px;
  }
}
.top-voice-item + .top-voice-item {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .top-voice-item + .top-voice-item {
    margin: 40px 0 0;
  }
}
.top-voice-item-img {
  width: 103px;
}
.top-voice-item-txt {
  width: calc(100% - 140px);
  margin: 1em 0 1em 36px;
  color: #2b4c66;
  font-size: 18px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .top-voice-item-txt {
    width: auto;
    margin: 0;
  }
}
/*============================================================
活用事例
============================================================*/
.case-header {
  padding: 80px 10px;
  background: #e1ecf6;
}
.case-contents {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 20px 80px;
}
.case-link-list {
  max-width: 640px;
  margin: 40px auto 0;
}
.case-link-list li + li {
  margin: .5em 0 0;
}
.case-link-list a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 40px;
  padding: 0 40px;
  border: 2px solid #7ab0d0;
  border-radius: 8px;
  background: #fff;
  color: #7ab0d0;
  font-size: 20px;
  transition: .2s background, .2s color, .2s transform, .2s box-shadow;
}
@media screen and (max-width: 767px) {
  .case-link-list a {
    padding: 0 90px 0 10px;
    font-size: 16px;
  }
}
_:-ms-lang(x)::-ms-backdrop, .case-link-list a {
  height: 40px;
}
.type-pc .case-link-list a:hover, .type-mobile .case-link-list a:active {
  box-shadow: 0 8px 16px rgba(104, 118, 148, .44);
  background: #7ab0d0;
  color: #fff;
  transform: translateY(-1px);
}
.type-pc .case-link-list a:hover .case-link-more, .type-mobile .case-link-list a:active .case-link-more {
  background: #fff;
  color: #7ab0d0;
}
.case-link-new {
  margin: 0 0 0 1em;
  padding: 2px .75em;
  border-radius: 4px;
  background: #d08a21;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .case-link-new {
    font-size: 12px;
  }
}
.case-link-more {
  position: absolute;
  right: 40px;
  padding: 5px 12px;
  border-radius: 1em;
  background: #7ab0d0;
  color: #fff;
  font-size: 16px;
  transition: .2s background, .2s color;
}
_:-ms-lang(x)::-ms-backdrop, .case-link-more {
  padding: 6px 12px 3px;
}
@media screen and (max-width: 767px) {
  .case-link-more {
    right: 10px;
    font-size: 12px;
  }
  _:-ms-lang(x)::-ms-backdrop, .case-link-more {
    top: calc(50% - 1em);
  }
}
.case-article + .case-article {
  margin: 140px 0 0;
}
.case-ttl {
  padding: 0 0 40px;
  border-bottom: 2px solid #cdcdcd;
  text-align: center;
  color: #7ab0d0;
  font-weight: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .case-ttl .sp-only {
    display: none;
  }
}
.case-ttl-cmn {
  font-size: 20px;
}
.case-ttl-company {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .case-ttl-company {
    letter-spacing: -1px;
  }
}
.case-body {
  max-width: 800px;
  margin: 40px auto 0;
  color: #5b5b5b;
}
.case-type-list {
  display: flex;
  margin: 1em 0 0;
}
.case-type-list li {
  padding: 5px 1em;
  border-radius: 2px;
  color: #fff;
}
.case-type-list li + li {
  margin: 0 0 0 10px;
}
.case-type-list li.type-owned {
  background: #628fc7;
}
.case-type-list li.type-medical {
  background: #86c762;
}
.case-service {
  align-items: baseline;
  margin: 40px 0 0;
}
.case-service-name {
  color: #1f2a4b;
  font-size: 26px;
  font-weight: 500;
}
.case-service-since {
  margin: 1em 0 0;
  font-weight: 500;
}
.case-detail {
  margin: 30px 0 0;
  font-size: 18px;
}
.case-detail p {
  line-height: 180%;
}
.case-detail p a {
  color: #628fc7;
  text-decoration: underline;
}
.s-mark-square::before {
  display: inline-block;
  width: .8em;
  height: .8em;
  margin: 0 2px 0 0;
  background: #5b5b5b;
  content: "";
  transform: translateY(1px);
}
.type-pc .case-detail p a:hover, .type-mobile .case-detail p a:active {
  text-decoration: none;
}
.case-detail p + p {
  margin: 1em 0 0;
}
.case-detail p + .s-txt-right-pc {
  margin: 0;
  text-align: right;
}
@media screen and (max-width:767px) {
  .case-detail p + .s-txt-right-pc {
    text-align: left;
    font-size: 16px;
  }
}
.case-img {
  margin: 40px 0 0;
}
.case-img img {
  margin: 0 auto;
}
/*============================================================
お問い合わせ
============================================================*/
.sec-faq {
  padding: 80px 0;
  background: #e1ecf6;
}
@media screen and (max-width: 767px) {
  .sec-faq {
    padding: 60px 0;
  }
}
.faq-contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .faq-contents {
    padding: 0 10px;
  }
}
.faq-list {
  margin: 60px 0 0;
}
.faq-item + .faq-item {
  margin: 20px 0 0;
}
.faq-txt-q, .faq-txt-a {
  position: relative;
  overflow: hidden;
  padding: 7px 40px 7px 80px;
  background: #fff;
  color: #5b5b5b;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .faq-txt-q, .faq-txt-a {
    padding: 7px 20px 7px 60px;
  }
}
.faq-txt-q::before, .faq-txt-a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 100%;
  padding: 6px 0 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.faq-txt-q::after, .faq-txt-a::after {
  position: absolute;
  left: 40px;
  width: calc(100% - 40px);
  height: 1px;
  background: #e1ecf6;
  content: "";
}
.faq-txt-q {
  border-radius: 8px 8px 0 0;
}
.faq-txt-q::before {
  background: #85bbdb;
  content: "Q";
}
.faq-txt-q::after {
  bottom: 0;
}
.faq-txt-a {
  border-radius: 0 0 8px 8px;
}
.faq-txt-a::before {
  background: #628fc7;
  content: "A";
}
.faq-txt-a::after {
  top: 0;
}
.sec-contact {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 60px 0;
  }
}
.sec-thanks {
  padding: 80px 0;
}
.thanks-contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .thanks-contents {
    padding: 0 10px;
  }
}
.thanks-txt {
  margin: 2em 0 0;
}
.thanks-txt p {
  line-height: 150%;
}
.thanks-link {
  margin: 24px 0 0;
}
.thanks-link a {
  color: #628fc7;
}