@charset "UTF-8";
/*--prefix set--------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
@font-face {
  font-family: "KiwiMaru";
  font-style: light;
  font-weight: 400;
  src: url("../font/KiwiMaru-Light.woff2") format("woff2"), url("../font/KiwiMaru-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "KiwiMaru";
  font-style: medium;
  font-weight: 500;
  src: url("../font/KiwiMaru-Medium.woff2") format("woff2"), url("../font/KiwiMaru-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NSJP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NSJP-Regular.woff2") format("woff2"), url("../font/NSJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NSJP";
  font-style: normal;
  font-weight: bold;
  src: url("../font/NSJP-Bold.woff2") format("woff2"), url("../font/NSJP-Bold.woff") format("woff");
  font-display: swap;
}
/*ベースフォント設定*/
/*Font Awesome5*/
@media screen and (min-width: 1200px ) { /*PC*/ }
@media screen and (max-width: 980px ) { /*SP*/ }
@media screen and (max-width: 1600px ) and (min-width: 980px ) { /*TB*/ }
/*幅設定------------------------------------------*/
/*コンテンツ幅*/
/*配色設定---------------------------------------*/
/*メインカラー*/
/*テキストカラー(メインコンテンツ内のテキスト)*/
/*ホバーカラー*/
/*サブカラー*/
/*テキストカラー(サブコンテンツ内のテキスト)*/
/*アクセントカラー*/
/*ボーダーカラー*/
/*マドンナブルー*/
/*応援サイトカラー*/
/*大学院サイトカラー*/
/*コンテンツボックスのmixin-----------------------------------------------*/
@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fade {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.fade.effect {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-list > * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
}
.fade-list.effect > *:nth-child(1) {
  -webkit-animation: fadeUp 0.5s 0.1s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(2) {
  -webkit-animation: fadeUp 0.5s 0.2s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(3) {
  -webkit-animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(4) {
  -webkit-animation: fadeUp 0.5s 0.4s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(5) {
  -webkit-animation: fadeUp 0.5s 0.5s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(6) {
  -webkit-animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(7) {
  -webkit-animation: fadeUp 0.5s 0.7s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(8) {
  -webkit-animation: fadeUp 0.5s 0.8s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(9) {
  -webkit-animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
          animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(10) {
  -webkit-animation: fadeUp 0.5s 1s 1 ease normal forwards;
          animation: fadeUp 0.5s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(11) {
  -webkit-animation: fadeUp 0.5s 1.1s 1 ease normal forwards;
          animation: fadeUp 0.5s 1.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(12) {
  -webkit-animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
          animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.move-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.move-img:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.move-img img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  left: -100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.move-img.effect img {
  opacity: 1;
  left: 0;
}
.move-img.effect:before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  width: 100%;
}

.blur {
  -ms-filter: blur(6px);
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.blur.effect {
  -webkit-transform: scale(1);
  transform: scale(1);
  -ms-filter: blur(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

.focus-img {
  position: relative;
}
.focus-img img {
  display: block;
  min-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  -webkit-transition: all 3s;
  transition: all 3s;
}
.focus-img.effect img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1) rotateZ(0);
}

@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

@-webkit-keyframes firstView {
  0% {
    background-size: 150%;
    background-position: top center;
  }
  50% {
    background-size: 100% auto;
    background-position: center center;
  }
  100% {
    background-size: cover;
    background-position: bottom center;
  }
}
@keyframes firstView {
  0% {
    background-size: 150%;
    background-position: top center;
  }
  50% {
    background-size: 100% auto;
    background-position: center center;
  }
  100% {
    background-size: cover;
    background-position: bottom center;
  }
}
#top_img {
  width: 100%;
  background: url("../oimg/top-image.jpg") no-repeat #61c4d9;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px ) {
  #top_img {
    -webkit-animation: firstView 10s ease 0s 1 normal forwards;
            animation: firstView 10s ease 0s 1 normal forwards;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
}
#top_img #ouen-lead {
  text-align: center;
  padding: 15% 1em 12%;
  color: #fff;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 980px ) {
  #top_img #ouen-lead {
    padding: 10em 1em 3em;
  }
}
@media all and (-ms-high-contrast: none) {
  #top_img #ouen-lead {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
#top_img #ouen-lead dt {
  margin-bottom: 3em;
}
#top_img #ouen-lead dd {
  font-size: 110%;
  line-height: 2.5;
  letter-spacing: 1px;
  padding-bottom: 2em;
}
#top_img .lead-more {
  padding-top: 2em;
}
#top_img .lead-more a {
  display: inline-block;
  border-radius: 8px;
  color: #282e89;
  padding: 0.8em 2em;
  text-decoration: none;
  background: #fff;
  color: #282e89;
  font-weight: bold;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  position: relative;
  border: 1px solid #282e89;
  outline: 3px solid #fff;
}
#top_img .lead-more a:hover {
  background: #282e89;
  color: #fff;
  -webkit-filter: drop-shadow(0 0 15px rgba(40, 46, 137, 0.1));
  -moz-filter: drop-shadow(0 0 15px rgba(40, 46, 137, 0.1));
  -ms-filter: drop-shadow(0 0 15px rgba(40, 46, 137, 0.1));
  filter: drop-shadow(0 0 15px rgba(40, 46, 137, 0.1));
  border-color: #fff;
  outline-color: #282e89;
}
@media all and (-ms-high-contrast: none) {
  #top_img .lead-more a:hover {
    -webkit-box-shadow: 0 0 15px 0 rgba(40, 46, 137, 0.1);
            box-shadow: 0 0 15px 0 rgba(40, 46, 137, 0.1);
  }
}

.ipadfix {
  background-attachment: scroll !important;
}

/*----------------------------------------*/
/*トップリンクエリア*/
/*----------------------------------------*/
#oc-linkinfo, #top-linkinfo {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
#oc-linkinfo p, #top-linkinfo p {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 980px ) {
  #oc-linkinfo p, #top-linkinfo p { /*SP*/
    width: 100%;
  }
}
#oc-linkinfo p a, #top-linkinfo p a {
  color: #fff;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding: 20% 10% 30%;
  position: relative;
  text-decoration: none;
}
#oc-linkinfo p a span, #top-linkinfo p a span {
  position: relative;
  position: relative;
  z-index: 5;
  padding: 0 5px;
}
#oc-linkinfo p a span.title, #top-linkinfo p a span.title {
  display: inline-block;
  font-size: 180%;
  letter-spacing: 3px;
  font-weight: bold;
}
#oc-linkinfo p a span.title:before, #top-linkinfo p a span.title:before {
  display: inline-block;
  content: "";
  width: 0;
  height: 2em;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: -1;
}
#oc-linkinfo p a span.sup, #top-linkinfo p a span.sup {
  display: block;
  letter-spacing: 1px;
  font-weight: bold;
}
#oc-linkinfo p a img, #top-linkinfo p a img {
  display: inline-block;
  z-index: 1;
}
#oc-linkinfo p a:before, #top-linkinfo p a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
#oc-linkinfo p a:after, #top-linkinfo p a:after {
  font-size: 150%;
  line-height: 1.5;
  display: inline-block;
  position: absolute;
  bottom: 2em;
  left: 10%;
  content: "VIEW";
  z-index: 5;
  border-bottom: 5px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media screen and (max-width: 980px ) {
  #oc-linkinfo p a:after, #top-linkinfo p a:after {
    display: none;
  }
}
#oc-linkinfo p a:hover:before, #top-linkinfo p a:hover:before {
  opacity: 0.5;
}
#oc-linkinfo p a:hover span.title, #top-linkinfo p a:hover span.title {
  color: #333;
}
#oc-linkinfo p a:hover span.title:before, #top-linkinfo p a:hover span.title:before {
  width: 100%;
}
#oc-linkinfo p a:hover:after, #top-linkinfo p a:hover:after {
  opacity: 1;
}
#oc-linkinfo #toplink-exam a, #top-linkinfo #toplink-exam a {
  background-image: url("../oimg/img_exam.jpg");
}
#oc-linkinfo #toplink-exam a:before, #top-linkinfo #toplink-exam a:before {
  background: rgba(255, 135, 135, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 135, 135, 0.5)), to(rgba(255, 210, 98, 0.5)));
  background: linear-gradient(to right, rgba(255, 135, 135, 0.5), rgba(255, 210, 98, 0.5));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
#oc-linkinfo #toplink-campus a, #top-linkinfo #toplink-campus a {
  background-image: url("../oimg/toplink-opencampus.jpg");
}
#oc-linkinfo #toplink-campus a:before, #top-linkinfo #toplink-campus a:before {
  background: rgba(130, 206, 255, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(rgba(130, 206, 255, 0.5)), to(rgba(130, 237, 153, 0.5)));
  background: linear-gradient(to right, rgba(130, 206, 255, 0.5), rgba(130, 237, 153, 0.5));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

/*----------------------------------------*/
/*トピックス*/
/*----------------------------------------*/
#top_topics {
  padding: 5em 0 8em;
  background: #fff;
}
#top_topics header {
  padding: 1em;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  margin-bottom: 2em;
}
#top_topics header h1 {
  letter-spacing: 1;
  display: table;
}
#top_topics header h1 span, #top_topics header h1 .arc_btn {
  display: table-cell;
  vertical-align: middle;
}
#top_topics header h1 span {
  display: inline-block;
  font-size: 220%;
  margin-right: 1em;
}
#top_topics header h1 .arc_btn {
  font-size: 110%;
  letter-spacing: 2px;
  display: inline-block;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 5px 2em;
  border-radius: 30px;
  text-decoration: none;
}
#top_topics header h1 .arc_btn:hover {
  background: #fff;
  color: #000;
}
#top_topics header #top-sns {
  display: table;
  background: #282e89;
  padding: 1em 2.5em;
  border-radius: 30px;
}
@media screen and (max-width: 980px ) {
  #top_topics header #top-sns {
    margin: 2em auto 0;
  }
}
#top_topics header #top-sns, #top_topics header #top-sns a {
  color: #fff;
}
#top_topics header #top-sns dt, #top_topics header #top-sns dd {
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
}
#top_topics header #top-sns dt {
  border-right: 1px solid #fff;
  padding-right: 1em;
}
#top_topics header #top-sns dd {
  padding-left: 1em;
}
#top_topics header #top-sns ul {
  font-size: 130%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
#top_topics header #top-sns ul li {
  padding: 0 10px;
}
#top_topics .slick-next:before, #top_topics .slick-prev:before {
  color: #282e89;
}
#top_topics .slick-next {
  right: 0;
}
#top_topics .slick-prev {
  left: 0;
}

#top_topics_box {
  width: 100%;
  overflow: hidden;
}

.tab_cont:first-of-type {
  display: block;
}
.tab_cont .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
}
.tab_cont .slick-track li {
  height: auto !important;
  padding: 10px;
}
.tab_cont .slick-track li a {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
  overflow: hidden;
  position: relative;
}
.tab_cont .slick-track li a, .tab_cont .slick-track li a * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tab_cont .slick-track li a dl {
  padding-bottom: 2em;
}
.tab_cont .slick-track li a dl dt {
  height: 250px;
  width: 100%;
  margin-bottom: 1em;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 980px ) {
  .tab_cont .slick-track li a dl dt {
    height: 200px;
  }
}
.tab_cont .slick-track li a dl dt img {
  width: auto;
  height: auto;
  max-width: 400px;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.tab_cont .slick-track li a dl dd {
  padding: 15px 3%;
  position: relative;
}
.tab_cont .slick-track li a dl dd:before {
  display: inline-block;
  content: "";
  width: 3em;
  height: 3px;
  background: #E55252;
  border-radius: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.tab_cont .slick-track li a dl dd h2 {
  font-size: 120%;
  margin-bottom: 10px;
}
.tab_cont .slick-track li a dl dd p.excerpt {
  line-height: 1.5;
  margin-bottom: 2em;
}
@media screen and (max-width: 980px ) {
  .tab_cont .slick-track li a dl dd p.excerpt {
    display: none;
  }
}
.tab_cont .slick-track li a dl dd p.cat {
  background: #f0819c;
  text-align: center;
  border-radius: 20px;
}
.tab_cont .slick-track li a p.time {
  border-top: 1px solid #e6e0d7;
  width: 100%;
  padding: 10px 15px 0;
  font-size: 90%;
  color: #282e89;
  position: absolute;
  bottom: 5px;
  left: 0;
  margin: 0;
}
.tab_cont .slick-track li a p.time:before {
  font-family: FontAwesome;
  content: "\f017";
  padding-right: 5px;
}
.tab_cont .slick-track li a p.time:after {
  font-size: 150%;
  font-family: FontAwesome;
  content: "\f0a9";
  color: #282e89;
  position: absolute;
  bottom: 0;
  right: 10px;
}
.tab_cont .slick-track li a:hover {
  text-decoration: none;
}
.tab_cont .slick-track li a:hover dl dt img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.1) rotateZ(0);
  opacity: 1;
}
.tab_cont .slick-track li a:hover dl dd:before {
  width: 100%;
}
.tab_cont p.btn_w {
  margin-top: 30px;
}

.bx-pager {
  position: relative;
  margin-top: 3em;
}

/*----------------------------------------*/
/*キャンパスライフ*/
/*----------------------------------------*/
#top_campus header {
  width: 100%;
  background-size: 30%;
  padding: 3em 0;
}
#top_campus header h1 {
  width: 40%;
  max-width: 470px;
  height: 0;
  padding-bottom: 10%;
  margin: 0 auto;
  background: url("../oimg/top_campus_title.png") no-repeat center center;
  background-size: contain;
  text-indent: -10000px;
}
@media screen and (max-width: 980px ) {
  #top_campus header { /*SP*/
    background: none;
  }
  #top_campus header h1 {
    width: 100%;
  }
}
#top_campus div.campus_bg {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
#top_campus div.campus_bg a {
  display: block;
  width: 33.3%;
  text-align: center;
}
#top_campus div.campus_bg a dl {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
#top_campus div.campus_bg a dl dt img {
  min-width: 100%;
  height: auto;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_campus div.campus_bg a dl dd {
  width: 100%;
  text-align: center;
  position: absolute;
  background: red;
  bottom: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_campus div.campus_bg a:hover img {
  opacity: 1;
}
#top_campus div.campus_bg a:hover dt img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#top_campus div.campus_bg a:hover dd {
  padding: 2em 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#top_campus div.campus_bg a:nth-of-type(1) dd {
  background: rgba(235, 89, 125, 0.76);
}
#top_campus div.campus_bg a:nth-of-type(2) dd {
  background: rgba(199, 151, 75, 0.76);
}
#top_campus div.campus_bg a:nth-of-type(3) dd {
  background: rgba(89, 150, 71, 0.76);
}

/*----------------------------------------*/
/*もっと純大を知ろう*/
/*----------------------------------------*/
#top_learn {
  padding: 3em 0 5em;
  background-color: #FBF1E3;
  background-image: url("../oimg/learn-bg-r.jpg");
  background-position: right top;
  background-size: auto 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 980px ) {
  #top_learn { /*SP*/
    padding: 0 0 2em;
  }
}
@media screen and (max-width: 980px ) {
  #top_learn {
    background-position: 150% top;
  }
}
#top_learn > header, #top_learn ul.inr {
  position: relative;
  z-index: 5;
}
#top_learn > header {
  padding: 2em 0;
  position: relative;
}
#top_learn > header h1 {
  font-size: 200%;
  letter-spacing: 3px;
  font-weight: normal;
  max-width: 30%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 2;
}
#top_learn ul {
  display: table;
  width: 100%;
  max-width: 1200px;
  table-layout: fixed;
}
#top_learn ul li {
  display: table-cell;
  vertical-align: top;
  width: 33.3%;
  max-width: 33.3%;
  padding: 0 1rem;
  text-align: center;
}
#top_learn ul li:nth-child(2) {
  padding-top: 5rem;
}
#top_learn ul li a {
  display: inline-block;
  max-width: 100%;
  border-radius: 100%;
  border: 5px solid #fff;
  overflow: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_learn ul li a img {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 1.5em;
  z-index: 1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_learn ul li a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
#top_learn ul li#menu-data a {
  background: url("../oimg/bg_learn_data.jpg") no-repeat center center;
}
#top_learn ul li#menu-movie a {
  background: url("../oimg/bg_learn_movie.jpg") no-repeat center center;
}
#top_learn ul li#menu-student a {
  background: url("../oimg/bg_learn_student.jpg") no-repeat center center;
}
@media screen and (max-width: 980px ) {
  #top_learn { /*SP*/
    padding-bottom: 2rem;
  }
  #top_learn > header:before, #top_learn > header:after {
    height: 100px;
  }
  #top_learn > header h1 {
    max-width: 50%;
  }
  #top_learn ul li {
    padding: 0.5rem;
  }
  #top_learn ul li:nth-child(2) {
    padding-top: 0.5rem;
  }
  #top_learn ul li a img {
    padding: 0.5rem;
  }
}

/*----------------------------------------*/
/*未来予想図*/
/*----------------------------------------*/
#top_future {
  width: 100%;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
#top_future #future-title {
  width: 40%;
  padding: 3em 3%;
  padding-left: 5%;
  background: url("../oimg/top_future_bg.png") no-repeat 0% bottom;
  background-size: 90% auto;
}
#top_future #top_future_box {
  width: 60%;
  max-width: 900px;
  padding: 5em 0;
  overflow: hidden;
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(14.2857142857%, transparent), color-stop(14.2857142857%, #f9f6f2), color-stop(28.5714285714%, #f9f6f2), color-stop(28.5714285714%, #f9f6f2), color-stop(42.8571428571%, #f9f6f2), color-stop(42.8571428571%, #f9f6f2), color-stop(57.1428571429%, #f9f6f2), color-stop(57.1428571429%, #f9f6f2), color-stop(71.4285714286%, #f9f6f2), color-stop(71.4285714286%, #f9f6f2), color-stop(85.7142857143%, #f9f6f2), color-stop(85.7142857143%, #f9f6f2));
  background: linear-gradient(to right, transparent 0%, transparent 14.2857142857%, #f9f6f2 14.2857142857%, #f9f6f2 28.5714285714%, #f9f6f2 28.5714285714%, #f9f6f2 42.8571428571%, #f9f6f2 42.8571428571%, #f9f6f2 57.1428571429%, #f9f6f2 57.1428571429%, #f9f6f2 71.4285714286%, #f9f6f2 71.4285714286%, #f9f6f2 85.7142857143%, #f9f6f2 85.7142857143%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$statCol", endColorstr="$endCol",GradientType=1 );
}
@media screen and (max-width: 980px ) {
  #top_future { /*SP*/ }
  #top_future #future-title, #top_future #top_future_box {
    width: 100%;
    padding: 3em 3%;
  }
  #top_future #top_future_box {
    background: #f9f6f2 !important;
  }
}
#top_future .slick-dots {
  bottom: 1.5em;
}

#future-title {
  text-align: center;
}
#future-title h1 {
  font-size: 280%;
  color: #282e89;
  letter-spacing: 5px;
  margin-bottom: 1.5em;
  padding-bottom: 15px;
  position: relative;
}
#future-title h1:after {
  display: inline-block;
  width: 1.5em;
  height: 5px;
  background: #282e89;
  border-radius: 5px;
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  bottom: 0;
}
#future-title h1 span {
  display: block;
}
#future-title h1 span.sup {
  letter-spacing: 0;
  font-size: 50%;
  display: inline-block;
  padding: 3px 2em;
  background: #fff;
  color: #282e89;
  border: 1px solid #282e89;
  border-radius: 30px;
  position: relative;
  margin-bottom: 1.2em;
}
#future-title h1 span.sup:after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: #fff;
  background: linear-gradient(135deg, #fff 0%, #fff 6.6666666667%, #fff 6.6666666667%, #fff 13.3333333333%, #fff 13.3333333333%, #fff 20%, #fff 20%, #fff 26.6666666667%, #fff 26.6666666667%, #fff 33.3333333333%, #fff 33.3333333333%, #fff 40%, #fff 40%, #fff 46.6666666667%, #282e89 46.6666666667%, #282e89 53.3333333333%, transparent 53.3333333333%, transparent 60%, transparent 60%, transparent 66.6666666667%, transparent 66.6666666667%, transparent 73.3333333333%, transparent 73.3333333333%, transparent 80%, transparent 80%, transparent 86.6666666667%, transparent 86.6666666667%, transparent 93.3333333333%, transparent 93.3333333333%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$statCol", endColorstr="$endCol",GradientType=1 );
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(45deg) rotateZ(0);
  transform: translateX(-50%) scale(45deg) rotateZ(0);
  bottom: -1em;
  border-left: 1px solid #282e89;
}
#future-title p:not([class]) {
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 1.5em;
  font-weight: bold;
}
#future-title .more {
  padding: 2em 0;
}
#future-title .more a {
  display: inline-block;
  min-width: 35%;
  background: #FFBD7E;
  background: -webkit-gradient(linear, left top, right top, from(#FFBD7E), color-stop(#EBAEF2), to(#86E7EE));
  background: linear-gradient(to right, #FFBD7E, #EBAEF2, #86E7EE);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
  color: #fff;
  padding: 10px 1.5em;
  border-radius: 30px;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#future-title .more a:hover {
  outline: 5px solid #fff;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
@media all and (-ms-high-contrast: none) {
  #future-title .more a:hover {
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

#top_future_box.slick-dotted.slick-slider {
  margin-bottom: 0;
}
#top_future_box .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top_future_box .slick-slide {
  height: auto !important;
}
#top_future_box .slick-list {
  padding-right: 40% !important;
}
@media screen and (max-width: 980px ) {
  #top_future_box .slick-list {
    padding: 0 15% !important;
  }
}
#top_future_box .slick-list li {
  padding: 1em 1em 0;
  padding-top: 3em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top_future_box .slick-list li dt, #top_future_box .slick-list li dd {
  opacity: 0.5;
}
#top_future_box .slick-list li:hover, #top_future_box .slick-list li.slick-current {
  padding-top: 0;
  padding-bottom: 3em;
}
#top_future_box .slick-list li:hover dt, #top_future_box .slick-list li:hover dd, #top_future_box .slick-list li.slick-current dt, #top_future_box .slick-list li.slick-current dd {
  opacity: 1;
}
#top_future_box .slick-list li a {
  display: block;
  height: 100%;
  position: relative;
  padding: 10px;
  background: #E3F1D1;
  background: linear-gradient(135deg, #E3F1D1, #DDE8F8, #F6DCE8);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
}
#top_future_box .slick-list li a, #top_future_box .slick-list li a * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_future_box .slick-list li a dl {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 120%;
}
#top_future_box .slick-list li a dl dt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top_future_box .slick-list li a dl dt img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  max-width: inherit !important;
  max-width: initial !important;
  height: 100% !important;
  width: auto !important;
}
#top_future_box .slick-list li a dl dd {
  padding: 1em;
  font-weight: bold;
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}
#top_future_box .slick-list li a dl dd p {
  margin-bottom: 0;
}
#top_future_box .slick-list li a:hover {
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  -moz-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  -ms-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}
@media all and (-ms-high-contrast: none) {
  #top_future_box .slick-list li a:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.8);
  }
}
#top_future_box .slick-list li a:hover img {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.2) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.2) rotateZ(0);
}
#top_future_box .slick-list li a:hover dd {
  background: rgba(255, 255, 255, 0.3);
}

/*----------------------------------------*/
/*JUNSHIN LIFE*/
/*----------------------------------------*/
#top_other_info {
  background: url("../oimg/bg-othe-info.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 20px;
  position: relative;
}
#top_other_info:before {
  content: "";
  width: 10%;
  background: url("../oimg/top_other_corner.png") no-repeat left top;
  background-size: contain;
  height: 40%;
  position: absolute;
  right: 0;
  top: 0;
}
#top_other_info h2 {
  background: url("../oimg/top_other_info_title.png") no-repeat center top;
  width: 401px;
  height: 203px;
  text-indent: -10000px;
  margin: 0 auto;
}
#top_other_info div.inr2 {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}
#top_other_info div.inr2 div#bnr {
  width: 70%;
  float: left;
}
#top_other_info div.inr2 div#bnr ul {
  overflow: hidden;
}
#top_other_info div.inr2 div#bnr ul li {
  float: left;
  width: 50%;
}
#top_other_info div.inr2 dl#sns {
  width: 29%;
  float: right;
}
#top_other_info div.inr2 dl#sns dt {
  margin-bottom: 20px;
}
#top_other_info div.inr2 dl#sns li {
  border-bottom: 1px dotted #c1c1c1;
  padding: 10px;
}

@media screen and (max-width: 980px ) { /*SP*/
  #top_other_info h2 {
    width: 60%;
    padding-bottom: 30%;
    height: 0;
    background-size: contain;
  }
  #top_other_info div.inr2 {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
  }
  #top_other_info div.inr2 div#bnr {
    width: 100%;
    float: none;
  }
  #top_other_info div.inr2 div#bnr ul {
    overflow: hidden;
  }
  #top_other_info div.inr2 div#bnr ul li {
    float: left;
    width: 50%;
  }
  #top_other_info div.inr2 dl#sns {
    width: 100%;
    float: none;
  }
  #top_other_info div.inr2 dl#sns dt {
    display: none;
  }
  #top_other_info div.inr2 dl#sns ul {
    overflow: hidden;
  }
  #top_other_info div.inr2 dl#sns ul li {
    width: 50%;
    float: left;
    border-bottom: 1px dotted #c1c1c1;
    padding: 24px;
  }
}