@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Roboto:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.skills-list {
  padding: 0 40px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .skills-list {
    padding: 0;
    gap: 40px;
    flex-direction: column;
    margin: 0 -25px;
  }
}
.skills-list__item {
  width: calc(50% - 40px);
  border-bottom: 1px dashed #223562;
}
@media (max-width: 767px) {
  .skills-list__item {
    width: 100%;
  }
}
.skills-list__link {
  display: block;
  position: relative;
  padding-bottom: 40px;
  height: 100%;
}
@media (max-width: 767px) {
  .skills-list__link {
    padding: 0 25px 65px;
  }
}
@media (min-width: 1024px) {
  .skills-list__link:hover .skills-list__img img {
    transform: scale(1.05);
  }
}
.skills-list__img {
  overflow: hidden;
  position: relative;
}
.skills-list__img img {
  transition: transform 0.4s ease;
  transform: scale(1);
}
.skills-list__img::before {
  content: "";
  width: 5px;
  height: 100%;
  display: block;
  background: #3749c2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.skills-list__title {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .skills-list__title {
    margin-top: 25px;
  }
}
.skills-list__title-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .skills-list__title-main {
    font-size: 1.9rem;
  }
}
.skills-list__title-sub {
  margin-top: 12px;
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .skills-list__title-sub {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.skills-list__description {
  width: calc(100% - 126px);
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .skills-list__description {
    width: 100%;
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.skills-list .oval {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media (max-width: 767px) {
  .skills-list .oval {
    bottom: 25px;
    right: 25px;
  }
}
.skills-list .oval-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.skills-list .oval-icon::before, .skills-list .oval-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background-image: url(../../images/common/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.skills-list .oval-icon::before {
  transform: translate(0, 0);
}
.skills-list .oval-icon::after {
  transform: translate(-12px, 12px);
}
@media (max-width: 767px) {
  .skills-list .oval-icon {
    width: 7px;
    height: 7px;
  }
  .skills-list .oval-icon::before, .skills-list .oval-icon::after {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1024px) {
  .skills-list__link:hover .oval-icon::before {
    transform: translate(12px, -12px);
  }
  .skills-list__link:hover .oval-icon::after {
    transform: translate(0, 0);
  }
}

.person-contents__inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .person-contents__inner {
    width: calc(100% + 50px);
    margin: 0 -25px;
  }
}

.person-section {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .person-section {
    margin-top: 80px;
  }
}
.person-section + .person-section {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .person-section + .person-section {
    margin-top: 80px;
  }
}
.person-section--future .person-section__inner {
  flex-direction: column;
  width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .person-section--future .person-section__inner {
    width: 100%;
  }
}
.person-section--future .person-section__inner {
  gap: 80px;
}
.person-section--future .person-section__header {
  width: 100%;
  max-width: 100%;
}
.person-section--future .person-section__title {
  text-align: center;
}
@media (max-width: 767px) {
  .person-section--future .person-section__title {
    text-align: left;
  }
}
.person-section--future .person-section__lead {
  text-align: center;
}
@media (max-width: 767px) {
  .person-section--future .person-section__lead {
    text-align: left;
  }
}
.person-section--future .person-section__lead::before, .person-section--future .person-section__lead::after {
  left: 50%;
}
@media (max-width: 767px) {
  .person-section--future .person-section__lead::before, .person-section--future .person-section__lead::after {
    left: 0;
  }
}
.person-section--future .person-section__lead::before {
  transform: translateX(-10px);
}
@media (max-width: 767px) {
  .person-section--future .person-section__lead::before {
    transform: none;
  }
}
.person-section--future .person-section__lead::after {
  transform: translateX(10px);
}
@media (max-width: 767px) {
  .person-section--future .person-section__lead::after {
    transform: none;
    left: 20px;
  }
}
.person-section--foster {
  margin-top: 160px;
}
.person-section__inner {
  display: flex;
  gap: 40px 100px;
}
@media (max-width: 767px) {
  .person-section__inner {
    flex-direction: column;
  }
}
.person-section__header {
  width: 43.333%;
  max-width: 460px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .person-section__header {
    width: 100%;
    max-width: 100%;
  }
}
.person-section__title {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .person-section__title {
    padding: 0 25px;
  }
}
.person-section__title-main {
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3749c2;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .person-section__title-main {
    font-size: 1.2rem;
  }
}
.person-section__title-sub {
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #223562;
  font-size: 14rem;
}
@media (max-width: 767px) {
  .person-section__title-sub {
    font-size: 7.8rem;
    margin-left: -15px;
  }
}
.person-section__image {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .person-section__image {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .person-section__content {
    padding: 0 25px;
  }
}
.person-section__lead {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .person-section__lead {
    font-size: 2rem;
  }
}
.person-section__lead::before, .person-section__lead::after {
  content: "";
  width: 20px;
  height: 5px;
  display: block;
  position: absolute;
}
@media (max-width: 767px) {
  .person-section__lead::before, .person-section__lead::after {
    height: 3px;
  }
}
.person-section__lead::before {
  background: #3749c2;
  bottom: 0;
}
.person-section__lead::after {
  background: #a2adf2;
  bottom: 0;
  left: 20px;
}
.person-section__text {
  line-height: 2.2;
}
@media (max-width: 767px) {
  .person-section__text {
    font-size: 1.4rem;
  }
}
.person-section__text + .person-section__text {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .person-section__text + .person-section__text {
    margin-top: 2rem;
  }
}
.person-section + .common-notes {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .person-section + .common-notes {
    margin-top: 40px;
    padding-right: 25px;
  }
}

.structure-columns {
  margin-top: 60px;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .structure-columns {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
}
.structure-columns__block {
  flex: 1 1 50%;
}
@media (max-width: 767px) {
  .structure-columns__block {
    order: 1;
  }
}
.structure-columns__text {
  flex: 1;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .structure-columns__text {
    order: 0;
    font-size: 1.4rem;
  }
}
.structure-columns__image {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .structure-columns__image {
    width: 160px;
  }
}

.future-columns {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .future-columns {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
}
.future-columns__image {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .future-columns__image {
    width: 160px;
  }
}
.future-columns__block {
  flex: 1 1 auto;
  align-self: flex-end;
}
@media (max-width: 767px) {
  .future-columns__block {
    align-self: flex-start;
  }
}
.future-columns__caption {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .future-columns__caption {
    font-size: 1.4rem;
  }
}

.lab-profile {
  padding-bottom: 40px;
  border-bottom: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .lab-profile__inner {
    padding: 0 25px;
  }
}
.lab-profile__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .lab-profile__label {
    font-size: 1.3rem;
  }
}
.lab-profile__lead {
  margin-top: 10px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .lab-profile__lead {
    font-size: 2.2rem;
  }
}
.lab-profile__body {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 767px) {
  .lab-profile__body {
    margin-top: 20px;
    flex-direction: column;
  }
}
.lab-profile__main {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 767px) {
  .lab-profile__main {
    width: 100%;
    gap: 0 20px;
  }
}
.lab-profile__photo {
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lab-profile__photo {
    width: 160px;
  }
}
.lab-profile__info {
  display: flex;
  flex-direction: column;
}
.lab-profile__name {
  display: flex;
  flex-direction: column;
}
.lab-profile__name-ja {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lab-profile__name-ja {
    font-size: 1.8rem;
  }
}
.lab-profile__name-en {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(34, 53, 98, 0.6);
}
.lab-profile__data {
  width: 400px;
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lab-profile__data {
    width: auto;
    flex: 1;
    font-size: 1.2rem;
  }
}
.lab-profile__text-wrap {
  flex: 1;
}
@media (max-width: 767px) {
  .lab-profile__text-wrap {
    margin-top: 20px;
    width: 100%;
  }
}
.lab-profile__text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.lab-scene__item {
  display: flex;
  gap: 40px 80px;
}
@media (max-width: 767px) {
  .lab-scene__item {
    flex-direction: column;
  }
}
.lab-scene__item + .lab-scene__item {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px dashed #223562;
}
@media (max-width: 767px) {
  .lab-scene__item + .lab-scene__item {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.lab-scene__image {
  width: 48%;
  max-width: 480px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lab-scene__image {
    flex: none;
    width: 100%;
  }
}
.lab-scene__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .lab-scene__label {
    font-size: 1.3rem;
  }
}
.lab-scene__title {
  margin-top: 40px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .lab-scene__title {
    margin-top: 10px;
    font-size: 2.2rem;
  }
}
.lab-scene__text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .lab-scene__text {
    font-size: 1.4rem;
  }
}
.lab-scene__text p + p {
  margin-top: 2rem;
}

.lab-facilities {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px dashed #223562;
}
@media (max-width: 767px) {
  .lab-facilities {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.lab-facilities__head {
  text-align: center;
}
@media (max-width: 767px) {
  .lab-facilities__head {
    text-align: left;
  }
}
.lab-facilities__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .lab-facilities__label {
    font-size: 1.3rem;
  }
}
.lab-facilities__title {
  margin-top: 20px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .lab-facilities__title {
    margin-top: 10px;
    font-size: 2.2rem;
  }
}
.lab-facilities__body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .lab-facilities__body {
    gap: 40px;
  }
}
.lab-facilities__group {
  display: flex;
  flex-wrap: wrap;
}
.lab-facilities__group--1col {
  flex-direction: column;
}
.lab-facilities__group--1col .lab-facilities-card {
  width: 100%;
}
.lab-facilities__group--2col {
  gap: 80px;
}
@media (max-width: 767px) {
  .lab-facilities__group--2col {
    gap: 40px;
  }
}
.lab-facilities__group--2col .lab-facilities-card {
  width: calc((100% - 80px) / 2);
}
@media (max-width: 767px) {
  .lab-facilities__group--2col .lab-facilities-card {
    width: 100%;
  }
}

.lab-facilities-card__head {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 0 30px;
  position: relative;
}
@media (max-width: 767px) {
  .lab-facilities-card__head {
    padding-top: 60px;
    margin-top: -30px;
  }
}
.lab-facilities-card__number {
  width: 60px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lab-facilities-card__number {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.lab-facilities-card__title-wrap {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.lab-facilities-card__tag {
  width: 60px;
  flex-shrink: 0;
  padding: 5px 0 7px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #3749c2;
  border: 1px solid #3749c2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lab-facilities-card__tag {
    font-size: 1.4rem;
    padding: 6px 0 8px;
    flex-shrink: 0;
  }
}
.lab-facilities-card__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .lab-facilities-card__title {
    font-size: 1.8rem;
  }
}
.lab-facilities-card__text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .lab-facilities-card__text {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .page-head__title-sub {
    font-size: 6.8rem !important;
  }
}