@charset "utf-8";

.content{
  padding: 32px 0;
  background: #F8F5EE;
}
.content .contentSetter{
  display: flex;
  justify-content: space-between;
}
.content .companyMark .img img{
  margin: 0 auto;
}
.content .companyMark dl{
  text-align: center;
}
.content .companyMark dt{
  font-weight: bold;
  margin-bottom: 8px;
}
.content table{
  width: 550px;
  margin: 0;
  background: #FFF;
}
.content table th,
.content table td{
  border-bottom: 1px dotted #c1bfb9;
}
.content table tr:last-child th,
.content table tr:last-child td{
  border-bottom: none;
}
.content table th{
  text-align: center;
  background: #F0EDDE;
}
.content table td{
  padding: 20px;
}

.map{
  padding: 32px 0;
}
.map iframe{
  margin-bottom: 16px;
  width: 100%;
  height: 510px;
  border: none;
}
.map .accessBtn{
  width: 146px;
  display: block;
  margin: 0 0 0 auto;
  text-align: center;
  font-size: 14px;
}
.map .accessBtn a{
  padding: 8px;
  background-color: #fff;
  color: #95260d;
  transition: .3s;
}
.map .accessBtn a:hover{
  background-color: #95260d;
  color: #fff;
}
.map .accessBtn a::before{
  font-family: FontAwesome;
  content:"\f002";
  margin-right: 4px;
}

/* スマホ以下 */
@media only screen and (max-width: 767px){
  .content table{
    width: 100%;
    background-color: transparent;
    margin: 16px 0;
  }
  .content table tr{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-left: 8px;
  }
  .content table th,
  .content table td{
    background-color: transparent;
    text-align: left;
    border: none;
    margin: 0;
    padding: 0;
  }
  .content table th{
    font-weight: bold;
  }
  .content table th::before{
   content: "【";
  }
  .content table th::after{
   content: "】";
  }
  .content table td{
    margin-left: 16px;
  }
  .content .contentSetter{
    flex-direction: column;
  }
  .map{
    padding: 0 0 16px;
  }
  .map .accessBtn{
    width: 100%;
  }
}/* このとじカッコは消さないこと */