@charset "utf-8";

.section_wrap > section {
  width: 100%;
  margin-top: 40px;
  background-color: #fff;
  border: 1px solid #dedede;
  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;
}

.dist_info {
  width: 70%;
  padding: 40px 20px;
}

.dist_info h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.dist_info p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.dist_info a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
}

.dist_map {
  width: 30%;
}

.dist_map iframe {
  width: 100%;
  height: 100%;
}

.dist_footer {
  width: 100%;
  padding: 10px 20px;
  border-top: 1px solid #dedede;
  background-color: #efefef;
  font-size: 1.8rem;
  line-height: 1.4;
}



/*ウィンドウサイズが960px以下の場合*/
@media screen and (max-width:1200px) { 
  

}

/*ウィンドウサイズが600px以下の場合*/
@media screen and (max-width:600px) {
  
  .dist_info,
  .dist_map {
    width: 100%;
  }
  
}