@charset "UTF-8";
/*--prefix set--------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Meddon&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&text=0123456789");
@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);
  -ms-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);
  -ms-transform: scale(1);
  transform: scale(1);
}

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
      -ms-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-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);
      -ms-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;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
      -ms-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);
      -ms-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);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.blur.effect {
  -webkit-transform: scale(1);
  -ms-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);
  -ms-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);
  -ms-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);
  }
}
.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;
}

/*リスト*/
.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;
}

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

.p_cont {
  /*スクロールテーブル*/
  /*ブレークテーブル*/
}

.p_cont table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

.p_cont table th, .p_cont table td {
  padding: 10px;
  border: 1px solid #999;
  table-layout: fixed;
  vertical-align: middle;
}

.p_cont table th {
  background-color: #eee;
  text-align: center;
}

.p_cont table td {
  background: #fff;
}

@media screen and (max-width: 980px) {
  .p_cont {
    /*SP*/
  }
  .p_cont .sctbl {
    max-width: 979px;
    overflow-x: scroll;
    margin-bottom: 10px;
  }
  .p_cont .sctbl table {
    margin-bottom: 0;
  }
  .p_cont .sctbl table th, .p_cont .sctbl table td {
    white-space: nowrap;
  }
  .p_cont .sctbl img.cmap {
    width: auto !important;
    max-width: none !important;
  }
}

@media screen and (max-width: 980px) {
  .p_cont {
    /*SP*/
  }
  .p_cont .blo_table th, .p_cont .blo_table td {
    display: block;
    width: 100%;
  }
}

/*------------------------------------------------*/
/*記事リスト*/
/*------------------------------------------------*/
.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;
  }
}

#gnav {
  display: none;
}

.pop-text > span {
  display: inline-block;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
}

.pop-text.effect > span:nth-child(1) {
  -webkit-animation: fadeUp 0.25s 0.1s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(2) {
  -webkit-animation: fadeUp 0.25s 0.2s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(3) {
  -webkit-animation: fadeUp 0.25s 0.3s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(4) {
  -webkit-animation: fadeUp 0.25s 0.4s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(5) {
  -webkit-animation: fadeUp 0.25s 0.5s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(6) {
  -webkit-animation: fadeUp 0.25s 0.6s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(7) {
  -webkit-animation: fadeUp 0.25s 0.7s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(8) {
  -webkit-animation: fadeUp 0.25s 0.8s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(9) {
  -webkit-animation: fadeUp 0.25s 0.9s 1 ease normal forwards;
          animation: fadeUp 0.25s 0.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(10) {
  -webkit-animation: fadeUp 0.25s 1s 1 ease normal forwards;
          animation: fadeUp 0.25s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(11) {
  -webkit-animation: fadeUp 0.25s 1.1s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(12) {
  -webkit-animation: fadeUp 0.25s 1.2s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(13) {
  -webkit-animation: fadeUp 0.25s 1.3s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(14) {
  -webkit-animation: fadeUp 0.25s 1.4s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(15) {
  -webkit-animation: fadeUp 0.25s 1.5s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(16) {
  -webkit-animation: fadeUp 0.25s 1.6s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(17) {
  -webkit-animation: fadeUp 0.25s 1.7s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(18) {
  -webkit-animation: fadeUp 0.25s 1.8s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(19) {
  -webkit-animation: fadeUp 0.25s 1.9s 1 ease normal forwards;
          animation: fadeUp 0.25s 1.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(20) {
  -webkit-animation: fadeUp 0.25s 2s 1 ease normal forwards;
          animation: fadeUp 0.25s 2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(21) {
  -webkit-animation: fadeUp 0.25s 2.1s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(22) {
  -webkit-animation: fadeUp 0.25s 2.2s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(23) {
  -webkit-animation: fadeUp 0.25s 2.3s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(24) {
  -webkit-animation: fadeUp 0.25s 2.4s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(25) {
  -webkit-animation: fadeUp 0.25s 2.5s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(26) {
  -webkit-animation: fadeUp 0.25s 2.6s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(27) {
  -webkit-animation: fadeUp 0.25s 2.7s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(28) {
  -webkit-animation: fadeUp 0.25s 2.8s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(29) {
  -webkit-animation: fadeUp 0.25s 2.9s 1 ease normal forwards;
          animation: fadeUp 0.25s 2.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.pop-text.effect > span:nth-child(30) {
  -webkit-animation: fadeUp 0.25s 3s 1 ease normal forwards;
          animation: fadeUp 0.25s 3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.open-info p {
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.open-info .oc-day-wrap {
  font-size: 400%;
  margin-bottom: 10px;
}

@media screen and (max-width: 980px) {
  .open-info .oc-day-wrap {
    font-size: 350%;
  }
}

.open-info .oc-day-wrap span {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0 3px;
}

.open-info .oc-day-wrap .oc-w, .open-info .oc-day-wrap .day-sub {
  font-size: 50%;
  letter-spacing: 0;
}

.open-info .oc-times {
  font-size: 200%;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  .open-info {
    /*SP*/
  }
  .open-info .oc-y {
    display: block !important;
    font-size: 60%;
    padding: 10px 0;
  }
  .open-info .oc-w {
    font-size: 50%;
  }
}

#oc-top {
  width: 100%;
  background: url("../oimg/bg-octop.jpg") no-repeat #61c4d9;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 13% 5%;
  position: relative;
}

#oc-top #oc-title {
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 96, 141, 0.1);
  font-size: 180%;
  line-height: 1.5;
  display: inline-block;
  padding-right: 5em;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 980px) {
  #oc-top #oc-title {
    font-size: 3vw;
  }
}

#oc-top #oc-title h1 {
  letter-spacing: 0.1em;
  padding-left: 0.5em;
}

#oc-top #oc-title .para {
  display: inline-block;
}

#oc-top #oc-title .sup {
  margin-bottom: 3rem;
  font-size: 350%;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  #oc-top #oc-title .sup {
    /*SP*/
    font-size: 15vw;
    line-height: 1;
  }
}

#oc-top #oc-title:after {
  display: block;
  width: 15%;
  aspect-ratio: 2 / 3;
  position: absolute;
  top: -4rem;
  right: -1rem;
  content: "";
  background: url("../oimg/chara-icon.gif") no-repeat center center;
  background-size: contain;
  -webkit-animation: buruburu 2s ease 0s infinite normal forwards;
          animation: buruburu 2s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media screen and (max-width: 980px) {
  #oc-top #oc-title:after {
    /*SP*/
    top: auto;
    width: 20%;
    bottom: 1.5em;
  }
}

#oc-top dd.open-info {
  padding: 0 1em 1.5em;
  color: #fff;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}

@media all and (-ms-high-contrast: none) {
  #oc-top dd.open-info {
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 980px) {
  #oc-top {
    /*SP*/
    aspect-ratio: auto;
    padding-top: 30%;
  }
  #oc-top #oc-title {
    font-size: 120%;
  }
}

#oc-top:before, #oc-top:after {
  display: block;
  content: "";
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  z-index: 1;
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}

@media all and (-ms-high-contrast: none) {
  #oc-top:before, #oc-top:after {
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

#oc-top:before {
  width: 22%;
  background-image: url("../oimg/bg-octop-acc1.jpg");
  -webkit-animation: buruburu 3s ease 0s infinite normal forwards;
          animation: buruburu 3s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  right: 5%;
  top: 15%;
}

@media screen and (max-width: 980px) {
  #oc-top:before {
    /*SP*/
    width: 32%;
    top: 22%;
    right: 2%;
  }
}

#oc-top:after {
  width: 17%;
  background-image: url("../oimg/bg-octop-acc2.jpg");
  -webkit-animation: buruburu2 5s ease 0s infinite normal forwards;
          animation: buruburu2 5s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  right: 25%;
  top: 50%;
}

@media screen and (max-width: 980px) {
  #oc-top:after {
    width: 22%;
    right: 28%;
    top: 15%;
    z-index: 1;
  }
}

#top-oc-next {
  width: 50%;
  text-align: center;
  border: 5px solid #fff;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
}

@media screen and (max-width: 980px) {
  #top-oc-next {
    width: 100%;
  }
}

#top-oc-next dt {
  font-size: 150%;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 96, 141, 0.1);
  padding: 1em;
}

#top-oc-next .oc-btn {
  text-align: right;
  position: absolute;
  top: -5px;
  right: -5px;
  margin-bottom: 0;
}

#top-oc-next .oc-btn a {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 0 0 0 10px;
  background: #00608d;
  background: -webkit-gradient(linear, left top, right top, from(#00608d), to(#4a51b5));
  background: linear-gradient(to right, #00608d, #4a51b5);
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#00608d", endColorstr="#4a51b5", GradientType=1;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 980px) {
  #top-oc-next {
    /*SP*/
  }
  #top-oc-next dt {
    font-size: 130%;
    letter-spacing: 0;
    text-align: left;
    padding: 0em 0.5em;
  }
}

#bottom-linkinfo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  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;
}

#bottom-linkinfo > div {
  width: 50%;
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  #bottom-linkinfo > div {
    /*SP*/
    width: 100%;
  }
}

#bottom-linkinfo > div a {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5em 5%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-decoration: none;
  color: #fff;
}

#bottom-linkinfo > div a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#bottom-linkinfo > div a:after {
  display: block;
  content: "" !important;
  width: calc(100% - 1em);
  height: calc(100% - 1em);
  border: 1px solid #fff !important;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1 !important;
  z-index: 5;
}

#bottom-linkinfo > div a:hover:before {
  opacity: 0.5;
}

#bottom-linkinfo > div a:hover span.title {
  color: #333;
}

#bottom-linkinfo > div a:hover span.title:before {
  width: 100%;
}

#bottom-linkinfo > div a:hover:after {
  opacity: 1;
}

#bottom-linkinfo > div a dl {
  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: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  width: 100%;
  position: relative;
  z-index: 5;
}

#bottom-linkinfo > div a dl .title {
  font-size: 130%;
  letter-spacing: 2px;
  font-weight: bold;
}

#bottom-linkinfo > div a dl .title:before {
  display: inline-block;
  content: "";
  width: 0;
  height: 2em;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: -1;
}

#bottom-linkinfo > div a dl .sup {
  font-size: 80%;
  font-family: "Meddon", cursive;
  letter-spacing: 1px;
}

#bottom-linkinfo #toplink-oc a {
  background-image: url("../oimg/img_exam.jpg");
}

#bottom-linkinfo #toplink-oc a:before {
  background: rgba(61, 89, 212, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(61, 89, 212, 0.9)), to(rgba(61, 143, 212, 0.9)));
  background: linear-gradient(to right, rgba(61, 89, 212, 0.9), rgba(61, 143, 212, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(61, 89, 212, 0.9)", endColorstr="rgba(61, 143, 212, 0.9)", GradientType=1;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

#bottom-linkinfo #toplink-soudankai a {
  background-image: url("../oimg/toplink-opencampus.jpg");
}

#bottom-linkinfo #toplink-soudankai a:before {
  background: rgba(70, 187, 114, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(70, 187, 114, 0.9)), to(rgba(134, 215, 138, 0.9)));
  background: linear-gradient(to right, rgba(70, 187, 114, 0.9), rgba(134, 215, 138, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(70, 187, 114, 0.9)", endColorstr="rgba(134, 215, 138, 0.9)", GradientType=1;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

#oc_about {
  padding: 5vw 0 3vw;
  background-image: url("../img/lead_bg-new.jpg");
  background-position: left top;
  background-repeat: repeat;
  background-size: auto;
  position: relative;
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #oc_about {
    background-position: left top;
  }
}

@media screen and (max-width: 980px) {
  #oc_about {
    padding: 5vw 0 12vw;
    background-position: left top;
  }
}

#oc_about:after {
  position: absolute;
  content: "";
  display: block;
  background-size: contain;
  aspect-ratio: 1 / 1;
  width: 28%;
  background-repeat: no-repeat;
  background-image: url("../oimg/oc-view1.png");
  background-position: right bottom;
  z-index: 100;
  bottom: -3%;
  right: 0;
  -webkit-animation: buruburu 10s ease 0s infinite normal forwards;
          animation: buruburu 10s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media screen and (max-width: 980px) {
  #oc_about:after {
    width: 40%;
    bottom: 3em;
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}

#oc_about .oc-title {
  background: rgba(61, 89, 212, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(61, 89, 212, 0.9)), to(rgba(61, 143, 212, 0.9)));
  background: linear-gradient(to right, rgba(61, 89, 212, 0.9), rgba(61, 143, 212, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(61, 89, 212, 0.9)", endColorstr="rgba(61, 143, 212, 0.9)", GradientType=1;
}

#oc-scheduleinfo {
  padding: 5vw 0 3vw;
  background-image: url("../oimg/oc-view3.png");
  background-position: right top 2em;
  background-repeat: no-repeat;
  background-size: 35% auto;
  position: relative;
}

@media screen and (max-width: 980px) {
  #oc-scheduleinfo {
    background-size: 45% auto;
    padding: 25vw 0 clamp(7em, 27vw, 20em);
  }
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #oc-scheduleinfo {
    background-position: right top;
  }
}

@media screen and (max-width: 980px) {
  #oc-scheduleinfo {
    background-position: center top;
    background-size: 65% auto;
  }
}

#oc-scheduleinfo:before {
  position: absolute;
  content: "";
  display: block;
  background-size: contain;
  aspect-ratio: 1 / 1;
  width: 35%;
  background-repeat: no-repeat;
  background-image: url("../oimg/oc-view2.png");
  z-index: 0;
  top: 0;
  left: 0;
  -webkit-animation: buruburu2 8s ease 0s infinite normal forwards;
          animation: buruburu2 8s ease 0s infinite normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media screen and (max-width: 980px) {
  #oc-scheduleinfo:before {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    width: 40%;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
}

header.oc-title {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto 2em;
  text-align: center;
  font-weight: normal;
  font-size: 150%;
  color: #fff;
}

header.oc-title span {
  display: block;
}

header.oc-title h1 {
  font-size: 200%;
  font-weight: normal;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  header.oc-title h1 {
    font-size: 180%;
  }
}

header.oc-title h1 span {
  display: block;
  /*text-shadow: 1px 1px 0px rgba(255, 255, 255, 1), -1px -1px 0px rgba(255, 255, 255, 1), 1px 0px 0px rgba(255, 255, 255, 1), 0px 1px 0px rgba(255, 255, 255, 1),
        2px 2px 0px rgba(255, 255, 255, 1), -2px -2px 0px rgba(255, 255, 255, 1), 2px 0px 0px rgba(255, 255, 255, 1), 0px 2px 0px rgba(255, 255, 255, 1);*/
}

#oc-exp, #soudankai {
  max-width: 1680px;
  margin: 5em auto 10em;
  position: relative;
}

@media screen and (max-width: 980px) {
  #oc-exp, #soudankai {
    margin: 0;
  }
}

#oc-exp img, #soudankai img {
  max-width: 100%;
  height: auto;
}

#oc-exp #exp-txt, #soudankai #exp-txt {
  position: absolute;
  left: 55%;
  top: 2em;
  font-size: 1.8vw;
  letter-spacing: 0.1vw;
  font-style: normal;
  font-weight: bold;
  z-index: 10;
  width: auto;
}

@media screen and (max-width: 980px) {
  #oc-exp #exp-txt, #soudankai #exp-txt {
    /*SP*/
    padding: 0 15px;
    font-size: 150%;
    position: relative;
    margin-bottom: 1em;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
  }
}

#oc-exp #exp-img, #oc-exp #soudankai-img, #soudankai #exp-img, #soudankai #soudankai-img {
  position: relative;
}

#oc-exp #exp-img li, #oc-exp #soudankai-img li, #soudankai #exp-img li, #soudankai #soudankai-img li {
  width: 55%;
}

#oc-exp #exp-img li span, #oc-exp #soudankai-img li span, #soudankai #exp-img li span, #soudankai #soudankai-img li span {
  display: block;
  width: 100%;
  position: relative;
}

#oc-exp #exp-img li span img, #oc-exp #soudankai-img li span img, #soudankai #exp-img li span img, #soudankai #soudankai-img li span img {
  display: inline-block;
}

#oc-exp #exp-img li span:before, #oc-exp #soudankai-img li span:before, #soudankai #exp-img li span:before, #soudankai #soudankai-img li span:before {
  display: block;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

#oc-exp #exp-img li:nth-child(1), #oc-exp #soudankai-img li:nth-child(1), #soudankai #exp-img li:nth-child(1), #soudankai #soudankai-img li:nth-child(1) {
  padding-left: 5%;
  z-index: 1;
}

#oc-exp #exp-img li:nth-child(1) span, #oc-exp #soudankai-img li:nth-child(1) span, #soudankai #exp-img li:nth-child(1) span, #soudankai #soudankai-img li:nth-child(1) span {
  padding-bottom: 5em;
  /*&:before{
            z-index: 2;
            background-image: url("../oimg/ocexpacc2.png");
            width: 100%;
            aspect-ratio: 3.5 / 1;
            bottom: 0;
            left: 0;
          }*/
}

@media screen and (max-width: 980px) {
  #oc-exp #exp-img li:nth-child(1) span, #oc-exp #soudankai-img li:nth-child(1) span, #soudankai #exp-img li:nth-child(1) span, #soudankai #soudankai-img li:nth-child(1) span {
    padding-bottom: 3em;
  }
}

#oc-exp #exp-img li:nth-child(1) span img, #oc-exp #soudankai-img li:nth-child(1) span img, #soudankai #exp-img li:nth-child(1) span img, #soudankai #soudankai-img li:nth-child(1) span img {
  z-index: 1;
}

#oc-exp #exp-img li:nth-child(2), #oc-exp #soudankai-img li:nth-child(2), #soudankai #exp-img li:nth-child(2), #soudankai #soudankai-img li:nth-child(2) {
  padding-right: 5%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

#oc-exp #exp-img li:nth-child(2) span, #oc-exp #soudankai-img li:nth-child(2) span, #soudankai #exp-img li:nth-child(2) span, #soudankai #soudankai-img li:nth-child(2) span {
  padding-top: 5em;
  /*&:before{
            z-index: 2;
            background-image: url("../oimg/ocexpacc1.png");
            width: 23%;
            aspect-ratio: 1 / 1;
            top: 0;
            right: 0;
            @media screen and (max-width: 980px ) {
              width: 35%;
              top: 0em;
              z-index: -1;
            }
          }*/
}

@media screen and (max-width: 980px) {
  #oc-exp #exp-img li:nth-child(2) span, #oc-exp #soudankai-img li:nth-child(2) span, #soudankai #exp-img li:nth-child(2) span, #soudankai #soudankai-img li:nth-child(2) span {
    padding-top: 3em;
  }
}

#oc-exp #exp-img li:nth-child(2) span img, #oc-exp #soudankai-img li:nth-child(2) span img, #soudankai #exp-img li:nth-child(2) span img, #soudankai #soudankai-img li:nth-child(2) span img {
  z-index: 1;
}

.oc_schedule {
  position: relative;
}

#oc-next {
  width: 100%;
  background: url("../oimg/area_learn_bg.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

#oc-next a.oc-bnr-link {
  font-size: 110%;
  color: #fff;
  display: block;
  padding: 4em 1.5em 3em;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 5em;
  text-align: left;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  #oc-next a.oc-bnr-link {
    padding-left: 15%;
  }
}

@media screen and (max-width: 1600px) and (min-width: 980px) {
  #oc-next a.oc-bnr-link {
    padding-left: 20%;
  }
}

@media screen and (max-width: 980px) {
  #oc-next a.oc-bnr-link {
    padding-left: 0;
  }
}

#oc-next a.oc-bnr-link p {
  padding-left: 10%;
}

#oc-next a.oc-bnr-link .next-title {
  font-size: 110%;
  font-style: normal;
}

#oc-next a.oc-bnr-link .oc-inqbtn span, #oc-next a.oc-bnr-link .oc-inqbtn a {
  margin-top: 0.5em;
  display: inline-block;
  padding: 0.5em 2em;
  outline: 0px solid transparent;
  color: #fff;
  border-radius: 100px;
  background: #00608d;
  background: -webkit-gradient(linear, left top, right top, from(#00608d), to(#8b5cf6));
  background: linear-gradient(to right, #00608d, #8b5cf6);
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#00608d", endColorstr="#8b5cf6", GradientType=1;
  background-size: 350% 350%;
  animation: gradAnimeTime 20s ease 0s infinite alternate-reverse forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#oc-next a.oc-bnr-link:before {
  display: inline-block;
  width: 25%;
  min-height: 300px;
  aspect-ratio: 1 / 1.75;
  border-radius: 500px 500px 0 0;
  background: url("../img/bnr_outline.jpg") no-repeat center center;
  background-size: auto 100%;
  content: "";
  position: absolute;
  bottom: -3em;
  left: 0;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media screen and (max-width: 980px) {
  #oc-next a.oc-bnr-link:before {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  #oc-next a.oc-bnr-link:before {
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

#oc-next a.oc-bnr-link:after {
  display: inline-block;
  font-family: "Meddon", cursive;
  font-size: 120%;
  font-weight: 400;
  font-style: normal;
  content: "View more";
  position: absolute;
  right: 1.5em;
  bottom: 1em;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

#oc-next a.oc-bnr-link:hover {
  background: rgba(0, 0, 0, 0.2);
}

#oc-next a.oc-bnr-link:hover:before {
  background-size: auto 110%;
}

#oc-next a.oc-bnr-link:hover:after {
  right: 0;
  padding-right: 1.5em;
}

#oc-next a.oc-bnr-link:hover .oc-inqbtn span, #oc-next a.oc-bnr-link:hover .oc-inqbtn a {
  outline: 5px solid rgba(255, 255, 255, 0.3);
}

#oc_soudankai {
  padding: 5vw 0 3vw;
}

#oc_soudankai .oc-title {
  background: rgba(70, 187, 114, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(70, 187, 114, 0.9)), to(rgba(134, 215, 138, 0.9)));
  background: linear-gradient(to right, rgba(70, 187, 114, 0.9), rgba(134, 215, 138, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(70, 187, 114, 0.9)", endColorstr="rgba(134, 215, 138, 0.9)", GradientType=1;
}

@media screen and (max-width: 980px) {
  #oc_soudankai {
    padding: 8vw 0 5vw;
  }
}

.oc-note {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin: 3em auto;
  max-width: 1080px;
  padding: 2em 3%;
  font-size: 110%;
  -webkit-filter: drop-shadow(0 15px 10px rgba(68, 100, 116, 0.1));
  -moz-filter: drop-shadow(0 15px 10px rgba(68, 100, 116, 0.1));
  -ms-filter: drop-shadow(0 15px 10px rgba(68, 100, 116, 0.1));
  filter: drop-shadow(0 15px 10px rgba(68, 100, 116, 0.1));
}

@media all and (-ms-high-contrast: none) {
  .oc-note {
    -webkit-box-shadow: 0 15px 10px 0 rgba(68, 100, 116, 0.1);
            box-shadow: 0 15px 10px 0 rgba(68, 100, 116, 0.1);
  }
}

.oc-scheduleinfo {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 5em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 980px) {
  .oc-scheduleinfo {
    margin: 0 auto;
  }
}

.oc-scheduleinfo h3 {
  font-size: 200%;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  padding-top: 2em;
  padding-bottom: 1em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 980px), screen and (max-width: 1600px) and (min-width: 980px) {
  .oc-scheduleinfo h3 {
    padding-top: 20%;
    font-size: 180%;
    text-shadow: 1px 1px 0px white, -1px -1px 0px white, 0px 2px 0px white, 2px 0px 0px white, -2px 2px 0px white, 2px -2px 0px white;
  }
}

.schedule-table {
  background: #fff;
  padding: 2em 3%;
  border-radius: 10px;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}

@media all and (-ms-high-contrast: none) {
  .schedule-table {
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

.schedule-table table {
  width: 100%;
  background: rgba(61, 89, 212, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(61, 89, 212, 0.9)), to(rgba(61, 143, 212, 0.9)));
  background: linear-gradient(to right, rgba(61, 89, 212, 0.9), rgba(61, 143, 212, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(61, 89, 212, 0.9)", endColorstr="rgba(61, 143, 212, 0.9)", GradientType=1;
}

.schedule-table table th, .schedule-table table td {
  vertical-align: middle;
  padding: 10px 1.2rem;
}

@media screen and (max-width: 980px) {
  .schedule-table table th, .schedule-table table td {
    display: block;
    width: 100% !important;
  }
}

.schedule-table table tr th:first-child {
  width: 30%;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 130%;
  font-weight: normal;
}

@media screen and (max-width: 980px) {
  .schedule-table table tr {
    /*SP*/
  }
  .schedule-table table tr th {
    line-height: 1.2;
  }
  .schedule-table table tr td {
    font-size: 110%;
  }
}

.schedule-table table tr td {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: rgba(255, 255, 255, 0.9);
}

.schedule-table table tr td:nth-of-type(1) {
  font-size: 110%;
}

.schedule-table table tr td:not(:last-child) {
  border-right: 1px dotted #c1c1c1;
}

.schedule-table table tr:not(:last-child) td {
  border-bottom: 1px dotted #c1c1c1;
}

.schedule-table table tr:hover td {
  background: #fff;
}

.schedule-table#oc-sch-tbl table tr:first-child th {
  position: relative;
}

.schedule-table#oc-sch-tbl table tr:first-child th:before {
  display: inline-block;
  font-family: "Meddon", cursive;
  content: "Next";
  line-height: 1;
  padding: 5px 8px 3px;
  font-size: 65%;
  background: #FFCC43;
  color: #000;
  position: absolute;
  top: -5px;
  left: -10px;
}

.schedule-table#con-sch-tbl table {
  background: rgba(70, 187, 114, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(70, 187, 114, 0.9)), to(rgba(134, 215, 138, 0.9)));
  background: linear-gradient(to right, rgba(70, 187, 114, 0.9), rgba(134, 215, 138, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(70, 187, 114, 0.9)", endColorstr="rgba(134, 215, 138, 0.9)", GradientType=1;
}

.oc-linkbtn {
  text-align: center;
  padding: 3em 5%;
  margin-bottom: 0;
}

.oc-linkbtn a {
  display: inline-block;
  font-size: 160%;
  font-weight: normal;
  padding: 0.75em 3.5em;
  border-radius: 100px;
  background: rgba(61, 89, 212, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(61, 89, 212, 0.9)), to(rgba(61, 143, 212, 0.9)));
  background: linear-gradient(to right, rgba(61, 89, 212, 0.9), rgba(61, 143, 212, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(61, 89, 212, 0.9)", endColorstr="rgba(61, 143, 212, 0.9)", GradientType=1;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oc-linkbtn a span {
  display: inline-block;
}

.oc-linkbtn a:hover {
  opacity: 0.8;
  padding: 0.75em 3em;
}

@media screen and (max-width: 980px) {
  .oc-linkbtn {
    padding: 3em 0;
  }
  .oc-linkbtn a {
    line-height: 1;
    min-width: 80%;
    font-size: 120%;
    padding: 0.75em 1.5em;
  }
  .oc-linkbtn a:hover {
    padding: 0.75em 1.5em;
  }
  .oc-linkbtn a span {
    display: block;
  }
  .oc-linkbtn a span:nth-child(1) {
    font-size: 85%;
  }
}

.oc-linkbtn2 {
  text-align: center;
  padding: 3em 5%;
  margin-bottom: 0;
}

.oc-linkbtn2 a {
  display: inline-block;
  font-size: 160%;
  font-weight: normal;
  padding: 0.75em 3.5em;
  border-radius: 100px;
  background: rgba(70, 187, 114, 0.9);
  background: -webkit-gradient(linear, left top, right top, from(rgba(70, 187, 114, 0.9)), to(rgba(134, 215, 138, 0.9)));
  background: linear-gradient(to right, rgba(70, 187, 114, 0.9), rgba(134, 215, 138, 0.9));
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(70, 187, 114, 0.9)", endColorstr="rgba(134, 215, 138, 0.9)", GradientType=1;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.oc-linkbtn2 a span {
  display: inline-block;
}

.oc-linkbtn2 a:hover {
  opacity: 0.8;
  padding: 0.75em 3em;
}

@media screen and (max-width: 980px) {
  .oc-linkbtn2 {
    padding: 3em 0;
  }
  .oc-linkbtn2 a {
    line-height: 1;
    min-width: 80%;
    font-size: 120%;
    padding: 0.75em 1.5em;
  }
  .oc-linkbtn2 a:hover {
    padding: 0.75em 1.5em;
  }
  .oc-linkbtn2 a span {
    display: block;
  }
  .oc-linkbtn2 a span:nth-child(1) {
    font-size: 85%;
  }
}

#oc_topics {
  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: 8vw 3%;
}

#oc_topics header {
  width: 30%;
  padding: 0 3%;
  text-align: center;
}

@media screen and (max-width: 980px) {
  #oc_topics header {
    width: 100%;
  }
}

#oc_topics header h1 {
  font-size: 380%;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0px #00608d, -1px 1px 0px #00608d, 1px -1px 0px #00608d, -1px -1px 0px #00608d, 1px 0px 0px #00608d, 0px 1px 0px #00608d, -1px 0px 0px #00608d, 0px -1px 0px #00608d;
}

@media screen and (max-width: 980px) {
  #oc_topics header h1 {
    font-size: 250%;
  }
}

#oc_topics header .sup {
  font-weight: bold;
  color: #00608d;
  display: block;
  letter-spacing: 0.2em;
}

#oc_topics .ocnews-wrap {
  width: 70%;
}

@media screen and (max-width: 980px) {
  #oc_topics .ocnews-wrap {
    width: 100%;
    margin-top: 2em;
  }
}

.oc-topics {
  border-bottom: 1px solid #000;
}

.oc-topics li {
  border-top: 1px solid #000;
}

.oc-topics li a {
  display: block;
  padding: 1em;
}

.oc-topics li a dl dt {
  font-size: 85%;
}

#oc_contact {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#oc_contact table {
  width: 100%;
  margin: 0 auto 5em;
  background: #375B91;
  background: linear-gradient(135deg, #375B91, #7F56CF);
  filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#375B91", endColorstr="#7F56CF", GradientType=1;
}

#oc_contact table th, #oc_contact table td {
  vertical-align: middle;
  padding: 10px 1.5em;
}

@media screen and (max-width: 980px) {
  #oc_contact table th, #oc_contact table td {
    padding: 10px;
  }
}

#oc_contact table tr th:first-child {
  width: 25%;
  color: #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 120%;
  font-weight: normal;
}

#oc_contact table tr td {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: rgba(255, 255, 255, 0.9);
}

#oc_contact table tr td:not(:last-child) {
  border-right: 1px dotted #c1c1c1;
}

#oc_contact table tr:not(:last-child) td {
  border-bottom: 1px dotted #c1c1c1;
}

#oc_contact table tr:hover td {
  background: #fff;
}

#oc-access {
  background: url("../img/lead-bg.jpg") repeat left top;
  padding: 3vw 0 0;
}

#oc-access .oc-title {
  color: #00608d;
}

#oc-access-map iframe {
  width: 100%;
  aspect-ratio: 3 / 1;
}

@media screen and (max-width: 980px) {
  #oc-access-map iframe {
    aspect-ratio: 1 / 1;
  }
}
