@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*メディアサイズ*/
/* Scss Document */
/*メデイアクエリブレイクポイント*/
/*clearfix*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.section:nth-child(even) {
  background: #fffbf4;
}

.section__inr {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .section__inr {
    max-width: 1000px;
  }
}

@media only screen and (max-width: 40em) {
  .section__inr {
    padding: 0 7vw;
  }
}

.section__inr.-narrow {
  margin: 50px auto;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__inr.-narrow {
    max-width: 100%;
    margin: 5vw 0;
  }
}

.section__inr.-ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__inr.-ticket {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.section__ttl {
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: 'Cambria',Georgia,serif;
  font-weight: normal;
  min-width: 340px;
  padding: 40px 0;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__ttl {
    min-width: 80vw;
    font-size: 4.5vw;
    padding: 10vw 0;
  }
}

.section__ttl:before {
  content: "";
  width: 16px;
  display: block;
  height: 20px;
  background-image: url("../images/icon--cube.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 60px;
}

.section__ttl:after {
  content: "";
  width: 16px;
  display: block;
  height: 20px;
  background-image: url("../images/icon--cube.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 60px;
}

.section__txt, .twitter__txt {
  font-size: 14px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__txt, .twitter__txt {
    font-size: 3.5vw;
  }
}

.section__img {
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
}

.section__img.-border {
  border: 2px solid #333;
}

.section__table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__table {
    margin: 5vw 0;
  }
}

.section__td, .section__th {
  padding: 7px;
  border-bottom: 2px dotted #ccc;
  border-collapse: collapse;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .section__td, .section__th {
    font-size: 3vw;
    padding: 1.3vw;
  }
}

.section__th {
  background: #367da2;
  color: #fff;
  border: none;
}

.section__td {
  border-right: 1px solid #eee;
}

.section__td.-ttl {
  font-weight: bold;
  border-right: 1px solid #ccc;
}

.section__td.-right {
  border-right: none;
  text-align: right;
}

.header {
  background: #fffbf4;
}

.header__inr {
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .logo {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: 4vw;
  }
}

.logo__ttl {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .logo__ttl {
    margin: 25px 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 40em) {
  .logo__ttl {
    font-size: 3vw;
    margin: 2vw 0;
  }
}

.logo__link {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .logo__link {
    width: 40%;
  }
}

.logo__img {
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .logo__img {
    width: 280px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 40em) {
  .logo__img {
    width: 100%;
    margin-bottom: 4vw;
  }
}

.main-nav {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .main-nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #fffbf4;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .main-nav.-open {
    opacity: 1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    visibility: visible;
  }
}

.main-nav__menu {
  list-style: none;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .main-nav__menu {
    max-width: 880px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 40em) {
  .main-nav__menu {
    margin: -5vw 0 0 0;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.main-nav__list {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .main-nav__list {
    margin-bottom: 5vw;
  }
}

.main-nav__link {
  color: #333333;
  font-size: 18px;
  font-family: 'Cambria',Georgia,serif;
}

.main-nav__link:hover {
  color: #333333;
  text-decoration: none;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  opacity: .7;
}

/*  ハンバーガーメニュー */
.toggle,
.toggle span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.toggle {
  opacity: 1;
  position: relative;
  width: 5vw;
  height: 5vw;
  cursor: pointer;
}

.toggle.top span {
  background-color: #fff;
  color: #fff;
}

.toggle.top span:nth-of-type(4) {
  bottom: -2em;
  border: none;
  background: none;
  height: inherit;
  font-size: 11px;
}

.toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  color: #fff;
  border-radius: 2px;
}

.toggle span.stop {
  background-color: #fff;
  color: #fff;
}

.toggle span:nth-of-type(1) {
  top: 0;
}

.toggle span:nth-of-type(2) {
  top: 2.3vw;
}

.toggle span:nth-of-type(3) {
  top: 4.6vw;
}

.toggle span:nth-of-type(4) {
  bottom: -2em;
  border: none;
  background: none;
  height: inherit;
  font-size: 11px;
}

.toggle.active {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.toggle.active span {
  background-color: #fff;
}

.toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(2.3vw) rotate(-315deg);
  -ms-transform: translateY(2.3vw) rotate(-315deg);
  transform: translateY(2.3vw) rotate(-315deg);
}

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

.toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-2.3vw) rotate(315deg);
  -ms-transform: translateY(-2.3vw) rotate(315deg);
  transform: translateY(-2.3vw) rotate(315deg);
}

.toggle.active span:nth-of-type(4) {
  background: none;
  color: #fff;
}

.toggle_wrap {
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .toggle_wrap {
    display: none;
  }
}

@media only screen and (max-width: 40em) {
  .toggle_wrap {
    position: absolute;
    top: 3vw;
    right: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 100;
    padding: 3vw;
    width: 12vw;
    height: 12vw;
    background: #212121;
    border: 1px solid #212121;
  }
  .toggle_wrap.-open {
    position: fixed;
  }
}

.toggle-cover {
  position: fixed;
  width: 100%;
  top: 0;
  height: 150%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.toggle-cover.active {
  -webkit-transform: translate3d(-235px, 0, 0);
  transform: translate3d(-235px, 0, 0);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 1;
  visibility: visible;
}

.slider {
  margin: 0;
  list-style: none;
  padding: 0;
}

.slider li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 320px);
  margin: 0;
}

.slider li.image01 {
  background-image: url(../images/mainvisual/01.jpg);
}

.slider li.image02 {
  background-image: url(../images/mainvisual/02.jpg);
}

.slider .slick-dots {
  bottom: 4%;
  z-index: +1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.pickup__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0 0 60px 0;
  padding: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10vw;
  }
}

.pickup__list {
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .pickup__list {
    width: 30%;
    margin-right: calc(10%/3);
    margin-bottom: 30px;
  }
  .pickup__list:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 40em) {
  .pickup__list {
    width: 100%;
    margin-bottom: 7vw;
  }
}

.pickup__date {
  font-family: 'Jost', sans-serif;
  font-size: 40px;
  font-weight: 200;
  padding-left: 10px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup__date {
    font-size: 8vw;
  }
}

.pickup__dow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup__dow {
    font-size: 5vw;
  }
}

.pickup__img {
  width: 100%;
  margin-bottom: 30px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup__img {
    margin-bottom: 5vw;
  }
}

.pickup__ttl {
  font-size: 16px;
  font-weight: bold;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup__ttl {
    font-size: 3.2vw;
    line-height: 1.5;
    display: block;
    margin: 0;
  }
}

.pickup-btn {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #363636;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.pickup-btn:hover {
  text-decoration: none;
  color: #363636;
  opacity: .7;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.pickup-btn__head {
  padding-bottom: 10px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup-btn__head {
    padding-bottom: 2vw;
  }
}

.pickup-btn__body {
  background: #fffbf4;
  padding: 40px;
  border-radius: 0px 0px 69px 0px;
  height: 100%;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .pickup-btn__body {
    padding: 5vw 10vw;
  }
}

.information {
  list-style: none;
  width: 100%;
  max-width: 824px;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 80px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .information {
    padding-bottom: 10vw;
  }
}

.information__list {
  border-bottom: 1px dashed #808080;
  padding-bottom: 10px;
  margin-bottom: 10px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .information__list {
    padding-bottom: 3vw;
    margin-bottom: 3vw;
  }
}

.information__link {
  color: #363636;
  font-size: 15px;
  /*全スマホ*/
}

.information__link:hover {
  text-decoration: none;
  color: #363636;
  opacity: .7;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

@media only screen and (max-width: 40em) {
  .information__link {
    font-size: 4vw;
  }
}

.information__date {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .information__date {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
}

.covid {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .covid {
    padding: 10vw 0;
  }
}

.covid__ttl {
  display: inline-block;
  margin: 0 auto 40px;
  border-bottom: 1px dashed #808080;
  padding-bottom: 10px;
}

.covid__menu {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .covid__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.covid__list {
  width: 50%;
  font-size: 15px;
  margin-bottom: 5px;
  /*全スマホ*/
}

.covid__list::before {
  content: "●";
  padding-right: 10px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .covid__list::before {
    padding-right: 1vw;
  }
}

@media only screen and (max-width: 40em) {
  .covid__list {
    font-size: 3.5vw;
    width: 100%;
    margin-bottom: 3vw;
  }
}

.ticket, .twitter, .contact {
  background: #fff;
  margin: 60px 0;
  padding: 0 80px 60px;
  width: 45%;
  font-size: 14px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .ticket, .twitter, .contact {
    width: 100%;
    padding: 0;
    margin: 10vw 0;
  }
}

.section:nth-child(odd) .ticket,
.section:nth-child(odd) .contact,
.section:nth-child(odd) .twitter {
  background: #fffbf4;
}

.twitter {
  height: 500px;
  overflow: hidden;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .twitter {
    height: 110vw;
    margin-top: 0;
  }
}

.twitter__txt {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .twitter__txt {
    padding: 0 5vw 5vw;
  }
}

iframe.twitter-timeline {
  overflow-y: scroll;
  height: 300px !important;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  iframe.twitter-timeline {
    height: 70vw !important;
  }
}

.access.-page {
  margin: 60px 0;
}

.access__iframe {
  width: 100%;
}

.access iframe,
.access object,
.access embed {
  /*PC*/
}

@media all and (min-width: 40em) {
  .access iframe,
  .access object,
  .access embed {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transition: all  0.7s ease;
    -o-transition: all  0.7s ease;
    transition: all  0.7s ease;
  }
}

.access iframe:hover,
.access object:hover,
.access embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

.eyecatch {
  max-height: 300px;
  height: 20vw;
  min-height: 200px;
  background: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
  background-image: url("../images/eyecatch/eyecatch--schedule.jpg");
}

.eyecatch.-schedule {
  background-image: url("../images/eyecatch/eyecatch--schedule.jpg");
}

.eyecatch.-floorguide {
  background-image: url("../images/eyecatch/eyecatch--floorguide.jpg");
}

.eyecatch.-equipments {
  background-image: url("../images/eyecatch/eyecatch--equipments.jpg");
}

.eyecatch.-access {
  background-image: url("../images/eyecatch/eyecatch--access.jpg");
}

.eyecatch.-contact {
  background-image: url("../images/eyecatch/eyecatch--contact.jpg");
}

.eyecatch__inr {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .eyecatch__inr {
    max-width: 1000px;
  }
}

@media only screen and (max-width: 40em) {
  .eyecatch__inr {
    padding: 0 10vw;
  }
}

.eyecatch__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.eyecatch__box i {
  font-size: 17px;
  margin-right: 5px;
  margin-top: 4px;
  color: #fff;
}

.eyecatch__ttl {
  text-transform: uppercase;
  color: #fff;
  font-weight: normal;
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-family: 'Cambria',Georgia,serif;
}

.eyecatch__txt {
  display: block;
  font-size: 50%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.breadcrumbs__inr {
  width: 100%;
  margin: 10px auto;
  padding: 0 20px;
  font-family: 'Cambria',Georgia,serif;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .breadcrumbs__inr {
    max-width: 1000px;
  }
}

@media only screen and (max-width: 40em) {
  .breadcrumbs__inr {
    padding: 0 7vw;
  }
}

.footer {
  background: #fffbf4;
  border-top: 60px solid #fff;
}

.footer__inr {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  /*PC*/
  /*全スマホ*/
}

@media all and (min-width: 40em) {
  .footer__inr {
    max-width: 1300px;
  }
}

@media only screen and (max-width: 40em) {
  .footer__inr {
    padding: 0 7vw;
  }
}

.footer-nav {
  margin-bottom: 40px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .footer-nav {
    display: none;
  }
}

.footer-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-nav__link {
  color: #363636;
  font-family: 'Cambria',Georgia,serif;
  margin: 0 40px;
}

.footer-nav__link:hover {
  text-decoration: none;
  color: #363636;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  opacity: .7;
}

.footer-twitter {
  text-align: center;
  margin-bottom: 50px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .footer-twitter {
    margin: 3vw 0;
  }
}

.footer-twitter__btn {
  font-size: 32px;
  color: #878787;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.footer-twitter__btn:hover {
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.footer-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .footer-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2vw;
  }
}

.footer-address__txt {
  margin: 0 20px;
  font-size: 14px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .footer-address__txt {
    font-size: 3.2vw;
    margin: 1vw 0;
  }
}

.copyright {
  background-color: #2b2416;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .copyright {
    font-size: 2vw;
    padding: 3vw;
  }
}

.schedule-head {
  margin: 60px 0;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-head {
    margin: 3vw 0;
  }
}

.schedule-head-year {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
  padding: 0;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-head-year {
    margin: 2vw 0;
  }
}

.schedule-head-year__btn {
  display: inline-block;
  border: 2px solid #333;
  padding: 10px 14px;
  font-size: 18px;
  color: #333;
  font-family: 'Jost', sans-serif;
  margin-right: 14px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-head-year__btn {
    width: 18vw;
    height: 12vw;
    font-size: 5vw;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3vw;
    border-width: .3vw;
    margin-right: 1vw;
  }
}

.schedule-head-year__btn.-active {
  text-decoration: none;
  color: #fff;
  background: #333;
}

.schedule-head-year__btn:hover {
  text-decoration: none;
  color: #fff;
  background: #333;
}

.schedule-head-month {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
  padding: 0;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-head-month {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2vw 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.schedule-head-month__btn {
  display: inline-block;
  border: 2px solid #333;
  padding: 10px 14px;
  font-size: 18px;
  color: #333;
  font-family: 'Jost', sans-serif;
  margin-right: 14px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-head-month__btn {
    width: 13vw;
    border-width: .3vw;
    height: 12vw;
    font-size: 5vw;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3vw;
    margin-right: 0vw;
  }
}

.schedule-head-month__btn.-active {
  text-decoration: none;
  color: #fff;
  background: #333;
}

.schedule-head-month__btn:hover {
  text-decoration: none;
  color: #fff;
  background: #333;
}

.-active {
  text-decoration: underline;
}

.schedule-body {
  margin: 80px 0 60px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-body {
    margin: 7vw 0;
  }
}

.schedule-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 100px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10vw;
  }
}

.schedule-article-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-right: 120px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-bottom: 2px solid #333;
    width: 100%;
    padding-bottom: 3vw;
    margin-bottom: 3vw;
  }
}

.schedule-article-head:after {
  content: "";
  display: block;
  width: 2px;
  height: 280px;
  background: #333;
  position: absolute;
  top: 0;
  right: -50px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-head:after {
    display: none;
  }
}

.schedule-article-head__month {
  font-family: 'Cambria',Georgia,serif;
  text-transform: uppercase;
  font-size: 30px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-head__month {
    margin: 0;
    font-size: 5vw;
    margin-right: 2vw;
  }
}

.schedule-article-head__day {
  font-family: 'Jost', sans-serif;
  font-size: 52px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-head__day {
    margin: 0;
    line-height: 1;
    font-size: 9vw;
    margin-right: 2vw;
  }
}

.schedule-article-head__dow {
  font-family: 'Cambria',Georgia,serif;
  text-transform: uppercase;
  font-size: 27px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-head__dow {
    font-size: 5vw;
    margin: 0;
  }
}

.schedule-article-body {
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-body {
    width: 100%;
  }
}

.schedule-article-body__img {
  width: 100%;
  max-width: 440px;
  margin-bottom: 40px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-body__img {
    max-width: 100%;
    margin-bottom: 4vw;
  }
}

.schedule-article-body__ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 20px;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-body__ttl {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}

.schedule-article-body__txt {
  font-size: 15px;
  line-height: 1.7;
  /*全スマホ*/
}

@media only screen and (max-width: 40em) {
  .schedule-article-body__txt {
    font-size: 15px;
  }
}

.post {
  margin: 60px 0;
}

.post__ttl {
  margin-bottom: 30px;
  font-size: 24px;
}

.post__txt {
  margin-bottom: 20px;
}

.post-info {
  margin-bottom: 20px;
}

.post-info__date {
  background: #eee;
  display: inline-block;
  padding: 4px 10px;
  color: #333;
  font-size: 15px;
}

.pagenation {
  margin: 40px 0;
}

.pagenation__txt {
  display: inline-block;
  border: 2px solid #333;
  padding: 10px 13px;
  color: #333;
}

.pagenation__txt:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

/*# sourceMappingURL=maps/style.css.map */
