@charset "UTF-8";


.interview_box>div>p {
  margin: 0 0 30px;
}

/*----- 個別ページ -----*/

.iv_content_box>div>div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  position: relative;
  margin: 0 0 50px;
}

.iv_content_box>div>div:nth-of-type(1)::before {
  content: "INTERVIEW";
  font-size: 8rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 6%;
}

.iv_content_box>div>div:nth-of-type(1) h2 {
  font-size: 1.8rem;
  border-bottom: none;
  padding: 0;
}

.iv_content_box>div>div:nth-of-type(1) div:nth-of-type(1)>p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.iv_content_box>div>div:nth-of-type(1) div:nth-of-type(1)>p span {
  font-size: 1rem;
}

.iv_content_box>div>div:nth-of-type(n+2) {
  max-width: 700px;
  margin: 0 auto;
}

.iv_content_box>div>div:nth-of-type(2)>h3 {
  color: #B10F41;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0;
  margin: 0 0 30px;
}

.iv_content_box>div>div:nth-of-type(2)>h3::before {
  display: none;
}

.iv_content_box>div>div:nth-of-type(2)>p {
  margin: 0 0 50px;
}

.iv_content_box.pattern_02>div>div:nth-of-type(2)>p:last-of-type {
  margin: 0;
}

.iv_content_box>div>div:nth-of-type(2)>p:nth-of-type(2),
.iv_content_box>div>div:nth-of-type(2)>p:nth-of-type(3) {
  margin: 0 0 30px;
}

.iv_content_box>div>div:nth-of-type(3) {
  background: #F1F1F1;
  padding: 30px 60px 60px
}

.iv_content_box>div>div:nth-of-type(3)>h3 {
  flex-flow: column;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0;
  margin: 0 0 30px;
}

.iv_content_box>div>div:nth-of-type(3)>h3::before {
  display: none;
}

.iv_content_box>div>div:nth-of-type(3)>h3 span {
  display: block;
  color: #B10F41;
  font-size: 1rem;
}

.iv_content_box>div>div:nth-of-type(3)>ul {
  display: flex;
  flex-flow: column;
  gap: 50px;
}

.iv_content_box>div>div:nth-of-type(3)>ul {
  display: flex;
  flex-flow: column;
  gap: 50px;
}

.iv_content_box>div>div:nth-of-type(3)>ul li {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  background: #fff;
  position: relative;
  padding: 30px;
}

.iv_content_box>div>div:nth-of-type(3)>ul li::before {
  content: "";
  width: 10px;
  height: 60px;
  background: #B10F41;
  position: absolute;
  bottom: -60px;
}

.iv_content_box>div>div:nth-of-type(3)>ul li:last-of-type:before {
  display: none;
}

.iv_content_box>div>div:nth-of-type(3)>ul li p:nth-of-type(1) {
  color: #B10F41;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 10px;
}

.iv_content_box>div>div:nth-of-type(3)>ul li p:nth-of-type(2) {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 10px;
}

.iv_content_box>div>div:nth-of-type(3)>ul li p:nth-of-type(3) {
  text-align: left;
}

.iv_content_box>div>div:nth-of-type(3)>ul li p:last-of-type {
  margin: 0;
}

/*----- 個別ページ ここまで -----*/

@media (max-width: 1024px) {}

@media (max-width: 768px) {
  .iv_content_box>div>div:nth-of-type(1) {
    grid-template-columns: 1fr;
    padding: 0 0 100px;
    margin: 0 0 20px;
  }

  .iv_content_box>div>div:nth-of-type(1)::before {
    font-size: 6rem;
  }

  .iv_content_box>div>div:nth-of-type(3) {
    padding: 30px 20px 30px;
  }

  .iv_content_box>div>div:nth-of-type(3)>ul li {
    padding: 20px;
  }

  .iv_content_box>div>div:nth-of-type(1) div:nth-of-type(1) {
    display: contents;
  }

  .iv_content_box>div>div:nth-of-type(1)>div:nth-of-type(1)>p {
    order: 3;
  }

  .iv_content_box>div>div:nth-of-type(1) div:nth-of-type(2) {
    order: 2;
  }

  .iv_content_box>div>div:nth-of-type(1) h2 {
    margin: 0;
  }
}