/* ============================
	interview
============================ */

#interview {
  background: rgba(235, 235, 245, 0.3);
}

#interview #main {
  max-width: 1000px;
  text-align: left;
  padding: 0 40px;
  box-sizing: border-box;
}

.keyvisual {
  width: 100%;
  margin: 0 0 3.0em 0;
  aspect-ratio: 16/9;
  border-radius: 10px;
  background-color: #efefef;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intv-header {
  margin-bottom: 2.0em;
}

.intv-date {
  margin-bottom: 0.8em;
  color: var(--cl-orange);
  font-weight: 700;
}

.intv-title {
  font-size: 200%;
  line-height: 1.5;
}

.intv-subtitle {
  margin-bottom: 1.0em;
  padding-bottom: 0.5em;
  border-bottom: 3px solid var(--cl-orange);
  font-size: 150%;
  line-height: 1.5;
}

.intv-text {
  margin-bottom: 2.0em;
  line-height: 2.0;
}

.intv-column {
  margin-bottom: 2.0em;
  padding: 1.25em 1.5em;
  background-color: #ECECEC;
  line-height: 2.0;
}

.intv-pic {
  text-align: center;
  margin-bottom: 2.0em;
}

.intv-pic .pic {
  margin: auto;
  border-radius: 10px;
  background-color: #efefef;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ---- Media Queries ---- */

@media all and (max-width: 767px) {

#interview #main {
  padding: 0;
}

.keyvisual {
  border-radius: 0;
  margin: 0 0 1.5em 0;
}

.intv-header {
  width: 92%;
  margin: 0 4% 2.0em;
}

.intv-box {
  width: 92%;
  margin: 0 4%;
}

.intv-title {
  font-size: 150%;
}

.intv-subtitle {
  margin-bottom: 1.5em;
  font-size: 120%;
}

.intv-text {
  font-size: 90%;
}

.intv-pic .pic {
  border-radius: 5px;
}

}

