@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap);
@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

.EN {
  font-family: "Cardo";
}

.white {
  color: #fff;
}

@media screen and (min-width: 1025px) {
  .br-1024 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .br-768 {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .br-599 {
    display: none;
  }
}

@media screen and (min-width: 501px) {
  .br-500 {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .tab-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tab-only {
    display: none;
  }
}

.header {
  padding: 0 4.4%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
    display: flex;
    position: fixed;
  }
}

.header-wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header-wrap {
    width: 100%;
    justify-content: space-between;
  }
}

.sub-title {
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .sub-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 2.1vw;
    line-height: 1.5;
    padding: 0 4%;
    width: calc(100% - 100px);
  }
}

.language {
  width: 120px;
  height: 42px;
  background-color: #000080;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  position: fixed;
  right: 4.4%;
}
@media screen and (max-width: 768px) {
  .language {
    width: 100px;
    height: auto;
    position: initial;
  }
}
.language i {
  font-size: 16px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .language i {
    font-size: 14px;
    margin-right: 7px;
  }
}
.language:hover {
  background-color: #a7861a;
  transition: 0.2s;
}

.pc-nav {
  font-weight: bold;
  max-width: 770px;
  width: 62%;
  width: 100%;
  margin: 20px 0 0 auto;
  display: flex;
  justify-content: space-between;
}
.pc-nav li a {
  position: relative;
}
@media screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav-EN {
  max-width: 840px;
}

.pc-nav li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -6px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}

.pc-nav li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*　ハンバーガーメニューボタン　*/
.hamburger-area {
  background-color: #a7861a;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    position: relative;
    margin: 15px;
    cursor: pointer;
    text-align: center;
    z-index: 3;
    width: 30px;
    height: 25px;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}

.hamburger,
.hamburger span {
  transition: all 0.3s;
  box-sizing: border-box;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 11px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span {
  background-color: #fff;
}
.hamburger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

/* メニュー背景　*/
.sp-nav {
  font-size: 22px;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #000080;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}

.sp-nav.active {
  transform: translateY(0%);
}

@media screen and (max-width: 768px) {
  .is-animation {
    width: 60px;
  }
  .is-animation span {
    display: none;
  }
}
.cover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide {
  overflow: hidden;
}
.slide img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .slide img {
    height: 86vh;
  }
}

.cover-01 {
  -o-object-position: 0 42%;
     object-position: 0 42%;
}
@media screen and (max-width: 1024px) {
  .cover-01 {
    -o-object-position: 51% 0;
       object-position: 51% 0;
  }
}

.cover-04 {
  -o-object-position: 0 10%;
     object-position: 0 10%;
}
@media screen and (max-width: 1024px) {
  .cover-04 {
    -o-object-position: 51% 0;
       object-position: 51% 0;
  }
}

.cover-title {
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 3%;
  z-index: 10;
  padding: 3% 4%;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
  .cover-title {
    padding: 4% 6%;
  }
}
@media screen and (max-width: 768px) {
  .cover-title {
    width: 100%;
  }
}

.main-title {
  font-size: 31px;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .main-title {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 1024px) {
  .main-title {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 31px;
  }
}
@media screen and (max-width: 500px) {
  .main-title {
    font-size: 5.9vw;
  }
}

.sub2-title {
  font-size: 24px;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .sub2-title {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .sub2-title {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .sub2-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .sub2-title {
    font-size: 3.2vw;
  }
}

.main-title-EN {
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .main-title-EN {
    font-size: 3.8vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .main-title-EN {
    font-size: 32px;
  }
}
@media screen and (max-width: 425px) {
  .main-title-EN {
    font-size: 28px;
  }
}

.news {
  margin-top: 80px;
}

.news-container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .news-container {
    width: 90%;
    flex-direction: column;
    background-color: #fff;
    margin: auto;
  }
}

.news-wrap {
  width: 28%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .news-wrap {
    width: 80%;
    text-align: left;
    margin: auto;
    position: relative;
    z-index: 10;
  }
}

.news-title {
  font-size: 36px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .news-title {
    font-size: 31px;
  }
}
@media screen and (max-width: 768px) {
  .news-title {
    font-size: 26px;
  }
}

.news-btn {
  padding: 10px 20px;
  border: 1px solid #707070;
  transition: 0.2s;
}
.news-btn:hover {
  color: #fff;
  background-color: #a7861a;
  border: none;
  transition: 0.2s;
}

.news-deco {
  font-size: 8.5vw;
  color: #eff7fc;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .news-deco {
    font-size: 60px;
    position: absolute;
    top: -48px;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .news-deco {
    font-size: 52px;
    margin-top: 22px;
  }
}

.news-area {
  width: 72%;
  background-color: #fff;
  margin-top: 10px;
  padding-left: 10%;
  padding-right: 150px;
}
@media screen and (max-width: 1024px) {
  .news-area {
    width: 100%;
    margin-top: 0;
    padding: 60px 0 0 0;
  }
}

.news-body {
  max-width: 806px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}
@media screen and (max-width: 1024px) {
  .news-body {
    width: 80%;
    margin: auto;
  }
}
.news-body li {
  display: flex;
  align-items: baseline;
}
.news-body li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .news-body li {
    flex-direction: column;
  }
}

.date-wrap {
  width: 120px;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-shrink: 0;
}

.date {
  font-size: 14px;
  color: #919191;
  font-size: 14px;
}

.new {
  color: #ff0000;
  font-size: 14px;
  left: 0;
}

.experience {
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .experience {
    margin-bottom: 120px;
  }
}

.experience-container {
  max-width: 1128px;
  width: 84%;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .experience-container {
    max-width: 540px;
    width: 75%;
  }
}
@media screen and (max-width: 500px) {
  .experience-container {
    max-width: 260px;
    width: 54%;
  }
}

.experience-img {
  border-radius: 50%;
}

.experience-contents {
  max-width: 220px;
  width: 20%;
  position: relative;
}
.experience-contents:hover {
  text-decoration: underline;
}
.experience-contents:hover img {
  filter: brightness(40%);
}
.experience-contents:hover .caption {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .experience-contents {
    max-width: none;
    width: 40%;
    min-width: 160px;
  }
}
@media screen and (max-width: 500px) {
  .experience-contents {
    width: 100%;
  }
}

.image-wrap {
  position: relative;
}

.caption {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
}

.experience-ttl {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .experience-ttl {
    margin-bottom: 70px;
  }
}

.partners-container {
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
}

.partners-wrap {
  width: 20%;
  height: 290px;
  padding: 45px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #f5f5f5;
}
@media screen and (max-width: 1024px) {
  .partners-wrap {
    width: 25%;
    height: 260px;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .partners-wrap {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .partners-wrap {
    height: 240px;
  }
}

.partners-wrap:nth-child(odd) {
  background-color: #f5f5f5;
}
@media screen and (max-width: 1024px) {
  .partners-wrap:nth-child(1), .partners-wrap:nth-child(3), .partners-wrap:nth-child(6), .partners-wrap:nth-child(8), .partners-wrap:nth-child(9) {
    background-color: #f5f5f5;
  }
  .partners-wrap:nth-child(2), .partners-wrap:nth-child(4), .partners-wrap:nth-child(5), .partners-wrap:nth-child(7), .partners-wrap:nth-child(10) {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .partners-wrap:nth-child(1), .partners-wrap:nth-child(4), .partners-wrap:nth-child(5), .partners-wrap:nth-child(8), .partners-wrap:nth-child(9) {
    background-color: #f5f5f5;
  }
  .partners-wrap:nth-child(2), .partners-wrap:nth-child(3), .partners-wrap:nth-child(6), .partners-wrap:nth-child(7), .partners-wrap:nth-child(10) {
    background-color: #fff;
  }
}

.partners-wrap img {
  transition: 0.2s;
}
.partners-wrap .uni-name {
  transition: 0.2s;
}
.partners-wrap .uni-name-EN {
  transition: 0.2s;
}
.partners-wrap:hover img {
  transform: scale(1.4, 1.4) translateY(20px);
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .partners-wrap:hover img {
    transform: scale(1.2, 1.2) translateY(20px);
  }
}
.partners-wrap:hover .uni-logo-RIMD,
.partners-wrap:hover .uni-logo-Osaka,
.partners-wrap:hover .uni-logo-iGHP {
  transform: scale(1.3, 1.3) translateY(25px);
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .partners-wrap:hover .uni-logo-RIMD,
.partners-wrap:hover .uni-logo-Osaka,
.partners-wrap:hover .uni-logo-iGHP {
    transform: scale(1.2, 1.2) translateY(20px);
  }
}
.partners-wrap:hover .uni-name {
  margin-top: 50px;
  transform: scale(0.8, 0.8) translateY(20px);
  transition: 0.2s;
}
.partners-wrap:hover .uni-name-EN {
  opacity: 0;
  transition: 0.2s;
}

.uni-logo {
  max-width: 100px;
}

.uni-logo-RIMD {
  max-width: 170px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .uni-logo-RIMD {
    max-width: 125px;
    width: 100%;
  }
}

.uni-logo-Osaka {
  max-width: 170px;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .uni-logo-Osaka {
    max-width: 130px;
    width: 100%;
  }
}

.uni-logo-iGHP {
  max-width: 160px;
  width: 77%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .uni-logo-iGHP {
    max-width: 120px;
    width: 100%;
  }
}

.uni-height {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1440px) {
  .uni-height {
    height: 85px;
  }
}
@media screen and (max-width: 1024px) {
  .uni-height {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .uni-height {
    height: 80px;
  }
}

.uni-name {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 17px;
  transition: 0.1s;
}
@media screen and (max-width: 1440px) {
  .uni-name {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .uni-name {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .uni-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .uni-name {
    font-size: 17px;
  }
}

.uni-name-EN {
  font-size: 14px;
  color: #a7861a;
  line-height: 1.4;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .uni-name-EN {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .uni-name-EN {
    font-size: 11px;
  }
}

.partners-img {
  width: 50%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(87%);
}

footer {
  background-color: #000080;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 15px;
  }
}

.footer {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: initial;
  }
}

.campusasia {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .campusasia {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .campusasia {
    font-size: 16px;
  }
}
.campusasia span {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .campusasia span {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .campusasia span {
    font-size: 11px;
  }
}

.address {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .address {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .address {
    font-size: 11px;
  }
}

small {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  small {
    font-size: 10px;
    text-align: center;
    margin-top: 24px;
  }
}

.images {
  margin-top: 140px;
  margin-bottom: 180px;
}

.images-area {
  display: grid;
  grid-template-rows: 24vw 24vw;
  grid-template-columns: 30% 40% 30%;
}
@media screen and (max-width: 768px) {
  .images-area {
    grid-template-rows: 32vw 32vw 32vw;
    grid-template-columns: 60% 40%;
  }
}

.images-copy {
  font-size: 1.8vw;
  font-family: "Noto Serif JP";
  font-weight: bold;
  line-height: 2.8;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .images-copy {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .images-copy {
    font-size: 3.2vw;
  }
}

.images-copy-EN {
  font-size: 1.8vw;
  font-family: "Noto Serif JP";
  font-weight: bold;
  line-height: 2.4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
@media screen and (max-width: 768px) {
  .images-copy-EN {
    font-size: 2.4vw;
  }
}

#img01 {
  grid-row: 1/2;
  grid-column: 1/3;
  background-image: url("../images/images/worldmap.jpg");
  background-size: 103%;
  background-position: 0 23%;
}

#img02 {
  grid-row: 1/3;
  grid-column: 3/4;
  background-image: url("../images/images/photo-01.jpg");
  background-size: 150%;
  background-position: 45% 85%;
}
@media screen and (max-width: 768px) {
  #img02 {
    grid-row: 2/4;
    grid-column: 2/3;
  }
}

#img03 {
  grid-row: 2/3;
  grid-column: 1/2;
  background-image: url("../images/images/RIMD.jpg");
  background-size: cover;
  background-position: 53% 0;
}

#img04 {
  grid-row: 2/3;
  grid-column: 2/3;
  background-image: url("../images/images/photo-02.jpg");
  background-size: cover;
  background-position: 0 53%;
}
@media screen and (max-width: 768px) {
  #img04 {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}

.section-title {
  text-align: center;
}

.section-title-EN {
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .section-title-EN {
    font-size: 31px;
  }
}
@media screen and (max-width: 768px) {
  .section-title-EN {
    font-size: 26px;
  }
}

.section-title-JP {
  font-size: 16px;
  color: #a7861a;
}
@media screen and (max-width: 1024px) {
  .section-title-JP {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .section-title-JP {
    font-size: 14px;
  }
}

#page_top {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: 5px 15px;
  position: fixed;
  right: 4.4%;
  background-color: #a7861a;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #page_top {
    font-size: 12px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #page_top {
    font-size: 10px;
    padding: 8px 15px;
  }
}
