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

html {
  margin-top: 0 !important;
}

/*フォントサイズ*/
body {
  font-family: "YakuhanJP", "NSJP", "NSJP", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  /*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 {
  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;
}

.btn_w a, .btn_w input {
  font-size: 140%;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 13px 2px rgb(217, 217, 217);
  box-shadow: 0px 0px 13px 2px rgb(217, 217, 217);
  border: 1px solid #bebebe;
  display: inline-block;
  padding: 10px 20px;
  min-width: 250px;
  text-align: center;
  border-radius: 15px;
  text-decoration: none !important;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.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%;
  }
}

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

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

body > #wrap {
  height: auto;
}

#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%;
  }
}

/*----------------------------------------------*/
/*ヘッダー-----------------------------------------*/
/*----------------------------------------------*/
#top_hed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5em 3%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 980px ) {
  #top_hed {
    padding: 1em 3%;
  }
}
#top_hed #top_logo {
  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;
}
#top_hed #top_logo h1 {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 1em;
}
#top_hed #top_logo h1 a {
  display: inline-block;
}
#top_hed #top_logo #o-primary {
  min-width: 30%;
  padding-right: 3em;
  text-align: right;
}
@media screen and (max-width: 980px ) {
  #top_hed #top_logo #o-primary {
    display: none;
  }
}
#top_hed #top_logo #o-primary li {
  display: inline-block;
  margin-left: 1em;
  line-height: 1;
}
#top_hed #top_logo #o-primary li a {
  display: inline-block;
  color: #fff;
  padding: 5px 0.5em;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#top_hed #top_logo #o-primary li a:hover {
  background: #fff;
  color: #282e89;
  text-decoration: none;
}
#top_hed.fix {
  background: rgba(40, 46, 137, 0.8) !important;
  padding: 10px 3%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#top_hed.fix #spmenu:after {
  color: #fff;
}
#top_hed.fix #spmenu span {
  background: #fff;
}

.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;
  padding: 5px;
}

/*スマホ用メニュー--------------------------------*/
#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: #282e89;
  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: #282e89;
  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;
}

#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("../oimg/toplink-opencampus.jpg") no-repeat left center;
  background-size: auto 100% !important;
  -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-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  height: 100vh;
  padding: 1em 5%;
  overflow-y: auto;
}
#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: #282e89;
  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: #282e89;
}
#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 #menu-sitemap-main {
  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 #menu-sitemap-main > li {
  width: 25%;
  padding: 1em 1em 2em 0;
  font-size: 150%;
  position: relative;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #spmenu_box #nav-purpose #menu-sitemap-main > li {
    width: 50%;
  }
}
@media screen and (max-width: 980px ) {
  #spmenu_box #nav-purpose #menu-sitemap-main > li {
    width: 100%;
  }
}
#spmenu_box #nav-purpose #menu-sitemap-main > li:before {
  display: inline-block;
  content: "";
  width: 2em;
  height: 2px;
  background: #FFC000;
  position: absolute;
  top: 0.5em;
  left: 0;
}
#spmenu_box #nav-purpose #menu-sitemap-main .sub-menu {
  padding-top: 1.5em;
  font-size: 60%;
}

/*グローバル--------------------------------*/
#gnav {
  background: #282e89;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 980px ) {
  #gnav { /*SP*/
    display: none;
  }
}
#gnav ul {
  width: 100%;
  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;
}
#gnav ul li {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
#gnav ul li a {
  display: block;
  padding: 1.5em 1em;
}
#gnav ul li a img {
  width: auto;
  vertical-align: middle;
}
#gnav ul li a:hover {
  background: #1d2167;
}
#gnav ul li a:hover img {
  opacity: 1;
}

/*-------------------------------------*/
/*フッター--------------------------------*/
/*-------------------------------------*/
#request-box {
  display: block;
  background: #f8f8fb;
}
#request-box .inr2 {
  position: relative;
  z-index: 5;
  padding: 5em 0;
}
#request-box dl {
  padding: 1em 3%;
  width: 33.3%;
  text-align: center;
}
@media screen and (max-width: 980px ) {
  #request-box dl {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
#request-box dl dt {
  color: #282e89;
  font-size: 140%;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 1em;
  position: relative;
  margin-bottom: 1em;
}
#request-box dl dt:before {
  display: block;
  content: "";
  width: 30%;
  height: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  top: 0;
  background: #282e89;
  border-radius: 10px;
}
#request-box dl:nth-child(1) dt {
  color: #29B154;
}
#request-box dl:nth-child(1) dt:before {
  background: #29B154;
}
#request-box dl:nth-child(2) dt {
  color: #2E7DD6;
}
#request-box dl:nth-child(2) dt:before {
  background: #2E7DD6;
}
#request-box dl:nth-child(3) dt {
  color: #D91E4E;
}
#request-box dl:nth-child(3) dt:before {
  background: #D91E4E;
}
#request-box dl dd .req-link a {
  width: 100%;
}

.req-link {
  text-align: center;
}
.req-link a {
  display: inline-block;
  min-width: 50%;
  padding: 1em 1.5em;
  border: 1px solid #282e89;
  color: #282e89;
  font-weight: bold;
  position: relative;
  background: #fff;
  text-decoration: none;
}
.req-link a, .req-link a:before {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.req-link a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 1;
  border-right: 1px solid #282e89;
  border-bottom: 1px solid #282e89;
}
.req-link a:hover {
  background: #282e89;
  color: #fff;
}
.req-link a:hover:before {
  bottom: 0;
  right: 0;
}

a#pageTop {
  width: 72px;
  height: 72px;
  position: fixed;
  bottom: 10px;
  right: 15px;
  background: url("../img/page_up.png") no-repeat left top;
  display: block;
  overflow: hidden;
  text-indent: -10000px;
  display: none;
  z-index: 99;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

#footer small, #footer address {
  display: block;
  text-align: center;
  font-weight: normal;
  padding: 5px 10px;
}
#footer address {
  background: #282e89;
  color: #fff;
  border-top: 1px solid #fff;
}
#footer address span {
  display: inline-block;
}
#footer small {
  font-size: 85%;
  background: #fff;
  color: #333;
}

#ft_nav {
  width: 100%;
  padding: 3.5em 0;
  background: #282e89;
}
#ft_nav, #ft_nav a {
  color: #fff;
}
#ft_nav div.inr {
  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: 0 3%;
}
#ft_nav #f-logo {
  width: 30%;
  padding-right: 3em;
  border-right: 1px solid #191e68;
}
#ft_nav #ouen-f-sitemap {
  width: 70%;
  padding-left: 2em;
}
@media screen and (max-width: 980px ) {
  #ft_nav { /*SP*/ }
  #ft_nav #f-logo, #ft_nav #ouen-f-sitemap {
    width: 100%;
    padding: 1em !important;
    border: none !important;
  }
}

#f-logo .f-sns {
  padding: 10px;
}
#f-logo .f-sns ul {
  padding: 1em 0;
}
#f-logo .f-sns ul li {
  display: inline-block;
  margin-right: 10px;
}
#f-logo .f-sns ul li a {
  display: block;
  line-height: 1;
  font-size: 130%;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  padding: 5px 15px;
  background: #191e68;
  border-radius: 30px;
  position: relative;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#f-logo .f-sns ul li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
#f-logo .f-sns ul li a:hover {
  background: #fff;
  color: #282e89;
}

#sitelink li {
  margin-bottom: 1em;
}
#sitelink a {
  display: block;
  font-size: 90%;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#E0E0EA), to(#D5DDED));
  background: linear-gradient(to right, #fff, #E0E0EA, #D5DDED);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=quote($statCol), endColorstr=quote($endCol),GradientType=1 );
  background-size: 300%;
  background-position: 0 top;
  padding: 1em 1.5em;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  color: #282e89;
  line-height: 1;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media all and (-ms-high-contrast: none) {
  #sitelink a {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  }
}
#sitelink a:after {
  content: "\f054";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  right: 0.5em;
}
#sitelink a:hover {
  -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  background-position: 100% top;
}
@media all and (-ms-high-contrast: none) {
  #sitelink a:hover {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  }
}

#menu-ouen-fnav, #menu-ouen-fnav-1 {
  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;
}
#menu-ouen-fnav a, #menu-ouen-fnav-1 a {
  display: block;
}
#menu-ouen-fnav > li, #menu-ouen-fnav-1 > li {
  min-width: 25%;
  padding: 0 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 1600px ) and (min-width: 980px ) {
  #menu-ouen-fnav > li, #menu-ouen-fnav-1 > li {
    min-width: 33.3%;
  }
}
@media screen and (max-width: 980px ) {
  #menu-ouen-fnav > li, #menu-ouen-fnav-1 > li {
    width: 50%;
  }
}
#menu-ouen-fnav > li > a, #menu-ouen-fnav-1 > li > a {
  border-top: 2px solid #000;
  display: block;
  font-size: 110%;
  letter-spacing: 1px;
  padding: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  position: relative;
}
#menu-ouen-fnav > li > a:before, #menu-ouen-fnav-1 > li > a:before {
  display: inline-block;
  content: "";
  width: 3em;
  height: 2px;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#menu-ouen-fnav > li > a:hover:before, #menu-ouen-fnav-1 > li > a:hover:before {
  width: 100%;
}
#menu-ouen-fnav .sub-menu, #menu-ouen-fnav-1 .sub-menu {
  font-size: 90%;
  padding-left: 1em;
}
#menu-ouen-fnav .sub-menu li, #menu-ouen-fnav-1 .sub-menu li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
#menu-ouen-fnav .sub-menu li:before, #menu-ouen-fnav-1 .sub-menu li:before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  left: 0;
}

#menu-ouen-fnav > li > a:before {
  background: #cfae00;
}
#menu-ouen-fnav > li > a:hover {
  color: #282e89;
}

#menu-ouen-fnav-1 > li > a:before {
  background: #cfae00;
}
#menu-ouen-fnav-1 > li > a:hover {
  color: #E9C50A;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*ページ内スタイル*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
.graph_box {
  position: relative;
  min-height: 350px;
  max-height: 400px;
  max-width: 95%;
  padding-bottom: 1rem;
}
.graph_box canvas {
  position: relative;
  z-index: 3;
}
.graph_box .g_center {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 36%;
  left: 0;
  text-align: center;
  color: #ff0000;
  line-height: 1.5;
  z-index: 1;
}
.graph_box .g_center span {
  display: block;
  font-size: 180%;
}

.legend_box {
  width: 90%;
  margin: 0 auto 1rem !important;
  border: 1px solid #dedede;
  padding: 0.5rem 1rem;
  font-size: 90%;
}
.legend_box span {
  display: inline-block;
  margin-right: 2rem;
}
.legend_box span:before {
  display: inline-block;
  width: 1.5rem;
  height: 10px;
  content: "";
  margin-right: 10px;
  background: #fff;
}
.legend_box span.leg_edu:before {
  background: #ffd0a9;
}
.legend_box span.leg_kotoba:before {
  background: #ffa5b2;
}
.legend_box span.leg_kodomo:before {
  background: #ffdc73;
}
.legend_box span.leg_kango:before {
  background: #aad8ff;
}
.legend_box span.leg_kenko:before {
  background: #c4ea9a;
}
.legend_box span.leg_teac1:before {
  background: #ff8989;
}
.legend_box span.leg_teac2:before {
  background: #ffca89;
}
.legend_box span.leg_teac3:before {
  background: #ffe689;
}
.legend_box span.leg_teac4:before {
  background: #d2ff89;
}
.legend_box span.leg_teac5:before {
  background: #89ffb8;
}
.legend_box span.leg_teac6:before {
  background: #89e9ff;
}
.legend_box span.leg_teac7:before {
  background: #89a8ff;
}
.legend_box span.leg_teac8:before {
  background: #ab89ff;
}

.thum_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
}
.thum_box a {
  display: block;
  width: 31.3%;
  margin: 0 1% 1rem;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
  color: #084275 !important;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media screen and (max-width: 980px ) {
  .thum_box a { /*SP*/
    width: 48%;
  }
}
.thum_box a:hover {
  background: #f7f7f7;
}
.thum_box a dl {
  height: 100%;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 980px ) {
  .thum_box a dl {
    padding: 10px;
  }
}
.thum_box a dl dt {
  height: 180px;
  width: 100%;
  overflow: hidden;
}
.thum_box a dl dt img {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.thum_box a dl dd p.title {
  font-size: 110%;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1.5em !important;
}
.thum_box a dl dd p.time {
  color: #ea6100;
  position: absolute;
  bottom: 5px;
  right: 10px;
  margin: 0;
}
.thum_box a dl dd p.time:before {
  content: "\f017";
  font-family: FontAwesome;
  padding-right: 5px;
}
.thum_box a dl dd p.cat {
  background: #f0819c;
  text-align: center;
  border-radius: 20px;
}

