@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho", serif;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 400;
  color: #2b2b21;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  transition: opacity 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
dl,
ol {
  text-indent: 0;
  list-style-position: outside;
  list-style-type: none;
}

ul,
ol {
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizespeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

/* table */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --header-h: 87px;
}
@media (min-width: 768px) {
  :root {
    --header-h: 105px;
  }
}
@media (min-width: 1024px) {
  :root {
    --header-h: 132px;
  }
}

/*******************************
 ヘッダー
 *******************************/
.header {
  position: relative;
}

.header__inner {
  max-width: 1090px;
  height: var(--header-h);
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .header__inner {
    display: flex;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    justify-content: space-between;
  }
}

.header__logo {
  padding-top: 20px;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .header__logo {
    padding-top: 0;
    font-size: 3rem;
    letter-spacing: 0.57em;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    font-size: 3.5rem;
  }
}

.header__logo-link {
  display: block;
  width: 200px;
  color: #2b2b21;
}
@media (min-width: 768px) {
  .header__logo-link {
    width: auto;
  }
}

.header__text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media (min-width: 768px) {
  .header__text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .header__text {
    position: absolute;
    top: 50%;
    right: 200px;
    transform: translateY(-50%);
  }
}

.header__text-inner {
  padding-right: 0.3em;
  letter-spacing: -0.1em;
}

.header__text-inner::after {
  content: "f";
}

/*******************************
 フッター
 *******************************/
.footer__copyright {
  display: block;
  padding: 8px 0;
  font-size: 1.2rem;
  text-align: center;
  background: #eaeaea;
}

/*******************************
 main
 *******************************/
main.main-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  main.main-top {
    gap: 90px;
  }
}

main.main-page {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  main.main-page {
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  main.main-page {
    padding-bottom: 90px;
  }
}

/*******************************
 news
 *******************************/
.news-list__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*******************************
ホバー
 *******************************/
.link-underline {
  display: block;
  color: inherit;
  text-decoration: none;
}

.text-underline {
  display: inline;
  padding-bottom: 4px;
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  transition: background-size 0.6s ease;
}

.link-underline:hover .text-underline {
  background-size: 100% 2px;
}

/*******************************
 person
 *******************************/
/* 既存のSCSSはそのまま維持します */
.person {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .person {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .person {
    margin-bottom: 115px;
  }
}

.person__inner {
  display: flex;
  flex-direction: column;
  max-width: 1050px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .person__inner {
    flex-direction: row;
    height: 720px;
  }
}

.person__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .person__body {
    width: 50%;
    padding: 0 60px;
  }
}
@media (min-width: 1024px) {
  .person__body {
    padding: 0 0 0 6%;
  }
}

@media (min-width: 768px) {
  .person__content {
    margin-top: auto;
    margin-bottom: auto;
  }
}

.person__heading {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .person__heading {
    font-size: 2.5rem;
    text-align: left;
    letter-spacing: 0.15em;
  }
}

.person__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
  justify-content: center;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .person__tags {
    justify-content: flex-start;
    margin-top: 25px;
  }
}

.person__link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .person__link {
    justify-content: flex-end;
    margin-top: 70px;
  }
}

.person__readmore {
  font-size: 1.2rem;
  color: #2b2b21;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.person__readmore:hover {
  text-decoration: none;
}

.person__info {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .person__info {
    align-self: flex-end;
    margin-top: 0;
  }
}

.person__title {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.13em;
}
@media (min-width: 768px) {
  .person__title {
    font-size: 1.4rem;
    text-align: left;
  }
}

.person__name {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .person__name {
    gap: 25px;
    justify-content: flex-start;
    margin-top: 8px;
    font-size: 3.4rem;
    letter-spacing: 0.2em;
  }
}

.person__name-en {
  display: flex;
  gap: 5px;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .person__name-en {
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* =========================================
   ここからアニメーション用の追加スタイル
========================================= */
/* スライド切り替え時のイージング（加減速）を設定 */
.js-person-swiper {
  overflow: hidden;
}

.swiper-wrapper {
  /* 全体の横移動をキャンセル */
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide {
  /* 全てのスライドを同じ位置に重ねる */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  /* フェードの速度 */
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.swiper-slide.swiper-slide-active {
  position: relative;
  z-index: 2;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  /* 高さを確保するためアクティブのみ相対配置 */
}

/* --- 画像のアニメーション設定 --- */
.person__img {
  position: relative;
  width: 100%;
  height: calc(50vh - var(--header-h));
  overflow: hidden;
}
@media (min-width: 768px) {
  .person__img {
    flex-shrink: 0;
    width: 50%;
    height: auto;
  }
}

.person__img img {
  width: 110%;
  /* ★枠より少し大きくして、動く余白を作る */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 初期状態 */
  opacity: 0;
  transform: translateX(0) scale(1.1);
}

/* --- アクティブ時のアニメーション --- */
.swiper-slide-active .person__img img {
  opacity: 1;
  /* スライドが表示されている間、ずっと動かし続ける（5秒かけて左へ） */
  animation: slowPan 6s linear forwards;
}

/* 非アクティブ（消えゆくスライド）の画像 */
.swiper-slide-prev .person__img img,
.swiper-slide-next .person__img img {
  opacity: 0;
  transition: opacity 1s ease;
}

/* 画像を右から左へゆっくり動かすキーフレーム */
@keyframes slowPan {
  0% {
    /* 1.1倍に拡大した状態で、右側をはみ出させておく */
    transform: translateX(0) scale(1.1);
  }
  100% {
    /* 左側に寄せて、隠れていた右側を表示させる */
    transform: translateX(-5%) scale(1.1);
  }
}
/* --- 文字のアニメーション（下から出現） --- */
.person__heading,
.person__tags,
.person__info,
.person__link {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .person__heading {
  transition-delay: 0.5s;
}
.swiper-slide-active .person__tags {
  transition-delay: 0.6s;
}
.swiper-slide-active .person__info {
  transition-delay: 0.7s;
}
.swiper-slide-active .person__link {
  transition-delay: 0.8s;
}
.swiper-slide-active .person__heading,
.swiper-slide-active .person__tags,
.swiper-slide-active .person__info,
.swiper-slide-active .person__link {
  opacity: 1;
  transform: translateY(0);
}

/*******************************
 GSAP
 *******************************/
.js-bottom {
  visibility: hidden;
  opacity: 0;
}

.js-item {
  visibility: hidden;
  opacity: 0;
}

/*******************************
 profiles
 *******************************/
.profiles {
  max-width: 1090px;
  padding-inline: 20px;
  margin-inline: auto;
  border-top: 1px solid #2b2b21;
}
@media (min-width: 1024px) {
  .profiles {
    max-width: 1050px;
    padding-inline: 0;
  }
}

.profiles__inner {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .profiles__inner {
    display: flex;
    padding: 50px 0;
  }
}
@media (min-width: 1024px) {
  .profiles__inner {
    padding: 60px 0;
  }
}

.profiles__heading {
  font-size: 2rem;
  font-weight: 400;
  color: #2b2b21;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .profiles__heading {
    flex-shrink: 0;
    align-self: center;
    width: 200px;
    margin-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .profiles__heading {
    width: 300px;
    text-align: center;
  }
}

.profiles__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .profiles__list {
    gap: 40px;
    margin-top: 0;
  }
}

.profiles__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
@media (min-width: 768px) {
  .profiles__item {
    grid-template-columns: 100px auto 150px 1fr;
    gap: 0 20px;
    align-items: center;
    padding-top: 0;
    border-top: none;
  }
}
@media (min-width: 1024px) {
  .profiles__item {
    grid-template-columns: 150px auto 180px 1fr;
    gap: 0 30px;
  }
}

.profiles__left {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .profiles__left {
    justify-content: flex-start;
  }
}

.profiles__bullet {
  font-size: 2.5rem;
  color: #2b2b21;
}

.profiles__job {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #2b2b21;
  letter-spacing: 0.3em;
}
@media (min-width: 1024px) {
  .profiles__job {
    font-size: 2.3rem;
  }
}

@media (min-width: 1024px) {
  .js-job.js-job--is2 {
    letter-spacing: 1.5em;
  }
}

@media (min-width: 1024px) {
  .js-job.js-job--is3 {
    letter-spacing: 0.3em;
  }
}

@media (min-width: 1024px) {
  .js-job.js-job--long {
    letter-spacing: 0.1em;
  }
}

.profiles__separator {
  display: none;
}
@media (min-width: 768px) {
  .profiles__separator {
    display: block;
    width: 20px;
    height: 1px;
    border-top: 1px dashed #2b2b21;
  }
}
.profiles__person {
  min-width: 0;
}
@media (min-width: 768px) {
  .profiles__person {
    min-width: 160px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .profiles__person {
    min-width: 180px;
  }
}

.profiles__company {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2b2b21;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .profiles__company {
    font-size: 1.2rem;
    text-align: left;
  }
}

.profiles__name {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2b2b21;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .profiles__name {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .profiles__name {
    font-size: 2rem;
  }
}

.profiles__text {
  display: -webkit-box;
  max-height: 3.6em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2b2b21;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .profiles__text {
    font-size: 1.3rem;
  }
}

.profiles__readmore {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #2b2b21;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .profiles__readmore {
    justify-content: flex-start;
  }
}

.profiles__readmore:hover {
  text-decoration: none;
}

/*******************************
 people
 *******************************/
.people {
  max-width: 1090px;
  padding-inline: 20px;
  margin-inline: auto;
  border-top: 1px solid #2b2b21;
}
@media (min-width: 1024px) {
  .people {
    max-width: 1050px;
    padding-inline: 0;
  }
}

.people__inner {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .people__inner {
    padding: 55px 0;
  }
}

.people__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .people__header {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .people__header {
    gap: 70px;
    padding-left: 25px;
  }
}

.people__heading {
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .people__heading {
    font-size: 3rem;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .people__heading {
    font-size: 3.4rem;
  }
}

.people__desc {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .people__desc {
    font-size: 1.5rem;
  }
}

.people__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 480px) {
  .people__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .people__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  .people__list {
    gap: 80px 58px;
  }
}

.people__item {
  display: flex;
  flex-direction: column;
}

.people__item-link:hover {
  opacity: 1;
}

.people__number {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .people__number {
    font-size: 1.5rem;
  }
}

.people__img {
  width: 100%;
  aspect-ratio: 3/4;
  margin-top: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .people__img {
    margin-top: 23px;
  }
}

.people__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.people__item-link:hover .people__img img {
  transform: scale(1.1);
}

.people__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
  margin-top: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .people__tags {
    margin-top: 18px;
  }
}

.people__text {
  display: -webkit-box;
  max-height: calc(3em + 4px);
  padding-bottom: 4px;
  margin-top: 16px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2b2b21;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
}
@media (min-width: 1024px) {
  .people__text {
    font-size: 1.8rem;
  }
}

.people__company {
  margin-top: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .people__company {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}

.people__name {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .people__name {
    font-size: 2.4rem;
  }
}

.people__link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  text-transform: uppercase;
}

.people__readmore {
  font-size: 1.6rem;
  color: #2b2b21;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.people__readmore:hover {
  text-decoration: none;
}

/*******************************
詳細ページ
 *******************************/
/*******************************
 feature
 *******************************/
.feature {
  max-width: 1090px;
  padding-inline: 20px;
  margin-inline: auto;
}

.feature__images {
  width: 100%;
  aspect-ratio: 9/5;
  overflow: hidden;
}

.feature__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__body {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .feature__body {
    padding: 50px 0;
  }
}
@media (min-width: 1024px) {
  .feature__body {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .feature__content {
    padding-left: 7%;
  }
}

.feature__heading {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .feature__heading {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .feature__heading {
    font-size: 4rem;
  }
}

.feature__desc {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .feature__desc {
    margin-top: 24px;
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .feature__desc {
    margin-top: 40px;
    font-size: 2.1rem;
  }
}

.feature__bottom {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .feature__bottom {
    gap: 40px;
    justify-content: space-between;
    padding-block: 10px;
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  .feature__bottom {
    gap: 50px;
    padding-left: 7%;
  }
}

.feature__keyword {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #2b2b21;
}
@media (min-width: 768px) {
  .feature__keyword {
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .feature__keyword {
    padding-right: 68px;
  }
}

.feature__keyword-text {
  font-size: 4rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .feature__keyword-text {
    font-size: 8rem;
  }
}
@media (min-width: 1024px) {
  .feature__keyword-text {
    font-size: 8.6rem;
  }
}

.feature__info {
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .feature__info {
    flex: none;
    width: auto;
    margin-left: auto;
  }
}

.feature__number {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .feature__number {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .feature__number {
    font-size: 1.5rem;
  }
}

.feature__title {
  margin-top: 8px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .feature__title {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .feature__title {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}

.feature__name-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .feature__name-wrap {
    gap: 4px 30px;
  }
}
@media (min-width: 1024px) {
  .feature__name-wrap {
    gap: 0 50px;
    margin-top: 10px;
  }
}

.feature__name {
  display: flex;
  gap: 16px;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .feature__name {
    gap: 20px;
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .feature__name {
    font-size: 3.4rem;
  }
}

.feature__name-en {
  display: flex;
  gap: 6px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .feature__name-en {
    font-size: 1.3rem;
  }
}

.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .feature__tags {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}

.feature__lead-text {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: 1px solid #2b2b21;
  border-bottom: 1px solid #2b2b21;
}
@media (min-width: 768px) {
  .feature__lead-text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
@media (min-width: 1024px) {
  .feature__lead-text {
    font-size: 2rem;
    line-height: 2.3;
  }
}

.feature__lead-inner {
  max-width: 786px;
  padding-block: 20px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .feature__lead-inner {
    padding-block: 30px;
  }
}

/*******************************
 links
 *******************************/
.links {
  max-width: 1090px;
  padding-inline: 20px;
  margin-inline: auto;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .links {
    margin-top: 100px;
  }
}
@media (min-width: 1024px) {
  .links {
    margin-top: 120px;
  }
}

.links__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.links__item {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #737373;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .links__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
  }
}
@media (min-width: 1024px) {
  .links__item {
    padding: 10px 30px;
  }
}

.links__name {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .links__name {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .links__name {
    font-size: 1.8rem;
  }
}

.links__url {
  margin-top: 5px;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .links__url {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .links__url {
    font-size: 1.6rem;
  }
}

/*******************************
 editorial
 *******************************/
.editorial {
  font-family: "Noto Sans JP", sans-serif;
  background: #f0f0f0;
}

.edit-page__editorial {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .edit-page__editorial {
    margin-top: 80px;
  }
}

.editorial__inner {
  max-width: 786px;
  padding-block: 40px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .editorial__inner {
    padding-block: 70px;
  }
}

.editorial__section-title {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .editorial__section-title {
    font-size: 2rem;
  }
}

.editorial__section-subtitle {
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .editorial__section-subtitle {
    margin-top: 40px;
    font-size: 3.3rem;
  }
}

.editorial__person-name {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .editorial__person-name {
    margin-top: 40px;
    font-size: 2.5rem;
  }
}

.editorial__body {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .editorial__body {
    margin-top: 50px;
  }
}

.editorial__body p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .editorial__body p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .editorial__body p {
    font-size: 1.7rem;
  }
}

.editorial__body p + p {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .editorial__body p + p {
    margin-top: 40px;
  }
}

.editorial__figure-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .editorial__figure-wrap {
    gap: 40px;
    margin-top: 50px;
  }
}
@media (min-width: 960px) {
  .editorial__figure-wrap {
    position: relative;
    left: 50%;
    width: 860px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.editorial__img {
  width: 100%;
}

.editorial__caption {
  margin-top: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .editorial__caption {
    margin-top: 15px;
    font-size: 1.5rem;
  }
}

.editorial__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .editorial__button-wrap {
    margin-top: 70px;
  }
}

.editorial__button {
  display: inline-block;
  padding: 10px 40px;
  font-size: 1.4rem;
  color: #2b2b21;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: #fff;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
  .editorial__button {
    padding: 10px 70px;
    font-size: 1.6rem;
  }
}

.editorial__button:hover {
  color: #fff;
  background-color: #2b2b21;
}

/*******************************
 NEWS
 *******************************/
.edit-content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 786px;
  padding-inline: 20px;
  margin-inline: auto;
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .edit-content {
    row-gap: 50px;
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .edit-content {
    row-gap: 60px;
    margin-top: 80px;
  }
}

.edit-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .edit-content h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .edit-content h2 {
    font-size: 2.3rem;
  }
}

.edit-content p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .edit-content p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .edit-content p {
    font-size: 1.7rem;
  }
}

@media (min-width: 960px) {
  .edit-content figure {
    position: relative;
    left: 50%;
    width: 860px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.edit-content figcaption {
  margin-top: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .edit-content figcaption {
    margin-top: 15px;
    font-size: 1.5rem;
  }
}

@media (min-width: 960px) {
  .edit-content hr.wp-block-separator {
    position: relative;
    left: 50%;
    width: 920px;
    max-width: none;
    border-top: 1px solid;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .edit-content hr.wp-block-separator {
    width: 980px;
  }
}
@media (min-width: 1280px) {
  .edit-content hr.wp-block-separator {
    width: 1050px;
  }
}

.edit-content .is-style-interviewer-text {
  padding: 15px;
  font-weight: 600;
  line-height: 1.6;
  background: #f0f0f0;
}
@media (min-width: 960px) {
  .edit-content .is-style-interviewer-text {
    position: relative;
    left: 50%;
    width: 920px;
    max-width: none;
    padding: 30px 87px;
    line-height: 2;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .edit-content .is-style-interviewer-text {
    width: 980px;
    padding: 30px 117px;
  }
}
@media (min-width: 1280px) {
  .edit-content .is-style-interviewer-text {
    width: 1050px;
    padding: 30px 152px;
  }
}

/*******************************
404
 *******************************/
.not-found {
  max-width: 1090px;
  padding-inline: 20px;
  margin-inline: auto;
  border-top: 1px solid #2b2b21;
}
@media (min-width: 1024px) {
  .not-found {
    max-width: 1050px;
    padding-inline: 0;
  }
}

.not-found__inner {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .not-found__inner {
    padding: 55px 0;
  }
}

.not-found__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .not-found__header {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .not-found__header {
    gap: 70px;
    padding-left: 25px;
  }
}

.not-found__heading {
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .not-found__heading {
    font-size: 3rem;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .not-found__heading {
    font-size: 3.4rem;
  }
}

.not-found__desc {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .not-found__desc {
    font-size: 1.5rem;
  }
}

.not-found__txt-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .not-found__txt-wrap {
    font-size: 1.6rem;
  }
}

/*******************************
 スクロール
 *******************************/
.scroll {
  display: none;
}
@media (min-width: 768px) {
  .scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 9;
    display: inline-block;
    padding: 5px 15px;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity 0.3s;
  }
}

.scroll.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.scroll::after {
  content: "Scroll";
}

.scroll__wrap {
  position: relative;
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.scroll__wrap span {
  position: absolute;
  top: 0;
  left: 50%;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  animation: sdb 1.5s infinite;
}

@keyframes sdb {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translate(-15px, 15px);
  }
}
/*******************************
 共通パーツ
 *******************************/
/***** ページネーション *****/
.nav-links {
  display: flex;
  gap: 12px;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #000;
  border: 1px solid #000;
  border-radius: 15px;
}

.page-numbers.current {
  color: #fff;
  background-color: #000;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

/***** ページ送り *****/
.post-nav {
  position: relative;
  clear: both;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .post-nav {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .post-nav {
    margin-top: 90px;
  }
}

.post-nav__item {
  display: inline-block;
  width: auto;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .post-nav__item {
    font-size: 1.7rem;
  }
}

.post-nav__item a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: 0.2s linear;
  transition-property: all;
}

.post-nav__item.post-nav__item--home a {
  color: #fff;
  background: #737373;
}

.post-nav__item a:hover {
  text-decoration: underline;
}

.post-nav__item.post-nav__item--home a:hover {
  text-decoration: none;
}

/***** トップページへ戻る *****/
.toppage-back {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .toppage-back {
    margin-top: 70px;
  }
}

.toppage-back__button {
  display: inline-block;
  padding: 10px 40px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: #2b2b21;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
  .toppage-back__button {
    padding: 10px 70px;
    font-size: 1.6rem;
  }
}

/*******************************
 レスポンシブUtility
 *******************************/
.tb-none {
  display: block;
}
@media (min-width: 768px) {
  .tb-none {
    display: none;
  }
}

.tb-show {
  display: none;
}
@media (min-width: 768px) {
  .tb-show {
    display: block;
  }
}