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

/*共通------------------------------------------*/
.meta_data {
  font-size: 90%;
  text-align: center;
  color: #777777;
  padding: 10px;
  border-bottom: 1px dotted #c1c1c1;
  margin-bottom: 10px;
}
.meta_data:before {
  font-family: "FontAwesome";
  content: "\f017";
  margin-right: 5px;
}

.wd100 {
  width: 100% !important;
}

.wd50 {
  width: 50% !important;
}

.wd30 {
  width: 33.3% !important;
}

@media screen and (max-width: 980px ) { /*SP*/
  .wd50, .wd30 {
    width: 100% !important;
  }
}
.notice {
  color: red;
}

#main {
  position: relative;
}
#main p {
  margin: 0 0 1em;
}
#main p em {
  color: #f00;
}
#main small {
  font-size: 110px;
}

.p_cont {
  line-height: 2;
  margin-top: 186px;
  margin-bottom: 100px;
}
.p_cont a {
  color: #084275;
  text-decoration: underline;
}
.p_cont a:hover {
  text-decoration: none;
}
.p_cont a:visited {
  color: #8d607e;
}

@media screen and (max-width: 980px ) { /*SP*/
  .p_cont {
    line-height: 2;
    margin-top: 0;
  }
}
.ind {
  padding: 0 40px;
}

.indm {
  padding: 0 20px;
}

@media screen and (max-width: 980px ) { /*SP*/
  .ind, .indm {
    padding: 0 10px;
  }
}
.bgc {
  background: #fffedf;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.bgc-g {
  background: #f5fcea;
}
.bgc-g h4 {
  color: #47ae41;
}

.lead {
  border: 3px double #abcbda;
  margin: 0 15px;
  padding: 35px 50px;
  line-height: 1.7;
  font-size: 105%;
  background: url("../img/lead_bg-new.jpg") repeat left top;
  margin-bottom: 25px;
}
.lead p {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 980px ) {
  .lead { /*SP*/
    margin: 0 10px 20px 10px;
    padding: 15px 20px;
  }
  .lead p {
    margin-bottom: 1.5em;
  }
}

hr {
  background-image: url("../img/dot.gif");
  height: 1px;
  width: 100%;
  border: 0px;
  margin-top: 40px;
}

/*イメージリスト*/
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%;
}

ul.img-vertical li {
  padding: 10px !important;
}
ul.img-vertical li:before {
  display: none;
}

@media screen and (max-width: 980px ) { /*SP*/
  ul.img-vertical {
    display: table;
    table-layout: fixed;
  }
  ul.img-vertical li {
    padding: 10px !important;
    display: table-cell;
  }
}
/*リスト*/
.p_cont ul {
  margin-bottom: 15px;
}
.p_cont ul > li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.p_cont ul > li:before {
  content: "\f10c";
  font-family: FontAwesome;
  position: absolute;
  top: 2px;
  left: 0;
  margin-right: 5px;
  color: #e5a34d;
}

/*数字リスト*/
.p_cont ol {
  padding-left: 2.5em;
}
.p_cont ol > li {
  margin-bottom: 15px;
  position: relative;
  list-style-type: decimal;
  list-style-position: outside;
}

/*リスト入れ子*/
li ul, li ol {
  padding: 10px;
}

/*類型別項目リスト*/
.item_list {
  border-left: 3px solid #e5a34d;
  margin-bottom: 15px;
  width: 100%;
  overflow: hidden;
}
.item_list dt, .item_list dd {
  display: block;
}
.item_list dt {
  float: left;
  margin-right: 10px;
  padding-left: 10px;
  width: 15%;
  min-width: 10%;
  vertical-align: top;
}
@media screen and (max-width: 980px ) {
  .item_list dt { /*SP*/
    width: 100%;
  }
}
.item_list dd {
  float: left;
}
.item_list dd:not(:last-child):after {
  content: "│";
  padding-left: 15px;
  padding-right: 15px;
}

/*2カラム*/
.free, free2 {
  margin-bottom: 20px;
}

.free > dt {
  float: left;
  margin-right: 15px;
}

.free2 > dt {
  float: right;
  margin-left: 15px;
}

.free > dd, .free2 > dd {
  overflow: hidden;
  _zoom: 1;
}

.w30-70 dt {
  width: 30% !important;
}
.w30-70 dd {
  width: 68% !important;
}

@media screen and (max-width: 980px ) { /*SP*/
  .w30-70 dt {
    width: 100% !important;
  }
  .w30-70 dd {
    width: 100% !important;
  }
}
@media screen and (max-width: 980px ) { /*SP*/
  .free, free2 {
    margin-bottom: 10px;
  }
  .free > dt, .free2 > dt {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .free > dt {
    margin-right: 0;
  }
  .free2 > dt {
    margin-left: 0;
  }
  .free > dd, .free2 > dd {
    overflow: hidden;
    _zoom: 1;
  }
}
/*枠ありボックス*/
.border_box {
  border: 3px solid #dbdbdb;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px ) {
  .border_box { /*SP*/
    padding: 10px;
  }
}
.border_box li:last-child {
  margin-bottom: 0 !important;
}
.border_box p:last-child {
  margin-bottom: 0 !important;
}
.border_box h3:first-child, .border_box h4:first-child {
  padding-top: 0;
}
.border_box ul, .border_box ol, .border_box p {
  margin-left: 10px;
}

ol.border_box {
  padding-left: 2.5em;
}

/*枠ありボックス 色付き*/
.color_box {
  overflow: hidden;
}
.color_box dl {
  border: 3px solid #ebb977;
  padding: 20px;
  width: 48%;
  background: #fffedf;
  float: left;
  margin-bottom: 2%;
}
.color_box dl dt {
  font-size: 140%;
  border-bottom: 1px dotted #ebb977;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.color_box dl dt img {
  vertical-align: middle;
}
.color_box dl dt span {
  padding: 5px;
}
.color_box dl:nth-of-type(odd) {
  margin-right: 1%;
}
.color_box dl:nth-of-type(even) {
  margin-left: 1%;
}

@media screen and (max-width: 980px ) { /*SP*/
  .color_box dl {
    padding: 20px;
    width: 100%;
    float: none;
  }
  .color_box dl dt {
    font-size: 110%;
    border-bottom: 1px dotted #eb6679;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
  }
  .color_box dl dt img, .color_box dl dt span {
    display: inline-block;
    vertical-align: top;
  }
  .color_box dl dt img {
    width: 20%;
  }
  .color_box dl dt span {
    width: 80%;
  }
  .color_box dl:nth-of-type(odd) {
    margin-right: 0;
  }
  .color_box dl:nth-of-type(even) {
    margin-left: 0;
  }
}
/*資格などのスタイル*/
.qualification_box {
  margin-bottom: 40px;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: -webkit-box;
  display: flex;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.qualification_box dl {
  display: block;
  width: 33.3%;
  vertical-align: top;
  padding: 20px;
  border-top: 1px dotted #c1c1c1;
}
.qualification_box dl dt {
  font-weight: bold;
  font-size: 140%;
}
.qualification_box dl dt:before {
  content: "\f02c";
  font-family: FontAwesome;
  color: #ebb977;
  margin-right: 10px;
}

@media screen and (max-width: 980px ) { /*SP*/
  .qualification_box dl {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px dotted #c1c1c1;
  }
}
/*table-cellボックス*/
.tbl_box {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.tbl_box > div {
  display: table-cell;
  padding: 10px 15px;
}
.tbl_box > div h3, .tbl_box > div h4 {
  padding-left: 0;
  padding-right: 0;
}

.tbl_box > :not(div) {
  display: none;
}

@media screen and (max-width: 980px ) { /*SP*/
  .tbl_box {
    display: block;
    width: 100%;
  }
  .tbl_box > div {
    display: block;
  }
  .tbl_box > :not(div) {
    display: none;
  }
}
.column_box > div {
  padding: 0 20px;
}
@media screen and (min-width: 1200px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  .column_box > div:not(:last-child) {
    border-right: 1px solid #dedede;
  }
}

.panel_box li {
  margin: auto;
  padding: 0 !important;
  float: left;
  width: 25%;
}
.panel_box li:before {
  display: none !important;
}
@media screen and (max-width: 980px ) {
  .panel_box li {
    width: 50%;
  }
}

/*lectureボックス*/
.lecture dt {
  width: 30%;
  padding: 30px;
  text-align: center;
}
.lecture span {
  display: block;
}
.lecture span.comment {
  background: #f0ede5;
  padding: 15px;
}

@media screen and (max-width: 980px ) { /*SP*/
  .lecture dt {
    width: 100%;
    padding: 10px;
  }
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
table th, table td {
  padding: 10px;
  border: 1px solid #999;
  table-layout: fixed;
  vertical-align: middle;
}
table th {
  background-color: #eee;
  text-align: center;
}
table td {
  background: #fff;
}

/*スクロールテーブル*/
@media screen and (max-width: 980px ) { /*SP*/
  .sctbl {
    max-width: 979px;
    overflow-x: scroll;
    margin-bottom: 10px;
  }
  .sctbl table {
    margin-bottom: 0;
  }
  .sctbl table th, .sctbl table td {
    white-space: nowrap;
  }
  .sctbl img.cmap {
    width: auto !important;
    max-width: none !important;
  }
}
/*ブレークテーブル*/
@media screen and (max-width: 980px ) { /*SP*/
  .blo_table th, .blo_table td {
    display: block;
    width: 100%;
  }
}
/*------------------------------------------------*/
/*見出し*/
/*------------------------------------------------*/
#page_hed {
  padding: 40px 30px;
  margin-bottom: 15px;
  background: url("../img/page_hed_bg.jpg") no-repeat right top;
}
#page_hed h1 {
  font-size: 150%;
  letter-spacing: 3px;
  font-weight: normal;
  width: 70%;
  line-height: 1.5;
  margin-bottom: 10px;
}
#page_hed .breadcrumbs {
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 980px ) { /*SP*/
  #page_hed {
    padding: 10px;
    background: url("../img/page_hed_bg.jpg") no-repeat right top;
    background-size: contain;
  }
  #page_hed h1 {
    width: 100%;
    font-size: 140%;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px;
    margin-bottom: 0;
  }
  #page_hed .breadcrumbs {
    display: none;
  }
}
.p_cont h2 {
  font-size: 160%;
  letter-spacing: 2px;
  border-bottom: 1px solid #bebebe;
  background: url("../img/corner_l.png") no-repeat left top, url("../img/corner_r.png") no-repeat right top;
  text-align: center;
  font-weight: normal;
  padding: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.p_cont h2:fist-child {
  margin-top: 0;
}

@media screen and (max-width: 980px ) { /*SP*/
  .p_cont h2 {
    font-size: 120%;
  }
}
.p_cont h3 {
  font-size: 150%;
  vertical-align: middle;
  font-weight: normal;
  padding: 20px;
}
.p_cont h3:before {
  content: "\f0c8";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #282e89;
  font-size: 80%;
}

.p_cont h4 {
  color: #eb6679;
  font-size: 130%;
  vertical-align: middle;
  font-weight: normal;
  padding: 15px;
}

@media screen and (max-width: 980px ) { /*SP*/
  .p_cont h3 {
    font-size: 100%;
    padding: 10px;
    font-weight: bold;
  }
  .p_cont h4 {
    font-size: 100%;
    padding: 10px;
    font-weight: bold;
  }
}
.p_cont h5 {
  background: url("../img/bdot.gif") repeat left top;
  padding: 10px;
  margin-bottom: 20px;
}
.p_cont h5:before {
  content: "\f0c8";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #fff;
  font-size: 80%;
}

/*------------------------------------------------*/
/*学科別色設定*/
/*------------------------------------------------*/
#dep_education_set h3:before, #dep_education_set h4 {
  color: #ea944d;
}
#dep_education_set .bgc {
  background: #ffeee0;
}

#dep_culture_set h3:before, #dep_culture_set h4 {
  color: #eb6679;
}
#dep_culture_set .bgc {
  background: #ffeef1;
}

#dep_child_set h3:before, #dep_child_set h4 {
  color: #e0bd55;
}
#dep_child_set .bgc {
  background: #fff6da;
}

#dep_nursing_set h3:before, #dep_nursing_set h4 {
  color: #579fdd;
}
#dep_nursing_set .bgc {
  background: #dbeeff;
}

#dep_health_set h3:before, #dep_health_set h4 {
  color: #6aa42c;
}
#dep_health_set .bgc {
  background: #ebffd6;
}

/*------------------------------------------------*/
/*学科別タイトル*/
/*------------------------------------------------*/
.page_dep_title {
  height: 0;
  padding-bottom: 31.6%;
  position: relative;
  margin-bottom: 40px;
}
.page_dep_title dt {
  width: 100%;
  max-width: 435px;
  height: 0;
  padding-bottom: 23.9%;
  position: absolute;
  right: 10px;
  text-indent: -10000px;
  background-size: contain !important;
}
.page_dep_title dd {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
}
.page_dep_title dd ul {
  text-align: right;
  margin-bottom: 0;
}
.page_dep_title dd ul li {
  display: inline-block;
  margin-bottom: 0;
}
.page_dep_title dd ul li:before {
  display: none;
}
.page_dep_title dd ul li a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 20px;
}
.page_dep_title dd ul li a:visited {
  color: #fff;
}
.page_dep_title dd ul li a:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
}

/*看護学科*/
#dep_nursing_title {
  background: url("../img/dep_nursing_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_nursing_title dt {
  background: url("../img/dep_nursing_title2.png") no-repeat right center;
}
#dep_nursing_title dd {
  background: rgba(87, 159, 221, 0.8);
}

/*健康栄養学科*/
#dep_health_title {
  background: url("../img/dep_health_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_health_title dt {
  background: url("../img/dep_health_title2.png") no-repeat right center;
}
#dep_health_title dd {
  background: rgba(136, 186, 82, 0.8);
}

/*教育・心理学科*/
#dep_education_title {
  background: url("../img/dep_education_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_education_title dt {
  background: url("../img/dep_education_title2.png") no-repeat right center;
}
#dep_education_title dd {
  background: rgba(243, 142, 52, 0.8);
}

#dep_psychology_title {
  background: url("../img/dep_psychology_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_psychology_title dt {
  background: url("../img/dep_psychology_title2.png") no-repeat right center;
}
#dep_psychology_title dd {
  background: rgba(243, 142, 52, 0.8);
}

#dep_students_course_title {
  background: url("../img/dep_students_course_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_students_course_title dt {
  background: url("../img/dep_students_course_title2.png") no-repeat right center;
}
#dep_students_course_title dd {
  background: rgba(235, 102, 121, 0.8);
}

#dep_child_course_title {
  background: url("../img/dep_child_course_title.jpg") no-repeat left bottom;
  background-size: contain;
}
#dep_child_course_title dt {
  background: url("../img/dep_child_course_title2.png") no-repeat right center;
}
#dep_child_course_title dd {
  background: rgba(235, 102, 121, 0.8);
}

@media screen and (max-width: 980px ) { /*SP*/
  .page_dep_title {
    height: auto;
    padding-bottom: 0;
    background: red;
    position: relative;
    margin-bottom: 40px;
    background-size: 55% !important;
    background-position: left top !important;
  }
  .page_dep_title dt {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 23.9%;
    position: static;
    background-size: 45% !important;
  }
  .page_dep_title dd {
    position: static;
    bottom: auto;
    padding: 5px;
  }
  .page_dep_title dd ul {
    text-align: right;
  }
  .page_dep_title dd ul li {
    display: block;
    margin-bottom: 2px;
    padding-left: 0;
    text-align: left;
  }
  .page_dep_title dd ul li:before {
    display: none;
  }
  .page_dep_title dd ul li a {
    padding: 5px;
  }
  .page_dep_title dd ul li a:before {
    content: "\f0a9";
    font-family: FontAwesome;
    padding-right: 5px;
  }
  #dep_culture_title dd {
    background: rgb(235, 102, 121);
  }
  #dep_child_title dd {
    background: rgb(249, 158, 29);
  }
  #dep_health_title dd {
    background: rgb(136, 186, 82);
  }
  #dep_nursing_title dd {
    background: rgb(87, 159, 221);
  }
}
/*------------------------------------------------*/
/*学科リンク*/
/*------------------------------------------------*/
#dep_menu {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#dep_menu li#dep_education {
  background: #ea944d;
}
#dep_menu li#dep_culture {
  background: #eb6679;
}
#dep_menu li#dep_child {
  background: #e0bd55;
}
#dep_menu li#dep_nursing {
  background: #579fdd;
}
#dep_menu li#dep_health {
  background: #88ba52;
}
#dep_menu li#dep_daigakuin {
  background: #c698dc;
}
#dep_menu li {
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  display: table-cell;
  color: #fff;
  width: 20%;
}
#dep_menu li:hover {
  text-decoration: none;
}
#dep_menu li a {
  color: #ffffff;
}
#dep_menu li a:hover {
  text-decoration: none;
}
#dep_menu li:hover img {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#dep_menu li dl {
  cursor: pointer;
}
#dep_menu li dl dt {
  width: 100%;
  height: 75%;
  overflow: hidden;
}
#dep_menu li dl dd {
  padding: 15px 10px;
  text-align: center;
  font-size: 150%;
}
#dep_menu li dl dd span {
  display: block;
  font-size: 65%;
}

@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: block;
    color: #fff;
    width: 100%;
  }
  #dep_menu li dl {
    display: table;
  }
  #dep_menu li dl dt, #dep_menu li dl dd {
    display: table-cell;
    vertical-align: middle;
  }
  #dep_menu li dl dt {
    width: 30%;
    overflow: hidden;
  }
  #dep_menu li dl dt img {
    height: auto;
  }
  #dep_menu li dl dd {
    padding: 0;
    font-size: 95%;
    text-align: right;
    padding: 5px;
  }
  #dep_menu li dl dd:after {
    content: "\f0a9";
    font-family: FontAwesome;
    padding-left: 5px;
    color: #fff;
  }
  #dep_menu li dl dd span {
    display: none;
  }
}
/*ページ内(学部段組)*/
.dep_nav {
  text-align: center;
}
.dep_nav li#dep_education a {
  background: #ea944d;
}
.dep_nav li#dep_culture a {
  background: #eb6679;
}
.dep_nav li#dep_child a {
  background: #e0bd55;
}
.dep_nav li#dep_nursing a {
  background: #579fdd;
}
.dep_nav li#dep_health a {
  background: #88ba52;
}
.dep_nav li#dep_daigakuin a {
  background: #c698dc;
}
.dep_nav li {
  display: inline-block;
  width: 33.3%;
  padding: 0 15px !important;
  cursor: pointer;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  color: #fff;
}
.dep_nav li:before {
  content: none !important;
}
.dep_nav li:hover {
  text-decoration: none;
}
.dep_nav li a {
  display: block;
  padding: 15px;
  color: #ffffff !important;
  text-decoration: none !important;
}
.dep_nav li a:hover {
  text-decoration: none !important;
}
.dep_nav li:hover img {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.dep_nav li dl {
  cursor: pointer;
}
.dep_nav li dl dt {
  width: 100%;
  height: 75%;
  overflow: hidden;
}
.dep_nav li dl dd {
  padding: 15px 0;
  text-align: center;
  font-size: 150%;
}
.dep_nav li dl dd span {
  display: block;
  font-size: 65%;
}

@media screen and (max-width: 980px ) { /*SP*/
  .dep_nav * {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .dep_nav {
    width: 100%;
  }
  .dep_nav li {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    display: block;
    color: #fff;
    width: 100%;
  }
  .dep_nav li a {
    padding: 5px;
  }
  .dep_nav li dl {
    display: table;
  }
  .dep_nav li dl dt, .dep_nav li dl dd {
    display: table-cell;
    vertical-align: middle;
  }
  .dep_nav li dl dt {
    width: 30%;
    overflow: hidden;
  }
  .dep_nav li dl dt img {
    height: auto;
  }
  .dep_nav li dl dd {
    padding: 0;
    font-size: 95%;
    text-align: right;
    padding: 5px;
  }
  .dep_nav li dl dd:after {
    content: "\f0a9";
    font-family: FontAwesome;
    padding-left: 5px;
    color: #fff;
  }
  .dep_nav li dl dd span {
    display: none;
  }
}
/*学部・学科案内ページ*/
.faculty_box {
  background: url("../img/bg_stripe.gif") repeat left top;
  padding: 15px 15px 25px;
}
@media screen and (max-width: 980px ) {
  .faculty_box {
    padding: 10px 10px 15px;
  }
}
.faculty_box > dl dt {
  z-index: 10;
}
.faculty_box > dl > dd {
  margin: -5% 15px 0;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 7px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 980px ) {
  .faculty_box > dl > dd {
    margin: 15px 0 0;
    padding: 15px;
  }
}

.faculty_ttl {
  width: 45%;
}
.faculty_ttl:before {
  margin-left: -38px;
  margin-right: 15px;
}
#fac_ep .faculty_ttl:before {
  content: url("../img/icon_fac_ep.png");
}
#fac_ihs .faculty_ttl:before {
  content: url("../img/icon_fac_ihs.png");
}
#fac_nn .faculty_ttl:before {
  content: url("../img/icon_fac_nn.png");
}
#fac_gs .faculty_ttl:before {
  content: url("../img/icon_gs.png");
}
@media screen and (max-width: 980px ) {
  .faculty_ttl:before { /*SP*/
    display: none;
  }
}

@media screen and (min-width: 1200px ) {
  .link_dep {
    text-align: right;
  }
}
@media screen and (max-width: 980px ) {
  .link_dep {
    text-align: center;
  }
}
.link_dep a {
  text-align: center;
  font-size: 125%;
  display: inline-block;
  width: 47%;
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
}
.link_dep a:hover {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media screen and (max-width: 980px ) {
  .link_dep a { /*SP*/
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.link_dep a.link_dep_education {
  margin-bottom: 10px;
  background: #ffd179;
  color: #c77000;
}
.link_dep a.link_dep_education:hover {
  background: #ffa700;
  color: #ffffff;
}
.link_dep a.link_dep_culture {
  background: #ffdce3;
  color: #ff6382;
}
.link_dep a.link_dep_culture:hover {
  background: #ff7994;
  color: #ffffff;
}
.link_dep a.link_dep_child {
  background: #ffefc9;
  color: #996c00;
}
.link_dep a.link_dep_child:hover {
  background: #ffcb4f;
  color: #ffffff;
}
.link_dep a.link_dep_nursing {
  background: #dbeeff;
  color: #00608d;
}
.link_dep a.link_dep_nursing:hover {
  background: #00608d;
  color: #ffffff;
}
.link_dep a.link_dep_health {
  background: #e0f2ab;
  color: #6aa42c;
}
.link_dep a.link_dep_health:hover {
  background: #6aa42c;
  color: #ffffff;
}
.link_dep a.link_dep_graduate {
  background: #ebdcff;
  color: #7752ba;
}
.link_dep a.link_dep_graduate:hover {
  background: #6344ff;
  color: #ffffff;
}

/*------------------------------------------------*/
/*記事リスト*/
/*------------------------------------------------*/
.info_list {
  display: table;
  table-layout: fixed;
  border: dotted 1px #c1c1c1;
  padding: 20px;
  margin-bottom: 60px;
  width: 100%;
}
.info_list dt, .info_list dd {
  display: table-cell;
  vertical-align: middle;
}
.info_list dt {
  width: 30vw;
  text-align: center;
  border-right: 1px dotted #d9d9d9;
}
.info_list dd {
  width: 70vw;
  padding-left: 20px;
}
.info_list dd ul {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}
.info_list dd ul li {
  border-bottom: 1px dotted #d9d9d9;
  display: table;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.info_list dd ul li:before {
  content: "\f10c";
  font-family: FontAwesome;
  position: absolute;
  top: 2px;
  left: 0;
  margin-right: 5px;
  color: #e5a34d;
}
.info_list dd ul li a {
  color: #282e89;
  padding-right: 10px;
  display: table-cell;
  width: 85%;
}
.info_list dd ul li span.time {
  color: #acacac;
  margin-right: 10px;
  top: 8px;
  display: table-cell;
  width: 15%;
  font-size: 70%;
}

@media screen and (max-width: 980px ) { /*SP*/
  .info_list {
    display: table;
    table-layout: fixed;
    border: dotted 1px #c1c1c1;
    padding: 20px;
    width: 100%;
  }
  .info_list dt, .info_list dd {
    display: block;
    vertical-align: middle;
  }
  .info_list dt {
    width: 100%;
    border-right: none;
    border-bottom: 1px dotted #d9d9d9;
    padding-bottom: 20px;
  }
  .info_list dd {
    width: 100%;
    padding-left: 0px;
  }
  .info_list dd ul {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
  }
  .info_list dd ul li {
    border-bottom: 1px dotted #d9d9d9;
  }
  .info_list dd ul li a {
    color: #282e89;
    padding-left: 0;
    padding-right: 10px;
    display: block;
    width: 100%;
  }
  .info_list dd ul li span.time {
    color: #acacac;
    margin-right: 10px;
    font-size: 70%;
    position: static;
    top: 8px;
    width: 100%;
    display: block;
  }
}
/*------------------------------------------------*/
/*ページリンク*/
/*------------------------------------------------*/
.pagemenu {
  background: #282e89;
  padding: 20px;
  margin-bottom: 30px;
}
.pagemenu b {
  color: #fff;
  padding: 10px;
  display: block;
  border-bottom: 1px dotted #fff;
  margin-bottom: 30px;
  font-size: 110%;
}
.pagemenu b:before {
  content: "\f0e8";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #fff;
}
.pagemenu ul {
  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;
  margin-bottom: 0;
}
.pagemenu ul > li {
  background: #fff;
  width: 33.3%;
  padding-left: 0;
  position: relative;
  border: double 3px #aaaaaa;
}
.pagemenu ul > li a {
  text-decoration: none;
}
.pagemenu ul > li:before {
  content: none;
}
.pagemenu ul > li:after {
  content: "";
  background: url("../img/corner_r_b.png") no-repeat left top;
  width: 2vw;
  height: 2vw;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.pagemenu ul > li a {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.pagemenu ul > li a:before {
  content: "\f0a9";
  font-family: FontAwesome;
  padding-right: 5px;
  color: #f4bd5e;
}
.pagemenu ul > li a:hover {
  background: #d2e1ef;
  text-decoration: none;
}

@media screen and (max-width: 980px ) { /*SP*/
  .pagemenu {
    line-height: 1.5;
    background: #00608d;
    padding: 10px;
  }
  .pagemenu b {
    color: #fff;
    padding: 10px;
    display: block;
    border-bottom: 1px dotted #fff;
    margin-bottom: 30px;
    font-size: 120%;
  }
  .pagemenu b:before {
    content: "\f0e8";
    font-family: FontAwesome;
    padding-right: 5px;
    color: #fff;
  }
  .pagemenu ul > li {
    background: #fff;
    width: 49%;
    padding-left: 0;
    position: relative;
    border: double 3px #aaaaaa;
  }
  .pagemenu ul > li a {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
  }
}
/*inline-boxリンク*/
a.btn {
  display: inline-block;
  background: #e73758;
  padding: 0px 15px;
  margin: 0 10px;
  color: #ffffff;
  border: 2px solid #e73758;
  text-decoration: none;
  -webkit-transition: all 1s;
  transition: all 1s;
}
a.btn:visited {
  color: #fff;
}
a.btn:hover {
  background: #ffffff;
  color: #e73758;
  border-radius: 7px;
  text-decoration: none;
}

/* 学章・沿革*/
#history_table {
  border-top: none;
  border-left: 2px dotted #dedede;
}
#history_table th, #history_table td {
  border: none;
  vertical-align: top;
}
#history_table th {
  background: none;
  position: relative;
}
#history_table th:before {
  font-family: "FontAwesome";
  content: "\f10c";
  color: #00608d;
  position: absolute;
  top: 12px;
  left: -7px;
}

/*部門別インデックスページ*/
.index_list {
  padding: 25px 50px;
  background: url("../img/corner_l.png") no-repeat 5px 5px;
  border: 1px solid #d6d6d6;
}
.index_list dl {
  display: table;
  width: 100%;
  padding: 20px 0;
}
.index_list dl:not(:last-child) {
  border-bottom: 1px dotted #c1c1c1;
}
.index_list dl dt, .index_list dl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px;
}
.index_list dl dt {
  font-size: 110%;
  width: 27%;
  text-align: center;
  background: #282e89;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 980px ) {
  .index_list { /*SP*/
    padding: 30px 15px 15px;
  }
  .index_list dl, .index_list dt, .index_list dd {
    display: block !important;
    width: 100% !important;
  }
  .index_list dt {
    margin-bottom: 15px;
    text-align: left !important;
    border-radius: 10px !important;
  }
}

/*------------------------------------------------*/
/*サイドページリンク*/
/*------------------------------------------------*/
#sp_page_btn {
  display: none;
}

#menulist {
  background: #c1c1c1;
  position: absolute;
  top: 0;
  left: -210px;
  width: 200px;
  font-size: 80%;
  padding: 20px;
  background: url("../img/st.gif") repeat left top;
}
#menulist b {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  background: #282e89;
  color: #fff;
}
#menulist ul li {
  margin-bottom: 5px;
  border-bottom: 1px solid #fff;
}
#menulist ul li a {
  text-decoration: none;
}
#menulist ul li a :hover {
  text-decoration: underline;
}

.graduate b {
  background: #9f69b5 !important;
}

@media screen and (max-width: 1600px ) and (min-width: 980px ) { /*tab*/
  #menulist {
    background: #c1c1c1;
    position: static;
    width: 100%;
    font-size: 80%;
    padding: 10px;
    background: url("../img/st.gif") repeat left top;
    margin-bottom: 10px;
  }
  #menulist ul {
    display: block;
  }
  #menulist ul li {
    border-bottom: none;
    border-top: 1px solid #c1c1c1;
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 980px ) { /*sp*/
  #sp_page_btn {
    display: block;
    text-align: center;
    background: #282e89;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px !important;
  }
  #menulist {
    display: none;
    background: #c1c1c1;
    position: static;
    width: 100%;
    font-size: 80%;
    padding: 10px;
    background: url("../img/st.gif") repeat left top;
    margin-bottom: 10px;
  }
  #menulist ul {
    display: block !important;
  }
  #menulist ul li {
    display: inline-block;
    border: none;
    width: 49%;
    vertical-align: top;
    margin-bottom: 5px;
  }
}
/*------------------------------------------------*/
/*記事一覧*/
/*------------------------------------------------*/
/*ページナビ*/
.wp-pagenavi {
  clear: both;
  border: 1px solid #c1c1c1;
  padding: 20px;
  margin-bottom: 15px;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #cfcfcf;
  padding: 3px 5px;
  width: 14.9%;
  margin: 2px;
  background: #ffffff;
  display: inline-block;
  text-align: center;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #cfcfcf;
  background: #cfcfcf;
  color: #ffffff;
}

.wp-pagenavi span.current {
  font-weight: bold;
}

@media screen and (max-width: 980px ) { /*sp*/
  .wp-pagenavi {
    clear: both;
    border: 1px solid #c1c1c1;
    padding: 5px;
    margin-bottom: 15px;
    line-height: 1;
  }
  .wp-pagenavi .pages {
    border: none !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
  .wp-pagenavi .first, .wp-pagenavi .last {
    font-size: 83%;
  }
}
.cat_list {
  padding: 30px;
}
.cat_list li {
  padding: 0 10px 10px 10px;
  border-bottom: 1px dotted #c1c1c1;
}
.cat_list li span.time {
  margin-right: 15px;
}

@media screen and (max-width: 980px ) { /*sp*/
  .cat_list {
    padding: 30px;
  }
  .cat_list li {
    padding: 0 10px 10px 10px;
    border-bottom: 1px dotted #c1c1c1;
  }
  .cat_list li span.time {
    display: block;
    margin-right: 0;
  }
}
.cat_list_dl {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px dotted #c1c1c1;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.cat_list_dl dt, .cat_list_dl dd {
  display: table-cell;
  vertical-align: middle;
}
.cat_list_dl dt {
  width: 20%;
  padding: 10px;
}
.cat_list_dl dt span {
  display: inline-block;
  padding: 3px 5px;
  line-height: 1;
}
.cat_list_dl dt span.label {
  min-width: 40%;
  text-align: center;
  background: #666;
  color: #fff;
  font-size: 85%;
}
@media screen and (max-width: 980px ) {
  .cat_list_dl dt span.label {
    min-width: inherit;
    min-width: initial;
  }
}
.cat_list_dl dt span.open-day {
  background: #3FD187;
}
.cat_list_dl dt span.time {
  background: #00608d;
}
.cat_list_dl dd.photo {
  width: 10%;
}
.cat_list_dl dd.photo a {
  height: 0;
  padding-bottom: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.cat_list_dl dd.photo a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cat_list_dl dd.title {
  width: 70%;
  padding-left: 20px;
}

@media screen and (max-width: 980px ) { /*sp*/
  .cat_list_dl {
    display: block;
    overflow: hidden;
    padding: 10px;
  }
  .cat_list_dl dt, .cat_list_dl dd {
    display: block;
  }
  .cat_list_dl dt {
    width: 100%;
  }
  .cat_list_dl dd {
    float: left;
    padding-left: 0px;
  }
  .cat_list_dl dd.photo {
    width: 20%;
    background: #eeeeee;
  }
  .cat_list_dl dd.title {
    width: 80%;
  }
}
/*------------------------------------------------*/
/*フォームスタイル*/
/*------------------------------------------------*/
.datatbl {
  margin-bottom: 30px;
}
.datatbl dl:nth-of-type(1) {
  border-top: 1px dotted #b3b3b3;
}
.datatbl dl {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px dotted #b3b3b3;
}
.datatbl dt, .datatbl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
}
.datatbl dt {
  width: 30%;
  background: #e9e9e9;
  border-right: 1px dotted #b3b3b3;
  text-align: center;
}
.datatbl dd {
  width: 70%;
}

.wpcf7-text {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cfcfcf;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.num_table td {
  text-align: right;
}

@media screen and (max-width: 980px ) { /*sp*/
  .datatbl dl {
    display: block;
    margin-bottom: 30px;
  }
  .datatbl dt, .datatbl dd {
    display: block;
  }
  .datatbl dt {
    width: 100%;
  }
  .datatbl dd {
    width: 100%;
  }
  .datatbl dd li {
    padding-bottom: 5px;
  }
  .wpcf7-text {
    max-width: 100%;
  }
  .wpcf7-list-item {
    width: 100%;
    display: block !important;
    margin: 0 !important;
  }
  .wpcf7-list-item label {
    width: 100%;
    display: block;
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    background: #ededed;
  }
}
/*------------------------------------------------*/
/*記事関連---取り込みhtml 旧サイトスタイル*/
/*旧サイトから取り込んだhtmlのみに使用*/
/*------------------------------------------------*/
#torikomi div.photo02 {
  overflow: hidden;
}
#torikomi div.photo02 > div {
  width: 50%;
  float: left;
  text-align: center;
}
#torikomi div.photo02 > div img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 980px ) { /*sp*/
  #torikomi div.photo02 > div {
    width: 100%;
    float: none;
  }
}
/*------------------------------------------*/
/*英語ページ用調整*/
/*------------------------------------------*/
.en_txt {
  font-size: 80% !important;
}
.link_dep .en_txt {
  padding: 10px 5px !important;
}

/*------------------------------------------*/
/*サイトマップ*/
/*------------------------------------------*/
.list_menu {
  padding: 10px 0;
}
.list_menu h4 {
  padding: 0 !important;
  margin-bottom: 15px;
  color: #2E302E;
}
.list_menu h4 a, .list_menu h4 span {
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
  background: #f1e9f5;
  padding: 5px 15px;
  display: block;
  text-decoration: none;
}
.list_menu h4 a:before, .list_menu h4 span:before {
  font-family: "FontAwesome";
  margin-right: 8px;
  color: #c1c1c1;
  content: "\f101";
}
.list_menu h4 a:hover {
  background: #084275;
  color: #ffffff;
}
.list_menu .list_child {
  padding-left: 15px;
}
@media screen and (min-width: 1200px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  .list_menu .list_child {
    margin-left: 20px;
  }
}
.list_menu .list_child ul li {
  margin-bottom: 5px;
}
.list_menu .list_child ul li:before {
  content: "\f105";
}

.half {
  overflow: hidden;
}
.half > div {
  width: 50%;
  float: left;
  padding: 15px;
}
.half > div:nth-of-type(2n+1) {
  clear: both;
}

@media screen and (max-width: 980px ) { /*sp*/
  .half > div {
    width: 100%;
    float: none;
    padding: 15px;
  }
}
/*WEBオープンキャンパスページ（2020.8.7）--------------------------------------*/
#web_movie-area > dt {
  width: 33.3%;
  float: left;
}
#web_movie-area > dd {
  overflow: hidden;
  _zoom: 1;
}

.panel_list {
  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;
}
.panel_list li {
  padding: 5px;
  width: 50%;
}
.panel_list li:before {
  display: none;
}
@media screen and (max-width: 980px ) {
  .panel_list li {
    width: 100%;
  }
}
.panel_list li dt {
  margin-bottom: 1em;
}
.panel_list li p {
  margin-bottom: 5px !important;
  line-height: 1.5;
}
.panel_list li .m_belong span {
  display: inline-block;
  font-size: 90%;
  padding: 2px 5px;
  background: #333;
  color: #fff;
  margin-right: 5px;
}
.panel_list li .m_belong span.b_edu {
  background: #ea944d;
}
.panel_list li .m_belong span.b_eiyou {
  background: #88ba52;
}
.panel_list li .m_belong span.b_kango {
  background: #579fdd;
}
.panel_list li .m_title {
  font-size: 150%;
}
.panel_list li .position {
  color: #c1c1c1;
}

.p_cont #dep_menu li {
  padding-left: 0;
}
.p_cont #dep_menu li:before {
  display: none;
}
.p_cont #dep_menu li a {
  text-decoration: none;
}

#movie_list {
  display: none;
}

.pop {
  padding: 1em;
  text-align: center;
}
.pop iframe {
  max-width: 100%;
}

