@charset "UTF-8";
.l-header{
	background: #fff;
}
/* ---------------------- *
/* Animation
/* ---------------------- */
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
/* ---------------------- *
/* 下層ページ共通
/* ---------------------- */
.p-hero-inside {
  position: relative;
	margin: 0;
	padding-top: 0px
		
}
.p-hero-inside__img {
  border-left: #6abb1e solid 20px;
  margin: 0px 30px 60px 0;
  padding-left: 30px;
}
.p-hero-inside__img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-hero-inside h1.c-heading-primary {
  font-size: 32;
  font-size: 2rem;
  background-color: #fff;
  border-left: #c9e40b solid 20px;
  font-weight: 600;
  left: 0;
  margin-bottom: 0;
  padding: 10px 20px;
  position: absolute;
  bottom: -40px;
}
.p-hero-inside h1 .c-heading-secondary {
  font-size: 24;
  font-size: 1.5rem;
  border-top: #000 solid 1px;
  display: block;
  font-weight: normal;
  margin-top: 10px;
  padding-top: 10px;
}
.p-hero-inside h1 .c-heading-secondary::first-letter {
  color: #e40b0b;
  font-weight: 600;
}

.p-content-inside {
  padding: 100px 0;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1180px;
}

/* ---------------------- *
/* Interviewページ専用
/* ---------------------- */
.p-interview__list {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.p-interview__item {
  box-sizing: border-box;
}
.p-interview__link {
  display: block;
  position: relative;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.p-interview__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.3;
  z-index: 1;
}
.p-interview__img--off, .p-interview__img--on {
  aspect-ratio: 9/12;
  display: block;
  overflow: hidden;
  position: absolute;
  box-shadow: 1px 10px 24px 0 rgba(0, 0, 0, 0.3);
}
.p-interview__img--off img, .p-interview__img--on img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-interview__img--off {
  width: 70%;
  top: 0;
  left: 0;
}
.p-interview__img--off::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #6abb1e;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.p-interview__img--on {
  width: 50%;
  bottom: 30px;
  right: 0;
  z-index: 3;
}
.p-interview__summary {
  background-image: url("../img/index/bg-interview-slide.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 10px;
  z-index: 10;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.ex-fade {
  transition: all 0.5s ease;
  opacity: 0;
}
.ex-fade.is-inview {
  opacity: 1;
}

.ex-mask {
  position: relative;
  visibility: hidden;
}

.ex-mask::after {
  content: "";
  background: #6abb1e;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.5s ease 0s;
  visibility: visible;
}

.ex-mask.is-inview {
  animation-name: animate-content;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  backface-visibility: hidden;
  box-shadow: 1px 10px 24px 0 rgba(0, 0, 0, 0.3);
}

.ex-mask.is-inview::after {
  animation-name: animate-panel;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  backface-visibility: hidden;
}

/* ---------------------- *
/* Width 768px 以上
/* ---------------------- */
@media screen and (min-width: 768px) {
  .p-hero-inside__img {
    border-left-width: 24px;
  }
  .p-hero-inside h1.c-heading-primary {
    border-left-width: 24px;
    padding: 20px 40px;
  }
  .p-interview__list {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
/* ---------------------- *
/* Width 992px 以上
/* ---------------------- */
@media screen and (min-width: 992px) {
  .p-hero-inside__img {
	  height: 70vh;
    border-left-width: 24px;
  }
/* ---------------------- *
/* Width 1024px 以上
/* ---------------------- */
@media screen and (min-width: 1024px) {
  .p-hero-inside__img {
    height: 84vh;
    margin: 100px 80px 60px 0;
    padding-left: 60px;
    border-left-width: 30px;
  }
  .p-hero-inside h1.c-heading-primary {
    font-size: 42;
    font-size: 2.625rem;
    padding: 40px 80px;
    border-left-width: 30px;
  }
  .p-hero-inside h1 .c-heading-secondary {
    font-size: 32;
    font-size: 2rem;
  }
  .p-content-inside {
    padding: 100px 0;
  }
  .p-interview__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: initial;
    column-gap: 60px;
  }
  .p-interview__item:nth-child(2), .p-interview__item:nth-child(5) {
    margin-top: 100px;
  }
  .p-interview__item:nth-child(3) {
    margin-top: 200px;
  }
  .p-interview__img {
    aspect-ratio: 9/12;
  }
  .p-interview__img--off, .p-interview__img--on {
    aspect-ratio: initial;
    box-shadow: none;
    width: 100%;
    height: 100%;
  }
  .p-interview__img--off {
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: all 0.5s ease;
  }
  .p-interview__img--on {
    bottom: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .p-interview__link:hover .p-interview__img--off {
    opacity: 0;
  }
  .p-interview__link:hover .p-interview__img--on {
    visibility: visible;
    opacity: 1;
  }
  .p-interview__summary {
    font-size: 18;
    font-size: 1.125rem;
  }
}
/* ---------------------- *
/* Width 1280px 以上
/* ---------------------- */
@media screen and (min-width: 1280px) {
  .p-hero-inside__img {
	  height: 92vh;
    padding-left: 80px;
  }
}

/*# sourceMappingURL=interview.css.map */
