@charset "UTF-8";
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * Elements............単体のエレメントとリンク色設定
 * Common..............共通
 * Header..............Navi,Visual
 * Index...............Toppage
 * Footer..............フッター
 */
/*------------------------------------*\
    Elements
\*------------------------------------*/
html,
body {
  height: 100%;
  width: 100%;
}

body {
  position: relative;
  color: #1c2347;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

a {
  color: #1c2347;
}

a:hover, a:visited {
  color: #1c2347;
}

/*------------------------------------*\
    Header
\*------------------------------------*/
.mf_logo_c {
  fill: none;
  stroke: #1c2347;
  stroke-miterlimit: 10;
  stroke-width: 6px;
}

.header_logo {
  margin: 0;
  text-align: center;
}

.header_logo svg {
  width: 100%;
  margin: 20px auto;
  fill: transparent;
  stroke-dasharray: 1500px;
  stroke-dashoffset: 1500px;
}

@media (min-width: 786px) {
  .header_logo svg {
    max-width: 400px;
  }
}

.header_logo.is-active svg {
  -webkit-animation: line_animation01 1.5s both;
          animation: line_animation01 1.5s both;
  /*# 2.5秒間かけてアニメーションを実行 */
}

.index_header .header_logo svg {
  max-width: 240px;
}

@media (min-width: 786px) {
  .index_header .header_logo svg {
    max-width: 400px;
  }
}

.leaf_header .header_logo svg {
  max-width: 100px;
  margin: 20px auto 0;
}

@media (min-width: 786px) {
  .leaf_header .header_logo svg {
    max-width: 240px;
  }
}

@-webkit-keyframes line_animation01 {
  0% {
    stroke-dashoffset: 1500px;
    /*# 0秒では間隔を1500px */
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0px;
    /*# 3秒後に間隔を0px */
    fill: #1c2347;
  }
}

@keyframes line_animation01 {
  0% {
    stroke-dashoffset: 1500px;
    /*# 0秒では間隔を1500px */
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0px;
    /*# 3秒後に間隔を0px */
    fill: #1c2347;
  }
}

.menu_icon {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  z-index: 2;
  border: 1px solid #eee;
  border-radius: 5px;
}

@media (min-width: 786px) {
  .menu_icon {
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

.menu_icon:hover {
  background: #1c2347;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_iconline {
  position: absolute;
  top: 15%;
  left: 50%;
  height: 1px;
  width: 70%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1c2347;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_iconline::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 50%;
  height: 1px;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1c2347;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 786px) {
  .menu_iconline::before {
    top: 10px;
  }
}

.menu_iconline::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 50%;
  height: 1px;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1c2347;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 786px) {
  .menu_iconline::after {
    top: 20px;
  }
}

.menu_icontext {
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 786px) {
  .menu_icontext {
    bottom: 5px;
    font-size: 12px;
  }
}

.menu_icon:hover .menu_iconline {
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_icon:hover .menu_iconline::before {
  width: 90%;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_icon:hover .menu_iconline::after {
  width: 80%;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_icon:hover .menu_icontext {
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_list_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c2347;
  z-index: 3;
}

.menu_close {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 10%;
  width: 100%;
  color: #fff;
  background: #0d1021;
}

.menu_close span {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}

.menu_close span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  background: #fff;
}

.menu_close:hover {
  background: #212a53;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.menu_list {
  width: 100%;
  height: 90%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 20%;
  width: 100%;
  border-top: 1px solid #212a53;
}

.menu_list li:hover {
  background: #212a53;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_list a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #fff;
  text-decoration: none;
}

/*------------------------------------*\
    common
\*------------------------------------*/
.default_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

@media (min-width: 786px) {
  .default_wrap {
    padding: 40px 20px;
  }
}

.column_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

@media (min-width: 786px) {
  .column_wrap {
    padding: 40px 60px;
  }
}

@media (min-width: 1200px) {
  .column_wrap {
    border-left: 1px solid #1c2347;
    border-right: 1px solid #1c2347;
  }
}

.column_wrap + .l_footer {
  margin-top: 0;
}

blockquote {
  position: relative;
  padding: 30px 20px;
  background: #efefef;
}

blockquote::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "“";
  font-size: 50px;
  color: #fff;
  line-height: 1;
}

blockquote::after {
  position: absolute;
  bottom: 0;
  right: 20px;
  content: "”";
  font-size: 50px;
  color: #fff;
  line-height: 1;
}

@media (min-width: 786px) {
  blockquote {
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  blockquote {
    padding: 60px;
  }
}

.ttl_defaultLL {
  margin: 1em 0 0;
  padding: 20px;
  font-size: 24px;
  text-align: center;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  border-top: 1px solid #1c2347;
  border-bottom: 1px solid #1c2347;
}

@media (min-width: 786px) {
  .ttl_defaultLL {
    padding: 30px 20px;
    font-size: 36px;
  }
}

.ttl_defaultL {
  margin: 1em 0;
  padding: 0;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.ttl_defaultL span {
  position: relative;
}

.ttl_defaultL span::before {
  position: absolute;
  top: 50%;
  left: -1.5em;
  content: "";
  display: block;
  width: 1em;
  height: .7em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#1c2347), color-stop(15%, #1c2347), color-stop(15%, #fff), color-stop(40%, #fff), color-stop(40%, #8a0000), color-stop(60%, #8a0000), color-stop(60%, #fff), color-stop(85%, #fff), color-stop(85%, #1c2347), to(#1c2347));
  background: linear-gradient(#1c2347 0%, #1c2347 15%, #fff 15%, #fff 40%, #8a0000 40%, #8a0000 60%, #fff 60%, #fff 85%, #1c2347 85%, #1c2347 100%);
}

@media (min-width: 786px) {
  .ttl_defaultL span::before {
    left: -2.5em;
    width: 2em;
  }
}

.ttl_defaultL span::after {
  position: absolute;
  top: 50%;
  left: -1.8em;
  content: "★";
  color: #fff;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 20px;
  height: 20px;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1c2347;
  border-radius: 50%;
}

@media (min-width: 786px) {
  .ttl_defaultL span::after {
    left: -2.3em;
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 786px) {
  .ttl_defaultL {
    font-size: 36px;
  }
}

.ttl_defaultM {
  position: relative;
  margin: 1em 0 0;
  padding-left: 1.5em;
  font-size: 18px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.ttl_defaultM::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #1c2347;
}

@media (min-width: 786px) {
  .ttl_defaultM {
    font-size: 30px;
  }
}

.readmore {
  position: relative;
  display: block;
  margin: .5em 0 0 0;
  padding: 3px 1em 3px 0;
  color: #1c2347;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  text-align: right;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.readmore::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 6em;
  height: 1px;
  background: #1c2347;
}

.readmore::after {
  position: absolute;
  bottom: 3px;
  right: 0;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #1c2347;
}

.readmore:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/*------------------------------------*\
    index
\*------------------------------------*/
.lead {
  margin: 0 0 20px;
  padding: 0;
  font-size: 14px;
  text-align: center;
}

@media (min-width: 786px) {
  .lead {
    font-size: 16px;
  }
}

.notice-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  border: 5px solid #212a53;
}

@media (min-width: 786px) {
  .notice-wrap {
    margin: 30px auto;
    padding: 30px;
  }
}

.notice_ttl {
  margin: 0 0 15px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 24px;
  text-align: center;
}

@media (min-width: 786px) {
  .notice_ttl {
    font-size: 30px;
  }
}

.notice_list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 13px;
  line-height: 1.8;
}

.notice_list li {
  margin-bottom: 1em;
}

@media (min-width: 786px) {
  .notice_list {
    font-size: 13px;
  }
}

/*------------------------------------*\
    EVENTS
\*------------------------------------*/
.schedule_table {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
}

.schedule_table tbody,
.schedule_table tr {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.schedule_table th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  display: none;
  color: #fff;
  border-right: 4px solid #1c2347;
  border-bottom: 4px solid #1c2347;
  background: #1c2347;
}

.schedule_table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 10px;
  text-align: center;
  border-right: 4px solid #1c2347;
  border-bottom: 4px solid #1c2347;
  border-left: 4px solid #1c2347;
}

.schedule_table td.schedule_date {
  font-weight: bold;
  color: #fff;
  background: #1c2347;
}

.schedule_table td:first-child {
  border-top: 4px solid #1c2347;
}

.schedule_table td.schedule_link a {
  position: relative;
  display: block;
  padding: 7px 15px 7px 0;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
  background: #8a0000;
  border-radius: 5px;
  border-bottom: 4px solid #6e0000;
  -webkit-transition: .3s;
  transition: .3s;
}

.schedule_table td.schedule_link a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.schedule_table td.schedule_link a:hover {
  opacity: .7;
}

@media (min-width: 786px) {
  .schedule_table {
    display: table;
    border-top: 4px solid #1c2347;
    border-left: 4px solid #1c2347;
  }
  .schedule_table tbody {
    display: table-row-group;
    margin-bottom: 0;
  }
  .schedule_table tr {
    display: table-row;
    margin-bottom: 0;
  }
  .schedule_table tr:nth-child(odd) td {
    background: #f1f3ff;
  }
  .schedule_table th {
    display: table-cell;
  }
  .schedule_table td {
    display: table-cell;
    border-left: none;
    border-top: none;
  }
  .schedule_table td.schedule_date {
    width: 10%;
    color: #1c2347;
    background: #fff;
  }
  .schedule_table td.schedule_place {
    width: 20%;
    text-align: left;
  }
  .schedule_table td.schedule_eventname {
    width: 35%;
    text-align: left;
  }
  .schedule_table td.schedule_prefectures {
    width: 8%;
  }
  .schedule_table td.schedule_ensemble {
    width: 15%;
  }
}

/* single events */
.eventDataList {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.eventDataList li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-bottom: 5px;
  padding: 5px 20px;
  border-radius: 10px;
}

.eventDataList li:nth-child(odd) {
  background: #f7f7f7;
}

.eventDataList li:nth-child(even) {
  background: #f1f3ff;
}

.eventDataList_ttl {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30%;
  padding-right: 1em;
  font-size: 14px;
  font-weight: bold;
  border-right: 1px solid #ccc;
}

@media (min-width: 786px) {
  .eventDataList_ttl {
    width: 20%;
  }
}

.eventDataList_day {
  font-size: 14px;
  font-weight: bold;
}

.eventDataList_data {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 70%;
  padding-left: 1em;
  font-size: 14px;
}

@media (min-width: 786px) {
  .eventDataList_data {
    width: 80%;
  }
}

/* eventPhotos */
.eventPhotos {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style-type: none;
  padding: 0;
}

@media (min-width: 786px) {
  .eventPhotos {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.eventPhotos li {
  width: 100%;
  margin-bottom: 10px;
}

.eventPhotos li img {
  display: block;
  width: 100%;
}

@media (min-width: 786px) {
  .eventPhotos li {
    width: 48%;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .eventPhotos li {
    width: 30%;
  }
}

/* pagination */
.page-numbers {
  text-align: center;
}

.page-numbers li {
  display: inline-block;
  margin: 8px 4px;
}

.page-numbers li span {
  display: block;
  width: 50px;
  height: 50px;
  font-weight: bold;
}

@media (min-width: 786px) {
  .page-numbers li span {
    margin: 4px 2px;
    width: 46px;
    height: 46px;
    padding: 16px 0;
  }
}

.page-numbers li a {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #1c2347;
  width: 50px;
  height: 50px;
  padding: 18px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1c2347;
  line-height: 1;
}

@media (min-width: 786px) {
  .page-numbers li a {
    margin: 4px 2px;
    width: 46px;
    height: 46px;
    padding: 16px 0;
  }
}

.page-numbers a:hover {
  opacity: 0.7;
}

/* footer */
.l_footer {
  margin-top: 50px;
  padding: 5px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
  text-align: center;
  background: #1c2347;
}

.l_footer a {
  color: #fff;
}

@media (min-width: 786px) {
  .l_footer {
    margin-top: 100px;
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */