@charset "UTF-8";
/* 下からフェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 下からフェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0s;
  /*開始を遅らせる */
}

.js-fadeUp.slow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 左からフェードイン(初期値) */
.js-fadeIn {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-100px);
  /* 左に100pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 左からフェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: 0s;
  /* 開始を遅らせる */
}

.js-fadeIn.slow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* ------------------------------------
/////////////////////////////////
zoom
///////////////////////////////////
------------------------------------- */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media print {
  body {
    display: none;
  }
}
.mainImage {
  width: 100%;
  height: 330px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 329px) {
  .mainImage {
    height: 280px;
  }
}
.mainImage__wrap {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 120px auto 0;
  padding: 50px 40px 0;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .mainImage__wrap {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .mainImage__wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 479px) {
  .mainImage__wrap {
    padding: 20px 15px 0;
  }
}
@media screen and (max-width: 329px) {
  .mainImage__wrap {
    padding-top: 15px;
  }
}
.mainImage__image {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  object-fit: cover;
  max-width: 100%;
}
.mainImage__cc {
  width: 25%;
  height: 180px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 58%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffffee;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1401px) {
  .mainImage__cc {
    max-width: 720px;
  }
}
@media screen and (max-width: 479px) {
  .mainImage__cc {
    height: 160px;
  }
}
@media screen and (max-width: 1279px) {
  .mainImage__cc {
    top: 53%;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .mainImage__cc {
    width: 45%;
  }
}
@media screen and (max-width: 479px) {
  .mainImage__cc {
    width: 55%;
  }
}
@media screen and (max-width: 329px) {
  .mainImage__cc {
    width: 60%;
  }
}
.mainImage__cc--jp {
  display: block;
  text-align: center;
  font-size: 30px;
  color: #102a75;
  font-weight: 500;
  line-height: 1.2;
  padding: calc(10px - (30px * 1.2 - 30px) / 2) 10px;
}
@media screen and (max-width: 767px) {
  .mainImage__cc--jp {
    font-size: 24px;
    padding: calc(10px - (24px * 1.2 - 24px) / 2) 10px;
  }
}
@media screen and (max-width: 479px) {
  .mainImage__cc--jp {
    font-size: 20px;
    padding: calc(10px - (20px * 1.2 - 20px) / 2) 10px;
  }
}
.mainImage__cc--en {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #7e7e7e;
  font-weight: 500;
  line-height: 1.2;
  padding: calc(10px - (16px * 1.2 - 16px) / 2) 0;
}
@media screen and (max-width: 767px) {
  .mainImage__cc--en {
    font-size: 14px;
    padding: calc(10px - (14px * 1.2 - 14px) / 2) 0;
  }
}

.academic__inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
  /* &__wrap{
     margin-top: 30px;
     padding-bottom: 30px;
   }*/
}
@media screen and (max-width: 1279px) {
  .academic__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .academic__inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 479px) {
  .academic__inner {
    margin-top: 20px;
    padding: 15px 15px 50px;
  }
}
.academic__hl {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #102a75;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 30px;
  padding: calc(20px - (30px * 1.2 - 30px) / 2) 0;
  text-align: center;
  border-bottom: 2px solid #102a75;
  margin-left: 15px;
  padding-right: 15px;
  position: relative;
}
.academic__hl:before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #102a75;
  margin-right: 30px;
  transform: rotate(35deg);
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: -10px;
}
.academic__hl:after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #102a75;
  margin-right: 30px;
  transform: rotate(35deg);
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 0px;
}
@media screen and (min-width: 1401px) {
  .academic__hl {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1680px;
  }
}
@media screen and (max-width: 767px) {
  .academic__hl {
    font-size: 24px;
  }
}
@media screen and (max-width: 329px) {
  .academic__hl {
    font-size: 20px;
  }
}
.academic__bgWhite {
  padding: 50px 0 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.academic__bgWhite:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 479px) {
  .academic__bgWhite {
    padding-bottom: 0px;
  }
}

.academicList__wrap {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 50px;
  padding: 0 40px;
}
@media screen and (max-width: 479px) {
  .academicList__wrap {
    padding: 0 15px;
  }
}
.academicList__wrap__inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (min-width: 1401px) {
  .academicList__wrap__inner {
    padding: 0 20px;
  }
}
.academicList__paragragh {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  margin-bottom: 10px;
  color: #102a75;
}

.ct {
  margin-top: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 479px) {
  .ct {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.ct__list {
  margin: 0;
  padding: 0;
}
.ct__list .hd__item {
  border-bottom: 1px solid #102a75;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: baseline;
  gap: 25px;
  margin: 0 auto;
  padding: 10px;
  background: #eef2fd;
}
@media screen and (max-width: 767px) {
  .ct__list .hd__item {
    display: none;
  }
}
.ct__list .hd__item--top {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex-basis: 12%;
  display: inline-block;
  color: #102a75;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.ct__list .hd__item--middle {
  flex-basis: 28%;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  color: #102a75;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.ct__list .hd__item--btm {
  flex-basis: 60%;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  color: #102a75;
  font-weight: 500;
  line-height: 1.5;
}
.ct__list .item {
  border-bottom: 1px solid #d4daec;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .ct__list .item {
    border-bottom: none;
    margin-top: 10px;
  }
}
.ct__list .item__anchor {
  display: inline-block;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: baseline;
  gap: 25px;
  margin: 0 auto;
  padding: 30px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor {
    display: block;
    padding: 20px 15px 15px;
    background: #eef2fd;
  }
}
@media (hover: hover) {
  .ct__list .item__anchor:hover {
    background-color: #ededed;
  }
}
.ct__list .item__anchor--top {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex-basis: 12%;
  display: inline-block;
  color: #102a75;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor--top {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.ct__list .item__anchor--middle {
  flex-basis: 28%;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor--middle {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.ct__list .item__anchor--middle .conference,
.ct__list .item__anchor--middle .author {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  color: #102a75;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor--middle .conference,
  .ct__list .item__anchor--middle .author {
    font-size: 16px;
  }
}
.ct__list .item__anchor--middle .conference {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor--middle .conference {
    margin-bottom: 10px;
  }
}
.ct__list .item__anchor--btm {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  color: #1d1d1d;
  font-weight: 500;
  line-height: 1.5;
  flex-basis: 60%;
}
@media screen and (max-width: 767px) {
  .ct__list .item__anchor--btm {
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.ct__list .item__anchor[target="_blank"] .item__anchor--btm {
  padding-left: 25px;
  background-image: url(../../img/common/icon_othertab.svg);
  background-position: top 4px left;
  background-repeat: no-repeat;
  background-size: 17px;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .ct__list .item__anchor[target="_blank"] .item__anchor--btm {
    padding-left: 24px;
  }
}

.academic-details {
  margin-top: 20px;
}
.academic-details__inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
  /*@media screen and(min-width:1401px){
    max-width: 1160px;
  }*/
  /*@include sp {
    margin-top: 20px;
    padding: 15px 15px 50px;
  };*/
}
@media screen and (max-width: 767px) {
  .academic-details__inner {
    padding: 0 20px;
  }
}
.academic-details__bgWhite {
  padding: 50px 0 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.academic-details__bgWhite:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 479px) {
  .academic-details__bgWhite {
    padding-bottom: 40px;
  }
}
.academic-details .hl-wrap {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
.academic-details .hl-wrap__date {
  color: #102a75;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 18px;
  margin: 0 auto;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .academic-details .hl-wrap__date {
    font-size: 16px;
  }
}
.academic-details .hl-wrap__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #102a75;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: calc(30px - (28px * 1.6 - 28px) / 2) 0;
  border-bottom: 2px solid #102a75;
}
@media screen and (max-width: 767px) {
  .academic-details .hl-wrap__title {
    font-size: 24px;
    line-height: 1.5;
    padding: calc(20px - (24px * 1.5 - 24px) / 2) 0;
  }
}
@media screen and (max-width: 479px) {
  .academic-details .hl-wrap__title {
    line-height: 1.2;
    padding: calc(20px - (24px * 1.2 - 24px) / 2) 0;
  }
}
@media screen and (max-width: 329px) {
  .academic-details .hl-wrap__title {
    font-size: 20px;
  }
}
.academic-details .data-wrap {
  padding: 25px 0 30px;
}
.academic-details .data-wrap .conference, .academic-details .data-wrap .author {
  color: #102a75;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 20px;
  line-height: 1.1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .academic-details .data-wrap .conference, .academic-details .data-wrap .author {
    font-size: 18px;
    text-align: left;
  }
}
.academic-details .data-wrap .conference {
  margin-bottom: 15px;
}
.academic-details .article__wrap {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
  /*@media screen and(min-width:1401px){
     padding: 0 120px; 
     max-width: 1680px;
  }*/
  /*@include sp {
    margin: 40px auto 200px;
  };*/
}
.academic-details .article__wrap__inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto 60px;
  /*@include sp {
    padding: 15px 15px 50px;
  };*/
}
.academic-details .article .system-free {
  line-height: 2;
  font-weight: 500;
  margin-bottom: 50px;
}
.academic-details .article .system-pdf--anchor {
  font-size: 18px;
  color: #1d1d1d;
  font-weight: 500;
  line-height: 1.5;
  padding: calc(5px - (18px * 1.5 - 18px) / 2) 0;
  padding-left: 40px;
  background-image: url(../../img/common/icon_pdf.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px;
  display: inline-block;
  margin-bottom: 20px;
  /*@include sp {
    padding-left: 30px;
  };*/
}
@media screen and (max-width: 767px) {
  .academic-details .article .system-pdf--anchor {
    font-size: 16px;
    padding: calc(5px - (16px * 1.5 - 16px) / 2) 0;
    padding-left: 30px;
  }
}
.academic-details .article .system-pdf--anchor span {
  border-bottom: .5px dashed;
}
.academic-details .article__back {
  margin-top: 100px;
  text-align: center;
}
.academic-details .article__back--anchor {
  font-size: 18px;
  color: #102a75 !important;
  font-weight: 500;
  line-height: 1;
  padding: calc(5px - (18px * 1 - 18px) / 2) 0;
  padding-left: 30px;
  background-image: url(../../img/common/icon_circle_arrow.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 21px;
  display: inline-block;
  background-position: bottom 1px left;
  /*@include sp {
    padding-left: 25px;
  };*/
}
@media screen and (max-width: 767px) {
  .academic-details .article__back--anchor {
    font-size: 16px;
    padding: calc(5px - (16px * 1 - 16px) / 2) 0;
    padding-left: 25px;
  }
}
.academic-details .article__back--anchor span {
  border-bottom: .5px dashed;
}
