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

#top_hed {
  background: #282e89;
}
#top_hed:before {
  width: 5% !important;
}
#top_hed:after {
  width: 5% !important;
}
#top_hed #spmenu span {
  background: #fff;
}
#top_hed #spmenu:after {
  color: #fff;
}

#gnav {
  display: none;
}

/*共通------------------------------------------*/
.bgc {
  background: url("../oimg/ouen_bgc.gif") repeat;
  border-radius: 10px;
}

.border_box {
  border: 3px solid #ffd1b3;
}

/*大枠設定 本学サイトからpage.cssを引き継いでいる*/
#gnav {
  margin-top: 0;
}

.p_cont {
  margin-top: 136px;
}

#main {
  background: #fff;
  padding: 0 3% 3em;
}

@media screen and (max-width: 980px ) { /*SP*/
  .p_cont {
    margin-top: 10px;
  }
  #main {
    margin-top: 10px;
    padding: 10px;
  }
}
/*------------------------------------------------*/
/*見出し*/
/*------------------------------------------------*/
#page_hed {
  background: url("../oimg/canvas.gif") repeat right top;
}

@media screen and (max-width: 980px ) { /*SP*/ }
.p_cont h2 {
  border-bottom: 3px dotted #a99b7e;
  color: #a99b7e;
}

.p_cont h3 {
  background: #ffeed1;
  border-radius: 15px;
  margin-bottom: 30px;
}
.p_cont h3:before {
  color: #fff;
}

/*サイドメニュー*/
#menulist.ouen {
  background: #fff !important;
  border: 4px solid #a99b7e;
  border-radius: 20px;
}
#menulist.ouen b {
  background: #a99b7e !important;
  border-radius: 20px;
}

#sp_page_btn.ouen {
  background: #a99b7e !important;
  border-radius: 20px;
}

/*------------------------------------------------------*/
/*ページ内コンテンツ------------------------------------------*/
/*-----------------------------------------------------*/
/*キャンパスライフ*/
#campus_life_menu 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;
}
#campus_life_menu ul > li {
  padding: 15px !important;
  margin-bottom: 0;
  border-bottom: 1px dotted #c1c1c1;
}
@media screen and (min-width: 1200px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  #campus_life_menu ul > li {
    width: 50%;
  }
}
@media screen and (max-width: 980px ) {
  #campus_life_menu ul > li {
    width: 100%;
  }
}
#campus_life_menu ul > li:before {
  content: none;
}
#campus_life_menu ul > li > dl {
  display: table;
  width: 100%;
}
#campus_life_menu ul > li > dl dt, #campus_life_menu ul > li > dl dd, #campus_life_menu ul > li > dl:after {
  display: table-cell;
  vertical-align: middle;
}
#campus_life_menu ul > li > dl dt {
  width: 25%;
  vertical-align: top;
}
#campus_life_menu ul > li > dl dd {
  width: 70%;
  padding: 0 10px;
}
#campus_life_menu ul > li > dl dd .title {
  margin-bottom: 5px !important;
}
#campus_life_menu ul > li > dl dd .title a {
  font-size: 110%;
  color: #db3960;
}
#campus_life_menu ul > li > dl:after {
  font-family: "FontAwesome";
  content: "\f0a9";
  color: #f0819c;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 1200px ), screen and (max-width: 1600px ) and (min-width: 980px ) {
  #campus_life_menu ul > li:not(:nth-child(2n)) {
    border-right: 1px dotted #c1c1c1;
  }
}
@media screen and (max-width: 980px ) {
  #campus_life_menu ul > li { /*SP*/ }
  #campus_life_menu ul > li > dl dt {
    width: 20%;
  }
  #campus_life_menu ul > li > dl dd {
    width: 75%;
  }
  #campus_life_menu ul > li > dl dd .title {
    margin-bottom: 5px;
  }
  #campus_life_menu ul > li > dl dd .title a {
    font-size: 110%;
    color: #f0819c;
  }
  #campus_life_menu ul > li > dl:after {
    font-family: "FontAwesome";
    content: "\f0a9";
    color: #f0819c;
  }
}

/*------------------------------------------------*/
/*フォームスタイル*/
/*------------------------------------------------*/
.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;
  }
}
/*------------------------------------------------*/
/*男女共学化ページ*/
/*------------------------------------------------*/
#concept-area {
  background: #fff6e9;
  padding: 5em 5% 2em;
}
#concept-area dl {
  width: 40%;
  min-width: 300px;
  margin: 0 auto;
  padding: 5em 2% 15em;
  background: url("../oimg/top-image.jpg") no-repeat center bottom;
  background-size: cover;
  border-radius: 500px 500px 0 0;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}
#concept-area dl dt {
  font-size: 120%;
  padding: 1em;
}
#concept-area dl dd.concept-keyword {
  font-size: 180%;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 1em;
}
#concept-area p.concept-text {
  padding: 2em 0 0;
  width: 40%;
  min-width: 300px;
  margin: 0 auto 1em;
}

.concept-textarea {
  padding: 0 3%;
}
.concept-textarea h4 {
  padding: 2em 0;
  text-align: center;
}
.concept-textarea p {
  line-height: 2.3;
  margin-bottom: 2em !important;
}
.concept-textarea .free, .concept-textarea .free2 {
  width: 100%;
}
.concept-textarea .free dt, .concept-textarea .free dd, .concept-textarea .free2 dt, .concept-textarea .free2 dd {
  width: 60%;
}
.concept-textarea .free dd, .concept-textarea .free2 dd {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 980px ) {
  .concept-textarea .free, .concept-textarea .free2 { /*SP*/ }
  .concept-textarea .free dt, .concept-textarea .free dd, .concept-textarea .free2 dt, .concept-textarea .free2 dd {
    width: 100%;
  }
}

dl.concept-image {
  margin-bottom: 1em;
  text-align: center;
}
dl.concept-image dt {
  overflow: hidden;
}
dl.concept-image dt img {
  display: inline-block;
  border-radius: 80px 80px 0 0;
}
dl.concept-image dd {
  width: 85%;
  background: rgba(255, 255, 255, 0.8);
  padding: 2em 3%;
  margin: -20% auto 0;
  position: relative;
  z-index: 5;
}

.tab_menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  margin-bottom: 0;
}
.tab_menu li {
  position: relative;
  margin-right: 10px;
  color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: #282e89;
  background: -webkit-gradient(linear, left top, left bottom, from(#282e89), color-stop(50%, #282e89), color-stop(50%, #a4daef));
  background: linear-gradient(to bottom, #282e89 0%, #282e89 50%, #a4daef 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$statCol", endColorstr="$endCol",GradientType=1 );
  background-size: 100% 200%;
  background-position: left top;
  font-size: 85%;
  min-width: 10%;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
}
.tab_menu li:before {
  display: none !important;
}
.tab_menu li:hover {
  cursor: pointer;
}
.tab_menu li.selected {
  background-position: left bottom;
  color: #333;
}

.tab_info {
  display: none;
  padding: 1em;
  border-top: none;
}
.tab_info.now {
  display: block;
}

.faq-list {
  counter-reset: faqnum;
}
.faq-list dl {
  border-top: 1px solid #000;
  margin-bottom: 1em;
}
.faq-list dl dt, .faq-list dl dd {
  padding: 1em;
  padding-left: 4rem;
  position: relative;
}
.faq-list dl dt:before, .faq-list dl dd:before {
  font-size: 120%;
  font-weight: bold;
  font-family: "KiwiMaru";
  position: absolute;
  top: 0.7em;
  left: 0.75em;
  letter-spacing: 2px;
}
.faq-list dl dt {
  font-size: 110%;
  background: #f5f6fb;
  line-height: 1;
}
.faq-list dl dt:before {
  counter-increment: faqnum;
  content: "Q" counter(faqnum);
  color: #282e89;
}
.faq-list dl dd:before {
  content: "A" counter(faqnum);
  color: #D92424;
}