/*========================
共通
========================*/
.cont_wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .cont_wrap {
    display: block;
  }
}

.cont_wrap .left_cont {
  width: 360px;
  box-sizing: border-box;
  padding-right: 30px;
}
@media only screen and (max-width: 640px) {
  .cont_wrap .left_cont {
    width: 100%;
    padding-right: 0;
  }
}

.cont_wrap .right_cont {
  width: calc(100% - 360px);
}
@media only screen and (max-width: 640px) {
  .cont_wrap .right_cont {
    width: 100%;
  }
}

/*========================
about
========================*/
#about .right_cont .lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media only screen and (max-width: 640px) {
  #about .right_cont .lead {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

#about .right_cont .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.25;
}
@media only screen and (max-width: 640px) {
  #about .right_cont .text {
    font-size: 14px;
  }
}

/*========================
company
========================*/
#company {
  padding-top: 185px;
}
@media only screen and (max-width: 640px) {
  #company {
    padding-top: 100px;
  }
}

#company .right_cont table {
  width: 100%;
  border-collapse: collapse;
}

#company .right_cont table tr {
  width: 100%;
  
}

#company .right_cont table tr th {
  width: 180px;
  border-top: 1px solid #323232;
  padding: 15px 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.7;
  align-content: baseline;
}
@media only screen and (max-width: 640px) {
  #company .right_cont table tr th {
    width: 120px;
    font-size: 12px;
  }
}

#company .right_cont table tr:last-child th {
  border-bottom: 1px solid #323232;
}


#company .right_cont table tr td {
  width: calc(100% - 180px);
  border-top: 1px solid #C1C1C1;
  padding: 15px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
}
@media only screen and (max-width: 640px) {
  #company .right_cont table tr td {
    font-size: 12px;
    width: calc(100% - 120px);
  }
}

#company .right_cont table tr:last-child td {
  border-bottom: 1px solid #C1C1C1;
}

/*========================
access
========================*/
#access {
  padding-top: 185px;
}
@media only screen and (max-width: 640px) {
  #access {
    padding-top: 100px;
  }
}

#access .right_cont .office_box {
  padding-bottom: 90px;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

#access .right_cont .office_box .office_tit {
  font-family: "inria-sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  padding-bottom: 15px;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box .office_tit {
    font-size: 16px;
  }
}

#access .right_cont .office_box .address_wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box .address_wrap {
    font-size: 12px;
    display: block;
  }
}

#access .right_cont .office_box .address_wrap .link {
  padding-left: 20px;
  color: #323232;
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box .address_wrap .link {
    padding-left: 0px;
    margin-bottom: 10px;
    display: inline-block;
  }
}

#access .right_cont .office_box .address_wrap .link:hover {
  text-decoration: none;
}

#access .right_cont .office_box .tel_num {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box .tel_num {
    font-size: 12px;
  }
}

#access .right_cont .office_box .tel_num a {
  color: #323232;
}
@media only screen and (max-width: 640px) {
  #access .right_cont .office_box .tel_num a {
    text-decoration: underline;
  }
}

#access .right_cont .office_box .tel_num a:hover {
  text-decoration: underline;
}

#access .right_cont .office_box .ph_wrap {
  padding-top: 15px;
}

.google_map iframe{
    width: 100%;
    height: 200px;
    margin-top: 10px;
} 