/*----------------------------------------
	会社概要　役員紹介
----------------------------------------*/
.profileBox1 {
  margin-bottom: 40px;
  width: 30%;
}

.profileBox p {
  font-weight: bold;
  margin: 0 5px 10px;
}

.profileBox dl {
  border-bottom: 1px dashed #CCC;
  padding: 10px 5px;
  overflow: hidden;
}

.profileBox dt {
  float: left;
  width: 120px;
  font-weight: bold;
}

.profileBox dd {
  float: left;
  width: 120px
}

.profileBox ul {
  overflow: hidden;
}

.profileBox li {
  float: left;
  width: 30%;
}

.profileBox li:nth-child(2) {
  margin: 0 5%;
}

@media screen and (max-width: 768px) {
  .profileBox1 {
    margin-bottom: 40px;
    width: 100%;
  }

  .profileBox li {
    float: none;
    width: 100%;
  }

  .profileBox li:nth-child(2) {
    margin: 40px 0;
  }

  .pNone {
    display: none;
  }
}