@charset "UTF-8";
#i_wrapper {
  background-color: #fff0e6;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

#i_top {
  min-height: 100lvh;
  padding: 10rem 2rem 0;
  background: url("../img/interview_bg.svg") no-repeat bottom center #ffdcc6;
  background-size: contain;
}
#i_top h1 {
  display: block;
  margin: 0 auto;
  text-align: center;
  background: url("../img/interview_title.svg");
  aspect-ratio: 21/10;
  max-width: 714px;
}
#i_top h2 {
  text-align: center;
  font-size: 1.6rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  margin: 2rem auto;
}

#introduction h3 {
  text-align: center;
  color: #ffffff;
  background-color: #160e75;
  margin: 2rem auto;
}
#introduction dl {
  display: grid;
  grid-template-columns: 3em 1fr;
  row-gap: 1rem;
}
#introduction dl dt {
  font-weight: bold;
  color: #ff8b41;
}
#introduction dl dt:first-of-type {
  color: #160e75;
}
#introduction dl dd::before {
  content: "：";
}

main {
  padding: 0 2rem 4rem;
  background-color: unset;
}
main h4 {
  border-bottom: solid 2px #333333;
  margin-bottom: 1rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.6rem;
  margin: 6rem 0 2rem;
}
main dl {
  display: grid;
  grid-template-columns: 6rem 1fr;
  grid-template-rows: auto;
  direction: rtl;
  gap: 4rem 2rem;
  margin-bottom: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
main dl dt {
  direction: ltr;
  text-align: center;
  font-weight: bold;
}
main dl dd {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem;
  direction: ltr;
  -webkit-filter: drop-shadow(6px 6px 0px #ff8b41);
          filter: drop-shadow(6px 6px 0px #ff8b41);
}
main dl dd::after {
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  top: 2rem;
  width: 4rem;
  height: 2rem;
  border: solid 1rem transparent;
  border-left: solid 1rem #ffffff;
}
main dl.ikejima {
  grid-template-columns: 6rem 1fr;
  direction: ltr;
}
main dl.ikejima dt::before {
  content: url("../img/icon_ikejima.svg");
}
main dl.ikejima dt::after {
  content: "池島";
}
main dl.ikejima dd {
  background-color: #160e75;
  border: none;
  color: #ffffff;
  direction: ltr;
  -webkit-filter: drop-shadow(6px 6px 0px #4169e1);
          filter: drop-shadow(6px 6px 0px #4169e1);
}
main dl.ikejima dd::after {
  left: unset;
  right: 100%;
  border: solid 1rem transparent;
  border-right: solid 1rem #160e75;
}
main dl.student .student_a::before {
  content: url("../img/icon_s_a.svg");
}
main dl.student .student_a::after {
  content: "院生Ａ";
}
main dl.student .student_b::before {
  content: url("../img/icon_s_b.svg");
}
main dl.student .student_b::after {
  content: "院生Ｂ";
}
main dl.student .student_c::before {
  content: url("../img/icon_s_c.svg");
}
main dl.student .student_c::after {
  content: "院生Ｃ";
}
main dl.student .student_d::before {
  content: url("../img/icon_s_d.svg");
}
main dl.student .student_d::after {
  content: "院生Ｄ";
}
main dl.student .online_e::before {
  content: url("../img/icon_o_e.svg");
}
main dl.student .online_e::after {
  content: "Ｅ";
}
main dl.student .online_f::before {
  content: url("../img/icon_o_f.svg");
}
main dl.student .online_f::after {
  content: "Ｆ";
}
main dl.student .online_g::before {
  content: url("../img/icon_o_g.svg");
}
main dl.student .online_g::after {
  content: "Ｇ";
}
main .btn {
  display: grid;
  place-items: center;
  width: 50%;
  min-height: 2em;
  text-align: center;
  background-color: #160e75;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2em;
  border: solid 4px #ffffff;
  margin: 4em auto;
  padding: 0.25em;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
main .btn:hover {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
  main {
    padding: 0 4rem 6rem;
  }
  main dl {
    grid-template-columns: 6em 0.75fr;
  }
  main dl dt:nth-child(4n-1),
  main dl dd:nth-child(4n) {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}