@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Noto+Sans+JP:wght@600&display=swap");
.interview-wrap {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .interview-wrap {
    padding-bottom: 30px;
  }
}
.interview-copy {
  color: #191e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 63px */
}
@media (max-width: 768px) {
  .interview-copy {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 33px */
  }
}
/* 横スクロールが出ないように設定 */
.profile-section-wrapper {
  overflow: hidden;
  /*  padding-bottom: 40px;*/
  width: 100%;
  background-color: #c5e2ff; /* 背景色（サンプル） */
}
@media (max-width: 768px) {
  .profile-section-wrapper {
    padding-bottom: 0;
  }
}
.profile-section-wrapper .profile-section {
  padding: 0 20px; /* 上下の余白 */
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .profile-section-wrapper .profile-section {
    margin-bottom: 115px;
  }
}
.profile-container {
  width: 100%;
  max-width: 1160px; /* 画像の最大幅 */
  position: relative;
}
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1160/520; /* デザインの比率を維持 */
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .image-wrapper {
    height: 210px;
  }
  .image-wrapper img {
    height: 100%;
    object-fit: cover;
  }
}
.main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
/* 白枠のカード：画面右端まで伸ばす設定 */
.info-card {
  position: absolute;
  bottom: 0;
  right: 0; /* 親コンテナ(1160px)の右端を基準 */
  /* 幅の設定：デザイン(506px)をベースにレスポンシブ化 */
  /* width: 43.6%;*/
  width: 33.6%;
  min-width: 320px;
  padding: 40px;
  /* 重要：右側をブラウザの端まで塗りつぶす */
  padding-right: 50vw;
  margin-right: -50vw;
  background: #fff;
  border-radius: 20px 0 0 0;
  box-sizing: content-box; /* padding-rightを外側に持たせるため */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
  bottom: -40px;
}
/* --- テキストスタイル --- */
.profile-label {
  color: #136cfa;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 8px;
  /* デザイン指示に基づき右寄せにする場合 */
  text-align: left;
}
@media (max-width: 768px) {
  .profile-label {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 22.5px */
    text-transform: capitalize;
    margin-bottom: 10px;
  }
}
.job-title {
  color: #136cfa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
/* 営業の左の薄い青の四角（画像参照） */
.job-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #c6e0ff;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .job-title::before {
    width: 10px;
    height: 10px;
    aspect-ratio: 1/1;
  }
}
.name-area {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.name {
  color: #191e2e;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.72px;
}
.divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #191e2e;
  margin: 0 20px;
}
.join-year {
  color: #191e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 768px) {
  .join-year {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
  }
}
/* スマホ対応 */
@media (max-width: 768px) {
  .info-card {
    /*width: 70%;*/
    padding: 25px 40px;
    /* padding-right: 50vw;*/ /* スマホでも端まで伸ばす */
    min-height: auto;
    width: 297px;
    height: auto;
    box-sizing: border-box;
    margin-right: -20px;
    bottom: auto;
    top: 177px;
  }
  .name {
    font-size: 20px;
  }
  .job-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    letter-spacing: 0.6px;
    margin-bottom: 10px;
  }
  .divider {
    margin: 0 18px 0 20px;
  }
}
/* インタビュー内 */
/* セクション全体の余白 */
.interview-section {
  padding: 100px 0 0;
  background-color: #c5e2ff;
}
@media (max-width: 768px) {
  .interview-section {
    padding-top: 50px;
  }
}
.interview-section.second {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .interview-section.second {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
/* 背景色のバリエーション */
.section-1 {
  background-color: #c5e2ff;
}
.section-2 {
  background-color: #c5e2ff;
}
/* 1. コンテナを右寄せ基準に変更 */
.interview-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
  justify-content: flex-end; /* 右側の510pxを基準に配置するため追加 */
}
/* 2. 左側を「残りの幅すべて」に設定 */
.interview-left {
  flex: 1; /* width指定をなくし、余ったスペースをすべて埋める設定に変更 */
  position: relative;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .interview-left {
    order: 2;
    margin: 0 auto;
    height: 360px;
  }
}
.sticky-box {
  position: sticky;
  top: 0; /* 画面の最上部にくっつける */
  width: 100%;
  height: 100vh; /* 高さをブラウザの高さ100%に固定 */
  overflow: hidden;
  border-radius: 0; /* 画面端まで広げるため角丸を解除 */
}
.interview-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-size: cover; と同じ役割 */
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
}
/* 重なり順を制御して、フェード時に前の写真が残るようにする */
.interview-img.is-active {
  opacity: 1;
  z-index: 2;
}
/* --- 右側：テキストエリア --- */
/* --- 右側：510px固定エリア（微調整） --- */
.interview-right {
  border-top: 1px solid #136cfa;
  width: 510px;
  flex: 0 0 510px;
  /* 画像が100vhになったので、テキストの上下余白を調整して中央に見えるように */
  padding: 59px 0;
}
/* 4. レスポンシブの境界線を追加 */
@media (max-width: 1100px) {
  /* 画面が狭くなってきたら、固定を解除して比率(%)に切り替え */
  .interview-right {
    padding-top: 0;
    flex: 0 0 45%;
    border: none;
    width: 100%;
  }
}
.interview-header {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .interview-header {
    margin-bottom: 0;
  }
  .interview-right {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.sub-title {
  color: #136cfa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .sub-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: 0.54px;
    margin-bottom: 13px;
  }
}
.sub-title::before {
  content: "";
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  background: #003894;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -3px;
}
.main-title {
  color: #191e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: 0.96px;
  text-transform: lowercase;
}
@media (max-width: 768px) {
  .main-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    letter-spacing: 0.6px;
    margin-bottom: 30px;
  }
}
.interview-item {
  margin-bottom: 50px;
}
.question {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #191e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 33px */
  letter-spacing: 0.66px;
  text-transform: lowercase;
  align-items: center;
}
@media (max-width: 768px) {
  .question {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 25.5px */
    letter-spacing: 0.51px;
    text-transform: lowercase;
    margin-bottom: 15px;
  }
}
.question span {
  width: 43px;
  height: 23px;
  border-radius: 21px;
  background: #136cfa;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 22.5px */
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .question span {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 19.5px */
    letter-spacing: 0.39px;
    text-transform: uppercase;
  }
}
.interview-item .answer {
  line-height: 1.8;
  text-align: justify;
  padding-left: 56px;
  color: #191E2E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
@media (max-width: 768px) {
  .interview-item .answer {
    color: #191E2E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.48px;
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .interview-container {
    flex-direction: column;
    width: clamp(331px, 88.26vw, 1160px);
    padding: 0;
  }
  .sticky-box {
    position: relative;
    top: 0;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
  }
  .interview-item {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .interview-container {
    gap: 30px;
  }
  .sticky-box {
    height: 360px;
    aspect-ratio: 331 / 360;
    margin-bottom: 0;
  }
  .interview-item {
    margin-bottom: 30px;
  }
  .interview-item:last-of-type {
    margin-bottom: 0;
  }
}
.other-shain-wrap {
  padding: 150px 0;
  background-color: #fff;
}
.other-shain-container {
  width: clamp(331px, 88.26vw, 1160px);
  margin: 0 auto;
}
/* --- レイアウトの基本設定 --- */
.member-section {
  width: clamp(331px, 88.26vw, 1160px);
  margin: 150px auto;
}
@media (max-width: 768px) {
  .member-section {
    margin: 80px auto;
  }
}
.section-title {
  color: #136cfa;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%; /* 60px */
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section-title {
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 48px */
  }
}
/* 最後の段の線を隠すための制御 */
.member-list-wrapper {
  overflow: hidden;
}
.member-list {
  display: flex;
  flex-wrap: wrap;
  /* 2個の時にセンター寄せにする設定 */
  justify-content: center;
  /* 最後の段の線を枠外に飛ばす */
  margin-bottom: -1px;
}
/* --- 各社員カードの設定 --- */
.member-item {
  /* 横マージン85pxを考慮した3列計算 */
  /* (100% - 85px * 2) / 3 */
  width: calc((100% - 170px) / 3);
  margin-right: 85px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
  position: relative;
  /* カードの下に線を引く */
  border-bottom: 1px solid #136CFA;
}
/* 3の倍数（右端）はマージンを消す */
.member-item:nth-child(3n) {
  margin-right: 0;
}
/* ★重要：突き抜ける線を作るための「継ぎ足し線」 */
/* 右側のマージン85px分にも線を引くことで、1本に繋がって見える */
.member-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 100%;
  width: 85px;
  border-bottom: 1px solid #136CFA;
}
/* 3の倍数（一番右）には継ぎ足し線は不要 */
.member-item:nth-child(3n)::after {
  display: none;
}
/* --- カード内部の装飾 --- */
.member-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.category {
  color: #136cfa;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.6px;
  margin-bottom: 30px;
}
.category::before {
  content: "";
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  background: #C5E2FF;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.image-box {
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .image-box {
    height: 280px;
  }
}
.image-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .image-box img {
    height: 100%;
    object-fit: cover;
  }
}
.member-inner a:hover .image-box img {
  scale: 1.05;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.catchphrase {
  flex-grow: 1;
  color: #191e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.72px;
  text-transform: lowercase;
  line-height: 150%;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .catchphrase {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 33px */
    letter-spacing: 0.66px;
    text-transform: lowercase;
  }
}
.member-inner a:hover .catchphrase {
  color: #136cfa;
}
.member-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.profile {
  padding-top: 20px;
  flex-grow: 1;
  position: relative;
}
.profile:before {
  content: "";
  display: inline-block;
  background-color: #136cfa;
  width: 32px;
  height: 2px;
  top: 0;
  left: 0;
  position: absolute;
}
.name {
  color: #191e2e;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
  font-family: Montserrat;
  font-size: 24px;
  letter-spacing: 0.72px;
}
@media (max-width: 768px) {
  .name {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: 0.54px;
  }
}
.year {
  color: #191e2e;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.arrow-btn {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  background: #136cfa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}
.arrow-btn::after {
  content: "";
  width: 16px;
  height: 14px;
  background-position: center;
  background-image: url("../image/common/arrowwhite.svg")
}
.member-inner a:hover .arrow-btn {
  background: #003894;
}
/* --- レスポンシブ：2列にする場合 --- */
@media (max-width: 900px) {
  .member-item {
    /* 2列計算：(100% - 85px) / 2 */
    width: calc((100% - 85px) / 2);
    margin-right: 85px;
  }
  /* nth-childのリセットと再設定 */
  .member-item:nth-child(3n) {
    margin-right: 85px;
  }
  .member-item:nth-child(3n)::after {
    display: block;
  }
  .member-item:nth-child(2n) {
    margin-right: 0;
  }
  .member-item:nth-child(2n)::after {
    display: none;
  }
}
/* --- レスポンシブ：1列にする場合 --- */
@media (max-width: 768px) {
  .member-item:nth-child(3n)::after {
    display: none;
  }
  .member-item:nth-child(3n) {
    margin-right: 0;
  }
  .member-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .member-item:last-of-type {
    margin-bottom: 15px;
  }
  .member-item::after {
    display: none;
  }
} /*# sourceMappingURL=interview.css.map */