@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);
  -ms-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);
  -ms-transform: scale(1);
  transform: scale(1);
}

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

.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-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);
      -ms-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;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
      -ms-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);
      -ms-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);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.blur.effect {
  -webkit-transform: scale(1);
  -ms-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);
  -ms-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);
  -ms-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);
  }
}
/*-----------------------------------------------------------*/
/*共通*/
/*-----------------------------------------------------------*/
@media screen and (max-width: 980px) {
  /*SP*/
  #contener {
    padding-top: 50px;
  }
}

#scroll_bnr {
  position: absolute;
  right: 0;
  top: 35px;
  z-index: 1000;
  max-width: 90px;
}

@media screen and (max-width: 980px) {
  #scroll_bnr {
    display: none;
  }
}

/*イメージリスト*/
ul.img2 > li, ul.img3 > li, ul.img4 > li {
  float: left;
  margin: auto;
  background: none !important;
  padding: 5px !important;
  text-align: center;
  overflow: hidden;
  _zoom: 1;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul.img2 > li:before, ul.img3 > li:before, ul.img4 > li:before {
  display: none;
}

@media screen and (max-width: 980px) {
  ul.img2 > li, ul.img3 > li, ul.img4 > li {
    /*SP*/
    width: 100% !important;
    font: none !important;
  }
}

ul.img2 > li {
  width: 50%;
}

ul.img3 > li {
  width: 33%;
}

ul.img4 > li {
  width: 25%;
}

/*-----------------------------------------------------------*/
/*ファーストビュー*/
/*-----------------------------------------------------------*/
#top_img {
  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;
  width: 100%;
  position: relative;
  margin-top: 54px;
}

@media screen and (max-width: 980px) {
  #top_img {
    margin-top: 0;
  }
}

#top_img #top_img_sc {
  position: absolute;
  bottom: 0%;
  left: 0%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

@media screen and (max-width: 980px) {
  #top_img #top_img_sc {
    display: none;
  }
}

#top_img #top_anniversary {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 25%;
  max-width: 350px;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

#top_img #top_anniversary img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 980px) {
  #top_img #top_anniversary {
    /*SP*/
    border-radius: 0 10px 0 0;
    padding: 5px;
  }
}

#top_img #top_img_main {
  text-indent: -10000;
  width: 70%;
  height: 700px;
  margin-bottom: 0;
}

#top_img #top_img_ouen {
  width: 30%;
  background: url("../img/bg-ouen.jpg") no-repeat center bottom;
  background-size: cover;
  padding: 8% 5% 2%;
  background-repeat: no-repeat;
  text-align: center;
  margin-bottom: 0;
  -webkit-filter: drop-shadow(-10px 0 10px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(-10px 0 10px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(-10px 0 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(-10px 0 10px rgba(0, 0, 0, 0.1));
  position: relative;
}

@media all and (-ms-high-contrast: none) {
  #top_img #top_img_ouen {
    -webkit-box-shadow: -10px 0 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: -10px 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}

#top_img #top_img_ouen a {
  display: inline-block;
  position: relative;
}

#top_img #top_img_ouen a, #top_img #top_img_ouen a img, #top_img #top_img_ouen a:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#top_img #top_img_ouen a:after {
  display: inline-block;
  content: "VIEW";
  text-align: center;
  width: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
      -ms-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  top: 110%;
  background: #282e89;
  color: #fff;
  padding: 5px 10px;
  border-radius: 100px;
  border: 2px solid #282e89;
}

#top_img #top_img_ouen a:hover {
  -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));
}

#top_img #top_img_ouen a:hover img {
  opacity: 1;
}

@media all and (-ms-high-contrast: none) {
  #top_img #top_img_ouen 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);
  }
}

#top_img #top_img_ouen a:hover:after {
  color: #282e89;
  background: #fff;
}

@media screen and (max-width: 1600px) and (min-width: 980px), screen and (max-width: 980px) {
  #top_img {
    /*SP*/
    background: #fff;
    background-attachment: scroll;
    background-size: cover;
  }
  #top_img #top_img_main {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
  }
  #top_img #top_img_ouen {
    background: none;
    position: absolute;
    bottom: -8em;
    z-index: 1000;
    right: 0;
    width: 35%;
    padding: 0 3% 1em;
  }
  #top_img #top_img_ouen a:after {
    display: none;
  }
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #top_img {
    /*SP*/
  }
  #top_img #top_img_ouen {
    padding-right: 10%;
  }
}

@media screen and (max-width: 980px) {
  #top_img {
    /*SP*/
  }
  #top_img #top_img_ouen {
    width: 35%;
  }
}

#top_img {
  background: url("../img/logo.png") no-repeat center center #fff;
}

#top_img #top_img_logo {
  width: 25%;
  height: 0;
  padding-bottom: 5.9%;
  background: url("../img/logo.png") no-repeat;
  background-size: contain;
  text-indent: -10000px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

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

#top_oclink {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  text-align: left;
  width: 22%;
  z-index: 1000;
  -webkit-animation: buruburu2 3s ease 0s infinite normal forwards;
          animation: buruburu2 3s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

#top_oclink a {
  display: inline-block;
}

@media screen and (max-width: 980px) {
  #top_oclink {
    width: 40%;
  }
}

/*-----------------------------------------------------------*/
/*コンテンツスライダー*/
/*-----------------------------------------------------------*/
#top_bnrslider {
  max-width: 100%;
  overflow: hidden;
  padding-top: 3em;
  padding-bottom: 8em;
  background: #f1f2f8;
  background: -webkit-gradient(linear, left top, right top, from(#f1f2f8), color-stop(#F8F1F3), to(#F8F8F8));
  background: linear-gradient(to right, #f1f2f8, #F8F1F3, #F8F8F8);
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#f1f2f8", endColorstr="#F8F1F3", GradientType=1;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media screen and (max-width: 980px) {
  #top_bnrslider {
    padding-top: 0;
    padding-bottom: 5em;
  }
}

#top_bnrslider h2 {
  font-size: 200%;
  color: #282e89;
  padding: 1.5em 0;
  text-align: center;
  font-family: 'KiwiMaru';
  font-weight: 500;
}

@media screen and (max-width: 980px) {
  #top_bnrslider h2 {
    /*SP*/
    font-size: 150%;
  }
}

#top_bnrslider .bx-wrapper {
  margin-bottom: 10px;
}

#top_bnrslider #top_bnrslider_box {
  padding-bottom: 1.5em;
}

#top_bnrslider #top_bnrslider_box .slick-track li {
  text-align: center;
  padding: 15px 10px;
  opacity: 0.65;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

#top_bnrslider #top_bnrslider_box .slick-track li.slick-current, #top_bnrslider #top_bnrslider_box .slick-track li:hover {
  opacity: 1;
}

#top_bnrslider #top_bnrslider_box .slick-track li a {
  display: inline-block;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-filter: drop-shadow(10px 10px 0 #282e89);
  -moz-filter: drop-shadow(10px 10px 0 #282e89);
  -ms-filter: drop-shadow(10px 10px 0 #282e89);
  filter: drop-shadow(10px 10px 0 #282e89);
}

@media all and (-ms-high-contrast: none) {
  #top_bnrslider #top_bnrslider_box .slick-track li a {
    -webkit-box-shadow: 10px 10px 0 0 #282e89;
            box-shadow: 10px 10px 0 0 #282e89;
  }
}

#top_bnrslider #top_bnrslider_box .slick-track li a:hover img {
  opacity: 1;
}

#top_bnrslider #top_bnrslider_box .slick-dots li button:before {
  font-size: 15px;
  color: #282e89;
}

#top_bnrslider #slider-nav {
  margin-top: 2em;
}

#top_bnrslider #slider-nav li {
  padding: 0 5px;
}

#top_bnrslider #slider-nav .slick-arrow:before, #top_bnrslider #slider-nav .slick-arrow:after {
  color: #282e89;
}

/*-----------------------------------------------------------*/
/*トピックスエリア*/
/*-----------------------------------------------------------*/
#top_news {
  padding-bottom: 2em;
}

#top_news header h1 {
  font-family: "YakuhanJP", "KiwiMaru", "NSJP", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 180%;
  font-weight: 500;
  text-align: center;
  padding: 2em 0;
}

@media screen and (max-width: 980px) {
  #top_news header h1 {
    font-size: 150%;
  }
}

#info-important {
  border: 3px solid #D44B4B;
  border-radius: 10px;
  display: table;
  width: 85%;
  max-width: 980px;
  margin: 0 auto 3em;
}

#info-important h2, #info-important .list-important {
  display: table-cell;
  vertical-align: middle;
}

#info-important h2 {
  width: 20%;
  background: #D44B4B;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
}

#info-important .list-important {
  width: 80%;
}

@media screen and (max-width: 980px) {
  #info-important {
    /*SP*/
  }
  #info-important, #info-important h2, #info-important .list-important {
    display: block;
  }
  #info-important h2, #info-important .list-important {
    width: 100%;
  }
}

.list-important a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.list-important a:not(:last-child) {
  border-bottom: 1px dotted #c1c1c1;
}

.list-important a:hover {
  background: #F2DCDC;
}

.list-important a dl {
  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;
}

.list-important a dl dt {
  width: 15%;
  text-align: center;
  font-size: 90%;
  padding-right: 1em;
  color: #D44B4B;
}

.list-important a dl dd {
  width: 85%;
}

@media screen and (max-width: 980px) {
  .list-important a dl {
    /*SP*/
  }
  .list-important a dl dt, .list-important a dl dd {
    width: 100%;
  }
}

#top_newsbox {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
      grid-template-areas: "area-topics area-event" "area-topics area-exam";
}

@media screen and (max-width: 980px) {
  #top_newsbox {
    /*SP*/
    display: block;
  }
  #top_newsbox #tab_topics_box {
    border-right: none;
    border-bottom: 1px solid #dedede;
  }
}

#top_newsbox > div {
  padding: 1em 3%;
}

#top_newsbox > div h2 {
  font-size: 120%;
  letter-spacing: 2px;
  margin-bottom: 1em;
  position: relative;
  padding-left: 1.8em;
}

#top_newsbox > div h2:before {
  display: inline-block;
  content: "";
  width: 1.2em;
  height: 5px;
  border-radius: 10px;
  background: #282e89;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  left: 0;
}

#top_newsbox #tab_topics_box {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: area-topics;
  border-right: 1px solid #dedede;
}

#top_newsbox #tab_add_box {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: area-event;
  border-bottom: 1px solid #dedede;
}

#top_newsbox #tab_event_box {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: area-exam;
}

#lineup-list {
  padding: 3em 0;
}

.thum-post {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 3em;
}

.thum-post li {
  padding: 10px;
}

.thum-post li a {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  -webkit-filter: drop-shadow(0 3px 8px rgba(40, 46, 137, 0.07));
  -moz-filter: drop-shadow(0 3px 8px rgba(40, 46, 137, 0.07));
  -ms-filter: drop-shadow(0 3px 8px rgba(40, 46, 137, 0.07));
  filter: drop-shadow(0 3px 8px rgba(40, 46, 137, 0.07));
}

@media all and (-ms-high-contrast: none) {
  .thum-post li a {
    -webkit-box-shadow: 0 3px 8px 0 rgba(40, 46, 137, 0.07);
            box-shadow: 0 3px 8px 0 rgba(40, 46, 137, 0.07);
  }
}

.thum-post li dl {
  position: relative;
}

.thum-post li dl dt {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.thum-post li dl dt img {
  height: 100%;
  max-width: 150% !important;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.thum-post li dl dd {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}

.thum-post li dl dd p {
  margin-bottom: 10px;
}

.thum-post li dl .meta {
  padding-top: 10px;
  width: 100%;
  border-top: 1px dotted #c1c1c1;
  margin-top: 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;
}

.thum-post li dl .meta span {
  display: inline-block;
}

.thum-post li dl .meta span.cat {
  line-height: 1;
  font-size: 85%;
  padding: 0.3em 0.5em;
  background: #282e89;
  color: #fff;
}

.text-post-box {
  margin-bottom: 2em;
}

.text-post-box#sticky-list {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px dashed #c1c1c1;
}

a.headline-post {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a.headline-post:hover {
  background: rgba(40, 46, 137, 0.1);
  color: #282e89;
}

a.headline-post dl {
  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: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  line-height: 1.5;
  padding: 10px 1em;
}

a.headline-post dl dt {
  min-width: 8em;
  padding-right: 1em;
  font-size: 85%;
  padding-top: 0.25em;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  a.headline-post dl {
    /*SP*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  a.headline-post dl dt {
    width: 100%;
  }
  a.headline-post dl dd {
    padding-left: 1em;
  }
}

div#sns {
  width: 100%;
  padding: 3em 3%;
  background: #f6f6f6;
}

div#sns dl {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

div#sns dl dt, div#sns dl dd {
  padding: 10px 5px;
}

div#sns dl dt {
  width: 100%;
}

div#sns dl dt span {
  display: block;
  padding-bottom: 10px;
  font-size: 150%;
  font-family: "KiwiMaru";
}

div#sns dl dd {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

div#sns dl dd a {
  display: inline-block;
  width: 32%;
  background: #fff;
}

@media screen and (max-width: 980px) {
  div#sns dl dd a {
    width: 51%;
    margin-bottom: 10px;
  }
}

/*-----------------------------------------------------------*/
/*大学院TOP*/
/*-----------------------------------------------------------*/
#graduate_top_img {
  margin-top: 115px;
}

#graduate_top_img h2 {
  width: 100%;
  height: 0;
  padding-bottom: 40.4%;
  background: url("../img/graduate_main.jpg") no-repeat left top;
  background-size: contain;
  text-indent: -10000px;
  display: block;
}

@media screen and (max-width: 980px) {
  /*SP*/
  #graduate_top_img {
    margin-top: 0px;
  }
}

/*大学院トップニュース*/
#top_graduate_news {
  background: url("../img/top_graduate_bg.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 0;
}

#top_graduate_news div.inr2 {
  padding: 10px 40px 40px 10px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

#top_graduate_news div.inr2 dl {
  border-bottom: 1px dotted #c1c1c1;
  position: relative;
}

#top_graduate_news div.inr2 dl dt {
  display: block;
  text-indent: -10000px;
  width: 15%;
  max-width: 116px;
  height: 0;
  padding-bottom: 10.5%;
  background: url("../img/top_graduate_news.png") no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}

#top_graduate_news div.inr2 dl dd {
  width: 13%;
  position: absolute;
  right: 0px;
  top: 0px;
}

#top_graduate_news div.inr2 dl dd a {
  display: block;
  background: url("../img/tab_topics.png") no-repeat center center;
  background-size: contain;
  width: 100%;
  max-width: 136px;
  height: 0;
  padding-bottom: 75%;
  text-align: left;
  text-indent: -10000px;
}

#top_graduate_news div.inr2 dl dd a:hover {
  background: url("../img/tab_topics_on.png") no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 980px) {
  /*SP*/
  #top_graduate_news {
    background-attachment: scroll;
    padding: 10px 0;
  }
  #top_graduate_news div.inr2 {
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
  }
  #top_graduate_news div.inr2 dl {
    border-bottom: none;
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 10px;
  }
  #top_graduate_news div.inr2 dl dt, #top_graduate_news div.inr2 dl dd {
    display: table-cell;
    vertical-align: middle;
  }
  #top_graduate_news div.inr2 dl dt {
    width: 30%;
    max-width: 116px;
    padding-bottom: 10.5%;
    background-size: 50%;
    margin: 0;
  }
  #top_graduate_news div.inr2 dl dd {
    width: 50%;
    position: static;
    text-align: right;
  }
  #top_graduate_news div.inr2 dl dd a {
    display: inline-block;
    background: none;
    background: #9f69b5;
    color: #fff;
    padding-bottom: 0;
    padding: 5px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    text-indent: 0;
    text-align: center;
  }
  #top_graduate_news div.inr2 dl dd a:hover {
    background: #9f69b5;
  }
}

div.info_tx_list ul {
  max-height: 200px;
  overflow: hidden;
}

div.info_tx_list ul li {
  padding: 10px;
}

div.info_tx_list ul li:before {
  content: "\f054";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #9f69b5;
}

div.info_tx_list ul li span, div.info_tx_list ul li a {
  display: inline-block;
  padding: 0 10px;
  vertical-align: middle;
}

div.info_tx_list ul li a {
  text-decoration: underline;
}

div.info_tx_list ul li a:hover {
  text-decoration: none;
}

div.info_tx_list ul li span.cat {
  background: #E98218;
  color: #fff;
}

@media screen and (max-width: 980px) {
  /*SP*/
  div.info_tx_list ul li {
    padding: 5px;
  }
  div.info_tx_list ul li a {
    display: block;
    text-decoration: underline;
  }
  div.info_tx_list ul li a:hover {
    text-decoration: none;
  }
}

/*大学院トップ3枠リンク*/
.graduate_top_menu {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 30px 0;
}

.graduate_top_menu li {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #c1c1c1;
  padding: 10px;
}

.graduate_top_menu li a {
  display: block;
  width: 100%;
  padding: 20px 10px;
}

.graduate_top_menu li a:hover {
  background: #9f69b5;
  color: #fff;
  text-decoration: none;
}

.graduate_top_menu li i {
  color: #E98218;
}

.graduate_top_menu li:last-child {
  border-right: none;
}

@media screen and (max-width: 980px) {
  /*SP*/
  .graduate_top_menu {
    display: block;
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
  }
  .graduate_top_menu li {
    widows: 100%;
    display: block;
    padding: 10px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #c1c1c1;
  }
  .graduate_top_menu li a {
    display: block;
    width: 100%;
    padding: 20px 10px;
  }
  .graduate_top_menu li a:hover {
    background: #9f69b5;
    color: #fff;
    text-decoration: none;
  }
}

/*大学院 修了生の方*/
#syoumeisyo {
  background: url("../img/st.gif") repeat left top;
  padding: 20px;
  margin-bottom: 20px;
}

#syoumeisyo h2 {
  background: #9f69b5;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

#syoumeisyo ul li {
  padding: 10px;
}

#syoumeisyo ul li a {
  text-decoration: underline;
}

#syoumeisyo ul li a:hover {
  text-decoration: none;
}

#syoumeisyo ul i {
  color: #E98218;
}

/*大学院リード*/
#graduate_room {
  background: url("../img/graduate_room.jpg") no-repeat left top;
  background-size: contain;
  margin-bottom: 20px;
}

#graduate_room div {
  width: 70%;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  margin: 0 0 0 auto;
}

#graduate_room div h2 a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 11.5%;
  background: url("../img/graduate_lead.gif") no-repeat center top;
  background-size: contain;
  margin-bottom: 30px;
  text-indent: -10000px;
}

@media screen and (max-width: 980px) {
  /*SP*/
  #graduate_room {
    padding: 10px;
    background-size: cover;
  }
  #graduate_room div {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    margin: 0 0 0 auto;
  }
  #graduate_room div h2 a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 11.5%;
    background: url("../img/graduate_lead.gif") no-repeat center top;
    background-size: contain;
    margin-bottom: 10px;
    text-indent: -10000px;
  }
}

/*centerトピックス*/
#top_center_news {
  background: url("../img/st.gif") repeat left top;
  padding: 20px;
  margin-bottom: 80px;
}

/*訪問者別メニュー-------------------*/
#top_houmonmenu {
  background: #f6f6f6;
}

#top_houmonmenu, #top_houmonmenu a {
  color: #282e89;
}

#top_houmonmenu dl {
  width: 100%;
  padding: 20px 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -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_houmonmenu dl dt {
  font-size: 120%;
  border-right: 1px dotted #c1c1c1;
  padding: 5px 20px 5px 5px;
}

#top_houmonmenu dl dt:before {
  content: "\f0ca";
  font-family: FontAwesome;
  padding-right: 5px;
}

#top_houmonmenu dl dd {
  padding-left: 1em;
}

#top_houmonmenu dl dd ul li {
  display: inline-block;
  vertical-align: text-top;
  margin-right: 5px;
}

#top_houmonmenu dl dd ul li a {
  padding: 5px;
  display: block;
  font-size: 110%;
}

#top_houmonmenu dl dd ul li a:hover {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: #fff;
  color: #282e89;
  text-decoration: none;
}

#top_houmonmenu dl dd ul li a:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
}

@media screen and (max-width: 980px) {
  /*SP*/
  #top_houmonmenu dl {
    padding: 10px;
  }
  #top_houmonmenu dl dt, #top_houmonmenu dl dd {
    float: none;
  }
  #top_houmonmenu dl dt {
    width: 100%;
    font-size: 150%;
    border-right: none;
    border-bottom: 1px dotted #fff;
  }
}

/*学科タブ-------------------*/
#dep_menu {
  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;
  width: 100%;
  margin: 0 auto;
}

#dep_menu li#dep_education a.dep-link {
  background: #ea944d;
}

#dep_menu li#dep_education a.dep-link dd {
  color: #ea944d;
}

#dep_menu li#dep_education a.dep-link dd:before {
  background: #ea944d;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_education a.dep-link dd {
    color: #fff;
    background: #ea944d;
    font-weight: normal;
  }
}

#dep_menu li#dep_education .dep-concept {
  color: #ea944d;
}

#dep_menu li#dep_education .dep-introduce a {
  background: rgba(234, 148, 77, 0.1);
}

#dep_menu li#dep_education .dep-introduce a:after {
  color: #ea944d;
}

#dep_menu li#dep_education .dep-introduce a:hover {
  background: rgba(234, 148, 77, 0.2);
}

#dep_menu li#dep_education .dep-news li a dt {
  color: #ea944d;
}

#dep_menu li#dep_education .dep-news li a:hover {
  background: rgba(234, 148, 77, 0.1);
}

#dep_menu li#dep_culture a.dep-link {
  background: #eb6679;
}

#dep_menu li#dep_culture a.dep-link dd {
  color: #eb6679;
}

#dep_menu li#dep_culture a.dep-link dd:before {
  background: #eb6679;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_culture a.dep-link dd {
    color: #fff;
    background: #eb6679;
    font-weight: normal;
  }
}

#dep_menu li#dep_culture .dep-concept {
  color: #eb6679;
}

#dep_menu li#dep_culture .dep-introduce a {
  background: rgba(235, 102, 121, 0.1);
}

#dep_menu li#dep_culture .dep-introduce a:after {
  color: #eb6679;
}

#dep_menu li#dep_culture .dep-introduce a:hover {
  background: rgba(235, 102, 121, 0.2);
}

#dep_menu li#dep_culture .dep-news li a dt {
  color: #eb6679;
}

#dep_menu li#dep_culture .dep-news li a:hover {
  background: rgba(235, 102, 121, 0.1);
}

#dep_menu li#dep_child a.dep-link {
  background: #e0bd55;
}

#dep_menu li#dep_child a.dep-link dd {
  color: #e0bd55;
}

#dep_menu li#dep_child a.dep-link dd:before {
  background: #e0bd55;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_child a.dep-link dd {
    color: #fff;
    background: #e0bd55;
    font-weight: normal;
  }
}

#dep_menu li#dep_child .dep-concept {
  color: #e0bd55;
}

#dep_menu li#dep_child .dep-introduce a {
  background: rgba(224, 189, 85, 0.1);
}

#dep_menu li#dep_child .dep-introduce a:after {
  color: #e0bd55;
}

#dep_menu li#dep_child .dep-introduce a:hover {
  background: rgba(224, 189, 85, 0.2);
}

#dep_menu li#dep_child .dep-news li a dt {
  color: #e0bd55;
}

#dep_menu li#dep_child .dep-news li a:hover {
  background: rgba(224, 189, 85, 0.1);
}

#dep_menu li#dep_nursing a.dep-link {
  background: #579fdd;
}

#dep_menu li#dep_nursing a.dep-link dd {
  color: #579fdd;
}

#dep_menu li#dep_nursing a.dep-link dd:before {
  background: #579fdd;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_nursing a.dep-link dd {
    color: #fff;
    background: #579fdd;
    font-weight: normal;
  }
}

#dep_menu li#dep_nursing .dep-concept {
  color: #579fdd;
}

#dep_menu li#dep_nursing .dep-introduce a {
  background: rgba(87, 159, 221, 0.1);
}

#dep_menu li#dep_nursing .dep-introduce a:after {
  color: #579fdd;
}

#dep_menu li#dep_nursing .dep-introduce a:hover {
  background: rgba(87, 159, 221, 0.2);
}

#dep_menu li#dep_nursing .dep-news li a dt {
  color: #579fdd;
}

#dep_menu li#dep_nursing .dep-news li a:hover {
  background: rgba(87, 159, 221, 0.1);
}

#dep_menu li#dep_health a.dep-link {
  background: #88ba52;
}

#dep_menu li#dep_health a.dep-link dd {
  color: #88ba52;
}

#dep_menu li#dep_health a.dep-link dd:before {
  background: #88ba52;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_health a.dep-link dd {
    color: #fff;
    background: #88ba52;
    font-weight: normal;
  }
}

#dep_menu li#dep_health .dep-concept {
  color: #88ba52;
}

#dep_menu li#dep_health .dep-introduce a {
  background: rgba(136, 186, 82, 0.1);
}

#dep_menu li#dep_health .dep-introduce a:after {
  color: #88ba52;
}

#dep_menu li#dep_health .dep-introduce a:hover {
  background: rgba(136, 186, 82, 0.2);
}

#dep_menu li#dep_health .dep-news li a dt {
  color: #88ba52;
}

#dep_menu li#dep_health .dep-news li a:hover {
  background: rgba(136, 186, 82, 0.1);
}

#dep_menu li#dep_daigakuin a.dep-link {
  background: #c698dc;
}

#dep_menu li#dep_daigakuin a.dep-link dd {
  color: #c698dc;
}

#dep_menu li#dep_daigakuin a.dep-link dd:before {
  background: #c698dc;
}

@media screen and (max-width: 980px) {
  #dep_menu li#dep_daigakuin a.dep-link dd {
    color: #fff;
    background: #c698dc;
    font-weight: normal;
  }
}

#dep_menu li#dep_daigakuin .dep-concept {
  color: #c698dc;
}

#dep_menu li#dep_daigakuin .dep-introduce a {
  background: rgba(198, 152, 220, 0.1);
}

#dep_menu li#dep_daigakuin .dep-introduce a:after {
  color: #c698dc;
}

#dep_menu li#dep_daigakuin .dep-introduce a:hover {
  background: rgba(198, 152, 220, 0.2);
}

#dep_menu li#dep_daigakuin .dep-news li a dt {
  color: #c698dc;
}

#dep_menu li#dep_daigakuin .dep-news li a:hover {
  background: rgba(198, 152, 220, 0.1);
}

#dep_menu > li {
  padding: 10px 5px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  color: #fff;
  width: 25%;
}

@media screen and (max-width: 980px) {
  #dep_menu > li {
    width: 50%;
  }
}

#dep_menu > li a.dep-link {
  display: block;
}

#dep_menu > li a.dep-link:hover {
  text-decoration: none;
}

#dep_menu > li a.dep-link:hover img {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

#dep_menu > li a.dep-link:hover dt:before {
  opacity: 1;
}

#dep_menu > li a.dep-link dl dt {
  width: 100%;
  height: 75%;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

#dep_menu > li a.dep-link dl dt:before {
  font-size: 120%;
  font-family: "KiwiMaru";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background: #fff;
  padding: 3px 1em;
  border-radius: 30px;
  -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));
  content: "MORE→";
  opacity: 0;
  z-index: 3;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media all and (-ms-high-contrast: none) {
  #dep_menu > li a.dep-link dl dt:before {
    -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);
  }
}

#dep_menu > li a.dep-link dl dd {
  width: 85%;
  margin-top: -2em;
  background: #fff;
  border-radius: 0 30px 0 0;
  padding: 15px 2%;
  font-size: 180%;
  position: relative;
  z-index: 10;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #dep_menu > li a.dep-link dl dd {
    font-size: 150%;
  }
}

#dep_menu > li a.dep-link dl dd span {
  display: block;
  font-size: 50%;
  font-weight: normal;
  line-height: 1.5;
}

#dep_menu > li a.dep-link dl dd:before {
  display: inline-block;
  content: "";
  width: 30%;
  height: 5px;
  background: #dedede;
  position: absolute;
  top: 0;
  left: 0;
}

#dep_menu > li .dep-exp {
  background: #fff;
  padding: 1em 5%;
}

#dep_menu > li .dep-exp .dep-concept {
  font-size: 130%;
  min-height: 3.5em;
}

#dep_menu > li .dep-exp .dep-concept span {
  display: inline-block;
}

#dep_menu > li .dep-exp .dep-introduce a {
  display: block;
  text-decoration: none;
  padding: 10px 1em;
  position: relative;
}

#dep_menu > li .dep-exp .dep-introduce a:not(:last-child) {
  margin-bottom: 10px;
}

#dep_menu > li .dep-exp .dep-introduce a, #dep_menu > li .dep-exp .dep-introduce a:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#dep_menu > li .dep-exp .dep-introduce a:after {
  content: "\f0a9";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  right: 1em;
  color: #000;
}

#dep_menu > li .dep-exp .dep-introduce a:hover:after {
  right: 0.5em;
}

.dep-news {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 1em;
}

.dep-news li:not(:last-child) {
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 1em;
}

.dep-news li a {
  display: block;
  padding: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  text-decoration: none !important;
}

.dep-news li a:hover {
  background: #f6f6f6;
}

.dep-news li dl {
  line-height: 1.5;
}

.dep-news li dl dt {
  color: #999;
  font-size: 85%;
}

#dep_menu.dep_en {
  max-width: 980px;
  margin: 3em auto;
}

#dep_menu.dep_en > li {
  width: 50%;
}

#dep_menu.dep_en dd {
  font-size: 150% !important;
}

#dep_menu.dep_en dd span {
  font-size: 80% !important;
}

@media screen and (max-width: 980px) {
  /*SP*/
  #dep_menu * {
    -webkit-transition: none !important;
    transition: none !important;
  }
  #dep_menu {
    width: 100%;
  }
  #dep_menu > li {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    display: inline-block;
    color: #fff;
  }
  #dep_menu > li a.dep-link dl dt {
    width: 100%;
    height: 75%;
    overflow: hidden;
  }
  #dep_menu > li a.dep-link dl dt img {
    height: auto;
  }
  #dep_menu > li a.dep-link dl dd {
    text-align: center;
    margin-top: 0;
    width: 100%;
    padding: 0;
    font-size: 150%;
  }
  #dep_menu > li a.dep-link dl dd span {
    display: none;
  }
  .dep-exp {
    display: none;
  }
  #dep_menu.dep_en {
    width: 100%;
  }
  #dep_menu.dep_en li {
    width: 50%;
  }
  #dep_menu.dep_en li dd {
    min-height: 5em !important;
  }
  /*スライダー上書き*/
  .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 0;
    margin-top: 0;
    outline: 0;
    width: 60px;
    height: 100%;
    text-indent: -9999px;
    z-index: 9999;
    background-size: contain;
  }
}

/*学科コンテンツ-------------------*/
.dep_cont {
  margin-bottom: 60px;
  display: none;
  margin-top: -2px;
}

.dep_cont:first-of-type {
  display: block;
}

@media screen and (min-width: 1200px) {
  .dep_cont {
    min-height: 400px;
  }
}

.dep_cont h1 {
  width: 70%;
  margin: 0 0 0 auto;
  text-align: right;
  padding: 30px;
  border-bottom: 1px dotted #c1c1c1;
}

.dep_cont .dep_tab_cont {
  width: 70%;
  max-width: 1600px;
  margin: 0 0 30px auto;
}

.dep_cont .dep_tab_cont a {
  width: 24%;
  height: 100%;
  padding: 8px;
  display: inline-block;
  vertical-align: top;
}

.dep_cont .dep_tab_cont a:hover {
  text-decoration: none;
}

.dep_cont .dep_tab_cont a dl {
  background: #fff;
  height: 100%;
  padding: 10px 10px 30px 10px;
  border: 1px solid #c1c1c1;
  position: relative;
}

.dep_cont .dep_tab_cont a dl dt {
  height: 170px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}

.dep_cont .dep_tab_cont a dl dt img {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.dep_cont .dep_tab_cont a dl dd h2 {
  text-align: center;
  margin-bottom: 1%;
  line-height: 1.5;
}

.dep_cont .dep_tab_cont a dl dd p.excerpt {
  text-align: center;
}

.dep_cont .dep_tab_cont a dl dd p.time {
  color: #ea6100;
  text-align: right;
  position: absolute;
  margin: 0;
  right: 10px;
  bottom: 0;
}

.dep_cont .dep_tab_cont a dl dd p.time:before {
  content: "\f017";
  font-family: FontAwesome;
  padding-right: 5px;
}

.dep_cont .dep_btn {
  position: relative;
  width: 75%;
  margin: 0 0 0 auto;
  text-align: center;
}

.dep_cont .dep_btn p.old_more {
  position: absolute;
  right: 20px;
  top: 20px;
}

.dep_cont .dep_btn p.old_more a:before {
  content: "\f08e";
  font-family: FontAwesome;
  padding-right: 5px;
}

@media screen and (max-width: 980px) {
  /*SP*/
  .dep_cont {
    margin-top: -1px;
    margin-bottom: 60px;
  }
  .dep_cont h1 {
    background-size: contain !important;
    padding: 30px 10px 30px 30%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px dotted #c1c1c1;
  }
  .dep_cont .dep_tab_cont {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
  .dep_cont .dep_tab_cont a {
    width: 100%;
    height: auto;
    padding: 8px;
    display: block;
  }
  .dep_cont .dep_tab_cont a dl {
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 5px;
    border: 1px solid #c1c1c1;
    display: block;
    overflow: hidden;
  }
  .dep_cont .dep_tab_cont a dl dt, .dep_cont .dep_tab_cont a dl dd {
    display: block;
    vertical-align: middle;
  }
  .dep_cont .dep_tab_cont a dl dt {
    height: auto;
    width: 30%;
    height: 0;
    padding-bottom: 30%;
    overflow: hidden;
    background: none;
    float: left;
  }
  .dep_cont .dep_tab_cont a dl dt img {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .dep_cont .dep_tab_cont a dl dd {
    float: right;
    padding: 5px 10px;
    width: 70%;
  }
  .dep_cont .dep_tab_cont a dl dd h2 {
    text-align: left;
    margin-bottom: 1%;
  }
  .dep_cont .dep_tab_cont a dl dd p.excerpt {
    text-align: left;
  }
  .dep_cont .dep_tab_cont a dl dd p.time {
    text-align: left;
    margin: 0;
    position: static;
  }
  .dep_cont .dep_tab_cont a dl dd p.time:before {
    content: "\f017";
    font-family: FontAwesome;
    padding-right: 5px;
  }
  .dep_cont .dep_btn {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .dep_cont .dep_btn p.old_more {
    position: static;
  }
  .dep_cont .dep_btn p.old_more a:before {
    content: "\f08e";
    font-family: FontAwesome;
    padding-right: 5px;
  }
}

/*その他のリンク-------------------*/
#other_box ul {
  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;
  padding: 5em 0;
  width: 100%;
}

#other_box li {
  width: 25%;
  border: 1px solid #dedede;
  border-right: 1px dotted #dedede;
  border-left: 1px dotted #dedede;
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #other_box li {
    width: 50%;
  }
}

@media screen and (max-width: 980px) {
  #other_box li {
    width: 100%;
  }
}

#other_box a {
  display: block;
  background: #fff;
  padding: 1em;
  padding-right: 1.5em;
  text-decoration: none;
  position: relative;
}

#other_box a, #other_box a:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#other_box a:after {
  font-family: FontAwesome;
  content: "\f061";
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #282e89;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  right: 1em;
}

#other_box a dl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -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;
}

#other_box a dl dt {
  width: 35%;
}

@media screen and (max-width: 980px) {
  #other_box a dl dt {
    max-width: 100px;
  }
}

#other_box a dl dt img {
  border: 3px solid #fff;
}

#other_box a dl dd {
  width: 65%;
  font-size: 125%;
  font-weight: bold;
  padding: 1em;
}

#other_box a dl dd span {
  display: block;
  font-size: 65%;
  font-weight: normal;
  color: #c1c1c1;
}

#other_box a:hover {
  background: rgba(40, 46, 137, 0.05);
}

#other_box a:hover img {
  opacity: 1;
}

#other_box a:hover:after {
  right: 0.5em;
}

#other_bnr {
  padding: 3em 0;
  background: #282e89;
}

#other_bnr ul {
  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;
}

#other_bnr ul li {
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 980px) {
  #other_bnr ul li {
    width: 50%;
  }
}

#top_group {
  background: url("../img/sns_bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

#top_group > ul {
  max-width: 1600px;
  margin: 0 auto;
  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;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #top_group > ul {
    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_group > ul li {
  width: 20%;
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-decoration: none;
  text-align: center;
}

#top_group > ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

#top_group > ul li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  height: 100%;
  display: block;
  color: #282e89;
  background: rgba(255, 255, 255, 0.6);
  padding: 3em 10% 1em;
}

#top_group > ul li a, #top_group > ul li a * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

#top_group > ul li a dt {
  width: 100%;
  height: 0;
  border: 3px solid #fff;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#top_group > ul li a dt img {
  max-width: 130% !important;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  -ms-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1) rotateZ(0);
}

#top_group > ul li a dd {
  font-size: 110%;
  padding: 1em;
}

#top_group > ul li a dd:after {
  content: "\f08e";
  font-family: FontAwesome;
  padding-left: 5px;
}

#top_group > ul li a:hover {
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

#top_group > ul li a:hover dt {
  border-color: #282e89;
}

#top_group > ul li a:hover dt img {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.2) rotateZ(0);
  -ms-transform: translate(-50%, -50%) scale(1.2) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.2) rotateZ(0);
}

@media screen and (max-width: 980px) {
  #top_group {
    /*SP*/
  }
  #top_group > ul {
    display: block;
    padding: 1em;
  }
  #top_group > ul li {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1em;
    padding: 0;
  }
  #top_group > ul li a {
    padding: 1em;
  }
  #top_group > ul li a dt {
    display: none;
  }
  #top_group > ul li a dd {
    margin-top: 0;
    width: 100%;
  }
}
