@charset "UTF-8";
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {}
/* ============================
   Reset & Base start
============================ */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
a {
 text-decoration: none;
 list-style-type: none;
 transition: all 0.5s;
}
a:hover {
 zoom: 1;
 cursor: pointer;
 transition: all 0.3s;
}
html {
 font-size: 1.25vw; /* PC時：1280px幅で約16px相当 */
 font-family: 'Noto Sans JP', sans-serif;
 line-height: 1.8;
 color: #000;
}
img {
 width: 100%;
}
body {
 width: 100vw;
 overflow-x: hidden;
 text-align: left;
 font-size: 1.6rem;
 line-height: 2;
 background: #fff;
}
/* LOADING */
/* Loading背景画面設定　*/
#splash {
 /*fixedで全面に固定*/
 position: fixed;
 width: 100%;
 height: 100%;
 z-index: 9999;
 background: #333;
 text-align: center;
 color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
 position: absolute;
 top: 50%;
 left: 50.5%;
 transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
 width: 260px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
 animation-name: fadeUpAnime;
 animation-duration: 0.5s;
 animation-fill-mode: forwards;
 opacity: 0;
}
@keyframes fadeUpAnime {
 from {
  opacity: 0;
  transform: translateY(0px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}
/* LOADING */
/* スマホ用設定 */
@media (max-width: 767px) {
 html {
  font-size: 16px;
 }
}
/* Adobe Fonts 指定用クラス */
.futura {
 font-family: futura-pt, sans-serif;
}
.shingo {
 font-family: a-otf-ud-shin-go-pr6n, sans-serif;
}
.ryumin {
 font-family: a-otf-ryumin-pr6n, serif;
}
.yu-gothic {
 font-family: yu-gothic-pr6n, sans-serif;
}
/* ============================
   Reset & Base end
============================ */
container {
 width: 100vw;
 overflow: hidden;
}
/*//////////PCサイズ///////////*/
/*//////////PCサイズ///////////*/
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
 /* ============================
   Section: KV start
============================ */
 .section-kv {
  position: relative;
  width: 100%;
  aspect-ratio: 60 / 67;
  background-color: #d6d0cb; /* ← 背景色はsectionに設定 */
  overflow: hidden; /* はみ出しを防ぐ */
 }
 /* 内側のラップ（角丸＋背景画像） */
 .section-kv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('../images/009_img01.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), calc(100% - 10vw) 100%, 10vw 100%, 0 calc(100% - 10vw));
  overflow: hidden; /* 子要素の画像などを角丸内に収める */
 }
 /* 左上ロゴ */
 .logo-left {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  width: 18vw;
 }
 /* 上部中央ロゴ */
 .logo-center {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 25vw;
 }
 /* 左下テキストボックス */
 .kv-box {
  position: absolute;
  top: 55%;
  left: 4vw;
  background: rgba(255, 255, 255, 0.9);
  padding: 3vw;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-weight: 300;
  font-family: a-otf-ryumin-pr6n, serif;
 }
 /* 左上の三角デコレーション */
 .kv-corner-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 3vw;
  height: 3vw;
  background-color: #e0b174;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 2;
 }
 /* リードコピー用（中央やや下の白背景ボックス内） */
 .kv-lead {
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
 }
 /* <hr> の調整（必要に応じて） */
 .kv-names hr {
  margin: 0.25rem 0;
  border: none;
  border-top: 1px solid #000;
 }
 /* 氏名表示部分 */
 .kv-names {
  font-size: 1.2rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
 }
 .kv-names p {
  margin: 0 0 0 0.25rem;
 }
 .kv-names span {
  font-size: 80%;
  padding-left: 1rem;
 }
 /* 最下部キャッチコピー */
 .kv-caption {
  position: absolute;
  bottom: 6vw;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
 }
 /* ============================
   Section: KV end
============================ */
 /* ============================
   Section: Interview start
============================ */
 .section-interview {
  background-color: #d6d0cb;
  padding: 2.5vw 0 0 0;
  color: #000;
 }
 /* タイトル */
 .interview-ttl {
  color: #333;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  margin: 2.5vw 0 2.5vw 0;
  line-height: 1.8;
 }
 /* 各ブロック共通 */
 .interview-block {
  width: 100vw;
  padding: 3vw 0;
  overflow: hidden;
 }
 /* 内側ラップ */
 .interview-in {
  display: grid;
  align-items: center;
  overflow: hidden;
 }
 /* 右寄せ（テキスト→写真） */
 .interview-block.right .interview-in {
  grid-template-columns: 45vw 50vw;
  margin-left: 5vw;
  background-color: #fff;
  clip-path: polygon(8vw 0, 100% 0, 100% 100%, 0 100%, 0 6vw);
 }
 /* 左寄せ（写真→テキスト） */
 .interview-block.left .interview-in {
  grid-template-columns: 50vw 45vw;
  margin-right: 5vw;
  background-color: #fff;
  clip-path: polygon(0 0, calc(100% - 6vw) 0, 100% 6vw, 100% 100%, 0 100%);
 }
 /* 左寄せ（写真→テキスト） */
 .interview-block.left2 .interview-in {
  grid-template-columns: 50vw 45vw;
  margin-right: 5vw;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), calc(100% - 6vw) 100%, 0 100%);
 }
 /* テキスト */
 .interview-text {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .interview-text p {
  width: auto;
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: justify;
  color: #000;
 }
 .interview-in .right p {
  margin: 0 5vw 0 10vw;
 }
 .interview-in .left p {
  margin: 0 10vw 0 5vw;
 }
 /* 名前部分 */
 .name {
  color: #80abaa;
  padding-right: 1rem;
  font-weight: 700;
 }
 /* 写真 */
 .interview-photo {
  position: relative;
 }
 .interview-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
 }
 .interview-photo .fukidashileft {
  position: absolute;
  width: 7vw;
  top: 50%;
  right: -1vw;
  transform: translateY(-50%);
 }
 .interview-photo .fukidashiright {
  position: absolute;
  width: 7vw;
  top: 50%;
  left: -1vw;
  transform: translateY(-50%) rotate(180deg);
 }
 /* 中央寄せ（左右5vwの余白＋全幅ラウンド） */
 .interview-block.center .interview-in {
  grid-template-columns: 45vw 45vw;
  margin: 0 5vw;
  background-color: #fff;
  border-radius: 100vw; /* 左右ともに丸く */
 }
 /* テキストエリア（中央寄せ） */
 .interview-text.center p {
  margin: 0 10vw 0 5vw;
 }
 /* ============================
   Section: Interview end
============================ */
 /* ===============================
   Section: Interview imageblock start
=============================== */
 .interview-imageblock {
  width: 100vw;
  background-color: #8e775b;
  overflow: hidden;
 }
 .interview-imageblock__inner {
  position: relative;
  width: 100%;
  background-color: #d6d0cb;
  padding-top: 2.5vw;
  padding-bottom: 10vw;
  overflow: visible;
 }
 .interview-imageblock__inner.cut-both {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), calc(100% - 10vw) 100%, 10vw 100%, 0 calc(100% - 10vw));
 }
 .interview-imageblock__clip {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
 }
 .interview-imageblock__clip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
 }
 /* ===============================
   Imageblock talk group (overlap)
=============================== */
 .imageblock-talk-group {
  position: relative;
  width: 100%;
  margin-top: -5vw;
  z-index: 2;
 }
 .imageblock-talk-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 92vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
 }
 .imageblock-talk {
  width: 100%;
  padding: 1vw 0;
 }
 .imageblock-talk__inner {
  width: 80vw;
  margin: 0 auto;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), calc(100% - 5vw) 100%, 0 100%);
 }
 .imageblock-talk__text {
  padding: 2.2vw 8vw;
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  text-align: justify;
 }
 .imageblock-talk__name {
  display: inline-block;
  margin-right: 0.6rem;
  font-weight: 700;
  color: #80abaa;
 }
 /* ===============================
   Section: Interview imageblock end
=============================== */
 /* ===============================
   Section: Interview2 start
=============================== */
 .section-interview2 {
  background-color: #8e775b;
  padding: 9vw 0 20vw 0;
 }
 /* title */
 .interview2-ttl {
  color: #e5cd77;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  margin: 0 0 0 0;
  line-height: 1.8;
 }
 /* block */
 .interview2-block {
  width: 100%;
  margin: 10vw 0;
 }
 /* grid */
 .interview2-grid {
  width: 80vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: stretch;
 }
 .interview2-grid.reverse {
  direction: rtl;
 }
 .interview2-grid.reverse > * {
  direction: ltr;
 }
 /* image */
 .interview2-image {
  width: 100%;
  overflow: hidden;
 }
 .interview2-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
 }
 /* box */
 .interview2-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
 }
 /* box image */
 .interview2-box__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
 }
 /* box text */
 .interview2-box__text {}
 .interview2-box__text p {
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #fff;
  text-align: justify;
 }
 /* name */
 .section-interview2 .name {
  display: inline-block;
  margin-right: 0.6rem;
  font-weight: 700;
  color: #e5cd77;
 }
 /* 左上角落とし */
 .kadoleft {
  clip-path: polygon(6vw 0, 100% 0, 100% 100%, 0 100%, 0 6vw);
 }
 /* 右上角落とし */
 .kadoright {
  clip-path: polygon(0 0, calc(100% - 6vw) 0, 100% 6vw, 100% 100%, 0 100%);
 }
 /* ===============================
   Interview2 single block
=============================== */
 .interview2-single {
  width: 100%;
  margin: 10vw 0;
 }
 /* text */
 .interview2-single__text {
  width: 80vw;
  margin: 0 auto 4vw;
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: justify;
 }
 /* image */
 .interview2-single__image {
  width: 60vw;
  margin: 0 auto;
 }
 .interview2-single__image2 {
  width: 80vw;
  margin: 0 auto;
 }
 .interview2-single__image img, .interview2-single__image2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
 }
 /* ===============================
   Section: Interview2 end
=============================== */
 /* ============================
   インタビューを終えて start
============================ */
 .section_c_container {
  width: 100%;
  height: auto;
  padding-top: 15vw; /* 必要な高さを確保 */
  padding-bottom: 5vw;
  background-color: #729a97;
  clip-path: polygon(50% 5%, 100% 0, 100% 100%, 0 100%, 0 0);
  z-index: 10; /* 重なり順を調整 */
  position: relative;
  margin-top: -15vw; /* セクションを重ねる */
 }
 .section_c_block {
  position: relative;
  width: 70vw;
  padding-top: 0;
  margin: 0 auto;
  color: #fff;
 }
 .title_c {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  margin: auto;
  line-height: 100%;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  text-align: center;
  letter-spacing: 0.3rem;
 }
 .image_padding {
  padding: 5vw 0;
 }
 .image_b {
  width: 60vw;
  padding: 0;
  margin: 0 auto;
  position: relative;
 }
 .copy_a {
  font-size: 1rem;
  margin: 0 auto;
  line-height: 1.75;
  letter-spacing: 0.1rem;
  text-align: justify;
  font-weight: 400;
 }
 .archive_container {
  width: 100%;
  background-color: #9C925F;
  display: flex;
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center; /* 垂直方向に中央揃え */
 }
 .archive_link a {
  font-size: 1.15rem;
  width: auto;
  display: inline-block;
  padding-top: calc(2vw);
  padding-bottom: calc(2vw);
  padding-left: calc(10vw);
  padding-right: calc(10vw);
  background-color: #7f7f80;
  transition: ease-in-out 0.2s;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  color: white;
  text-align: left;
  pointer-events: auto;
  line-height: 100%;
  margin: 3vw 0 0 0;
 }
 .archive_link a:hover {
  background-color: #585866;
  opacity: 1;
  transition: ease-in-out 0.2s;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
 }
 /* aタグ共通設定 */
 a {
  text-decoration: none;
  color: #333333;
  list-style-type: none;
  transition: all 0.5s;
 }
 a:hover {
  zoom: 1;
  cursor: pointer;
  transition: all 0.3s;
 }
 /* ============================
   インタビューを終えて end
============================ */
 /* 共通 footer */
 footer {
  background-color: #000;
  color: #E8E8E8;
  position: relative;
 }
 footer a {
  color: #E8E8E8;
 }
 footer a:hover {
  color: #98ECF4;
 }
 /* 下部固定フッター用 */
 .footer {
  width: calc(100vw);
  height: calc(10vw);
  background-color: #9C925F;
  color: #fff;
  position: relative;
 }
 .footer a {
  line-height: calc(1.6rem);
  position: absolute;
  top: calc(50% - (3rem / 2));
  right: 5vw;
  font-size: calc(0.6rem);
  letter-spacing: calc(0.2rem);
  border: 1px solid #fff;
  border-radius: 50px;
  padding-left: calc(1rem);
  padding-right: calc(1rem);
  color: #fff;
 }
 .footer a:hover {
  color: #fff;
 }
 .footer span {
  line-height: calc(1.6rem);
  position: absolute;
  top: calc(50% - (3rem / 2));
  left: 5vw;
  font-size: calc(0.8rem);
  letter-spacing: calc(0.2rem);
  color: #fff;
 }
 /* ============================
   インタビューを終えて end
============================ */
 .PC {}
 .SP {
  display: none;
  max-width: 0%;
  max-height: 0%;
 }
}
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
 /* ============================
   Section: KV start
============================ */
 .section-kv {
  width: 100%;
  height: 95vh;
  background-color: #d6d0cb; /* ← 背景色はsectionに設定 */
 }
 .section-kv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('../images/009_img01.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), calc(100% - 10vw) 100%, 10vw 100%, 0 calc(100% - 10vw));
  overflow: hidden; /* 子要素の画像などを角丸内に収める */
 }
 /* 左上ロゴ */
 .logo-left {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  width: 33vw;
 }
 /* 上部中央ロゴ */
 .logo-center {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
 }
 /* 左下テキストボックス */
 .kv-box {
  position: absolute;
  width: 85vw;
  bottom: 5%;
  left: calc(50% - 42.5vw);
  background: rgba(255, 255, 255, 0.9);
  padding: 3vw;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-weight: 300;
  font-family: a-otf-ryumin-pr6n, serif;
 }
 /* 左上の三角デコレーション */
 .kv-corner-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 7vw;
  height: 7vw;
  background-color: #e0b174;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 2;
 }
 /* リードコピー用（中央やや下の白背景ボックス内） */
 .kv-lead {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-feature-settings: "palt";
 }
 /* <hr> の調整（必要に応じて） */
 .kv-names hr {
  margin: 0.25rem 0;
  border: none;
  border-top: 1px solid #000;
 }
 /* 氏名表示部分 */
 .kv-names {
  font-size: 0.8rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
 }
 .kv-names p {
  margin: 0 0 0 0.25rem;
 }
 .kv-names span {
  font-size: 80%;
  padding-left: 1rem;
 }
 /* ============================
   Section: KV end
============================ */
 /* ============================
   Section: Interview（SP） start
============================ */
 .section-interview {
  background-color: #d6d0cb;
  padding: 10vw 0 0 0;
  color: #000;
 }
 /* タイトル */
 .interview-ttl {
  color: #333;
  width: 100%;
  font-size: 1.4rem; /* 全セクション共通見出しサイズ */
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  margin: 0 0 8vw 0;
  line-height: 1.8;
 }
 /* 各ブロック共通 */
 .interview-block {
  width: 87vw; /* ビルドSP既定幅 */
  margin: 0 auto 10vw auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 3vw; /* SPでは小さめに調整 */
  padding: 7vw;
 }
 /* 内側ラップ */
 .interview-in {
  display: block; /* 横並び→縦積み */
  width: 100%;
 }
 .left .interview-in, .center .interview-in {
  display: flex;
  flex-direction: column-reverse; /* HTML順を逆転（画像が先） */
  width: 100%;
 }
 /* 画像 */
.interview-photo {
padding-top:1rem;
 }
 .interview-photo img {

 }
 .interview-photo .fukidashileft {

 }
 .interview-photo .fukidashiright {

 }
 /* ===============================
   Interview left2 SP order fix
=============================== */

.interview-block.left2 .interview-in{
  display: flex;
  flex-direction: column;
}

.interview-block.left2 .interview-text{
  order: 1;
}

.interview-block.left2 .interview-photo{
  order: 2;
}
 /* テキスト */
 .interview-text {
  width: 100%;
 }
 .interview-text p {
  width: 100%;
  font-size: 1rem; /* 全セクション共通本文サイズ */
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: justify;
  color: #000;
  margin: 0;
 }
 /* 名前部分 */
 .name {
  color: #80abaa; /* PCと同色を継承 */
  padding-right: 1rem;
  font-weight: 700;
 }
 /* 背景波形ブロック */
 .interview-imageblock {
  background-color: #3b5a4a;
  width: 100vw;
  overflow: hidden;
 }
 .interview-imageblock__inner {
  background-color: #7db2a5;
  padding-bottom: 15vw;
  width: 100%;
  border-bottom-left-radius: 5vw; /* SP向けに浅め */
  border-bottom-right-radius: 5vw;
  overflow: hidden;
 }
 .interview-imageblock__clip {
  width: 100%;
  overflow: hidden;
  clip-path: url(#waveClip);
 }
 .interview-imageblock__clip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
 }
 /* ============================
   Section: Interview（SP） end
============================ */
/* ===============================
   Section: Interview imageblock start（SP）
=============================== */

.interview-imageblock{
  width: 100vw;
  background-color: #8e775b;
  overflow: hidden;
}

/* image area */
.interview-imageblock__inner{
  position: relative;
  width: 100%;
  background-color: #d6d0cb;
  padding-top: 6vw;
  padding-bottom: 14vw;
  overflow: hidden;
}

/* SPは下左右角落としを弱める */
.interview-imageblock__inner.cut-both{
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 8vw),
    calc(100% - 8vw) 100%,
    8vw 100%,
    0 calc(100% - 8vw)
  );
}

/* image */
.interview-imageblock__clip{
  width: 100%;
  overflow: hidden;
}

.interview-imageblock__clip img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===============================
   Imageblock talk group（SP）
=============================== */

.imageblock-talk-group{
  position: relative;
  width: 100%;
  margin-top: -8vw; /* SPは重なりを少し強める */
  z-index: 2;
}

.imageblock-talk{
  width: 100%;
  padding: 2vw 0;
}

/* talk box */
.imageblock-talk__inner{
  width: 87vw;
  margin: 0 auto;
  background-color: #ffffff;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 6vw),
    calc(100% - 6vw) 100%,
    0 100%
  );
}

/* text */
.imageblock-talk__text{
  padding: 4vw 5vw;
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  text-align: justify;
}

/* name */
.imageblock-talk__name{
  display: inline-block;
  margin-right: 0.6rem;
  font-weight: 700;
  color: #80abaa;
}

/* ===============================
   Section: Interview imageblock end（SP）
=============================== */

/* ===============================
   Section: Interview2 start（SP）
=============================== */

.section-interview2{
  background-color: #8e775b;
  padding: 8vw 0 18vw 0;
}

/* title */
.interview2-ttl{
  color: #e5cd77;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  margin: 0 0 6vw 0;
  line-height: 1.8;
}

/* block */
.interview2-block{
  width: 100%;
  margin: 10vw 0 20vw 0;
}

/* grid（SPは縦積み） */
.interview2-grid{
  width: 87vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
/* SP：文章 → 画像 */
.interview2-grid .interview2-box{
  order: 1;
}

.interview2-grid .interview2-image{
  order: 2;
}
/* reverse指定はSPでは無効化 */
.interview2-grid.reverse{
  direction: ltr;
}

/* image */
.interview2-image{
  width: 100%;
  overflow: hidden;
}

.interview2-image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 角落としはPC踏襲（サイズのみ自然に） */
.kadoleft{
  clip-path: polygon(
    8vw 0,
    100% 0,
    100% 100%,
    0 100%,
    0 8vw
  );
}

.kadoright{
  clip-path: polygon(
    0 0,
    calc(100% - 8vw) 0,
    100% 8vw,
    100% 100%,
    0 100%
  );
}

/* box */
.interview2-box{
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.interview2-box__text{
  order: 1;
}

.interview2-box__image{
  order: 2;
}
/* box image */
.interview2-box__image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* box text */
.interview2-box__text p{
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: justify;
}

/* name */
.section-interview2 .name{
  display: inline-block;
  margin-right: 0.6rem;
  font-weight: 700;
  color: #e5cd77;
}

/* ===============================
   Interview2 single block（SP）
=============================== */

.interview2-single{
  width: 100%;
  margin: 12vw 0;
}

/* text */
.interview2-single__text{
  width: 87vw;
  margin: 0 auto 6vw;
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: justify;
}

/* image */
.interview2-single__image,
.interview2-single__image2{
  width: 87vw;
  margin: 0 auto;
}

.interview2-single__image img,
.interview2-single__image2 img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===============================
   Section: Interview2 end（SP）
=============================== */

 /* ============================
   インタビューを終えて end
============================ */
 .section_c_container {
  width: 100vw;
  height: auto;
  padding-top: 15vw;
  padding-bottom: 5vw;
  background-color: #9C925F;
  clip-path: polygon(50% 5%, 100% 0, 100% 100%, 0 100%, 0 0);
  z-index: 10;
  position: relative;
  margin-top: -18vw;
 }
 .section_c_block {
  position: relative;
  width: 80vw;
  padding-top: calc(0);
  margin: 0 auto;
  color: #fff;
 }
 .title_c {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 15vw;
  margin: auto;
  line-height: 100%;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  text-align: center;
 }
 .image_padding {
  padding: 8vw 0;
 }
 .image_b {
  width: 80vw;
  padding: 0 0 0 0;
  margin: 0 auto;
  position: relative;
 }
 .copy_a {
  font-size: 1rem;
  margin: 0 auto;
  line-height: 1.75;
  text-align: justify;
  font-family: yu-gothic-pr6n, sans-serif;
  padding-bottom: 3vw;
 }
 .archive_container {
  width: 100%;
  background-color: #9C925F;
  display: flex;
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center; /* 垂直方向に中央揃え */
 }
 .archive_link a {
  font-size: 1rem;
  width: auto;
  display: inline-block;
  padding-top: calc(2vw);
  padding-bottom: calc(2vw);
  padding-left: calc(10vw);
  padding-right: calc(10vw);
  background-color: #7f7f80;
  transition: ease-in-out 0.2s;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  color: white;
  text-align: left;
  pointer-events: auto;
  line-height: 100%;
  margin: 0 0 0 0;
 }
 .archive_link a:hover {
  background-color: #5F5F6E;
  opacity: 1;
  transition: ease-in-out 0.2s;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
 }
 .main {
  position: relative;
  width: 100%;
  min-height: calc(100vh);
 }
 .archive_link {
  display: inline-block;
  font-size: 1rem;
  color: #333;
  text-decoration: underline;
 }
 /*footer*/
 footer {}
 .footer {
  width: calc(100vw);
  height: calc(30vw);
  background-color: #9C925F;
  color: #FFFFFF;
  text-align: center;
 }
 .footer a {
  width: auto;
  line-height: calc(1.5rem);
  font-size: 0.5rem;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding-left: calc(1.2rem);
  padding-right: calc(1.2rem);
  color: #FFFFFF;
 }
 .footer a:hover {
  color: #FFFFFF;
 }
 .footer span {
  text-align: center;
  width: 85vw;
  line-height: calc(160%);
  padding: 5vw 0 0 0;
  margin: auto;
  display: block;
  font-size: calc(0.8rem);
  color: #FFFFFF;
 }
 /* ============================
   インタビューを終えて end
============================ */
 .PC {
  display: none;
  max-width: 0%;
  max-height: 0%;
 }
 .SP {}
}