@charset "UTF-8";

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.projects-detail {
  background: #fff;
  padding: 100px 24px 138px;
  color: #535456;
}

@media (max-width: 768px) {
  .projects-detail {
    padding: 40px 20px 120px;
  }
}

.project-container {
  max-width: 1024px;
  margin: 0 auto;
  text-decoration: none;
}

@media (max-width: 768px) {
  .project-container {
    width: 100%;
    margin: 38px auto 0;
  }
}

.project-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  padding-bottom: 48px;
  letter-spacing: -0.006em;
}

@media (max-width: 768px) {
  .project-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.005em;
    padding-bottom: 40px;
  }
}

.project-visual {
  width: 100%;
  margin-bottom: 78px;
  overflow: hidden;
  border: 0.68px solid #C1C1C1;
}

@media (max-width: 768px) {
  .project-visual {
  margin-bottom: 52px;
  }
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-members,
.project-content-list {
    max-width: 748px;
    margin: 0 auto;
}

.project-members {
  margin-bottom: 60px;
}

.project-section-title {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: -0.006em;
}

.members-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* .member-list {
  display: flex;
  gap: 48px;
} */

.member-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PC時は横2列 */
  gap: 48px;                             /* 横と縦の隙間 */
}

/* .member-item {
  display: flex;
  gap: 20px;
} */
/* 各メンバー全体の枠：役職を上に、写真・情報を下に縦並びにする */
.member-item {
  display: flex;
  flex-direction: column; 
  gap: 8px; /* 役職と（写真・名前）の間のすき間 */
}

/* 新設：写真と名前を横並びにする */
.member-body {
  display: flex;
  gap: 20px; /* 写真と名前の間のすき間 */
}


.member-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 16px;
  line-height: 26px;
  color: #4A5565;
  letter-spacing: -0.003em;
}

.members-list {
  padding-left: 1rem;
}
.members-right .members-list li {
  list-style: disc;
}

.project-content {
  margin-bottom: 64px;
}

.project-content .project-mail {
  color: #535456;
  text-decoration: none;
}

.project-content .project-pdf {
  color: #76A7BE;
  transition: opacity 0.3s ease;
}

.project-content .project-pdf:hover {
  opacity: 0.7;
}

.project-text {
  font-size: 16px;
  line-height: 28px;
}

.project-activity-list {
  padding-left: 1.2rem;
}

.project-activity-list li {
  list-style: disc;
  font-size: 16px;
  line-height: 28px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .project-detail {
    padding: 40px 20px 80px;
  }

  .project-visual {
    height: 189px;
  }

  /* .member-list {
    flex-direction: column;
    gap: 40px;
  } */
  .member-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .member-item {
    width: 100%;
  }
}

/* NEWS */
.news-section {
  background-color: #fff;
  color: #535456;
  padding: 64px 24px;
}

@media (max-width: 768px) {
  .news-section {
  padding: 80px 20px;
  }
}

.news-container {
  max-width: 1024px;
  margin: 0 auto;
}

.news-header {
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .news-header {
  margin-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .news-list {
  margin-bottom: 60px;
  }
}

.news-list .news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #535456;
}

@media (max-width: 768px) {
  .news-list .news-item {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* .news-list .news-item:hover {
  color: #76A7BE;
  cursor: pointer;
} */

.news-list .news-date,
.news-list .news-category,
.news-list .news-title {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
}

.news-list .news-date {
  min-width: 80px;
  flex-shrink: 0;
}

.news-list .news-category {
  background-color: #F2FAFD;
  padding: 0px 4px;
  min-width: 80px;
  text-align: center;
}

.news-list .news-title {
  flex: 1;
}

@media (max-width: 768px) {
  .news-list .news-date,
  .news-list .news-category {
    flex: 0 0 auto;
  }

  .news-list .news-date {
    min-width: auto;
  }

  .news-list .news-category {
    font-size: 12px;
    line-height: 20px;
    padding: 0px 2px;
    font-weight: 200;
    text-align: center;
    min-width: 90px;
    max-width: 90px;
  }

  .news-list .news-title {
    flex: 0 0 100%;
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    font-weight: 300;
  }
}

.project-features-img iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.project-features-list {
  margin-bottom: 100px;
}

.project-content-video {
  margin-bottom: 72px;
}

.project-detail-btn {
  color: rgb(255, 255, 255);
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    cursor: pointer;
    max-width: 174px;
    display: block;
    text-align: center;
    background: rgb(118, 167, 190);
    padding: 16px 38px;
    transition: 0.3s;
    margin: 0px auto;
    text-decoration: none;
}

