@charset "utf-8";


.l-header--logo {
  padding: 48px 20px 47px 20px;
}

/*=============== ▼MAIN ===============*/

.p_top {
  -ms-overflow-style: none;
  overflow-x: hidden;
}

.p-main {
  padding: 0 0 0 250px;
}

.p-mv__inner {
  position: relative;
}

.p-mv__announce {
  position: absolute;
  top: 3%;
  left: 50%;
  z-index: 1;
  padding: 24px;
  width: 90%;
  max-width: 1400px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
  transform: translateX(-50%);
}

.p-mv__announce-text {
  position: relative;
  padding: 0 0 0 21px;
  color: #333;
  font-size: 1.4rem;
}

.p-mv__announce-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 6px;
  height: 30px;
  background-color: #008b56;
  transform: translateY(-50%);
}

.p-mv__slide {
  width: 100%;
}

.p-mv__slide img {
  width: 100%;
  height: auto;
}

.p-mv__bnr {
  width: 90%;
  /*max-width: 1400px;*/
  max-width: 1260px;
  margin: 0 auto;
}

.p-mv__bnr-img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  filter: drop-shadow(3px 3px 3px #aaa);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.p-mv__bnr-link.hover .p-mv__bnr-img {
  opacity: 0.9;
  filter: drop-shadow(0px 0px 0px #aaa);
}

/*=============== ▼NEWS ===============*/

.p-news {
  /*margin: 200px 0 0 0;*/
  margin: 60px 0 0 0;
}

.p-news__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}

.p-news__top-wrap {
  display: flex;
  justify-content: space-between;
}

.p-news__heading {
  display: flex;
  align-items: center;
  color: #008b56;
}

.p-news__heading--second {
  color: #333;
  font-size: 3rem;
  font-weight: normal;
}

.p-news__list-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 0 auto;
  padding: 0 6px 0 0;
  width: 140px;
  height: 36px;
  border: 1px solid #008b56;
  border-radius: 40px;
  color: #008b56;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.p-news__list-link.hover {
  background-color: #008b56;
  border-color: #fff;
  color: #fff;
}

.p-news__list-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #008b56;
  border-right: 2px solid #008b56;
  transform: rotate(45deg) translateY(-50%);
  transition: border-top 0.5s ease, border-right 0.5s ease;
}

.p-news__list-link.hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.p-news__list-link-text {
  color: #008b56;
}

.p-news__list-link.hover .p-news__list-link-text {
  color: #fff;
}

.p-news__tab {
  display: flex;
  align-items: center;
}

.p-news__tab-list {
  display: flex;
  align-items: center;
}

.p-news__tab-list-item {
  position: relative;
}

.p-news__tab-list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  width: 1px;
  height: 16px;
  background-color: #333;
  transform: translateY(-50%);
}

.p-news__tab-button {
  padding: 0 24px;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.5s ease;
}

.p-news__tab-button.hover {
  color: #008b56;
}

.p-news__tab-list-item:last-child .p-news__tab-button {
  padding: 0 0 0 24px;
}

.p-news__tab-button-text {
  position: relative;
}

.p-news__tab-button.is-tab-active .p-news__tab-button-text {
  color: #008b56;
  font-weight: bold;
}

.p-news__tab-button.is-tab-active .p-news__tab-button-text::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #008b56;
}

.p-news__tab-button.hover .p-news__tab-button-text::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #008b56;
}

.p-news__article {
  margin: 48px 0 0 0;
}

.p-news__tab-content {
  display: none;
}

.p-news__tab-content.is-tab-active {
  display: block;
}

.p-news__article-list {
  display: flex;
  padding: 20px 0 20px 0;
}

.p-news__article-list:first-child {
  padding: 0 0 20px 0;
}

.p-news__article-list:last-child {
  padding: 20px 0 0 0;
}

.p-news__article-list:not(:last-child) {
  border-bottom: 1px solid #e5ebeb;
}

.p-news__article-list-wrap {
  display: flex;
}

.p-news__article-post-time {
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  width: 100px;
}

.p-news__article-label {
  width: 150px;
  margin: 0 0 0 19px;
}

.p-news__article-text {
  padding: 1px 0 1px 0;
  border-radius: 3px;
  background-color: #ddd;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.437;
}

.p-news__article-text[data-text*="information"] {
background-color: #99c012;
}
.p-news__article-text[data-text*="Takeda Prize"] {
background-color: #008b56;
}
.p-news__article-text[data-text*="Research Grants"] {
background-color: #3cad94;
}
.p-news__article-text[data-text*="Fellowship"] {
background-color: #5088b0;
}
.p-news__article-text[data-text*="Symposium"] {
background-color: #5fb6cc;
}
.p-news__article-text[data-text*="Kyo-U Library"] {
background-color: #746bac;
}
.p-news__article-text[data-text*="Others"] {
background-color: #999999;
}

.p-news__article-title {
  margin: 0 0 0 24px;
  font-size: 1.6rem;
  width: 80%;
}

.p-news__article-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.p-news__article-link.hover {
  color: #008b56;
  text-decoration:underline;
  /*text-decoration: #008b56 solid underline;
  -webkit-text-decoration: #008b56 solid underline;*/
}

.p-news__article-link.hover .p-news__article-link-text {
  color: #008b56;
}

/* blank */
.p-news__article-link.blank::after{
  content: "";
 background-image: url("/en/images/common/blank.png");
 background-repeat: no-repeat;
 background-size: 16px;
 background-position: right center;
 padding-right: 21px;
 margin-right: 5px;
}

/* pdf */
.p-news__article-link.pdf::after{
  content: "";
 background-image: url("/en/images/common/icon-pdf.png");
 background-repeat: no-repeat;
 background-size: 19px 24px;
 background-position: right center;
 padding-right: 24px;
 margin-right: 5px;
}

/*=============== ▼LINK-LIST ===============*/

.p-link-list {
  margin: 0;
  overflow-x: hidden;
}

.p-link-list__inner {
  width: 100%;
}

.p-link-list__about,
.p-link-list__prize {
  position: relative;
}

.p-link-list__about  .p-menu__btn,
.p-link-list__prize .p-menu__btn {
  position: absolute;
  content: "";
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 380px;
  margin: 0 auto;
}

.p-link-list__prize .p-menu__btn-list::after {
  display: none;
}


.p-link-list__img-wrap {
  overflow: hidden;
}

.p-link-list__img {
  width: 100%;
  height: auto;
  height: 300px;
  object-fit: cover;
  object-position: left;
  vertical-align: bottom;
  font-family: 'object-fit: cover; object-position: left;';
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .p-link-list__img01 {
    object-position: -60px;
    font-family: 'object-fit: cover; object-position: -60px;';
  }
}

@media (min-width: 950px) and (max-width: 1200px) {
  .p-link-list__img01 {
    object-position: -120px;
    font-family: 'object-fit: cover; object-position: -120px;';
  }
}

@media (min-width: 768px) and (max-width: 949px) {
  .p-link-list__img01 {
    object-position: -180px;
    font-family: 'object-fit: cover; object-position: -180px;';
  }
}

.p-link-list__about .p-link__list-item-link,
.p-link-list__prize .p-link__list-item-link {
  display: block;
  position: relative;
}

.p-link-list__about a .p-link__content {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}

.p-link-list__prize a .p-link__content {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-link__content--sp {
  display: none;
}

.p-link-list__about a .p-link-list__img,
.p-link-list__prize a .p-link-list__img {
  transition: transform 0.5s ease-out, opacity 0.5s ease;
}

.p-link-list__about a.hover .p-link-list__img,
.p-link-list__prize a.hover .p-link-list__img {
  transform: scale(1.06) rotate(0.1deg);
  opacity: 0.8;
}

.p-link-list__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.p-link-list__heading-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 -62px;
}

.p-link-list__heading-title {
  position: relative;
  margin: 0 0 0 14px;
  font-size: 3rem;
  font-weight: normal;
}

.p-link-list__about a.hover .p-link-list__heading-title::after,
.p-link-list__prize a.hover .p-link-list__heading-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #008b56;
}

.p-link-list__heading-text {
  margin: 24px 0 0 0;
  font-size: 1.4rem;
  text-align: center;
}

.p-link-list__about .p-menu__btn,
.p-link-list__prize .p-menu__btn{
  width: 100%;
}

.p-link-list__about .p-menu__btn .p-menu__btn-list {
  width: 100%;
  max-width: 1190px;
  padding: 0 10px;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .p-link-list__about .p-menu__btn .p-menu__btn-list {
    max-width: 620px;
  }
}

.p-link-list__prize .p-menu__btn .p-menu__btn-list {
  width: 100%;
  max-width: 400px;
  padding: 0 10px;
}

.p-link-list__about .p-menu__btn .p-menu__btn-list::after,
.p-link-list__prize .p-menu__btn .p-menu__btn-list::after {
  display: none;
}

.p-link-list__about .p-menu__btn .p-menu__btn-list .p-menu__btn-list-item {
  margin: 0 10px 10px 0;
}


/*=============== ▼MENU ===============*/
.p-menu {
  margin: 60px 0 0 0;
}

.p-menu__inner {
  width: 100%;
}

.p-menu__list {
  display: flex;
  flex-wrap: wrap;
}

.p-menu__list-item {
  position: relative;
  width: 50%;
  height: auto;
  min-height: 400px;
  overflow: hidden;
}

.p-menu__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.p-menu__list-item:hover::before {
  opacity: 0.8;
  transform: scale(1.06) rotate(0.1deg);
}

.p-menu__list-item.p-research::before {
  background-image: url(/images/home/img-research.png);
}

.p-menu__list-item.p-fellowship::before {
  background-image: url(/images/home/img-fellowship.png);
}

.p-menu__list-item.p-symposium::before {
  background-image: url(/images/home/img-symposium.png);
}

.p-menu__list-item.p-kyou::before {
  background-image: url(/images/home/img-kyou.png);
}

.p-menu__list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -20;
  width: 100%;
  height: 100%;
}

.p-menu__list-item.p-research::after {
  background-color: #008b56;
}

.p-menu__list-item.p-fellowship::after {
  background-color: #35876d;
}

.p-menu__list-item.p-symposium::after {
  background-color: #000;
}

.p-menu__list-item.p-kyou::after {
  background-color: #24211d;
}

.p-menu__list-item-link {
  display: block;
  min-height: 400px;
  text-decoration: none;
  word-wrap:break-word;
  word-break:break-all;
}

.p-menu__content {
  margin: 0 auto;
  padding: 72px 0 43px 0;
  width: 90%;
  max-width: 566px;
}

.p-menu__list-item-link--sp {
  display: contents;
  text-decoration: none;
}

.p-menu__heading-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 -62px;
}

.p-menu__heading-title {
  position: relative;
  margin: 0 0 0 14px;
  color: #fff;
  font-size: 3rem;
  font-weight: normal;
}

.p-menu__list-item:hover .p-menu__heading-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #008b56;
  text-decoration: none;
}

.p-menu__heading-text {
  margin: 24px auto 0 auto;
  color: #fff;
  font-size: 1.4rem;
  text-align: left;
  word-break: normal;
}

.p-menu__btn-list {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: center;
  margin: 30px auto 0 auto;
}

@media (max-width: 1499px) {
  .p-menu__btn-list {
    /*width: 375px;*/
    width: 430px;
  }
}
@media (max-width: 860px) {
  .p-menu__btn-list {
    width: 375px;
  }
}

.p-menu__btn-list::after {
  content: "";
  display: block;
  /*width: calc(100% / 3 - 10px);*/
}

.p-symposium .p-menu__btn-list::after {
  display: none;
}

.p-symposium .p-menu__btn-list {
  justify-content: center;
}

@media (max-width: 1499px) {
  .p-symposium .p-menu__btn-list {
    /*justify-content: space-between;*/
    justify-content: center;
  }
}

.p-menu__btn-list-item {
  position: relative;
  color: #008b56;
}

.p-menu__btn-list-item.margin {
  margin: 0 0 10px 0;
}

.p-link-list__prize .p-menu__btn-list-item.margin {
  margin: 0 0 0 0;
}

.p-menu__list-item.p-symposium .margin {
  margin: 0 0 0 10px;
}

@media (max-width: 1499px) {
  .p-menu__list-item.p-symposium .margin {
    /*margin: 0 0 0 0;*/
    margin: 0 0 0 10px;
  }
}
@media (max-width: 860px) {
  .p-menu__list-item.p-symposium .margin {
    margin: 10px 0 0 0;
  }
}

.p-menu__list-item .p-menu__btn--sp {
  display: none
}

.p-menu__btn-list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #008b56;
  border-right: 2px solid #008b56;
  transform: rotate(45deg) translateY(-50%);
  transition: border-top 0.2s ease, border-right 0.2s ease;
}

.p-menu__btn-list-item:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.p-menu__btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 183px;
  height: 50px;*/
  width: 210px;
  height: 64px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #008b56;
  border-radius: 40px;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.p-menu__btn-link.hover {
  background-color: #008b56;
  color: #fff;
}



/* メインイメージhover */
.p-mv__slide-item a img {transition: all 0.4s ease;}
.p-mv__slide-item a.hover img {opacity: 0.6;}
