@charset "UTF-8";

/* ---------------------------------
  profile_block
--------------------------------- */
.profile_block {
  display: flex;
  column-gap: 3.2rem;
  margin-bottom: 4rem;
  width: 100%;
}
.profile_block img {
  width: 100%;
  margin-bottom: 1.6rem;
}
.profile_block .profile_text {
  display: flex;
  padding-bottom: 2rem;
  margin-bottom: 1.6rem;
  border-bottom: .4rem solid #000;
  align-items: stretch;
  justify-content: space-between;
}
.profile_block .profile_text .profile {
  font-size: 2rem;
  font-weight: 700;
  padding-right: 2rem;
}
.profile_block .profile_text .profile .name {
  display: flex;
  column-gap: 2.1rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}
.profile_block .profile_text .tag_list {
  display: flex;
  column-gap: 1em;
  flex-wrap: wrap;
  padding-left: 3.2rem;
  margin: .4rem 0 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 41.8rem;
  border-left: .1rem solid #000;
  align-content: flex-start;
}
.profile_block .profile_text .tag_list li::before {
  content: "#";
}
.profile_block .pankuzu {
  margin-bottom: 0;
}
.profile_block .profile_copy {
  font-size: 5rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.2;
  white-space: nowrap;
  transform: scale(1.2, 1);
  transform-origin: right top;
  margin-left: calc(26.4rem * .2);
}
.profile_block .profile_copy .text_horizontal {
  writing-mode: horizontal-tb;
}
.profile_block .profile_copy .red {
  padding: .8rem .4rem;
  margin: 0 .4rem;
}
@media screen and (max-width: 999px) {
  .profile_block {
    display: block;
    width: 100%;
  }
  .profile_block .profile_text {
    display: block;
    padding-bottom: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .profile_block .profile_text .profile {
    width: 100%;
    border-right: none;
    border-bottom: .1rem solid #000;
  }
  .profile_block .profile_text .profile .name {
    padding-bottom: 1.6rem;
  }
  .profile_block .profile_text .tag_list {
    padding-left: 0;
    margin: 1.6rem 0 0 0;
    border: none;
  }
  .profile_block .pankuzu {
    margin-bottom: 6.4rem;
  }
  .profile_block .profile_copy {
    margin: 0 auto;
    transform-origin: center;
    font-size: 4rem;
  }
}

/* ---------------------------------
  qa_block
--------------------------------- */
.qa_block .qa_list li {
  display: flex;
  column-gap: 14.7rem;
  border-bottom: .2rem solid #000;
  padding: 4rem 3.2rem;
  background-color: #fff;
}
.qa_block .qa_list .question {
  flex: 0 0 30rem;
}
.qa_block .qa_list .answer {
  flex: 1;
  position: relative;
}
.qa_block .qa_list .answer::before {
  content: "";
  background-image: url(../../images/interview/arrow_qa_black.svg);
  background-repeat: no-repeat;
  width: 1.9rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  left: calc(-6.4rem - 1.9rem);
  transform: translateY(-50%);
}
.qa_block .qa_list p:first-child{
  margin-bottom: 1.2rem;
}
.qa_block .qa_list h3,
.qa_block .qa_list .question p,
.qa_block .qa_list .answer p:first-child {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.18rem;
}
.qa_block .qa_list .answer p:last-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.qa_block.qa_bottom .qa_list li:last-child {
  background-color: #444;
  color: #fff;
}
.qa_block.qa_bottom .qa_list li:nth-last-child(-n+2) {
  border: none;
}
.qa_block.qa_bottom .qa_list li:last-child .answer::before {
  background-image: url(../../images/interview/arrow_qa_white.svg);
}
@media screen and (max-width: 999px) {
  .qa_block .qa_list li {
    display: block;
    padding: 3.2rem 2rem;
    }
  .qa_block .qa_list .question {
    flex: 0 0 auto;
  }
  .qa_block .qa_list .answer {
    margin-top: 5.1rem;
  }
  .qa_block .qa_list .answer::before {
    content: "";
    background-image: url(../../images/interview/arrow_qa_under_black.svg);
    width: 3.3rem;
    height: 1.9rem;
    top: calc(-.8rem - 1.9rem);
    left: 50%;
    transform: translateX(-50%);
  }
  .qa_block .qa_list .question p,
  .qa_block .qa_list .answer p:first-child {
    font-size: 2rem;
  }
  .qa_block .qa_list h3 {
    font-size: 2.1rem;
  }
  .qa_block.qa_bottom .qa_list li:last-child .answer {
    margin-top: 6.7rem;
  }
  .qa_block.qa_bottom .qa_list li:last-child .answer::before {
    background-image: url(../../images/interview/arrow_qa_under_white.svg);
    top: calc(-2.4rem - 1.9rem);
  }
}

/* ---------------------------------
  copy_block
--------------------------------- */
.copy_block {
  margin: 4rem 0;
  position: relative;
}
.copy_block h2 {
  font-family: 'yakuhanjp', 'notosansjp', sans-serif;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(1.2, 1);
  transform-origin: left top;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.4rem;
}
.copy_block h2 .red {
  padding: 0 .4rem .5rem;
  margin: .4rem .4rem 0 0;
}
.copy_block img {
  width: 72.8rem;
  height: auto;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 999px) {
  .copy_block {
    display: flex;
    flex-flow: column;
    row-gap: .8rem;
  }
  .copy_block h2 {
    position: relative;
    transform: scale(1.2, 1);
    font-size: 3rem;
    order: 2;
    letter-spacing: -0.2rem;
    width: calc(100% / 1.2);
  }
  .copy_block img {
    width: 72.8rem;
    height: auto;
    display: block;
    margin-left: auto;
    order: 1;
  }
}

/* ---------------------------------
  button_block
--------------------------------- */
.button_block > div {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 700;
}
.button_block a {
  display: flex;
  align-items: center;
}
.button_block .before_button:hover,
.button_block .after_button:hover {
  opacity: .6;
}
.button_block .before_button::before,
.button_block .after_button::after {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 5.6rem;
  height: 5.6rem;
  display: block;
}
.button_block .before_button::before {
  background-image: url(../../images/interview/arrow_link_left_black.svg);
  margin-right: 1.4rem;
}
.button_block .after_button::after {
  background-image: url(../../images/interview/arrow_link_right_black.svg);
  margin-left: 1.4rem;
}
.button_block .list_button {
  color: #fff;
  background-color: #000;
  border-radius: 10rem;
  width: 30rem;
  justify-content: center;
  text-align: center;
  position: relative;
}
.button_block .list_button::before {
  content: "";
  background-image: url(../../images/interview/arrow_link_left_white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  transition: .3s;
}
.button_block .list_button:hover {
  color: #000;
  background-color: #fff;
  outline: .1rem solid #000;
}
.button_block .list_button:hover::before {
  background-image: url(../../images/interview/arrow_link_left_black.svg);
}
@media screen and (max-width: 999px) {
  .button_block > div {
    margin-top: 2rem;
  }
  .button_block .before_button::before,
  .button_block .after_button::after {
    width: 4rem;
    height: 4rem;
  }
  .button_block .list_button {
    width: 26rem;
    padding: 1.2rem 0;
    margin: 4rem auto 0;
  }
}

/* ---------------------------------
  other_block
--------------------------------- */
.other_block {
  background-color: #fff;
  padding: 10rem 0;
}
.other_block h1 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -.2rem;
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 999px) {
  .other_block {
    padding: 8rem 0;
  }
  .other_block h1 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}



