/* CSS Document */
html body .is-pc {
  display: block;
}
html body .is-sp {
  display: none;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #F6F6F6;
}
.photo_box {
  display: flex;
  justify-content: space-between;
}
.photo_box .item {
  width: 48%;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  padding: 20px 0 0;
}
.mb {
  margin-bottom: 20px;
}
.photo_box b {
  display: block;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 16px;
}
/*.contents h2 {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 10px;
  margin-bottom: 16px;
  text-align: left;
  padding-bottom: 16px;
  border-bottom: solid #eee 2px;
}
.contents h2::after {
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 120px;
  right: 0;
  margin: auto;
  content: "Training business";
  display: block;
  text-align: left;
  font-size: 14px;
  letter-spacing: 3px;
  color: #f08300;
}*/
.contents h3 {
  margin-top: 60px;
  margin-bottom: 30px;
  /*color: #fff;*/
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table th {
  background-color: #F7F7F7;
  padding: 1rem 1rem;
  line-height: 2;
  text-align: center;
}
table td {
  padding: 1rem 1rem;
  line-height: 2;
  text-align: left;
}
table th, table td {
  border: solid 1px #CCCCCC
}
table td a {
  text-decoration: underline;
}
.map_box {
  display: flex;
  justify-content: space-between;
}
.map_box .item {
  width: 48%;
}
.gmap {
  margin-top: 30px;
}
@media all and (max-width: 768px) {
  html body .is-pc {
    display: none;
  }
  html body .is-sp {
    display: block;
  }
  .wrapper {
    padding: 20px 3% 0;
  }
}
@media all and (max-width: 414px) {
  .contents h3 {
    font-size: 1.3rem;
    padding: 14px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  table td {
    padding: 0.5rem 0.5rem;
  }
  .photo_box {
    flex-direction: column;
  }
  .photo_box b {
    font-size: 22px;
  }
  .photo_box .item {
    width: 100%;
  }
  .photo_box .item:last-child {
    margin-top: 20px;
  }
  .map_box {
    flex-direction: column;
  }
  .map_box .item {
    width: 100%;
  }
  .map_box .item:last-child {
    margin-top: 20px;
  }
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
  }
  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}