@charset "utf-8";

/* ****************************************************************************************************
   * 共用
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * フォント設定
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* アイコンフォント：_font/icomoon/demo.html にて一覧を閲覧可 */

@import url('../../_font/icomoon/style.css');

/* ゴシック体 */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: normal;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: bold;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Black.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Black.ttf') format('opentype');
}

/* 明朝体 */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: normal;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: bold;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Black.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Black.ttf') format('opentype');
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 全体
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body {
  min-width: 320px;
  color: #333;
  font: 14px/1.6 'NotoSansCJKjp', sans-serif;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

a[href] {
  transition: color 0.3s ease-in-out 0.0s;
  color: #012e72;
}

a[href]:hover {
  color: #000;
  text-decoration: none;
}

/* -------------------------------------------------------------------------------------------------
   * レイアウト用
/* ---------------------------------------------------------------------------------------------- */

div.body {
  padding-left: 10px;
  padding-right: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  div.body {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

}

/* ****************************************************************************************************
   * ヘッダー
**************************************************************************************************** */

#header {
  margin-bottom: 1px;
  padding: 10px 0;
  border-bottom: 13px solid #666666;
  position: relative;
  z-index: 2;
}

#header div.body {
  width: 100%;
  display: table;
  position: relative;
  z-index: 1;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ロゴ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.logo {
  letter-spacing: -0.4em;
  position: relative;
  z-index: 1;
}

#header div.logo > * {
  letter-spacing: normal;
}

#header div.logo a {
  vertical-align: top;
  display: inline-block;
}

#header div.logo .item {
  width: 100%;
  margin-right: -50px;
  padding-right: 60px;
  vertical-align: middle;
  display: inline-block;
}

#header div.logo img {
  width: 100%;
  max-width: 350px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header div.logo {
    vertical-align: middle;
    display: table-cell;
  }

  #header div.logo .item {
    width: auto;
    margin-right: 0;
    padding-right: 0;
  }

  #header div.logo img {
    width: auto;
    min-width: 300px;
    max-width: 100%;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 言語ナビ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header ul.language,
#header ul.language li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header ul.language {
  letter-spacing: -0.4em;
  text-align: center;
  display: none;
}

#header ul.language li {
  letter-spacing: 1px;
  font-weight: bold;
  vertical-align: top;
  display: inline-block;
}

#header ul.language li a {
  padding: 0.25em 1em;
  color: #ccc;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}

#header ul.language li a[href]:hover {
  color: #666666;
}

#header ul.language li.current a {
  color: inherit;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header ul.language {
    display: block;
    position: absolute;
    z-index: 1;
    top: -10px;
    right: 0;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * コンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.header:not(:empty) {
  padding: 10px 0 10px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header div.header {
    vertical-align: bottom;
    display: table-cell;
  }

  #header div.header:not(:empty) {
    padding: 30px 0 30px 30px;
  }

}

/* ****************************************************************************************************
   * グローバル ナビ
**************************************************************************************************** */

#global-nav {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #global-nav {
    margin-top: -34px;
    display: block;
    position: relative;
    z-index: 2;
    top: -1em;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * リスト
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#global-nav ul,
#global-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#global-nav ul.list {
  margin-left: auto;
  margin-right: 0;
  font-size: 1.142em;
  font-weight: bold;
  display: table;
}

#global-nav ul.list li {
  vertical-align: middle;
  display: table-cell;position: relative;
  z-index: 1;
}

#global-nav ul.list li.current {
  color: #fff;
  background-color: #666666;
}

#global-nav ul.list li a {
  padding: 0.25em 0.75em;
  color: #ccc;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
  word-break: keep-all;
}

#global-nav ul.list li a[href] {
  color: inherit;
}

#global-nav ul.list li a[href]:hover {
  color: #666666;
}

#global-nav ul.list li.current a[href]:hover {
  color: #fff;
}

/* ****************************************************************************************************
   * メニュー
**************************************************************************************************** */

#menu {
  width: 60%;
  height: 100%;
  color: #fff;
  border-left: 1px solid #042f71;
  background-color: #042f71;
  transition: all 0.5s ease-in-out 0.0s;
  position: fixed;
  top: 0;
  right: -60%;
  z-index: 2;
}

#menu a {
  color: inherit;
}

body.menu-active
#menu {
  right: 0;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #menu {
    display: none;
    transition: none;
    right: -60%;
  }

  body.menu-active
  #menu {
    right: -60%;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * サイトコンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#body {
  position: relative;
  z-index: 1;
  transition: right 0.5s ease-in-out 0.0s;
  right: 0;
}

body.menu-active
#body {
  right: 60%;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #body {
    transition: none;
  }

  body.menu-active
  #body {
    right: 0;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ハンバーガー
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

div.drawer-trigger {
  width: 50px;
  margin-right: 10px;
  padding-top: 31px;
  padding-bottom: 1px;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  position: fixed;
  z-index: 1;
  top: 10px;
  transition:
    background-color 0.5s ease-in-out 0.0s,
    right 0.5s ease-in-out 0.0s;
  background-color: #666666;
  right: 0;
}

body.menu-active
div.drawer-trigger {
  background-color: #042f71;
  right: 60%;
}

/* :::::::: ブレイクポイント :::::::: */

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

  div.drawer-trigger {
    display: none;
  }

}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

div.drawer-trigger .title {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

/* -------------------------------------------------------------------------------------------------
   * アイコン
/* ---------------------------------------------------------------------------------------------- */

div.drawer-trigger i.icon {
  width: 26px;
  height: 0;
  margin-top: -1px;
  border-top: 2px solid #fff;
  display: block;
  position: absolute;
  z-index: 1;
  top: 22px;
  transition: left 0.8s ease-in-out 0.0s;
  left: 12px;
}

div.drawer-trigger i.icon::before,
div.drawer-trigger i.icon::after {
  content: '';
  width: 100%;
  height: 0;
  margin-top: -2px;
  border-top: 2px solid #fff;
  display: block;
  position: relative;
  left: 0;
  z-index: 2;
  transition:
    transform 0.6s ease-in-out 0.0s,
    margin-left 0.8s ease-in-out 0.0s,
    top 0.6s ease-in-out 0.0s;
  margin-left: 0;
}

/* 上 */

div.drawer-trigger i.icon::before {
  top: -8px;
}

body.menu-active
div.drawer-trigger i.icon::before {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
  margin-left: calc(-200% - 36px);
  top: 0;
}

/* 中 */

body.menu-active
div.drawer-trigger i.icon {
  left: 200%;
}

/* 下 */

div.drawer-trigger i.icon::after {
  top: 8px;
}

body.menu-active
div.drawer-trigger i.icon::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  margin-left: calc(-200% - 36px);
  top: 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 一覧
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul,
#menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu ul.list {
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: bold;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.5s ease-in-out 0.5s;
  opacity: 0;
}

body.menu-active
#menu ul.list {
  opacity: 1;
}

#menu ul.list li a {
  padding: 0.75em 1em 0.75em 1.5em;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

#menu ul.list li a[href] {
  color: inherit;
}

#menu ul.list li a::before,
#menu ul.list li a::after {
  line-height: 1;
  font-family: icomoon;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  z-index: -1;
  top: 50%;
  margin-top: -0.5em;
}

#menu ul.list a:hover img {
  opacity: 1.0;
}

#menu ul.list ul {
  overflow: hidden;
}

#menu ul.list ul li {
  transition:
    margin-top 1.0s ease-in 0.3s,
    opacity 0.4s ease-in 0.0s;
  margin-top: -100%;
  opacity: 0;
}

#menu ul li.active > ul > li {
  transition:
    margin-top 0.8s ease-out 0.0s,
    opacity 0.4s ease-out 0.7s;
  margin-top: 0;
  opacity: 1;
}

/* 1階層目 :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list > li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#menu ul.list > li ~ li {
  border-top: none;
}

/* 2階層目～ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list ul {
  margin-left: 0;
  padding-left: 1.5em;
}

#menu ul.list ul li {
  list-style: none;
}

#menu ul.list ul li {
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

/* 現在表示中のページ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list li.current > a::before {
  content: '\e90e';
  left: 0;
}

/* スライドボタン :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list li.parent > a {
  padding-right: 2em;
}

#menu ul.list li.parent > a::after {
  content: '\e91c';
  right: 5px;
}

#menu ul.list li.active > a {
  padding-right: 2em;
}

#menu ul.list li.active > a::after {
  content: '\e916';
  right: 5px;
}

/* 言語ナビ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list li.language {
  margin-top: 1em;
  border-top: none;
  border-bottom: none;
}

#menu ul.list li.language ~ li.language {
  margin-top: 0;
}

#menu ul.list li.language a {
  padding: 0.5em 1em 0.5em 1.5em;
}

#menu ul.list li.language.active a {
  color: inherit;
}

#menu ul.list li.language.active a::before {
  content: '\e90e';
  left: 0;
}

#menu ul.list li.language.active a::after {
  content: none;
}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */

body.layout-lower
#visual {
  padding: 40px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.layout-lower
#visual .title {
  margin: auto;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: table;
  word-break: keep-all;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.layout-lower
  #visual {
    padding: 60px 0;
  }

  body.layout-lower
  #visual .title {
    font-size: 38px;
  }

}

/* ****************************************************************************************************
   * 各ページ インフォメーション
**************************************************************************************************** */

body.layout-lower
#page-info {
  padding: 20px 0;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.layout-lower
  #page-info {
    padding: 40px 0;
    text-align: center;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * イベント情報
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower
#page-info div.event {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  display: table;
}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

body.layout-lower
#page-info div.event .title {
  margin-left: auto;
  margin-right: auto;
  color: #012e72;
  font-size: 24px;
  display: table;
}

body.layout-lower
#page-info div.event .title em {
  color: #285492;
  font-style: normal;
}

/* ****************************************************************************************************
   * メイン コンテンツ
**************************************************************************************************** */

#main-contents {
  padding-top: 20px;
  background-color: #efefef;
}

body.layout-lower
#main-contents {
  padding-bottom: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #main-contents {
    padding-top: 60px;
  }

  body.layout-lower
  #main-contents {
    padding-bottom: 75px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * セクショニング
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower
#main-contents .section {
  padding: 30px 20px;
  background-color: #fff;
}

#main-contents .section ~ .section {
  margin-top: 20px;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.layout-lower
  #main-contents .section {
    padding: 30px 13.333% 75px;
  }

  #main-contents .section ~ .section {
    margin-top: 60px;
  }

  #main-contents .column ~ .column {
    margin-top: 40px;
  }

}

/* ****************************************************************************************************
   * フッター
**************************************************************************************************** */

#footer {
  position: relative;
  z-index: 1;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 管理者情報
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer .admin {
  padding: 10px 0;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer .admin {
    padding: 30px 0;
  }

  #footer .admin div.body {
    width: 100%;
    display: table;
  }

}

/* -------------------------------------------------------------------------------------------------
   * 所在地
/* ---------------------------------------------------------------------------------------------- */

#footer .admin div.address {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer .admin div.address {
    padding: 0 20px;
    vertical-align: middle;
    display: table-cell;
  }

  #footer .admin div.address .logo img {
    max-width: none;
  }

}

/* -------------------------------------------------------------------------------------------------
   * コンテンツ
/* ---------------------------------------------------------------------------------------------- */

#footer .admin div.contents {
  padding: 10px 0;
}

#footer .admin div.contents-2 {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer .admin div.contents {
    width: 33.333%;
    vertical-align: middle;
    display: table-cell;
  }

  #footer .admin div.contents-2 {
    text-align: right;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * バナー
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.banner {
  padding-bottom: 40px;
}

#footer div.banner div.list {
  width: 100%;
  letter-spacing: -0.4em;
  text-align: center;
  display: table;
}

#footer div.banner div.list > * {
  letter-spacing: normal;
}

#footer div.banner div.item {
  width: 50%;
  padding: 1px;
  text-align: left;
  vertical-align: top;
  display: inline-block;
}

#footer div.banner div.item a {
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.banner {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  #footer div.banner div.body {
    padding-left: 10px;
    padding-right: 10px;
  }

  #footer div.banner div.item {
    width: 25%;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * コピーライト
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.copyright {
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
  background-color: #666666;
}

#footer div.copyright a {
  color: inherit;
}

#footer div.copyright .item {
  letter-spacing: 1px;
  text-align: center;
}

#footer div.copyright .item span {
  vertical-align: middle;
  display: inline-block;
}
