@charset "UTF-8";
/* #Base
-------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
  opacity: 0;
}
html.is-actv {
  opacity: 1;
  transition: opacity 1s ;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  width: 100%;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 14px;
  font-family: UniversLTPro-55Roman, "新ゴ M", "Shin Go Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.main {
  font-weight: 700;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}
th {
  text-align: left;
}
img {
  display: inline-block;
  vertical-align: middle;
  height: auto;
  -webkit-backface-visibility: hidden;
}
em {
  font-style: italic;
}
b, strong, em {
  font-family: UniversLTPro-65Boldt, "新ゴ B", "Shin Go Bold";
}
ol, ul.square {
  margin-left: 1.6em;
}
ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.square li {
  list-style-type: square;
}
p {
  margin-bottom: 15px;
}
a img.over {
  -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
a:hover.over, a:hover img.over {
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
button, select, option, input[type="checkbox"], input[type="radio"], input[type="reset"], input[type="submit"] {
  padding: 1px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select {
  position: relative;
  z-index: 2;
  border: 1px solid #ccc;
  padding: 8px;
  background-color: white;
  color: #333;
  font-size: 14px;
  line-height: 1;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  -moz-transition: border 0.3s ease-in;
  -o-transition: border 0.3s ease-in;
  -webkit-transition: border 0.3s ease-in;
  transition: border 0.3s ease-in;
}
textarea {
  line-height: 1.4;
}
select {
  padding: 3px;
}
option {
  padding: 2px 3px;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #CCC;
  box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}
[src$=".svg"], [data$=".svg"] {
  width: 100%;
}
#dhcwCheckcnt {
  font-size: 1.2rem;
  box-sizing: content-box;
}
.pcMode {
  display: inline-block!important;
}
.spMode {
  display: none!important;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  b {
    font-weight: 700;
  }
  input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select {
    padding: 6px;
  }
  input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
  }
  input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
  }
  select {
    padding: 3px;
  }
  .pcMode {
    display: none!important;
  }
  .spMode {
    display: inline-block!important;
  }
}
/* Header
-------------------------------------------------------------------------- */
.header {
  font-weight: 700;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  height: 110px;
  margin: auto;
  top: 0;
  left: 50px;
  right: 0;
  z-index: 999;
}
.header .header__logo {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header .header__logo {
  width: 300px;
  height: 44px;
  left: 0;
}
.header .header__logo img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
.header {
  height: 70px;
  left: 15px;
}
.header .header__logo {
  width: 180px;
  height: 26px;
}
}
/* nav
-------------------------------------------------------------------------- */
.nav {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: fixed;
  top: 35px;
  right: 50px;
  display: flex;
  justify-content: space-between;
}
.navList {
  padding: 12px 20px;
  display: flex;
  grid-gap: 0 15px;
}
.navList__item {
  color: #343434;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.navList a {
  color: #343434;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.navList a:hover {
  opacity: .6;
  transition: opacity .2s;
}
.navList a span {
  display: none;
}
.navRequestdemo {
  display: flex;
  align-items: center;
}
.navRequestdemo__btn {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  background: #ff7f0e;
  transition: background-color .5s;
}
.navRequestdemo__btn:hover {
  background: #343434;
  transition: background-color .5s;
}
@media only screen and (max-width: 1024px) {
.nav {
  display: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.nav.is-actv {
  display: block;
}
.navList {
  padding: 100px 20px 50px;
  grid-gap: 40px;
  flex-direction: column;
}
.navList__item {
  font-size: 20px;
  font-weight: 700;
}
.navList a:link {
  font-size: 20px;
}
.navList a span {
  color: #999;
  font-size: 12px;
  margin-left: 15px;
  display: inline-block;
}
.navRequestdemo {
  width: 100%;
  margin: 0 20px;
}
.navRequestdemo__btn {
  color: #fff!important;
  font-size: 20px!important;
  width: calc(100% - 40px)!important;
  padding: 15px 20px!important;
  border-radius: 8px!important;
  display: block!important;
}
}

/* headerNavbtn
-------------------------------------------------------------------------- */
.headerNavbtn {
  display: none;
}
@media only screen and (max-width: 1024px) {
.headerNavbtn {
  display: block;
}
.headerNavbtn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 99999;
}
.headerNavbtn span {
  color: #505456;
  font-size: 1.0rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 3px;
  margin: auto;
}
.headerNavbtn_line1 {
  width: 20px;
  height: 2px;
  background-color: #505456;
  top: 16px;
  left: 0;
  right: 0;
  position: absolute;
  margin: auto;
}
.headerNavbtn_line3 {
  width: 20px;
  height: 2px;
  background-color: #505456;
  top: 24px;
  left: 0;
  right: 0;
  position: absolute;
  margin: auto;
}
.headerNavbtn_line1.menuclick1 {
  top: 20px;
  transform: rotate(405deg);
}
.headerNavbtn_line3.menuclick3 {
  top: 20px;
  transform: rotate(-405deg);
}
.headerNavbtn_line1, .headerNavbtn_line2, .headerNavbtn_line3, .headerNavbtn_line1.menuclick1, .headerNavbtn_line2.menuclick2, .headerNavbtn_line3.menuclick3 {
  transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; /* Opera */
  -moz-transition: all 0.5s ease-out; /* Firefox */
  -webkit-transition: all 0.5s ease-out; /* GoogleChrome, Safari */
  -ms-transition: all 0.5s ease-out; /* IE */
}
}
/* Footer
-------------------------------------------------------------------------- */
footer {
  padding-top: 20px;
  font-size: 1.2rem;
  line-height: 1.3;
  background-color: #fff;
}
footer p {
  margin: 0 10px 15px;
}
footer a:hover {
  opacity: 0.75;
}
footer p.footer__copyright {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 0;
  padding-bottom: 15px;
}
footer ul.footer__link {
  padding: 0 0 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
footer ul.footer__link li {
  float: left;
  border-right: solid 1px #ccc;
  padding: 0 9px;
  margin: 12px 0 0 -1px;
}
footer ul.footer__link li:last-child {
  border-right: none;
  padding-right: 0;
}
footer ul.footer__link a {
  color: #333;
  text-decoration: none;
}
@media screen and (min-width:961px) {
  footer {
    padding-top: 50px;
  }
  .footerInner {
    width: 870px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 15px;
  }
  footer p {
    padding: 15px 0;
    margin: 0 0 15px;
    text-align: right;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  footer p.footer__copyright {
    float: right;
    text-align: right;
    font-size: 1rem;
    border: none;
    padding-top: 0;
    margin-top: 2px;
  }
  footer ul.footer__link {
    float: left;
    padding: 0;
    overflow: hidden;
    border: none;
    margin-top: 2px;
  }
  footer ul.footer__link li {
    margin: 0;
  }
  footer ul.footer__link li:first-child {
    padding-left: 0;
  }
}
/* sp or pc
------------------------------------------ */
.spOnly {
  display: none !important;
}
br.pc {
  display: inline-block;
}
br.sp {
  display: none;
}
.none {
  display: none !important;
}
.visi_hidden {
  visibility: hidden !important;
}
.spOnly_ib {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: block !important;
  }
  .spOnly_ib {
    display: inline-block !important;
  }
  .none {
    display: none !important;
  }
  br.pc {
    display: none;
  }
  br.sp {
    display: inline-block;
  }
}
.clearfix:after {
  content:"";
  height: 0;
  display: block;
  clear: both;
}