@charset "utf-8";

/*=============== ▼VARIABLES CSS ===============*/
:root {
  /*========== ▼Font ==========*/
  color: #333;
  font-size: 62.5%;
  font-family: "Noto Sans", arial, sans-serif;
}

/*=============== ▼COMMON ===============*/
.c-main a {
  text-decoration: none;
}

.c-main .c-inner {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 65px;
}

@media (max-width: 1499px) {
  .c-main .c-inner {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .c-main .c-inner {
    padding: 0 4%;
  }
}

.c-main .under-line-none {
  color: #008b56;
  text-decoration:underline;
}

.c-main .under-line {
  position: relative;
}

.c-main .under-line::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #008b56;
}

/*=============== ▼TEMPLATE ===============*/

.c-main {
  padding: 0 0 0 250px;
}

.c-main .c-pagetitle {
  overflow: hidden;
  height: 261px;
}

.c-main .c-pagetitle__inner {
  position: relative;
  height: 100%;
}

.c-main .c-pagetitle__bg {
  width: 100%;
  height: 100%;
}

.c-main .c-pagetitle__bg--img {
  height: 100%;
  object-fit: contain;
  object-position: left;

  /* ie11 */
  font-family: "object-fit:contain; object-position: left;";
}

.c-main .c-pagetitle__bg--img--sp {
  display: none;
}

.c-main .c-pagetitle__heading {
  position: absolute;
  content: "";
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-main .c-pagetitle__title {
  display: inline-block;
  font-size: 3.8rem;
  font-weight: normal;
  line-height: 1.211;
  position: relative;
  padding: 0 0 0 16px;
}

.c-main .c-pagetitle__title--image {
  margin: 0 0 0 -70px;
}

.c-main .c-breadcrumb {
  margin: 0;
  padding: 10px 15px;
  background: #3b4443;
  list-style: none;
  overflow: hidden;
}

@media (max-width: 1715px) {
  .c-main .c-breadcrumb {
    padding: 10px 0;
  }
}

.c-main .c-breadcrumb__item {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.c-main .c-breadcrumb__item01 {
  position: relative;
  padding: 0 30px 0 0;
  font-weight: normal;
}
.c-main .c-breadcrumb__item01::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 10%;
  width: 8px;
  height: 8px;
  opacity: 0.7;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: border-top 0.2s ease, border-right 0.2s ease;
}
.c-main .c-breadcrumb__item:last-child::after {
  content: "";
}

.c-main .c-breadcrumb__item--link {
  text-decoration: none;
}

.c-main .c-breadcrumb__item--text {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.7;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.c-main .c-breadcrumb__item--link.hover {
  color: #fff;
  text-decoration:underline;
/*  text-decoration: #fff solid underline;
  -webkit-text-decoration: #fff solid underline;*/
}
.c-main .c-breadcrumb__item--link.hover .c-breadcrumb__item--text {
  color: #fff;
  opacity: 1;
}

.c-main .c-breadcrumb__text--active {
  color: #fff;
  opacity: 1;
}

.c-main .c-article__heading {
  margin: 105px 0 0 0;
}

.c-main .c-article__title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.286;
}

.c-main .c-article__content {
  margin: 50px 0 0 0;
}

.c-main .c-content__heading {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d9e7e5;
}

.c-main .c-content__title {
  padding: 0 0 0 25px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.286;
  position: relative;
}

.c-main .c-content__title::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 30px;
  background-color: #008b56;
}

.c-main .c-content__body {
  margin: 35px 0 0 0;
}

.c-main .c-content__text {
  font-size: 1.6rem;
  line-height: 2.25;
}
.c-main .c-content__text--link.hover {
  text-decoration: none;
}

.c-main .c-content__images {
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  margin: 60px auto 0;
}

.c-main .c-content__image {
  overflow: hidden;
  width: 46%;
}

@media (max-width: 1499px) {
  .c-main .c-content__image {
    width: 46%;
  }
}
.c-main .c-content__img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-out, opacity 0.5s ease;
}

.c-main .c-content__btn {
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}

.c-main .c-content__btn--data {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1550px) {
  .c-main .tab {
    display: block;
  }
}
@media (max-width: 1321px) {
  .c-main .tab {
    display: none;
  }
}

.c-main .c-content__btn--link {
  width: 33%;
  min-width: 380px;
  max-width: 455px;
  padding: 24px 8px 24px 8px;
  margin: 16px 0 0 0;
  border: 1px solid #d9e7e5;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  position: relative;
}
.c-main .c-content__btn--link:not(:last-child) {
  margin: 16px 16px 0 0;
}

@media (min-width: 1501px) and (max-width: 1680px) {
  .c-main .c-content__btn--link {
    min-width: 360px;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .c-main .c-content__btn--link {
    min-width: 200px;
    padding: 10px 8px;
  }
}

.c-main .c-content__data--link {
  width: 32%;
  padding: 21px 8px 21px 8px;
  justify-content: left;
}

@media (max-width: 1222px) {
  .c-main .c-content__data--link {
    padding: 16px 8px;
  }
}

.c-main .c-content__data--link:not(:last-child) {
  margin: 16px 0 0 0;
}

.c-main .c-content__data--link:not(:nth-child(3n-2)) {
  margin: 16px 0 0 16px;
}

.c-main .c-content__btn--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 11px;
  height: 11px;
  opacity: 0.7;
  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;
}

.c-main .c-content__btn--link.hover.c-content__btn--arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.c-main .c-content__btn--link.hover {
  background-color: #008b56;
}

.c-main .c-content__btn--text {
  color: #008b56;
  font-size: 1.8rem;
  line-height: 1.556;
  font-weight: bold;
  padding: 0 0 0 20px;
  transition: color 0.2s ease;
}
@media (max-width: 1309px) {
  .c-main .c-content__btn--text {
    padding: 0 0 0 16px;
  }
}
.c-main .c-content__data--text {
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1040px) {
  .c-main .c-content__data--text {
    max-width: 160px;
  }
}
.c-content__data--detail {
  font-size: 1.4rem;
  font-weight: normal;
}
.c-main .c-content__btn--link.hover {
  border-color: #008b56;
}
.c-main .c-content__btn--link.hover .c-content__btn--text {
  color: #fff;
}

.c-main .c-content__btn--image {
  display: flex;
  align-items: center;
  width: 26px;
  height: 33px;
  position: relative;
}
.c-main .c-content__btn--bg {
  position: relative;
  margin: 0 0 0 6px;
}
.c-main .c-content__btn--bg::after {
  display: none;
  position: absolute;
  content: "";
  background: url(/images/template/icon-blank-white.png) no-repeat center center /
    contain;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-main .c-content__btn--link.hover .c-content__btn--bg::after {
  display: block;
}

.c-main .c-content__button--image {
  width: 15px;
  height: 15px;
}

.c-main .c-content__btn--img {
  width: 100%;
  height: auto;
}

.c-main .c-content__btn--link.hover .c-content__btn--icon {
  opacity: 0;
}

.c-main .c-content__detail {
  margin: 60px 0 0 0;
  background-color: #f9fbf3;
  padding: 30px 0 30px 40px;
}

.c-main .c-detail__text {
  font-size: 1.8rem;
  line-height: 1.556;
  font-weight: bold;
}
.c-main .c-detail__text--link.hover {
  text-decoration: none;
}

.c-main .c-article__more {
  margin: 60px 0 0 0;
}

.c-main .c-article__text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.25;
}

.c-main .c-article__btn {
  display: flex;
  margin: 24px 0 0 0;
  background-color: transparent;
}

.c-main .c-article__btn--link {
  display: block;
  width: 34%;
  background-color: #008b56;
}
.c-main .c-article__btn--link:first-child {
  border-radius: 3px 0 0 3px;
}
.c-main .c-article__btn--link:last-child {
  border-radius: 0 3px 3px 0;
}

.c-main .c-article__btn--content {
  padding: 35px 0 35px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease;
}
.c-main .c-article__btn--link.hover {
  opacity: 0.9;
}
.c-main .c-article__btn--link:not(:first-child) {
  border-left: 1px solid #33a278;
}

.c-main .c-article__btn--image {
  display: flex;
  align-items: center;
  width: 80px;
  height: 100%;
  position: relative;
}
.c-main .c-article__btn--img {
  width: 100%;
  height: auto;
}

.c-main .c-article__btn--text {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.905;
  padding: 0 0 0 15px;
  display: block;
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .c-main .c-article__btn--content {
    display: block;
  }
  .c-main .c-article__btn--image {
    height: inherit;
    margin: 0 auto;
  }
  .c-main .c-article__btn--text {
    text-align: center;
    padding: 0;
  }
}

.c-main .c-news {
  margin: 85px 0 0 0;
  background-color: #f9fbf3;
  padding: 56px 0 61px 0;
}

.c-main .c-news__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}

.c-main .c-news__top-wrap {
  display: flex;
  justify-content: space-between;
}

.c-main .c-news__heading {
  display: flex;
  align-items: center;
  color: #008b56;
}

.c-main .c-news__heading--second {
  color: #333;
  font-size: 2.8rem;
  font-weight: normal;
}

.c-main .c-news__list-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 30px;
  padding: 0 6px 0 0;
  /*width: 100px;
  height: 30px;*/
  width: 140px;
  height: 36px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #008b56;
  border-radius: 40px;
  color: #008b56;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.c-main .c-news__list-link.hover {
  background-color: #008b56;
  border-color: #fff;
  color: #fff;
}

.c-main .c-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;
}

.c-main .c-news__list-link.hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.c-main .c-news__tab {
  display: flex;
  align-items: center;
}

.c-main .c-news__tab-list {
  display: flex;
  align-items: center;
}

.c-main .c-news__tab-list-item {
  position: relative;
}

.c-main .c-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%);
}

.c-main .c-news__tab-button {
  padding: 0 24px;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.5s ease;
}

.c-main .c-news__tab-list-item:last-child .c-news__tab-button {
  padding: 0 0 0 24px;
}

.c-main .c-news__tab-button-text {
  position: relative;
}

.c-main .c-news__tab-button.is-tab-active .c-news__tab-button-text {
  color: #008b56;
  font-weight: bold;
}

.c-main .c-news__tab-button.is-tab-active .c-news__tab-button-text::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #008b56;
}

.c-main .c-news__article {
  margin: 48px 0 0 0;
}

/*.c-main .c-news__tab-content {
  display: none;
}*/

.c-main .c-news__tab-content.is-tab-active {
  display: block;
}

.c-main .c-news__article-list {
  display: flex;
  padding: 20px 0 20px 0;
}

.c-main .c-news__article-list:first-child {
  padding: 0 0 20px 0;
}

.c-main .c-news__article-list:last-child {
  padding: 20px 0 0 0;
}

.c-main .c-news__article-list:not(:last-child) {
  border-bottom: 1px solid #d9e7e5;
}

.c-main .c-news__article-list-wrap {
  display: flex;
}

.c-main .c-news__article-post-time {
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  width: 100px;
}

.c-main .c-news__article-label {
  width: 150px;
  margin: 0 0 0 19px;
}

.c-main .c-news__article-text {
  padding: 1px 0 1px 0;
  border-radius: 3px;
  background-color: #ddd;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

.c-main .c-news__article-text[data-text*="information"] {
background-color: #99c012;
}
.c-main .c-news__article-text[data-text*="Takeda Prize"] {
background-color: #008b56;
}
.c-main .c-news__article-text[data-text*="Research Grants"] {
background-color: #3cad94;
}
.c-main .c-news__article-text[data-text*="Fellowship"] {
background-color: #5088b0;
}
.c-main .c-news__article-text[data-text*="Symposium"] {
background-color: #5fb6cc;
}
.c-main .c-news__article-text[data-text*="Kyo-U Library"] {
background-color: #746bac;
}
.c-main .c-news__article-text[data-text*="Others"] {
background-color: #999999;
}

.c-main .c-news__article-title {
  margin: 0 0 0 24px;
  font-size: 1.6rem;
  line-height: 1.75;
}

.c-main .c-news__article-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.c-main .c-news__article-link.hover {
  color: #008b56;
  text-decoration:underline;
}

.c-main .c-news__article-link.hover .c-news__article-link-text {
  color: #008b56;
}

.c-main .c-feature {
  margin: 60px 0 0 0;
}
.c-main .c-feature__inner {
}
.c-main .c-feature__category {
  display: flex;
  justify-content: space-between;
}
.c-main .c-category__item {
  display: block;
  width: 30%;
}
.c-main .c-category__image {
  overflow: hidden;
  width: 100%;
}
.c-main .c-category__img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: transform 0.5s ease-out, opacity 0.5s ease;
}
.c-main .c-category__img:hover {
  transform: scale(1.06) rotate(0.1deg);
  opacity: 0.8;
}
.c-main .c-category__title {
  font-size: 1.8rem;
  line-height: 1.556;
  font-weight: bold;
  margin-top: 15px;
}

@media (max-width: 1393px) {
  .breadcrumb {
    padding: 15px 0;
  }
}
.c-main .c-category__item.hover .c-category__title {
  color: #008b56;
}
.c-main .c-feature__alert {
  margin: 60px 0 0 0;
  background-color: #f9fbf3;
  padding: 30px 0 30px 40px;
}
.c-main .c-alert__text {
  font-size: 1.6rem;
  line-height: 1.75;
}
.c-main .c-alert__text--link {
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 0 20px 0 0;
  position: relative;
}
.c-main .c-alert__text--link.hover {
  text-decoration: none;
}
.c-main .c-alert__text--link::before {
  position: absolute;
  content: "";
  background: url(/images/common/icon-blank-green.png) no-repeat center center /
    contain;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.c-main .c-alert__text--image {
  display: flex;
  align-items: center;
  width: 15px;
  height: 100%;
}
.c-main .c-alert__text--img {
  width: 100%;
  height: auto;
}

.c-main .c-feature__content {
  margin: 20px 0 0 0;
}
.c-main .c-feature__text {
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-main .c-exhibition {
}
.c-main .c-exhibition__inner {
}
.c-main .c-exhibition__heading {
  margin: 80px 0 0 0;
}
.c-main .c-exhibition__title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.286;
}
.c-main .c-tab-wrap {
  margin: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.c-main .c-tab-label {
  width: 50%;
  color: #008b56;
  background: #f2f6f6;
  padding: 3px 12px;
  order: -1;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
}
.c-main .c-tab-label span {
  position: relative;
}
.c-main .c-tab-label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #008b56;
  border-right: 2px solid #008b56;
  transform: rotate(45deg) translateY(-50%);
}
.c-main .c-tab-switch:checked + .c-tab-label {
  background-color: #008b56;
  color: #fff;
}
.c-main .c-tab-switch:checked + .c-tab-label span::before {
  border-color: #fff;
}
.c-main .c-tab-switch:checked + .c-tab-label + .c-tab-content {
  display: block;
}
.c-main .c-tab-switch {
  display: none;
}
.c-main .c-tab-content {
  width: 100%;
  display: none;
  margin: 20px 0 0;
}

.c-main .c-tab-content__wrap {
  display: flex;
  padding: 40px 0;
}
.c-main .c-tab-content__wrap:not(:last-child) {
  border-bottom: 1px solid #d9e7e5;
}

.c-main .c-exhibition__label {
  width: 110px;
}

.c-main .c-exhibition__content--label {
  width: 100%;
  font-size: 1.6rem;
  width: 110px;
  height: 25px;
  color: #fff;
  background-color: #666666;
  border-radius: 3px;
  text-align: center;
}

.c-main .c-exhibition__content--text {
  margin: 0 0 0 24px;
}

.c-main .c-exhibition__content--title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
}

.c-main .c-exhibition__content--detail {
  margin: 32px 0 0 0;
}

.c-main .c-exhibition__detail--summary {
  font-size: 1.6rem;
  margin: 16px 0 0 0;
}
.c-main .c-exhibition__detail--summary span {
  font-size: 1.6rem;
  font-weight: bold;
}

.c-main .c-exhibition__detail--text {
  font-size: 1.4rem;
  margin: 24px 0 0 0;
}

.c-main .c-information {
  margin: 80px 0 0 0;
  background-color: #f9fbf3;
}

.c-main .c-information__content {
  padding: 60px 0 60px 0;
}
.c-main .c-information__title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.286;
}
.c-main .c-information__btn {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-main .c-information__btn--link {
  max-width: 670px;
  width: 49%;
  padding: 30px 0 30px 0;
  border: 4px solid #d9e7e5;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-main .c-information__btn--link.hover {
  background-color: #008b56;
  border-color: #008b56;
}
.c-main .c-information__btn--text {
  font-size: 2.4rem;
  line-height: 1.33;
  font-weight: bold;
  color: #008b56;
  transition: color 0.2s ease;
}

@media (max-width: 1500px) {
  .c-main .c-information__btn--link {
    width: 47%;
    padding: 14px 0 14px 0;
    align-items: center;
  }
}
@media (max-width: 1500px) {
  .c-main .pc {
    display: block;
  }
}

.c-main .pc_br {
  display: none;
}

@media (max-width: 1500px) {
  .c-main .pc_br {
    display: block;
  }
}

.c-main .c-information__btn--link.hover .c-information__btn--text {
  color: #fff;
}

.c-main .c-download {
}
.c-main .c-download__inner {
}
.c-main .c-download__content {
  margin: 60px 0 120px 0;
}
.c-main .c-download__title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.286;
}
.c-main .c-download__btn {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-main .c-download__item--link {
  max-width: 667px;
  width: 24%;
  padding: 17px 8px 17px 8px;
  margin: 16px 0 0 0;
  border-radius: 3px;
  border: 1px solid #d9e7e5;
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 1715px) {
  .c-main .c-download__item--link {
    padding: 16px 8px 16px 8px;
  }
}
.c-main .c-download__item--image {
  display: flex;
  align-items: center;
  width: 26px;
  height: 33px;
  position: relative;
}
.c-main .c-content__btn--img {
  width: 100%;
  height: auto;
}
.c-main .c-download__item--link.hover {
  background-color: #008b56;
  border-color: #008b56;
}
.c-main .c-download__item--text {
  color: #008b56;
  display: block;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 0 0 0 10px;
  transition: color 0.2s ease;
}
.c-main .c-download__item--detail {
  font-size: 1.2rem;
  font-weight: normal;
}

.c-main .c-download__item--link.hover .c-download__item--text {
  color: #fff;
}

/* 20220125 .c-pagetitle2 */
.c-main .c-pagetitle2 {
  overflow: hidden;
  height: 140px;
  background: #ebf3f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-main .c-pagetitle2 h1 {
  font-weight: normal;
  font-size:3.8rem;
  width: 90%;
  max-width: 1400px;
  text-align: left;
}

.c-main .c-pagetitle2 p {
  display: none;
}

/* /20220125 .c-pagetitle2 */