#overlay {
  background: #F5F5F5;
}

#interview {
  /* INDEX page
  ============================================== */
}
#interview.index {
  background: url(/image/subbg.jpg) no-repeat top center;
  background-size: 100% auto;
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  #interview.index {
    padding-top: 100px;
  }
}
#interview.index h1 {
  font-size: clamp(6rem, 5vw, 8rem);
}
@media screen and (max-width: 767px) {
  #interview.index h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
  }
}
#interview.index .visual {
  position: relative;
  padding: 0 1%;
  padding-bottom: 8rem;
}
#interview.index .visual::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  background-color: #F5F5F5;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #interview.index .visual {
    margin-bottom: 5rem;
  }
}
#interview.index .visual .note {
  max-width: 800px;
  margin: auto;
  font-size: clamp(1rem, 0.6081632653rem + 0.5102040816vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  #interview.index .visual .note {
    font-size: 1.2rem;
  }
}
#interview.index #contents {
  display: flex;
  flex-direction: row-reverse;
}
#interview.index #contents .main {
  flex: 1;
}
#interview.index #contents .main section {
  border-top: 1px solid #E1E1E1;
  padding-top: 3rem;
}
#interview.index #contents .main h2 {
  font-size: clamp(2rem, 1.2163265306rem + 1.0204081633vw, 2.4rem);
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  #interview.index #contents .main h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  #interview.index #contents .main h2 {
    margin-bottom: 5rem;
  }
}
#interview.index #contents .main .layout {
  display: flex;
  flex-wrap: wrap;
}
#interview.index #contents .main .layout .box {
  width: 48%;
  margin-bottom: 70px;
  margin-right: 4%;
}
#interview.index #contents .main .layout .box:nth-child(2n) {
  margin-right: 0;
}
#interview.index #contents .main .layout .box .image {
  line-height: 0;
  margin-bottom: 2rem;
}
#interview.index #contents .main .layout .box .cat {
  font-size: clamp(1rem, 0.2163265306rem + 1.0204081633vw, 1.4rem);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  #interview.index #contents .main .layout .box .cat {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #interview.index #contents .main .layout .box .cat {
    font-size: 1.2rem;
  }
}
#interview.index #contents .main .layout .box p {
  font-size: clamp(1.4rem, 0.6163265306rem + 1.0204081633vw, 1.8rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #interview.index #contents .main .layout .box p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #interview.index #contents .main .layout .box p {
    font-size: 1.5rem;
  }
}
#interview.index #contents aside {
  max-width: 295px;
  width: 25%;
  position: relative;
  padding-bottom: 8rem;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  #interview.index #contents aside {
    display: none;
  }
}
#interview.index #contents aside .aside-in {
  position: sticky;
  top: 200px;
}
#interview.index #contents aside ul li {
  margin-bottom: 1px;
  position: relative;
  padding-left: 10px;
}
#interview.index #contents aside ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #B0B0B0;
  border-radius: 50%;
  left: -10px;
  top: 50%;
  margin-top: -2px;
}
#interview.index #contents aside ul li.active::before {
  background-color: #0f0f0f;
}
#interview.index #contents aside ul li a {
  font-size: clamp(1rem, 0.412244898rem + 0.7653061224vw, 1.3rem);
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  #interview.index #contents aside ul li a {
    font-size: 1.3rem;
  }
}
#interview.index #contents aside ul li a:hover {
  opacity: 1;
}
#interview.index #contents aside ul li.active a {
  opacity: 1;
}

#video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal_contents {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #fff;
  line-height: 0;
  pointer-events: auto;
  aspect-ratio: 16/9;
}
#modal_contents #modal_video {
  width: 100%;
  aspect-ratio: 16/9;
}
#modal_contents #modal_video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

#modal_close {
  cursor: pointer;
  position: absolute;
  top: -50px;
  right: 0px;
  background: none;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}
#modal_close::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
#modal_close::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 50%;
  margin-left: -1px;
}