@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: #7BBBAC; /* ← 背景色はsectionに設定 */
    overflow: hidden; /* はみ出しを防ぐ */
  }
  /* 内側のラップ（角丸＋背景画像） */
  .section-kv__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/008_img01.webp');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 10vw; /* 下辺の角丸 */
    border-bottom-right-radius: 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: #df7d6e;
    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: #7BBBAC;
    padding: 5vw 0 0 0;
    color: #000;
  }
  /* タイトル */
  .interview-ttl {
    color: #fff;
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    text-align: center;
    font-family: a-otf-ryumin-pr6n, serif;
    margin: 2.5vw 0 0 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;
    border-top-left-radius: 100vw; /* ← 半円を作るように調整 */
    border-bottom-left-radius: 100vw;
  }
  /* 左寄せ（写真→テキスト） */
  .interview-block.left .interview-in {
    grid-template-columns: 50vw 45vw;
    margin-right: 5vw;
    background-color: #fff;
    border-top-right-radius: 100vw; /* ← 半円を作るように調整 */
    border-bottom-right-radius: 100vw;
  }
  /* テキスト */
  .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 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
  }
  /* 中央寄せ（左右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;
  }
  /*imageブロック*/
  .interview-imageblock {
    background-color: #3D634F;
    width: 100vw;
    overflow: hidden;
  }
  .interview-imageblock__inner {
	background-color: #7BBBAC;
	padding-top: 2.5vw;
	padding-bottom: 12vw;
	width: 100%;
	border-bottom-left-radius: 10vw;
	border-bottom-right-radius: 10vw;
	overflow: hidden;
  }
  /* SVG定義を参照して適用 */
  .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 end
============================ */
  /* ============================
   Section: Interview vol.2 float layout start
============================ */
  .section-interview2 {
    background-color: #3D634F;
    padding: 5vw 0 15vw;
    color: #fff;
  }
  /* タイトル */
  .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 5vw 0;
    line-height: 1.8;
  }
  /* 1つ目ブロック */
  .interview2-block {
    width: 75vw;
    margin: 0 auto;
    padding-bottom: 8vw;
    text-align: left;
  }
  .interview2-text p {
    font-size: 1rem;
    line-height: 1.9;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    text-align: justify;
    color: #fff;
  }
  .interview2-text .name {
    color: #7ebda3;
    padding-right: 1rem;
    font-weight: 700;
  }
  /* 画像 */
  .interview2-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 3vw;
  }
  /* 2つ目ブロック */
  .interview2-container {
    padding-bottom: 8vw;
  }
  /* inner構造（画像とテキストのabsolute配置） */
  .interview2-inner {
    width: 75vw;
    margin: 0 auto;
    position: relative;
    min-height: 29vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* テキストボックス共通 */
  .interview2-textbox {
    width: 43vw;
    padding: 4vw;
    background-color: #fff;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    border-radius: 3vw;
  }
  /* テキスト内文章（Section: Interview 踏襲） */
  .interview2-textbox p {
    font-size: 1rem;
    line-height: 1.9;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    text-align: justify;
    color: #000; /* Section: Interviewと同じ黒文字 */
  }
  /* 名前部分（Section: Interview 踏襲） */
  .interview2-textbox .name {
    color: #7ebda3; /* セクション指定済みカラー */
    padding-right: 1rem;
    font-weight: 700;
  }
  /* 画像 */
  .interview2-image {
    width: 43vw;
    flex-shrink: 0;
    position: relative;
  }
  .interview2-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  /* レイアウト制御：位置クラス */
  .posi-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .posi-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .z-line2 {
    z-index: 2;
  }
  /* ============================
   Section: Interview vol.2 float layout end
============================ */
  /* ============================
   インタビューを終えて start
============================ */
  .section_c_container {
	width: 100%;
	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: -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: #7db2a5; /* ← 背景色はsectionに設定 */
  }
  .section-kv__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/008_img01.webp');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 10vw; /* 下辺の角丸 */
    border-bottom-right-radius: 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: #df7d6e;
    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: #7db2a5;
    padding: 10vw 0 0 0;
    color: #000;
  }
  /* タイトル */
  .interview-ttl {
    color: #fff;
    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 {
    width: 100%;
    margin: 5vw 0 0 0;
  }
  .interview-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1vw; /* 角丸要素は残す */
  }
  /* テキスト */
  .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 vol.2（SP） start
============================ */

.section-interview2 {
	background-color: #3D634F;
	padding: 10vw 0 12vw 0;
	color: #fff;
}

/* タイトル */
.interview2-ttl {
  color: #e5cd77;
  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;
}

/* 1つ目ブロック */
.interview2-block {
  width: 87vw; /* SP標準幅 */
  margin: 0 auto 10vw auto;
  text-align: left;
}

/* 本文 */
.interview2-text p {
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: justify;
  color: #fff;
}

/* 名前 */
.interview2-text .name {
  color: #7ebda3;
  padding-right: 1rem;
  font-weight: 700;
}

/* 画像 */
.interview2-photo {
  width: 100%;
  margin: 5vw 0 0 0;
}

.interview2-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2vw;
}

/* 2つ目ブロック（inner構造ベース） */
.interview2-container {
  width: 87vw;
  margin: 0 auto 20vw auto;
}

/* inner構造（SPでは縦積み化） */
.interview2-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column-reverse; /* HTMLそのままで画像→テキスト順 */
  align-items: center;
  justify-content: center;
  min-height: auto;
  gap: 0vw;
}

/* テキストボックス */
.interview2-textbox {
  width: 100%;
  padding: 6vw;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2vw 2vw 0 0 ;
  z-index: 2;
}

/* テキストボックス内文章 */
.interview2-textbox p {
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: justify;
  color: #000;
}

/* 名前部分 */
.interview2-textbox .name {
  color: #7ebda3;
  padding-right: 1rem;
  font-weight: 700;
}

/* 画像 */
.interview2-image {
  width: 100%;
  z-index: 1;
}

.interview2-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0 0 2vw 2vw;
}

/* レイアウト制御：position指定をSPでは解除 */
.posi-left,
.posi-right {
  position: static;
  transform: none;
}

/* z-indexクラス維持 */
.z-line2 {
  z-index: 2;
}

/* ============================
   Section: Interview vol.2（SP） end
============================ */

  /* ============================
   インタビューを終えて 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 {}
}