@charset "utf-8";

/*______________________________________スマホ用CSS_______________________________________________*/
@media print, screen and (max-width: 1200px) {
  /*ハンバーガーメニュー*/
  nav.NavMenu {
    position: fixed; /*表示位置を固定*/
    z-index: 2000; /*重ね順を変更*/
    top: 0; /*表示位置を指定*/
    right: 0; /*表示位置を指定*/
    background-color: #fff;
    color: #000;
    text-align: left;
    width: 100%; /*全幅表示*/
    height: 100vh;
    transform: translateY(-100%); /*ナビを上に隠す*/
    transition: all 0.6s; /*アニメーションの時間を指定*/
    opacity: 0;
  }
  nav.NavMenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }
  nav.NavMenu::after {
    content: "";
    position: absolute;
    top: 2.415vw;
    left: 0;
    width: 100%;
    height: 0.242vw;
    background: #000;
  }

  .NavMenu_inner {
    position: relative;
    width: 84%;
    margin: 15% 8%;
  }
  nav.NavMenu ul {
    width: 80%;
    margin: 50px 10% 0;
  }

  nav.NavMenu ul li {
    font-size: 1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
  }

  nav.NavMenu ul li a {
    display: block; /*クリックできる領域を広げる*/
    color: #000;
    padding: 0.6em 0;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 7.2vw;
    font-weight: 700;
  }

  nav.NavMenu ul li a:hover {
    opacity: 0.7;
  }

  nav.NavMenu ul li:last-child a:hover {
    background-color: #fff;
    opacity: 1;
    color: #000;
  }

  nav.NavMenu.active {
    transform: translateY(0%); /*ナビを表示する*/
    opacity: 1;
  }

  #nav_logo {
    position: relative;
    transform: none;
    width: 43%;
  }

  .sns_hm_midashi {
    width: 100%;
    text-align: center;
    font-size: 6.28vw;
    font-weight: 700;
    margin: 14% 0 8% 0;
  }

  .sns_hm {
    display: none;
    /* display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 30%;
    margin: 0 auto; */
  }
  .sns_hm img {
    height: 8.454vw;
  }
  .hm_content {
    display: block;
    background-color: #000;
    color: #fff;
    width: 86%;
    height: 16.908vw;
    line-height: 16.908vw;
    margin: 14% auto 0;
    text-align: center;
    border-radius: 8.454vw;
    font-size: 8.213vw;
    font-weight: 700;
  }

  .Toggle {
    display: block;
    position: fixed; /* bodyに対しての絶対位置指定 */
    left: auto;
    right: 0.6%;
    transform: none;
    top: 3vw;
    width: 10vw;
    height: 9.5vw;
    cursor: pointer;
    z-index: 9999;
  }

  .Toggle span {
    display: block;
    position: absolute;
    width: 6vw;
    border-bottom: solid 3px #000;
    -webkit-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    transition: 0.35s ease-in-out; /*変化の速度を指定*/
  }

  header.scroll .Toggle span {
    border-bottom: solid 1px #000;
  }

  .Toggle span:nth-child(1) {
    top: 1.932vw;
    left: 1.628vw;
  }

  .Toggle span:nth-child(2) {
    top: 3.623vw;
    left: 1.628vw;
  }

  .Toggle span:nth-child(3) {
    top: 5.314vw;
    left: 1.628vw;
  }

  .Toggle span:nth-child(4) {
    top: 7.005vw;
    left: 1.628vw;
  }
  .Toggle.active span:nth-child(1) {
    top: 4.186vw;
    left: 1.395vw;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: #000;
  }

  .Toggle.active span:nth-child(2) {
    opacity: 0 !important;
    border-color: #fff;
    left: 1.395vw;
  }
  .Toggle.active span:nth-child(3) {
    opacity: 0 !important;
    border-color: #fff;
    left: 1.395vw;
  }
  .Toggle.active span:nth-child(4) {
    top: 4.186vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: #000;
    left: 1.395vw;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 2em;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img {
    vertical-align: top;
  }
  a img {
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
  }
  a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
  }
  .bold {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }

  .pc_content {
    display: none !important;
  }
  .sp_content {
    display: block !important;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    font-size: 62.5%;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

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

  /* FV 全体 */
  .fuji-layout {
    --fuji-sidebar-width: clamp(25%, 23vw, 300px);
    position: relative;
    display: block;
    grid-template-columns: none;
    grid-template-rows: none;
    margin: 2% 0 0 0;
    border-top: 1px solid #000;
  }
  .fuji-layout::before {
    content: "";
    position: absolute;
    top: -2%;
    left: 2%;
    width: 0.242vw;
    height: 29%;
    background: #000;
  }
  .lower_top_spacer {
    width: 100%;
    height: 10.87vw;
  }
  .fuji-sidebar {
    border-right: none;
    background: #fff;
  }
  .fuji-main {
    background: #fff;
  }

  .fuji-sidebar,
  .fuji-main {
    min-height: 0;
  }

  /* 左カラム */
  .fuji-sidebar {
    display: block;
    flex-direction: row;
    justify-content: normal;
    border-left: none;
    margin: 0;
  }

  .fuji-sidebar__inner {
    display: block;
    flex: 1;
    flex-direction: normal;
    padding: 1.949vw 2.564vw 1.026vw;
  }

  .fuji-logo {
    max-width: 96%;
    margin: 50px 5%;
  }

  .fuji-copy {
    display: none;
  }

  .fuji-copy_sp {
    width: 96%;
    padding: 8% 0;
    margin: 0 2%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }

  .fuji-copy__jp {
    margin: 0 10% 21px;
    font-family: "Noto Serif JP", serif;
    font-size: 8.213vw;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .fuji-copy__en {
    max-width: none;
    margin: 0 10%;
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 1.8;
    color: #000;
  }

  .fuji-sidebar__footer {
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
    border-bottom: 1px solid #000;
  }

  .fuji-sidebar__footer_inner {
    margin: 0 2%;
    width: 96%;
    padding: 5% 7%;
    height: 100%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .fuji-sidebar__footer h2 {
    margin: 0 0 4.831vw;
    font-size: 6.039vw;
    line-height: 1.2;
    font-weight: 700;
  }

  .fuji-sidebar__footer p {
    margin: 0;
    font-size: 3.865vw;
    font-weight: 300;
    color: #000;
    line-height: 2;
  }

  /* 右カラム */
  .fuji-main {
    display: block;
    grid-template-rows: 60px minmax(0, 1fr) auto;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* ヘッダー */
  .fuji-header {
    display: none;
  }

  /* PC画像3 */
  .fuji-gallery {
    display: none;
  }
  /* SP画像3 */
  .fuji-gallery_sp {
    width: 100%;
  }

  /* TOPICS */
  .fuji-topics {
    display: block;
    grid-template-columns: initial;
    align-items: initial;
    gap: initial;
    padding: 9vw 8vw 12vw;
    min-height: auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 2%;
  }

  .fuji-topics__head {
    display: block;
    align-items: initial;
    margin-bottom: 8vw;
  }

  .fuji-topics__head h2 {
    flex: initial;
    font-size: 12.077vw;
    line-height: 0.9;
    margin: 0 0 6vw;
  }

  .fuji-all-btn {
    flex: initial;
    text-align: right;
    margin-top: 8vw;
  }

  .fuji-topics__list {
    display: block;
    gap: initial;
  }

  .fuji-topics-all {
    flex: initial;
  }

  .fuji-fv-banner {
    grid-column: auto;
    border-top: 1px solid #000;
  }

  .fuji-topic {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12vw;
  }

  .fuji-topic__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31vw;
    height: 7.5vw;
    border: 1px solid #707070;
    font-size: 4.8vw;
    line-height: 1;
    font-weight: 400;
    color: #000;
    flex: 0 0 auto;
    margin-bottom: 4vw;
  }

  .fuji-topic__date {
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 5vw;
    line-height: 1;
    margin-left: auto;
    margin-bottom: 0;
  }

  .fuji-topic__title {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    flex: 0 0 100%;
    width: 100%;
    font-weight: 400;
    font-size: 4.5vw;
    line-height: 1.5;
  }

  .fuji-topic__title a:hover {
    opacity: 1;
  }
  .fuji-topics-all {
    text-align: right;
  }
  .fuji-topics-all a,
  .fuji-all-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44vw;
    height: 11vw;
    padding: 0 6vw;
    border-radius: 2415.217vw;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 5vw;
    line-height: 1;
    font-weight: 500;
  }

  /*コンセプト*/
  #concept {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .concept-header {
    display: flex;
    width: 100%;
    height: 3.623vw;
    line-height: 8.696vw;
    font-size: 3.865vw;
    border-bottom: 1px solid #000;
  }
  .concept-header .header01 {
    display: none;
  }
  .concept-header .header02 {
    display: none;
  }
  .concept-section__inner {
    display: block;
    width: 100%;
    min-height: auto;
  }

  /*工場動画*/
  .full_version {
    display: flex;
    height: 50px;
    line-height: 50px;
    width: 100%;
    border-bottom: 1px solid #000;
    font-weight: 500;
    font-size: 1.2vw;
    list-style: none;
  }
  .full_version li:first-child {
    width: 0;
    border-right: none;
  }
  .full_version li:last-child {
    position: relative;
    padding-left: 0;
    width: 100%;
  }
  .full_version li:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* 左カラム */
  .concept-side {
    width: 100%;
    border-right: none;
    display: block;
    justify-content: right;
    overflow: hidden;
  }

  .concept-side h2 {
    margin: 0;
    font-size: 19.1vw;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin: 6% 5% 0 5%;
    white-space: nowrap;
  }

  /* 右側エリア全体 */
  .concept-main {
    width: 100%;
    display: block;
  }

  /* 中央本文 */
  .concept-main__jp {
    width: 100%;
    padding: 8% 7% 0 7%;
    white-space: wrap;
  }

  .concept-main__jp p {
    margin: 5% 0 0 0;
    font-size: 5.072vw;
    line-height: 2.3;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  /* 右サブカラム */
  .concept-main__sub {
    position: relative;
    width: 100%;
    padding: 6% 8% 6% 4%;
    display: block;
    flex-direction: column;
    justify-content: space-between;
  }

  /* ロゴ */
  .concept-logo {
    position: absolute;
    top: auto;
    bottom: 6%;
    right: 8%;
    width: 50%;
    margin-left: auto;
    margin-bottom: 0;
  }

  .concept-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* 英文 */
  .concept-en {
    position: relative;
    right: auto;
    left: 5%;
    bottom: auto;
    width: 90%;
    margin-bottom: 10vw;
  }

  .concept-en p {
    margin: 0 0 4.5%;
    font-size: 3.865vw;
    line-height: 1.95;
    font-weight: 300;
    color: #000;
  }

  /*VIEW POINT*/
  #viewpoint {
    width: 100%;
    position: relative;
  }
  .viewpoint-header {
    display: flex;
    width: 100%;
    height: 2.415vw;
    line-height: 0;
    font-size: 3.865vw;
    border-bottom: 1px solid #000;
  }
  .viewpoint-header.lower {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .viewpoint-header .header01 {
    width: 2%;
    border-right: 1px solid #000;
  }
  .viewpoint-header .header02 {
    display: none;
  }
  .viewpoint_inner {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 38vw;
    padding: 7% 0 0 0;
    position: relative;
    overflow: visible;
  }
  .viewpoint_inner,
  .viewpoint_right {
    overflow: visible !important;
  }
  .viewpoint_inner .viewpoint_left {
    position: relative;
    width: 98%;
    padding: 0 6%;
  }
  .viewpoint_left .viewpoint_midashi {
    font-size: 19.324vw;
    line-height: 1;
    font-weight: 700;
    margin-top: 0;
  }
  .viewpoint_left .viewpoint_copy {
    font-size: 3.865vw;
    line-height: 1;
    font-weight: 700;
    margin: 6% 0 0 1.6%;
  }
  .viewpoint_left .txt01 {
    font-size: 3.865vw;
    font-weight: 300;
    margin: 28% 0 0 1.6%;
    width: 100%;
    line-height: 2;
  }
  .viewpoint_left .txt01 span {
    display: block;
    font-size: 3.865vw;
    line-height: 2;
    font-weight: 300;
    margin-top: 5%;
  }
  .viewpoint_inner .viewpoint_right {
    position: relative;
    width: 100%;
    min-height: 50vw;
    margin-top: -1.5%;
  }

  .viewpoint_slider {
    width: 100%;
    height: 80vw;
    min-height: 80vw;
    margin: 19.324vw 0 0;
    padding: 0;
    list-style: none;
    position: relative;
    overflow: visible !important;
  }

  .viewpoint_slider .swiper-wrapper {
    transition-timing-function: linear !important;
    overflow: visible !important;
    align-items: stretch;
  }

  .viewpoint_slider li {
    width: 5vw;
    min-width: 5vw;
    height: 100%;
    min-height: 38vw;
    margin: 0;
    padding: 0;
    transition:
      opacity 0.24s ease,
      background-color 0.24s ease;
    box-sizing: border-box;
    border-left: 1px solid #707070;
    position: relative;
    z-index: 1;
    background: #fff;
    overflow: visible !important;
  }

  .viewpoint_slider li > a {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0 1.208vw;
    transition:
      padding 0.42s ease,
      opacity 0.28s ease,
      transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s ease;
    transform: translateZ(0);
    transform-origin: center center;
    backface-visibility: hidden;
  }

  .viewpoint_slider li img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    opacity: 1;
    transform: scale(0.9) translateZ(0);
    transform-origin: top center;
    transition:
      transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.8s ease,
      filter 1.4s ease;
    filter: brightness(0.94);
    backface-visibility: hidden;
    will-change: transform;
  }

  .viewpoint_slider .viewpoint_no {
    position: static;
    margin: 0;
    font-size: 10vw;
    font-weight: 700;
    line-height: 0.2;
    letter-spacing: -0.04em;
    color: #d9d9d9;
    transition:
      color 0.8s ease,
      font-size 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.8s ease,
      transform 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      margin 1.9s ease;
    transform: translateY(10px);
    white-space: nowrap;
  }

  .viewpoint_slider .viewpoint_latlon {
    position: static;
    margin: 1.932vw 0 0;
    font-size: 0.7vw;
    line-height: 1.65;
    color: #000;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(14px);
    transition:
      opacity 0.8s ease,
      transform 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      max-height 1.9s ease,
      margin 1.9s ease;
  }
  .viewpoint_slider .viewpoint_corp_jp {
    position: absolute;
    right: 1.449vw;
    bottom: 0;
    margin: 0 auto;
    padding: 0;
    text-align: right;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition:
      font-size 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      transform 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      right 1.9s ease,
      bottom 1.9s ease;
    transform: translateX(0);
    z-index: 2;
  }
  .viewpoint_slider .viewpoint_corp_en {
    position: absolute;
    left: 0.483vw;
    bottom: 0;
    margin: 0;
    font-size: 2vw;
    color: #000;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 1;
    transition:
      opacity 0.8s ease,
      transform 1.9s cubic-bezier(0.19, 1, 0.22, 1),
      left 1.9s ease,
      bottom 1.9s ease;
    transform: translateY(0);
    z-index: 2;
  }

  /* アクティブ中央 */
  .viewpoint_slider .swiper-slide-active {
    width: 47vw !important;
    min-width: 47vw !important;
    z-index: 2;
  }

  .viewpoint_slider .swiper-slide-active > a {
    padding: 0 4%;
    transform: translateZ(0);
  }

  .viewpoint_slider .swiper-slide-active img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 1;
    transform: scale(1) translateZ(0);
    margin-bottom: 0;
    filter: brightness(1);
  }

  .viewpoint_slider .swiper-slide-active .viewpoint_no {
    margin-top: 3%;
    font-size: 14vw;
    color: #000;
    transform: translateY(0);
    white-space: nowrap;
    line-height: 1;
  }

  .viewpoint_slider .swiper-slide-active .viewpoint_latlon {
    margin-top: 1.449vw;
    font-size: 2.8vw;
    opacity: 1;
    max-height: 19.324vw;
    transform: translateY(0);
  }

  .viewpoint_slider .swiper-slide-active .viewpoint_corp_jp {
    right: 2.415vw;
    bottom: 0;
    margin: 0;
    padding: 0;
    font-size: 2.3vw;
    line-height: 1.3;
    transform: translateX(0);
  }

  .viewpoint_slider .swiper-slide-active .viewpoint_corp_en {
    left: 1.449vw;
    bottom: 0;
    margin: 0;
    opacity: 1;
    color: #000;
    font-size: 2.3vw;
    transform: translateY(0);
    writing-mode: vertical-rl;
    text-orientation: initial;
  }

  /* 非アクティブを少し薄く */
  .viewpoint_slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 1;
    z-index: 1;
  }
  .viewpoint_slider .swiper-slide:not(.swiper-slide-active) img {
    transform: scale(0.9) translateZ(0);
    filter: brightness(0.94);
  }

  .viewpoint_slider .swiper-slide:not(.swiper-slide-active) .viewpoint_no {
    transform: translateY(10px);
    white-space: nowrap;
    margin: 0 auto;
    opacity: 0.4;
  }
  .viewpoint_slider .swiper-slide:not(.swiper-slide-active):hover {
    z-index: 30;
  }

  .viewpoint_slider .swiper-slide:not(.swiper-slide-active):hover > a {
    transform: scale(1.05);
    box-shadow:
      inset 1px 0 0 #707070,
      inset -1px 0 0 #707070;
    background: #fff;
    z-index: 31;
  }
  .viewpoint_slider .swiper-slide {
    transition:
      opacity 0.8s ease,
      transform 1.9s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
  }

  /* 親要素幅100% */
  .viewpoint_slider_wrap {
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    padding-top: 5.797vw;
    padding-bottom: 7.246vw;
    position: relative;
  }

  /* MAP */
  .googlemap #map,
  .googlemap {
    width: 94%;
    height: auto;
    aspect-ratio: 2 / 1;
    /*  filter: grayscale(100%); */
    max-width: none;
    margin: 5% 3% 20%;
  }

  /*インタビュー*/
  #interview {
    background: #ffff00; /* 背景色は適宜変更 */
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  #interview.lower {
    background: #ffff00 !important;
    border-top: 1px solid #000;
    border-bottom: none;
  }
  .interview_header {
    position: relative;
    width: 100%;
    height: 2.415vw;
    border-bottom: 1px solid #000;
  }
  .interview_header li:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2%;
    border-right: 1px solid #000;
  }
  .interview_header li:nth-child(2) {
    display: none;
  }

  .interview_header li:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2%;
    border-left: 1px solid #000;
  }

  .interview_inner {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    min-height: auto;
  }

  .interview_inner li:nth-child(1) {
    position: relative;
    width: 2%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 0;
    line-height: 7.971vw;
    padding-bottom: 15%;
  }
  .interview_inner li:nth-child(1) :after {
    display: none;
  }
  .interview_inner li:nth-child(2) {
    display: block;
    width: 96%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .interview_inner li:nth-child(3) {
    width: 2%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 0;
    line-height: 7.971vw;
    padding-bottom: 15%;
  }
  .interview_inner li:nth-child(3) :after {
    display: none;
  }
  .interview_txt_jp {
    position: relative;
    top: 0;
    right: auto;
    left: 7%;
    width: 86%;
    margin-top: 18%;
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 2;
  }
  .interview_txt_jp span {
    display: block;
    margin-top: 4.5%;
  }

  .interview_inner h2 {
    font-size: 15.217vw;
    margin: 9% 0 3% 7%;
    line-height: 1.1;
    width: 100%;
  }
  .interview_inner .midashi_jp {
    font-size: 4.348vw;
    font-weight: 700;
    margin: 0 0 0 7.5%;
    line-height: 1.1;
  }

  .interview_footer {
    position: relative;
    width: 100%;
    height: 2.415vw;
    border-top: 1px solid #000;
  }
  .interview_footer li:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2%;
    border-right: 1px solid #000;
  }
  .interview_footer li:nth-child(2) {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2%;
    border-left: 1px solid #000;
  }

  /*Intervire Slider*/

  .interview-slider-wrap {
    width: 100%;
    margin: 7% auto 0;
    overflow-x: hidden;
  }

  /* ===== メイン ===== */
  .interview-main {
    position: relative;
    overflow: visible;
    margin-bottom: 6%;
  }
  .interview-main .swiper-slide {
    width: 100%;
    overflow: hidden;
  }

  .interview-main .swiper-slide a {
    display: block;
    color: #000;
    text-decoration: none;
  }
  .interview-main .swiper-slide img {
    width: 100%;
    aspect-ratio: 322 / 423;
    object-fit: cover;
    display: block;
  }
  .interview-main .swiper-slide:not(.swiper-slide-active) img {
    filter: brightness(0.6);
    opacity: 1;
    transition:
      filter 0.4s ease,
      opacity 0.4s ease;
  }
  .interview-main .swiper-slide:not(.swiper-slide-active) .corp_name_e,
  .interview-main .swiper-slide:not(.swiper-slide-active) .corp_name_j {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .interview-main .swiper-slide-active img {
    filter: brightness(1);
    opacity: 1;
  }
  .corp_name_e {
    margin-top: 0.718vw;
    font-size: 24vw;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: right;
    margin-top: 12%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .corp_name_e span {
    margin-right: 0.1em;
    font-size: 15vw;
  }
  .corp_name_e span.sp {
    position: relative;
    top: -9.662vw;
    margin-right: 0.1em;
    font-size: 13vw;
  }
  .corp_name_j {
    position: relative;
    top: -7.246vw;
    margin-top: 0;
    margin-right: 3%;
    font-size: 4vw;
    line-height: 1.5;
    font-weight: 500;
    width: 97%;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .interview-main .swiper-slide-active .corp_name_e,
  .interview-main .swiper-slide-active .corp_name_j {
    opacity: 1;
    visibility: visible;
  }
  .interview-nav {
    display: none;
  }
  .interview-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12.077vw;
    height: 12.077vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .interview-nav--prev {
    left: 4.831vw;
  }
  .interview-nav--prev::before {
    transform: rotate(-135deg);
    left: 1.449vw;
  }
  .interview-nav--next {
    right: 4.831vw;
  }
  .interview-nav--next::before {
    transform: rotate(45deg);
    right: 1.449vw;
  }
  .interview-list-head {
    margin-bottom: 0.923vw;
    margin-left: 5%;
    font-size: 7vw;
    line-height: 1;
    font-weight: 800;
  }
  .interview-thumbs {
    position: relative;
    top: 4.831vw;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: 20%;
  }
  .interview-thumbs .swiper-slide {
    width: 45%;
    min-width: 45%;
  }
  .interview-thumbs .swiper-slide button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    opacity: 1;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    filter: brightness(0.8);
  }
  .interview-thumbs .swiper-slide button:hover {
    filter: brightness(1);
  }
  .interview-thumbs .swiper-slide-thumb-active button {
    opacity: 1;
    filter: brightness(1);
  }

  .interview-thumbs .swiper-slide span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    font-size: 3vw;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #000;
    text-align: center;
    background: transparent;
    padding: 2.5vw 0 2.4vw;
    margin-bottom: 4vw;
    margin-top: 0;
  }
  .interview-thumbs .swiper-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    padding: 0 5%;
  }
  .interview-thumbs .swiper-slide {
    margin-right: 0 !important;
  }

  .interview-thumbs .swiper-wrapper {
    gap: 0 !important;
  }

  /*フッター*/
  #footer_header {
    width: 100%;
    height: 8.454vw;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  footer {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 7% 5%;
  }
  footer .footer_left {
    text-align: left;
    width: 55%;
    float: left;
    font-weight: 700;
    font-size: 5vw;
    line-height: 2;
    margin: 3% 0 0 1%;
  }
  footer .footer_left a:hover {
    opacity: 0.7;
  }
  footer .footer_right {
    position: relative;
    text-align: left;
    float: right;
    width: 40%;
    height: 53.14vw;
    margin: 3% 0 0 0;
  }
  footer .footer_right .sns_midashi {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 8vw;
    font-weight: 700;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
  footer .footer_right .bottom_sns {
    display: none;
    /* position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    justify-content: space-between;
    padding: 0 25%;
    margin: 10% 0 0 0; */
  }
  footer .footer_right .bottom_sns img {
    width: 12.077vw;
    height: auto;
    margin-top: 3.623vw;
  }

  footer .contact {
    display: none;
  }

  footer .contact_sp {
    display: inline-block;
    font-size: 9vw;
    font-weight: 700;
    width: 100%;
    height: 21.739vw;
    line-height: 21.739vw;
    background-color: #000;
    text-decoration: none;
    color: #fff;
    border-radius: 10.87vw;
    text-align: center;
    margin-top: 10%;
  }
  footer .contact_sp:hover {
    opacity: 0.7;
  }

  .footer_bottom {
    clear: both;
    float: left;
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 2% 0 6.5%;
    height: auto;
    font-size: 3.14vw;
    font-weight: 300;
    line-height: 2.2;
    padding: 0;
  }
  .footer_bottom .corp_info {
    position: relative;
    width: 100%;
    padding: 3.7% 7%;
  }
  .footer_bottom .corp_info::before {
    position: absolute;
    top: 0;
    left: 2%;
    content: "";
    height: 100%;
    width: 0.242vw;
    background-color: #000;
  }
  .footer_bottom .corp_info::after {
    position: absolute;
    top: 0;
    right: 2%;
    content: "";
    height: 100%;
    width: 0.242vw;
    background-color: #000;
  }

  .footer_bottom .copyright {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    border-top: 1px solid #000;
    border-left: none;
    width: 100%;
    text-align: right;
    padding: 1% 6%;
  }
  .footer_bottom .copyright::before {
    position: absolute;
    top: 0;
    left: 2%;
    content: "";
    height: 100%;
    width: 0.242vw;
    background-color: #000;
  }
  .footer_bottom .copyright::after {
    position: absolute;
    top: 0;
    right: 2%;
    content: "";
    height: 100%;
    width: 0.242vw;
    background-color: #000;
  }
  .footer_bottom .copyright span {
    position: absolute;
    top: 0;
    right: 28%;
    height: 100%;
    width: 0.242vw;
    border-left: 1px solid #000;
  }

  /*VIEWPORT PAGE*/
  .lower_fuji-layout {
    --fuji-sidebar-width: 100%;
    position: relative;
    display: block;
    grid-template-columns: var(--fuji-sidebar-width) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    margin-top: 0;
    border-top: none;
  }
  .lower_fuji-layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }
  .lower_fuji-layout::after {
    content: "";
    position: absolute;
    top: 0;
    right: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }
  .lower_fuji-copy {
    padding: 8.6% 7% 7.8% 7%;
    border-bottom: 1px solid #000;
  }
  .lower_fuji-corp_name {
    font-size: 9.662vw;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 8%;
    margin-bottom: 11%;
  }
  .lower_fuji-copy__jp {
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 4%;
  }
  .lower_fuji-copy__en {
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 1.9;
  }
  .lower_corp_name__en {
    text-align: right;
    margin-top: 5%;
  }
  .lower_corp_name__en .txt01 {
    font-size: 12.077vw;
    font-weight: 700;
    line-height: 1;
  }
  .lower_corp_name__en .txt02 {
    font-size: 21.739vw;
    font-weight: 700;
    line-height: 1;
    margin-top: 0;
  }
  .lower_corp_name__en .txt03 {
    font-size: 3.623vw;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 2%;
  }
  .lower_corp_profile__jp {
    padding: 7% 7% 4% 7%;
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 1.8;
  }
  .lower_corp_profile__jp .midashi {
    font-size: 7.971vw;
    font-weight: 700;
    margin-bottom: 4%;
  }
  .lower_corp_profile__jp .komidashi {
    font-size: 3.865vw;
    font-weight: 300;
    margin-top: 0;
  }

  .lower_fuji-gallery {
    position: relative;
    padding: 7.5% 5%;
    align-items: stretch;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border-top: 1px solid #000;
  }

  .lower_fuji-sidebar__inner {
    display: block;
    flex: 1;
    flex-direction: column;
    padding: 0;
  }
  .lower_logo {
    display: none;
  }

  .lower_logo_sp {
    position: fixed;
    top: 0;
    left: 0;
    max-width: none;
    border-bottom: 1px solid #000;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 14.01vw;
    background-color: #fff;
    z-index: 10;
  }
  .lower_logo_sp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }
  .lower_logo_sp::after {
    content: "";
    position: absolute;
    top: 0;
    right: 12%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }

  .ower_logo_space {
    width: 100%;
    height: 2.174vw;
    border-bottom: 1px solid #000;
  }
  .lower_logo_sp img {
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    width: 50%;
  }

  .viewpoint-lower-thumbs .swiper-slide {
    width: calc((100% - 4.831vw) / 2.5); /* 2.5枚表示 */
    min-width: calc((100% - 4.831vw) / 2.5);
    opacity: 0.6;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .viewpoint-lower-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }

  .viewpoint-lower-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .viewpoint-lower-thumbs .swiper-wrapper {
    align-items: stretch;
    gap: 2.415vw;
  }

  .viewpoint-lower-slider-wrap {
    width: 100%;
  }

  .viewpoint-lower-main {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
  }
  .viewpoint-lower-main .swiper-wrapper,
  .viewpoint-lower-main .swiper-slide {
    height: auto;
  }

  .viewpoint-lower-main img {
    width: 100%;
    display: block;
  }

  .viewpoint-lower-thumbs {
    width: 100%;
    overflow: hidden;
    margin: 7.246vw 0 0 0;
  }

  .viewpoint-lower-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }

  .viewpoint-lower-thumbs img {
    width: 100%;
    display: block;
  }

  .viewpoint-lower-thumbs .swiper-scrollbar {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    display: block;
    width: 100% !important;
    height: 7.246vw;
    margin: 0 0 7vw;
    background: transparent; /* hide default track */
    opacity: 1 !important;
    z-index: 3;
  }

  .viewpoint-lower-thumbs::after {
    position: absolute;
    left: 0;
    top: 1.208vw;
    content: "";
    width: 100%;
    height: 0.242vw;
    background-color: #000;
  }

  .viewpoint-lower-thumbs .swiper-scrollbar-drag {
    height: 3vw;
    background: #000;
    border-radius: 512.769vw;
    position: relative;
    top: 0;
  }

  .interview_inner.lower h2 {
    font-size: 15.459vw;
    margin: 10% 0 3% 7%;
    line-height: 1.1;
  }
  .interview_inner.lower .midashi_jp {
    font-size: 4.348vw;
    font-weight: 700;
    margin: 0 0 12% 7.7%;
    line-height: 1.1;
  }
  .interview_photo_sp {
    width: 100%;
    aspect-ratio: 318 / 422;
  }
  .interview_photo_sp img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .interview_inner.lower .profile {
    width: 84%;
    margin: 5.5% auto 3%;
  }
  .interview_inner.lower .profile_name {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 17%;
  }
  .interview_inner.lower .profile_name .profile_name_jp {
    display: none;
  }
  .interview_inner.lower .profile_name .profile_name_jp_sp {
    font-size: 4.831vw;
    font-weight: 500;
    line-height: 1.5;
    text-align: right;
    margin-top: 7%;
  }
  .interview_inner.lower .profile_name .profile_name_en {
    position: relative;
    right: 0;
    font-size: 26.57vw;
    font-weight: 700;
    line-height: 0.5;
    text-align: right;
    letter-spacing: 0.01em;
  }
  .interview_inner.lower .profile_name .profile_name_en span {
    font-size: 16.908vw;
    font-weight: 700;
  }
  .interview_inner.lower .profile_name .profile_name_en span.sp {
    font-size: 14.493vw;
    font-weight: 700;
  }
  .interview_inner.lower .profile_txt {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 10% 0 10%;
  }
  .interview_inner.lower .profile_txt .profile_txt_left {
    width: 100%;
    font-size: 3.623vw;
    font-weight: 300;
    line-height: 2.1;
    padding: 0 10% 10%;
    border-bottom: 1px solid #000;
    border-right: none;
  }
  .interview_inner.lower .profile_txt .profile_txt_left .name {
    font-size: 9.179vw;
    font-weight: 500;
  }
  .interview_inner.lower .profile_txt .profile_txt_right {
    width: 100%;
    font-size: 3.382vw;
    font-weight: 300;
    line-height: 2.2;
    padding: 2.6% 10%;
  }
  .interview_inner.lower .profile_txt .profile_txt_right .name {
    font-size: 8.213vw;
    font-weight: 500;
  }

  .profile_photo_wrap {
    display: flex;
    flex-wrap: nowrap;
    border-top: none;
  }
  .profile_photo_wrap li.left {
    display: block;
    width: 2%;
    height: 100%;
  }
  .profile_photo_wrap li.center {
    width: 96%;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    box-sizing: border-box;
  }
  .profile_photo_wrap li.right {
    display: block;
    width: 2%;
    height: 100%;
  }

  .profile_photo_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4.348vw; /* 黄色の余白幅 */
    padding: 3% 8% 7%;
  }

  .profile_photo_list > div {
    width: calc((100% - 4.348vw) / 2); /* 4列 */
  }

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

  /*インタビューモーダル*/
  .profile_photo_modal_trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

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

  .profile_photo_modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }

  .profile_photo_modal.is-open {
    display: block;
  }

  .profile_photo_modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
  }

  .profile_photo_modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 980px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.865vw;
    z-index: 1;
  }

  .profile_photo_modal__image_wrap {
    width: 100%;
    max-width: 193.237vw;
  }

  .profile_photo_modal__image {
    display: block;
    width: 100%;
    max-width: 193.237vw;
    max-height: 82vh;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  .profile_photo_modal__close,
  .profile_photo_modal__nav {
    appearance: none;
    border: 0;
    cursor: pointer;
    color: #fff;
  }

  .profile_photo_modal__close {
    position: absolute;
    top: -11.594vw;
    right: 7.246vw;
    width: 9.662vw;
    height: 9.662vw;
    border-radius: 241.304vw;
    font-size: 6.763vw;
    line-height: 1;
  }

  .profile_photo_modal__nav {
    width: 12.56vw;
    height: 12.56vw;
    border-radius: 241.304vw;
    font-size: 10.145vw;
    line-height: 1;
    flex: 0 0 12.56vw;
  }

  @media (max-width: 767px) {
    .profile_photo_modal__dialog {
      width: 94vw;
      gap: 2.415vw;
    }

    .profile_photo_modal__close {
      top: -10.628vw;
    }

    .profile_photo_modal__nav {
      width: 10.145vw;
      height: 10.145vw;
      flex-basis: 10.145vw;
      font-size: 7.729vw;
    }
  }

  /*下層共有(Viewpoint以外)*/
  .lower-main {
    --fuji-header-actions-width: clamp(300px, 27vw, 360px);
    margin: 0;
    padding: 0;
  }

  .footer_lower_line {
    position: relative;
    width: 100%;
    height: 2.415vw;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }
  .footer_lower_line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }
  .footer_lower_line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 2%;
    width: 0.242vw;
    height: 100%;
    background: #000;
  }

  /*Topics一覧*/
  .lower_side_space {
    height: auto;
    border-top: none;
  }
  .topics_midashi {
    display: none;
  }
  .fuji-sidebar.topics_sp {
    display: none;
  }

  .topics-index {
    display: block;
    padding: 13% 8% 19% 8%;
    min-height: auto;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    margin: 0 2%;
  }
  .topics-index__head {
    position: relative;
    margin-bottom: 12.802vw;
  }

  .topics-index__head h2 {
    font-size: 40;
    line-height: 1;
  }
  .topics-index__head__list {
    display: grid;
    gap: 2.657vw;
    width: 100%;
    margin: 10% auto 0;
  }

  .fuji-topic {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12vw;
    border: none;
  }

  .fuji-topic .fuji-topic__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28vw;
    height: 7.3vw;
    border: 1px solid #707070;
    font-size: 4.2vw;
    line-height: 1;
    font-weight: 400;
    color: #000;
    flex: 0 0 auto;
    margin-bottom: 4vw;
  }

  .fuji-topic .fuji-topic__date {
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 4.7vw;
    line-height: 2;
    margin-left: auto;
    margin-bottom: 0;
  }

  .fuji-topic .fuji-topic__title {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    flex: 0 0 100%;
    width: 100%;
    font-weight: 400;
    font-size: 4.5vw;
    line-height: 1.5;
    padding-bottom: 0;
  }

  .fuji-topic .fuji-topic__title a:hover {
    opacity: 0.6;
  }

  .pager_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.899vw;
    margin: 7% auto 0;
  }

  .pager_01 .page_numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.628vw;
    height: 10.628vw;
    padding: 0 3.382vw;
    border: 1px solid #000;
    border-radius: 2415.217vw;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: #000;
    background: #fff;
    transition:
      opacity 0.3s ease,
      background-color 0.3s ease,
      color 0.3s ease;
  }

  .pager_01 a.page_numbers:hover {
    background: #000;
    color: #fff;
    opacity: 1;
  }

  .pager_01 .page_numbers.current {
    background: #000;
    color: #fff;
  }

  .pager_01 .page_numbers.prev,
  .pager_01 .page_numbers.next {
    padding: 0 4.831vw;
  }

  /*Topics詳細*/

  .topics-index.detail {
    display: block;
    padding: 13% 8% 1% 8%;
    min-height: auto;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    margin: 0 2%;
  }

  .topics-index__head .post_data {
    position: absolute;
    top: 38%;
    left: auto;
    right: 0;
    display: flex;
    font-size: 0;
    color: #fff;
    font-weight: 400;
    gap: 17%;
    white-space: nowrap;
  }

  .topics-index__head .post_data li:nth-child(1) {
    position: relative;
    top: 2.415vw;
    width: 10.145vw;
  }
  .topics-index__head .post_data li:nth-child(3) {
    position: relative;
    top: 2.415vw;
    width: 10.145vw;
  }
  .cate_wrap {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    white-space: nowrap;
    margin: 12% 0 0 0;
  }
  .cate_wrap .cate {
    font-size: 3.865vw;
    border: 1px solid #000;
    height: 7.246vw;
    line-height: 6.763vw;
    padding: 0 5%;
    font-weight: 400;
  }
  .cate_wrap .date {
    font-size: 4.831vw;
    font-weight: 400;
    line-height: 10.87vw;
  }
  .lower-main .topics-content-wrap {
    max-width: none;
    width: 96%;
    margin: 0 2%;
    padding: 0 6%;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }
  .topics-content-wrap .topics-content-midashi {
    width: 100%;
    max-width: none;
    margin: 4% auto 9%;
    font-size: 5.314vw;
    font-weight: 400;
  }
  .topics-content-wrap .topics-content-txt {
    width: 100%;
    max-width: 160.87vw;
    margin: 5% auto 15%;
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 2.2em;
  }
  .topics-content-wrap .topics-content-txt p {
    margin-bottom: 2em;
  }
  .index_pager {
    display: flex;
    font-size: 5.314vw;
    font-weight: 400;
    gap: 7%;
    white-space: nowrap;
    width: 100%;
    max-width: none;
    margin: 80px auto 80px;
  }
  .index_pager li:nth-child(1) {
    position: relative;
    top: 1.208vw;
    width: 13.285vw;
  }
  .index_pager li:nth-child(2) {
    width: calc(100% - 26.57vw);
    text-align: center;
  }
  .index_pager li:nth-child(3) {
    position: relative;
    top: 1.208vw;
    width: 13.285vw;
  }
  .index_back {
    width: 100%;
    text-align: center;
    margin: 8% 0 0;
  }
  .index_back a {
    display: inline-block;
    background-color: #000;
    width: 38.406vw;
    height: 9.179vw;
    line-height: 8.696vw;
    border-radius: 4.831vw;
    color: #fff;
    font-size: 4.348vw;
    font-weight: 400;
    margin-bottom: 31.401vw;
  }
  .index_back a:hover {
    opacity: 0.7;
  }

  /*contact*/
  .topics-index.contact {
    display: block;
    padding: 12% 8% 3% 8%;
    min-height: auto;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    margin: 0 2%;
  }

  .contact-form-wrap {
    max-width: none;
    width: 96%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 2%;
    padding: 0 8%;
    border-bottom: 1px dotted #fff;
  }

  .contact-form-wrap .form_txt01 {
    font-size: 3.865vw;
    font-weight: 300;
    line-height: 2.2;
  }
  .contact_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 7% 0 20%;
  }

  .contact_table tr {
    border-bottom: 1px solid #000;
  }

  .contact_table th,
  .contact_table td {
    display: block;
    vertical-align: top;
  }

  .contact_table th {
    position: relative;
    width: 50%;
    padding: 2.415vw 5.797vw 3.14vw 7.246vw;
    border-right: 1px solid #000;
    font-size: 4.831vw;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #000;
    text-align: left;
    white-space: nowrap;
  }

  .contact_table th.required::before {
    content: "";
    position: absolute;
    top: 2.899vw;
    left: 0;
    width: 2.174vw;
    height: 2.174vw;
    background: #ff1e1e;
    border-radius: 50%;
  }

  .contact_table td {
    padding: 0 6.763vw 0 4.348vw;
    width: 100%;
    border-top: 1px solid #000;
  }

  /* 入力欄共通 */
  .contact_input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    padding: 2.415vw 0;
    font-size: 4.831vw;
    line-height: 1.8;
    color: #111;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  /* placeholder */
  .contact_input::placeholder {
    color: #c8c8c8;
  }

  /* select */
  .contact_select {
    cursor: pointer;
    padding-right: 15.459vw;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><rect width='28' height='28' fill='%23000'/><path d='M8 11l6 6 6-6' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    padding-right: 16.425vw;
    background-position: right 10px center;
    background-size: 5.314vw 5.314vw;
    color: #c8c8c8;
  }

  .contact_select:valid {
    color: #111;
  }

  .contact_select option {
    color: #111;
  }

  .contact_select option[value=""] {
    color: #c8c8c8;
  }

  /* IEの矢印消し */
  .contact_select::-ms-expand {
    display: none;
  }

  /* textarea */
  .contact_textarea {
    min-height: 48.309vw;
    resize: vertical;
    padding-top: 6.763vw;
    padding-bottom: 6.763vw;
    font-family: inherit;
  }

  /* focus時も枠なし */
  .contact_input:focus,
  .contact_select:focus,
  .contact_textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
  }

  /* autofill対策 */
  .contact_input:-webkit-autofill,
  .contact_input:-webkit-autofill:hover,
  .contact_input:-webkit-autofill:focus,
  .contact_textarea:-webkit-autofill,
  .contact_select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f7f7f7 inset;
    -webkit-text-fill-color: #111;
  }
  .contact-form-wrap .note {
    font-size: 3.382vw;
    font-weight: 300;
    margin-bottom: 8%;
  }
  .contact-form-wrap .privacy_btn {
    width: 66.425vw;
    margin-bottom: 18%;
  }

  .contact_submit_wrap {
    text-align: center;
    margin: 0 0 21%;
    width: 100%;
  }

  .contact_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74%;
    margin: 0 13% 24.155vw;
    max-width: 100%;
    height: 15.217vw;
    border: none;
    border-radius: 2415.217vw;
    background: #000;
    color: #fff;
    font-size: 7.729vw;
    font-weight: 700;
    line-height: 13.285vw;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
}
