/* =========================================
   Recruit / People Page (人を知る) 専用
   追記分のみ：../css/recruit-people.css
   ※既存の recruit.css / common.css を汚さない
========================================= */

/* ----------
   Blocks
---------- */
.people-block{
  padding: 64px 0 72px;
  background: #fff;
}

/* 薄グレー背景（Members想定）をフルブリード */
.people-block--alt{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #f4f4f4;
}

/* ----------
   Intro
---------- */
.people-intro{
  display: grid;
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

.people-intro__text p{
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 1em;
  color: rgba(0,0,0,.62);
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.people-intro__text p:last-child{
  margin-bottom: 0;
}

.people-intro__media img{
  width: 100%;
  height: auto;
  display: block;
}

/* ----------
   Members
---------- */
.people-members{
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.people-member{
  background: #fff;
  overflow: hidden;
}

.people-member__media{
  background: #fff;
}

.people-member__media img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.people-member__body{
  padding: 16px 16px 18px;
}

.people-member__name{
  margin: 0 0 10px;
  font-family: "Google Sans", sans-serif;
  font-weight: 600;
   font-size: 18px;
  letter-spacing: .06em;
  color: #183D49;
}

.people-member__name span{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: rgba(0,0,0,.56);
  font-size: 13px;
  letter-spacing: .08em;
}

.people-member__text{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0,0,0,.62);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

/* ----------
   A Day
---------- */
.people-day{
  display: grid;
  gap: 32px;
  align-items: start;
  margin-top: 18px;
}

.people-time{
  padding: 12px 0;
}

.people-time__title{
  margin: 0 0 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  color: #183D49;
  font-size: 22px;
  line-height: 1.6;
}

.people-time__time{
  font-family: "Google Sans", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  color: #A8C81F;
  margin-right: 10px;
}

.people-time__desc{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.people-day__note{
  margin: 18px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0,0,0,.5);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.people-day__profile{
  text-align: center;
}

.people-day__profile img{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 6px;
}

.people-day__caption{
  margin: 14px 0 8px;
  font-family: "Google Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  color: #183D49;
}

.people-day__caption span{
  font-weight: 700;
}

.people-day__bio{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0,0,0,.62);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

/* =========================================
   Media Queries
========================================= */
@media (min-width: 768px){

  .people-intro{
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: start;
  }

  .people-intro__text p{
    font-size: 18px;
  }

  .people-members{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .people-member__media img{
    height: 200px;
  }

  .people-day{
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: start;
  }

}

@media (max-width: 767px){
	
.people-intro__text p{
    font-size: 15px;
  }

.people-member{
  width: 80%;
  margin: 0 auto;
}

.people-member__name{
   font-size: 15px;
}

.people-member__name span{
  font-size: 11px;
}

.people-member__text{
  font-size: 13px;

}

  .people-day{
    display: flex;
    flex-direction: column;
  }

  .people-day__profile{
    order: -1; /* タイムラインより上に */
    margin-bottom: 24px;
  }
  
.people-time__title{
  font-size: 18px;
}

.people-time__desc{
  font-size: 13px;
}

.people-day__note{
  font-size: 13px;
}

.people-day__profile img{
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 6px;
}

.people-day__bio{
  font-size: 13px;
}

  .people-block{
    padding: 44px 0 54px;
  }
}
