@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);
  }
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*ベースCSS*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
body.menuopen {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
body.menuopen::-webkit-scrollbar {
  display: none;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  /*　検証　一時コメントアウト
  	overflow: auto;
  */
}

#wrap {
  position: relative;
  height: 100%;
  min-height: 100%;
}

body > #wrap {
  height: auto;
  font-family: "YakuhanJP", "NSJP", "NSJP", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

#footer {
  width: 100%;
}

div#content {
  margin: 0 auto;
  line-height: 1.9;
}

.inr {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 980px ) {
  .inr {
    width: 100%;
  }
}

.inr2 {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 980px ) {
  .inr2 {
    width: 100%;
  }
}

.inr img, .inr2 img {
  max-width: 100%;
  height: auto;
}

.inline-list li {
  display: inline-block;
}

.acctitle {
  font-size: 160%;
  font-weight: normal;
  letter-spacing: 2px;
  padding: 1em 0;
  font-family: "YakuhanJP", "KiwiMaru", "NSJP", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*テンプレートパーツ*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*-------------------------------------*/
/*ヘッダー--------------------------------*/
/*-------------------------------------*/
#top_hed {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  position: fixed;
  z-index: 10000;
  background: #282e89;
  width: 100%;
  top: 0;
  left: 0;
}
#top_hed.graduate_c {
  background: #fff !important;
}
#top_hed.graduate_c #gnav {
  display: block !important;
}
@media screen and (max-width: 980px ) {
  #top_hed.graduate_c #gnav {
    display: none !important;
  }
}
#top_hed * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top_hed.fix {
  position: fixed;
  z-index: 10000;
  background: rgba(40, 46, 137, 0.95) !important;
  width: 100%;
  top: 0;
}
#top_hed.fix.graduate_c {
  background: #fff !important;
}
#top_hed.fix #top_logo h1 {
  width: 20% !important;
}
#top_hed.fix #hdnav {
  display: none !important;
}
#top_hed.fix #gnav {
  padding: 5px 20px;
  display: block;
}

@media screen and (max-width: 980px ) { /*SP*/
  #top_hed #top_logo {
    position: relative;
  }
  #top_hed #top_logo h1 {
    width: 70%;
    background: #fff;
  }
  #top_hed #hdnav, #top_hed #hdhoumon, #top_hed .searchbox, #top_hed #gnav, #top_hed #primary-nav {
    display: none !important;
  }
}
#top_logo {
  padding-right: 1%;
  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: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 0 1em;
  position: relative;
}
#top_logo #logo {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#top_logo #logo a {
  display: inline-block;
  padding: 1.2em 3%;
  background: #fff;
}
@media screen and (max-width: 980px ) {
  #top_logo #logo a {
    padding: 1.3em 5% 1.3em 2%;
  }
}
#top_logo .searchbox {
  width: 15%;
}
#top_logo #hdhoumon {
  width: 150px;
  max-width: 20%;
}
#top_logo #primary-nav {
  max-width: 30%;
}
.searchbox {
  background: #fff;
  padding: 0 5px;
  vertical-align: middle;
  border: 1px solid #c1c1c1;
  border-radius: 30px;
  overflow: hidden;
}
.searchbox form {
  width: 100%;
  padding: 0 10px;
  border: none;
  outline: none;
  display: table;
  table-layout: fixed;
}
.searchbox .hd_search, .searchbox .hd_search_bt {
  display: block;
  vertical-align: middle;
  outline: 0;
  float: left;
}
.searchbox .hd_search {
  width: 90%;
  border: none;
  padding: 5px;
}
.searchbox input.hd_search_bt {
  width: 10%;
  border: none;
  text-indent: -10000px;
  cursor: pointer;
  background: url("../img/search.gif") no-repeat center center;
  background-size: contain;
  padding: 5px;
}

#hdhoumon {
  padding: 0 1em;
}
#hdhoumon * {
  -webkit-transition: none !important;
  transition: none !important;
}
#hdhoumon dt {
  background: #fff;
  color: #282e89;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}
#hdhoumon dd {
  position: relative;
}
#hdhoumon dd ul {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  padding: 20px;
  width: 200px;
  right: 0;
  top: 20px;
  z-index: 1000;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.26));
  -moz-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.26));
  -ms-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.26));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.26));
}
@media all and (-ms-high-contrast: none) {
  #hdhoumon dd ul {
    -webkit-box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.26);
            box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.26);
  }
}
#hdhoumon dd ul li {
  padding: 10px;
}
#hdhoumon dd ul li:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #00608d;
}

#hdnav {
  background: #eee;
}
#hdnav ul {
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}
#hdnav ul li {
  display: inline-block;
}
#hdnav ul li, #hdnav ul li a {
  color: #666;
}
#hdnav ul li:not(:last-child):after {
  content: "｜";
  padding: 10px;
}

#primary-nav {
  text-align: right;
}
#primary-nav, #primary-nav a {
  color: #fff;
}
#primary-nav li {
  display: inline-block;
  font-size: 90%;
}
#primary-nav li:not(:last-child) {
  margin-right: 1em;
}

#spmenu {
  cursor: pointer;
  display: inline-block;
  width: 5em;
  height: 100%;
  padding: 2.5em 1em 3em;
  text-align: center;
  color: #fff;
  margin: 0 !important;
  line-height: 1;
  margin-bottom: 0.5em;
  position: relative;
  overflow: visible;
  text-align: center;
}
#spmenu span {
  display: inline-block;
  width: 60%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
#spmenu span:nth-child(1) {
  top: 1.25em;
}
#spmenu span:nth-child(2) {
  top: 2em;
}
#spmenu span:nth-child(3) {
  top: 2.75em;
}
#spmenu:after {
  display: inline-block;
  font-size: 85%;
  letter-spacing: 2px;
  color: #fff;
  display: inline-block;
  content: "MENU";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  bottom: 1em;
}
#spmenu:hover {
  background: #282e89;
}
#spmenu:hover span {
  background: #fff !important;
}
#spmenu:hover:after {
  color: #fff !important;
}

/*グローバル-------------------*/
#gnav {
  border-top: 1px solid #fff;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  padding: 0 20px;
  display: none;
}
#gnav, #gnav a {
  color: #fff;
}
#gnav ul {
  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;
  max-width: 1200px;
  margin: 0 auto;
}
#gnav ul li {
  text-align: center;
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 110%;
  position: relative;
  padding-right: 1em;
}
#gnav ul li a {
  display: block;
}
#gnav ul li:not(:last-child):after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  right: 0;
  content: "｜";
  padding: 8px;
}

/*-------------------------------------*/
/*展開メニュー----------------------------*/
/*-------------------------------------*/
#spmenu_box {
  -webkit-transition: none !important;
  transition: none !important;
  display: none;
  width: 100%;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-left: 25%;
  background: url("../img/learn-bg-r.jpg") no-repeat left center #fff;
  background-size: auto 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #spmenu_box {
    padding-left: 20%;
  }
}
@media screen and (max-width: 980px ) {
  #spmenu_box {
    padding-left: 0;
  }
}
@media screen and (min-width: 1200px ) {
  #spmenu_box {
    background-size: 25% auto;
  }
}
#spmenu_box #menu_wrap {
  background: #282e89;
  width: 100%;
  height: 100%;
  height: 100vh;
  padding: 1em 5%;
  overflow-y: auto;
}
#spmenu_box #menu_wrap, #spmenu_box #menu_wrap a {
  color: #fff;
}
#spmenu_box #closemenu {
  cursor: pointer;
  width: 5em;
  height: 5em;
  position: relative;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 1em;
}
#spmenu_box #closemenu span {
  display: inline-block;
  width: 60%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
#spmenu_box #closemenu span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(45deg);
  transform: translate(-50%, -50%) scale(1) rotateZ(45deg);
}
#spmenu_box #closemenu span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(-45deg);
  transform: translate(-50%, -50%) scale(1) rotateZ(-45deg);
}
#spmenu_box #closemenu:after {
  font-size: 85%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  top: 4.5em;
  content: "CLOSE";
  color: #fff;
}
#spmenu_box .searchbox {
  display: block !important;
  width: 100%;
  margin-bottom: 1.5em;
}
#spmenu_box #nav-visitor dt {
  padding: 10px;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  margin-bottom: 10px;
}
#spmenu_box #nav-visitor dd {
  padding: 0 2%;
  margin-bottom: 1em;
}
#spmenu_box #nav-visitor dd 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;
  overflow: hidden;
}
#spmenu_box #nav-visitor dd ul li {
  min-width: 25%;
  color: #fff;
  padding: 10px 3px;
  position: relative;
  padding-left: 1em;
}
#spmenu_box #nav-visitor dd ul li:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
  position: absolute;
  left: 0;
  top: 10px;
}
#spmenu_box #nav-visitor dd ul li a {
  display: inline-block;
  color: #fff;
}
#spmenu_box #nav-purpose {
  margin-bottom: 2em;
}
#spmenu_box #nav-purpose > div > 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;
}
#spmenu_box #nav-purpose > div > ul > li {
  width: 25%;
  min-width: 180px;
  max-width: 250px;
  padding: 1em 1em 2em 0;
  font-size: 120%;
  position: relative;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #spmenu_box #nav-purpose > div > ul > li {
    width: 33.3%;
  }
}
@media screen and (max-width: 980px ) {
  #spmenu_box #nav-purpose > div > ul > li {
    width: 100%;
  }
}
#spmenu_box #nav-purpose > div > ul > li:before {
  display: inline-block;
  content: "";
  width: 2em;
  height: 2px;
  background: #FFC000;
  position: absolute;
  top: 0.5em;
  left: 0;
}
#spmenu_box #nav-purpose > div > ul .sub-menu {
  padding-top: 1em;
  font-size: 80%;
}

/*-------------------------------------*/
/*フッター--------------------------------*/
/*-------------------------------------*/
#footer {
  background: #282e89;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer a#pageTop {
  width: 72px;
  height: 72px;
  position: fixed;
  bottom: 46px;
  right: 15px;
  background: url("../img/page_up.png") no-repeat left top;
  display: block;
  overflow: hidden;
  text-indent: -10000px;
  display: none;
  z-index: 1000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
@media screen and (max-width: 980px ) {
  #footer a#pageTop {
    bottom: 5em;
    right: 10px;
  }
}
#footer #ft_nav dl {
  border-bottom: 1px dotted #c1c1c1;
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}
#footer #ft_nav dl dt, #footer #ft_nav dl dd {
  display: table-cell;
  vertical-align: middle;
}
#footer #ft_nav dl dt {
  width: 30%;
}
#footer #ft_nav dl dd {
  width: 70%;
}
#footer #ft_nav dl dd ul {
  text-align: right;
}
#footer #ft_nav dl dd ul li {
  display: inline-block;
  margin-right: 20px;
}
#footer #ft_nav ul.ft_link {
  padding-bottom: 40px;
  text-align: center;
}
#footer #ft_nav ul.ft_link li {
  display: inline-block;
}
#footer #ft_nav ul.ft_link li:after {
  content: "｜";
}
#footer #ft_nav ul.ft_link li:last-child:after {
  display: none;
}
#footer address, #footer small {
  display: block;
  text-align: center;
  color: #fff;
}
#footer address {
  padding: 1em 15px;
}
#footer address span {
  display: inline-block;
}
#footer small {
  border-top: 1px solid #fff;
  padding: 10px 15px;
}

#top_relation {
  background: #fff;
  padding: 0.5em 3% 0.5em;
}
#top_relation header {
  text-align: center;
}
#top_relation header h1 {
  font-size: 110%;
  letter-spacing: 2px;
  margin-bottom: 3em;
}
#top_relation header h1:before, #top_relation header h1:after {
  content: "―";
  margin: 0 5px;
}
#top_relation ul {
  text-align: center;
}
#top_relation ul li {
  padding-left: 1em;
}
#top_relation ul li:not(:last-child):after {
  content: "│";
  margin-left: 1em;
}
#top_relation ul li, #top_relation ul li a {
  color: #282e89;
}
@media screen and (max-width: 980px ) {
  #top_relation ul { /*SP*/
    text-align: left;
  }
  #top_relation ul li {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  #top_relation ul li:after {
    display: none !important;
  }
}

@media screen and (max-width: 980px ) { /*SP*/
  #footer a#pageTop {
    width: 40px;
    height: 40px;
    background-size: contain;
  }
  #footer #ft_nav dl {
    display: block;
  }
  #footer #ft_nav dl dt, #footer #ft_nav dl dd {
    display: block;
  }
  #footer #ft_nav dl dt {
    width: 60%;
    margin: 0 auto 10px auto;
  }
  #footer #ft_nav dl dd {
    display: block;
    width: 100%;
  }
  #footer #ft_nav dl dd ul {
    width: 100%;
    text-align: left;
  }
  #footer #ft_nav dl dd ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    padding: 10px;
  }
  #footer #ft_nav ul.ft_link {
    display: none;
  }
  #footer b, #footer small {
    display: block;
    text-align: center;
    color: #fff;
    padding: 5px;
  }
}
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*汎用パーツ*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
.btn_w {
  padding: 10px;
}

.btn_w a, .btn_w input {
  font-size: 140%;
  background: rgb(255, 255, 255);
  -webkit-filter: drop-shadow(0px 0px 13px #d9d9d9);
  -moz-filter: drop-shadow(0px 0px 13px #d9d9d9);
  -ms-filter: drop-shadow(0px 0px 13px #d9d9d9);
  filter: drop-shadow(0px 0px 13px #d9d9d9);
  display: inline-block;
  padding: 10px 20px;
  min-width: 250px;
  text-align: center;
  border-radius: 15px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  text-decoration: none !important;
  border: none;
}
@media all and (-ms-high-contrast: none) {
  .btn_w a, .btn_w input {
    -webkit-box-shadow: 0px 0px 13px 0 #d9d9d9;
            box-shadow: 0px 0px 13px 0 #d9d9d9;
  }
}
.btn_w a:before, .btn_w input:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #ea6100;
}
.btn_w a:hover, .btn_w input:hover {
  text-decoration: none !important;
  background: #00608d;
  color: #fff !important;
}

.panel_box {
  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;
}
.panel_box > * {
  padding: 1em;
}
.panel_box.box2 > * {
  width: 50%;
}
.panel_box.box3 > * {
  width: 33.3%;
}
.panel_box.box4 > * {
  width: 25%;
}
.panel_box.box5 > * {
  width: 20%;
}
.panel_box.tile_box > * {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  .panel_box { /*SP*/ }
  .panel_box.box4 > *, .panel_box.box5 > * {
    width: 50%;
  }
}
@media screen and (max-width: 980px ) {
  .panel_box { /*SP*/ }
  .panel_box.box2 > *, .panel_box.box3 > * {
    width: 100%;
  }
  .panel_box.box4 > *, .panel_box.box5 > * {
    width: 50%;
  }
}

@-webkit-keyframes moreLink {
  0% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  50% {
    -webkit-transform: rotateZ(225deg);
    transform: rotateZ(225deg);
  }
  100% {
    -webkit-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
  }
}
@keyframes moreLink {
  0% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  50% {
    -webkit-transform: rotateZ(225deg);
    transform: rotateZ(225deg);
  }
  100% {
    -webkit-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
  }
}
.view-more {
  text-align: right;
  padding-left: 1em;
}
.view-more a {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 0 5px 8px;
  position: relative;
  text-decoration: none;
}
.view-more a:before, .view-more a:after {
  display: inline-block;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.view-more a:before {
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #282e89;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  top: 0.25em;
  left: -1em;
}
.view-more a:after {
  width: 100%;
  height: 1px;
  background: #282e89;
  bottom: 0;
  left: 0;
}
.view-more a:hover {
  color: #282e89;
}
.view-more a:hover:before {
  background: #282e89;
  -webkit-animation: moreLink 0.75s ease 0s 1 normal forwards;
          animation: moreLink 0.75s ease 0s 1 normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.view-more a:hover:after {
  width: 0;
  left: 50%;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*共通テンプレート　カラーリング調整*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
#gnav.graduate_c {
  background: #9f69b5;
}

#spmenu.graduate_c span {
  background: #9f69b5;
}
#spmenu.graduate_c:after {
  color: #9f69b5;
}
#spmenu.graduate_c:hover {
  background: #9f69b5;
}

#spmenu_box.graduate_c #menu_wrap {
  background: #9f69b5;
}

#footer.graduate_c {
  background: #9f69b5;
}

