.voice-detail .profile-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.voice-detail .profile-box .img {
  width: 65%;
  box-sizing: border-box;
  height: 360px;
}

@media screen and (max-width: 960px) {
  .voice-detail .profile-box .img {
    width: 100%;
    height: 200px;
  }
}

.voice-detail .profile-box .img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-detail .profile-box .profile {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 35%;
  background-color: var(--main-color);
  color: var(--white);
}

@media screen and (max-width: 960px) {
  .voice-detail .profile-box .profile {
    width: 100%;
    padding: 20px;
    justify-content: flex-start;
  }
}

.voice-detail .profile-box .profile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.voice-detail .profile-box .profile ul li {
  margin-top: 10px;
}

.voice-detail .profile-box .profile ul li:first-child {
  margin-top: 0;
}

.voice-detail .profile-box .profile ul li h1 {
  font-size: 1.5em;
  color: var(--white);
  font-weight: bold;
}

@media screen and (min-width: 960px) {
  .voice-detail .profile-box .profile ul li h1 {
    font-size: 2em;
  }
}

.voice-detail .talk dt {
  font-size: 18px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.voice-detail .talk dd {
  font-size: 14px;
  line-height: 1.8;
}

.voice-detail .time_table {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  line-height: 1.8;
  margin-bottom: 50px;
}

.voice-detail .time_table dd,
.voice-detail .time_table dt {
  font-size: 14px;
  display: flex;
  padding: 10px;
  box-sizing: border-box;
}

.voice-detail .time_table dt {
  width: 70px;
  text-align: right !important;
  border-right: 1px solid var(--gray);
  position: relative;
}

.voice-detail .time_table dt::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--gray);
  border-radius: 6px;
  position: absolute;
  right: -4.5px;
  top: 18px;
}

.voice-detail .time_table dd {
  width: calc(100% - 70px);
}
