@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: -apple-system, BlinkMacSystemFont, 'Roboto', "Helvetica Neue", "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif;*/
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #414141;
  font-size:15px;
  line-height:1.8;
  letter-spacing: .03em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ---------------------------------------------------------
    共通項目
----------------------------------------------------------*/

a {
  color: #0e8196;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn-area {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.sp-hidden{
	display: none !important;
}
.sp{
    display: block !important;
}
@media print, screen and (min-width: 960px) {
	.sp-hidden{
		display:block !important;
	}
	.sp{
		display:none !important;
	}
}
/* ---------------------------------------------------------
    レイアウト
----------------------------------------------------------*/

#content {
  padding: 0 20px;
}

@media print, screen and (min-width: 960px) {

  #content-2col {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
  }

  #primary {
    flex: 1;
    padding-right: 60px;
  }

  #secondary {
    width: 260px;
    position: relative;
  }

  #content {
    max-width: 1200px;
    margin: 0 auto;
  }

}

@media print, screen and (min-width: 1025px) {

  #content-2col {
    padding: 0;
  }

  #content {
    padding: 0;
  }

}

/* ---------------------------------------------------------
    フルスクリーンナビゲーション
----------------------------------------------------------*/

.fullnav {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  display:none;
  z-index: 100;
}

.fullnav-left {
  display: none;
}

.fullnav.on {
  opacity: 1;
  display: flex;
  overflow-y: scroll;
}

.fullnav-right {
  display: flex;
  min-height: 100%;
  opacity: 0;
  top: 0;
  width: 0;
}

.fullnav.on .fullnav-right {
  opacity: 1;
  width: 100%;
}

.fullnav-right-inner {
  padding: 0;
  width: 100%;
  background-color: #0e8196;
}

.fullnav-right-logo {
  background-color: #fff;
  height: 70px;
}

.fullnav-right-logo img {
  width: 240px;
  margin: 16px 0 0 10px;
}

.fullnav-right-title {
  display: none;
}

ul.gnav-menu {
  list-style: none;
  margin: 0;
  padding:0;
}

ul.gnav-menu li a {
  width: 100%;
  display: block;
  color: white;
  border-bottom: 1px solid #86B9C2;
  line-height: 50px;
  transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  opacity: 0;
  transform: translateX(-100px);
  padding: 0 20px;
}

ul.gnav-menu li:first-child a {
  transition-delay: .2s;
}

ul.gnav-menu li:nth-child(2) a {
  transition-delay: .3s;
}

ul.gnav-menu li:nth-child(3) a {
  transition-delay: .4s;
}

ul.gnav-menu li:nth-child(4) a {
  transition-delay: .5s;
}

ul.gnav-menu li:nth-child(5) a {
  transition-delay: .6s;
}

ul.gnav-menu li:nth-child(6) a {
  transition-delay: .7s;
}

ul.gnav-menu li:nth-child(7) a {
  transition-delay: .8s;
}

ul.gnav-menu li:nth-child(8) a {
  transition-delay: .9s;
}

ul.gnav-menu li:nth-child(9) a {
  transition-delay: 1s;
}

.fullnav.on ul.gnav-menu li a {
  opacity: 1;
  transform: translateX(0);
}

.fullnav-right-btn {
  opacity: 0;
  transform: translateY(100px);
  transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition-delay: .1s;
}

.fullnav.on .fullnav-right-btn {
  opacity: 1;
  transform: translateY(0);
  background-color: #0e8196;
  padding: 30px 0;
}

.fullnav-right-btn a {
  background: white;
  color: #0e8196;
  width: 85%;
  display: block;
  padding: .3em 1em;
  margin:0 auto;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  transition: .5s;
  border-radius: 2px;
}

.fullnav-right-btn a::after {
  content: '';
  position: absolute;
  right:20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-login-green.svg);
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height:18px;
}

.fullnav-right-btn span {
  font-size: .9rem;
  font-weight: 700;
  margin-left: 10px;
}

.fullnav-right-btn a:hover {
  background: #86b9c2;
}

ul.fullnav-right-link {
  list-style: none;
  display: table;
  width: 100%;
  margin: 0;
  padding:0;
  font-size:0;
  background: #0e8196;
}

ul.fullnav-right-link li {
  display: inline-block;
  position: relative;
  width: 50%;
}

ul.fullnav-right-link li a {
  padding-left: 15px;
  color: #0e8196;
  background-color: #ecf4f5;
  height: 70px;
  width: 400px;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  border: 0;
  font-size: .8rem;
}

ul.fullnav-right-link li:last-child a{
  background-color: #d9e8ea;
}

ul.fullnav-right-link li::after {
  content: '';
  position: absolute;
  right:15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-external.svg);
  background-repeat: no-repeat;
  width:18px;
  height:18px;
}

@media screen and (min-width:560px) {

  .fullnav-right-logo img {
    width: 300px;
    margin: 11px 0 0 15px;
  }

  .fullnav.on .fullnav-right-btn {
    padding: 50px 0;
  }

  .fullnav-right-btn a {
    width: 50%;
  }

  ul.fullnav-right-link {
    padding: 0 20px 20px;
  }

  ul.gnav-menu li a {
    line-height: 60px;
  }

}

@media print, screen and (min-width: 960px) {

  .fullnav {
    background-color: #0e8196;
  }

  .fullnav.on {
    -ms-overflow-style: none;
       scrollbar-width: none;
  }

  .fullnav.on::-webkit-scrollbar {
    display:none;
  }

  .fullnav-left {
    display: flex;
    min-height: 800px;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 0;
    transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-position: center center;
    background-image: url(/lib/common/img/photo-appearance.jpg);
    background-size: cover;
  }

  .fullnav-left img {
    width: 380px;
    height: 70px;
  }

  .fullnav-right {
    position: absolute;
    left: 60%;
    height: 100%;
    border-left: 6px solid #86B9C2;
    transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition-delay: .1s;
  }

  .fullnav-right-inner {
    padding: 20px;
  }

  .fullnav-right-logo {
    display: none;
  }

  .fullnav.on .fullnav-left {
    opacity: 1;
    width: 60%;
  }

  .fullnav.on .fullnav-right {
    width: 40%;
    margin-top:0;
  }

  .fullnav-right-title {
    display: block;
    color: #ecf4f5;
    transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition-delay: .1s;
    opacity: 0;
    transform: translateX(-100px);
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .fullnav.on .fullnav-right-title {
    transform: translateX(0);
    opacity: 1;
  }

  ul.gnav-menu li a {
    padding: 0;
  }

  ul.gnav-menu li:first-child a {
    border-top: 1px solid #86b9c2;
  }

  .fullnav-right-btn a {
    border-radius: 2px;
    width: 85%;
    padding: .5em 1em;
  }

  .fullnav-right-btn span {
    font-size: .9rem;
    margin-left: 10px;
  }

  ul.fullnav-right-link {
    display: none;
  }

}

@media screen and (min-width:1025px) {

  .fullnav-right {
    left: 70%;
  }

  .fullnav.on .fullnav-left {
    width: 70%;
  }

  .fullnav.on .fullnav-right {
    width: 30%;
  }

}

/* ---------------------------------------------------------
    header
----------------------------------------------------------*/

.head-top {
  display: flex;
  height: 70px;
  width: 100%;
  /*position: absolute;
  top: 0;
  right: 0;*/
  justify-content: space-between;
  background-color: white;
}

.head-logo img {
  max-width: 240px;
  margin: 16px 0 0 10px;
}

.head-nav-box {
  display: none;
}

.head-btn-area {
  display: flex;
}

ul.head-btn-link {
  display: none;
}

.head-nav-btn {
  background-color: #0e8196;
  width: 70px;
  height: 70px;
  text-align: center;
  position: fixed;
  top:0;
  right:0;
  transition: .3s;
  padding-top: 13px;
  z-index: 1000;
}

.head-nav-btn:hover {
  background-color: #86b9c2;
}

.head-nav-btn.active {
  background-color: #86b9c2;
}

.nav-btn-trigger,
.nav-btn-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.nav-btn-trigger {
  position: relative;
  width: 36px;
  height: 26px;
}

.nav-btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.nav-btn-trigger span:nth-of-type(1) {
  top: 0;
}

.nav-btn-trigger span:nth-of-type(2) {
  top: 12px;
}

.nav-btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.nav-btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}

.nav-btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.nav-btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

.nav-btn-trigger::after {
  content:'MENU';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: .6rem;
  font-family: 'Roboto', sans-serif;
}

.nav-btn-trigger.active::after {
  content:'CLOSE';
}

.head-slider {
  height: 320px;
}

.head-slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media screen and (min-width:560px) {

  .head-logo img {
    max-width: 300px;
    margin: 11px 0 0 15px;
  }

}

@media print, screen and (min-width: 960px) {

  .head-top {
    background: #0e8196;
  }

  .head-logo img {
    max-width: 380px;
    margin: 0;
    position: relative;
    z-index: 100;
  }

  ul.head-btn-link {
    list-style: none;
    display: table;
    margin: 0 70px 0 0;
    padding:0;
    position: relative;
    z-index: 100;
    font-size: 0;
  }

  ul.head-btn-link li {
    display: inline-block;
    position: relative;
  }

  ul.head-btn-link li a {
    padding-left: 15px;
    color: #0e8196;
    background-color: #ecf4f5;
    height: 70px;
    width:200px;
    display:  table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: .8rem;
    transition: .5s;
  }

  ul.head-btn-link li:last-child a,
  ul.head-btn-link li:first-child a{
    background-color: #d9e8ea;
  }

  ul.head-btn-link li a:hover,
  ul.head-btn-link li:last-child a:hover,
  ul.head-btn-link li:first-child a:hover {
    background: white;
  }

  ul.head-btn-link li::after {
    content: '';
    position: absolute;
    right:15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/lib/common/img/icon-external.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width:16px;
    height:16px;
  }

  .head-slider {
    height: 420px;
  }

  .head-slider img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  .head-nav-box {
    background-color: #0e8196;
    display: block;
  }

  ul.head-nav-list {
    list-style: none;
    padding: 0;
    margin:0 auto;
    font-size: 0;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
  }

  ul.head-nav-list li {
    width: calc( 100% / 6 - 1px);
    position: relative;
  }

  ul.head-nav-list li a {
    width: 100%;
    display: block;
    color: white;
    text-align: center;
    font-size: .9rem;
    letter-spacing: .08em;
    border-left: 1px solid #ecf4f5;
    background-color: #0e8196;
    padding: .8em 0;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
  }

  ul.head-nav-list li:last-child a {
    border-right: 1px solid #ecf4f5;
  }

  ul.head-nav-list li a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 5px;
    background-color:  #F17E69;
    transition: .3s;
  }

  ul.head-nav-list li a:hover::after {
    width: 100%;
  }

  ul.head-nav-list li.current::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 100%;
    height: 5px;
    background-color:  #F17E69;
  }

}

/* ---------------------------------------------------------
    footer
----------------------------------------------------------*/

.backtotop {
  background-color: #d9e8ea;
  text-align: center;
  padding: 12px 0;
}

.backtotop a {
  display: block;
  transition: ease-in-out .5s;
  position: relative;
}

.backtotop a::before {
  content: '';
  background: #0e8196;
  border: 3px solid #0e8196;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease-in-out .5s;
}

.backtotop a img {
  width:8px;
  z-index: 10;
  transform: rotate(-90deg);
  position: relative;
}

.backtotop a:hover::before {
  border: 3px solid #86b9c2;
}

#goto_top {
    position: fixed;
    right: 10px;
    bottom: 10px;
	z-index: 20;
}

#goto_top a {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #f17e69;
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
	padding-top:5px;
}
#goto_top a img{
	transform: rotate(-90deg);
	display: block;
	margin:0 auto;
}
@media print, screen and (min-width:960px) {

  .backtotop {
    padding: 15px 0;
  }
  #goto_top {
    right: 30px;
    bottom: 30px;
  }
  #goto_top a {
	background: #0e8196;
  }
}

.site-footer {
  margin-top: 40px;
}

.foot-wrap {
  background-color: #ecf4f5;
  padding: 20px 0 0;
}

.foot-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.foot-logo {
  order: 1;
  text-align: center;
}

.foot-logo img {
  width: 180px;
  margin: 30px 0 0;
}

.foot-sitemap {
  order: 3;
}

.foot-sitemap ul {
  list-style: none;
  padding: 0;
  font-size:0;
}

.foot-sitemap ul li {
  display: inline-block;
  width: calc(50% - 1px);
}

.foot-sitemap ul li a {
  display: block;
  border-top: 1px solid #dcdcdc;
  color: #414141;
  padding: .4em 1em;
  font-size:.7rem;
  white-space: nowrap;
}

.foot-sitemap ul li:nth-child(2n) {
  border-left: 1px solid #dcdcdc;
}

.foot-sitemap ul li:nth-child(n+7) {
  border-bottom: 1px solid #dcdcdc;
}

.foot-sitemap-sub {
  display: block;
}

.foot-campus {
  order: 2;
}

.foot-campus-frame {
  background: white;
  margin: 20px;
  padding: 5px;
  text-align: center;
}

.campus-name {
  font-size:1rem;
  font-weight: 700;
  margin: 0;
  position: relative;
}
.campus-name::after {
  content: '';
  position: absolute;
  right:15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/ico/icon-external.svg);
  background-repeat: no-repeat;
  width:18px;
  height:18px;
}
.campus-name a {
  display:block;
}

.campus-address {
  font-size: 0.85rem;
  margin: 0;
}

.campus-address span {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.btn-campus {
  display: block;
  background: #0e8196;
  text-align: center;
  font-size: .9rem;
  color: white;
  border-radius: 10px;
  border: 1px solid #0e8196;
  padding: 0;
  width: 90%;
  margin: 10px auto;
  font-weight: 700;
  transition: ease-in-out .3s;
}

.btn-campus:hover {
  background: white;
  color: #0e8196;
}


.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

ul.foot-bottom-link {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0:
}

ul.foot-bottom-link li {
  position: relative;
}

ul.foot-bottom-link li a {
  padding: .4em 1em;
  color: #414141;
  font-size: .7rem;
  display: block;
  background: white;
  border-bottom: 1px solid #dcdcdc;
}

ul.foot-bottom-link li::after {
  content: '';
  position: absolute;
  right:20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-external.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}

.copyright {
  font-size: .7rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

@media screen and (min-width:560px) {

  .foot-wrap {
    padding: 0;
  }

  .foot-campus {
    display: flex;
  }

  .foot-campus-frame {
    width: 50%;
	padding: 15px 20px;
	text-align: left;
  }

}

@media print, screen and (min-width: 960px) {

  .site-footer {
    margin-top: 60px;
  }

  .foot-wrap {
    padding: 40px 0 0;
  }

  .foot-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }

  .foot-logo img {
    width: 180px;
    margin: 0;
  }

  .foot-sitemap {
    order: 2;
    display: flex;
  }

  .foot-sitemap ul li {
    display: block;
    width: 200px;
    position: relative;
  }

  .foot-sitemap ul li a {
    border-top:none;
    padding: .4em 1.2em;
    font-size:.8rem;
    transition: .3s;
  }

  .foot-sitemap ul li a:hover {
    transform: translateX(5px);
    font-weight: 700;
  }

  .foot-sitemap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/lib/common/img/icon-arrow-pink.svg);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    width: 10px;
    height :10px;
  }

  .foot-sitemap ul li:nth-child(2n) {
    border-left: none;
  }

  .foot-sitemap ul li:nth-child(n+7) {
    border-bottom: none;
  }

  .foot-sitemap-sub {
    display: block;

  }

  .foot-campus-frame {
    margin: 0 10px 20px;
    min-width: 300px;
  }

  .foot-campus {
    order:3;
    display: flex;
	align-items: flrx-start;
  }
  .campus-name {
    font-size:1.1rem;
    font-weight: 700;
    margin: 15px 0;
  }
  .campus-address {
    font-size: 0.85rem;
	margin-bottom: 2rem;
  }
  .btn-campus {
    padding: .7em;
  }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  ul.foot-bottom-link {
    margin: 30px 0;
  }

  ul.foot-bottom-link li {
    position: relative;
    display: inline-block;
  }

  ul.foot-bottom-link li a {
    padding: 0 50px 0 15px;
    color: #414141;
    font-weight: 700;
    display: block;
    background: transparent;
    border-bottom: none;
    transition: .3s;
  }

  ul.foot-bottom-link li a:hover {
    transform: translateX(5px);
  }

  ul.foot-bottom-link li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/lib/common/img/icon-arrow-green.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 12px;
    background-size: 10px 12px;
  }

  ul.foot-bottom-link li::after {
    display: none;
  }

  .copyright {
    padding: 0;
    margin: 30px 0;
  }

}

@media screen and (min-width:1025px) {

  .foot-inner {
    padding: 0;
  }

  .foot-bottom {
    padding: 0;
  }

}


/* ---------------------------------------------------------
    side-トップページ用
----------------------------------------------------------*/

/* My Library */
.side-mylibrary {
  padding: 0 20px;
  margin-bottom: 40px;
}

.side-mylibrary a {
  width: 100%;
  display: block;
  background: #0e8196;
  padding: 1em 0 1.5em;
  text-align: center;
  color: white;
  border-radius: 7px;
  box-shadow: 0 5px 0px #86b9c2;
  transition: all .2s;
  position: relative;
  top: 0;
}

.side-mylibrary a:hover {
  top: 3px;
  box-shadow: 0 2px 0px #86b9c2;
  transition: all .2s;
}

.mylibrary-name {
  font-family: 'Roboto', sans-serif;
  font-size:1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 10px;
}

.mylibrary-login {
  border: 1px solid #fff;
  font-size: .9rem;
  padding: .2rem 0 .2rem 1em;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.mylibrary-login::before {
  content: '';
  position: absolute;
  left:15px;
  top:50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-login-white.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}

@media screen and (min-width:560px) {

  .side-mylibrary {
    padding: 0 150px;
    min-width: 260px;
  }

}

@media print, screen and (min-width: 960px) {

  .side-mylibrary {
    padding: 0;
  }

}

/*　カレンダー */
#calendarframe {
  width: 100%;
  height: 280px;
}

.side-calendar {
  padding: 0 20px 40px;
}

.side-calendar h2 {
  font-size: 1.3rem;
  font-weight: 700;
  border-left: 6px solid #0e8196;
  padding-left: 15px;
  margin: 60px 0 40px;
}

.calendar {
  width: 100%;
}

.month-header {
  display: flex;
  justify-content: space-between;
}

.month-header button {
  border: 0;
  background: #ECF4F5;
  width: 30px;
  height: 30px;
  text-align: center;
  transition: .5s;
  cursor: pointer;
}

.month-header button:hover {
  background: #d9e8ea;
}

.month-header .month-prev img,
.month-header .month-next img {
  width: 8px;
  vertical-align: middle;
}

.month-header .month-prev img {
  transform: rotate(180deg);
}

.month-header .calendar-caption {
  font-weight: 700;
  font-size: 1rem;
}

table.calendar {
  font-size:1.1rem;
  font-weight: 700;
  border-collapse: separate;
  border-spacing: revert;
}

table.calendar tr th {
  font-weight: 700;
  text-align: center;
  padding: 10px 0 2px;
  font-size:.8rem;
}

table.calendar tr td {
  text-align: center;
  background: #ffffff;
  padding: 2px 0;
}

.calendar tr td.prev-month,
.calendar tr td.next-month {
  background: #ecf4f5;
  color: #d3d3d3;
}

.calendar tr td.open2 {
  background: #F4E477;
}

.calendar tr td.open3 {
  background: #B0C4DE;
}

.calendar tr td.open4 {
  background: #B2F4B2;
}

.calendar tr td.open5 {
  background: #F7AF6C;
}

.calendar tr td.open6 {
  background: #72D0FF;
}

.calendar tr td.close0 {
  background: #F5B2B2;
}

ul.calendar-openhour {
  list-style: none;
  padding: 0;
  font-size:0;
  margin: 10px 0 20px;
}

ul.calendar-openhour li {
  display: inline-block;
  width:49%;
  font-size:.75rem;
  position: relative;
  padding-left: 20px;
}
ul.calendar-openhour li.open4,
ul.calendar-openhour li.open5,
ul.calendar-openhour li.open6 {
  width:99%;
}
ul.calendar-openhour li::before {
  content: '';
  position: absolute;
  top:3px;
  left:0;
  /*background: #D9E8EA;*/
  background: #fafafa;
  width: 15px;
  height: 15px;
}

ul.calendar-openhour li.open2::before {
  background: #F4E477;
}

ul.calendar-openhour li.open3::before {
  background: #B0C4DE;
}

ul.calendar-openhour li.close0::before {
  background: #F5B2B2;
}

ul.calendar-openhour li.open4::before {
  background: #B2F4B2;
}

ul.calendar-openhour li.open5::before {
  background: #F7AF6C;
}

ul.calendar-openhour li.open6::before {
  background: #72D0FF;
}
.calendar-year {
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid #dcdcdc;
  color: #414141;
  font-size: .8rem;
  padding: 3px;
  transition: .5s;
}

.calendar-year:hover {
  color: white;
  background: #a9a9a9;
  border: 1px solid #a9a9a9;
}

@media screen and (min-width:560px) {

  .side-calendar {
    padding: 0 150px 60px;
    min-width: 260px;
  }

}

@media print, screen and (min-width:960px) {

  .side-calendar {
    padding: 0 0 40px;
  }

}

/* バナー */
.side-banner {
  padding: 0 10px;
}

.side-banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.side-banner ul li {
  display: inline-block;
  padding:0;
  margin: 0;
  width: calc(50% - 6px);
  margin-bottom: 10px;
}

.side-banner ul li:nth-child(2n) {
  margin-left: 10px;
}

.side-banner ul li a {
  transition: 0.3s;
}

.side-banner ul li a:hover {
  opacity: .7;
}

@media screen and (min-width:560px) {

  .side-banner {
    padding: 0 20px;
  }

  .side-banner ul li {
    width: calc(50% - 11px);
    margin-bottom: 20px;
  }

  .side-banner ul li:nth-child(2n) {
    margin-left: 20px;
  }

}

@media print, screen and (min-width: 960px) {

  .side-banner {
    padding: 0;
  }

  .side-banner ul li {
    display: block;
    margin: 0 0 20px;;
    width: 100%;
  }

  .side-banner ul li:nth-child(2n) {
    margin-left: 0;
  }

}


/* ---------------------------------------------------------
    トップページ
----------------------------------------------------------*/

.top-content {
  padding: 40px 0 0;
}

/* 検索 */
ul.search-title {
  list-style: none;
  margin: 0;
  padding:0;
  display: flex;
  justify-content: space-between;
}

ul.search-title li {
  width: calc(50% - 10px);
  text-align: center;
  font-size:.95rem;
  font-weight: 700;
  padding: .5em 0;
  border-radius: 10px 10px 0 0;
}

ul.search-title li:first-child {
  background-color: #0e8196;
  color:white;
  margin: 0 5px 0 10px;
}

ul.search-title li:last-child {
  background-color: #d9e8ea;
  color: #0e8196;
  margin: 0 10px 0 5px;
}

ul.search-title li span {
  display: block;
  font-size: .75rem;
  font-family: 'Roboto', sans-serif;
  margin-top: 0;
}

.top-search-form {
  background-color: #0e8196;
  padding: 20px;
}

.search-form {
  width: 100%;
  position: relative;
  margin: 0;
}

.search-form input[type="search"] {
  border: 0;
  background: #fff;
  border-radius: 0;
  padding: 12px;
  width: 100%;
  margin-bottom: 0;
  box-sizing: border-box;
  height: 3em;
}

#search-submit {
  margin:0;
  position: absolute;
  right:10px;
  bottom:10px;
  width: 22px;
  height: 22px;
}

.top-search-form p {
  color: white;
  font-size: .9rem;
  line-height: 1.6;
}

.top-search-option {
  padding: 20px 0 0;
  text-align: right;
}

.btn-search-option {
  background: #d9e8ea;
  font-size:.75rem;
  padding: .3em .6rem;
  font-weight: 700;
  border-radius: 3px;
  transition: .5s;
}

.btn-search-option:hover {
  background-color: white;
}

@media screen and (min-width:560px) {

  ul.search-title li {
    padding: .6em 0;
    font-size: 1.1rem;
  }

  ul.search-title li span {
    display: inline-block;
    font-size: .95rem;
    margin: 0;
  }

}


@media print, screen and (min-width: 960px) {

  .top-content {
    padding: 60px 0 0;
  }

  ul.search-title {
    display: flex;
    justify-content: space-between;
  }

  ul.search-title li {
    width: calc(50% - 10px);
    font-size: 1.3rem;
    padding: .6em 0;
  }

  ul.search-title li span {
    display: inline-block;
    font-size: .95rem;
    margin: 0;
  }

  ul.search-title li:first-child {
    margin: 0 10px 0 0;
  }

  ul.search-title li:last-child {
    margin: 0 0 0 10px;
  }

  .top-search-form {
    padding: 30px 60px;
  }

}

/* スライダー */

.swiper-container {
  width: 100%;
  height: 320px;
  background: white;
}

.swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.swiper-pagination-bullet {
  background: #f3f3f3;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #1EA821;
}

@media print, screen and (min-width: 560px) {
  #slide-area {
    background: white;
    height: 420px;
  }

  .swiper-container {
    height: 420px;
    padding: 0;
  }

  .swiper-slide img {
    height: 420px;
  }

}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23145374'%2F%3E%3C%2Fsvg%3E"); /* 矢印の色変更 */
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23145374'%2F%3E%3C%2Fsvg%3E"); /* 矢印の色変更 */
}

/* お知らせ */
.top-news-area {
  padding: 0 20px;
}

.top-news-area h2 {
  font-size: 1.3rem;
  font-weight: 700;
  border-left: 6px solid #0e8196;
  padding-left: 15px;
  margin: 80px 0 40px;
  position: relative;
}

.tab-item {
  /*color: #0e8196;
  border: 1px solid #0e8196;*/
  color: #fff;
  font-size: .75rem;
  cursor: pointer;
  padding: 5px 8px;
  transition: .5s;
  display: inline-block;
  margin-bottom: 5px;
  width: 49%;
  text-align: center;
}
.tab-item.all {
  border: 1px solid #0e8196;
  background-color: #0e8196;
}
.tab-item.news {
  border: 1px solid #f17e69;
  background-color: #f17e69;
}
.tab-item.gallery {
  border: 1px solid #A5CEEE;
  background-color: #A5CEEE;
}
.tab-item.supporter {
  border: 1px solid #E6B422;
  background-color: #E6B422;
}
.tab-item.reccomend {
  border: 1px solid #895B8A;
  background-color: #895B8A;
}
.tab-item.work {
  border: 1px solid #E7BAC4;
  background-color: #E7BAC4;
}
.tab-item.recognize {
  border: 1px solid #4F9FDD;
  background-color: #4F9FDD;
}
.tab-item.english {
  border: 1px solid #92CC7F;
  background-color: #92CC7F;
}
.tab-item:hover {
  /*background-color: #0e8196;
  color: #fff;*/
  opacity: 0.7;
}

input[name="tab-item"] {
  display: none;
}

.tab-content {
  display: none;
  padding: 20px 0 80px;
}

#all:checked ~ #all-content,
#news:checked ~ #news-content,
#gallery:checked ~ #gallery-content,
#supporter:checked ~ #supporter-content,
#reccomend:checked ~ #reccomend-content,
#work:checked ~ #work-content,
#recognize:checked ~ #recognize-content,
#english:checked ~ #english-content{
  display: block;
}

.top-news-tabs input:checked + .tab-item {
  /*background-color: #0e8196;
  color: #fff;*/
}

ul.top-news-list {
  list-style: none;
  padding:0;
  margin: 0;
  height: 300px;
  overflow-y: scroll;
}
ul.top-news-list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #414141;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px 0;
  transition: .3s;
}


ul.top-news-list li a:hover {
  background: #ecf4f5;
}

ul.top-news-list li:first-child {
  border-top : 1px solid #dcdcdc;
}

.top-news-list-date {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  width: 100px;
}

.top-news-list-category {
  font-size: .75rem;
  background-color: #595857;
  color: white;
  width: 140px;
  text-align: center;
  height:20px;
  line-height: 20px;
}

.top-news-list-title {
  margin: 10px 0 0;
  width: 100%;
  font-size:.9rem;
  line-height: 1.6;
}

.category-news {
  background-color: #f17e69;
}

.category-supporter {
  background-color: #E6B422;
}

.category-gallery {
  background-color: #A5CEEE;
}

.category-reccomend {
  background-color: #895B8A;
}

.category-work {
  background-color: #E7BAC4;
}

.category-english {
  background-color: #92CC7F;
}

.category-recognize {
  background-color: #4F9FDD;
}

.news-btn-area {
  text-align: right;
}

.btn-top-news {
  background: #0e8196;
  padding: .7em 1em;
  text-align: left;
  color: white;
  border-radius: 7px;
  box-shadow: 0 4px 0px #86b9c2;
  font-size: .85rem;
  display: inline-block;
  transition: all .2s;
  position: relative;
  top: 0;
  width: 180px;
  margin-top: 20px;
}

.btn-top-news::after {
  content: '';
  position: absolute;
  right:10px;
  top: 50%;
  transform: translateY(-50%);
  background-image:url(/lib/common/img/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 8px 12px;
  width: 8px;
  height: 12px;
}

.btn-top-news:hover {
  top: 3px;
  box-shadow: 0 2px 0px #86b9c2;
  transition: all .2s;
  color: white;
}

@media print, screen and (min-width: 960px) {

  .top-news-area {
    padding: 0
  }

  .top-news-area h2 {
    font-size: 1.5rem;
    padding-left: 18px;
  }

  .tab-item {
    font-size: .85rem;
    padding: 6px 12px;
    transition: .5s;
    margin-bottom: 5px;
    width: 16%;
    text-align: center;
  }

  ul.top-news-list li a {
    flex-wrap: nowrap;
  }

  .top-news-list-title {
    margin: 0 0 0 30px;
    flex: 1;
    font-size:1rem;
  }
  .top-news-list-title span.attention {
    font-size: 77%;
	font-weight: bold;
	color: white;
	padding: 2px 7px;
	margin: 0 5px 0 0;
	background: crimson;
	vertical-align: text-bottom;
	border-radius: 4px;
  }
}

/* メニュー */
.top-menu-area {
  padding: 0 20px 40px;
}

ul.top-menu-list {
  list-style: none;
  padding: 0;
  font-size:0;
}

ul.top-menu-list li a {
  border: 3px solid #0e8196;
  display: flex;
  flex-direction: column;
  background: white;
  align-items: center;
  color: #0e8196;
  margin-bottom: 20px;
  white-space: nowrap;
}

ul.top-menu-list li a::before,
ul.top-menu-list li a::after {
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  z-index: 2;
  content: '';
  transition: all .5s;
}

ul.top-menu-list li a::before {
  border-top: 3px solid #86B9C2;
  border-bottom: 3px solid #86B9C2;
  transform: scale(0, 1);
}

ul.top-menu-list li a::after {
  border-right: 3px solid #86B9C2;
  border-left: 3px solid #86B9C2;
  transform: scale(1, 0);
}

ul.top-menu-list li a:hover::after,
ul.top-menu-list li a:hover::before {
  transform: scale(1);
}

.top-menu-img img {
  width: 50px;
  margin: 20px 0 10px;
}

.top-menu-ttl p {
  position: relative;
  font-size:1rem;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: .1em;
}

@media screen and (min-width: 560px) {

  .top-menu-area {
    padding: 0 20px 40px;
  }

  ul.top-menu-list {
    display: flex;
    justify-content: space-between;
  }

  ul.top-menu-list li {
    margin-right: 20px;
    width: calc(33.3333% - 20px);
  }

  ul.top-menu-list li:last-child {
    margin-right: 0;
  }

  ul.top-menu-list li a {
    flex-direction: column;
    padding: 20px;
    transition: .5s;
    position: relative;
  }

  .top-menu-img img {
    width: 50px;
    margin: 0 0 20px;
  }

  .top-menu-ttl p {
    margin: 0;
  }

}

@media screen and (min-width: 960px) {

  .top-menu-ttl p {
    font-size:.9rem;
  }

  .top-menu-area {
    padding: 0;
  }

}

@media print, screen and (min-width: 1025px) {

  .top-menu-ttl p {
    font-size:1.1rem;
  }

}

/* よむけん */
.top-chara-wrap {
  max-width: 1200px;
  padding: 40px 20px;
  margin: 40px auto 0;
}

.top-chara-inner {
  display: flex;
  flex-direction: column;
}

.top-chara-image {
  text-align: center;
  margin-bottom: 40px;
  order:1;
  position: relative;
}

.top-chara-image::after {
  content: '';
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background-color: #ecf4f5;
  border-radius: 50%;
  z-index: -1;
}

.top-chara-image img {
  width: 260px;
}

.top-chara-profile {
  flex-grow: 1;
  padding: 10px 15px;
  order:2;
  position: relative;
  background: #ecf4f5;
  background: -moz-linear-gradient(top, #ecf4f5, #fff);
  background: -webkit-linear-gradient(top, #ecf4f5, #fff);
  background: linear-gradient(to bottom, #ecf4f5, #fff);
}

.top-chara-profile h2 {
  font-size:1.8rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 20px;
  position: absolute;
  left:15px;
  top:-25px;
  color: #0e8196;
  line-height: 1.8;
}

.top-chara-name {
  font-size:1.6rem;
  font-weight: 700;
}

.top-chara-name span {
  display: block;
  margin-bottom: 10px;
  font-size:.9rem;
}

@media screen and (min-width:560px) {

  .top-chara-wrap {
    padding: 0 20px;
    margin: 60px auto 80px;
   }

  .top-chara-inner {
    flex-direction: row;
  }

  .top-chara-image {
    margin:0 0 0 60px;
    width: 200px;
  }

  .top-chara-image::after {
    width: 200px;
    height: 200px;
  }

  .top-chara-image {
    order: 2;
  }

  .top-chara-profile {
    order: 1;
    padding: 20px;
    background: #ecf4f5;
    background: -moz-linear-gradient(left, #ecf4f5, #fff);
    background: -webkit-linear-gradient(left, #ecf4f5, #fff);
    background: linear-gradient(to right, #ecf4f5, #fff);
  }

  .top-chara-profile h2 {
    font-size:2.3rem;
    letter-spacing: 3px;
    margin: 0 0 20px;
    left:20px;
    top:-35px;
  }

}

@media screen and (min-width:960px) {

   .top-chara-image {
     width: 260px;
   }

   .top-chara-image::after {
     width: 260px;
     height: 260px;
   }

}

@media print, screen and (min-width:1025px) {

  .top-chara-wrap {
    padding: 40px 0;
    margin: 40px auto 80px;
   }

   .top-chara-profile h2 {
     font-size:2.3rem;
     letter-spacing: 3px;
     margin: 0 0 20px;
     left:30px;
     top:-35px;
   }

   .top-chara-profile {
     border-radius: 0;
     padding: 20px 30px;
   }

}
/* ---------------------------------------------------------
    カテゴリページ
----------------------------------------------------------*/

.page-content {
  position: relative;
}

.page-content::after {
  content: '';
  position: absolute;
  top:0;
  left:0;
  background-color: #ecf4f5;
  width: 100%;
  height: 80px;
  z-index: -1;
}

/* タイトル */
.head-title-area {
  height: 150px;
  position: relative;
}

.head-title-area img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.head-title-area h2 {
  font-size: 1.1rem;
  margin: 0;
  padding: .1em .6em;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
  color: white;
  background: #0e8196;
  box-shadow: 5px 5px 0px #f17e69;
}

@media screen and (min-width:560px) {

  .page-content::after {
    height:110px;
  }

}


@media print, screen and (min-width: 960px) {

  .page-content::after {
    height: 150px;
  }

  .head-title-area {
    height: 300px;
  }

  .head-title-area img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .head-title-area h2 {
    font-size:1.4rem;
    padding: .2em .8em;
    color: #0e8196;
    background: white;
    box-shadow: 5px 5px 0px #86b9c2;
  }

}


/* パンくず */
.breadcrumb {
  padding: 8px 20px;
  border-bottom: 1px solid #ecf4f5;
}

.bread-inner {
  max-width: 1200px;
  margin: 0 auto;
}

ul.bread-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.2;
}

ul.bread-list li {
  display: inline;
  font-size:.7rem;
  position: relative;
  margin-right: 5px;
  padding-left: 18px;

}

ul.bread-list li:nth-child(n+2)::before{
  content: '';
  position: absolute;
  left: 0;
  top:4px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #86b9c2;
  border-right: 2px solid #86b9c2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

ul.bread-list li:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-home-green.svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
}

@media print, screen and (min-width: 960px) {

  .breadcrumb {
    padding: 10px 20px;
  }

}

/* カテゴリートップ */
.category-area {
  padding: 20px 0;
}

ul.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}

ul.category-list li a {
  display: block;
  background: #ecf4f5;
  margin-bottom: 20px;
  padding: 1.5em 1em;
  font-weight: 600;
  position: relative;
  transition: .5s;
  font-size:1.1rem;
}

ul.category-list li a::before {
  content:'';
  background-color: #d9e8ea;
  position: absolute;
  left:0;
  bottom: 0;
  width:100%;
  height: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .5s;
}

ul.category-list li a:hover::before {
  transform: scale(1, 1);
}

ul.category-list li a::after {
  content: '';
  position: absolute;
  right:20px;
  top:50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: 10px 16px;
  width: 10px;
  height: 16px;
}

ul.category-list li a.outside::after {
  background-image: url(/lib/common/img/icon-external.svg);
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
}

ul.category-list li a span {
  font-size: .8rem;
}

@media print, screen and (min-width: 560px) {

  .category-area {
    padding:20px 0;
  }

  ul.category-list li {
    display: inline-block;
    width: calc(50% - 11px);
  }

  ul.category-list li:nth-child(2n) {
    margin-left: 20px;
  }

  ul.category-list li a {
    padding: 2em 1.5em;
  }

}

@media print, screen (min-width:960px) {

  .category-area {
    padding:40px 0;
  }

}


/* ---------------------------------------------------------
    下層ページ
----------------------------------------------------------*/

/* ページタイトル */
.page-title-area {
  padding:25px 0;
}

.page-title-area h3 {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 5px solid #0e8196;
  padding-left: 15px;

}

@media screen and (min-width:560px) {

  .page-title-area {
    padding: 40px 0;
  }

}

@media print, screen and (min-width: 960px) {

  .page-title-area {
    padding: 50px 0;
    margin-bottom: 60px;
  }

  .page-title-area h3 {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

}

/* サイドナビ */
.side-nav-area {
  padding: 0 20px;
  width: 100%;
}

.side-nav-box {
  width: 100%;
  border: 1px solid #0e8196;
  margin-bottom: 40px;
}

.side-nav-ttl {
  height: 60px;
  background: #0e8196;
  position: relative;
}

.side-nav-ttl span {
  color: white;
  font-weight: 700;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}

ul.side-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.side-nav li a {
  display: block;
  border-bottom: 1px solid #d9e8ea;
  padding: .8em 1em;
  transition: .2s;
  position: relative;
}

ul.side-nav li a:after {
  content: '';
  position: absolute;
  right:12px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-arrow-pink.svg);
  background-repeat: no-repeat;
  background-size: 9px 9px;
  width: 9px;
  height: 9px;
}

ul.side-nav li:last-child a{
  border-bottom: none;
}

ul.side-nav li a.current {
  border-left: 5px solid #f17e69;
}

ul.side-nav li a:hover {
  background: #ecf4f5;
  font-weight: 700;
}

@media print, screen and (min-width:960px) {

  .page-content .side-nav-area {
    padding: 0;
    margin-top: 90px;
  }

  .side-nav-area {
    padding: 0;
    width: 100%;
  }

}

/* ページ内リンク */

.contents-anchor {
  margin: 30px 0 20px;
}

.contents-anchor ul {
  list-style: none;
  padding:0;
  margin: 0;
  font-size: 0;
}

.contents-anchor ul li {
  display: inline-block;
  margin: 0 10px 20px 0;
}

.contents-anchor ul li a {
  font-size: .8rem;
  background: #ecf4f5;
  color: #414141;
  padding: .6em 1em .6em 2.2em;
  position: relative;
  transition: .5s;
}

.contents-anchor ul li a::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 13px;
  transform: rotate(90deg);
  background-image: url(/lib/common/img/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
}

.contents-anchor ul li a:hover {
  background-color: #d9e8ea;
}

@media print, screen and (min-width: 960px) {

  .contents-anchor {
    margin: 0 0 40px;
  }

  .contents-anchor ul li a {
    font-size: .9rem;
  }

}

/* コンテンツ */
.contents-body {
  padding: 0 20px;
}

.contents-body h1 {
  background: #ecf4f5;
  font-size: 1.1rem;
  padding: .5em 1em .3em;
  border-bottom: 5px solid #d9e8ea;
  letter-spacing: 2px;
  margin: 0 0 30px;
}

.contents-body h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-left: 5px solid #0e8196;
  padding-left: .8em;
  margin: 30px 0 20px;
}

.contents-part {
  margin: 0 0 60px;
}

.contents-part a {
  position: relative;
}

.contents-part a::after{
  content: '';
  position: absolute;
  left:0;
  bottom:-2px;
  width: 100%;
  height: 1px;
  background:  #0e8196;
}

.contents-part a:hover {
  font-weight: 700;
}

.contents-part ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents-part ul li {
  position: relative;
  padding-left: 1.2em;
}

.contents-part ul li::before {
  content:'';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 3px solid #86b9c2;
  border-radius: 100%;
}

.contents-part ol {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
}

.contents-part ol li {
  position: relative;
  padding-left: 1.7em;
}

.contents-part ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top:4px;
  left:0;
  background-color: #86b9c2;
  color: #fff;
  font-size: .7rem;
  line-height: 18px;
  text-align: center;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}

.contents-part strong {
  font-weight: 700;
  color: #f17e69;
}

@media print, screen and (min-width: 960px) {

  .contents-body {
    padding: 0;
  }

}

/* コンテンツ内テーブル */
.tbl-wrap {
  overflow-x: scroll;
  padding: 0 0 15px;
}

.tbl-wrap::-webkit-scrollbar {
  height: 8px;
}

.tbl-wrap::-webkit-scrollbar-track {
  margin: 0 2px;
  background: #e6e6e6;
  border-radius: 5px;
}

.tbl-wrap::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #0e8196;
}

.tbl-common {
  min-width: 680px;
  border-collapse: collapse;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.tbl-common th,
.tbl-common td {
  font-size: .85rem;
  padding: .5em .8em;
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.tbl-common th{
  background-color: #ecf4f5;
  text-align: left;
}

.tbl-common td {
}

.tbl-it th,
.tbl-it td {
  width: 25%;
}

.tbl-it tr:first-child th {
  text-align: center;
}

.tbl-hour {
  min-width: 500px;
}

.tbl-hour th {
  width: 150px;
}
.contents-body .tablelayout{
	width: 100%;
    display: block;
    overflow: auto;
}
.contents-body .tbl-layout .tbl-common{
	min-width:auto;
}
@media screen and (min-width: 680px) {

  .tbl-wrap {
    overflow-x: hidden;
  }

  .tbl-common {
    margin: 0 auto;
  }

  .tbl-wrap::-webkit-scrollbar {
    height: 0;
  }

}

@media print, screen and (min-width: 960px) {

  .tbl-common {
    width: 100%;
  }

  .tbl-common th,
  .tbl-common td {
    font-size: .9rem;
  }

  .tbl-hour th,
  .tbl-hour td {
    font-size: .9rem;
  }

}

/* コンテンツ3カラム表示 */

.block_col3 {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.block_col3 > div{
	width: 100%;
	text-align:center;
}
.block_col3 > div p.ttl{
	padding:0 1em;
}

@media screen and (min-width:560px) {
  .block_col3 > div{
	width: 50%;
  }
}
@media print, screen and (min-width: 960px) {
  .block_col3 > div{
	width: 33.33333%;
  }
}

/* ---------------------------------------------------------
    お知らせ一覧ページ
----------------------------------------------------------*/

ul.news-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  font-size:0;
}

ul.news-list li {
  position: relative;
  margin-bottom: 40px;
}

ul.news-list li a {
  display: block;
}

.news-list-thmb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-list-category {
  position: absolute;
  top: 0;
  left: 0;
  font-size:.7rem;
  color: white;
  text-align: center;
  width: 140px;
}

.news-list-category a {
  color: white !important;
}

.news-list-date {
  font-family: 'Roboto', sans-serif;
  font-size: .8rem;
  color: #414141;
  font-weight: 700;
  margin: 10px 0 0;
}
.news-list-date span.attention {
    font-size: 77%;
	font-weight: bold;
	color: white;
	padding: 2px 7px;
	margin: 0 5px 0 0;
	background: crimson;
	vertical-align: text-bottom;
	border-radius: 4px;
}
.news-list-title {
  color: #414141;
  font-size: .85rem;
  margin: 10px 0 0;
}

ul.news-list li a:hover .news-list-title {
  text-decoration: underline;
}

@media screen and (min-width:560px) {

  ul.news-list {
    display: flex;
    flex-wrap: wrap;
  }

  ul.news-list li {
    width: calc(50% - 20px);
    margin-right: 40px;
  }

  ul.news-list li:nth-child(2n) {
    margin-right: 0;
  }

}

@media print, screen and (min-width:1025px) {


  ul.news-list li {
    width: calc( 33.333% - 20px);
    margin-right: 30px;
  }

  ul.news-list li:nth-child(2n) {
    margin-right: 20px;
  }

  ul.news-list li:nth-child(3n) {
    margin-right: 0;
  }

}

/* PC用pagination */
.pagination {
  text-align: center;
}

ul.page-numbers {
  list-style: none;
  margin: 40px 0 60px;
  padding: 0;
}

.page-numbers li {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: .8rem;
}

.page-numbers li a {
  display: block;
  background-color: #ecf4f5;
  transition: .3s;
  padding: 8px 16px;
}

.page-numbers li a:hover {
  background-color: #d9e8ea;
}

.page-numbers li span.current {
  display: block;
  background-color: #0e8196;
  color:white;
  padding: 8px 16px;
}

.page-numbers li a.prev,
.page-numbers li a.next {
  display: inline-block;
  background: #d9e8ea;
}

.page-numbers li a.prev > img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}


/* ---------------------------------------------------------
    投稿ページ
----------------------------------------------------------*/

.entry-content {
  padding: 0;
}

.entry-box {
  padding: 20px;
}

.entry-date {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: .9rem;
}

.entry-title {
  font-size: 1.2rem;
  position: relative;
  margin: 15px 0 50px;
}

.entry-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  background-color: #86b9c2;
  width: 20%;
  height: 3px;
}

.entry-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  background-color: #d9e8ea;
  width: 100%;
  height: 3px;
  z-index: -1;
}

.entry-body p {
  margin: 0 0 20px;
}

.entry-body a {
  position: relative;
}

.entry-body a::after{
  content: '';
  position: absolute;
  left:0;
  bottom:-2px;
  width: 100%;
  height: 1px;
  background:  #0e8196;
}

.entry-body a:hover {
  font-weight: 700;
}

.entry-body h2 {
  font-size: 1.1rem;
  margin: 40px 0 20px;
  padding: .2em .6em;
  background:#ecf4f5;
  border-bottom: 2px solid #d9e8ea;
}


@media print, screen and (min-width:960px) {

  .entry-content {
    padding: 50px 0 0;
  }

  .entry-box {
    padding: 0;
  }

  .entry-title {
    font-size: 1.3rem;
    margin: 15px 0 60px;
  }

}


/* ---------------------------------------------------------
    下層ページ 幅広
----------------------------------------------------------*/

.detail-body {
  padding: 20px 0;
}

.detail-anchor {
  padding: 0 0 40px;
}

.detail-anchor ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-anchor ul li {
  margin: 0 0 10px 0;
  padding: 0 0 0 1.3em;
}

.detail-anchor ul li a {
  font-size: .9rem;
  color: #414141;
  position: relative;
  transition: .3s;
  font-weight: 700;
}

.detail-anchor ul li a::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 3px;
  transform: rotate(90deg);
  background-image: url(/lib/common/img/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: 11px 11px;
  width: 11px;
  height: 11px;
}

.detail-anchor ul li a:hover {
  color: #0e8196;
  text-decoration: underline;
}

.detail-box {
  margin: 0 0 80px;
}

.detail-category h1 {
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  padding: 30px 0 20px;
  background:none;
  border:none;
}

.detail-category h1::before {
  content: '';
  position: absolute;
  left:0;
  top:0;
  width:30%;
  height: 5px;
  background: #86b9c2;
}

.detail-category h1::after {
  content: '';
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height: 5px;
  background: #d9e8ea;
  z-index: -1;
}

.detail-contents h2 {
  font-size: .95rem;
  font-weight: 700;
  border-left: 5px solid #d9e8ea;
  background: #ECF4F5;
  padding: .3em .8em;
  margin: 30px 0 20px;
}

.detail-contents p {
  margin: 0 0 10px;
}

@media print, screen and (min-width:960px) {

  .detail-anchor {
    padding: 0 0 60px;
  }

  .detail-anchor ul li a {
    font-size: .95rem;
  }

  .detail-box {
    display: flex;
    margin: 0 0 80px;
  }

  .detail-category {
    width: 300px;
    padding: 0 40px 0 0;
  }

  .detail-category h1 {
    padding: 25px 0 20px;
  }

  .detail-contents {
    flex: 1;
    border-left: 1px solid #dcdcdc;
    padding: 0 0 0 40px;
  }

}

@media print, screen and (min-width:1025px) {

  .detail-body {
    padding: 0;
  }

}


/* ---------------------------------------------------------
    サイトマップ
----------------------------------------------------------*/
.sitemap-area {
  padding: 20px 0;
}

.sitemap-area a {
  color: #414141;
}

.sitemap-area a:hover {
  font-weight: 700;
}


ul.sitemap-list {
  list-style: none;
  padding:0;
  margin: 0 0 40px;
}

ul.sitemap-list li {
  position: relative;
  font-size: .9rem;
}

ul.sitemap-list li:first-child {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

ul.sitemap-list li:first-child::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left:0;
  width: 30%;
  height: 2px;
  background-color: #86b9c2;
}

ul.sitemap-list li:first-child::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left:0;
  width: 100%;
  height: 2px;
  background-color: #d9e8ea;
  z-index: -1;
}

ul.sitemap-list li:nth-child(n+2) {
  padding-left: 1em;
  margin-bottom: 2px;
}

ul.sitemap-list li:nth-child(n+2)::before {
  content: '';
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  background-image: url(/lib/common/img/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  width: 8px;
  height: 8px;
}

@media screen and (min-width:560px) {

  .sitemap-area {
    padding: 30px 0 40px;
    display: flex;
    flex-wrap: wrap;
  }

  .sitemap-area ul:nth-child(2n) {
    margin-right: 0;
  }

  ul.sitemap-list {
    width: calc(50% - 15px);
    margin-right: 30px;
  }

}

@media print, screen and (min-width:960px) {

  .sitemap-area {
    padding: 20px 0 40px;
  }

  ul.sitemap-list {
    width: calc(33.3333% - 30px);
    margin-right: 40px;
  }

  .sitemap-area ul:nth-child(2n) {
    margin-right: 40px;
  }

  .sitemap-area ul:nth-child(3n) {
    margin-right: 0;
  }

}

/* ---------------------------------------------------------
    アクセス
----------------------------------------------------------*/

.access-area {
  padding: 20px;
}

.googleMap {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p.txt-train {
  font-size: .8rem;
  color: #0e8196;
  font-weight: 700;
  margin: 10px 0 40px;
}

p.txt-bus {
  font-size: .8rem;
  color: #f17e69;
  font-weight: 700;
  margin: 10px 0 0;
}

@media screen and (min-width:560px) {

  .googleMap {
    padding-top: 33.333%;
  }

  .campus-map {
    text-align: center;
  }

  .campus-map img {
    max-width: 500px;
  }

}

@media print, screen and (min-width:960px) {

  .access-area {
    padding: 20px;
  }

  p.txt-train {
    font-size: 1rem;
    margin: 10px 0 60px;
  }

  p.txt-bus {
    font-size: 1rem;
    margin: 10px 0 0;
  }

}

@media print, screen and (min-width:1025px) {

  .access-area {
    padding: 40px 0;
  }

}


/* ---------------------------------------------------------
    よくある質問
----------------------------------------------------------*/

dl.faq-list {
  margin: 0;
}

.faq-list dt {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid #dcdcdc;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}

.faq-list dt::after {
  content: '+';
  position: absolute;
  font-size: 1.4rem;
  right:0;
  top: 16px;
  color: #0e8196;
  transition: .3s;
}

.faq-list dt.open::after {
  transform: rotate(135deg);
}

.faq-list dt:nth-last-child(2) {
  border-bottom: 1px solid #dcdcdc;
}

.faq-list dt.open:nth-last-child(2) {
  border-bottom: 0;
}

.faq-list dt span {
  color: #0e8196;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  display: block;
}

.faq-list dd {
  display: none;
  padding: 0 0 30px;
  margin: 0;
  font-size:.85rem;
}

.faq-list dd:last-child {
  border-bottom: 1px solid #dcdcdc;
}

@media print, screen and (min-width:960px) {


  .faq-list dt {
    padding: 20px 40px 20px 0;
    font-size: 1rem;
  }

  .faq-list dt span {
    font-size: 1.2rem;
    margin: 0 10px 0 0;
    display: inline;
  }

  .faq-list dd {
    font-size:.95rem;
  }

}


/* ---------------------------------------------------------
    お問い合わせ
----------------------------------------------------------*/

.contact-btn-area {
  text-align: center;
  padding: 10px 0 0;
}

.contact-btn-faq  {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 700;
}

.contact-btn-faq a {
  color: white;
  padding: 1em 5em;
  display: block;
  background: #0e8196;
  border: 1px solid #0e8196;
  border-radius: 20px;
  transition: ease-in-out .3s;
}

.contact-btn-faq a:hover {
  background: white;
  color: #0e8196;
}

@media print, screen and (min-width:560px) {

  .contact-btn-area {
    text-align: left;
  }

}

/* ---------------------------------------------------------
    修正
----------------------------------------------------------*/

.mt-0 {
  margin-top: 0!important;
}

.cat-special table {
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.cat-special th {
  background: #ECECEC;
  border: 1px solid #ccc;
  padding: 0.5em;
}
.cat-special td {
  border: 1px solid #ccc;
  padding: 0.5em;
}

@media screen and (max-width: 959px) {
  .cat-special table {
    width: 100%;
  }
  .cat-special img {
    display: block;
    float: none !important;
    margin: 0 auto 20px !important;
  }
}