/* 上のスペース削除 */
@media print, screen and (min-width: 768px) {
    #rwd-content .rwd-pagenav-header-wrap.with-keyvisual .rwd-pagenav-header {
        margin-bottom: 0px;
    }
}

/* ==============================
   KV
============================== */

.kv {
  position: relative;
  min-height: 320px;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;

  /* PC用背景画像 */
  background-image: url("../img/kv_pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kv__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* 上の一行コピー */
.kv__lead {
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* 大きいタイトル */
.kv__title {
  margin: 0 0 32px;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* ロゴ */
.kv__logo img {
  display: block;
  margin: 0 auto;
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* ==============================
   スマホ用
============================== */

@media (max-width: 767px) {
  .kv {
    min-height: 360px;
    padding: 48px 16px 56px;
    background-image: url("../img/kv_sp.jpg");
    background-position: center top;
  }

  .kv__lead {
    font-size: 14px;
  }

  .kv__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .kv__logo img {
    max-width: 200px;
  }
}

/* ===============================
   Intro Section（KV下）
=============================== */

.intro {
  padding: 80px 16px;
  text-align: center;
  background: #fff;
}

.intro__inner {
  max-width: 980px;
  margin: 0 auto;
}

.intro__inner p {
  font-size: 20px;
}

.intro__image img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  max-width: 720px; 
}

.intro__text {
  line-height: 1.9;
  color: #333;
  margin: 0;
}

/* ===============================
   SP
=============================== */

@media (max-width: 767px) {
  .intro {
    padding: 56px 16px;
    text-align: left
  }

  .intro__inner p {
  font-size: 18px;
  }

  .intro__image img {
    width: 100%;
    margin-bottom: 24px;
  }

  .intro__text {
    line-height: 1.8;
  }
}


/* ==============================
   共通
============================== */

@media (min-width: 768px) {
  .interview {
    background-size: 170%;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .interview--1 { background-image: url("../img/interview01-pc.jpg"); }
  .interview--2 { background-image: url("../img/interview02-pc.jpg"); }
  .interview--3 { background-image: url("../img/interview03-pc.jpg"); }
}

.interview__parallax {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%; 
  height: 150%;
  background-image: var(--parallax-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 0;
}

/* 余白＆テキストコンテナ */
.interview__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 16px;
  display: flex;
  position: relative;
  z-index: 1;
}

/* 白い本文ブロック */
.interview__content {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 48px;
}

/* 右寄せ・左寄せを切り替え */
.interview--right .interview__inner {
  justify-content: flex-end;
}

.interview--left .interview__inner {
  justify-content: flex-start;
}

/* 見出し（スラッシュ付き） */
.interview__title {
  position: relative;
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.9;
}

.interview__title::before {
  content: "";
  position: absolute;
  left: -1em;
  top: -0.5em;

  width: 90px;
  height: 140px;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* interview 1 */
.interview--1 .interview__title::before {
  background-image: url("../img/icon-interview-01.png");
}

/* interview 2 */
.interview--2 .interview__title::before {
  background-image: url("../img/icon-interview-02.png");
}

/* interview 3 */
.interview--3 .interview__title::before {
  background-image: url("../img/icon-interview-03.png");
}


.interview__title {
  padding-left: 80px;
}

/* 役職＋氏名 */
.interview__person {
  margin: 0 0 24px;
  font-size: 16px;
  text-align: right;
}

/* 本文 */
.interview__body p {
  margin: 0 0 1.5em;
  font-size: 15px;
  line-height: 1.9;
}



/* ==============================
   SPレイアウト
============================== */

@media (max-width: 767px) {

  .interview {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .interview__inner {
    padding: 56px 16px 240px;
    display: block;    /* テキストを1カラムに */
  }

  .interview__content {
    max-width: none;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.85);
  }

  .interview__title {
    font-size: 18px;
    line-height: 1.9;
    padding-left: 32px;
  }

  .interview__title::before {
    top: -2em;
    width: 48px;
  }

.interview__title {
  padding-left: 38px;
}

  .interview__person {
    font-size: 13px;
  }

  .interview__body p {
    font-size: 14px;
  }

  /* 背景画像をSP版に差し替え */
  .interview--1 {
    background-image: url("../img/interview01-sp.jpg");
    background-position: center bottom;
  }

  .interview--2 {
    background-image: url("../img/interview02-sp.jpg");
    background-position: center bottom;
  }

  .interview--3 {
    background-image: url("../img/interview03-sp.jpg");
    background-position: center bottom;
  }
}

/* ==============================
   Profile Section
============================== */

.profile {
  background: #FAFAFA;       /* 周囲のグレー背景 */
  padding: 80px 16px 96px;
}

.profile__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 上段：テキスト + 画像を横並び（PC） */
.profile__top {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

/* プロフィールテキスト側 */
.profile__text {
  flex: 1 1 auto;
}

.profile__role {
  margin: 0 0 8px;
  font-size: 14px;
}

.profile__name {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.profile__kana {
  margin-left: 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  vertical-align: middle;
}

.profile__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

/* 写真側 */
.profile__photo {
  flex: 0 0 260px; 
  margin: 0;
}

.profile__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.profile__note {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #777;
}

@media (max-width: 767px) {
  .profile__note {
    position: relative;
    padding-left: 1.2em;
    text-align: left;
  }

  .profile__note::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  .profile__note {
    text-align: right;
  }

  .profile__note::before {
    content: "※";
    margin-right: 0.2em;
  }
}

/* 下段：オススメポイントの白フレーム */
.profile__recommend {
  margin-top: 56px;
  background: #fff;
  padding: 40px 56px 48px;
}

.profile__recommend-title {
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* 箇条書きの場合 */
.profile__recommend-list {
  margin: 0;
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 1.9;
}

.profile__recommend-list li + li {
  margin-top: 4px;
}

/* 流し込みテキストで使う場合 */
.profile__recommend-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

/* Serif を使いたい箇所だけ */
.serif {
  font-family: "Noto Serif JP", serif;
}

/* ==============================
   SP レイアウト
============================== */

@media (max-width: 767px) {
  .profile {
    padding: 56px 16px 64px;
  }

  .profile__top {
    display: block; 
  }

  .profile__text {
    margin-bottom: 24px;
  }

  .profile__name {
    font-size: 22px;
  }

  .profile__desc {
    font-size: 13px;
  }

  .profile__photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .profile__recommend {
    margin-top: 40px;
    padding: 32px 20px 36px;
  }

  .profile__recommend-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .profile__recommend-list,
  .profile__recommend-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* ==============================
   Product Link Section
============================== */

.product-link {
  padding: 96px 16px 40px;
  text-align: center;
  background: #fff;
}

.product-link__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* タイトル */
.product-link__title {
  margin: 0 0 32px;
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* 画像 */
.product-link__image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ボタン */
.product-link__button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
}

.product-link__button:hover {
  background: #666;
  border-color: #666;
  color: #fff !important;  
}


/* ==============================
   SP
============================== */

@media (max-width: 767px) {
  .product-link {
    padding: 64px 16px 80px;
  }

  .product-link__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .product-link__image img {
    max-width: 320px;
    margin-bottom: 32px;
  }

  .product-link__button {
    padding: 12px 36px;
    font-size: 14px;
  }
}