/* ====================================
    base
===================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, section, article, figure, ul, ol, li, h1, h2, h3, p, span, a, div {
  margin: 0;
  padding: 0;
}

body {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #2B2B2B;
  background-color: #FBFBFB;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 100vh;
}

li {
  list-style: none;
}

a {
  color: #2B2B2B;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.footer_fixed {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ====================================
    layout
===================================== */
.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 200px;
  position: relative;
}

.container2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.fullPageScroll {
  width: 100%;
  height: 100vh;
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
  overflow-y: auto;
}

.page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 200px;
  position: relative;
}

/* ====================================
  header
===================================== */
.header {
  width: 200px;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  z-index: 100;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  padding: 56px 8px 24px;
  position: relative;
}
.header__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__logo {
  width: 110px;
  z-index: 3;
  line-height: 0;
  margin-bottom: 54px;
}
.header__logo a {
  font-size: 0;
}

/* ====================================
  gnav
===================================== */
.hamburger {
  z-index: 9999;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}
.hamburger__line {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #444444;
  width: 30px;
}
.hamburger__line--1 {
  top: 0;
}
.hamburger__line--2 {
  top: 10px;
}
.hamburger__line--3 {
  top: 20px;
}
.hamburger.active .hamburger__line--1 {
  top: 3px;
  -webkit-transform: translateY(6px) rotate(-40deg);
          transform: translateY(6px) rotate(-40deg);
}
.hamburger.active .hamburger__line--2 {
  opacity: 0;
}
.hamburger.active .hamburger__line--3 {
  top: 16px;
  -webkit-transform: translateY(-6px) rotate(40deg);
          transform: translateY(-6px) rotate(40deg);
}
.hamburger__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.hamburger__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px 0;
  margin-bottom: 40px;
}
.hamburger__item a {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #444444;
}
.hamburger__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px 20px;
  width: 160px;
}
.hamburger__icon a i {
  font-size: 18px;
}

.circle-bg {
  position: fixed;
  right: -100px;
  width: 90px;
  height: 100vh;
  background-color: #EDEDEC;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.circle-bg.circleactive {
  -webkit-transform: scale(70);
          transform: scale(70);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/* ====================================
    footer
===================================== */
.footer {
  width: 100%;
  background-color: #ffffff;
  padding: 48px 0 24px;
}
.footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copy span {
  font-size: 14px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}

.wp-pagenavi {
  text-align: center;
  clear: both;
  padding: 7px 0;
  margin-top: 32px;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #444444;
  background-color: #FBFBFB;
  padding: 6px 8px;
  margin: 0 2px;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  text-align: center;
  border: 1px solid #444444;
}

.wp-pagenavi span.current {
  color: #ffffff;
  background-color: #444444;
}

/* ====================================
  Schedule
===================================== */
.schedule {
  width: 100%;
  padding: 96px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.schedule__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
.schedule__heading--ttl {
  font-size: max(6vw, 2em, 2rem);
  font-weight: 400;
  letter-spacing: 14px;
  font-family: "academy-engraved-std", sans-serif;
  color: #444444;
}
.schedule__body {
  width: 100%;
}
.schedule__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.schedule__item {
  padding: 32px 8px 16px;
  border-bottom: 2px solid #ffffff;
  width: 100%;
}
.schedule__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5em;
}
.schedule__item--img img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.schedule__item--info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.schedule__item--date {
  font-size: 18px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}
.schedule__item--ttl {
  font-size: 14px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
}
.schedule__viewall {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 16px;
}
.schedule__viewall a {
  font-size: 12px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedule__viewall a .maru {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #444444;
  background-color: #444444;
  margin-left: 4px;
}
.schedule__viewall a .maru::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.schedule__viewall a .maru::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #FFFFFF;
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 520px) {
  body {
    letter-spacing: 0.07em;
  }
  .hamburger {
    width: 24px;
    height: 14px;
  }
  .hamburger__line {
    width: 24px;
    height: 2px;
  }
  .hamburger__line--2 {
    top: 7px;
  }
  .hamburger__line--3 {
    top: 14px;
  }
  .footer__copy span {
    font-size: 12px;
  }
  .schedule {
    padding: 70px 0 40px;
  }
  .schedule__inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .schedule__item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .schedule__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .schedule__item--img {
    width: 120px;
    padding-right: 6px;
  }
  .schedule__item--info {
    margin-bottom: 4px;
  }
  .schedule__item--date {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .schedule__item--ttl {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.4;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding-left: 150px;
  }
  .page-container {
    padding-left: 150px;
  }
  .header {
    width: 150px;
  }
  .header__logo {
    width: 80px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 960px) {
  .container {
    padding-left: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-container {
    padding-left: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header {
    width: 100%;
    height: 120px;
  }
  .header__logo {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 960px) and (max-width: 520px) {
  .header {
    height: 70px;
  }
}
@media screen and (max-width: 960px) {
  .header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 120px;
    padding: 0 16px;
  }
  .hamburger__nav {
    display: none;
    gap: 0;
  }
  .hamburger__nav.panelactive {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 999;
    width: 100%;
    max-width: 1680px;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: auto;
    padding: 0 16px;
  }
  .hamburger__nav.panelactive .hamburger__list, .hamburger__nav.panelactive .hamburger__sns {
    -webkit-animation-name: gnaviAnime;
            animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
  @-webkit-keyframes gnaviAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes gnaviAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .hamburger__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px 0;
  }
  .hamburger__item a {
    font-size: 18px;
  }
  .hamburger__sns {
    width: auto;
  }
  .hamburger__icon a i {
    font-size: 20px;
  }
  .schedule__heading--ttl {
    font-size: max(8vw, 2em, 2rem);
  }
}
@media screen and (max-width: 960px) and (max-width: 520px) {
  .header__inner {
    height: 70px;
  }
}
@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .wp-pagenavi a:hover {
    color: #ffffff;
    background-color: #444444;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .schedule__heading--ttl {
    letter-spacing: 6px;
  }
}
/*# sourceMappingURL=schedule.css.map */
/*# sourceMappingURL=schedule.css.map */