@charset "UTF-8";

body {
  font-family: -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Hiragino Sans,
    'ヒラギノ角ゴ ProN W3',
    Hiragino Kaku Gothic ProN,
    "Yu Gothic",
    YuGothic,
    Verdana,
    Meiryo,
    "M+ 1p",
    sans-serif;
  color: #666;
  line-height: 1.6;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

#static-content .wrap img {
  image-rendering: -webkit-optimize-contrast;
}

#static-content s {
  text-decoration: line-through;
}

#static-content select {
  text-align: left;
}

#static-content .wrap header {
  padding: 10px 0 !important;
  border-bottom: 0 !important;
}

#static-content header.lp-header p {
  text-align: center;
  margin-bottom: 0;
}

#static-content h1:not(.img) {
  color: inherit;
  background: inherit;
  font-size: inherit;
  padding: inherit;
  margin: inherit;
  margin-left: inherit;
  margin-right: inherit;
}

#static-content h2:not(.img) {
  text-align: center;
  font-size: inherit;
  color: inherit;
  border-top: inherit;
  padding: 0;
  background: inherit;
}

#static-content h3:not(.img) {
  font-size: inherit;
  color: inherit;
  background: none;
  color: inherit;
  padding: unset;
  border-top: inherit;
}

#static-content .wrap h4:before {
  content: "";
  color: inherit;
}

#static-content .wrap h5:before {
  content: "";
  color: inherit;
}

#static-content .cp-bnr {
  padding: 3%;
}

#static-content .cp-bnr p {
  text-align: center;
  margin-bottom: 0;
}

#static-content .cp-bnr p img {
  margin: auto;
}

#static-content .wrap * {
  font-weight: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#static-content .wrap form,
#static-content .wrap dl.formGroup,
#static-content .wrap .form {
  text-align: center;
  margin-bottom: 0;
}

#static-content .wrap dl.formGroup dt {
  text-align: right;
  margin-right: 0;
}

#static-content .wrap dl.formGroup dd:nth-of-type(2) {
  margin: 10px 0 0 15px;
}

#static-content .wrap ul.noticeList {
  font-size: 12px;
  margin: 0 0 30px 0;
  padding: 0 3%;
}

#static-content .wrap ul.noticeList>li {
  text-indent: -1em;
  padding-left: 1em;
}

#static-content .wrap ul.noticeList>li:before {
  content: "※";
  font-family: 'Noto Sans JP',
    sans-serif;
  display: inline;
  background-image: none;
  width: inherit;
  height: inherit;
  margin-right: 0;
  vertical-align: top;
}

#static-content .img-auto {
  text-align: center;
}

#static-content .img-auto img {
  margin: auto;
}

#static-content .price-commnent {
  color: inherit;
  margin: 0;
}

#static-content .price-commnent li {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}

#static-content .price-commnent span {
  margin: 0;
}

#static-content .btn-wrap {
  width: 90%;
  margin: 0 auto 50px auto;
}

#static-content .btn-wrap p {
  text-align: center;
}

#static-content .itemInfoFormBtn {
  width: 94%;
  margin: 20px auto 0 auto;
}

#static-content .itemInfoFormBtn a,
#static-content .cart-btn img {
  cursor: pointer;
}

#static-content .itemInfoFormBtn a {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  background: #f9690f;
  text-align: center;
  text-decoration: none;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  margin: 0 0 20px 0;
}

#static-content .cart-btn-hover a {
  position: relative;
  display: block;
  width: 570px;
  height: 86px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 下のものをまとめる事も可能　全てのプロパティを0.3秒で開始と完了を滑らかに変化させる */
  margin: auto;
}

#static-content .cart-btn-hover a:hover {
  /*  opacity:0.9;*/
  -webkit-transform: scale(0.98, 0.98);
  transform: scale(0.98, 0.98);
  /* 要素を拡大縮小する　この場合はX方向（横）、Y方向（縦）に98%に縮小 */
}

#static-content .cart-btn-hover a span {
  opacity: 0;
  display: block;
  width: 1000px;
  height: 500px;
  /* 画像のサイズに合わせて少し大きめに作る */
  position: absolute;
  top: -100px;
  left: -200px;
  /* 画像のサイズに合わせて位置を外側から外側へ */
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition-property: left, top, opacity;
  transition-property: left, top, opacity;
  /* a spanのcssプロパティ left,top,opacityを時間的変化させる */
  -webkit-transition-duration: 0.7s, 0.5s, 0.1s;
  transition-duration: 0.7s, 0.5s, 0.1s;
  /* 変化にかかる時間を指定 上のプロパティに対応している*/
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  /* 変化のタイミング・進行割合を指定 easeの場合は開始と完了を滑らかにする */
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  /* 要素を回転表示　この場合は30度回転させる */
}

#static-content .cart-btn-hover a:hover span {
  /* マウスオーバーした時の光の位置 */
  opacity: 1;
  top: -50px;
  left: 630px;
}

#static-content .form-wrap h3 {
  margin: 0 0 20px 0;
}

#static-content .form-wrap .inner {
  padding: 0 3%;
  margin: 0 0 30px 0;
}

#static-content .form-wrap .service .left {
  float: left;
  width: 40%;
  margin: 0 0 10px 0;
}

#static-content .form-wrap .service .right {
  float: right;
  width: 57%;
}

#static-content .form-wrap .service form {
  clear: both;
}

#static-content .form-wrap table {
  font-size: 14px;
  margin: 10px 0;
}

#static-content .form-wrap table th,
#static-content .form-wrap table td {
  vertical-align: top;
}

#static-content .form-wrap table th {
  word-break: keep-all;
}

#static-content #fan .formGroup dt,
#static-content #washer .formGroup dt {
  width: auto;
}

#static-content #container {
  background: none;
}

#static-content #container-wrapper {
  background: none;
  padding: 0;
}

#static-content #container-inner,
#static-content #container-inner .section {
  max-width: 1000px;
  width: 100%;
}

#static-content body.campaign-cat .section-inner {
  margin: 0;
  padding: 0;
}

#static-content .wrap .box {
  margin-bottom: unset;
  padding: 0;
  background: unset;
  border: unset;
  border-radius: unset;
}

#static-content .inner-wrap {
  padding: 0 3%;
}

#static-content .wrap table.tbl01 {
  font-size: 14px;
  margin-bottom: 10px !important;
  border-top: #efefef 1px solid;
  border-bottom: #efefef 1px solid;
}

#static-content .wrap table.tbl01 tr {
  border-bottom: #efefef 1px solid !important;
}

#static-content .wrap table span.cp {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #f00;
  text-align: center;
  margin: 5px 5px 0 0;
  padding: 3px 7px;
}

#static-content .wrap table.tbl01 .cp-price {
  color: #f00;
  font-size: inherit;
  font-weight: bold;
}

#static-content .tbl-blue {
  font-size: 14px;
  width: 100%;
  margin: 0 0 10px 0;
}

#static-content .tbl-blue {
  font-size: 14px;
  width: 100%;
  margin: 0 0 10px 0;
}

#static-content .tbl-blue tr th {
  color: #fff;
  background: #005bac;
  font-weight: bold;
  text-align: center;
  width: 50%;
}

#static-content .tbl-blue tr th,
#static-content .tbl-blue tr td {
  padding: 10px;
}

#static-content .tbl-blue tr td {
  border-bottom: 1px solid #ccc;
}

#static-content .tbl01 tr td span,
#static-content .tbl-blue tr td span {
  color: #f00;
  font-size: inherit;
  font-weight: bold;
}

#static-content .tbl-blue tr th:first-child {
  border-right: 1px dotted #fff;
}

#static-content #footer {
  padding: 10px 0;
  font-size: 75%;
}

#static-content #footer .footer-inner ul li:last-child {
  border-right: none;
}

#static-content .magenta tr td:first-child {
  color: #212529;
}

#static-content .magenta tr td:last-child {
  color: #fe2284;
}

#static-content #lead {
  background-image: url(../../images/190315-11/bg-lead-sp.jpg);
  background-size: cover;
  height: 100%;
  padding: 30px 0;
}

#static-content #lead h2,
#static-content #lead p {
  font-family: "Sawarabi Mincho", "Noto Serif CJK", "游明朝", serif, "Noto Sans Japanese", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
  color: #fff;
  text-align: center;
}

#static-content #lead h2 {
  font-size: 2rem;
  font-weight: bold;
  background: none;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
}

#static-content #lead p {
  font-size: 1.4rem;
  line-height: 2;
}

#static-content .tel-box {
  padding: 0 3%;
}

#static-content .tel-box dt {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 0;
  padding: 15px;
  text-align: center;
  color: #fff;
  background: #3071b9;
}

#static-content .tel-box dd {
  border: #3071b9 2px solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
}

#static-content .tel-box dd p.tel {
  text-align: center;
  vertical-align: middle;
  font-size: 3rem;
  font-weight: bold;
}

#static-content .tel-box dd p.tel a {
  color: #fd6c21;
  text-decoration: none;
}

#static-content .tel-box dd p.tel span {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  color: #2c2c2c;
}

#static-content .tel-box dd p.tel span.freedial {
  color: #fff;
  background: #3071b9;
  display: block;
  padding: 2px 10px;
}

#static-content .tel-box dd ul.etcContact {
  margin-top: 10px;
}

#static-content .tel-box dd ul.etcContact li {
  text-align: center;
}

#static-content #anchor {
  background: #ececec;
  padding: 0 3% 30px 3%;
  margin: 0 0 50px 0;
}

/* #static-content #anchor h2 {
  font-family: "Sawarabi Mincho", "Noto Serif CJK", "游明朝", serif, "Noto Sans Japanese", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
  font-size: 2rem;
  font-weight: bold;
  color: #2c82c9;
  margin: 0 0 20px 0;
}

#static-content #anchor ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#static-content #anchor ul li {
  width: 49.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 0.5% 0;
}

#static-content #anchor ul li:nth-child(n+5) {
  width: 33%;
}

#static-content #anchor ul:after {
  content: "";
  display: block;
  width: 33%;
}

#static-content #anchor ul li a {
  color: #fff;
  background: #005bac;
  text-decoration: none;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#static-content #anchor ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  height: auto;
  vertical-align: middle;
} */

#static-content #anchor ul li .mem-anchor-title {
  padding: 10px 0 5px 0;
}

#static-content #anchor ul li .mem-anchor-price {
  display: inline-block !important;
  margin-bottom: 10px !important;
  vertical-align: -2px;
}

#static-content #anchor ul li .dmg-anchor-limited-price {
  color: #fff100 !important;
}

#static-content #anchor ul li .dmg-anchor-limited-label {
  background-color: #e4007f !important;
  font-weight: bold;
}


#static-content #anchor .anchor-box {
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 3%;
  margin-bottom: 60px;
}

#static-content #anchor .anchor-box:last-of-type {
  margin-bottom: 0;
}

#static-content #anchor .anchor-box .lead-txt {
  position: absolute;
  top: -2em;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  padding: 2%;
  border-radius: 100vh;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  -ms-border-radius: 100vh;
  -o-border-radius: 100vh;
  margin: auto;
}

#static-content #anchor .anchor-box1 .lead-txt {
  background: #fe3c7b;
}

#static-content #anchor .anchor-box2 .lead-txt {
  background: #59abe3;
}

#static-content #anchor .anchor-box3 .lead-txt {
  background: #005aaa;
}

#static-content #anchor .anchor-box4 .lead-txt {
  background: #2bd5c7;
}

#static-content #anchor .anchor-box5 .lead-txt {
  background: #ffa24f;
}

#static-content #anchor .anchor-box h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: bold;
  margin-bottom: 12px;
}

#static-content #anchor .anchor-box1 h2 {
  color: #fe3c7b;
}

#static-content #anchor .anchor-box2 h2 {
  color: #59abe3;
}

#static-content #anchor .anchor-box3 h2 {
  color: #005aaa;
}

#static-content #anchor .anchor-box4 h2 {
  color: #2bd5c7;
}

#static-content #anchor .anchor-box5 h2 {
  color: #ffa24f;
}

#static-content #anchor .anchor-box ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3vw 3%;
  margin: 0;
}

#static-content #anchor .anchor-box ul li {
  width: 48.5%;
  margin: 0;
}

#static-content .mem-accbox {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 599px) {

  #static-content #anchor ul li .height2 {
    height: 3.85em;
  }

  #static-content #anchor ul li .height2a {
    height: 4.2em;
  }

  #static-content #anchor ul li .height3 {
    height: 5.25em;
  }

  #static-content #anchor ul li .height3a {
    height: 5.6em;
  }

}


@media screen and (min-width: 600px) {

  #static-content #anchor {
    padding: 0 6% 30px 6%;
  }

  #static-content #anchor ul li .mem-anchor-price {
    vertical-align: 2px;
  }

  #static-content #anchor .anchor-box .lead-txt {
    top: -1.25em;
    padding: 1%;
  }

  #static-content #anchor .anchor-box h2 {
    margin: 10px 0 12px 0;
  }

  #static-content #anchor .anchor-box ul {
    gap: 2vw 3%;
  }

  #static-content #anchor .anchor-box ul li {
    width: 258px;
  }

  #static-content .mem-accbox {
    margin-bottom: 30px !important;
  }
}


#static-content #anchor .box-wrap .box dl {
  margin: 10px 0;
}

#static-content #anchor .box-wrap .box dl dt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 5px 0;
}

#static-content #anchor .box-wrap .box:first-child dl dt {
  color: #00abf0;
}

#static-content #anchor .box-wrap2 .box:first-child dl dt {
  color: #fa960d;
}

#static-content #anchor .box-wrap .box:nth-child(2) dl dt {
  color: #1fb8b6;
}

#static-content #anchor .box-wrap2 .box:nth-child(2) dl dt {
  color: #00abf0;
}

#static-content #anchor .box-wrap .box:nth-child(3) dl dt {
  color: #ff426e;
}

#static-content #anchor .box-wrap .box:last-child dl dt {
  color: #fa960d;
}

#static-content #anchor .box-wrap2 .box:last-child dl dt {
  color: #1fb8b6;
}

#static-content #anchor .box-wrap .box dl dd {
  font-size: 14px;
}

#static-content #price {
  margin: 0 0 50px 0;
}

#static-content #price .lead-txt {
  font-size: 18px;
  text-align: center;
  margin: 0 0 20px 0;
}

#static-content #aircon {
  margin: 0 0 50px 0;
}

#static-content #aircon .option {
  background: url(/campaign/images/181015-11/bg-gray.gif) repeat;
}

#static-content #aircon .option .box {
  padding: 0 0 30px 0;
}

#static-content #aircon .option .box .inner {
  background: #fff;
  padding: 3%;
  border-left: 5px solid #00abf0;
  border-right: 5px solid #00abf0;
  border-bottom: 5px solid #00abf0;
  border-radius: 0 0 20px 20px;
}

#static-content #aircon .option .box .inner {
  background: #fff;
  padding: 3%;
  border-left: 5px solid #00abf0;
  border-right: 5px solid #00abf0;
  border-bottom: 5px solid #00abf0;
  border-radius: 0 0 20px 20px;
}

#static-content #aircon .option .box .inner .lead {
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px 0;
}

#static-content #aircon .option .box .inner h5 {
  font-size: 18px;
  line-height: 36px;
  color: #00abf0;
  background: #c9efff;
  margin: 0 0 10px 0;
  padding: 0 10px;
}

#static-content #aircon .option .box .inner p {
  font-size: 14px;
}

#static-content #fan {
  margin: 0 0 50px 0;
}

#static-content #fan .par1 {
  text-align: center;
  color: #1fb8b6;
  font-size: 18px;
  margin: 0 0 30px 0;
}

#static-content #fan .par1 h3,
#static-content #fan .par1 p,
#static-content #fan .par2 .inner-wrap p {
  margin: 0 0 30px 0;
}

#static-content #fan .par1 h3,
#static-content #fan .par1 p,
#static-content #fan .par2 h3,
#static-content #fan .par2 p.img {
  text-align: center;
}

#static-content #fan .par2 {
  font-size: 18px;
  background: url(/campaign/images/181015-11/bg-gray.gif) repeat;
  overflow: hidden;
}

#static-content #bath {
  margin: 0 0 50px 0;
}

#static-content #bath .par1 {
  background: url(/campaign/images/181015-11/bg-pink.gif) repeat;
  padding: 60px 3% 30px 3%;
}

#static-content #bath .par1 .inner {
  background: #fff;
  padding: 3%;
  border: 1px solid #000;
}

#static-content #bath .par1 .inner h3 {
  margin: -10vw 0 20px 0;
  border: 0;
}

#static-content #bath .inner .lead {
  text-align: center;
  margin: 0 0 20px 0;
}

#static-content #bath .inner .lead span {
  font-size: 24px;
  color: #ff426e;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffffbd));
  background: linear-gradient(transparent 60%, #ffffbd 60%);
}

#static-content #bath .par1 .inner .box {
  margin: 0 0 30px 0;
}

#static-content #bath .par1 .inner h3 {
  text-align: center;
}

#static-content #bath .par1 .inner .box h4 {
  color: #fff;
  background: #ff426e;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  margin: 0 0 10px 0;
}

#static-content #bath .par1 .inner .box .box-wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#static-content #bath .par1 .inner .box .box-wrap .left {
  width: 40%;
}

#static-content #bath .par1 .inner .box .box-wrap .right {
  width: 57%;
}

#static-content #bath .par1 .inner .service-scope {
  background: #dfdfdf;
  border-radius: 5px;
  padding: 3%;
}

#static-content #bath .par1 .inner .service-scope dl dt {
  font-weight: bold;
}

#static-content #bath .par2 {
  padding: 30px 3%;
}

#static-content #bath .par2 p {
  text-align: center;
}

#static-content #bath .par3 {
  background: url(/campaign/images/181015-11/bg-gray.gif) repeat;
  overflow: hidden;
}

#static-content #bath .par3 h3 {
  text-align: center;
}

#static-content #bath .par3 .inner-wrap .box {
  margin: 0 0 30px 0;
}

#static-content #bath .par3 .inner-wrap .box .inner {
  background: #fff;
  padding: 3%;
  border-left: 5px solid #ff426e;
  border-right: 5px solid #ff426e;
  border-bottom: 5px solid #ff426e;
  border-radius: 0 0 20px 20px;
}

#static-content #bath .par3 .inner-wrap .box .inner .txt {
  color: #fff;
  background: #ff426e;
  padding: 3%;
  border-radius: 5px;
}

#static-content #bath .form-wrap h4 {
  font-size: 14px;
}

#static-content #washer .par1 {
  color: #fff;
  background: #fa960d;
  padding: 30px 3% 0 3%;
  overflow: hidden;
}

#static-content #washer .img {
  text-align: center;
}

#static-content #washer .par2 {
  background: url(/campaign/images/181015-11/bg-gray.gif) repeat;
  overflow: hidden;
}

#static-content #washer .par1 h3,
#static-content #washer .par1 p,
#static-content #washer .par2 h3,
#static-content #washer .par2 p {
  margin: 0 0 30px 0;
}

#static-content #washer p span {
  color: #fa960d;
  font-size: 18px;
}

#static-content .service-menu {
  margin: 0 0 50px 0;
}

#static-content .service-menu h2 {
  font-family: "Sawarabi Mincho", "Noto Serif CJK", "游明朝", serif, "Noto Sans Japanese", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
  font-size: 2rem;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  color: #fff;
  background: #0374d9;
  background: linear-gradient(135deg, #0374d9 0%, #0374d9 80%, #005bac 80%, #005bac 100%);
  filter: ;
  progid: DXImageTransform.Microsoft.gradient(startColorstr="#0374d9", endColorstr="#005bac", GradientType=1);
  height: auto;
  line-height: 1.4;
  padding: .5em 0;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}

#static-content .service-menu h2 span {
  font-size: 1.5rem;
  padding: 0 0 0 0.5em;
}

#static-content .service-menu h3 {
  font-family: "Sawarabi Mincho", "Noto Serif CJK", "游明朝", serif, "Noto Sans Japanese", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  background: #005bac;
  text-align: center;
  height: 40px;
  line-height: 40px;
  margin: 0;
}

#static-content .service-menu .description {
  text-align: justify;
  font-size: 14px;
  padding: 3%;
}

#static-content .service-menu .img-ba {
  padding: 3%;
  margin: -3% 0 3% 0;
}

#static-content .service-menu .img-description {
  padding: 0 3%;
  margin: 0;
}

#static-content .service-menu .tbl01 tr th {
  width: 30%;
}

#static-content .service-menu .tbl01 tr td {
  width: 70%;
}

#static-content .stores {
  padding: 0 3%;
  margin: 0 0 50px 0;
}

#static-content .stores h2 {
  text-align: center;
  font-family: "Sawarabi Mincho",
    "Noto Serif CJK",
    "游明朝",
    serif,
    "Noto Sans Japanese",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue";
  font-size: 2rem;
  font-weight: bold;
  color: #0374d9;
  margin: 0 0 20px 0;
}

#static-content .stores h2 sup {
  font-size: 1.2rem;
  vertical-align: .2em;
}

#static-content .stores .stores-box ul {
  padding: 0;
  margin: 0;
}


@media screen and (min-width: 600px) {

  #static-content .service-menu h2.pc-small {
    font-size: 1.9rem;
    line-height: 1.5;
  }

  #static-content .stores h2 {
    font-size: 3rem;
  }

  #static-content .stores .stores-box {
    width: 750px;
    margin: auto;
  }

  #static-content .stores h2 sup {
    vertical-align: .6em;
  }
}

#static-content .evaluation {
  padding: 0 3% 20px 3%;
}

#static-content .evaluation h2 {
  text-align: center;
  font-family: "Sawarabi Mincho", "Noto Serif CJK", "游明朝", serif, "Noto Sans Japanese", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
  font-size: 2rem;
  font-weight: bold;
  color: #f19d1b;
  margin: 0 0 20px 0;
}

#static-content .evaluation .voice-box {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  background: #f19d1b;
  padding: 3%;
  border-radius: 20px 0;
  margin: 0 auto 30px auto;
}

#static-content .evaluation .voice-box .img {
  width: 30%;
}

#static-content .evaluation .voice-box .txt {
  width: 67%;
}

#static-content .evaluation .voice-box .txt span {
  display: block;
  text-align: right;
  font-size: 14px;
}

#static-content .tel-box {
  width: 750px;
  margin: auto;
  padding: 0;
}

#static-content .limited-express .itemDetail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

#static-content .limited-express .itemDetail .main,
#static-content .limited-express .itemDetail .sub {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}

#static-content .limited-express .itemDetail .main h2 {
  position: relative;
  text-align: left;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 200;
  color: #3071b9;
  background: #eef6ff;
  line-height: 1.5;
  border-top: #3071b9 2px solid;
  padding: 15px 10px;
  margin: 0 0 30px 0;
}

#static-content .limited-express ul.noticeList {
  padding: 0 0 0 1.5%;
}

#static-content .limited-express ul.noticeList>li.red:before {
  background-image: none;
}

@media screen and (max-width: 599px) {
  #static-content {
    /* container */
    /* cart */
    /* footer */
    /* original */
    /* limited-express */
  }

  #static-content .wrap {
    padding-bottom: 0;
  }

  #static-content header.lp-header {
    padding: 10px !important;
  }

  #static-content header.lp-header p img {
    width: 100px;
  }

  #static-content .cart-btn-hover a {
    width: 100%;
    height: auto;
  }

  #static-content #footer .footer-inner {
    width: auto;
    /*    padding: 0 0 50px 0;*/
  }

  #static-content #footer .footer-inner ul li {
    display: block;
    text-align: center;
    border-right: none;
    padding: 0;
    margin: 0 0 10px 0;
  }

  #static-content #footer .footer-inner ul li:first-child {
    border-left: none;
  }

  #static-content #footer .footer-inner ul li a {
    padding: 0 10px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }

  #static-content .wrap .box_notice {
    margin-bottom: 20px !important;
  }

  #static-content .wrap dl.formGroup dt {
    min-width: 9em;
  }

  #static-content .tel-box {
    width: 94%;
  }

  #static-content .limited-express .itemDetail .sub p {
    margin: 0 3%;
  }

  #static-content .limited-express ul.noticeList {
    padding: 0 3%;
  }
}

@media screen and (min-width: 600px) {
  #static-content {
    /* common */
    /* table */
    /* original */
    /* cart */
  }

  #static-content html>body {
    font-size: 18px;
  }

  #static-content .form-wrap table.tbl-blue {
    width: 900px;
    margin: 0 50px 10px 50px;
  }

  #static-content .form-wrap table.tbl-blue tr th,
  #static-content .form-wrap table.tbl-blue tr td {
    padding: 10px 20px;
  }

  #static-content .cp-bnr {
    padding: 0;
    margin: 20px 0 50px 0;
  }

  #static-content .cp-bnr-b {
    margin: 20px 0 30px 0;
  }

  #static-content #lead {
    background-image: url(../../images/190315-11/bg-lead-pc.jpg);
    padding: 80px 0;
  }

  #static-content #lead h2 {
    font-size: 3.5rem;
    margin: 0 0 50px 0;
  }

  #static-content #lead p {
    font-size: 2.5rem;
  }

  #static-content #anchor ul li span {
    font-size: 16px;
    line-height: 1;
  }

  #static-content .service-menu-wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #static-content .service-menu {
    width: 48.5%;
  }

  #static-content .tel-box dd p.tel {
    color: #fd6c21;
  }

  #static-content .tel-box dd p.tel span {
    display: inline-block;
    margin: 0 10px 0 0;
  }

  #static-content .tel-box dd p.tel span.freedial {
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: 6px;
  }

  #static-content .service-menu .description {
    padding: 20px 0;
  }

  #static-content .service-menu .img-ba {
    padding: 0;
  }

  #static-content .service-menu .img-description {
    padding: 0;
    margin: 0 0 3% 0;
  }

  #static-content .service-menu ul.noticeList {
    padding: 0;
  }

  #static-content .evaluation {
    padding: 0 0 50px 0;
  }

  #static-content .evaluation h2 {
    font-size: 3rem;
  }

  #static-content .evaluation h2 img {
    margin: auto;
  }

  #static-content .evaluation .voice-box {
    width: 750px;
  }

  #static-content .evaluation .voice-box .img {
    width: 135px;
    margin: 0 30px 0 0;
  }

  #static-content .evaluation .voice-box .txt {
    width: 550px;
  }

  #static-content #lead .inner p span {
    font-size: 24px;
  }

  #static-content .inner-wrap {
    padding: 0 50px;
  }

  #static-content #anchor h2 {
    font-size: 3rem;
  }

  #static-content #anchor .box-wrap .box {
    width: 22.75%;
  }

  #static-content #anchor .box-wrap .box dl dt {
    font-size: 24px;
  }

  #static-content #price .lead-txt {
    font-size: 24px;
    margin: 0 0 30px 0;
  }

  #static-content #price .lead-txt p {
    text-align: center;
  }

  #static-content #aircon .option h3 {
    text-align: center;
  }

  #static-content #aircon .option .box .inner p {
    font-size: inherit;
  }

  #static-content #aircon .option .box .inner .lead {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  #static-content #aircon .option .box .inner h5 {
    font-size: 24px;
    line-height: 48px;
    padding: 0 15px;
  }

  #static-content .form-wrap .inner {
    padding: 0 50px;
  }

  #static-content .form-wrap .service .left {
    width: 350px;
    float: left;
  }

  #static-content .form-wrap .service .right,
  #static-content .form-wrap .service form {
    width: 520px;
    float: right;
  }

  #static-content .form-wrap .service form {
    clear: none;
  }

  #static-content #fan .par1 {
    font-size: 24px;
  }

  #static-content #fan .par2 .inner-wrap {
    font-size: 24px;
    padding: 0 100px;
  }

  #static-content #bath .par1 {
    padding: 75px 50px 30px 50px;
  }

  #static-content #bath .par1 .inner {
    padding: 25px;
  }

  #static-content #bath .par1 .inner h3 {
    margin: -75px auto 20px auto;
  }

  #static-content #bath .inner .lead {
    font-size: 24px;
  }

  #static-content #bath .inner .lead span {
    font-size: 30px;
  }

  #static-content #bath .par1 .inner .box .box-wrap .left {
    width: 115px;
  }

  #static-content #bath .par1 .inner .box .box-wrap .right {
    width: 715px;
  }

  #static-content #bath .par1 .inner .service-scope {
    padding: 10px 15px;
  }

  #static-content #bath .par1 .inner .service-scope dl dt {
    float: left;
  }

  #static-content #bath .par1 .inner .service-scope dl dd {
    padding-left: 7em;
  }

  #static-content #bath .par3 .inner-wrap {
    padding: 0 50px;
  }

  #static-content #bath .par3 .inner-wrap .box .inner {
    padding: 20px;
  }

  #static-content #bath .par3 .inner-wrap .box .inner .txt {
    padding: 10px 15px;
  }

  #static-content #washer .par1 {
    font-size: 24px;
    padding: 30px 100px 0 100px;
  }

  #static-content #washer .par2 .inner-wrap {
    margin: 0 100px;
  }

  #static-content #washer p span {
    font-size: 24px;
  }

  #static-content .wrap dl.formGroup.inline {
    text-align: center;
    display: inline-block;
  }
}


/*  IEセレクトボックス用*/
select::-ms-expand {
  display: none;
}


/*増減ボタン*/

#static-content .btnspinner {
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

#static-content .spinner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 20px 0;
}

#static-content .spinner .spinner-comment {
  color: #ea3f7d;
  background: #fff;
  width: 100%;
  padding: 2% 3%;
  border: 1px solid #ea3f7d;
  border-radius: 4px;
  margin: 0 0 20px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

#static-content .spinner .spinner-comment p {
  font-size: 1.15rem;
  text-align: justify;
  margin: 0;
}

#static-content .spinner .spinner_wrap {
  width: 100%;
}

#static-content .spinner_wrap,
#static-content .spinner_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

#static-content .spinner_wrap {
  font-size: 1.4rem;
  margin: 0 0 0 -3em;
}

#static-content .option-box .spinner_wrap {
  justify-content: flex-end;
}

#static-content .spinner_wrap p,
#static-content .wrap .itemForm dl.mem-formGroup dt {
  margin: 0 .5em 0 0;
}

#static-content .form-inner {
  margin: 0 3%;
}

#static-content .spinner_area input,
#static-content .mem-formGroup .mem-inputGroup input,
#static-content .mem-formGroup .mem-inputGroup button {
  text-align: center;
  width: 3em;
  height: 3em;
  padding: 11px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  vertical-align: middle;
  /*デフォルトのスピナーを消す*/
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#static-content .mem-formGroup .mem-inputGroup button {
  outline: none;
}

#static-content .spinner_area input[type="button"] {
  cursor: pointer;
}

#static-content .wrap .mem-formGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto !important;
}

#static-content .wrap .mem-formGroup .mem-inputGroup {
  display: flex;
}

#static-content .spinner_area input.minus-button,
#static-content .mem-formGroup .mem-inputGroup .mem-minus {
  background: #efefef;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  -o-border-radius: 4px 0 0 4px;
}

#static-content .spinner_area input.plus-button,
#static-content .mem-formGroup .mem-inputGroup .mem-plus {
  color: #fff;
  background: #005bac;
  border: 1px solid #005bac;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
}

#static-content .wrap .itemForm .addToCartLP a,
#static-content .wrap .mem-itemInfoFormBtn a {
  font-size: 1.8rem;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0 0 20px 0;
  /* box-shadow: none!important; */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: relative;
}

#static-content .itemForm .addToCartLP a:before,
#static-content .mem-itemInfoFormBtn a:before {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

#static-content .wrap .btn.conv {
  background: #ff7900;
  box-shadow: none;
  /* box-shadow: 0 3px 0 0 #bc5c10; */
}

#static-content .service-menu .service-option {
  padding: 0 3%;
  margin: 30px auto 0 auto;
}

#static-content .service-menu .service-option h4 {
  font-weight: bold;
  font-feature-settings: "palt";
  position: relative;
  text-align: center;
  letter-spacing: .05em;
  margin: 0 0 15px 0;
}

#static-content .service-menu .service-option h4:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #666;
}

#static-content .service-menu .service-option h4 span {
  font-size: 1.6rem;
  position: relative;
  padding: 0 .75em;
  background: #fff;
}

#static-content .service-menu .option-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 20px 0;
}

#static-content .service-menu .option-box .option-info {
  width: 48.5%;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

#static-content .service-menu .option-box .option-info .option-name,
#static-content .service-menu .option-box .option-info .option-price {
  font-size: 1.3rem;
  text-align: left;
  margin: 0;
}

#static-content .service-menu .option-box .option-info .option-price span {
  font-size: 1.4rem;
}

#static-content .service-menu .option-box ul.noticeList {
  padding: 0;
  margin: 0;
}

#static-content .service-menu .option-box ul.noticeList li {
  text-align: left;
}

#static-content .service-menu .spinner_wrap {
  width: 48.5%;
}

#static-content .tbl-blue tr td label {
  margin: 0;
}

#static-content .tbl-blue tr td label.mem-option-label {
  display: flex;
  align-items: center;
  padding: 1px 0 0 0;
  position: relative;
}

#static-content .tbl-blue tr td label input {
  vertical-align: middle;
  margin: 0 10px 0 0;
}

#static-content .tbl-blue tr td label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#static-content .tbl-blue tr td label input[type="checkbox"]+span {
  color: inherit;
  padding: 0 0 0 25px
}

#static-content .tbl-blue tr td label input[type="checkbox"]+span::before,
#static-content .tbl-blue tr td label input[type="checkbox"]+span::after {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}

#static-content .tbl-blue tr td label input[type="checkbox"]+span::before {
  z-index: 0;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px #005bac solid;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

#static-content .tbl-blue tr td label input[type="checkbox"]+span::after {
  z-index: 1;
  margin: 4px 7px;
  width: 6px;
  height: 9px;
}

#static-content .tbl-blue tr td label input[type="checkbox"]:checked+span::before {
  background-color: #005bac;
}

#static-content .tbl-blue tr td label input[type="checkbox"]:checked+span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#static-content .wrap dl.mem-formGroup>dd {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}



@media screen and (min-width: 600px) {

  #static-content .form-inner {
    width: 90%;
    margin: auto;
  }

  #static-content .cart-wrap .form-inner {
    width: 50%;

  }

  #static-content .spinner {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }

  #static-content .spinner .spinner-comment {
    width: 80%;
    margin: 0;
    padding: 1% 2%;
  }

  #static-content .machine-wrap .spinner .spinner-comment {
    width: 65%;
  }

  #static-content .machine-wrap .spinner .spinner_wrap {
    width: 26%;
  }

  #static-content .spinner .spinner-comment p {
    text-align: center;
    font-size: 1.4rem;
  }

  #static-content .itemForm .addToCartLP a {
    width: 100%;
  }

  #static-content .service-menu .service-option {
    margin: 30px auto;
  }

  #static-content .service-menu .option-box {
    align-items: center;
  }

  #static-content .service-menu .option-box .option-info {
    width: 59%;
  }

  #static-content .service-menu .spinner_wrap {
    width: 36%;
  }

  #static-content .service-menu .service-option {
    margin: 30px auto;
  }

}


/* anchor-wrap */

#static-content .anchor-wrap {
  background: #ececec;
  padding: 30px 3% 60px 3%;
}

#static-content .anchor-wrap ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0 3%;
  margin: 0;
}

#static-content .anchor-wrap ul li {
  text-align: center;
  margin: 0;
}

#static-content .anchor-wrap ul li a {
  /* display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  color: #555;
  background: #d6eff6;
  font-size: clamp(1.4rem, 2vw, 2rem);
  border-radius: 100%;
  position: relative; */
}

#static-content .anchor-wrap ul li a:before {
  /* display: block;
  content: '';
  padding-top: 100%; */
}

#static-content .anchor-wrap ul li a:after {
  /* content: '';
  position: absolute;
  left: calc(50% - 5px);
  bottom: 15%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0374d9;
  border-right: 2px solid #0374d9;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); */
}


@media screen and (min-width: 600px) {

  #static-content .anchor-wrap {
    padding: 30px 6.5% 50px 5.5%;
  }

  #static-content .anchor-wrap ul {
    gap: 0 .5%;
    margin: 0 -.5%;
  }
}