@charset "UTF-8";

body {
  background: #eeeeee;
  margin: 0px;
  padding: 0px;
  /*text-align: center;*/
  /*font-size: 90%;*/
  /*line-height: 140%;*/
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}

.header{
  background-image: url('/img/main_img.png');
  background-repeat: no-repeat;
  background-position: center center;
  height: 248px;
  position: relative;
}
.header .hdr_btn{
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
}
.header .hdr_btn a {
  background: #FFF;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  box-shadow: 0 0 2px 0px #999;
}

.footer{
  background: #FFF;
}
.footer .ftr_bg{
  background-image: url('/img/footer_back.png');
  background-repeat: no-repeat;
  background-position: center center;
  height: 155px;
  color: #FFF;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .ftr_logo{
  
}
.footer .ftr_copy{
  font-size: 13px;
  color: #2568AE;
  padding: 10px;
  text-align: center;
}

.main{
  padding: 50px 15px;
}

.wrapper{
  background: #FFF;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

h1{
  font-size: 20px;
  font-weight: bold;
  color: #5e7aaa;
}
h2{
  font-size: 20px;
  font-weight: bold;
  color: #5e7aaa;
}
h3{
  font-size: 16px;
  font-weight: bold;
  color: #5e7aaa;
}
h4{
  
}

/**/
.btn-primary{
  background: #3A5AAD;
}
.form-check-label span{
  font-size: 14px;
  margin-left: 3px;
}

.container-md{
  width: 600px;
  max-width: 100%;
}

.check_wrap{
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
}
.check_wrap.err{
  border: 1px solid red;
}


.calc_tbl{
  
}
.calc_tbl .calc_th{
  width: 6.5em;
  text-align: center;
}

label[disabled]{
  /*opacity: 0.5;*/
  color: #CCC;
}
label em{
  font-style: normal;
  font-size: 14px;
  color: red;
  margin-left: 5px;
}


input[type="radio"][disabled] + span{
  color: #CCC;
}


#item_field .row [class*="col"],
#next_item_field .row [class*="col"]{
  position: relative;
}
#item_field .row [class*="col"] .item_delete,
#next_item_field .row [class*="col"] .item_delete{
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  color: #F44336;
}

.file_delete{
  display: block;
  text-align: center;
  margin-top: 2px;
  text-decoration: none;
  color: #F44336;
}

.price_budget,
.next_price_budget{
  color: #FF5722;
}
.price_budget span,
.next_price_budget span{
  font-weight: 700;
}

select[readonly]{
  background-color: #e9ecef;
  pointer-events: none;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

@media (max-width:767px){
  html{
    font-size: 14px;
  }
  .main{
    padding-left: 0px;
    padding-right: 0px;
  }
  
  h1{
    font-size: 16px;
  }
  h2{
    font-size: 16px;
  }
  
  .header .hdr_btn{
    top: 10px;
    right: 10px;
  }
  
  #item_field .row [class*="col"] .item_delete,
  #next_item_field .row [class*="col"] .item_delete{
    left: -10px;
  }
}