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

#easyFormWrap{
  position:relative;
  width:100%;
  height:0;
}
#easyFormWrapInner{
  width:100%;
  height:0;
  position:fixed;
  bottom:0;
  overflow: visible;
  z-index:9999;
}
#easyFormWindow {
  margin:0 auto;
  max-width:600px;
  background:#fff;
  transform:translateY(0%);
  transition-duration:.2s;
  transition-property:all;
  transition-timing-function:ease-out;
  transition-delay:0;
  border-radius:5px;
  border:2px solid #666;
}
#easyFormWindow.open {
  box-shadow: 0px 0px 5px 0 #333;
  transform:translateY(-105%);
  transition-duration:0.3s;
}

#easyForm{
  padding:2px 0 20px 0;
}

#easyFormWindow .contain{
  margin:0 20px;
}

#easyFormWindow .contain .message{
  padding:50px 0;
  text-align: center;
  line-height: 1.4;
}
#easyFormWindow .contain .message .ret{
  margin-bottom: .5em;
  font-size:24px;
}
#easyFormWindow .contain .message .msg{
  font-size:20px;
}
#easyFormWindow .contain form{
}
#easyFormWindow .contain form table{
  margin:0;
  padding:0;
  border:none;
}
#easyFormWindow .contain form table th,
#easyFormWindow .contain form table td{
  padding: 18px 0 19px 0;
  background:none;
  border:none;
  box-sizing: border-box;
  vertical-align: top;
  background:url(/images/easy_form/easyForm_li_dotted.gif) repeat-x left bottom;
}
#easyFormWindow .contain form table th{
  padding:20px 8px 0 0;
  width:42%;
  text-align: left;
  vertical-align: top;
}
#easyFormWindow .contain form table td{
  width:58%;
}

#easyFormWindow .contain form table th p{
  display: inline-block;
  font-size:16px;
  font-weight: bold;
  vertical-align: middle;
}

#easyFormWindow .contain form table td .set{
  margin-bottom:4px;
  width:100%;
}

#easyFormWindow .contain form table td .set::after {
   content: "";
   display: block;
   clear: both;
}

#easyFormWindow .neccessary{
  margin-left:10px;
  padding:1px 4px;
  display: inline-block;
  background:#c11b16;
  color:#FFF;
  font-size:80%;
  font-weight:bold;
  line-height:1.4;
  vertical-align: middle;
  margin-top:-3px;
}

#easyFormWindow .lock{
  opacity:.4;
}

#easyFormWindow .err{
  background: #FEE !important;
  border-color: #F00 !important;
  color: #F00;
}
#easyFormWindow select.err{
  font-weight: bold;
}
#easyFormWindow *::placeholder{
  font-size:80%;
}
#easyFormWindow .err::placeholder{
  color: #F00;
  font-weight: bold;
}

#easyFormWindow input[type="text"],
#easyFormWindow input[type="email"],
#easyFormWindow input[type="tel"],
#easyFormWindow select,
#easyFormWindow textarea{
  padding:2px;
  width:100%;
  border:solid #666 1px;
  border-radius: 2px;
  box-shadow: 0 0 3px 0 #AAA inset;
  box-sizing: border-box;
  font-size:19px;
}
#easyFormWindow input[type="email"]{
  margin-bottom: 0;
}
#easyFormWindow select{
  margin-bottom:0;
  min-height:2.1em;
  font-size:16px;
}

#lastName{
  width:100%;
}
.receiverAddr1{
  width:36%;
  float:left;
}
.receiverAddr2{
  width:60%;
  float:right;
}

.modelNumWrap,
.unitNumWrap{
}
.modelNumWrap,
.unitNumWrap,
.del{
  vertical-align: middle;
}
.modelNumWrap{
  width:80%;
  float:left;
}
.unitNumWrap{
  margin-left:2%;
  width:11%;
  float:left;
}
.unitNumWrap .unitNum{
  text-align: right;
}
.delModel{
  margin-left:2%;
  width:5%;
  float:left;
  color:#555;
  font-size:20px;
  font-weight: bold;
  text-align:center;
  cursor: pointer;
}

.howtoContact{
  width:36%;
  float:left;
}
.placetoContact{
  width:60%;
  float:right;
}

#addModel{
  margin:10px 0 0 0;
  padding:.2em 0;
  width:100%;
  display: block;
  border-radius:2px;
  background:#fff4f5;
  color:#4f4f4f;
  font-size:18px;
  font-weight: bold;
  text-align: center;
  cursor:pointer;
}

#submitBt{
  margin-top:20px;
}
#submitBt button{
  margin:0 auto;
  padding:5px 0;
  width:73%;
  display: block;
  border-radius: 5px;
  background:#e00404;
  color:#FFF;
  font-size:19px;
  text-align: center;
  cursor:pointer;
}

#easyFormBt{
  position:fixed;
  right:0px;
  bottom:250px;
  z-index:10000;
}
#easyFormBt .open{
  cursor:pointer;
}
#easyFormBt .open img:hover{
  opacity: 0.5 ;
  transition: 0.3s ;
}

}

@media screen and (max-width:480px) {
.zaiko_pc{
  display:none;
}

#easyFormWrap{
  position:relative;
  width:100%;
  height:0;
}
#easyFormWrapInner{
  width:100%;
  height:0;
  position:fixed;
  bottom:0;
  overflow: visible;
  z-index:9999;
}
#easyFormWindow {
  margin:0 auto;
  max-width:640px;
  background:#fff;
  transform:translateY(0%);
  transition-duration:.2s;
  transition-property:all;
  transition-timing-function:ease-out;
  transition-delay:0;
}
#easyFormWindow.open {
  box-shadow: 0px 0px 10px 0 #333;
  transform:translateY(-100%);
}

#easyForm{
  padding:2px 0 20px 0;
}

#easyFormWindow .contain{
  margin:0 20px;
}

#easyFormWindow .contain .message{
  padding:50px 0;
  text-align: center;
  line-height: 1.4;
}
#easyFormWindow .contain .message .ret{
  margin-bottom: .5em;
  font-size:24px;
}
#easyFormWindow .contain .message .msg{
  font-size:20px;
}
#easyFormWindow .contain form{
}
#easyFormWindow .contain form table{
  margin:0;
  padding:0;
  border:none;
}
#easyFormWindow .contain form table th,
#easyFormWindow .contain form table td{
  padding: 18px 0 19px 0;
  background:none;
  border:none;
  box-sizing: border-box;
  vertical-align: top;
  background:url(/images/easy_form/easyForm_li_dotted.gif) repeat-x left bottom;
}
#easyFormWindow .contain form table th{
  padding:20px 8px 0 0;
  width:42%;
  text-align: right;
  vertical-align: top;
}
#easyFormWindow .contain form table td{
  width:58%;
}

#easyFormWindow .contain form table th p{
  display: inline-block;
  font-size:20px;
  font-weight: bold;
  vertical-align: middle;
}

#easyFormWindow .contain form table td .set{
  margin-bottom:4px;
  width:100%;
}

#easyFormWindow .contain form table td .set::after {
   content: "";
   display: block;
   clear: both;
}

#easyFormWindow .neccessary{
  margin-left:10px;
  padding:1px 4px;
  display: inline-block;
  background:#c11b16;
  color:#FFF;
  font-size:80%;
  font-weight:bold;
  line-height:1.4;
  vertical-align: middle;
}

#easyFormWindow .lock{
  opacity:.4;
}

#easyFormWindow .err{
  background: #FEE !important;
  border-color: #F00 !important;
  color: #F00;
}
#easyFormWindow select.err{
  font-weight: bold;
}
#easyFormWindow *::placeholder{
  font-size:80%;
}
#easyFormWindow .err::placeholder{
  color: #F00;
  font-weight: bold;
}

#easyFormWindow input[type="text"],
#easyFormWindow input[type="email"],
#easyFormWindow input[type="tel"],
#easyFormWindow select,
#easyFormWindow textarea{
  padding:2px;
  width:100%;
  border:solid #666 1px;
  border-radius: 2px;
  box-shadow: 0 0 3px 0 #AAA inset;
  box-sizing: border-box;
  font-size:16px;
}
#easyFormWindow input[type="email"]{
  margin-bottom: 0;
}
#easyFormWindow select{
  margin-bottom:0;
  min-height:1.8em;
  font-size:16px;
}

#lastName{
  width:100%;
}
.receiverAddr1{
  width:36%;
  float:left;
}
.receiverAddr2{
  width:60%;
  float:right;
}

.modelNumWrap,
.unitNumWrap{
}
.modelNumWrap,
.unitNumWrap,
.del{
  vertical-align: middle;
}
.modelNumWrap{
  width:80%;
  float:left;
}
.unitNumWrap{
  margin-left:2%;
  width:11%;
  float:left;
}
.unitNumWrap .unitNum{
  margin-top:0px;
  text-align: right;
}
.delModel{
  margin-left:2%;
  width:5%;
  float:left;
  color:#555;
  font-size:20px;
  font-weight: bold;
  text-align:center;
  cursor: pointer;
}

.howtoContact{
  width:36%;
  float:left;
}
.placetoContact{
  width:58%;
  float:right;
}

#addModel{
  margin:10px 0 0 0;
  padding:.2em 0;
  width:100%;
  display: block;
  border-radius:2px;
  background:#fdecee;
  color:#4f4f4f;
  font-size:18px;
  font-weight: bold;
  text-align: center;
  cursor:pointer;
}

#submitBt{
  margin-top:20px;
}
#submitBt button{
  margin:0 auto;
  padding:5px 0;
  width:73%;
  display: block;
  border-radius: 5px;
  background:#e00404;
  color:#FFF;
  font-size:19px;
  text-align: center;
  cursor:pointer;
}

#easyFormBt{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:10000;
}
#easyFormBt .open{
  cursor:pointer;
}

/* ============================== */

#easyFormWindow .contain{
  margin: 0 12px;
  max-height: 75dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#easyFormWindow .contain form table{
  background:none;
}
#easyFormWindow .contain form table,
#easyFormWindow .contain form table tbody,
#easyFormWindow .contain form table tr,
#easyFormWindow .contain form table th,
#easyFormWindow .contain form table td{
  width:100%;
  display: block;
}
#easyFormWindow .contain form table th{
  padding-top:10px;
  background:none;
  text-align:left;
}
#easyFormWindow .contain form table td{
  padding-top:0;
  padding-bottom:11px;
}

#easyFormWindow .contain form table th p{
  font-size:16px;
}

#easyFormWindow input[type="text"]{
  margin-bottom:0;
}

#submitBt{
  margin-top:15px;
}
#submitBt button{
  width: 100%;
  font-weight: bold;
}

.marquee{
  width:100%;
  box-sizing: border-box;
}
.marquee > p {
  visibility: hidden;
  margin: 0;
  white-space: nowrap;
}

#easyFormBt{
  position:static;
  background:#F00;
  color:#FFF;
  font-weight: bold;
  padding-top:5px;
  padding-bottom:5px;
}
#easyFormBt img{
 padding-bottom:5px;
}
#easyFormBt p{
  padding:5px 0;
  font-size:18px;
  line-height:1.4;
}
#easyFormBt .open{
}
}

.specifictime {
  width: 100%;
  float:left;
}

#easyFormWrapInner2 p{
  font-size: 14px !important;
}

#easyFormWrapInner2 input[type="text"],
#easyFormWrapInner2 input[type="email"],
#easyFormWrapInner2 input[type="tel"] {
  font-size: 14px !important;
}

#easyFormWrapInner2 select {
  font-size: 12px !important;
}

.specifictime {
  width: 100%;
  float: left;
}

/* スマホ・タブレット調整 */
@media screen and (max-width: 767px) {
  #easyFormWindow{
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    border-radius: 12px 12px 0 0;
  }

  #easyFormWindow .contain{
    margin: 0 12px;
    max-height: 75dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #easyFormWindow .contain form table,
  #easyFormWindow .contain form table tbody,
  #easyFormWindow .contain form table tr,
  #easyFormWindow .contain form table th,
  #easyFormWindow .contain form table td{
    display: block;
    width: 100%;
  }

  #easyFormWindow .contain form table th{
    padding: 0px 0 8px 0;
    text-align: left;
  }
  #easyFormWindow .contain form table td{
    padding: 0 0 18px 0;
  }

  .receiverAddr1,
  .receiverAddr2,
  .howtoContact,
  .placetoContact{
    float: none;
    width: 100%;
    margin: 0 0 8px 0;
  }
  .modelNumWrap{
    width: 78%;
    float: left;
  }
  .unitNumWrap{
    width: 18%;
    margin-left: 2%;
    float: left;
  }
  .delModel{
    width: 100%;
    float: none;
    margin: 8px 0 0 0;
    text-align: right;
  }
  .unitNumWrap .unitNum{
    text-align: center;
  }
  #easyFormWindow input[type="text"],
  #easyFormWindow input[type="email"],
  #easyFormWindow input[type="tel"],
  #easyFormWindow select,
  #easyFormWindow textarea{
    font-size: 16px;
  }
  #easyFormWindow *::placeholder{
    font-size: 90%;
  }
  #addModel{
    font-size: 16px;
  }
  #submitBt button{
    width: 100%;
    font-size: 18px;
    padding: 10px 0;
  }
}

@media screen and (max-width: 374px) {
  .modelNumWrap,
  .unitNumWrap,
  .delModel{
    width: 100%;
    float: none;
    margin: 0 0 8px 0;
  }
  .unitNumWrap .unitNum{
    text-align: left;
  }
}

#easyFormWindow .close{
  position: sticky;
  top: 0;
  height: 35px;
  background: #383635;
}

#easyFormWindow .close::before,
#easyFormWindow .close::after{
  content:"";
  position:absolute;
  right:12px;
  top:50%;
  width:18px;
  height:2px;
  background:#fff;
}

#easyFormWindow .close::before{
  transform:translateY(-50%) rotate(45deg);
}
#easyFormWindow .close::after{
  transform:translateY(-50%) rotate(-45deg);
}

#easyFormWindow .optional {
  margin-left: 10px;
  padding: 1px 4px;
  display: inline-block;
  background: #878787;
  color: #FFF;
  font-size: 80%;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
}

#easyForm textarea#detail {
  min-height: 50px;
  padding: 10px 5px;
  resize: vertical;
  line-height: 1.6;
}

#easyFormWindow .close p.text {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-top: 5px;
}