@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap");
/*--------------------------
 ブレークポイント設定
----------------------------*/
/*--------------------------
 変数
----------------------------*/
/*--------------------------
    中央配置
----------------------------*/
/* 上下左右中央配置 */
/* 上下のみ中央配置 */
/* 左右のみ中央配置 */
/* 中央配置解除 */
/* margin auto */
/*--------------------------
 共通設定
----------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px !important;
  color: #333;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
  margin: 0px;
  padding: 0px;
}
body img {
  width: 100%;
  height: auto;
}

:focus {
  outline: none;
}

/* リンク img ------*/
a {
  text-decoration: none;
}
a img {
  transition: all 0.5s ease 0s;
}

.uk-link-toggle:focus .uk-link,
.uk-link-toggle:hover .uk-link,
.uk-link:hover,
a:hover {
  color: #333;
  text-decoration: none;
}

/* PC時tel無効 ------*/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 共通コンテンツ幅 */
.cntsBlock {
  width: 1200px;
  margin: 0px auto;
}
@media (max-width: 640px) {
  .cntsBlock {
    width: 100%;
    padding: 0px 10px;
    box-sizing: border-box;
  }
}
.cntsBlock h2.ttl {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  border-top: 3px solid #999;
  padding-top: 35px;
  margin-top: 0px;
  margin-bottom: 65px;
}
@media (max-width: 640px) {
  .cntsBlock h2.ttl {
    font-size: 20px;
    padding-top: 20px;
    border-top: 2px solid #999;
    margin-bottom: 35px;
  }
}
.cntsBlock h2.ttl::before {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #00A2F0;
  position: absolute;
  top: -3px;
  left: 0px;
}
@media (max-width: 640px) {
  .cntsBlock h2.ttl::before {
    height: 2px;
    top: -2px;
  }
}

.cntsBody {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .cntsBody {
    padding-left: 0px;
  }
}
.cntsBody p {
  margin: 0px 0px 20px 0px;
  font-size: 16px;
}
@media (max-width: 640px) {
  .cntsBody p {
    font-size: 14px;
  }
}

/*--------------------------
 ヘッダー
----------------------------*/
header {
  width: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background: #fff;
  z-index: 10000;
}
@media (max-width: 640px) {
  header {
    position: relative;
    padding: 10px 10px;
  }
}
header h1 {
  display: flex;
  line-height: 1;
  margin: 0px;
  padding: 0px;
  line-height: 1;
}
header h1 img.para {
  width: 320px;
  height: auto;
}
@media (max-width: 640px) {
  header h1 img.para {
    width: 165px;
  }
}
header h1 img.company {
  width: 115px;
  height: auto;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ccc;
}
@media (max-width: 640px) {
  header h1 img.company {
    width: 75px;
  }
}
header ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 640px) {
  header ul {
    justify-content: center;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #fff;
    padding: 10px 10px 25px 10px;
    box-sizing: border-box;
    z-index: 10000;
    box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.2);
  }
}
header ul li {
  display: block;
}
header ul li.tel {
  line-height: 1;
}
header ul li.tel .tel_no {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
}
@media (max-width: 640px) {
  header ul li.tel .tel_no {
    font-size: 24px;
  }
}
header ul li.tel .tel_no::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  header ul li.tel .tel_no::before {
    width: 20px;
    height: 20px;
  }
}
header ul li.tel .tel_note {
  font-size: 12px;
  display: block;
  text-align: center;
  margin-top: 3px;
}
header ul li.contact {
  line-height: 1;
}
header ul li.contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #004B9E;
  padding: 10px 30px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  header ul li.contact a {
    gap: 5px;
    padding: 7px 10px;
    font-size: 16px;
  }
}
header ul li.contact a:hover {
  background: #0077fe;
}
header ul li.contact a::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url(../img/icon_contact.svg) no-repeat center center/contain;
}

/*--------------------------
 メイン
----------------------------*/
main {
  margin-top: 86px;
  /* キービジュアル */
  /* 課題と解決策 */
  /* ParaRecolectar導入 */
  /* 効果 */
  /* その他事例紹介 */
  /* お気軽にご相談・お問い合わせください。 */
  /* PitchDATAとは */
  /* センサー構成例 */
  /* 導入の流れ */
  /* よくあるご質問 */
  /* お気軽にご相談・お問い合わせください。（タブ） */
  /* メールフォーム */
}
@media (max-width: 640px) {
  main {
    margin-top: 0px;
  }
}
main .kv {
  position: relative;
  background: #B3BFD9;
}
main .kv::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
@media (max-width: 640px) {
  main .kv::before {
    height: 20px;
  }
}
main .kv_catch {
  position: absolute;
  padding-left: 7%;
  padding-right: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0px 20px 20px 0px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
}
@media (max-width: 640px) {
  main .kv_catch {
    position: absolute;
    left: auto;
    top: auto;
    transform: translate(0, 0);
    top: 100px;
    padding-left: 3%;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 0px 10px 10px 0px;
  }
}
main .kv_catch h1 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #333;
}
@media (max-width: 640px) {
  main .kv_catch h1 {
    font-size: 16px;
  }
}
main .kv_catch p {
  margin: 0px auto;
  padding: 0px;
}
main .kv_catch img {
  width: 500px;
  height: auto;
}
@media (max-width: 640px) {
  main .kv_catch img {
    width: 250px;
  }
}
main .kv_sdgs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 640px) {
  main .kv_sdgs {
    padding: 5px;
  }
}
main .kv_sdgs dt img,
main .kv_sdgs dd img {
  height: 65px;
  width: auto;
}
@media (max-width: 640px) {
  main .kv_sdgs dt img,
  main .kv_sdgs dd img {
    height: 45px;
  }
}
main .kv_img {
  background: #ccc;
  background: url(../img/kv.webp) no-repeat center right/cover;
  border-radius: 50px 0px 0px 50px;
  width: 80%;
  height: 650px;
  margin: 0px 0px 0px auto;
  position: relative;
  z-index: 5;
}
@media (max-width: 640px) {
  main .kv_img {
    width: 85%;
    border-radius: 20px 0px 0px 20px;
    height: 500px;
    background: url(../img/kv.webp) no-repeat center center/cover;
  }
}
main .kv_img_pdct img {
  position: absolute;
  bottom: -50px;
  right: 7%;
  width: 550px;
  height: auto;
}
@media (max-width: 640px) {
  main .kv_img_pdct img {
    bottom: -30px;
  }
}
main .problem-solution {
  background: #B3BFD9;
  padding-top: 75px;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  main .problem-solution {
    padding-bottom: 65px;
  }
}
main .problem-solution .cntsBlock {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock {
    display: block;
  }
}
main .problem-solution .cntsBlock .problem,
main .problem-solution .cntsBlock .solution {
  width: 47%;
  background: #DEE5F5;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 30px;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem,
  main .problem-solution .cntsBlock .solution {
    width: 90%;
    margin: 0px auto;
    padding: 20px;
    border-radius: 15px;
  }
}
main .problem-solution .cntsBlock .problem h2.ps-ttl,
main .problem-solution .cntsBlock .solution h2.ps-ttl {
  font-size: 28px;
  font-weight: 700;
  color: #27483A;
  border-bottom: 1px solid #6E9183;
  padding-bottom: 35px;
  margin-bottom: 35px;
  line-height: 1;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem h2.ps-ttl,
  main .problem-solution .cntsBlock .solution h2.ps-ttl {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
main .problem-solution .cntsBlock .problem p,
main .problem-solution .cntsBlock .solution p {
  line-height: 1.35;
}
main .problem-solution .cntsBlock .problem p strong,
main .problem-solution .cntsBlock .solution p strong {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem p strong,
  main .problem-solution .cntsBlock .solution p strong {
    font-size: 20px;
  }
}
main .problem-solution .cntsBlock .problem ul,
main .problem-solution .cntsBlock .solution ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
main .problem-solution .cntsBlock .problem ul li,
main .problem-solution .cntsBlock .solution ul li {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  gap: 5px;
  line-height: 1.1;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem ul li,
  main .problem-solution .cntsBlock .solution ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
main .problem-solution .cntsBlock .problem ul li:last-child,
main .problem-solution .cntsBlock .solution ul li:last-child {
  margin-bottom: 0px;
}
main .problem-solution .cntsBlock .problem h2.ps-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .problem-solution .cntsBlock .problem h2.ps-ttl::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/icon_kadai.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem h2.ps-ttl::before {
    width: 30px;
    height: 30px;
  }
}
main .problem-solution .cntsBlock .problem ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check_gray.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .problem ul li::before {
    width: 16px;
    height: 16px;
  }
}
main .problem-solution .cntsBlock .solution h2.ps-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .problem-solution .cntsBlock .solution h2.ps-ttl::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/icon_kaiketsu.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .solution h2.ps-ttl::before {
    width: 30px;
    height: 30px;
  }
}
main .problem-solution .cntsBlock .solution ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check_orange.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .solution ul li::before {
    width: 16px;
    height: 16px;
  }
}
main .problem-solution .cntsBlock .arrow {
  margin-top: 150px;
  width: 20px;
  height: auto;
}
@media (max-width: 640px) {
  main .problem-solution .cntsBlock .arrow {
    margin: 0px auto;
    transform: rotate(90deg);
  }
}
main .overview {
  background: #B3BFD9;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  main .overview {
    padding-bottom: 65px;
  }
}
main .overview-img {
  margin: 0px;
}
main .overview-zu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 50px;
  border-radius: 15px;
  background: #DEE5F5;
}
@media (max-width: 640px) {
  main .overview-zu {
    padding: 15px 15px;
    border-radius: 7px;
  }
}
main .overview-zu p {
  margin: 0px auto 35px auto;
  padding: 0px;
}
main .overview-zu p.catch {
  width: 100%;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 640px) {
  main .overview-zu p.catch {
    font-size: 18px;
  }
}
main .overview-zu-l {
  position: relative;
  width: 48%;
}
@media (max-width: 640px) {
  main .overview-zu-l {
    width: 49%;
  }
}
main .overview-zu-l h3 {
  background: #fff;
  color: #00AC4D;
  line-height: 1;
  margin: 0px;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  main .overview-zu-l h3 {
    font-size: 13px;
  }
}
main .overview-zu-l p {
  margin: 0px 0px 10px 0px;
  padding: 0px;
}
main .overview-zu-l .note {
  background: #00AC4D;
  border-radius: 7px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 640px) {
  main .overview-zu-l .note {
    text-align: left;
    font-size: 13px;
  }
}
main .overview-zu-r {
  position: relative;
  width: 48%;
}
@media (max-width: 640px) {
  main .overview-zu-r {
    width: 49%;
  }
}
main .overview-zu-r h3 {
  background: #fff;
  color: #EC6E00;
  line-height: 1;
  margin: 0px;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  main .overview-zu-r h3 {
    text-align: left;
    font-size: 13px;
  }
}
main .overview-zu-r p {
  margin: 0px 0px 10px 0px;
  padding: 0px;
}
main .overview-zu-r .note {
  background: #EC6E00;
  border-radius: 7px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 640px) {
  main .overview-zu-r .note {
    text-align: left;
    font-size: 13px;
  }
}
main .overview-zu-r .point {
  position: absolute;
  top: -25px;
  right: -20px;
  width: 125px;
  height: auto;
}
@media (max-width: 640px) {
  main .overview-zu-r .point {
    width: 75px;
    top: -10px;
    right: -25px;
  }
}
main .results {
  background: #B3BFD9;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  main .results {
    padding-bottom: 65px;
  }
}
main .results-inner {
  width: 90%;
  margin: 0px auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 640px) {
  main .results-inner {
    width: 97%;
    border-radius: 15px;
  }
}
main .results-inner h2 {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
main .results-inner h2 img {
  width: 200px;
  height: auto;
}
@media (max-width: 640px) {
  main .results-inner h2 img {
    width: 120px;
  }
}
main .results-data {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px;
}
@media (max-width: 640px) {
  main .results-data {
    display: block;
    padding: 80px 0px 25px 0px;
  }
}
main .results-data-l, main .results-data-r {
  width: 50%;
  padding: 50px 0px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 640px) {
  main .results-data-l, main .results-data-r {
    width: 95%;
    padding: 0px 0px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .results-data-l p, main .results-data-r p {
  font-size: 36px;
  color: #004B9E;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px;
}
@media (max-width: 640px) {
  main .results-data-l p, main .results-data-r p {
    font-size: 20px;
  }
}
main .results-data-l p strong, main .results-data-r p strong {
  font-size: 200%;
}
@media (min-width: 1400px) {
  main .results-data-l {
    border-right: 1px solid #ccc;
  }
}
@media (max-width: 640px) {
  main .results-data-l {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
main .other-case {
  background: #B3BFD9;
  padding-bottom: 10px;
}
main .other-case .cntsBody {
  display: flex;
  justify-content: space-between;
}
main .other-case ul {
  margin: 35px 0px 0px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #8A9CC2;
  border-right: 1px solid #8A9CC2;
}
@media (max-width: 640px) {
  main .other-case ul {
    margin: 0px;
  }
}
main .other-case ul li {
  display: block;
  width: 33.333%;
  padding: 5px;
  box-sizing: border-box;
  border-top: 1px solid #8A9CC2;
  border-left: 1px solid #8A9CC2;
}
@media (max-width: 640px) {
  main .other-case ul li {
    width: 50%;
  }
}
main .other-case ul li .other-case-box {
  width: 100%;
  height: 100%;
  background: #DEE5F5;
  border-radius: 10px;
  text-align: center;
  padding: 35px 0px 100px 0px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box {
    border-radius: 5px;
    padding: 20px 0px 50px 0px;
  }
}
main .other-case ul li .other-case-box h3 {
  font-size: 26px;
  margin: 0px auto 20px auto;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box h3 {
    font-size: 16px;
  }
}
main .other-case ul li .other-case-box h3.mb0 {
  margin-bottom: 0px;
}
main .other-case ul li .other-case-box h3.mbl {
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box h3.mbl {
    margin-bottom: 15px;
  }
}
main .other-case ul li .other-case-box h3 .txts {
  font-size: 14px;
}
main .other-case ul li .other-case-box .arrow {
  width: 20px;
  height: auto;
  margin: 0px auto 10px auto;
  padding: 0px;
}
main .other-case ul li .other-case-box p {
  line-height: 1;
  margin: 0px 0px 5px 0px;
  padding: 0px;
}
main .other-case ul li .other-case-box p.txt-small {
  font-size: 20px;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box p.txt-small {
    font-size: 14px;
  }
}
main .other-case ul li .other-case-box p.txt-small .txt-l {
  font-size: 165%;
}
main .other-case ul li .other-case-box p.txt-small .txt-cb {
  color: #00A2F0;
}
main .other-case ul li .other-case-box p.txt-small img {
  width: 20px;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box p.txt-small img {
    width: 14px;
  }
}
main .other-case ul li .other-case-box p.txt-mid {
  font-size: 20px;
  font-weight: 900;
  color: #004B9E;
  line-height: 1;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box p.txt-mid {
    font-size: 16px;
  }
}
main .other-case ul li .other-case-box p.txt-big {
  font-size: 50px;
  font-weight: 900;
  color: #004B9E;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box p.txt-big {
    font-size: 25px;
  }
}
main .other-case ul li .other-case-box p.txt-big .txt-l {
  font-size: 165%;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
main .other-case ul li .other-case-box p.txt-big .txt-m {
  font-size: 135%;
  font-weight: 900 !important;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box p.txt-big .txt-m {
    font-size: 125%;
  }
}
main .other-case ul li .other-case-box p.txt-big .txt-s {
  font-size: 50%;
}
main .other-case ul li .other-case-box p.arrow-shita {
  padding: 5px 0px;
}
main .other-case ul li .other-case-box p.arrow-shita img {
  width: 20px;
}
main .other-case ul li .other-case-box .linkMore {
  text-align: center;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 35px;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box .linkMore {
    bottom: 15px;
  }
}
main .other-case ul li .other-case-box .linkMore a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 25px;
  background: #0084C4;
  border-radius: 50px;
  color: #fff;
  margin: 0 auto;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (max-width: 640px) {
  main .other-case ul li .other-case-box .linkMore a {
    padding: 7px 10px;
    gap: 3px;
    font-size: 14px;
  }
}
main .other-case ul li .other-case-box .linkMore a:hover {
  background: #37bcff;
}
main .other-case ul li .other-case-box .linkMore a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_pdf.svg) no-repeat center center/contain;
}
main .cta {
  background: url(../img/cta_bg.webp) no-repeat center right/contain #004B9E;
  padding: 125px 0px;
}
@media (max-width: 640px) {
  main .cta {
    background: url(../img/cta_bg.webp) no-repeat center right/cover #004B9E;
    padding: 50px 0px;
  }
}
main .cta h2 {
  color: #fff;
  text-align: center;
  margin: 0px auto 50px auto;
}
@media (max-width: 640px) {
  main .cta h2 {
    font-size: 18px;
    margin: 0px auto 25px auto;
  }
}
main .cta p {
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  main .cta p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
main .cta ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0px auto;
  padding: 0px;
}
@media (max-width: 640px) {
  main .cta ul {
    display: block;
  }
}
main .cta ul li {
  display: block;
  width: 30%;
}
@media (max-width: 640px) {
  main .cta ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}
main .cta ul li a {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  line-height: 1;
  padding: 20px 10px;
  background: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  main .cta ul li a {
    font-size: 15px;
    padding: 10px 5px;
  }
}
main .cta ul li a:hover {
  background: #8bc3ff;
  color: #fff;
}
main .cta ul li a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
}
main .cta ul li a.cta-contact::before {
  content: "";
  background: url(../img/cta_icon_contact.svg) no-repeat center center/contain;
}
main .cta ul li a.cta-dl::before {
  content: "";
  background: url(../img/cta_icon_dl.svg) no-repeat center center/contain;
}
main .cta ul li a.cta-trial::before {
  content: "";
  background: url(../img/cta_icon_trial.svg) no-repeat center center/contain;
}
main .about {
  padding: 125px 0px;
  background: #F7F7F7;
}
@media (max-width: 640px) {
  main .about {
    padding: 50px 0px;
  }
}
main .about-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 640px) {
  main .about-inner {
    display: block;
    margin-bottom: 35px;
  }
}
main .about-pht {
  width: 45%;
}
@media (max-width: 640px) {
  main .about-pht {
    width: 100%;
    margin-bottom: 25px;
  }
}
main .about-pht img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
main .about-note {
  width: 50%;
}
@media (max-width: 640px) {
  main .about-note {
    width: 100%;
  }
}
main .about-note p {
  line-height: 1.8;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  main .about-note p {
    margin-bottom: 15px;
  }
}
main .about-note p strong {
  font-size: 200%;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 640px) {
  main .about-note p strong {
    font-size: 150%;
  }
}
main .about h3 {
  font-size: 22px;
  font-weight: 700;
  border-left: 7px solid #004B9E;
  padding-left: 7px;
  line-height: 1;
  margin: 0px 0px 50px 0px;
}
@media (max-width: 640px) {
  main .about h3 {
    font-size: 18px;
    margin: 0px 0px 25px 0px;
  }
}
main .about ul {
  display: flex;
  justify-content: space-between;
  margin: 0px;
  padding: 0px 0px 0px 50px;
  list-style: none;
}
@media (max-width: 640px) {
  main .about ul {
    padding: 0px 10px 0px 10px;
    flex-wrap: wrap;
  }
}
main .about ul li {
  width: 20%;
}
@media (max-width: 640px) {
  main .about ul li {
    width: 47%;
    margin-bottom: 15px;
  }
}
main .about ul li div {
  padding: 0px 35px;
}
main .about ul li div img {
  width: 100%;
  height: auto;
}
main .about ul li dl dt {
  text-align: center;
  font-size: 20px;
  color: #004B9E;
  margin-bottom: 7px;
}
@media (max-width: 640px) {
  main .about ul li dl dt {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  main .about ul li dl dd {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
  }
}
main .sensor-setup {
  padding: 125px 0px;
}
@media (max-width: 640px) {
  main .sensor-setup {
    padding: 50px 0px;
  }
}
main .sensor-setup ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0px auto;
  padding: 0px;
}
@media (max-width: 640px) {
  main .sensor-setup ul {
    flex-wrap: wrap;
    padding: 0px 10px;
  }
}
main .sensor-setup ul li {
  display: block;
  width: 20%;
}
@media (max-width: 640px) {
  main .sensor-setup ul li {
    width: 48%;
  }
}
main .sensor-setup ul li div {
  text-align: center;
  padding: 35px 0px;
  border-radius: 15px;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  main .sensor-setup ul li div {
    padding: 20px 0px;
    margin-bottom: 10px;
  }
}
main .sensor-setup ul li div img {
  height: 80px;
  width: auto;
}
@media (max-width: 640px) {
  main .sensor-setup ul li div img {
    height: 50px;
  }
}
main .sensor-setup ul li div.img01 {
  background: #FFE8D6;
}
main .sensor-setup ul li div.img02 {
  background: #D2EAFF;
}
main .sensor-setup ul li div.img03 {
  background: #EBE5FF;
}
main .sensor-setup ul li div.img04 {
  background: #E0E2FF;
}
main .sensor-setup ul li dl dt {
  text-align: center;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  font-size: 20px;
}
main .sensor-setup ul li dl dt span {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 640px) {
  main .sensor-setup ul li dl dt {
    font-size: 18px;
  }
  main .sensor-setup ul li dl dt span {
    font-size: 12px;
  }
}
main .sensor-setup ul li dl dd {
  text-align: center;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 640px) {
  main .sensor-setup ul li dl dd {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
main .sensor-setup-arrow {
  text-align: center;
}
main .sensor-setup-arrow img {
  width: 100px;
  height: auto;
}
@media (max-width: 640px) {
  main .sensor-setup-arrow img {
    width: 60px;
  }
}
main .sensor-setup .catch {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin: 10px 0px 0px 0px;
}
@media (max-width: 640px) {
  main .sensor-setup .catch {
    font-size: 20px;
  }
}
main .flow {
  padding: 125px 0px;
  background: #F7F7F7;
}
@media (max-width: 640px) {
  main .flow {
    padding: 50px 0px;
  }
}
main .flow .cntsBlock {
  position: relative;
}
main .flow p strong {
  font-size: 200%;
  font-weight: 400;
}
@media (max-width: 640px) {
  main .flow p strong {
    font-size: 150%;
  }
}
main .flow ul {
  display: flex;
  justify-content: space-between;
  margin: 50px 0px 0px 0px;
  padding: 10px 50px;
  border-radius: 50px;
  background: #fff;
  list-style: none;
}
@media (max-width: 640px) {
  main .flow ul {
    margin: 0px 0px 0px 0px;
    border-radius: 30px;
    padding: 30px 30px;
    display: block;
  }
}
main .flow ul li {
  width: 20%;
  text-align: center;
  position: relative;
}
@media (max-width: 640px) {
  main .flow ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
    margin-bottom: 15px;
  }
  main .flow ul li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}
main .flow ul li::after {
  content: "";
  display: block;
  width: 20px;
  height: 40px;
  background: url(../img/icon_arrow4.svg) no-repeat center center/contain;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -45px;
}
@media (max-width: 640px) {
  main .flow ul li::after {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: auto;
    bottom: -10px;
    transform: rotate(90deg);
  }
}
main .flow ul li:last-child::after {
  content: none;
}
main .flow ul li p {
  display: inline-block;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-size: 60px;
  color: #83CCEF;
  margin: 0px auto 10px auto;
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 640px) {
  main .flow ul li p {
    display: block;
    width: 20%;
    padding: 0px 10px 0px 0px;
    margin: 0px 10px 0px 0px;
    font-size: 45px;
    border-bottom: none;
    border-right: 1px solid #ccc;
  }
}
main .flow ul li dl {
  margin: 0px;
}
@media (max-width: 640px) {
  main .flow ul li dl {
    width: 80%;
  }
}
main .flow ul li dl dt {
  font-size: 20px;
  color: #004B9E;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 640px) {
  main .flow ul li dl dt {
    text-align: left;
    font-size: 18px;
    margin-bottom: 5px;
  }
}
main .flow ul li dl dd {
  text-align: left;
}
@media (max-width: 640px) {
  main .flow ul li dl dd {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
  }
}
main .flow .label {
  display: block;
  width: 200px;
  height: 200px;
  border: 1px solid #004B9E;
  background: #F7F7F7;
  border-radius: 50%;
  color: #004B9E;
  text-align: center;
  position: absolute;
  top: 75px;
  right: 0px;
}
@media (max-width: 640px) {
  main .flow .label {
    top: -10px;
    width: 150px;
    height: 150px;
  }
}
main .flow .label p {
  display: block;
  width: 100%;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 640px) {
  main .flow .label p {
    font-size: 14px;
  }
}
main .flow .label p strong {
  font-size: 110%;
  font-weight: 700;
}
main .faq {
  padding: 125px 0px;
}
@media (max-width: 640px) {
  main .faq {
    padding: 50px 0px;
  }
}
main .faq ul {
  width: 1000px;
  margin: 0px auto;
  border-top: 1px solid #ccc;
  list-style: none;
}
@media (max-width: 640px) {
  main .faq ul {
    width: 90%;
    margin: 0px auto;
    padding: 0px;
  }
}
main .faq ul li {
  border-bottom: 1px solid #ccc;
  padding: 25px 0px !important;
  margin: 0px !important;
}
main .faq ul li .sctionQ {
  font-size: 16px;
}
main .faq ul li .sctionQ span::before {
  content: "Q";
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  color: #E11E76;
  margin-right: 10px;
}
@media (max-width: 640px) {
  main .faq ul li .sctionQ span::before {
    font-size: 24px;
    margin-right: 5px;
  }
}
main .faq ul li .sctionA {
  padding-left: 50px;
  margin-top: 10px !important;
}
@media (max-width: 640px) {
  main .faq ul li .sctionA {
    font-size: 14px;
    padding-left: 25px;
  }
}
main .faq ul li .sctionA::before {
  content: "A";
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  color: #093DCB;
  margin-right: 10px;
}
@media (max-width: 640px) {
  main .faq ul li .sctionA::before {
    font-size: 24px;
    margin-right: 5px;
  }
}
main .cta-tab {
  background: url(../img/cta_bgl.webp) no-repeat center center/cover #004B9E;
  padding: 125px 0px 0px 0px;
}
@media (max-width: 640px) {
  main .cta-tab {
    padding: 50px 0px 0px 0px;
  }
}
main .cta-tab h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  main .cta-tab h2 {
    font-size: 18px;
    margin: 0px auto 35px auto;
  }
}
main .cta-tab p {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
main .cta-tab ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0px auto;
  padding: 0px !important;
}
main .cta-tab ul::before {
  content: none !important;
}
main .cta-tab ul li {
  display: block;
  width: 30%;
}
@media (max-width: 640px) {
  main .cta-tab ul li {
    width: 32%;
    margin: 0px auto 0px 0px;
    padding: 0px;
  }
}
main .cta-tab ul li a {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  line-height: 1;
  padding: 20px 10px;
  background: #50A3FF;
  border-radius: 10px 10px 0px 0px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  main .cta-tab ul li a {
    text-align: center;
    font-size: 16px;
    padding: 15px 5px;
    border-radius: 5px 5px 0px 0px;
  }
}
main .cta-tab ul li a:hover {
  background: #8bc3ff;
  color: #00A2F0;
}
main .cta-tab ul li a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
}
main .cta-tab ul li a.cta-contact::before {
  content: "";
  background: url(../img/cta_icon_contact.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .cta-tab ul li a.cta-contact::before {
    content: none;
  }
}
main .cta-tab ul li a.cta-dl::before {
  content: "";
  background: url(../img/cta_icon_dl.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .cta-tab ul li a.cta-dl::before {
    content: none;
  }
}
main .cta-tab ul li a.cta-trial::before {
  content: "";
  background: url(../img/cta_icon_trial.svg) no-repeat center center/contain;
}
@media (max-width: 640px) {
  main .cta-tab ul li a.cta-trial::before {
    content: none;
  }
}
main .cta-tab ul li .uk-active > a {
  border: none !important;
  border-color: #000 !important;
}
main .cta-tab .uk-tab > .uk-active > a {
  border-color: rgba(255, 255, 255, 0);
  background: #fff !important;
}
main #mailForm {
  padding: 125px 0px;
}
@media (max-width: 640px) {
  main #mailForm {
    padding: 50px 0px;
  }
}
main #mailForm .contactFrom form dl,
main #mailForm .dlFrom form dl,
main #mailForm .trialFrom form dl {
  width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl,
  main #mailForm .dlFrom form dl,
  main #mailForm .trialFrom form dl {
    width: 90%;
  }
}
main #mailForm .contactFrom form dl dt,
main #mailForm .dlFrom form dl dt,
main #mailForm .trialFrom form dl dt {
  padding: 35px 0 15px;
  font-weight: 400;
  position: relative;
  padding-left: 60px;
  font-size: 16px;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl dt,
  main #mailForm .dlFrom form dl dt,
  main #mailForm .trialFrom form dl dt {
    font-size: 14px;
    padding-top: 25px;
  }
}
main #mailForm .contactFrom form dl dt label::before,
main #mailForm .dlFrom form dl dt label::before,
main #mailForm .trialFrom form dl dt label::before {
  content: "任意";
  font-size: 14px;
  color: #333;
  padding: 4px;
  line-height: 1;
  border: 1px solid #333;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 35px;
  width: 48px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl dt label::before,
  main #mailForm .dlFrom form dl dt label::before,
  main #mailForm .trialFrom form dl dt label::before {
    top: 25px;
    font-size: 12px;
  }
}
main #mailForm .contactFrom form dl dt label.req::before,
main #mailForm .dlFrom form dl dt label.req::before,
main #mailForm .trialFrom form dl dt label.req::before {
  content: "必須";
  color: #fff;
  background: #333;
}
main #mailForm .contactFrom form dl dd,
main #mailForm .dlFrom form dl dd,
main #mailForm .trialFrom form dl dd {
  padding-bottom: 35px;
  border-bottom: 1px solid #ccc;
  margin-left: 0px;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl dd,
  main #mailForm .dlFrom form dl dd,
  main #mailForm .trialFrom form dl dd {
    margin-left: 0px;
    padding-bottom: 25px;
  }
}
main #mailForm .contactFrom form dl dd input[type=text], main #mailForm .contactFrom form dl dd input[type=email], main #mailForm .contactFrom form dl dd textarea,
main #mailForm .dlFrom form dl dd input[type=text],
main #mailForm .dlFrom form dl dd input[type=email],
main #mailForm .dlFrom form dl dd textarea,
main #mailForm .trialFrom form dl dd input[type=text],
main #mailForm .trialFrom form dl dd input[type=email],
main #mailForm .trialFrom form dl dd textarea {
  border: 1px solid #dddddd;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 16px;
  background: #f5f5f5;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl dd input[type=text], main #mailForm .contactFrom form dl dd input[type=email], main #mailForm .contactFrom form dl dd textarea,
  main #mailForm .dlFrom form dl dd input[type=text],
  main #mailForm .dlFrom form dl dd input[type=email],
  main #mailForm .dlFrom form dl dd textarea,
  main #mailForm .trialFrom form dl dd input[type=text],
  main #mailForm .trialFrom form dl dd input[type=email],
  main #mailForm .trialFrom form dl dd textarea {
    font-size: 14px;
    padding: 15px;
  }
}
main #mailForm .contactFrom form dl dd input[type=text]::-moz-placeholder, main #mailForm .contactFrom form dl dd input[type=email]::-moz-placeholder, main #mailForm .contactFrom form dl dd textarea::-moz-placeholder, main #mailForm .dlFrom form dl dd input[type=text]::-moz-placeholder, main #mailForm .dlFrom form dl dd input[type=email]::-moz-placeholder, main #mailForm .dlFrom form dl dd textarea::-moz-placeholder, main #mailForm .trialFrom form dl dd input[type=text]::-moz-placeholder, main #mailForm .trialFrom form dl dd input[type=email]::-moz-placeholder, main #mailForm .trialFrom form dl dd textarea::-moz-placeholder {
  color: #BBBBBB;
}
main #mailForm .contactFrom form dl dd input[type=text]::placeholder, main #mailForm .contactFrom form dl dd input[type=email]::placeholder, main #mailForm .contactFrom form dl dd textarea::placeholder,
main #mailForm .dlFrom form dl dd input[type=text]::placeholder,
main #mailForm .dlFrom form dl dd input[type=email]::placeholder,
main #mailForm .dlFrom form dl dd textarea::placeholder,
main #mailForm .trialFrom form dl dd input[type=text]::placeholder,
main #mailForm .trialFrom form dl dd input[type=email]::placeholder,
main #mailForm .trialFrom form dl dd textarea::placeholder {
  color: #BBBBBB;
}
main #mailForm .contactFrom form dl dd input.age, main #mailForm .contactFrom form dl dd input.code,
main #mailForm .dlFrom form dl dd input.age,
main #mailForm .dlFrom form dl dd input.code,
main #mailForm .trialFrom form dl dd input.age,
main #mailForm .trialFrom form dl dd input.code {
  width: 150px;
  margin-right: 15px;
}
main #mailForm .contactFrom form dl dd .selectWrap,
main #mailForm .dlFrom form dl dd .selectWrap,
main #mailForm .trialFrom form dl dd .selectWrap {
  width: 100%;
  max-width: 450px;
  text-align: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background: #fff;
}
main #mailForm .contactFrom form dl dd .selectWrap::after,
main #mailForm .dlFrom form dl dd .selectWrap::after,
main #mailForm .trialFrom form dl dd .selectWrap::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}
main #mailForm .contactFrom form dl dd .selectWrap select,
main #mailForm .dlFrom form dl dd .selectWrap select,
main #mailForm .trialFrom form dl dd .selectWrap select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  box-sizing: border-box;
  border: none;
  display: inline-block;
  padding: 20px;
  font-size: 16px;
}
main #mailForm .contactFrom form dl dd .selectWrap select::-ms-expand,
main #mailForm .dlFrom form dl dd .selectWrap select::-ms-expand,
main #mailForm .trialFrom form dl dd .selectWrap select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form dl dd .selectWrap select,
  main #mailForm .dlFrom form dl dd .selectWrap select,
  main #mailForm .trialFrom form dl dd .selectWrap select {
    font-size: 14px;
    padding: 15px;
  }
}
main #mailForm .contactFrom form .shonin,
main #mailForm .dlFrom form .shonin,
main #mailForm .trialFrom form .shonin {
  padding: 50px 0px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form .shonin,
  main #mailForm .dlFrom form .shonin,
  main #mailForm .trialFrom form .shonin {
    padding: 25px 0px;
    font-size: 14px;
  }
}
main #mailForm .contactFrom form .shonin a,
main #mailForm .dlFrom form .shonin a,
main #mailForm .trialFrom form .shonin a {
  text-decoration: underline;
}
main #mailForm .contactFrom form .btnArea,
main #mailForm .dlFrom form .btnArea,
main #mailForm .trialFrom form .btnArea {
  text-align: center;
  margin: 80px 0 50px;
}
@media (max-width: 640px) {
  main #mailForm .contactFrom form .btnArea,
  main #mailForm .dlFrom form .btnArea,
  main #mailForm .trialFrom form .btnArea {
    margin: 50px 0 30px;
  }
}
main #mailForm .contactFrom form .btnArea .form__btn,
main #mailForm .dlFrom form .btnArea .form__btn,
main #mailForm .trialFrom form .btnArea .form__btn {
  position: relative;
  padding: 18px 0;
  border-radius: 5px;
  border: 1px solid #00A2F0;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  line-height: 1;
  overflow: hidden;
  background: #00A2F0;
  width: 215px;
}
main #mailForm .contactFrom form .btnArea .form__btn span,
main #mailForm .dlFrom form .btnArea .form__btn span,
main #mailForm .trialFrom form .btnArea .form__btn span {
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding-right: 30px;
}
main #mailForm .contactFrom form .btnArea .form__btn span::after,
main #mailForm .dlFrom form .btnArea .form__btn span::after,
main #mailForm .trialFrom form .btnArea .form__btn span::after {
  content: "";
  width: 23.5px;
  height: 23.5px;
  background: url(../img/icon_submit.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}
main #mailForm .contactFrom form .btnArea .form__btn::before,
main #mailForm .dlFrom form .btnArea .form__btn::before,
main #mailForm .trialFrom form .btnArea .form__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0, 1);
  z-index: 0;
  transition: all 0.5s ease 0s;
  transform-origin: left;
}
@media (min-width: 960px) {
  main #mailForm .contactFrom form .btnArea .form__btn:hover::before,
  main #mailForm .dlFrom form .btnArea .form__btn:hover::before,
  main #mailForm .trialFrom form .btnArea .form__btn:hover::before {
    transform: scale(1, 1);
    transition: all 0.5s ease 0s;
  }
  main #mailForm .contactFrom form .btnArea .form__btn:hover span,
  main #mailForm .dlFrom form .btnArea .form__btn:hover span,
  main #mailForm .trialFrom form .btnArea .form__btn:hover span {
    color: #00A2F0;
  }
  main #mailForm .contactFrom form .btnArea .form__btn:hover span::after,
  main #mailForm .dlFrom form .btnArea .form__btn:hover span::after,
  main #mailForm .trialFrom form .btnArea .form__btn:hover span::after {
    background: url(../img/icon_submit_b.svg) no-repeat center/contain;
    right: -5px;
  }
}

/*--------------------------
 フッター
----------------------------*/
footer {
  background: #5D5D5D;
  padding: 75px 0px;
  color: #fff;
}
@media (max-width: 640px) {
  footer {
    padding: 50px 0px 100px 0px;
  }
}
footer .cntsBlock {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 640px) {
  footer .cntsBlock {
    display: block;
  }
}
footer .cntsBlock address {
  display: flex;
  gap: 15px;
  margin: 0px;
  padding: 0px;
  font-style: normal;
}
@media (max-width: 640px) {
  footer .cntsBlock address {
    margin-bottom: 10px;
  }
}
footer .cntsBlock address p {
  margin: 0px;
  padding: 0px;
}
@media (max-width: 640px) {
  footer .cntsBlock address p {
    font-size: 14px;
  }
  footer .cntsBlock address p .logo {
    width: 125px;
    height: auto;
  }
}
footer .cntsBlock .copyright {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */