@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
/*--------------------------------------------------------------
# 全体
--------------------------------------------------------------*/
:root {
    /* 色 */
    --color-222: #222;
    --color-555: #555;
    --color-888: #888;
    --color-ccc: #CCC;
    --color-eee: #EEE;
    --color-fff: #FFF;
    --color-blue: #0081F5;
    --color-blue-hover: #0067C2;
    --color-green: #5AB158;
    --color-green-hover: #336332;
    --color-pale: #F0F5FA;
    --color-orange: #F4A019;
    --color-orange-hover: #CA8514;
    --color-red: #FA5D0D;
    --color-red-hover: #E32B00;
    --color-purple: #6008A8;    
    /* 未使用 */
    --color-row-even: #EFEFEF;
    --color-background-hover: #FAF6EF;
    --color-background-alert-bubble: #FDCEB6;
    /* サイズ */
    --size-04: 0.4rem;
    --size-06: 0.6rem;
    --size-07: 0.7rem;
    --size-08: 0.8rem;
    --size-10: 1.0rem;
    --size-12: 1.2rem;
    --size-14: 1.4rem;
    --size-16: 1.6rem;
    --size-18: 1.8rem;
    --size-20: 2.0rem;
    --size-21: 2.1rem;
    --size-22: 2.2rem;
    --size-24: 2.4rem;
    --size-28: 2.8rem;
    --size-32: 3.2rem;
    --size-35: 3.5rem;
    --size-36: 3.6rem;
    --size-40: 4.0rem;
    --size-42: 4.2rem;
    --size-48: 4.8rem;
    --size-49: 4.9rem;
    --size-56: 5.6rem;
    /* 影 */
    --shadow: 0 0 4px 0 rgba(0,0,0,0.2);
    /* 角丸 */
    --radius-04: 4px;
}

html,body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
/*  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;  */
    font-size: 10px;
    color: var(--color-222);
    background-color: var(--color-fff);
    touch-action: manipulation;
}
h1,h2,h3,h4 {
    font-weight: 700;
    line-height: 1.2;
}
h1 {
    font-weight: 900;
    font-size: var(--size-56);
    line-height: 0.8;
    margin-bottom:  var(--size-28);
    letter-spacing: -2px;
}
body#wpc h1 {
    font-size: var(--size-48);
}
body#wc h1,
body#wc h2,
body#wc h3,
body#wc h4 {
    color: var(--color-blue-hover);
}
body#wpc h1,
body#wpc h2,
body#wpc h3,
body#wpc h4 {
    color: var(--color-green);
}
body#mw h1 {
    color: var(--color-orange-hover);
}
body#mw h2,
body#mw h3,
body#mw h4 {
    color: var(--color-orange);
}
h2 {
    font-size: var(--size-35);
    margin-bottom: var(--size-28);
}
h3 {
    font-size: var(--size-28);
    margin-bottom: var(--size-21);
}
h4 {
    font-size: var(--size-18);
    margin-bottom: var(--size-04);
    color: var(--color-222);
}
p,
ul,
th,
td {
    font-size: var(--size-14);
    line-height: 1.5;
    margin-bottom: var(--size-21);
}
a {
    text-decoration: none;
}
body#wc a {
    color: var(--color-blue);
}
body#wpc a {
    color: var(--color-green);
}
body#mw a {
    color: var(--color-orange);
}
a:hover {
    text-decoration: none;
}
body#wc a:hover {
    color: var(--color-blue-hover);
}
body#wpc a:hover {
    color: var(--color-green-hover);
}
body#mw a:hover {
    color: var(--color-orange-hover);
}
strong {
    font-weight:700;
}

/*--------------------------------------------------------------
# ヘッダ
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: var(--size-14) 0;
}
#header h1 {
    margin-bottom: 0;
}
#header .logo img {
    margin: 0;
    max-height: var(--size-28);
    width: auto;
}

/*--------------------------------------------------------------
# ヒーロー
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
body#wc #hero {
    background-image: url(../../dx-sol/img/bg-hero-wc.webp);
}
body#wpc #hero {
    background-image: url(../../dx-sol/img/bg-hero-wpc.webp);
}
body#mw #hero {
    background-image: url(../../dx-sol/img/bg-hero-mw.webp);
}
body#wc #hero p {
    font-weight: 600;
    color: var(--color-blue-hover);
}
body#wpc #hero p {
    font-weight: 600;
    color: var(--color-green);
}
#hero h1 span {
    font-weight: 600;
    font-size: var(--size-24);
    letter-spacing: normal;
}
#hero h2 {
    font-weight: 400;
    margin-bottom: var(--size-56) !important;
    font-size: var(--size-21) !important;
    color: var(--color-222) !important;
}
.download-btn {
  font-weight: bold;
  font-size: var(--size-16);
  display: inline-block;
  padding: 8px 24px;
  border-radius: var(--radius-04);
  transition: 0.5s;
  position: relative;
  box-shadow: var(--shadow)
}
body#wc .download-btn {
    color: var(--color-fff);
    background: var(--color-blue);
}
body#wpc .download-btn {
    color: var(--color-fff);
    background: var(--color-green);
}
body#mw .download-btn {
    color: var(--color-fff);
    background: var(--color-orange);
}
body#wc .download-btn:hover {
    color: var(--color-fff);
    background: var(--color-blue-hover);
}
body#wpc .download-btn:hover {
    color: var(--color-fff);
    background: var(--color-green-hover);
}
body#mw .download-btn:hover {
    color: var(--color-fff);
    background: var(--color-orange-hover);
}
.download-btn i {
  font-size: 21px;
}
@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
.download-btn+.download-btn {
    margin: 0 10px;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# セクション
--------------------------------------------------------------*/
section {
    padding: var(--size-56) 0;
    overflow: hidden;
}
.section-bg {
    background-color: var(--color-pale);
}
.section-title {
    text-align: center;
    padding-bottom: var(--size-28);
}

/*--------------------------------------------------------------
# 受賞
--------------------------------------------------------------*/
section#award {
    padding: var(--size-28) 0;
}
#award p span {
    font-size: var(--size-16);
    font-weight: 600;
}
#award img {
    float: left;
    width: 12.5%;
    margin: 0 var(--size-14) var(--size-14) 0;
}

/*--------------------------------------------------------------
# 特徴
--------------------------------------------------------------*/
.features .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: var(--color-fff);
    text-align: center;
}
.features .row {
    padding-top: 40px;
  }
.features .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
}
@media (max-width: 992px) {
    .features .box {
      max-width: 60%;
      margin: 0 auto 30px auto;
    }
}
@media (max-width: 767px) {
    .features .box {
      max-width: 80%;
      margin: 0 auto 30px auto;
    }
}
@media (max-width: 420px) {
    .features .box {
      max-width: 100%;
      margin: 0 auto 30px auto;
    }
}
.features img {
    width: 100%;
    height: auto;
}
.features p,
.features ul {
    text-align: left;
}

/*--------------------------------------------------------------
# システム概要
--------------------------------------------------------------*/
.system .row {
    padding-bottom: var(--size-28);
}
.system .content+.content {
    margin-top: 100px;
}
  .system .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# アプリ
--------------------------------------------------------------*/
.app .content {
    padding: 28px 0;
}
.app .content .icon-box {
    margin-top: 28px;
}
.app .content .icon-box h4 {
    font-size: var(--size-21);
    margin: 5px 0 7px 0;
}
.app .content .icon-box i {
    display: block;
    width: 60px;
    height: 110px;
  float: left;
  color: var(--color-ccc);
  font-size: var(--size-42);
}
.app .content .icon-box p {
  color: var(--color-555);
}
@media (max-width: 991px) {
  .app .image {
    text-align: center;
  }
  .app .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .app .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# 機器仕様
--------------------------------------------------------------*/
#devices ul li {
    font-size: var(--size-12);
}
/*--------------------------------------------------------------
# 導入現場
--------------------------------------------------------------*/
.gallery ul {
    font-size: var(--size-18);
    padding: 0;
    list-style: none;
    color: var(--color-222);
    line-height: 20px;
}
.gallery ul li {
    padding-bottom: var(--size-07);
}
.gallery ul i {
    font-size: 18px;
    padding-right: 4px;
}
body#wc .gallery ul i {
  color: var(--color-blue-hover);
}
body#wpc .gallery ul i {
  color: var(--color-green);
}
.gallery-img {
    text-align: center;
}
.gallery-img img,
.gallery .container.halex img {
    width: 100%;
    border-radius: 50%;    
    text-align: center;
    padding-bottom: 1rem;
}
body#mw .gallery table {
    margin-bottom: 50px;
}
body#mw .gallery th,
body#mw .gallery td {    
    padding: 1em 0;
    vertical-align: top;
    border-bottom: solid 1px var(--color-ccc);
}
body#mw .gallery th {
    white-space: nowrap;
    padding-right: 2em;
}

/*--------------------------------------------------------------
# オプション
--------------------------------------------------------------*/
.option-item {
    padding: 3rem 3rem 1.5rem 3rem;
    margin-bottom: 3rem;
    background-color: var(--color-fff);
    border-radius: var(--radius-04);
}
.option-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}
.option-item li {
    font-size: var(--size-12);
}

/*--------------------------------------------------------------
# 料金
--------------------------------------------------------------*/
.price .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.price table {
    margin-bottom: var(--size-14);
}
.price th, .price td {
    vertical-align: top;
    padding: 14px 0 ;
}
.price th,
.price td {
    margin-left: var(--size-28);
}
.price th {
    font-size: var(--size-21);
    font-weight: 600;
}
body#wc .price th {
    border-bottom: 2px solid var(--color-blue-hover);
}
body#wpc .price th {
    border-bottom: 2px solid var(--color-green);
}

.w-35 {
    width: 35%;
    border-right: 28px solid var(--color-fff);
}
/*--------------------------------------------------------------
# フロー
--------------------------------------------------------------*/
.flow_design {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--size-28);
}
.flow-ul {
    padding-left: 0;
}
.flow-ul > li {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
}
.flow-ul > li:not(:last-child) {
    padding-bottom: 14px;
}
.flow-ul > li .flow-icon {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 100vh;
    display: inline-block;
    color: var(--color-fff);
    position: absolute;
    left: 0;
}
body#wc .flow-ul > li .flow-icon {
    background: var(--color-blue-hover);
} 
body#wpc .flow-ul > li .flow-icon {
    background: var(--color-green);
}
body#mw .flow-ul > li .flow-icon {
    background: var(--color-orange);
} 
.flow-ul > li:not(:last-child)::before {
    content: '';
    background: var(--color-ccc);
    width: 2px;
    height: 100%;
    position: absolute;
    top: calc(50% - -30px);
    left: 18px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.flow-ul > li dl dt {
    font-size: 1.3em;
    font-weight: 600;
}
.flow-ul > li dl dd {
    margin-left: 0;
}
/*--------------------------------------------------------------
# 規約
--------------------------------------------------------------*/
#terms iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
}

/*--------------------------------------------------------------
# フッタ
--------------------------------------------------------------*/
#footer {
    padding: 0 0 var(--size-32) 0;
    color: var(--color-fff);
    font-size: var(--size-14);
    background: var(--color-purple);
    background-image: url(../../dx-sol/img/bg-footer.webp);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer p {
      font-size: var(--size-14);
}
#footer h3 {
    font-size: var(--size-21) !important;
    color: var(--color-fff) !important;
}
#footer h4 {
    color: var(--color-fff) !important;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: var(--color-fff);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  color: var(--color-fff);
  text-decoration: none;
}
#footer .footer-links a {
    color: var(--color-fff);
}
#footer .footer-links a:hover {
    color: var(--color-orange);
}
#footer .footer-etc {
    text-align: center;
    font-size: var(--size-10);
}
#footer .footer-etc p {
    font-size: var(--size-10);
}
#footer .footer-etc img {
    width: 100%;
    height: auto;
    margin-bottom: var(--size-06);
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: var(--size-12);
  color: var(--color-ccc);
}
#footer .credits a,
#footer .credits a:hover {
  color: var(--color-ccc);
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}
.x {
    background: #222;
}
.x:hover {
    background: #000;
}
.fb {
    background: #0866ff;
}
.fb:hover {
    background: #0548B3;
}
#footer ul li a {
    color: var(--color-white);
}
#footer ul li a:hover {
    color: var(--color-orange);
}
/*--------------------------------------------------------------
# 右下ボタン
--------------------------------------------------------------*/
.back-to-top {
    padding: var(--size-14);
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    font-size: var(--size-14);
    font-weight: 600;
    color: var(--color-fff);
    background: var(--color-blue);
    border-radius: var(--radius-04);
    transition: all 0.4s;
    box-shadow: var(--shadow);
} 
body#wc .back-to-top {
    color: var(--color-fff);
    background: var(--color-blue);
}
body#wpc .back-to-top {
    color: var(--color-fff);
    background: var(--color-green);
} 
body#mw .back-to-top {
    color: var(--color-fff);
    background: var(--color-orange);
} 
.back-to-top i {
    font-size: 24px;
    color: var(--color-fff);
    line-height: 0;
    padding-right: 0.5rem;
}
body#wc .back-to-top:hover {
    color: var(--color-fff);
    background: var(--color-blue-hover);
}
body#wpc .back-to-top:hover {
    color: var(--color-fff);
    background: var(--color-green-hover);
}
body#mw .back-to-top:hover {
    color: var(--color-fff);
    background: var(--color-orange-hover);
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}