@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 {
  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 {
    width: 100%;
    aspect-ratio: 16 / 18;
    background-image: url('../images/007_img01.webp'); /* ← 修正済み */
    background-size: cover;
    background-position: center;
    position: relative;
  }
  /* 左上ロゴ */
  .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: volume6 start
============================ */
  /* セクション全体 */
  .section-vol6 {
    background: linear-gradient(to bottom, #626460, #d4c5af);
    margin: 0;
    padding: 0 0 5vw 0;
  }
  /* 中央白背景ボックス（左寄せ） */
  .vol6-inner {
    width: 95vw;
    margin: 0;
    padding: 0 0;
  }
  /* 2カラムレイアウト */
  .vol6-grid {
    display: grid;
    grid-template-columns: 50vw 1fr;
    align-items: center;
  }
  /* 左画像 */
  .vol6-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* 右テキスト */
  .vol6-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
  }
  .vol6-inner .vol6-text {
    padding: 0 3rem;
  }
  /* 名前スタイル */
  .vol6-text p {
    font-size: 1rem;
    line-height: 1.9;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  .vol6-name {
    color: #71acaa;
    padding-right: 1rem;
    font-weight: 700;
  }
  /* 右側だけ6vwの角丸 */
  .roundright {
    border-top-right-radius: 6vw;
    border-bottom-right-radius: 6vw;
  }
  /* 左側だけ6vwの角丸 */
  .roundleft {
    border-top-left-radius: 6vw;
    border-bottom-left-radius: 6vw;
  }
  /* ============================
   Section: volume6 end
============================ */
  /* ============================
   Section: volume6-2 start
============================ */
  .section-vol6-beige {
    background-color: #d4c5af;
    margin: 0;
    padding: 0;
  }
  .section-vol6-beige .vol6-inner {
    width: 95vw;
    margin: 0;
    padding: 5vw 0;
  }
  .bg-fff {
    background-color: #ffffff;
  }
  /* 背景色：f5f5f3 */
  .bg-f5f5f3 {
    background-color: #f5f5f3;
  }
  /* 背景色：f0f1f0 */
  .bg-f0f1f0 {
    background-color: #f0f1f0;
  }
  /* 背景色：e9ecec */
  .bg-e9ecec {
    background-color: #e9ecec;
  }
  /* 右寄せ用の .vol6-inner */
  .vol6-inner.right {
    margin-left: 5vw;
  }
  /* grid反転（画像を右へ） */
  .vol6-grid.reverse {
    display: grid;
    grid-template-columns: 1fr 50vw;
  }
  /* ============================
   Section: volume6-2 end
============================ */
  /* ============================
   Section: volume6-2 start
============================ */
  .photo-clip {
    width: 100vw;
    height: 43vw;
    position: relative;
    background: linear-gradient(to bottom, #d4c5af 49.9%, #327487 50%);
  }
  .photo-clip-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-clip-inner img {
    width: auto;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    clip-path: polygon(100% 0, 100% 100%, 50% 95%, 0 100%, 0 10%);
  }
  /* ============================
   Section: volume6-2 end
============================ */
  /* ============================
   Section: volume6-3 start
============================ */
  .vol6-3 {
    width: 100vw;
    height: 40vw;
    background: #327487;
    position: relative;
  }
  .vol6-3-text {
    width: 75vw;
    margin: 0 auto;
    padding-top: 5vw;
    color: #fff;
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
  }
  .vol6-3-text p {
    margin-bottom: 2rem;
  }
  .vol6-3-text .vol6-name {
    color: #71acaa;
  }
  .vol6-3-clip {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100vw;
    height: 10vw;
    background: #202d43;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
  }
  /* ============================
   Section: volume6-3 end
============================ */
  /* ============================
   Section: volume6-4-title start
============================ */
  .vol6-title {
    background-color: #202d43;
    width: 100vw;
    padding: 5vw 0;
    text-align: center;
  }
  .vol6-title h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #eacf8c;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .sp-only {
    display: none;
  }
  /* ============================
   Section: volume6-4-title end
============================ */
  /* ============================
   Section: volume6-4 start
============================ */
  .section-vol6-4 {
    background-color: #202d43;
  }
  .vol6-4-inner {
    width: 75vw;
    margin: 0 auto;
    padding-bottom: 10vw;
  }
  /* .vol6-text は既存使用。色だけ上書き */
  .vol6-4-inner .vol6-text {
    color: #fff;
    padding: 2rem 0;
  }
  /* 画像調整は共通クラスで問題なし */
  .vol6-img picture, .vol6-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ============================
   Section: volume6-5 start
============================ */
  /* セクション全体 */
  .section-vol6-5 {
    background-color: #d5c5af;
    padding: 10vw 0 20vw 0;
    position: relative;
  }
  /* 上部装飾（clip） */
  .section-vol6-5::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100vw;
    height: 10vw;
    background-color: #202d43;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: 0;
  }
  /* inner構造（画像とテキストのabsolute配置） */
  .vol6-5-inner {
    width: 75vw;
    margin: 0 auto;
    padding: 5vw 0;
    position: relative;
    min-height: 43vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* inner：flex化し、上下中央揃え可能に */
  .vol6-5-inner {
    width: 75vw;
    margin: 0 auto;
    padding: 5vw 0;
    position: relative;
    flex-wrap: nowrap;
  }
  /* テキストボックス共通 */
  .vol6-text.vol6-5txt {
    width: 43vw;
    padding: 4vw;
    background-color: #fff;
    opacity: 0.9;
  }
  /* 画像 */
  .vol6-image.vol6-5img {
    width: 43vw;
    z-index: 1;
    flex-shrink: 0;
  }
  /* レイアウト制御：位置クラス */
  .posileft {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .posiright {
    position: absolute;
    right: 0;
    z-index: 1;
  }
  /* ============================
   Section: volume6-5 end
============================ */
  /* ============================
   インタビューを終えて start
============================ */
  .section_c_container {
    width: 100%;
    height: auto;
    padding-top: 15vw; /* 必要な高さを確保 */
    padding-bottom: 5vw;
    background-color: #34303a;
    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: #34303a;
    display: flex;
    justify-content: center; /* 水平方向に中央揃え */
    align-items: center; /* 垂直方向に中央揃え */
  }
  .archive_link a {
    font-size: 1.2rem;
    width: auto;
    display: inline-block;
    padding-top: calc(2vw);
    padding-bottom: calc(2vw);
    padding-left: calc(10vw);
    padding-right: calc(10vw);
    background-color: rgba(35, 104, 146, 1.00);
    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: rgba(35, 104, 146, 1.00);
    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: #34303a;
    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: 100vh;
    background-image: url('../images/007_img01.webp'); /* ← 修正済み */
    background-size: cover;
    background-position: center;
    position: relative;
  }
  /* 左上ロゴ */
  .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;
    top: 55%;
    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: 1.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;
  }
  /* 最下部キャッチコピー */
  .kv-caption {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    width: 100%;
    font-size: 1.3rem;
    line-height: 140%;
    letter-spacing: 0.1rem;
    text-align: center;
    font-family: a-otf-ryumin-pr6n, serif;
  }
  /* ============================
   Section: KV end
============================ */
  /* ============================
   Section: volume6 start
============================ */
  /* セクション全体 */
  .section-vol6 {
    background: linear-gradient(to bottom, #626460, #d4c5af);
    margin: 0;
    padding: 0 0 10vw 0;
  }
  /* 中央白背景ボックス（左寄せ） */
  .vol6-inner {
    width: 90vw;
    margin: auto;
    padding: 0 0 10vw 0;
  }
  /* 2カラムレイアウト */
  .vol6-grid {
    display: grid;
    align-items: center;
  }
  /* 左画像 */
  .vol6-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* 右テキスト */
  .vol6-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
  }
  .vol6-inner .vol6-text {
    padding: 1.5rem 2rem 2rem;
  }
  /* 名前スタイル */
  .vol6-text p {
    font-size: 1rem;
    line-height: 1.9;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
  }
  .vol6-name {
    color: #71acaa;
    padding-right: 1rem;
    font-weight: 700;
  }
  /* 右側だけ6vwの角丸 */
  .roundright {
    border-bottom-left-radius: 6vw;
    border-bottom-right-radius: 6vw;
  }
  /* 左側だけ6vwの角丸 */
  .roundleft {
    border-bottom-left-radius: 6vw;
    border-bottom-right-radius: 6vw;
  }
  /* ============================
   Section: volume6 end
============================ */
  /* ============================
   Section: volume6-2 start
============================ */
  .section-vol6-beige {
    background-color: #d4c5af;
    margin: 0;
    padding: 0;
  }
  .bg-fff {
    background-color: #ffffff;
  }
  /* 背景色：f5f5f3 */
  .bg-f5f5f3 {
    background-color: #f5f5f3;
  }
  /* 背景色：f0f1f0 */
  .bg-f0f1f0 {
    background-color: #f0f1f0;
  }
  /* 背景色：e9ecec */
  .bg-e9ecec {
    background-color: #e9ecec;
  }
  /* 右寄せ用の .vol6-inner */
  .vol6-inner.right {
    margin-left: 5vw;
  }
  /* grid反転（画像を右へ） */
  .vol6-grid.reverse {
  display: flex;
  flex-direction: column-reverse; /* 上下を逆に */
  align-items: center;
  }
  /* ============================
   Section: volume6-2 end
============================ */
  /* ============================
   Section: volume6-2 start
============================ */
  .photo-clip {
    width: 100vw;
    height: 43vw;
    position: relative;
    background: linear-gradient(to bottom, #d4c5af 49.9%, #327487 50%);
  }
  .photo-clip-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-clip-inner img {
    width: auto;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    clip-path: polygon(100% 0, 100% 100%, 50% 95%, 0 100%, 0 10%);
  }
  /* ============================
   Section: volume6-2 end
============================ */
  /* ============================
   Section: volume6-3 start
============================ */
  .vol6-3 {
    width: 100vw;
    background: #327487;
    position: relative;
	padding-bottom: 10vw;
  }
  .vol6-3-text {
    width: 75vw;
    margin: 0 auto;
    padding-top: 5vw;
    color: #fff;
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
  }
  .vol6-3-text p {
    margin-bottom: 2rem;
  }
  .vol6-3-text .vol6-name {
    color: #71acaa;
  }
  .vol6-3-clip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 10vw;
    background: #202d43;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
  }
  /* ============================
   Section: volume6-3 end
============================ */
  /* ============================
   Section: volume6-4-title start
============================ */
  .vol6-title {
    background-color: #202d43;
    width: 100vw;
    padding: 10vw 0;
    text-align: center;
  }
  .vol6-title h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #eacf8c;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  /* ============================
   Section: volume6-4-title end
============================ */
  /* ============================
   Section: volume6-4 start
============================ */
  .section-vol6-4 {
    background-color: #202d43;
  }
  .vol6-4-inner {
    width: 85vw;
    margin: 0 auto;
    padding-bottom: 10vw;
  }
  /* .vol6-text は既存使用。色だけ上書き */
  .vol6-4-inner .vol6-text {
    color: #fff;
    padding: 2rem 0;
  }
  /* 画像調整は共通クラスで問題なし */
  .vol6-img picture, .vol6-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ============================
   Section: volume6-5 start
============================ */
  /* セクション全体 */
  .section-vol6-5 {
    background-color: #d5c5af;
    padding: 20vw 0 20vw 0;
    position: relative;
  }
  /* 上部装飾（clip） */
  .section-vol6-5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 10vw;
    background-color: #202d43;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: 0;
  }
  /* inner構造（画像とテキストのabsolute配置） */
  .vol6-5-inner {
    width: 90vw;
    margin: 0 auto;
    padding: 5vw 0;
  }

  /* テキストボックス共通 */
  .vol6-text.vol6-5txt {
    background-color: #fff;
    opacity: 0.6;
	padding:2rem;
  }
  /* 画像 */
  .vol6-image.vol6-5img {
  }
  /* レイアウト制御：位置クラス */
  .posileft {
  }
  .posiright {
  }
  /* ============================
   Section: volume6-5 end
============================ */
  /* ============================
   インタビューを終えて end
============================ */
  .section_c_container {
    width: 100vw;
    height: auto;
    padding-top: 15vw;
    padding-bottom: 5vw;
    background-color: #34303a;
    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: #34303a;
  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: rgba(35, 104, 146, 1.00);
  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: rgba(35, 104, 146, 1.00);
  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: #34303a;
    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 {}
}