@charset "UTF-8";
/* ====================================
   Variables - 変数
   ==================================== */
:root {
  --ps-color-primary-blue: #24a4db;
  --ps-color-dark-blue: #165ea3;
  --ps-color-accent-yellow: #ef0;
  --ps-color-text-dark: #000;
  --ps-color-text-gray: #333;
  --ps-color-bg-white: #fff;
}

/* ====================================
   Hero Section - ヒーロー画像
   ==================================== */
.ps-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 120px;
  height: 411px;
  overflow: visible;
  z-index: 1;
}

.ps-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ps-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ps-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/page-header-filter.png") no-repeat center bottom/100% auto;
  pointer-events: none;
}

.ps-hero__number {
  position: absolute;
  bottom: -100px;
  left: 25px;
  z-index: 2;
}

.ps-hero__number-text {
  display: grid;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 180px;
  font-weight: 400;
  width: 160px;
  place-items: center;
  place-content: center;
  color: var(--ps-color-text-dark);
  line-height: 1;
  background-color: var(--ps-color-bg-white);
}

.ps-hero__number-line {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--ps-color-accent-yellow);
}

/* ====================================
   Main Title - メインタイトル
   ==================================== */
.ps-main-title {
  padding: 0 20px;
  margin-bottom: 150px;
}

.ps-main-title__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-left: 220px;
}

.ps-main-title__title {
  font-family: "Noto Serif JP", serif;
  font-size: 55px;
  font-weight: 500;
  color: var(--ps-color-text-dark);
  line-height: 1.45;
  margin: 0 0 20px;
  margin-top: -2em;
}
.ps-main-title__title span {
  display: block;
}

.ps-main-title__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ps-color-text-dark);
  margin: 0;
}

/* ====================================
   Content Section - コンテンツセクション
   ==================================== */
.ps-section {
  margin: 50px 20px;
  background-color: var(--ps-color-bg-white);
}

.ps-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.ps-section__header {
  position: relative;
  padding-left: 3px;
}

.ps-section__header-line {
  position: absolute;
  left: 3px;
  top: 8px;
  width: 2px;
  height: 72px;
  background-color: var(--ps-color-primary-blue);
}

.ps-section__header-line--long {
  height: 112px;
}

.ps-section__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ps-color-text-dark);
  line-height: 1.67;
  margin: 0;
  padding-left: 20px;
}
.ps-section__heading span {
  display: block;
}

.ps-section__content {
  max-width: 800px;
}

.ps-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ps-color-text-dark);
  line-height: 2.125;
}
.ps-section__text p {
  margin: 0 0 1.5em;
}
.ps-section__text p:last-child {
  margin-bottom: 0;
}

/* ====================================
   Image Section - 画像セクション
   ==================================== */
.ps-image-section {
  padding: 0 20px 80px;
  background-color: var(--ps-color-bg-white);
}

.ps-image-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ps-image-section__container--right {
  display: flex;
  justify-content: flex-end;
}

.ps-image-section__image {
  max-width: 800px;
  width: 100%;
  overflow: hidden;
}
.ps-image-section__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ====================================
   Interviewee Section - インタビュイー
   ==================================== */
.ps-interviewee {
  padding: 80px 20px;
}
.ps-interviewee .ps-interviewee__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: var(--ps-color-primary-blue);
}

.ps-interviewee__content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.ps-interviewee__image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  overflow: hidden;
}
.ps-interviewee__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-interviewee__info {
  flex: 1;
}

.ps-interviewee__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 62px;
  font-weight: 400;
  color: var(--ps-color-bg-white);
  text-align: left;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.ps-interviewee__position {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ps-color-bg-white);
  line-height: 2.125;
  margin: 0 0 20px;
}

.ps-interviewee__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ps-color-bg-white);
  line-height: 2.125;
  margin: 0;
}

/* ====================================
   CTA Section - CTAボタン
   ==================================== */
.ps-cta {
  padding: 80px 20px;
}

.ps-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ps-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 80px;
  background-color: transparent;
  border: 1px solid var(--ps-color-text-dark);
  color: var(--ps-color-text-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ps-cta__button:hover {
  background-color: var(--ps-color-text-dark);
  color: var(--ps-color-bg-white);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
  .ps-hero {
    height: 350px;
    margin-bottom: 100px;
  }
  .ps-hero__number {
    left: 20px;
    bottom: -80px;
  }
  .ps-hero__number-text {
    font-size: 140px;
    width: 130px;
  }
  .ps-main-title__container {
    padding-left: 20px;
  }
  .ps-main-title__title {
    font-size: 42px;
  }
  .ps-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ps-section__header {
    padding-left: 0;
  }
  .ps-section__header-line {
    left: 0;
  }
  .ps-interviewee__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .ps-interviewee__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .ps-hero {
    height: 280px;
    margin-bottom: 80px;
  }
  .ps-hero__number {
    left: 20px;
    bottom: -60px;
  }
  .ps-hero__number-text {
    font-size: 100px;
    width: 100px;
  }
  .ps-hero__number-line {
    width: 80px;
    height: 3px;
  }
  .ps-main-title {
    padding: 60px 20px;
  }
  .ps-main-title__container {
    padding-left: 0;
  }
  .ps-main-title__title {
    font-size: 32px;
  }
  .ps-main-title__subtitle {
    font-size: 14px;
  }
  .ps-section {
    padding: 60px 20px;
  }
  .ps-section__heading {
    font-size: 20px;
    padding-left: 15px;
  }
  .ps-section__header-line {
    height: 56px;
  }
  .ps-section__header-line--long {
    height: 80px;
  }
  .ps-section__text {
    font-size: 15px;
    line-height: 2;
  }
  .ps-image-section {
    padding: 0 20px 60px;
  }
  .ps-image-section__container--right {
    justify-content: center;
  }
  .ps-interviewee {
    padding: 60px 20px;
  }
  .ps-interviewee__title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .ps-interviewee__image {
    width: 200px;
    height: 200px;
  }
  .ps-interviewee__position,
  .ps-interviewee__description {
    font-size: 14px;
    text-align: left;
  }
  .ps-cta {
    padding: 60px 20px;
  }
  .ps-cta__button {
    height: 60px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .ps-hero {
    height: 220px;
    margin-bottom: 60px;
  }
  .ps-hero__number {
    bottom: -50px;
  }
  .ps-hero__number-text {
    font-size: 72px;
    width: 80px;
  }
  .ps-hero__number-line {
    width: 60px;
  }
  .ps-main-title__title {
    font-size: 26px;
  }
  .ps-interviewee__title {
    font-size: 32px;
  }
  .ps-interviewee__image {
    width: 160px;
    height: 160px;
  }
}