@charset "UTF-8";
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 56px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: auto;
    left: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    height: 52px;
  }
}

.header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 180px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 35vw;
    width: 20%;
    height: 52px;
    line-height: 52px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
  }
}
.header__logo a {
  vertical-align: middle;
}

.header__logoImage {
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .header__logoImage {
    width: auto;
    height: 52px;
    padding: 0.4rem 0;
  }
}

.header__navSpBtn, .header__navSpBtn--close {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__navSpBtn, .header__navSpBtn--close {
    display: block;
    width: 40px;
    height: 40px;
  }
}

.header__navSpBtn--close {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header__navSpBtn--close img {
    position: absolute;
    top: 20px;
    right: 5%;
    width: 6vw;
  }
}

.header__nav {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
  }
}

.header__navParent {
  text-align: right;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__navParent {
    width: 100%;
    padding-top: 5rem;
  }
}

.header__navItem {
  display: inline;
  padding: 0 10px;
}
.header__navItem--contact {
  display: inline;
}

.header__navLink, .header__navLink--contact {
  display: inline-block;
  padding: 0;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .header__navLink, .header__navLink--contact {
    width: 100%;
    padding: 20px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 1px solid #cfcfcf;
  }
}

.header__navLink--contact {
  color: #222;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .header__navLink--contact {
    background: none;
    color: #FFF;
  }
}

.header__navChild {
  display: inline-block;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__navChild {
    display: none;
  }
}
.header__navChild .header__navItem {
  max-width: 80px;
}
.header__navChild .header__navItem img {
  max-width: 80px;
  vertical-align: middle;
}

footer {
  width: 100%;
  color: #FFF;
  font-size: 1rem;
  text-align: center;
  padding: 10px 20px;
  background: #454545;
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    padding: 5px;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .Footer__Copyright {
    margin: 0;
  }
}

.btnpagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0;
}
.btnpagetop a {
  position: relative;
  display: block;
  text-decoration: none;
  width: 60px;
  height: 60px;
  background: #354653;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 768px) {
  .btnpagetop a {
    width: 50px;
    height: 50px;
  }
}
.btnpagetop a:hover {
  opacity: 0.8;
}
.btnpagetop a:before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  color: #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .btnpagetop a:before {
    width: 10px;
    height: 10px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: YakuHanJP, "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  font-size: 1.6em;
  margin: 0;
  padding: 0;
}
main {
  width: 100%;
  padding: 0 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  main {
    padding: 0;
    max-width: 100%;
  }
}

#PageLoding {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: url("/images/loading.gif") no-repeat center #000;
  z-index: 99999;
}

.top__main {
  position: relative;
  height: 50vh;
  background: url("../images/bg-top-main.jpg") no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top__main {
    padding-bottom: 40vh;
    height: inherit;
    background: url("../images/bg-top-main-sp.jpg") no-repeat center bottom;
    background-size: cover;
    background-position: center;
  }
}

.top__business {
  background: url("/images/bg-top-business.png") no-repeat #454545;
  background-size: 55%;
  background-position: right top;
}
@media screen and (max-width: 768px) {
  .top__business {
    background-size: contain;
    background-position: right top;
    padding: 4rem 2rem;
  }
}

.top__business__inner {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .top__business__inner {
    padding: 0;
    width: 100%;
  }
}

.top__businessDescription {
  text-align: left;
  margin-bottom: 40px;
  font-size: 1.8rem;
  padding-left: 1%;
  padding-top: 2.5%;
}
@media screen and (max-width: 768px) {
  .top__businessDescription {
    padding: 0;
    margin-bottom: 60px;
  }
}

.top__businessTitle {
  max-width: 46%;
  font-size: 3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top__businessTitle {
    max-width: 100%;
    margin-left: 0;
  }
}

.top__businessTxt {
  max-width: 60%;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top__businessTxt {
    max-width: 100%;
  }
}

.top__businessItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.top__businessItem {
  -webkit-box-flex: 33%;
      -ms-flex: 33%;
          flex: 33%;
  width: 33%;
  padding: 2.5% 1%;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top__businessItem {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 6rem;
    font-size: 1.6rem;
  }
}
.top__businessItem p {
  margin: 0 0 10px 0;
}

.top__businessItemTitle {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top__businessItemTitle {
    margin-bottom: 10px;
  }
}
.top__businessItemTitle span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top__businessItemTitle span {
    margin-bottom: 5px;
  }
}

.top__businessItemImg {
  width: 100%;
  margin-bottom: 10px;
}
.top__businessItemImg img {
  width: 100%;
  display: block;
}

.top__businessItemBtn a {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.top__businessItemBtn a:hover {
  background: #fff;
  color: #454545;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.top__company {
  padding: 4rem 0;
  background: #ededed;
}
@media screen and (max-width: 768px) {
  .top__company {
    padding: 4rem 2rem;
  }
}
.top__company .top__companyTitle {
  font-size: 3rem;
  text-align: center;
  color: #222;
}
.top__company .top__companyTable {
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 3rem;
  font-size: 1.7rem;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .top__company .top__companyTable {
    font-size: 1.7rem;
  }
}
.top__company .top__companyTable th, .top__company .top__companyTable td {
  padding: 2rem 1rem;
  color: #222;
}
.top__company .top__companyTable tr {
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .top__company .top__companyTable th {
    width: 30%;
  }
}
.top__company .top__companyTable td {
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top__company .top__companyTable td {
    width: 70%;
  }
}

.top__companymap {
  padding: 4rem 0;
  background: #454545;
}
@media screen and (max-width: 768px) {
  .top__companymap {
    padding: 4rem 2rem;
  }
}

.top__companymap__inner {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .top__companymap__inner {
    width: 100%;
    max-width: 100%;
  }
}

.top__companymapTitle {
  font-size: 3rem;
  text-align: center;
  color: #fff;
}

.top__companymapWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top__companymapBox--Branch {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top__companymapBox--Branch {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    padding: 0;
  }
}

.top__companymapData {
  margin-bottom: 5px;
}
.top__companymapData iframe {
  width: 100%;
  height: 275px;
}

.top__companymapBox--Title {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.top__businessmapBox--Address {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .top__businessmapBox--Address {
    font-size: 1.6rem;
  }
}

.top__contact {
  padding: 4rem 0;
  background: #454545;
}
@media screen and (max-width: 768px) {
  .top__contact {
    padding: 4rem 2rem;
  }
}

.contact__mainTitle {
  font-size: 3rem;
  text-align: center;
  color: #FFF;
  margin: 0.67em 0;
  font-weight: bold;
}

.ContactForm {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  background: #fff;
  border-radius: 4px;
}

.mail:before {
  content: "contact-jaqua＠jaqua-corp.com";
  display: block;
  height: 100%;
  width: 100%;
  color: #222;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.contact {
  max-width: 960px;
  margin: auto;
  padding: 40px;
  background: #FFF;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .contact {
    max-width: 90%;
    margin: auto;
    margin-top: 5rem;
    position: inherit;
    left: auto;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.contact__mainDescription {
  font-size: 1.4rem;
  line-height: 1.5;
}

.contact__formTable, .contact__formTable--confirmation {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact__formTable, .contact__formTable--confirmation {
    width: 100%;
    max-width: calc(100% - 2rem);
  }
}
.contact__formTable .contact__mainTitle, .contact__formTable--confirmation .contact__mainTitle {
  margin: 0;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #FFF;
}
.contact__formTable .formTable__Label, .contact__formTable--confirmation .formTable__Label {
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFF;
}

.contact__formTable--confirmation {
  max-width: 1200px;
}
.contact__formTable--confirmation .formTable__Label {
  border-bottom: 1px solid #DDD;
}
.contact__formTable--confirmation .contact__mainTitle {
  color: #222;
}
.contact__formTable--confirmation .formTable__Label {
  color: #222;
}

.formTable__Input {
  margin-bottom: 20px;
}

.formTable__InputText,
.formTable__InputTextArea {
  width: 100%;
  padding: 6px;
  border: none;
  resize: vertical;
}

.formTable__Submit {
  text-align: center;
}

.formTable__button--confirmation {
  display: inline-block;
  width: 40%;
  padding: 20px 30px;
  color: #FFF;
  font-weight: bold;
  background: #242424;
  border: 1px solid #FFF;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .formTable__button--confirmation {
    width: 100%;
  }
}
.formTable__button--confirmation:hover {
  cursor: pointer;
  background: #969696;
}

.formTable__button--historyBack {
  display: inline-block;
  width: 40%;
  padding: 20px 30px;
  font-weight: bold;
  color: #242424;
  background: #FFF;
  border: 1px solid #242424;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .formTable__button--historyBack {
    width: 100%;
  }
}
.formTable__button--historyBack:hover {
  cursor: pointer;
  color: #787777;
}

.ProductHeading {
  background: #f2f2f2;
  padding: calc(6rem + 56px) 0 6rem 0;
  text-align: center;
  margin-bottom: 4rem;
  color: #454545;
}
@media screen and (max-width: 768px) {
  .ProductHeading {
    padding: calc(3rem + 52px) 0 3rem 0;
  }
}

.ProductHeading__MainTitle {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0;
}
.ProductHeading__MainTitle.is-drainLogo:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: url("/images/drain/product_drain_logo-simbol.png") no-repeat center;
  background-size: cover;
}
.ProductHeading__MainTitle span {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .ProductHeading__MainTitle {
    padding: 0 2rem;
  }
}

.ProductHeading__Description {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto 6rem;
  color: #454545;
}
@media screen and (max-width: 768px) {
  .ProductHeading__Description {
    width: 100%;
    padding: 0 2rem;
  }
}
.ProductHeading__Description p {
  margin: 0 0 10px 0;
  line-height: 1.8;
  font-size: 1.6rem;
}
.ProductHeading__Description p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .ProductHeading__Description p {
    font-size: 1.6rem;
  }
}

.ProductDetail {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto 60px;
  color: #454545;
}
@media screen and (max-width: 768px) {
  .ProductDetail {
    width: 100%;
    padding: 0 2rem;
  }
}

.ProductDetailBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .ProductDetailBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.ProductDetailBox.is_mbHalf {
  margin-bottom: 30px;
}

.ProductDetailBox p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.ProductDetail__MainTitle {
  font-size: 2.8rem;
  margin: 0 0 20px 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ProductDetail__MainTitle {
    font-size: 3.5rem;
    margin: 0 0 16px 0;
  }
}
.ProductDetail__MainTitle span {
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .ProductDetail__MainTitle span {
    font-size: 2rem;
  }
}

.ProductDetail__Description {
  width: 49%;
  border: 1px solid #d5d5d5;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .ProductDetail__Description {
    width: 100%;
    padding: 2rem;
  }
}
.ProductDetail__Description p {
  margin: 0 0 10px 0;
}
.ProductDetail__Description p:last-child {
  margin: 0;
}
.ProductDetail__Description ul {
  padding: 0 0 0 20px;
  margin: 0;
}
.ProductDetail__Description ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.3em 0;
}
.ProductDetail__Description.is_Oyunano ul {
  margin-bottom: 40px;
}

.ProductDetail__Photo {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .ProductDetail__Photo {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.ProductDetail__Photo img {
  width: 100%;
  display: block;
}

.ProductDetail__SpecTitle {
  margin: 0;
  margin-top: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .ProductDetail__SpecTitle {
    margin-top: 20px;
  }
}
.ProductDetail__SpecTitle:first-child {
  margin-top: 0px;
}

.ProductDetail__SpecText {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 1px;
}
.ProductDetail__SpecText .SpecText__Box {
  overflow: hidden;
}
.ProductDetail__SpecText .SpecText__Full {
  margin: 0;
}
.ProductDetail__SpecText .SpecText__Price {
  margin: 0;
}
.ProductDetail__SpecText .SpecText__Full--Roller {
  margin-bottom: 10px;
}
.ProductDetail__SpecText .SpecText__Half {
  width: 50%;
  margin: 0;
  float: left;
}
.ProductDetail__SpecText dl {
  overflow: hidden;
}
.ProductDetail__SpecText dt {
  float: left;
  clear: left;
  margin-right: 0;
  width: 60px;
}
.ProductDetail__SpecText dd {
  float: left;
  margin-left: 0;
}
.ProductDetail__SpecText .SpecText__Price {
  margin: 0;
}
.ProductDetail__SpecText .SpecText__Price dt {
  width: 146px;
  text-align: left;
}

.ProductEtcDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ProductEtcDetail .ProductEtcDetail__Box {
  width: 49%;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .ProductEtcDetail .ProductEtcDetail__Box {
    width: 100%;
  }
}
.ProductEtcDetail .ProductDetail__Photo {
  width: 100%;
  margin-bottom: 20px;
}
.ProductEtcDetail .ProductDetail__Photo img {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .ProductEtcDetail .ProductDetail__Photo img {
    width: 100%;
  }
}
.ProductEtcDetail .ProductDetail__MainTitle {
  font-size: 2.2rem;
}
.ProductEtcDetail .ProductDetail__Description {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ProductEtcDetail .ProductDetail__SpecText {
  font-size: 1.4rem;
}
.ProductEtcDetail .ProductDetail__SpecText dl {
  overflow: hidden;
}
.ProductEtcDetail .ProductDetail__SpecText dt {
  float: left;
  clear: left;
  margin-right: 0;
  text-align: right;
  width: 100px;
}
.ProductEtcDetail .ProductDetail__SpecText dd {
  float: left;
  margin-left: 0;
}
.ProductEtcDetail .ProductDetail__SpecText.is_roller dl {
  overflow: hidden;
}
.ProductEtcDetail .ProductDetail__SpecText.is_roller dt {
  float: left;
  clear: left;
  margin-right: 0;
  text-align: right;
  width: 60px;
}
.ProductEtcDetail .ProductDetail__SpecText.is_roller dd {
  float: left;
  margin-left: 0;
}

.ProductPDF__Btn a,
.ProductMore__Btn a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #55769c;
  border-bottom: 5px solid #495a6d;
  border-radius: 10px;
  padding: 20px 40px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.ProductPDF__Btn a:hover,
.ProductMore__Btn a:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.ProductDetailBox__SubTitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 40px;
}
.ProductDetailBox__SubTitle:first-child {
  margin-top: 0;
}

.OyuNanoPriceBox {
  margin-bottom: 10px;
}
.OyuNanoPriceBox p {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .OyuNanoPriceBox p {
    font-size: 1.6rem;
  }
}
.OyuNanoPriceBox .OyuNano__Type {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
}
.OyuNanoPriceBox .OyuNano__ModelNumber {
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .OyuNanoPriceBox .OyuNano__ModelNumber {
    font-size: 1.6rem;
  }
}
.OyuNanoPriceBox .OyuNanoPrice {
  font-size: 1.8rem;
  font-weight: bold;
}

.ProductDetail__DescriptionImg {
  width: 100%;
  margin-bottom: 10px;
}
.ProductDetail__DescriptionImg img {
  width: 100%;
  display: block;
}


/* 消去系 */
.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}


/* ドレンの製造・卸販売 */
.ProductDrain {
  padding: 2rem 0 0;
}
@media screen and (max-width: 768px) {
  .ProductDrain {
    padding: 2rem 2rem 0;
  }
}
.ProductDrain__Logo {
  text-align: center;
  margin-bottom: 2rem;
}
.ProductDrain__Logo img {
  max-width: 100%;
}
.ProductDrain__inner {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .ProductDrain__inner {
    padding: 0;
    width: 100%;
  }
}

.ProductDrain__Items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.ProductDrain__Item {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  width: 50%;
  padding: 2.5% 1%;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .ProductDrain__Item {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 6rem;
    font-size: 1.6rem;
  }
}
.ProductDrain__Item p {
  margin: 0 0 10px 0;
}

.ProductDrain__ItemTitle {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ProductDrain__ItemTitle {
    margin-bottom: 10px;
  }
}

.ProductDrain__ItemImg {
  width: 100%;
  margin-bottom: 10px;
}
.ProductDrain__ItemImg img {
  width: 100%;
  display: block;
}

.ProductDrain__ItemBtn a {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  padding: 10px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.ProductDrain__ItemBtn a:hover {
  background: #000;
  color: #fff;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}


/* ドレン（鉛） */
/* ドレンページ テーブル 横2列 */
.Drain__tableHalf {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
.Drain__tableHalf::after ,
.Drain__tableFull__01::after {
  display: block;
  width: 100%;
  margin: 2rem 0;
  font-size: 13px;
  color: #777;
  content: "※ 原材料価格等の変動により、商品価格を予告なく変更する場合があります。";
}
@media screen and (max-width: 768px) {
  .Drain__tableHalf::after ,
  .Drain__tableFull__01::after {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .Drain__tableHalf {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.Drain__tableCaption {
  font-size: 13px;
  text-align: left !important;
  background: #FFF !important;
}
.Drain__tableHalf__01 {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .Drain__tableHalf__01 {
    width: 100%;
    margin-bottom: 30px;
  }
}

.Drain__tableHalf__01:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .Drain__tableHalf__01:last-child {
    margin-bottom: 0;
  }
}

.Drain__tableHalf__01 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .Drain__tableHalf__01 table {
    font-size: 12px;
  }
}

/* .Drain__tableHalf__01 table tr:last-child:nth-child(even) {
  border-bottom: 1px solid #d5d5d5;
} */

.Drain__tableHalf__01 table tr:nth-child(odd) td {
  background: #f6f6f6;
}

.Drain__tableHalf__01 table tr th,
.Drain__tableHalf__01 table tr td {
  text-align: center;
  padding: 15px 5px;
}

.Drain__tableHalf__01 table tr th {
  background: #0009;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.Drain__tableHalf__01 table tr td {
  position: relative;
}

.Drain__tableHalf__01 table tr th:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #fff;
}

.Drain__tableHalf__01 table tr th:first-child:before {
  display: none;
}


.Drain__tableHalf__01 table tr td:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #d5d5d5;
}

.Drain__tableHalf__01 table tr td:first-child:before {
  display: none;
}


/* ドレンページ テーブル 横1列 */
.Drain__tableFull {
  margin-bottom: 60px;
}

.Drain__tableFull__01 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Drain__tableFull__01 {
    margin-bottom: 30px;
  }
}

.Drain__tableFull__01 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .Drain__tableFull__01 table {
    font-size: 12px;
  }
}

.Drain__tableFull__01 table tr:last-child:nth-child(even) {
  border-bottom: 1px solid #d5d5d5;
}

.Drain__tableFull__01 table tr:nth-child(odd) td {
  background: #f6f6f6;
}

.Drain__tableFull__01 table tr th,
.Drain__tableFull__01 table tr td {
  text-align: center;
  padding: 15px 5px;
}

.Drain__tableFull__01 table tr th {
  background: #0009;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.Drain__tableFull__01 table tr td {
  position: relative;
}

.Drain__tableFull__01 table tr th:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #fff;
}

.Drain__tableFull__01 table tr th:first-child:before {
  display: none;
}


.Drain__tableFull__01 table tr td:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #d5d5d5;
}

.Drain__tableFull__01 table tr td:first-child:before {
  display: none;
}


/* 自動販売機設置の仲介事業 */
.ProductHeading__Description.is_VendingPHD {
  margin: 0 auto 30px;
}

.Vending__Inner {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  color: #454545;
}
@media screen and (max-width: 768px) {
  .Vending__Inner {
    width: 100%;
    padding: 48px 16px;
  }
}

.Vending__MainTitle {
  text-align: center;
  font-size: 3rem;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .Vending__MainTitle {
    margin: 0 auto 48px;
  }
}

/* 自動販売機の画像 */
.VendingFV .Vending__Inner {
  padding: 0;
}

.VendingFV__img img {
  display: block;
  border-radius: 10px;
  width: 100%;
}


/* 自動販売機設置について */

.VendingIntro__Content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .VendingIntro__Content {
    flex-direction: column;
    justify-content: normal;
    margin-bottom: 30px;
  }
}

.VendingIntro__ContentBox {
  width: 49%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ContentBox {
    width: 100%;
    margin-bottom: 30px;
  }
  .VendingIntro__ContentBox:last-child {
    margin-bottom: 0;
  }
}

.VendingIntro__Title {
  width: 100%;
  font-size: 3rem;
  line-height: 1.5;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .VendingIntro__Title {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 auto 10px;
  }
}

.VendingIntro__SubTitle {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: normal;
}

.VendingIntro__Description {
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .VendingIntro__Description {
    padding: 16px;
  }
}

.VendingIntro__Description p {
  line-height: 1.8;
  font-size: 1.6rem;
  margin: 0;
}

.VendingIntro__Service {
  background: #FAF7F5;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .VendingIntro__Service {
    padding: 16px;
  }
}

.VendingIntro__ServiceMainTitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 auto 10px;
  text-align: center;
  color: #A27E66;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceMainTitle {
    font-size: 2.2rem;
  }
}

.VendingIntro__ServiceDescription {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceDescription {
    margin-bottom: 20px;
  }

  .VendingIntro__ServiceDescription p {
    margin: 0;
  }
}

.VendingIntro__ServiceFlow {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceFlow {
    flex-wrap: wrap;
  }
}

.VendingIntro__ServiceBox {
  width: calc(25% - 10px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 10px 10px 5px -8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceBox {
    width: calc(50% - 8px);
    padding: 16px;
    margin-bottom: 16px;
  }

  .VendingIntro__ServiceBox:last-child,
  .VendingIntro__ServiceBox:nth-last-child(2):nth-child(odd) {
    margin-bottom: 0;
  }
}

.VendingIntro__ServiceTitle {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d5d5d5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceTitle {
    font-size: 1.6rem;
  }
}

.VendingIntro__ServiceBox p {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .VendingIntro__ServiceBox p {
    font-size: 1.4rem;
  }
}

/* 自動販売機設置のメリット */
.VendingMerit {
  background: #F2F7F9;
}

.VendingMerit__Content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.VendingMerit__ContentBox {
  width: 49%;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .VendingMerit__ContentBox {
    width: 100%;
    margin-bottom: 48px;
  }
}

.VendingMerit__ContentBox:last-child,
.VendingMerit__ContentBox:nth-last-child(2):nth-child(odd) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .VendingMerit__ContentBox:last-child {
    width: 100%;
  }
}

.VendingMerit__TitlePoint {
  background: #454545;
  padding: 10px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin: 0;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .VendingMerit__TitlePoint {
    padding: 8px;
    font-size: 1.6rem;
  }
}

.VendingMerit__Title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .VendingMerit__Title {
    margin-bottom: 10px;
  }
}

.VendingMerit__Title h3 {
  font-size: 2.6rem;
  line-height: 1.5;
  margin: 0 0 0 16px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .VendingMerit__Title h3 {
    font-size: 2.2rem;
    margin: 0 0 0 8px;
  }
}

.VendingMerit__Description {
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .VendingMerit__Description {
    padding: 16px;
  }
}

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


/* 自動販売機設置までの流れ */
.VendingFlowBefore .Vending__MainTitle.is_VFB_TitC {
  color: #6e93cc;
}

.VendingFlowBefore__Wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .VendingFlowBefore__Wrapper {
    flex-wrap: wrap;
  }
}

.VendingFlowBefore__Box {
  width: 19%;
  position: relative;
  margin-top: 25px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .VendingFlowBefore__Box {
    width: 100%;
    margin-bottom: 23px;
  }
  .VendingFlowBefore__Box:last-child {
    margin-bottom: 0;
  }
}

.VendingFlowBefore__Num {
  background: #6e93cc;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.VendingFlowBefore__Description {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 45px 30px 30px;
}

.VendingFlowBefore__Description p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.fs80 {
  font-size: 80%;
}

.fs50 {
  font-size: 50%;
}

/* 自動販売機設置後の流れ */
.VendingFlowAfter .Vending__MainTitle.is_VFA_TitC {
  color: #5F9EA0;
}

.VendingFlowAfter__Wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .VendingFlowAfter__Wrapper {
    flex-wrap: wrap;
  }
}

.VendingFlowAfter__Box {
  width: 19%;
  position: relative;
  margin-top: 25px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .VendingFlowAfter__Box {
    width: 100%;
    margin-bottom: 23px;
  }

  .VendingFlowAfter__Box:last-child {
    margin-bottom: 0;
  }
}

.VendingFlowAfter__Num {
  background: #5F9EA0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.VendingFlowAfter__BoxInner {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 45px 20px 30px;
}

.VendingFlowAfter__Title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  padding: 0 0 20px;
  margin: 0 0 20px;
  line-height: 1.5;
  border-bottom: 1px solid #d5d5d5;
  min-height: 81px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .VendingFlowAfter__Title {
    font-size: 2.2rem;
    padding: 0 0 10px;
    margin: 0 0 10px;
    min-height: auto;
  }
}

.VendingFlowAfter__Description p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  padding: 0 10px 0;
}


/* 自動販売機設置のよくある質問 */
.VendingQA {
  background: #F2F7F9;
}

.VendingQA__Wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.VendingQA__Box {
  border-bottom: 1px solid #d5d5d5;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.VendingQA__Box:last-child {
  border-bottom: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .VendingQA__Box {
    margin: 0 0 16px;
    padding: 0 0 16px;
  }
}

.VendingQA__Box:last-child {
  margin: 0;
}

.VendingQA__Box dt {
  font-size: 2rem;
  line-height: 1.8;
  padding: 0 0 0 42px;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .VendingQA__Box dt {
    padding: 0 0 0 25px;
    margin-bottom: 10px;
  }
}

.VendingQA__Box dt::before {
  content: "Q";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 2.4rem;
  line-height: 1;
}

.VendingQA__Box dd {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 0 0 0 42px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .VendingQA__Box dd {
    padding: 0 0 0 25px;
  }
}

.VendingQA__Box dd::before {
  content: "A";
  display: block;
  position: absolute;
  top: 5px;
  left: 2px;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
}


/* ドリームレバレッジのご紹介 */
.VendingAboutDL .Vending__Inner .Vending__MainTitle {
  margin: 0 0 30px;
}

.VendingAboutDL__Intro p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  margin: 0 0 30px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .VendingAboutDL__Intro p {
    text-align: left;
  }
}

.VendingAboutDL__Feature h3 {
  font-size: 2rem;
}

.VendingAboutDL__FeatureBox {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .VendingAboutDL__FeatureBox {
    flex-wrap: wrap;
  }
}

.VendingAboutDL__FeatureBox01 {
  width: 49%;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 30px;
  margin: 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .VendingAboutDL__FeatureBox01 {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
  }

  .VendingAboutDL__FeatureBox01:last-child {
    margin-bottom: 0;
  }
}

.VendingAboutDL__FeatureBox01 h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  padding: 0;
}

.VendingAboutDL__FeatureBox01 p {
  margin: 0;
  padding: 0;
}

.VendingAboutDL__FeatureBox01 ul {
  margin: 0 0 20px 0;
  padding: 0 0 0 15px;
}

.fwb {
  font-weight: bold;
}











/*# sourceMappingURL=style.css.map */