@charset "UTF-8";
.pro {
  background-color: #fff;
}
.pro-wrap {
  padding: 80px 0 150px 0;
}
.pro-wrap__body {
  padding: 80px 100px;
  background-color: #f6f6f8;
  border-radius: 20px;
}
.pro-wrap__body__top {
  display: flex;
  justify-content: space-between;
}
.pro-wrap__body__left {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
.pro-wrap__body__left__con h4 {
  font-size: 18px;
  line-height: 2;
  font-weight: 100;
}
.pro-wrap__body__left__con__txt {
  line-height: 2;
  font-size: 14px;
}
.pro-wrap__body__right {
  position: relative;
  width: 36%;
}
.pro-wrap__body__right img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pro-wrap__body {
  opacity: 0;
  transform: translateY(140px) scale(0.96);
  -webkit-filter: blur(12px);
  filter: blur(12px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease,
    -webkit-filter 1.6s ease;
}

.pro-wrap__body.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  -webkit-filter: blur(0);
  filter: blur(0);
}
.profile-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pro-wrap__body__left p {
  font-size: 16px;
  line-height: 2;
  font-weight: 100;
}
.pro-wrap__body__left p.profile-name {
  font-size: 32px;
}
.pro-wrap__body__left p.profile-company {
  font-size: 18px;
}
.pro-wrap__body__left p.profile-career {
  font-size: 16px;
}
.profile-url a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}
.pro-wrap__body__left p span {
  margin-left: 5px;
  font-size: 16px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1080px) {
  .pro-wrap__body {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 560px) {
  .pro-wrap__body {
    background-color: #f6f6f8;
  }
  .pro-wrap__body__left__con h4 {
    font-size: 16px;
  }
  .pro-wrap__body__left__con__txt {
    font-size: 12px;
  }
  .pro-wrap__body__left p.profile-name {
    font-size: 24px;
  }
  .pro-wrap__body__left p span {
    font-size: 12px;
  }
  .pro-wrap__body__left p.profile-company {
    font-size: 16px;
  }
  .pro-wrap__body__left p {
    font-size: 14px;
  }

  .pro-wrap__body__left p {
    font-size: 14px;
  }
}
/* ===== NTEETH Achievements ===== */
.nt-achievements {
  margin: 0 auto;
  padding: 64px 0;
}

.nt-achievements__head {
  margin-bottom: 28px;
}

.nt-achievements__title {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: #000000;
  font-weight: 100;
  text-align: center;
}

.nt-achievements__lead {
  margin: 0;
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  text-align: center;
  color: #000000;
}

/* group */
.nt-group {
  border-top: 1px solid #e6e6e6;
}

.nt-group:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.nt-group__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}

.nt-group__summary::-webkit-details-marker {
  display: none;
}

.nt-group__label {
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.04em;
}
/* “＋ / −”のミニマルアイコン */
.nt-group__summary {
  position: relative;
  padding-right: 34px;
}
.nt-group__summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(#000000, #000000) center/14px 1.5px no-repeat,
    linear-gradient(#000000, #000000) center/1.5px 14px no-repeat;
}
.nt-group[open] > .nt-group__summary::after {
  background: linear-gradient(#000000, #000000) center/14px 1.5px no-repeat;
}

/* body */
.nt-group__body {
  padding: 14px 0 20px;
  display: grid;
  gap: 14px;
  color: #000000;
}

/* paper card */
.nt-paper {
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: #fff;
}

.nt-paper__title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000000;
  font-weight: 500;
  width: 94%;
}

.nt-paper__meta {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 400;
}

.nt-paper__sep {
  color: #c7c7c7;
}

.nt-paper__year {
  margin-left: auto; /* 年を右寄せにして“整って見える” */
  color: #000000;
}

/* highlight name (控えめ金) */
.nt-paper__authors strong {
  color: #000000; /* nteethでよく使ってる金寄り */
  font-weight: 700;
}

/* links */
.nt-paper__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nt-linkbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #000000;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.nt-linkbtn:hover {
  border-color: #000000;
}

/* mobile */
@media (max-width: 600px) {
  .nt-paper {
    padding: 16px 14px 14px;
  }
  .nt-paper__year {
    margin-left: 0;
  }
}
@media screen and (max-width: 850px) {
  .pro-wrap__body {
    padding: 20px 10px;
  }
  .pro-wrap__body__top {
    flex-direction: column-reverse;
  }
  .pro-wrap__body__left {
    max-width: none;
    gap: 10px;
    width: 100%;
  }
  .pro-wrap__body__right img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0 auto;
    transform: none;
  }
  .pro-wrap__body__right {
    width: 260px;
    margin: 0 auto;
  }
  .pro-wrap__body__left {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 300px;
  }
}
