@charset "UTF-8";
/*
インタビューページ (interview-source/templates/interview.ejsとinterview/〇〇.html) のCSSファイル
*/
/* 色 */
/* pの行間 */
/* サイドエリアのグリッドサイズ */
/* サイドエリアの幅 */
/* 外周のマージン */
/* メインエリアのグリッドサイズ */
/* インタビューページのメインエリアのギャップサイズ */
/* タブレットのメインエリア幅 */
/* スマホのヘッダー高さ */
/* aboutなどタイトル画像の高さ */
/* セクションの最低高さ */
/*
@use "./_mixins" as mixins;

@include mixins.mobileView {
}

@include mixins.mobileView {
}
*/
/* インタビューのリストがはみ出す対策 */
/* 全体 */
html,
body {
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background-color: #fffbb6;
  color: #020202;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  html,
  body {
    overflow: scroll;
  }
  section {
    scroll-margin-top: 180px;
    /* m-side-areaの高さ */
  }
}
.container {
  overflow: hidden;
  display: flex;
  width: 100vw;
  height: 100svh;
}
@media screen and (max-width: 1024px) {
  .container {
    display: block;
    width: 100vw;
    height: auto;
  }
}

/* ローダー */
.loading-screen {
  width: 100%;
  height: 100%;
  background-color: #fffbb6;
}
.loading-screen img {
  width: 100px;
  height: auto;
}
.loading-screen .loading-contents {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 右エリア */
.main-area {
  width: calc(60vw - 24px);
  margin-left: calc(40vw + 24px);
  padding-right: 24px;
  color: #020202;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .main-area {
    width: 100vw;
    height: auto;
    margin-left: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .main-area {
    width: 100vw;
    display: grid;
    justify-content: center;
  }
}

.m-interview-menu {
  display: none;
  position: fixed;
  overflow: hidden;
  color: #020202;
  background-color: #fffbb6;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .m-interview-menu {
    display: block;
  }
}
.m-interview-menu .m-jp-marquee,
.m-interview-menu .m-en-marquee {
  width: 200vw;
  /* 仮に200%にする */
  word-break: keep-all;
  word-break: keep-all;
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
.m-interview-menu .m-jp-marquee ul,
.m-interview-menu .m-en-marquee ul {
  animation: flowing 20s linear infinite;
  font-size: 14px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.m-interview-menu .m-jp-marquee li,
.m-interview-menu .m-en-marquee li {
  display: inline-block;
}
.m-interview-menu .m-jp-marquee .red,
.m-interview-menu .m-en-marquee .red {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #f7310b;
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* メニュー */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .m-menu {
    width: 100vw !important;
    display: none;
  }
  .m-menu ul {
    width: 390px !important;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .menu-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

.menu {
  display: block;
}

.m-menu {
  display: none;
}

.menu ul,
.m-menu ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.menu li,
.m-menu li {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.menu li a,
.m-menu li a {
  text-decoration: none;
  color: inherit;
  padding: 5px 0;
  position: relative;
  display: flex;
  width: 100%;
}

.menu li a p,
.m-menu li a p {
  margin: 0;
  padding: 0;
}

.menu li a p:first-of-type,
.m-menu li a p:first-of-type {
  width: 70%;
  text-align: left;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .m-menu li a p:first-of-type {
    width: 100%;
  }
  .m-menu li a {
    padding: 0;
  }
  .m-menu li {
    margin-bottom: 0;
  }
}
.menu li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.menu li a:active,
.menu li a:hover::after {
  width: calc(100% + 50px);
}

.hover-image {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 35px;
  height: 35px;
  margin-left: 10px;
}

.menu .nav-item.active .hover-image {
  visibility: visible;
  opacity: 1;
}

.menu li:last-child,
.m-menu li:last-child {
  margin-bottom: 0;
}

.menu li p,
.m-menu li p {
  margin-left: 14px;
}

.submenu {
  transform: scaleY(0);
  /* デフォルトでは非表示の状態にしておく */
  transform-origin: center top;
  /* 変形を適応する基準をtopとする */
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* 表示の変化を0.3秒に指定 */
  width: 100%;
  padding-left: 14px;
}

.submenu.open {
  transform: scaleY(1);
  /* メニューが開く */
  opacity: 1;
  /* 表示する */
  visibility: visible;
  /* 表示する */
  margin-top: 0.75rem;
}

.submenu li {
  transform: scaleY(0);
  /* 初期状態で非表示 */
  transition: transform 0.3s ease;
  /* 各アイテムのアニメーション */
  padding-left: 14px;
  margin-top: calc(-1rem + 4px);
  margin-bottom: calc(-1rem + 4px);
}

.submenu.open li {
  transform: scaleY(1);
  /* アイテムが開く */
}

/* クリックされたメニュー項目は表示する */
.submenu li.active {
  display: flex;
}

/* インタビューとインタビュイーは初期状態で表示 */
.nav-item-interview,
.nav-item-semi {
  display: block;
}

.m-menu-hover-image {
  width: 35px;
  margin-left: 10px;
}

.top-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: calc(24px + 2.5rem + 24px + 35px);
  margin-bottom: calc(24px + 2.5rem + 24px + 35px);
}
@media screen and (max-width: 1024px) {
  .top-section {
    width: calc(100vw - 48px);
    margin-top: 132px;
    margin-bottom: 150px;
    margin-left: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .top-section {
    width: 390px;
  }
}
.top-section .profile-image {
  grid-column: span 3;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
}
.top-section .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-section .qas {
  grid-column: span 3;
  margin-top: -0.5rem;
  display: flex;
  flex-direction: column;
}
.top-section .qas .qa-semi-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-section .qas .qa-semi-wrapper .qa-semi {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.question-answer {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 12px;
  justify-content: space-between;
  gap: 2rem;
}
.question-answer .question,
.question-answer .answer {
  line-height: 1.2;
}
.question-answer .question {
  flex: 0 0 8rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .question-answer .question {
    flex: 0 0 calc(8rem + 45px);
  }
}
.question-answer .answer {
  flex: 0 1 26rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
}

.large_qa {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 55px;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .large_qa {
    width: calc(100vw - 48px);
    margin-left: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .large_qa {
    width: 390px;
  }
}
.large_qa div:first-child {
  grid-column: span 3;
}
.large_qa div:nth-child(2) {
  grid-column: span 3;
  /* 過去作品がポスターの人は比率を自動にして見切れないようにする */
}
@media screen and (max-width: 1024px) {
  .large_qa div:nth-child(2) {
    margin-top: 24px;
  }
}
.large_qa div:nth-child(2) .kobayashi,
.large_qa div:nth-child(2) .shirakawa,
.large_qa div:nth-child(2) .nemoto {
  aspect-ratio: auto;
}
.large_qa div:nth-child(2) img {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .large_qa div:nth-child(2) img {
    margin-top: 0.8rem;
  }
}
.large_qa div:nth-child(2) .image-second {
  margin-top: 4px !important;
  /* 卒制の写真2枚目に限り余白を4pxに */
}

.m-other-article-menu {
  display: none;
  width: calc(100vw - 48px);
  margin-left: 24px;
  margin-top: 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .m-other-article-menu {
    display: block;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .m-other-article-menu {
    width: 390px;
  }
}
.m-other-article-menu .other-article-title {
  margin-bottom: 42px;
  line-height: 1.2;
}
.m-other-article-menu .interview_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: space-between;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .m-other-article-menu .interview_list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .m-other-article-menu .interview_list .semi_members_list .no-top-margin {
    margin-top: -10px;
  }
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-top: 8px;
  margin-bottom: 16px;
  width: calc(23rem + 20px);
  text-decoration: none;
  color: #020202;
}
@media screen and (max-width: 1024px) {
  .m-other-article-menu .interview_list .semi_members_list .semi_member a {
    width: 100%;
  }
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a span {
  position: relative;
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a span:first-child {
  flex: 0 0 7rem;
  white-space: nowrap;
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a span:nth-child(2) {
  flex: 0 0 16rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 1024px) {
  .m-other-article-menu .interview_list .semi_members_list .semi_member a span:nth-child(2) {
    flex: 0 0 calc(100% - 7rem - 20px);
  }
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a span:nth-child(3) {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a .top-interview-hover-image {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 2px;
  right: 0;
  width: 100%;
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 4px;
  left: 0;
  transition: width 0.3s ease;
}
.m-other-article-menu .interview_list .semi_members_list .semi_member a:hover .top-interview-hover-image {
  visibility: visible;
  opacity: 1;
}

/* 左エリア */
.side-area {
  position: fixed;
  width: calc(40vw - 24px);
  height: calc(100svh - 48px);
  margin: 24px 0 24px 24px;
  color: #020202;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .side-area {
    display: none;
  }
}
.interview-side-backlink {
  color: #020202;
  text-decoration: none;
}

.interview-side-innner {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 14px - 48px);
}

.interview-title {
  height: 35px;
  margin-bottom: 6px;
}
.interview-title img {
  height: 100%;
}

.semi-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin-top: 54px;
  display: flex;
  flex-direction: column;
}
.semi-list .semi-gap {
  display: flex;
  flex-grow: 1;
  max-height: 28px;
  min-height: 8px;
}
.semi-list .semi {
  width: 100%;
  display: flex;
}
.semi-list .semi .semi-name {
  width: calc(15rem + 60px);
}
.semi-list .semi ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 15rem;
}
.semi-list .semi ul .semi-member-gap {
  height: 24px;
}
.semi-list .semi ul .semi-member-gap::after {
  background-color: transparent;
}
.semi-list .semi ul li {
  position: relative;
}
.semi-list .semi ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #020202;
  position: relative;
}
.semi-list .semi ul li .hover-image {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: -7px;
  right: 0;
  width: 30px;
}
.semi-list .semi ul li::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.semi-list .semi ul li:hover::after {
  width: 100%;
}
.semi-list .semi ul li.active .hover-image {
  visibility: visible;
  opacity: 1;
}
.semi-list .semi ul li.active::after {
  width: 100%;
}

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