@charset "utf-8";
/* CSS Document */


dl.detail{
  width: 90%;
  margin: 2rem auto 1rem;
  display:flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  border-top: none;
  text-align: left;
}
.detail dt{
  background: #eee;
  width: 25%;
  padding: 0.8rem;
  box-sizing: border-box;
  border-top: 1px solid #fff; 
}
dl.detail dt:first-child{
  border-top: 1px solid #eee; 
}
dl.detail dt:nth-child(21),
dl.detail dt:nth-child(23){
  border-top:0; 
}
.detail dd{
  padding: 0.8rem;
  margin: 0;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee; 
  width: 75%;
  background: #fff;
  box-sizing: border-box;
}
.l_map{
  width: 90%;
  margin: 1rem auto;
  text-align: right;
}


@media screen and (max-width: 768px){
  
  dl.detail{
    flex-flow: column nowrap;
  }
.detail dt,
.detail dd{
    width: 100%;
  }
.detail dd{
    border-left: none;
  }

dl.detail dt:nth-child(21),
dl.detail dt:nth-child(23){
  display: none;
}
}