@charset "UTF-8";

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

body {
  font-family: 'メイリオ', Meiryo,sans-serif;
  color: #333;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

a:hover,
button:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.visible-pc{
  display: block;
}

.visible-sp{
  display: none;
}


/* ------------------------------
  ヘッダー
------------------------------ */

.header {
  padding-top: 35px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.header__logo {
  width: 358px;
}

.header__logo img {
  width: 100%;
}

.header__page-title {
  width: 237px;
  height: 37px;
  line-height: 37px;
  font-size: 13px;
  font-weight: bold;
  background-color: #1DDB07;
  color: #fff;
  border: 1px solid #fff;
  outline: 3px solid #1DDB07;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
}

.header__breadcrumb {
  font-size: 11px;
  margin-bottom: 18px;
  line-height: 20px;
}

.header__breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__breadcrumb-item a {
  color: #1558D6; /* 青色（仮） */
  text-decoration: none;
}

.header__breadcrumb-item a:hover {
  text-decoration: underline;
}

.header__breadcrumb-item + .header__breadcrumb-item::before {
  content: ">";
  margin: 0 4px;
}

/* ------------------------------
  メインビジュアル
------------------------------ */

.main-visual {
  margin-bottom: 80px;
}

.main-visual img {
  width: 100%;
  aspect-ratio: 1600 / 500;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-height: 500px;/*メインビジュアルの高さがカンプでは500pxのため、画面幅が広くなってもそれ以上に拡大しすぎないよう max-height を指定しています*/
}

/* ------------------------------
  メイン
------------------------------ */

.intro {
  margin-bottom: 98px;
}

.intro__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 41px;
  line-height: 28px;
}

.intro__text {
  font-size: 13px;
  line-height: 20px;
}

/* ------------------------------
  スタッフ紹介
------------------------------ */

.staff-list {
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px clamp(20px, 5vw, 75px);
  margin-bottom: 65px;
}

.staff-card {
  position: relative;
}

.staff-card.new::before {
  content: "NEW";
  position: absolute;
  top: 220px;
  left: -24px;
  background-color: #FFF100;
  color: #000;
  font-family: 'Segoe UI',sans-serif;
  font-size: 7px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.staff-card.new::after {
  content: "";
  position: absolute;
  top: 234px;
  left: -9px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #FFF100;
  transform: rotate(15deg);
}

.staff-card__img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: solid 10px #F1F1F1;
  margin: 0 auto 37px;
}

.staff-card__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 20px;
}

.staff-card__date {
  font-size: 11px;
  margin-bottom: 8px;
  display: block;
  line-height: 20px;
}

.staff-card__text {
  font-size: 13px;
  margin-bottom: 13px;
  line-height: 20px;
}

.staff-card__more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 20px;
  gap: 7px;
  position: relative;
}

.staff-card__more::after {
  content: "";
  width: 25.5px;
  height: 1px;
  background-color: #707070;
  position: relative;
  top: 3px;
}

.staff-card__more::before {
  content: "";
  width: 7px;
  height: 1px;
  border-top: 1px solid #707070;
  transform: rotate(35deg);
  position: absolute;
  top: 10px;
  right: 0px;
}

.staff-list__more {
  width: 240px;
  height: 44px;
  margin: 0 auto 128px;
}

.btn-staff-list {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 21px;
  background-color: #1DDB07;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 12px;
  position: relative;
}

.btn-staff-list__arrow {
  display: block;
  width: 25.5px;
  height: 1px;
  background-color: #fff;
  position: relative;
  top: 3px;
}

.btn-staff-list__arrow::before {
  content: "";
  width: 7px;
  height: 1px;
  border-top: 1px solid #fff;
  transform: rotate(35deg);
  position: absolute;
  top: -2px;
  right: 0px;
}

/* ------------------------------
  バナー
------------------------------ */

.banner-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px clamp(20px, 5vw, 48px);
  margin-bottom: 48px;
}

.banner{
  display: flex;
  max-width: 219px;
  aspect-ratio: 219 / 72;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

/* ------------------------------
  フッター
------------------------------ */

.footer{
  background-color: #F5F5F5;
  padding: 50px 0 30px;
}

.footer__inner{
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}

.footer__info-company {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 19px;
  line-height: 20px;
}

.footer__info-address,
.footer__info-contact {
  font-size: 12px;
  line-height: 20px;
}

.footer__nav{
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 0px 10px;
}

.footer__link{
  display: flex;
  width: 120px;
  height: 40px;
  background-color: #fff;
  border: solid 1px #D6D5D5;
  font-size: 13px;
  justify-content: center;
  align-items: center;
}

.footer__copyright{
  font-size: 12px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* ------------------------------
  スタッフ一覧
------------------------------ */

.list .header__breadcrumb{
  margin-bottom: 74px;
}

.list .intro__title {
  margin-bottom: 96px;
}

.list .staff-list{
  margin-bottom: 104px;
}

.list .staff-card__date {
  margin-bottom: 6px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 25px 55px 19px; 
  border-top: 5px solid #1DDB07;
  border-bottom: 5px solid #1DDB07;
  margin-bottom: 111px;
}

.pagination__prev,
.pagination__next{
  position: relative;
}

.pagination__prev::after,
.pagination__next::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 7px;
}

.pagination__prev::after{
  left: -22px;
}

.pagination__next::after {
  right: -22px;
}

.pagination__prev::before,
.pagination__next::before {
  content: "";
  display: block;
  width: 7px;
  height: 1px;
  border-top: 1px solid #707070;
  position: absolute;
  top: 5px;
}

.pagination__prev::before{
  transform: rotate(155deg);
  left: -22px;
}

.pagination__next::before {
  transform: rotate(35deg);
  right: -22px;
}

/* ------------------------------
  スタッフ詳細
------------------------------ */

.detail .header__breadcrumb{
  margin-bottom: 68px;
}

.detail__content {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.detail__main {
  max-width: 640px;
  flex: 1 1 640px;
}

.detail__interview {
  max-width: 258px;
  flex: 0 1 258px;
}

.detail__name {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 52px;
}

.detail__img-wrapper {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 10px solid #F1F1F1;
  overflow: hidden;
  margin: 0 auto 25px;
}

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

.detail__date {
  font-size: 11px;
  margin-bottom: 6px;
  display: block;
  line-height: 20px;
}

.detail__sns {
  display: flex;
  gap: 4px;
  margin-bottom: 75px;
}

.sns-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #707070;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 20px;
}

.staff-message-block {
  margin-bottom: 77px;
}

.staff-message__inner>.staff-message-block:last-child {
  margin-bottom: 13px;
}

.staff-message-block__title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 32px;
}

.staff-message-block__img {
  width: 274px;
  margin-bottom: 45px;
  border-radius: 20px;
  overflow: hidden;
}

.is-img-right>.staff-message-block__img{
  float: right;
  margin-left: 40px;
}

.is-img-left>.staff-message-block__img{
  float: left;
  margin-right: 40px;
}

.is-no-img>.staff-message-block__img {
  display: none;
}

.is-no-img>.staff-message-block__text {
  width: 100%;
}

.staff-message-block__text {
  font-size: 13px;
  line-height: 26px;
  margin-bottom: 24px;
}

.staff-message-block__text:last-of-type {
  margin-bottom: 0px;
}

.staff-message__divider {
  margin: 0 auto 42px;
  text-align: center;
  font-size: 13px;
  line-height: 24px;
  clear: both;
}

.btn--back {
  display: flex;
  width: 240px;
  height: 44px;
  align-items: center;
  padding-left: 44px;
  background-color: #1DDB07;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  margin: 0 auto 60px;
  position: relative;
}

.btn--back::after {
  content: "";
  width: 25.5px;
  height: 1px;
  background-color: #fff;
  position: relative;
  top: 0px;
  left: 21px;
}

.btn--back::before {
  content: "";
  width: 7px;
  height: 1px;
  border-top: 1px solid #fff;
  transform: rotate(35deg);
  position: absolute;
  top: 19px;
  right: 32px;
}

.detail .pagination {
  margin-bottom: 68px;
}



/* ------------------------------
  スタッフ詳細(インタビュー)
------------------------------ */

.detail__interview-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 16px;
}

.detail__interview-item {
  border-top: 1px dashed #727272;
  padding: 24px 0 18px;
}

.detail__interview-item:last-of-type {
  border-bottom: 1px dashed #727272;
}

.detail__interview-link {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.detail__interview-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #F1F1F1;
}

.detail__interview-name {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: -2px;
}

.detail__interview-date {
  font-size: 11px;
  line-height: 20px;
  color: #333;
}

/* ------------------------------
  レスポンシブ
------------------------------ */


@media (max-width: 767px) {

  .visible-pc{
    display: none;
  }

  .visible-sp{
    display: block;
  }

  .header {
    padding-top: 27px;
  }

  .header__inner {
    display: block;
    margin-bottom: 21px;
  }

  .header__logo {
    width: 85%;
    margin: 0 auto;
  }

  .header__breadcrumb {
    margin-bottom: 16px;
  }

  /* ------------------------------
    メインビジュアル
  ------------------------------ */

  .main-visual {
    margin-bottom: 45px;
  }
  
  .main-visual img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: auto;
  }

  /* ------------------------------
    メイン
  ------------------------------ */

  .intro {
    margin-bottom: 83px;
  }


  .intro__title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  /* ------------------------------
    スタッフ紹介
  ------------------------------ */

  .staff-list {
    grid-template-columns: 1fr;
    gap: clamp(33px, 5vw, 36px);
    margin-bottom: 83px;
  }
  
  .staff-card {
    padding: 0 21px;
  }

  .staff-card.new::before {
    left: 0px;
  }

  .staff-card.new::after {
    left: 16px;
  }

  .staff-card__img {
    margin-bottom: 41px;
  }

  .staff-card__date {
    margin-bottom: 6px;
  }

  .staff-card__title {
    margin-bottom: 4px;
  }

  .staff-list__more {
    margin-bottom: 83px;
  }

  /* ------------------------------
    フッター
  ------------------------------ */

  .footer{
    padding: 38px 0 34px;
  }

  .footer__inner{
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 36px;
  }

  .footer__nav{
    margin: 0 auto 27px;
    gap: 10px;
  }

  .footer__copyright{
    font-size: 12px;
    padding: 0 30px;
    text-align: left;
  }



  /* ------------------------------
    スタッフ一覧
  ------------------------------ */

  .list .header__breadcrumb{
    margin-bottom: 38px;
  }

  .list .intro__title {
    margin-bottom: 43px;
  }

  .list .staff-list{
    margin-bottom: 119px;
    gap: clamp(30px, 5vw, 36px);
  }
  
  .list .staff-card__img {
    margin-bottom: 44px;
  }

  .detail .pagination {
    padding: 23px 22px 21px; 
    margin-bottom: 113px;
  }

  /* ------------------------------
    スタッフ詳細
  ------------------------------ */

  .detail .header__breadcrumb{
    margin-bottom: 32px
  }

  .detail__name {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 35px;
  }

  .detail__img-wrapper {
    margin-bottom: 35px;
  }

  .staff-message-block {
    margin-bottom: 52px;
  }

  .staff-message-block__title {
    margin-bottom: 28px;
  }

  .staff-message-block__text {
    line-height: 24px;
  }

  .staff-message-block__img{
    width: 100%;
    margin-bottom: 21px;
  }

  .staff-message-block__img img{
    width: inherit;
  }
  .is-img-right>.staff-message-block__img{
    float: none;
    margin-left: 0;
  }

  .is-img-left>.staff-message-block__img{
    float: none;
    margin-right: 0;
  }

  .staff-message-block__text {
    margin-bottom: 50px;
  }

  .staff-message-block__text:last-of-type {
    margin-bottom: 54px;
  }

  .staff-message__divider {
    margin-bottom: 58px;
  }

  .btn--back {
    margin-bottom: 48px;
  }




}

