@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-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100% !important;
  height: auto !important;
}

/*フォントサイズ*/
body {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 95%;
  /*14px*/
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 980px ) { /*SP*/
  body {
    font-size: 85%;
  }
  #wrap {
    padding-bottom: 5em;
  }
  #footer a#pageTop {
    bottom: 5em;
    width: 40px;
    height: 40px;
    background-size: contain;
  }
}
#wrap {
  font-size: 100%;
  color: #2E302E;
}

table {
  font-size: inherit;
}

/*フォントサイズ*/
.clearfix:after {
  content: " ";
  display: block;
  height: 0.1px;
  font-size: 0.1em;
  clear: both;
  visibility: hidden;
}

* + html .clearfix {
  height: 1%;
}

* html .clearfix {
  height: 1%;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*共通*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
a {
  color: #040404;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.hide {
  display: none;
}

.clear {
  clear: both;
}

.pd10 {
  padding: 10px;
}

.fl_r {
  float: right;
}

.fl_l {
  float: left;
}

.tx_ac {
  text-align: center;
}

.tx_ar {
  text-align: right;
}

/*--------------ビジュアルエディター用-----------------*/
/* =Images
-------------------------------------------------------------- */
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-container img {
  max-width: 100%;
  /* When images are too wide for containing element, force them to fit. */
  height: auto;
  /* Override height to match resized width for correct aspect ratio. */
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

@media screen and (max-width: 980px ) { /*SP*/
  .alignleft,
  img.alignleft {
    float: none;
  }
  .alignright,
  img.alignright {
    float: none;
  }
}
.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  background: #f1f1f1;
  line-height: 18px;
  margin-bottom: 20px;
  max-width: 632px !important;
  /* prevent too-wide images from breaking layout */
  padding: 4px;
  text-align: center;
}

.wp-caption img {
  margin: 5px 5px 0;
  max-width: 622px;
  /* caption width - 10px */
}

.wp-caption p.wp-caption-text {
  color: #777;
  font-size: 12px;
  margin: 5px;
}

.wp-smiley {
  margin: 0;
}

.gallery {
  margin: 0 auto 18px;
}

.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  width: 33%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery img {
  border: 2px solid #cfcfcf;
}

.gallery-columns-2 .attachment-medium {
  max-width: 92%;
  height: auto;
}

.gallery-columns-4 .attachment-thumbnail {
  max-width: 84%;
  height: auto;
}

.gallery .gallery-caption {
  color: #777;
  font-size: 12px;
  margin: 0 0 12px;
}

.gallery dl {
  margin: 0;
}

.gallery img {
  border: 10px solid #f1f1f1;
}

.gallery br + br {
  display: none;
}

#content .attachment img {
  /* single attachment images should be centered */
  display: block;
  margin: 0 auto;
}

/*ファイルアイコン*/
a.pdf, a.word, a.excel, a.zip, a.ppt {
  margin: 0;
  padding: 0px 0px 10px 0px;
}

a.pdf:after {
  padding-left: 5px;
  content: "\f1c1";
  font-family: FontAwesome;
  color: #c40a0a;
  text-decoration: none;
  font-size: 12px;
}

a.word:after {
  padding-left: 5px;
  content: "\f1c2";
  font-family: FontAwesome;
  color: #1557b1;
  text-decoration: none;
  font-size: 12px;
}

a.excel:after {
  padding-left: 5px;
  content: "\f1c3";
  font-family: FontAwesome;
  color: #3b831b;
  text-decoration: none;
  font-size: 12px;
}

a.pdf[img], a.word[img], a.excel[img], a.zip[img], a.ppt[img] {
  background: none;
}

.bt a.pdf:after, .bt a.word:after, .bt a.excel:after, .bt a.zip:after, .bt a.ppt:after {
  content: none;
  padding-left: 0;
}

.p_cont sup {
  font-size: 70%;
  vertical-align: super;
}

#under-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 999;
  -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) {
  #under-nav {
    -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);
  }
}
@media screen and (max-width: 980px ) {
  #under-nav { /*SP*/
    display: table;
    table-layout: fixed;
    font-size: 85%;
  }
}
#under-nav li {
  display: table-cell;
  vertical-align: middle;
}
#under-nav li:first-child {
  width: 36%;
}
#under-nav li a {
  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: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  padding: 10px 8px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#under-nav li a span.unav-icon {
  background: #fff;
  width: 3em;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#under-nav li a span.unav-icon img {
  max-width: 95%;
}
#under-nav li a span.unav-text {
  font-size: 110%;
  line-height: 1.2;
  color: #fff;
  padding-left: 8px;
}
#under-nav li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
#under-nav li#unav-oc a {
  background: #77CB99;
  background: linear-gradient(135deg, #77CB99, #4CB080);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
}
#under-nav li#unav-req a {
  background: #2D4FC8;
  background: linear-gradient(135deg, #2D4FC8, #437EC3);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
}
#under-nav li#unav-exam a {
  background: #7A3892;
  background: linear-gradient(135deg, #7A3892, #A96ABF);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
}

.bg-cross {
  background-color: #ffffff;
  background-image: repeating-linear-gradient(45deg, rgba(250, 200, 200, 0.1) 0px, rgba(250, 200, 200, 0.1) 10px, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 30px), repeating-linear-gradient(135deg, rgba(250, 200, 200, 0.1) 0px, rgba(250, 200, 200, 0.1) 10px, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 30px);
}

.bg-dot {
  background-size: 25px 25px;
  background-position: 0 0, 0px 0px;
  background-image: radial-gradient(#D6EBEB 2px, transparent 2px), radial-gradient(#D6EBEB 2px, #fff 2px);
}