@charset "UTF-8";
#top-interview {
  background-attachment: fixed;
  background-image: url("../img/interview/bg-header.jpg");
  background-position: center top;
  position: relative;
  background-color: #222;
  background-repeat: no-repeat;
  /* ===========================
    Interview Layout Styles
  =========================== */
  /* 下部の画像ブロック */
}
#top-interview .bg-text {
  background-size: 100% auto;
  padding-top: 4.375rem;
  background-image: url("../img/interview/bg-ttl-text.png");
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top-interview .bg-text {
    background-size: auto 110px;
  }
}
#top-interview .bg-text h1 {
  font-weight: 600;
  font-size: clamp(3.75rem, 1.528rem + 4.63vw, 5rem);
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  #top-interview .bg-text h1 {
    padding: 0 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  #top-interview .bg-text h1 {
    font-size: 2.5rem;
  }
}
#top-interview .bg-text h1 .char {
  display: inline-block;
  will-change: transform, opacity;
}
#top-interview .bg-text p {
  text-align: center;
}
#top-interview .bg-text p::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #fff;
  margin: 8px auto 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: lineGrow 0.8s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #top-interview .bg-text p::after {
    height: 20px;
  }
}
@keyframes lineGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
#top-interview .outline {
  background-color: rgba(10, 10, 10, 0.7);
  color: #fff;
}
#top-interview .outline .outline-box {
  width: 80%;
  padding: 2.5rem 0;
  margin: 0 auto;
  max-width: 60rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top-interview .outline .outline-box {
    width: 88%;
    max-width: 100svw;
  }
}
#top-interview .outline .outline-box h2 {
  font-size: clamp(1.25rem, 0.909rem + 1.45vw, 2rem);
  margin-bottom: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #top-interview .outline .outline-box h2 {
    width: 16em;
    margin: 0 auto 2.5rem;
  }
}
#top-interview .outline .outline-box p {
  line-height: 1.8;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 768px) {
  #top-interview .outline .outline-box p {
    text-align: left;
  }
}
#top-interview .ceo-image {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
#top-interview .ceo-image img {
  width: 60%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top-interview .ceo-image img {
    width: 80%;
    max-width: 100svw;
  }
}
@media screen and (max-width: 480px) {
  #top-interview .ceo-image img {
    width: 100%;
  }
}
#top-interview .index-wrapper {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  #top-interview .index-wrapper {
    gap: 1.5rem;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
  }
}
#top-interview .index-wrapper .index-ttl {
  display: grid;
  place-items: center;
  background-color: #222;
  color: #fff;
  min-width: 6em;
  min-height: 6em;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #top-interview .index-wrapper .index-ttl {
    font-size: 1.25rem;
    min-height: 1.2em;
  }
}
#top-interview .index-wrapper .index-list {
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}
#top-interview .index-wrapper .index-list ul {
  counter-reset: list-counter;
}
#top-interview .index-wrapper .index-list ul li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 0.25rem;
}
#top-interview .index-wrapper .index-list ul li::before {
  content: counter(list-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #222;
  font-family: Roboto;
}
#top-interview .index-wrapper .index-list ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #top-interview .index-wrapper .index-list ul li {
    border-bottom: 1px dotted #eee;
    line-height: 1.3;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
  }
}
#top-interview section {
  width: 100%;
  border-top: 1px solid #ddd;
  background: linear-gradient(to right, #eee 0%, #eee 50%, #fff 50%, #fff 100%);
  overflow: visible;
  /* 左カラム（質問） */
}
@media screen and (max-width: 768px) {
  #top-interview section {
    background: #fff;
  }
}
#top-interview section .interview-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0 100px;
  min-height: calc(100% + 200px);
  overflow: visible;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 1024px) {
  #top-interview section .interview-box {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-box {
    flex-direction: column;
    padding: 0 0 60px 0;
    min-height: 0;
  }
}
#top-interview section .interview-q {
  flex: 0 0 50%;
  padding: 20px 60px 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  height: fit-content;
  z-index: 10;
  max-width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  #top-interview section .interview-q {
    padding: 80px 16px;
    font-size: 1.1rem;
    max-width: 96%;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-q {
    width: 100%;
    max-width: 100%;
    background-color: #f9f9f9;
    padding: 1.5rem 0.8rem 1.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }
}
#top-interview section .interview-q .q-ttl {
  position: relative;
  display: flex;
  margin-left: 1rem;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  #top-interview section .interview-q .q-ttl {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
}
#top-interview section .interview-q .q-ttl .q-no {
  font-size: clamp(1.5rem, -1rem + 10.67vw, 7rem);
  color: #cdcdcd;
  display: block;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-q .q-ttl .q-no {
    position: static;
    margin-right: 1rem;
    font-weight: 700;
    white-space: nowrap;
  }
}
#top-interview section .interview-q .q-ttl h3 {
  font-size: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);
  line-height: 1.3;
  padding-left: 1.5rem;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-q .q-ttl h3 {
    position: static;
    margin: 0;
    line-height: 1.4;
    padding-left: 0.5rem;
  }
}
#top-interview section .interview-a {
  flex: 0 0 50%;
  padding: 40px 40px 100px 80px;
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  min-height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  #top-interview section .interview-a {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-a {
    min-height: 0;
    width: 100%;
    padding: 24px;
    z-index: auto;
    height: auto;
  }
}
#top-interview section .interview-a .answer-block h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
  font-size: clamp(1.125rem, 0.955rem + 0.73vw, 1.5rem);
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.3;
}
#top-interview section .interview-a .answer-block h4::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 0.75em;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background-color: var(--primary-color);
}
@media screen and (max-width: 768px) {
  #top-interview section .interview-a .answer-block h4 {
    padding-left: 0.625rem;
    margin-bottom: 1.6em;
    border-left: 2px solid var(--primary-color);
  }
  #top-interview section .interview-a .answer-block h4::before {
    display: none;
  }
}
#top-interview section .interview-a .answer-block p {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  margin-bottom: 1.125rem;
  text-align: justify;
  line-height: 2;
}
#top-interview section .interview-a .answer-block img {
  margin: 2em auto;
}
#top-interview section .interview-a .answer-block h4:not(:first-of-type) {
  margin-top: 2em;
}
#top-interview .image-box1,
#top-interview .image-box2,
#top-interview .image-box3,
#top-interview .image-box4 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top-interview .image-box1,
  #top-interview .image-box2,
  #top-interview .image-box3,
  #top-interview .image-box4 {
    height: auto;
    font-size: 1.5rem;
  }
}
#top-interview .int01-images-box {
  display: flex;
  width: 100%;
  height: auto;
  background-color: #222;
  flex-wrap: nowrap;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  #top-interview .int01-images-box {
    flex-wrap: wrap;
  }
}
#top-interview .int01-images-box .item {
  flex: 0 0 25%;
  height: auto;
  overflow: hidden;
  transform: translateX(120vw);
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  #top-interview .int01-images-box .item {
    flex: 0 0 50%;
  }
}
#top-interview .int01-images-box .item img {
  display: inline;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-interview .int02-images-box {
  display: flex;
  justify-content: space-between;
  gap: 0;
  background: #fff;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  #top-interview .int02-images-box {
    flex-direction: column;
  }
}
#top-interview .int02-images-box .item-01 {
  width: 31.25%;
  align-self: flex-start;
  position: relative;
}
#top-interview .int02-images-box .item-01::before {
  content: "";
  float: left;
  padding-top: 106.6666666667%;
}
#top-interview .int02-images-box .item-01::after {
  content: "";
  display: table;
  clear: both;
}
#top-interview .int02-images-box .item-01 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #top-interview .int02-images-box .item-01 {
    max-width: 90%;
    width: 60%;
  }
}
#top-interview .int02-images-box .item-02 {
  width: 18.75%;
  align-self: flex-end;
  position: relative;
}
#top-interview .int02-images-box .item-02::before {
  content: "";
  float: left;
  padding-top: 100%;
}
#top-interview .int02-images-box .item-02::after {
  content: "";
  display: table;
  clear: both;
}
#top-interview .int02-images-box .item-02 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #top-interview .int02-images-box .item-02 {
    max-width: 90%;
    width: 50%;
  }
}
#top-interview .int02-images-box .item-03 {
  align-self: flex-start;
  width: 50%;
}
@media screen and (max-width: 480px) {
  #top-interview .int02-images-box .item-03 {
    max-width: 100%;
    width: 100%;
  }
}

.int03-images-box {
  background-image: url(../img/interview/itv-03-bg.jpg);
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}
.int03-images-box .item {
  width: 25%;
  margin: 0 auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  .int03-images-box .item {
    width: 50%;
  }
}

.int04-images-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .int04-images-box {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.int04-images-box .item {
  flex: 1;
}
.int04-images-box .item img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .int04-images-box .item img {
    width: 100%;
  }
}

.int05-images-box {
  width: 100%;
  aspect-ratio: 16/4.5;
  background-image: url("../img/interview/itv-05-01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
  z-index: 3;
}
.int05-images-box p {
  height: 530px;
}
@media screen and (max-width: 768px) {
  .int05-images-box {
    max-width: 100svh;
    min-height: 350px;
  }
}

.int06-images-box {
  width: 100%;
  background: #fff;
  z-index: 3;
}

.int07-images-box {
  width: 100%;
  padding: 100px 0;
  background: #fff;
}
.int07-images-box img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .int07-images-box img {
    max-width: 100%;
  }
}

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
}

.fade-up {
  transform: translateY(50px);
}

.fade-left {
  transform: translateX(-80px);
}

.fade-right {
  transform: translateX(80px);
}

.stagger-fade > * {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.scrollable {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollable::-webkit-scrollbar {
  display: none;
}

.answer-box.scrollable {
  max-height: 100vh;
  overflow: auto;
}

#int03 {
  overflow: hidden;
}/*# sourceMappingURL=interview.css.map */