@charset "utf-8";
/* CSS Document */
/*****************************************************************************

base.css
全ページ共通

*****************************************************************************/
/*****************************************************************************
 reset 
 *****************************************************************************/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, button {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul, ol {
  list-style-type: none;
}
li {
  list-style-type: none;
}
em, i, strong, th, address {
  font-style: normal;
  font-weight: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
img, object, embed {
  border: 0;
  vertical-align: top;
}
hr {
  border: 0;
  height: 1px;
  background: #cccccc;
  margin: 1em 0;
}
h1, h2, h3, h4, h5, th, dt, strong {
  font-weight: normal;
}
area {
  outline: none !important;
  border: none !important;
}
img {
  border: 0;
  vertical-align: middle;
}
body *, body *:before, body *:after {
  box-sizing: border-box;
}
/*****************************************************************************
 linkColor 
 *****************************************************************************/
a {
  color: #46d2e6;
  text-decoration: underline;
  cursor: pointer;
  transition: .3s;
}
a * {
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
/*****************************************************************************
 clearfix 
 *****************************************************************************/
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
/*****************************************************************************
 body
 *****************************************************************************/
html {
  /*-webkit-text-size-adjust: none;*/
}
body {
  background: #ffffff;
}
body, input, textarea, select {
  line-height: 1.75;
  font-size: 14px;
  color: #646464;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.mincho {
  font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.gothic {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
}
#body {
  overflow-x: hidden;
  min-width: 1300px;
  padding-top: 90px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #body {
    min-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  #body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 900px) {
  #body {
    /*min-width: 900px;*/
  }
}
@media screen and (max-width: 600px) {
  #body {
    min-width: 320px;
  }
}
header {
  z-index: 111;
}
.drawer-overlay {
  z-index: 222;
  background: transparent;
}
#gnvWrapper2 {
  z-index: 333;
  background: rgba(70, 210, 230, 0.93);
}
#pageUpBtn {
  position: fixed;
  z-index: 111;
}
.blur.blurOn {
  -ms-filter: blur(6px);
  filter: blur(6px);
}
/*****************************************************************************
header
 *****************************************************************************/
header {
  height: 90px;
  width: 100%;
  background: rgba(70, 210, 230, 1.0);
  transition: .3s;
  overflow: visible;
}
/*.drawer-open header {
	opacity:0;
}*/
#frontVA header {
  position: absolute;
  bottom: 0;
  background: rgba(70, 210, 230, 1);
}
/*#frontVA header.bottomFixed {
	position: fixed;
	bottom: 0;
	background: rgba(70,210,230,0.8);
}*/
header.fixed, #frontVA header.fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
}
header.fixed.scroll, #frontVA header.fixed.scroll {
  background: rgba(70, 210, 230, 0.8);
}
header.colorOff {
  background: rgba(70, 210, 230, 0);
}
header .logo {
  position: absolute;
  left: 20px;
  left: 6%;
  top: 50%;
  margin-top: -25px;
}
header .logo a {
  display: inline-block;
  height: 50px;
}
header .logo a img {
  width: auto;
  height: 100%;
}
header #gnv ul {
  display: flex;
  position: absolute;
  right: 10px;
  right: 6%;
  top: 50%;
  margin-top: -19px;
}
.home header #gnv ul {
  transition: right 0.3s ease;
}
header #gnv li a {
  color: #ffffff;
  font-size: 20px;
  display: block;
  padding: 0 10px;
  text-decoration: none;
  opacity: 1;
}
header #gnv li a span {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding: 0 10px;
  line-height: 38px;
  transition: border-color 0.3s ease;
}
header #gnv li.sl a span, header #gnv li:hover a span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1100px) {
  header {
    height: 60px;
    padding: 0 20px;
  }
  header .logo {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 0;
  }
  header .logo a {
    display: inline-block;
    height: 28px;
    margin: 16px 0 0;
  }
  header #gnv {
    display: none;
  }
}
header.off {
  opacity: 0;
}
#gnvWrapper2 {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 350px;
  transform: translateX(100%);
  transition: 0.65s cubic-bezier(0.23, 1, 0.32, 1) .2s;
}
#gnvWrapper2.open {
  transform: translateX(0);
}
#gnvWrapper2 nav {
  overflow-y: auto;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
#gnvWrapper2 .logo {
  padding: 20px 0 0;
  margin: 0 35px;
}
#gnvWrapper2 .logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}
#gnvWrapper2 ul {
  padding: 20px 20px 80px;
}
#gnvWrapper2 ul a {
  display: block;
  color: #ffffff;
  padding: 8px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 16px;
}
@media screen and (min-width: 1101px) {
  #spHeader {
    display: none;
  }
}
.home header #targetNav {
  transition: right .345s;
}
header #targetNav {
  position: absolute;
  top: 23px;
  right: -50px;
}
header.fixed #targetNav {
  right: 15px;
}
#targetNav nav {
  position: absolute;
  right: -5px;
  top: 40px;
  width: 160px;
  display: none;
}
#targetNav ul li {
  margin: 0 0 1px;
}
#targetNav ul a {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 20px;
  line-height: 1.0;
  font-size: 14px;
  text-decoration: none;
  transition: padding 0.3s ease;
  position: relative;
  text-align: right;
  opacity: 1;
}
#targetNav ul a:hover {
  padding-right: 30px;
}
#targetNav ul a .fa {
  font-size: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#targetNav ul a:hover .fa {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  #targetNav {
    display: none;
  }
}
.nemuBtn p {
  width: 45px;
  height: 45px;
  position: relative;
  cursor: pointer;
}
.nemuBtn .bar01:after, .nemuBtn .bar02:after, .nemuBtn .bar03:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 12px);
  transition: margin .3s .1s, transform .2s;
}
.nemuBtn .bar01:after {
  margin-top: -10px;
}
.nemuBtn .bar02:after {}
.nemuBtn .bar03:after {
  margin-top: 10px;
}
#header2Hd {
  position: fixed;
  z-index: 999;
  top: 7px;
  right: 10px;
}
#header2Hd.nemuBtn.open .bar01:after, #header2Hd.nemuBtn.open .bar03:after {
  margin-top: 0;
  transition: margin .3s, transform .3s .25s;
}
#header2Hd.nemuBtn.open .bar01:after {
  transform: rotate(-45deg);
}
#header2Hd.nemuBtn.open .bar02:after {
  display: none;
}
#header2Hd.nemuBtn.open .bar03:after {
  transform: rotate(45deg);
}
/*****************************************************************************
 footer
 *****************************************************************************/
footer {
  padding: 80px 0 0;
  line-height: 1.0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}
footer .link {}
footer .link ul {
  text-align: center;
  font-size: 0;
  position: relative;
}
footer .link li {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  width: 295px;
  margin: 0 28px;
}
footer .link li a, footer .link li span {
  display: block;
  border: 1px solid #00d3e8;
  text-decoration: none;
  opacity: 1;
}
footer .link li a {
  padding: 8px;
}
footer .link li span {
  line-height: 44px;
}
footer .link li.telMail span i {
  background: url(../images/iconTelMail.png) 0 50% no-repeat;
  background-size: 24px auto;
  padding-left: 32px;
}
@media screen and (min-width: 1159px) {
  footer .link li span {
    transition: all 0.3s ease;
  }
  footer .link li a:hover span {
    /*background: #00d3e8;*/
    background: rgba(70, 210, 230, 0.6);
    color: #ffffff;
  }
}
@media screen and (max-width: 700px) {
  footer .link li {
    margin: 0 10px;
    width: 265px;
  }
}
@media screen and (max-width: 600px) {
  footer .link li {
    display: block;
    margin: 15px auto 0;
  }
}
footer .nav .img {
  position: relative;
  z-index: 1;
  margin-top: -10px;
}
footer .nav .img img {
  width: 100%;
  height: auto;
}
footer .nav nav {
  padding: 50px 0 0;
  text-align: center;
  font-size: 0;
  position: relative;
  z-index: 2;
}
footer .nav nav ul {
  display: inline-block;
  vertical-align: top;
}
footer .nav nav li {
  display: inline-block;
  vertical-align: top;
  font-size: 1em;
  border-left: 1px solid #8c8c8c;
  margin-top: 10px;
}
footer .nav nav ul:first-child li:first-child {
  border-left: none;
}
footer .nav nav li > a {
  display: block;
  color: #646464;
  padding: 0 1.5em;
  text-decoration: none;
  font-size: 16px;
}
footer .nav nav li > span {
  display: block;
  color: #646464;
  padding: 0 1.5em;
  text-decoration: none;
  font-size: 16px;
}
footer .cpright {
  font-size: 12px;
  text-align: center;
  padding: 26px;
}
@media screen and (min-width: 1159px) {
  footer .nav nav li a {
    transition: all 0.3s ease;
  }
  footer .nav nav li a:hover {
    color: #00d3e8;
  }
}
@media screen and (max-width: 1159px) {
  footer .nav li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  footer .nav ul:last-child {
    display: block;
  }
  footer .nav ul:last-child li:first-child {
    border-left: none;
  }
}
@media screen and (max-width: 530px) {
  footer .nav ul {
    display: block;
  }
  footer .nav ul li:first-child {
    border-left: none;
  }
}
#pageUpBtn {
  right: 20px;
  bottom: 20px;
}
#pageUpBtn a {
  display: block;
  width: 65px;
  height: 65px;
  background: rgba(70, 210, 230, 0.8);
  text-align: center;
}
#pageUpBtn a .fa {
  color: #ffffff;
  font-size: 46px;
  line-height: 65px;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  #pageUpBtn {
    right: 15px;
    bottom: 15px;
  }
  #pageUpBtn a {
    width: 45px;
    height: 45px;
  }
  #pageUpBtn a .fa {
    font-size: 33px;
    line-height: 40px;
  }
}
/*****************************************************************************
 pageTitle
 *****************************************************************************/
#catTopMainVA {
  position: relative;
  line-height: 1.0;
}
#catTopMainVA > .img img {
  width: 100%;
  height: auto;
}
#pageTitle {
  text-align: center;
  padding: 86px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
#pageTitle .title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
}
#pageTitle .title a {
  text-decoration: none;
}
#pageTitle .sub {
  margin-top: 44px;
  font-size: 16px;
}
#pageTitle .sub2 {
  font-size: 14px;
}
#pageTitle .entryDate {
  margin-top: 44px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  #pageTitle {
    width: 86%;
    margin: 0 auto;
  }
}
/*****************************************************************************
 section
 *****************************************************************************/
.contentsWrapper .section > .inner {
  margin: 0 auto;
  padding: 60px 0;
}
.contentsWrapper.narrow .section > .inner {
  width: 86%;
  max-width: 780px;
}
.contentsWrapper.narrow2 .section > .inner {
  width: 86%;
  max-width: 900px;
}
.contentsWrapper.narrow3 .section > .inner {
  width: 86%;
  max-width: 950px;
}
.contentsWrapper.wide0 .section > .inner {
  width: 86%;
  max-width: 1000px;
}
.contentsWrapper.wide .section > .inner {
  width: 86%;
  max-width: 1160px;
}
.contentsWrapper.wide2 .section > .inner {
  width: 86%;
  max-width: 1240px;
}
/*****************************************************************************
 newsList 
 *****************************************************************************/
.newsList > .inner {
  padding-top: 0 !important;
}
.newsList ul {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
}
.newsList ul li {
  width: calc(100% / 3);
  margin-bottom: 100px;
}
.newsList ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  opacity: 1;
}
.newsList ul li a .date {
  font-size: 16px;
  color: #000000;
}
.newsList ul li a .img {
  margin: 55px auto 0;
  width: 60%;
  max-width: 242px;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.newsList ul li a .img img {
  width: 100%;
  height: auto;
}
.newsList ul li a .title {
  margin: 65px 0 0;
  padding: 0 15%;
  font-size: 22px;
  line-height: 1.2;
  color: #46d2e6;
  transition: color 0.3s ease;
}
.newsList ul li a .text {
  margin: 15px 0 0;
  padding: 0 15%;
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
  color: #646464;
}
.newsList ul li a:hover .img {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .newsList ul {
    display: inherit;
  }
  .newsList ul li {
    width: auto;
  }
  .newsList ul li a .img {
    margin: 30px auto 0;
  }
  .newsList ul li a .title {
    margin: 30px 0 0;
    padding: 0 10%;
  }
  .newsList ul li a .text {
    padding: 0 10%;
  }
}
/*****************************************************************************
 tabNav 
 *****************************************************************************/
#tabNav {
  text-align: center;
  line-height: 1;
  margin: -60px auto 86px;
}
#tabNav ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
/*catNav
----------------------------------------------------------*/
#tabNav.catNav li {
  margin: 0 20px;
}
#tabNav.catNav li a {
  display: block;
  padding-top: 33px;
  font-size: 16px;
  text-decoration: none;
  color: #646464;
  position: relative;
  width: 10em;
}
#tabNav.catNav li a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #c9c9c9;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -8px;
}
#tabNav.catNav li.sl a:before, #tabNav.catNav li a:hover:before {
  background: #46d2e6;
}
@media screen and (max-width: 600px) {
  #tabNav.catNav li {
    margin: 0 5px;
  }
  #tabNav.catNav li a {
    font-size: 14px;
    width: 6em;
  }
}
/*fieldsNav
----------------------------------------------------------*/
#tabNav.fieldsNav li a {
  display: block;
  text-decoration: none;
  color: #646464;
  position: relative;
  width: 8em;
  text-align: center;
}
#tabNav.fieldsNav li a .nIcon {
  display: none;
}
#tabNav.fieldsNav li a .icon {
  display: inline-block;
  background: #ff0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  transition: background 0.3s ease;
}
#tabNav.fieldsNav .color01 a .icon {
  background: rgba(235, 100, 143, 0.2);
}
#tabNav.fieldsNav .color01.sl a .icon, #tabNav.fieldsNav .color01 a:hover .icon {
  background: rgba(235, 100, 143, 1);
}
#tabNav.fieldsNav .color02 a .icon {
  background: rgba(25, 163, 251, 0.2);
}
#tabNav.fieldsNav .color02.sl a .icon, #tabNav.fieldsNav .color02 a:hover .icon {
  background: rgba(25, 163, 251, 1);
}
#tabNav.fieldsNav .color03 a .icon {
  background: rgba(255, 172, 78, 0.2);
}
#tabNav.fieldsNav .color03.sl a .icon, #tabNav.fieldsNav .color03 a:hover .icon {
  background: rgba(255, 172, 78, 1);
}
#tabNav.fieldsNav .color04 a .icon {
  background: rgba(199, 95, 162, 0.2);
}
#tabNav.fieldsNav .color04.sl a .icon, #tabNav.fieldsNav .color04 a:hover .icon {
  background: rgba(199, 95, 162, 1);
}
#tabNav.fieldsNav .color05 a .icon {
  background: rgba(123, 194, 106, 0.2);
}
#tabNav.fieldsNav .color05.sl a .icon, #tabNav.fieldsNav .color05 a:hover .icon {
  background: rgba(123, 194, 106, 1);
}
@media screen and (max-width: 600px) {
  #tabNav.fieldsNav li a {
    width: 4em;
  }
  #tabNav.fieldsNav li a .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
/*entryBody
----------------------------------------------------------*/
.entryMainImg {
  margin: 0 auto 30px;
}
.entryMainImg img {
  max-width: 100%;
  height: auto;
}
.entryBody {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  overflow: hidden;
  margin: 0 auto 30px;
}
.entryBody img {
  max-width: 100%;
  height: auto;
}
.entryBody strong {
  font-weight: bold;
  color: #F09192;
}
.entryBody ul, .entryBody ol {
  margin-left: 20px;
}
.entryBody ul li {
  list-style: disc;
}
.entryBody ol li {
  list-style: decimal;
}
.entryBody h1 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  margin: 30px 0 30px;
}
.entryBody h2 {
  text-align: center;
  border-bottom: 1px dashed #989898;
  border-top: 1px dashed #989898;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 0;
  margin: 30px 0 30px;
}
.entryBody h3 {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .entryBody img {
    width: 100%;
    margin: 0 0 20px;
  }
}
/*entryGallery
----------------------------------------------------------*/
.entryGallery {
  text-align: center;
  padding: 40px 0 40px;
  line-height: 1;
}
.entryGallery .btn {
  display: inline-block;
  margin: 0 10px;
}
.entryGallery .btn.pc {}
.entryGallery .btn.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .entryGallery .btn.pc {
    display: none;
  }
  .entryGallery .btn.sp {
    display: inline-block;
  }
}
.entryGallery .btn a {
  display: inline-block;
  width: 100px;
  vertical-align: top;
  opacity: 1;
  text-decoration: none;
  padding: 0 0 25px;
  position: relative;
}
.entryGallery .btn .shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.entryGallery .btn .text {
  display: block;
  padding: 0 0 12px;
  line-height: 20px;
}
.entryGallery .btn .text.en {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 17px;
}
.entryGallery .btn .text.jp {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 17px;
}
.entryGallery .btnImg {
  width: 80px;
  height: auto;
  margin-top: -4px;
}
.entryGallery .btn a:hover .shadow img {
  animation-name: background-enlarge, background;
  animation-duration: .3s, 1.4s;
  animation-delay: 0s, .3s;
  animation-timing-function: linear, ease-out;
  animation-iteration-count: 1, infinite;
}
@keyframes background-enlarge {
  0% {
    width: 100%;
  }
  100% {
    width: 86%;
  }
}
@keyframes background {
  0% {
    width: 86%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 86%;
  }
}
.entryGallery .btn a:hover .btnImg {
  animation-name: hvr-bob-float, hvr-bob;
  animation-duration: .3s, 1.4s;
  animation-delay: 0s, .3s;
  animation-timing-function: linear, ease-out;
  animation-iteration-count: 1, infinite;
}
@keyframes hvr-bob-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes hvr-bob {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-6px);
  }
}
.entryGallery > .inner {
  height: 0;
  overflow: hidden;
}
/*****************************************************************************
 contentBottom 
 *****************************************************************************/
#contentBottom {
  text-align: center;
  padding: 100px 0;
}
#contentBottom a {
  padding-top: 43px;
  font-size: 18px;
  text-decoration: none;
  color: #646464;
  position: relative;
}
#contentBottom a:hover {
  color: #46d2e6;
}
#contentBottom a::after {
  content: "●";
  color: #46d2e6;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -13.5px;
}
/*****************************************************************************
 paginate 
 *****************************************************************************/
#paginate {
  text-align: center;
}
#paginate > .inner {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#paginate a {
  text-decoration: none;
}
#paginate ul {
  display: flex;
}
#paginate li, #paginate p {
  font-size: 18px;
  line-height: 28px;
}
#paginate p {
  position: absolute;
  top: 0;
  width: 50px;
}
#paginate p.prev {
  left: -50px;
}
#paginate p.next {
  right: -50px;
}
#paginate li {
  margin: 0 10px;
}
#paginate li a, #paginate li span {
  display: block;
  width: 28px;
}
#paginate li a {
  color: #646464;
}
#paginate li span {
  background: #46d2e6;
  color: #ffffff;
}
#paginate a .fa {
  font-size: 26px;
}
@media screen and (max-width: 700px) {
  #paginate li {
    font-size: 14px;
    margin: 0 5px;
  }
}
/*****************************************************************************
 relatedLink 
 *****************************************************************************/
#relatedLink {
  text-align: center;
}
#relatedLink ul {
  padding: 25px 0 0;
  position: relative;
  background: #ffffff;
  line-height: 1;
}
#relatedLink ul:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #c9c9c9;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -8px;
}
#relatedLink li a {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 16px;
  text-decoration: none;
}
#relatedLink li a .small {
  font-size: 11px;
}
@media screen and (max-width: 600px) {
  #relatedLink li a {
    font-size: 14px;
  }
}
/*****************************************************************************
 contentsWrapper 
 *****************************************************************************/
.contentsWrapper .section .lead {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .contentsWrapper .section .lead {
    width: 90%;
  }
}
.colWrapperHd {
  text-align: center;
}
.colWrapperHd span {
  font-size: 25px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}
.colWrapper {
  display: flex;
}
.colWrapper .col {
  box-sizing: border-box;
  width: 47.5%;
}
.colWrapper .col:first-child {
  margin-right: 5%;
}
@media screen and (max-width: 750px) {
  .colWrapper {
    display: block;
    margin: 0 0;
  }
  .colWrapper .col {
    width: auto;
    padding: 0;
  }
  .colWrapper .col:first-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .colWrapperHd span {
    letter-spacing: 0.2em;
  }
}
.colWrapper .colHd {
  font-size: 23px;
  border-bottom: 1px solid #646464;
  padding: 0 0 12px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.colWrapper .colBox {
  font-size: 12px;
}
.colWrapper2 {
  display: flex;
}
.colWrapper2 > table {
  width: 48.5%;
}
.colWrapper2 > table:first-child {
  margin-right: 3%;
}
.gengoColor {
  color: #82E66E;
}
.yokyoColor {
  color: #ff8c6e;
}
.emColor {
  color: #F09192;
}
.emColor2 {
  color: #46d2e6;
}
.sectionHd2 {
  text-align: center;
  padding: 40px 0;
}
.sectionHd2 span {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  min-width: 157px;
  height: 86px;
  line-height: 86px;
  padding: 0 29px;
  border-radius: 50%;
  background-color: #46D2E6;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
}
.sectionHd2Text {
  text-align: center;
  margin: -20px 0 60px;
  font-size: 25px;
  font-weight: bold;
}
.hdStyle2 {
  color: #46d2e6;
  margin: 0 0 20px;
  line-height: 1.2;
  font-size: 23px;
}
.sectionHd3 {
  text-align: center;
  padding: 40px 0;
  line-height: 1.1;
}
.sectionHd3 .text1 {
  font-size: 44px;
  color: #46d2e6;
}
.sectionHd3 .text2 {
  font-size: 12px;
  color: #646464;
}
.sectionHd4 {
  width: 900px;
  max-width: 86%;
  margin: 0 auto;
  padding: 90px 0 0;
  line-height: 1;
  text-align: center;
}
.sectionHd4 .title {
  padding: 0 0 25px;
  border-bottom: 1px solid #46d2e6;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
}
.sectionHd4 .text {
  padding: 25px 0 0;
  font-size: 16px;
  line-height: 1.6;
}
.sectionHd4 .text2 {
  padding: 30px 0 0;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .sectionHd4 .text br {
    display: none;
  }
  .sectionHd4 .text {
    text-align: left;
  }
  .sectionHd4 .text2 {
    text-align: left;
  }
}
.sectionHd5 {
  margin: 0 auto;
  padding: 90px 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.sectionHd5 .title {
  width: 133px;
  height: 133px;
}
.sectionHd5 .title > .inner {
  background: #46d2e6;
  border-radius: 100%;
  width: 133px;
  height: 133px;
  line-height: 133px;
  margin: 0 auto;
  font-size: 19px;
  padding: 0 0 0 5px;
  font-weight: bold;
  color: #ffffff;
}
.sectionHd5 .text {
  padding: 0 0 0 25px;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .sectionHd5 {
    display: inherit;
  }
  .sectionHd5 .title {
    width: 100%;
    height: auto;
    padding: 0 0 40px;
  }
  .sectionHd5 .title > .inner {
    padding: 0;
    text-align: center;
  }
  .sectionHd5 .text {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.sectionHd6 {
  text-align: center;
  padding: 0 0 30px;
}
.sectionHd6 .title {
  font-size: 24px;
}
.sectionHd6 .text {
  font-size: 14px;
}
.sectionHd7 {
  border-top: 1px dashed #989898;
  border-bottom: 1px dashed #989898;
  text-align: center;
  padding: 10px 0 10px;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sectionHd8 {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  font-size: 16px;
  margin-left: -0.5em;
}
.sectionHd8:before {
  content: "【";
}
.sectionHd8:after {
  content: "】";
}
.sectionHd09 {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  color: #46D2E6;
  font-size: 16px;
}
.sectionHd10 {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  color: #46D2E6;
  font-size: 18px;
  line-height: 1.2;
}
/*****************************************************************************
 professorsList
 *****************************************************************************/
.professorsList {}
.professorsList .professor {
  padding: 30px 15px 30px;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
}
.professorsList .professor:nth-child(1) {
  padding-top: 0;
}
.professorsList .professor .profile {
  width: 300px;
  line-height: 1.4;
}
.professorsList .professor .profile > .img img {
  width: 100%;
  height: auto;
}
.professorsList .professor .profile > .btm {
  margin: 20px 0 0;
  display: flex;
}
.professorsList .professor .profile .imgS {
  width: 100px;
}
.professorsList .professor .profile .imgS img {
  width: 100%;
}
.professorsList .professor .profile dl {
  flex: 1;
  padding-left: 15px;
}
.professorsList .professor .profile .name {
  font-size: 16px;
  padding: 8px 0;
  letter-spacing: 0.3em;
  border-bottom: 1px solid;
}
.professorsList.gengo .professor .profile .name {
  border-color: #82E66E;
}
.professorsList.yokyo .professor .profile .name {
  border-color: #FF8C6E;
}
.professorsList .professor .profile .title {
  margin: 8px 0 0;
}
.professorsList .professor .excerpt {
  flex: 1;
  padding-left: 30px;
}
.professorsList .professor .excerpt > div {
  margin: 15px 0 0;
}
.professorsList .professor .excerpt > div {
  font-size: 12px;
}
.professorsList .professor .excerpt > div:nth-of-type(1) {
  margin: 25px 0 0;
}
.professorsList .professor .excerpt > div .hd {
  font-weight: bold;
  margin-left: -0.4em;
}
.professorsList .professor li {
  position: relative;
  padding-left: 12px;
}
.professorsList .professor li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #bebebe;
  border-radius: 100%;
  position: absolute;
  top: 7px;
  left: 0;
}
.professorsList.gengo li:before {
  background: rgba(130, 230, 110, 0.7);
}
.professorsList.yokyo li:before {
  background: rgba(255, 140, 110, 0.7);
}
.professorsList .professor .listInline li {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  margin-right: 25px;
}
@media screen and (max-width: 600px) {
  .professorsList .professor {
    display: inherit;
  }
  .professorsList .professor .profile {
    width: auto;
    margin: 0 auto 20px;
    text-align: center;
  }
  .professorsList .professor .excerpt {
    padding-left: 0;
  }
}
/*professorsList2
-----------------------------------------------------------*/
.professorsList2 {
  display: flex;
  flex-wrap: wrap;
}
.professorsList2 .professor {
  width: calc(100% / 3);
  padding: 20px 15px;
  border-bottom: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
}
.professorsList2 .professor:nth-of-type(3n) {
  border-right: none;
}
.professorsList2 .professor .profile {
  max-width: 250px;
  line-height: 1.4;
}
.professorsList2 .professor .profile .name {
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 600px) {
  .professorsList2 {
    display: inherit;
  }
  .professorsList2 .professor {
    width: auto;
  }
  .professorsList2 .professor .profile {
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
  .professorsList2 .professor, .professorsList2 .professor:nth-of-type(3n) {
    border-right: none;
  }
}
/*aboutProfessorsList
-----------------------------------------------------------*/
.aboutProfessorsList .professor {
  padding: 30px 15px 30px;
  border-bottom: 1px dotted #cccccc;
  display: flex;
}
.aboutProfessorsList .professor:nth-child(1) {
  margin-top: -20px;
}
.aboutProfessorsList .professor > .hd {
  width: 230px;
  line-height: 1.4;
  padding-right: 30px;
}
.aboutProfessorsList .professor .hd .name {
  padding: 8px 0;
}
.aboutProfessorsList .professor .excerpt {
  flex: 1;
  padding-left: 30px;
  border-left: 1px dotted #cccccc;
}
.aboutProfessorsList .professor .excerpt > div {
  margin: 15px 0 0;
}
.aboutProfessorsList .professor .excerpt > div:nth-of-type(1) {
  margin: 0 0 0;
}
.aboutProfessorsList .professor .excerpt > div .hd {
  font-weight: bold;
  margin-left: -0.4em;
}
.aboutProfessorsList .professor li {
  position: relative;
  padding-left: 12px;
}
.aboutProfessorsList .professor li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #bebebe;
  border-radius: 100%;
  position: absolute;
  top: 7px;
  left: 0;
}
.aboutProfessorsList .professor .listInline li {
  display: inline-block;
  white-space: nowrap;
  margin-right: 25px;
}
@media screen and (max-width: 600px) {
  .aboutProfessorsList .professor {
    display: inherit;
  }
  .aboutProfessorsList .professor > .hd {
    width: auto;
    margin: 0 auto 30px;
    text-align: center;
  }
  .aboutProfessorsList .professor .excerpt {
    padding: 0;
    border-left: none;
  }
}
/*****************************************************************************
 tableType 
 *****************************************************************************/
/*tableType01
----------------------------------------------------------*/
.tableType1 {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.2;
}
.tableType1 caption, .tableType1 th {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
}
.tableType1 caption {
  padding: 7px 0 5px;
  text-align: left;
  font-weight: bold;
}
.tableType1 th, .tableType1 td {
  padding: 7px 0 5px;
  vertical-align: top;
}
.tableType1 th {
  width: 43px;
  text-align: right;
  padding-right: 10px;
  font-weight: bold;
}
/*tableType02
----------------------------------------------------------*/
.tableType02 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
}
.tableType02 th, .tableType02 td {
  border-top: 1px solid #7d7b7a;
  padding: 12px;
}
.tableType02 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  font-size: 20px;
  padding: 24px 12px;
  color: #ffffff;
}
.tableType02 thead tr:nth-child(1) th:nth-child(1) {
  border-left: none;
}
.tableType02 thead tr:nth-child(2) > * {
  padding: 12px;
  font-size: 14px;
}
.tableType02 tbody th {
  color: #46d2e6;
  font-size: 16px;
  width: 12%;
}
.tableType02 tbody th span {
  font-size: 14px;
}
.tableType02 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
}
.tableType02.pcTable tbody td {
  width: 44%;
}
.tableType02 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
.tableType02 li {
  padding-left: 4em;
  text-indent: -4em;
}
.tableType02 li * {
  text-indent: 0;
}
.tableType02 li .fa {
  margin-left: 3px;
}
@media screen and (min-width: 601px) {
  .tableType02.spTable {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .tableType02.pcTable {
    display: none;
  }
  .tableType02 thead th {
    font-size: 16px;
    padding: 12px 12px;
  }
  .tableType02 tbody th {
    font-size: 14px;
  }
  .tableType02 tbody th, .tableType02 tbody td {
    padding: 8px;
  }
}
/*tableType03
----------------------------------------------------------*/
.tableType03 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
  table-layout: fixed;
}
.tableType03 th, .tableType03 td {
  border-top: 1px solid #7d7b7a;
  padding: 12px;
}
.tableType03 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  font-size: 20px;
  padding: 24px 12px;
  color: #ffffff;
}
.tableType03 tbody th, .tableType03 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
}
.tableType03 thead th:nth-child(1), .tableType03 tbody th {
  border-left: none;
}
.tableType03 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
@media screen and (max-width: 600px) {
  .tableType03 thead th {
    font-size: 16px;
    padding: 12px 12px;
  }
}
/*tableType04
----------------------------------------------------------*/
.tableType04 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
  border-left: 1px solid #ffffff;
}
.tableType04 th, .tableType04 td {
  border-top: 1px solid #7d7b7a;
  padding: 8px;
}
.tableType04 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  color: #ffffff;
}
.tableType04 tbody th, .tableType03 tbody td {
  border-left: 1px solid #7d7b7a;
}
.tableType04 tbody th, .tableType04 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
}
.tableType04 thead th:nth-child(1), .tableType04 tbody th {
  border-left: none;
}
.tableType04 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
/*tableType05
----------------------------------------------------------*/
.tableType05 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.2;
  border-bottom: 1px solid #231815;
  table-layout: fixed;
}
.tableType05 th, .tableType05 td {
  border-top: 1px solid #231815;
}
.tableType05 thead th {
  border-left: 1px solid #231815;
  background: #46d2e6;
  font-size: 20px;
  padding: 10px 40px;
  color: #ffffff;
}
.tableType05 tbody th, .tableType05 tbody td {
  border-left: 1px solid #231815;
  padding: 10px 35px;
}
.tableType05 tbody th {
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  font-size: 16px;
  color: #46D2E6;
}
.tableType05 thead th:nth-child(1), .tableType05 tbody th {
  border-left: none;
}
.tableType05 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
@media screen and (max-width: 600px) {
  .tableType05 {
    table-layout: auto;
  }
  .tableType05 thead th {
    font-size: 16px;
    padding: 10px 5px;
  }
  .tableType05 thead th span {
    font-size: 12px;
  }
  .tableType05 tbody th, .tableType05 tbody td {
    font-size: 12px;
    padding: 10px 5px;
  }
}
/*tableType06
----------------------------------------------------------*/
.tableType06 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.2;
  border-bottom: 1px solid #231815;
}
.tableType06 th, .tableType06 td {
  border-top: 1px solid #231815;
  padding: 8px;
  text-align: center;
}
.tableType06 thead th {
  border-left: 1px solid #231815;
  background: #46d2e6;
  font-size: 20px;
  color: #ffffff;
}
.tableType06 thead th > div {
  position: relative;
}
.tableType06 thead th img {
  position: absolute;
}
.tableType06.pcTable thead th img {
  right: -10px;
  bottom: -40px;
}
.tableType06.spTable thead th img {
  right: -25px;
  top: -30px;
}
.tableType06 tbody th, .tableType06 tbody td {
  border-left: 1px solid #231815;
}
.tableType06 tbody th {
  color: #46D2E6;
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
  font-size: 16px;
  padding: 8px 0;
}
.tableType06 thead th:nth-child(1), .tableType06 tbody th {
  border-left: none;
}
.tableType06 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
.tableType06 .calWidth3 {
  width: 31.48%;
}
.tableType06 .calWidth2 {
  width: 47.2%;
}
.tableType06.pcTable tbody th {
  width: 5.55%;
}
.tableType06.spTable tbody th {
  width: 15%;
}
.tableType06.spTable tbody td {
  width: 85%;
}
@media screen and (min-width: 601px) {
  .tableType06.spTable {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .tableType06.pcTable {
    display: none;
  }
  .tableType06 thead th {
    font-size: 14px;
  }
  .tableType06 tbody th, .tableType06 tbody td {
    font-size: 12px;
  }
}
/*tableType07
----------------------------------------------------------*/
.tableType07 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
}
.tableType07 th, .tableType07 td {
  border-top: 1px solid #7d7b7a;
  padding: 12px;
}
.tableType07 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  font-size: 20px;
  padding: 24px 12px;
  color: #ffffff;
}
.tableType07 tbody th, .tableType07 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
}
.tableType07 tbody th {
  background: #ecfafc;
}
.tableType07 thead th:nth-child(1), .tableType07 tbody th.woBrdr {
  border-left: none;
}
@media screen and (max-width: 600px) {
  .tableType03 thead th {
    font-size: 16px;
    padding: 12px 12px;
  }
}
/*tableType08
----------------------------------------------------------*/
.tableType08 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
}
.tableType08 th, .tableType08 td {
  border-top: 1px solid #7d7b7a;
  padding: 12px;
}
.tableType08 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  font-size: 20px;
  padding: 24px 12px;
  color: #ffffff;
}
.tableType08 tbody th, .tableType08 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
}
.tableType08 thead th:nth-child(1), .tableType08 tbody th {
  border-left: none;
}
.tableType08 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
.tableType08 tbody th span {
  font-size: 20px;
  color: #46d2e6;
}
@media screen and (max-width: 600px) {
  .tableType08 thead th {
    font-size: 16px;
    padding: 12px 12px;
  }
}
/*tableType08
----------------------------------------------------------*/
.tableType09 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  border-bottom: 1px solid #7d7b7a;
}
.tableType09 th, .tableType09 td {
  border-top: 1px solid #7d7b7a;
}
.tableType09 thead th {
  border-left: 1px solid #7d7b7a;
  text-align: center;
  background: #46d2e6;
  font-size: 20px;
  padding: 24px 12px;
  color: #ffffff;
}
.tableType09 tbody th, .tableType09 tbody td {
  border-left: 1px solid #7d7b7a;
  font-size: 14px;
  padding: 12px 5px 12px;
}
.tableType09 thead th:nth-child(1), .tableType09 tbody th {
  border-left: none;
}
.tableType09 tbody tr:nth-child(2n) > * {
  background: #ecfafc;
}
.tableType09 tbody th {
  color: #46D2E6;
  font-family: "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;
}
.tableType09 tbody td {}
@media screen and (max-width: 600px) {
  .tableType09 thead th {
    font-size: 16px;
    padding: 12px 12px;
  }
}
/*****************************************************************************
 ftNote
 *****************************************************************************/
.ftNote {
  margin: 0.5em 0 0;
}
.ftNote p, .ftNote li {
  position: relative;
  padding-left: 1.2em;
}
.ftNote p:before, .ftNote li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.ftNote2 {
  margin: 0.5em 0 0;
  text-align: right;
}
.ftNote2 p:before, .ftNote2 li:before {
  content: "※";
}
.ftNote3 {
  padding: 0.5em 0;
  border-bottom: 1px solid #231815;
}
.ftNote3 dl {
  display: table;
  line-height: 1.4;
}
.ftNote3 dl > * {
  display: table-cell;
}
.ftNote3 dl dt {
  white-space: nowrap;
}
.ftNote3_01 {
  padding: 0.5em 0;
  border-bottom: 1px solid #231815;
}
.ftNote3_01 dl {
  line-height: 1.4;
}
.ftNote3_01 dl dt {
  white-space: nowrap;
}
dt.note3 {
  float: left;
}
dd.note3 {
  margin-left: 77px;
}
/*****************************************************************************
 styles
 *****************************************************************************/
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt90 {
  margin-top: 80px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb28 {
  margin-bottom: 28px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt35 {
  padding-top: 35px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt45 {
  padding-top: 45px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb1 {
  padding-bottom: 1px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb14 {
  padding-bottom: 14px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb28 {
  padding-bottom: 28px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb35 {
  padding-bottom: 35px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb45 {
  padding-bottom: 45px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pl05 {
  padding-left: 5px;
}
.inlineBlock {
  display: -moz-inline-box;
  display: inline-block;
  /display: inline;
  /zoom: 1;
}
.font60 {
  font-size: 60px;
}
.font32 {
  font-size: 32px;
}
.font18 {
  font-size: 18px;
}
.font16 {
  font-size: 16px;
}
.font14 {
  font-size: 14px;
}
.font12 {
  font-size: 12px;
}
.font11 {
  font-size: 11px;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.lsp05 {
  letter-spacing: 0.5em;
}
.lspM01 {
  letter-spacing: -0.1em;
}
.whTextShadow {
  text-shadow:
    2px 2px 5px white, -2px 2px 5px white, 2px -2px 5px white, -2px -2px 5px white, 2px 2px 5px white, -2px 2px 5px white, 2px -2px 5px white, -2px -2px 5px white, 2px 2px 5px white, -2px 2px 5px white, 2px -2px 5px white, -2px -2px 5px white
}
/*br
----------------------------------------------------------*/
.pcBr {
  display: inherit;
}
.spBr {
  display: none;
}
@media screen and (max-width: 600px) {
  .pcBr {
    display: none;
  }
  .spBr {
    display: inherit;
  }
}
/*****************************************************************************
list
 *****************************************************************************/
/*olType01
----------------------------------------------------------*/
.olType01 > li {
  list-style: decimal;
  margin-left: 20px;
}
/*olType02
----------------------------------------------------------*/
.olType02 {
  counter-reset: item 0;
}
.olType02 li:before {
  content: "（"counters(item, "-") "）";
  counter-increment: item;
}
@media screen and (max-width: 600px) {
  .olType02 {
    text-align: left;
  }
  .olType02 li {
    padding-left: 2.5em;
    position: relative;
  }
  .olType02 li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*olType03
----------------------------------------------------------*/
.olType03 {
  counter-reset: item 0;
}
.olType03 li:before {
  content: "（"counters(item, "-") "）";
  counter-increment: item;
}
.olType03 li {
  padding-left: 2.5em;
  position: relative;
}
.olType03 li:before {
  position: absolute;
  top: 0;
  left: 0;
}
/*olType04
----------------------------------------------------------*/
.olType04 {
  counter-reset: item 0;
}
.olType04 li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
.olType04 li:before {
  content: counter(item) "、";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
}
/*ulType01
----------------------------------------------------------*/
.ulType01 > li {
  list-style: disc;
  margin-left: 20px;
}
/*ulType02
----------------------------------------------------------*/
.ulType02 > li {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
}
.ulType02 > li:first-child {
  margin-top: 0;
}
/*ulType03
----------------------------------------------------------*/
.ulType03 > li {
  margin-left: 20px;
}
.ulType03 > li .hd {
  margin-left: -20px;
  margin-right: 5px;
}
/*ulType04
----------------------------------------------------------*/
.ulType04 > li {
  padding-left: 1.1em;
  position: relative;
}
.ulType04 > li:before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
}
/*astList
----------------------------------------------------------*/
.astList li:before {
  content: "※";
}
@media screen and (max-width: 600px) {
  .astList {
    text-align: left;
  }
  .astList li {
    padding-left: 1.1em;
    position: relative;
  }
  .astList li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*****************************************************************************
loading
*****************************************************************************/
.loading {
  height: 40px !important;
  width: 40px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 0;
  animation-name: spin;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
/*****************************************************************************
animation
 *****************************************************************************/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    background: #f09192;
    color: #ffffff;
  }
  100% {
    background: #ffffff;
    color: #f09192;
  }
}
/*****************************************************************************
fancybox
 *****************************************************************************/
.fbBoxContentsWrapper {
  display: none;
}
.fboxContent {
  position: relative;
}
.fboxContent .img img {
  width: 100%;
  height: auto;
}
.fboxContent .text {
  padding: 20px;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
}
.fboxContent .text > .inner {
  background: rgba(70, 210, 230, 0.6);
  padding: 10px;
  width: 37%;
  font-size: 12px;
  color: #ffffff;
}
.fboxContent .text .profile.pc {
  border-top: 1px solid #ffffff;
  margin: 10px 0 0;
  padding: 10px 0 0;
}
.fboxContent .text .profile.sp {
  border-bottom: 1px solid rgba(70, 210, 230, 0.8);
  margin: 0 0 10px;
  padding: 0 0 10px;
  display: none;
}
@media screen and (max-width: 600px) {
  .fboxContent .text {
    padding: 0;
    position: relative;
    top: atuo;
    left: atuo;
  }
  .fboxContent .text > .inner {
    width: auto;
    color: #333333;
  }
  .fboxContent .text .profile.pc {
    display: none;
  }
  .fboxContent .text .profile.sp {
    display: inherit;
  }
}
.fboxContent2 {
  position: relative;
}
.fboxContent2 .img img {
  width: 100%;
  height: auto;
}
.fboxContent2 .text {
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.fboxContent2 .text > .inner {
  background: rgba(70, 210, 230, 0.6);
  padding: 10px;
  font-size: 12px;
  color: #ffffff;
}
.fancybox-skin {
  background: #ffffff;
}
/*****************************************************************************
balloon
 *****************************************************************************/
button[data-balloon] {
  overflow: visible;
}
[data-balloon] {
  position: relative;
}
[data-balloon]:before, [data-balloon]:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  bottom: 100%;
  left: 50%;
  position: absolute;
  z-index: 10;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
[data-balloon]:after {
  color: #fff;
  content: attr(data-balloon);
  font-size: 12px;
  padding: .5em 1em;
  white-space: nowrap;
  margin-bottom: 11px;
  background: rgba(235, 100, 143, 1);
}
[data-balloon]:before {
  content: "";
  margin-bottom: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 0 7px;
  border-color: #007bff transparent transparent transparent;
}
[data-balloon]:hover:before, [data-balloon][data-balloon-visible]:before, [data-balloon]:hover:after, [data-balloon][data-balloon-visible]:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
[data-balloon][data-balloon-break]:after {
  white-space: normal;
}
.color01 [data-balloon]:after {
  background: rgba(235, 100, 143, 1);
}
.color02 [data-balloon]:after {
  background: rgba(25, 163, 251, 1);
}
.color03 [data-balloon]:after {
  background: rgba(255, 172, 78, 1);
}
.color04 [data-balloon]:after {
  background: rgba(199, 95, 162, 1);
}
.color05 [data-balloon]:after {
  background: rgba(123, 194, 106, 1);
}
.color01 [data-balloon]:before {
  border-color: rgba(235, 100, 143, 1) transparent transparent transparent;
}
.color02 [data-balloon]:before {
  border-color: rgba(25, 163, 251, 1) transparent transparent transparent;
}
.color03 [data-balloon]:before {
  border-color: rgba(255, 172, 78, 1) transparent transparent transparent;
}
.color04 [data-balloon]:before {
  border-color: rgba(199, 95, 162, 1) transparent transparent transparent;
}
.color05 [data-balloon]:before {
  border-color: rgba(123, 194, 106, 1) transparent transparent transparent;
}
#eventList [data-balloon]:after {
  background: #f09192;
}
#eventList [data-balloon]:before {
  border-color: #f09192 transparent transparent transparent;
}
/*****************************************************************************
画像カバー
 *****************************************************************************/
.coveringWrapper {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.coveringWrapper img {
  position: relative;
  z-index: 1;
}
.coveringWrapper .coveringImg {
  height: 100% !important;
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
/*****************************************************************************
印刷用
 *****************************************************************************/
@media print {
  header {
    display: none;
  }
  #header2Hd {
    display: none;
  }
  #gnvWrapper2 {
    display: none;
  }
  footer {
    display: none;
  }
  #pageUpBtn {
    display: none;
  }
  #relatedLink {
    display: none;
  }
}
/*****************************************************************************
 studentsお知らせリスト
 *****************************************************************************/
.students-information {
  width: 900px;
  max-width: 86%;
  margin: 0 auto;
  padding-top: 30px;
}
.students-information-title {
  font-size: 16px;
  font-weight: bold;
}
.students-information .information-listbox a {
  text-decoration: none;
  display: flex;
  padding: 10px 0;
}
.students-information .information-date {
  padding-right: 50px;
  color: #646464;
}
.students-information .information-pdf::after {
  content: "（pdf）";
}
.list-tsuiki {
  display: none;
}
.info-tsuiki {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.info-tsuiki:hover {
  opacity: 0.7;
}
.info-tsuiki-text {
  color: #46d2e6;
}
.info-tsuiki-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin-left: 10px;
  width: 2px;
  height: 14px;
  background: #46d2e6;
  -webkit-transform: translateY(2px) rotate(45deg);
  transform: translateY(2px) rotate(45deg);
  transition: all 0.3s;
}
.close .info-tsuiki-icon {
  padding: 0;
  margin-left: 10px;
  width: 2px;
  height: 14px;
  background: #46d2e6;
  -webkit-transform: translateY(1px) rotate(90deg);
  transform: translateY(1px) rotate(90deg);
  transition: all 0.3s;
}
.info-tsuiki-icon::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  background: #46d2e6;
}
.close .info-tsuiki-icon::after {
  top: 50%;
  left: -6px;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  background: #46d2e6;
}
@media screen and (max-width: 768px) {
  .students-information .information-date {
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .students-information .information-listbox a {
    display: block;
  }
}
/*****************************************************************************
 ニュース用動画
 *****************************************************************************/
.yo-video__wrapper {
  position: relative;
  padding-top: 56%;
}
.yo-video__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contentsWrapper .section > .adm-video__inner{
    padding-bottom: 30px;
}
/*****************************************************************************
 入試情報用動画リスト
 *****************************************************************************/
.movie-list__wrapper {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
    padding: 0 30px;
}
.movie-list__box {
  width: calc((100% - 60px) / 3);
  margin-right: 29px;
  padding-bottom: 30px;
    display: flex;
    flex-direction: column;
  align-items: center;
}
.thumbnail_wrapper a{
    display: block;
    position: relative;
    padding-top:75%;
    overflow: hidden;
}
.thumbnail_wrapper{
width: 100%;
     padding-bottom: 15px;
}
.thumbnail_list{
  width: 100%;
 padding-bottom: 10px;
position: absolute;
    top:0;
    left:0;
    
}
.movie-list__box:nth-child(3n) {
  margin-right: 0;
}
.adm-video__wrapper {
  background-color: #46d3e7;
  color: #fff;
}
.anchor-pb{
    padding-bottom: 60px;
}
.adm-video__wrapper .sectionHd3 .text1{
    color: #fff;
}
.adm-video__wrapper .sectionHd3 .text2{
    color: #fff;
}
.play-btn{
    width: 35px;
    top:50%;
    left:50%;
    position: absolute;
    transform: translateX(-50%);
}
.thumbnail-title{
    font-size: 1.5rem;
}
.thumbnail-txt{
    padding-top: 10px;
}
@media screen and (max-width: 600px) {
    .movie-list__box,
    .movie-list__box:nth-child(3n) {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    .thumbnail-txt{
        text-align: center;
    }
    .movie-list__box{
        width: 400px;
        margin: 0 auto;
    }
}
