@charset "UTF-8";
html, body {
  height: 100%; }

a {
  color: #2F8FBF; }
a:hover, a:activ {
  color: #4ea7d3; }
a:visited {
  color: #2F8FBF; }

/*------------------------
//---INDEX---
//1: layout
//2: layout-header
//3: layout-body
//4: layout-footer
//5: 共通クラス
//-------------------------*/
.globalNav-sprite {
  background-image: url('../images/globalNav.png');
  background-repeat: no-repeat; }

/*-------------------------*/
/*1: layout*/
/*-------------------------*/
/*gridlayout*/
body {
  display: grid;
  /* グリッドレイアウト */
  grid-template-rows: auto 1fr auto;
  grid-gap: 0; }

.layout-header {
  grid-row: 1;
  grid-row-span: 1; }

.layout-body {
  grid-row: 2;
  grid-row-span: 1; }

.layout-footer {
  grid-row: 3;
  grid-row-span: 1; }

.layout-header, .layout-body, .layout-footer {
  min-width: 980px; }

/*共通*/
.container {
  margin: 0px auto;
  width: 980px; }

/* MS対策(手動) */
.layout-header {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1; }

.layout-body {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1; }

.layout-footer {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1; }

/*背景*/
/*-------------------------*/
/*　2: layout-header */
/*-------------------------*/
.layout-header .key-visual {
  width: 100%;
  min-height: 200px; }
.layout-header .container {
  padding: 10px 0px 0px; }
.layout-header h1 {
  background: url(../images/logo.png) no-repeat;
  height: 26px;
  width: 286px;
  overflow: hidden;
  text-indent: -9999px;
  margin: 1rem auto 2rem; }

/* global-menu */
.navigation {
  width: 100%; }

.menu {
  display: flex;
  justify-content: space-around;
  padding-left: 0;
  width: 980px;
  margin: auto; }

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  list-style-type: none; }
.menu-item a {
  display: block;
  width: 95%;
  height: 90%;
  text-indent: -9999px; }
.menu-item .home {
  background: url('../images/globalNav.png') 0 -200px;
  height: 40px;
  width: 64px; }
.menu-item .current-menu-item .home, .menu-item .home:hover {
  background: url('../images/globalNav.png') 0 -250px;
  height: 40px;
  width: 55px; }
.menu-item .outline {
  background: url('../images/globalNav.png') 0 -300px;
  height: 40px;
  width: 100px; }
.menu-item .current-menu-item .outline, .menu-item .outline:hover {
  background: url('../images/globalNav.png') 0 -350px;
  height: 40px;
  width: 91px; }
.menu-item .event {
  background: url('../images/globalNav.png') 0 -100px;
  height: 40px;
  width: 82px; }
.menu-item .current-menu-item .event, .menu-item .event:hover {
  background: url('../images/globalNav.png') 0 -150px;
  height: 40px;
  width: 73px; }
.menu-item .timetable {
  background: url('../images/globalNav.png') 0 -400px;
  height: 40px;
  width: 118px; }
.menu-item .current-menu-item .timetable, .menu-item .timetable:hover {
  background: url('../images/globalNav.png') 0 -450px;
  height: 40px;
  width: 100px; }
.menu-item .album {
  background: url('../images/globalNav.png') 0 0;
  height: 40px;
  width: 82px; }
.menu-item .current-menu-item .album, .menu-item .album:hover {
  background: url('../images/globalNav.png') 0 -50px;
  height: 40px;
  width: 73px; }

/*　3: layout-body */
.layout-body .container {
  min-height: 300px; }

.units-glid-2, .page-album {
  display: grid;
  /* グリッドレイアウト */
  display: -ms-grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto 1fr auto;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 3fr;
  -ms-grid-rows: auto 1fr auto; }
.units-glid-2 .unit-1, .page-album .unit-1 {
  order: 1;
  grid-column: 1/-1;
  grid-row: 1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2; }
.units-glid-2 .unit-2, .page-album .unit-2 {
  grid-row: 2/3;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-column: 2; }
.units-glid-2 .unit-3, .page-album .unit-3 {
  grid-row: 3/4;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-column: 2; }
.units-glid-2 .unit-4, .page-album .unit-4 {
  grid-row: 2/4;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1; }

.panels {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: -10px;
  margin-left: -10px;
  width: 100%; }

.panel {
  padding: 10px;
  width: 31%;
  height: auto;
  margin: 1%;
  overflow: hidden; }

figcaption {
  word-wrap: break-word;
  word-break: break-all;
  padding: 5px 8px; }

.entry-index .category {
  font-size: 1.2rem;
  margin-bottom: 0;
  display: inline-block; }

/*　404ページ */
.return-link {
  text-align: center;
  margin-top: 50px; }
.return-link a {
  display: inline-block;
  padding: 0 5px; }

/* 4: layout-footer */
.layout-footer .sitename {
  font-size: 1em;
  font-style: normal; }
.layout-footer address {
  letter-spacing: 0;
  font-style: normal; }
.layout-footer .tel, .layout-footer .fax {
  display: inline-block; }
.layout-footer a {
  text-decoration: none; }
.layout-footer .copyright {
  display: block;
  font-size: 0.8em;
  text-align: center; }

/*-------------------------*/
/*
/*　5: 共通クラス */
/*　・colorbox:上書き
/*　・ローディング
/*　・ページ上部へ戻る
/*　・editor登録分（全ページ共通css/必要あれば読み込む）
/*-------------------------*/
/* -----------------------*/
/* colorbox:上書き */
/* -----------------------*/
#cboxOverlay {
  background: #000; }

#cboxLoadedContent {
  background: #fff; }

#cboxLoadedContent {
  padding: 0;
  overflow: auto;
  -moz-box-shadow: 0px 1px 10px #000000;
  -webkit-box-shadow: 0px 1px 10px #000000;
  box-shadow: 0px 1px 10px #000000; }

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose, #cboxTitle {
  top: -30px; }

#colorbox, #cboxOverlay, #cboxWrapper {
  overflow: visible; }

#cboxTitle {
  color: #fff; }

#inline-content {
  /* インラインを使用する時のみ */
  margin: 20px; }

#ajax-wrap {
  /* ajaxを使用する時のみ */
  margin: 20px; }

/* -----------------------*/
/* ローディング */
/* -----------------------*/
html {
  overflow-y: scroll; }

.loader {
  background: #ffffff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10; }

.loader-animation, .loader-animation:before, .loader-animation:after {
  background: #FF8486;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em; }

.loader-animation {
  height: 10px;
  left: 50%;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  width: 10px;
  color: #ffffff;
  text-indent: -9999em;
  font-size: 10px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

.loader-animation:before, .loader-animation:after {
  position: absolute;
  top: 0;
  content: ''; }

.loader-animation:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.loader-animation:after {
  left: 1.5em; }

@-webkit-keyframes load1 {
  0%,
      80%,
      100% {
    box-shadow: 0 0;
    height: 4em; }
  40% {
    box-shadow: 0 -2em;
    height: 5em; } }
@keyframes load1 {
  0%,
      80%,
      100% {
    box-shadow: 0 0;
    height: 4em; }
  40% {
    box-shadow: 0 -2em;
    height: 5em; } }
/* -----------------------*/
/* ページ上部へ戻る */
/* -----------------------*/
div.tothetop {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 1500; }
div.tothetop a {
  display: block;
  margin: 0;
  background: url(../images/scrolltop.png);
  width: 46px;
  height: 40px;
  text-indent: -9999px;
  overflow: hidden;
  opacity: 0.5; }
div.tothetop a:hover {
  opacity: 1; }

/* エディター登録分 */
