@charset "UTF-8";
/*=======================================

interview共通CSS

=======================================*/
/* カラー変数 */
:root {
  --interview-text-color: #6B7281;
  --note-text-color: #5A5A5A;
  --color-white: #FFFFFF;
}
button,
a {
  cursor: pointer;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
span {
  display: inline-block;
}
img[loading="lazy"] {
  width: 100%;
  max-width: 100%;
  height: auto;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom !important;
}
/* sticky用調整 */
#main .content {
  overflow: clip;
}
/* 注釈 */
.note-contents {
  max-width: 1200px;
  padding: 0 20px;
  margin: 20px auto;
}
.note-contents p {
  text-align: right;
  font-size: 14px;
  color: var(--note-text-color);
}
@media screen and (max-width: 767px) {
  .note-contents p {
    font-size: 12px;
  }
}
/* サブアンカー */
.sub-anchor {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.sub-anchor-list {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
}
.sub-anchor-item {
  width: 100%;
  max-width: 160px;
}
.sub-anchor-link {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid var(--sub-border-color);
  color: var(--btn-color) !important;
}
@media (hover:hover) {
  .sub-anchor-link:hover {
    color: rgba(34, 34, 34, 0.35) !important;
    background-color: var(--sub-line-color);
  }
}
@media screen and (max-width: 767px) {
  .sub-anchor-item {
    max-width: 140px;
    font-size: 14px;
  }
}
/* 背景調整 */
.profile {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  z-index: 0;
}
.profile-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: visible;
  pointer-events: none;
}
.profile-bg::before,
.profile-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  min-width: 1678px;
  aspect-ratio: 1678 / 1070;
  background: url(/lp/voice/img/profile-bg.png) no-repeat center center / 100% 100%;
  transform: translateX(-50%);
  z-index: 0;
}
.profile-bg::before {
  top: 0;
}
.profile-bg::after {
  top: 2000px;
}
.profile-bg.is-single::after {
  display: none;
}
.profile-inner,
.staff-voice-empty {
  position: relative;
}
.profile:has(.profile-modal.is-open) {
  z-index: 10000;
}
.profile-modal-overlay {
  z-index: 10001;
}
@media (max-width: 767px) {
  .profile-bg::after {
    top: 1500px;
  }
}
.profile-list.is-single-visible {
  grid-template-columns: minmax(0, 402px);
  justify-content: center;
}
/*****************************************
インタビューコンテンツ
******************************************/
.sec-interview {
  margin: 0 auto;
  padding: 100px 0 170px;
  gap: 72px;
  background-image:
    url("/lp/interview/common_img/bg_interview_top.png"),
    url("/lp/interview/common_img/bg_interview_bottom.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center top 350px, left -300px bottom;
  background-size: 1500px auto, 1440px auto;
}
@media screen and (max-width: 767px) {
  .sec-interview {
    padding: 70px 0 80px;
    background-image: url("/lp/interview/common_img/bg_interview_top.png");
    background-repeat: no-repeat;
    background-position: center top 350px;
    background-size: 970px auto;
  }
}
.interview-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 170px;
  padding: 0 20px;
  position: relative;
  min-height: min(47.7vw, 547px);
}
@media screen and (max-width: 767px) {
  .interview-content {
    display: block;
    min-height: auto;
    margin: 0 auto;
  }
}
.sec-interview .sec-title-wrapper {
  width: 100%;
  display: block;
}
.sec-interview .sec-title {
  padding-bottom: 36px;
  margin: 0 0 44px;
  font-size: clamp(28px, calc(40 / 1440 * 100vw), 36px);
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.75;
  width: 50%;
  max-width: 540px;
}
@media screen and (max-width: 767px) {
  .sec-interview .sec-title {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
}
.sec-interview .sec-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1.5px;
  background-color: var(--line-color);
}
@media screen and (max-width: 767px) {
  .sec-interview .sec-title::before {
    display: none;
  }
}
.sec-interview .sec-title::after {
  right: -72px;
}
@media screen and (max-width: 767px) {
  .sec-interview .sec-title::after {
    right: -50px;
    top: 20px;
    width: 200px;
  }
}
.interview-text {
  width: 50%;
  max-width: 540px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .interview-text {
    width: 100%;
    max-width: 100%;
    padding-top: 35px;
  }
}
.interview-name {
  font-size: 20px;
}
.interview-position {
  margin-top: 17px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .interview-name, .interview-position {
    text-align: center;
  }
  .interview-name {
    font-size: 18px;
  }
  .interview-position {
    margin-top: 8px;
    font-size: 14px;
  }
}
.interview-description {
  margin-top: 22px;
  font-size: 16px;
  color: var(--interview-text-color);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .interview-description {
    margin-top: 16px;
    font-size: 14px;
  }
}
.interview-image {
  position: absolute;
  width: 60%;
  max-width: 688px;
  margin-left: auto;
  margin-right: -140px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .interview-image {
    position: static;
    width: calc(100% + 40px);
    max-width: none;
    margin: 0 -20px 0;
  }
  .interview-image img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .interview-detail {
    margin-top: 120px;
  }
}
.interview-detail-image {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .interview-detail-image {
    margin-bottom: 30px;
  }
}
.interview-detail-block:last-of-type .interview-detail-image {
  margin-bottom: 0;
  margin-top: 100px;
}
.interview-detail-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .interview-detail-inner {
    display: block;
  }
}
.interview-detail-sticky {
  position: sticky;
  width: 48%;
  max-width: 550px;
  top: 80px;
  display: grid;
  align-self: start;
  overflow: hidden;
}
.interview-detail-contents {
  width: 48%;
  max-width: 550px;
}
@media screen and (max-width: 767px) {
  .interview-detail-contents {
    width: 100%;
    max-width: 100%;
  }
}
.interview-detail-block:not(:first-child) {
  margin-top: 120px;
}
.interview-detail-title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .interview-detail-title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }
}
.interview-detail-block p {
  font-size: 15px;
  line-height: 2.4;
  color: var(--interview-text-color);
}
@media screen and (max-width: 767px) {
  .interview-detail-block p {
    line-height: 1.7;
  }
}
/* PC版sticky画像 */
.interview-detail-sticky {
  position: sticky;
  top: 120px;
}
.interview-detail-sticky {
  position: sticky;
  top: 120px;
}
.interview-visual-list {
  position: relative;
}
.interview-visual-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.interview-visual-item:first-child {
  position: relative;
}
.interview-visual-item.is-active {
  opacity: 1;
  z-index: 2;
}
.interview-visual-item img {
  display: block;
  width: 100%;
}
/* PC版インジケータ */
.interview-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;
  z-index: 10;
  right: 24px;
  bottom: 15px;
}
.interview-indicator .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50vh;
  background: var(--color-white);
  opacity: 0.5;
  transition: width .6s ease, opacity .6s ease;
}
.interview-indicator .indicator.is-active {
  width: 38px;
  background: var(--color-white);
  opacity: 1;
}
/*****************************************
1日のスケジュール
******************************************/
.sec-schedule {
  background-color: var(--bg-color-blue);
  padding: 70px 0 100px;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .sec-schedule {
    padding: 50px 0 70px;
  }
}
.schedule-list {
  margin: 56px auto 0;
  max-width: 670px;
  width: 100%;
  position: relative;
}
.schedule-list::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("/lp/interview/common_img/deco_white01.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 485 / 435;
  width: 200px;
  top: -170px;
  left: -30px;
  z-index: -1;
}
.schedule-list::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("/lp/interview/common_img/deco_white02.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 380 / 426;
  width: 170px;
  bottom: -120px;
  left: -150px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .schedule-list::after {
    left: -40px;
  }
}
.schedule-item-date {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .schedule-item {
    gap: 10px;
  }
  .schedule-item-date {
    font-size: 18px;
  }
  .schedule-item-title {
    font-size: 20px;
  }
}
/*****************************************
注目コンテンツ
******************************************/
@media (max-width: 1000px) {
  .inv-list-lp {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
    max-width: 100%;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .inv-list-lp .inv-txt {
    width: 100%;
    max-width: 100%;
  }
  .inv-list-lp .inv-job {
    margin-top: clamp(10px, 2.6vw, 14px);
    font-size: clamp(12px, 2.9vw, 16px);
  }
  .inv-list-lp .inv-name {
    margin-top: clamp(4px, 1.6vw, 6px);
    padding-bottom: clamp(10px, 3vw, 12px);
    font-size: clamp(16px, 3.5vw, 20px);
  }
  .inv-list-lp .inv-year {
    margin-top: clamp(10px, 3vw, 12px);
    font-size: clamp(15px, 3.2vw, 18px);
  }
  .inv-list-lp .inv-more {
    max-width: 100%;
    font-size: clamp(16px, 3.2vw, 18px);
  }
}
#attention.sec-attention {
  position: relative;
  margin-top: 138px;
  z-index: 1;
  padding-bottom: 3px; /* フォーカス見切れ対策 */
}
#attention .contents-side-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  min-height: auto;
  width: auto;
  max-width: none;
  gap: 40px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  #attention .contents-side-list {
    margin: 60px auto 0;
  }
}
#attention .contents-side-list li {
  max-width: 360px;
  width: 100%;
}
#attention .contents-side-en {
  font-size: clamp(40px, calc(50 / 1200 * 100vw), 50px);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  #attention .contents-side-en {
    font-size: clamp(29px, calc(32 / 375 * 100vw), 32px);
    letter-spacing: 0.02em;
  }
}
/*****************************************
フッター付近
******************************************/
#footer::before {
  background: url(/lp/lp_common/lp_common_img/bg_footer_large.png) no-repeat top / cover;
  top: -616px;
  height: 616px;
  pointer-events: none;
}
@media (max-width:767px) {
  #footer::before {
    background: url(/lp/lp_common/lp_common_img/bg_footer_large.png) no-repeat top / cover;
    top: -794px;
    height: 794px;
    background-size: 360% auto;
  }
}