@charset "UTF-8";
/* header height */
/* sub-header height */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.interview-detail {
  padding-bottom: 200px;
}
.interview-detail .interview-detail__hero__ttl {
  color: #38B572;
}
.interview-detail .interview-detail__hero__prof__job {
  color: #38B572;
}
.interview-detail__hero {
  width: 100%;
  height: 61vh;
  position: relative;
  padding: 30px 0 0 0;
  margin-bottom: 270px;
}
.interview-detail__hero__img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  height: inherit;
}
.interview-detail__hero__img img {
  -o-object-position: center top;
     object-position: center top;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: inherit;
}
.interview-detail__hero__head {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.interview-detail__hero__ttl {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.25rem;
}
.interview-detail__hero__prof {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  top: 90%;
  bottom: auto;
  left: 0;
}
.interview-detail__hero__prof__inner {
  background: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 100%;
  padding: 24px 30px;
}
.interview-detail__hero__prof__job {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.interview-detail__hero__prof__job span.year {
  display: none;
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 1rem;
  margin-left: 10px;
}
.interview-detail__hero__prof__name {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.3125rem;
  text-align: bottom;
  margin-bottom: 15px;
}
.interview-detail__hero__prof__name span.san {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1rem;
}
.interview-detail__hero__prof__text {
  font-weight: normal;
  line-break: strict;
  line-height: 160%;
  font-size: 0.875rem;
}
.interview-detail__section {
  width: 100%;
  height: 100%;
}
.interview-detail__section__inner {
  margin-bottom: 23px;
}
.interview-detail__section__inner.q2 {
  margin-bottom: 50px;
}
.interview-detail__section__content {
  width: 100%;
}
.interview-detail__section__content.left {
  margin-right: auto;
}
.interview-detail__section__content.right {
  margin-left: auto;
}
.interview-detail__section__content:nth-child(n+2) {
  margin-top: 80px;
}
.interview-detail__section__que {
  opacity: 0;
}
.interview-detail__section__que.is-show {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__section__que:global(.is-show) {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__section__que__cap {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  margin-bottom: 26px;
}
.interview-detail__section__que__ttl p {
  color: #38B572;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.375rem;
  margin-bottom: 46px;
}
.interview-detail__section__ans {
  opacity: 0;
}
.interview-detail__section__ans.is-show {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__section__ans:global(.is-show) {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__section__ans.ans1 .interview-detail__section__ans__head::after {
  left: 0;
  top: 46%;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='9' viewBox='0 0 316 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 1h315v8' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/9;
}
.interview-detail__section__ans.ans1:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='33' viewBox='0 0 316 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M316 8H1V0' stroke='%2338B572' stroke-width='1.6'/%3e%3cpath d='M146 31V7h24l-24 24Z' fill='%23F5F5F5'/%3e%3cpath d='M146 7v24l24-24' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/33;
}
.interview-detail__section__ans.ans2 .interview-detail__section__ans__head::after {
  left: 0;
  top: -70%;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='33' viewBox='0 0 316 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 25h315v8' stroke='%2338B572' stroke-width='1.6'/%3e%3cpath d='M169 2v24h-24l24-24Z' fill='%23F5F5F5'/%3e%3cpath d='M169 26V2l-24 24' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/33;
}
.interview-detail__section__ans.ans2:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='9' viewBox='0 0 316 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M316 8H1V0' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/9;
}
.interview-detail__section__ans.ans3 .interview-detail__section__ans__head::after {
  left: 0;
  top: 46%;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='9' viewBox='0 0 316 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 1h315v8' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/9;
}
.interview-detail__section__ans.ans3:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='33' viewBox='0 0 316 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M316 8H1V0' stroke='%2338B572' stroke-width='1.6'/%3e%3cpath d='M146 31V7h24l-24 24Z' fill='%23F5F5F5'/%3e%3cpath d='M146 7v24l24-24' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/33;
}
.interview-detail__section__ans.ans4 .interview-detail__section__ans__head::after {
  left: 0;
  top: -70%;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='33' viewBox='0 0 316 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 25h315v8' stroke='%2338B572' stroke-width='1.6'/%3e%3cpath d='M169 2v24h-24l24-24Z' fill='%23F5F5F5'/%3e%3cpath d='M169 26V2l-24 24' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/33;
}
.interview-detail__section__ans.ans4:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='316' height='9' viewBox='0 0 316 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M316 8H1V0' stroke='%2338B572' stroke-width='1.6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 316/9;
}
.interview-detail__section__ans__head {
  position: relative;
  width: 100%;
  height: auto;
}
.interview-detail__section__ans__head::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.interview-detail__section__ans__head span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  color: #38B572;
  display: inline-block;
  background-color: #f5f5f5;
  padding: 0 10px 0 0;
}
.interview-detail__section__ans__text {
  padding: 25px 0;
}
.interview-detail__section__ans__text p {
  font-weight: 700;
  line-break: strict;
  line-height: 160%;
  font-size: 0.875rem;
}
.interview-detail__section__ans__text p:nth-child(n+2) {
  margin-top: 15px;
}
.interview-detail__section__img {
  width: 93%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 56px;
}
.interview-detail__section__img.left {
  opacity: 0;
  margin-right: auto;
}
.interview-detail__section__img.left.is-show {
  animation: fade-in-right 0.5s ease 0.2s both;
}
.interview-detail__section__img.left:global(.is-show) {
  animation: fade-in-right 0.5s ease 0.2s both;
}
.interview-detail__section__img.right {
  opacity: 0;
  margin-left: auto;
}
.interview-detail__section__img.right.is-show {
  animation: fade-in-left 0.5s ease 0.2s both;
}
.interview-detail__section__img.right:global(.is-show) {
  animation: fade-in-left 0.5s ease 0.2s both;
}
.interview-detail__section__img img {
  -o-object-position: center top;
     object-position: center top;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.interview-detail__message {
  opacity: 0;
  margin-top: 40px;
}
.interview-detail__message.is-show {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__message:global(.is-show) {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__message__inner {
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 40px 40px;
}
.interview-detail__message__ttl {
  color: #38B572;
  font-weight: 700;
  line-break: strict;
  line-height: 160%;
  font-size: 0.75rem;
  margin-bottom: 30px;
}
.interview-detail__message__text p {
  font-weight: 700;
  line-break: strict;
  line-height: 160%;
  font-size: 0.875rem;
}
.interview-detail__message__text p:nth-child(n+2) {
  margin-top: 15px;
}
.interview-detail__related {
  opacity: 0;
  width: 100%;
  height: auto;
  margin-top: 86px;
}
.interview-detail__related.is-show {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__related:global(.is-show) {
  animation: fade-in-up 0.5s ease 0s both;
}
.interview-detail__related .grid5 {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px 0px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.interview-detail__related .grid5__item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}
.interview-detail__related .grid5__item {
  background-color: #fff;
}
.interview-detail__related .grid5__item.current a {
  pointer-events: none;
}
.interview-detail__related .grid5__item.current a .icon-oarrow-label {
  display: none;
}
.interview-detail__related .grid5__item.current .grid5__item__img::after {
  opacity: 1;
}
.interview-detail__related .grid5__item__img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.interview-detail__related .grid5__item__img img {
  width: 100%;
  height: auto;
}
.interview-detail__related .grid5__item__img::after {
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(56, 181, 114, 0.5);
  opacity: 0;
}
.interview-detail__related .grid5__item__foot {
  background-color: #fff;
  padding: 15px 20px 24px;
}
.interview-detail__related .grid5__item__job {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  color: #38B572;
  margin-bottom: 2px;
}
.interview-detail__related .grid5__item__name {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .interview-detail {
    padding-bottom: 200px;
  }
  .interview-detail__hero {
    padding: 40px 0 0 0;
    margin-bottom: 94px;
  }
  .interview-detail__hero__img img {
    -o-object-position: center top;
       object-position: center top;
  }
  .interview-detail__hero__head {
    padding-left: 30px;
    padding-right: 30px;
  }
  .interview-detail__hero__ttl {
    line-height: 1.6;
    font-size: 1.25rem;
  }
  .interview-detail__hero__prof {
    padding-left: 30px;
    padding-right: 30px;
  }
  .interview-detail__hero__prof {
    top: auto;
    bottom: -50px;
    left: 0;
  }
  .interview-detail__hero__prof__inner {
    width: 500px;
    padding: 40px 50px;
  }
  .interview-detail__hero__prof__job {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .interview-detail__hero__prof__job {
    margin-bottom: 6px;
  }
  .interview-detail__hero__prof__job span.year {
    line-height: 1.6;
    font-size: 1rem;
  }
  .interview-detail__hero__prof__job span.year {
    margin-left: 10px;
  }
  .interview-detail__hero__prof__name {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .interview-detail__hero__prof__name {
    margin-bottom: 36px;
  }
  .interview-detail__hero__prof__name span.san {
    line-height: 1.6;
    font-size: 1rem;
  }
  .interview-detail__hero__prof__text {
    line-height: 160%;
    font-size: 0.875rem;
  }
  .interview-detail__section__inner {
    margin-bottom: 47px;
  }
  .interview-detail__section__inner.q2 {
    margin-bottom: 90px;
  }
  .interview-detail__section__content:nth-child(n+2) {
    margin-top: 100px;
  }
  .interview-detail__section__que__cap {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .interview-detail__section__que__cap {
    margin-bottom: 28px;
  }
  .interview-detail__section__que__ttl p {
    line-height: 1.6;
    font-size: 1.375rem;
  }
  .interview-detail__section__ans.ans1 .interview-detail__section__ans__head::after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='11' viewBox='0 0 900 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 1h900v10' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/42;
  }
  .interview-detail__section__ans.ans1:after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='42' viewBox='0 0 900 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M901 10H1V0' stroke='%2338B572' stroke-width='2'/%3e%3cpath d='M436 39V9h30l-30 30Z' fill='%23F5F5F5'/%3e%3cpath d='M436 9v30l30-30' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/42;
  }
  .interview-detail__section__ans.ans2 .interview-detail__section__ans__head::after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='42' viewBox='0 0 901 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 32h900v10' stroke='%2338B572' stroke-width='2'/%3e%3cpath d='M465 3v30h-30l30-30Z' fill='%23F5F5F5'/%3e%3cpath d='M465 33V3l-30 30' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/42;
  }
  .interview-detail__section__ans.ans2:after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='11' viewBox='0 0 901 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M901 10H1V0' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/11;
  }
  .interview-detail__section__ans.ans3 .interview-detail__section__ans__head::after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='11' viewBox='0 0 901 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 1h900v10' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/11;
  }
  .interview-detail__section__ans.ans3:after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='42' viewBox='0 0 901 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M901 10H1V0' stroke='%2338B572' stroke-width='2'/%3e%3cpath d='M436 39V9h30l-30 30Z' fill='%23F5F5F5'/%3e%3cpath d='M436 9v30l30-30' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/42;
  }
  .interview-detail__section__ans.ans4 .interview-detail__section__ans__head::after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='42' viewBox='0 0 901 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 32h900v10' stroke='%2338B572' stroke-width='2'/%3e%3cpath d='M465 3v30h-30l30-30Z' fill='%23F5F5F5'/%3e%3cpath d='M465 33V3l-30 30' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/42;
  }
  .interview-detail__section__ans.ans4:after {
    background-image: url("data:image/svg+xml,%3csvg width='901' height='11' viewBox='0 0 901 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M901 10H1V0' stroke='%2338B572' stroke-width='2'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 901/11;
  }
  .interview-detail__section__ans__head span {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .interview-detail__section__ans__text {
    padding: 40px 0;
  }
  .interview-detail__section__ans__text p {
    line-height: 160%;
    font-size: 0.875rem;
  }
  .interview-detail__section__ans__text p:nth-child(n+2) {
    margin-top: 30px;
  }
  .interview-detail__message {
    margin-top: 100px;
  }
  .interview-detail__message__inner {
    padding: 50px 50px;
  }
  .interview-detail__message__ttl {
    line-height: 160%;
    font-size: 0.75rem;
  }
  .interview-detail__message__ttl {
    margin-bottom: 30px;
  }
  .interview-detail__message__text p {
    line-height: 160%;
    font-size: 0.875rem;
  }
  .interview-detail__message__text p:nth-child(n+2) {
    margin-top: 30px;
  }
  .interview-detail__related {
    margin-top: 144px;
  }
  .interview-detail__related .grid5 {
    grid-gap: 0px 0px;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .interview-detail__related .grid5__item__foot {
    padding: 25px 20px 44px;
  }
  .interview-detail__related .grid5__item__job {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .interview-detail__related .grid5__item__job {
    margin-bottom: 2px;
  }
  .interview-detail__related .grid5__item__name {
    line-height: 1.6;
    font-size: 0.75rem;
  }
}
@media (min-width: 1100px) {
  .interview-detail {
    padding-bottom: 200px;
  }
  .interview-detail__hero {
    padding: 60px 0 0 0;
    margin-bottom: 94px;
  }
  .interview-detail__hero {
    height: calc(100dvh - 200px);
  }
  .interview-detail__hero__head {
    padding-left: 100px;
    padding-right: 100px;
  }
  .interview-detail__hero__ttl {
    line-height: 1.6;
    font-size: 2rem;
  }
  .interview-detail__hero__prof {
    padding-left: 100px;
    padding-right: 100px;
  }
  .interview-detail__hero__prof__job {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .interview-detail__hero__prof__job span.year {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .interview-detail__hero__prof__name {
    line-height: 1.6;
    font-size: 1.6875rem;
  }
  .interview-detail__hero__prof__name span.san {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .interview-detail__hero__prof__text {
    line-height: 160%;
    font-size: 1rem;
  }
  .interview-detail__section__content {
    width: 900px;
  }
  .interview-detail__section__que__cap {
    line-height: 1.6;
    font-size: 1rem;
  }
  .interview-detail__section__que__ttl p {
    line-height: 1.6;
    font-size: 2rem;
  }
  .interview-detail__section__que__ttl p {
    margin-bottom: 80px;
  }
  .interview-detail__section__ans__head span {
    line-height: 1.6;
    font-size: 1rem;
  }
  .interview-detail__section__ans__text p {
    line-height: 160%;
    font-size: 1.125rem;
  }
  .interview-detail__section__img {
    margin-bottom: 100px;
    max-height: 730px;
  }
  .interview-detail__message__ttl {
    line-height: 160%;
    font-size: 1rem;
  }
  .interview-detail__message__text p {
    line-height: 160%;
    font-size: 1.125rem;
  }
  .interview-detail__related .grid5 {
    grid-gap: 0px 0px;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .interview-detail__related .grid5__item__job {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .interview-detail__related .grid5__item__name {
    line-height: 1.6;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .interview-detail__related .grid5__item a {
    will-change: transform opacity;
  }
  .interview-detail__related .grid5__item a:hover .icon-oarrow-label::before {
    border-color: #38B572;
    background-color: #38B572;
  }
  .interview-detail__related .grid5__item a:hover .icon-oarrow-label::after {
    border-color: #fff;
  }
}
@media (hover: hover) and (hover: hover) {
  .interview-detail__related .grid5__item a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}