@charset "UTF-8";
html {
  width: 100%;
  max-width: 1440px;
  height: 100%;
}

body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #333;
}

h1 {
  font-size: 3rem;
  letter-spacing: 8px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  margin-top: 80px;
}

header {
  width: 100%;
  height: 96px;
  background-color: #2e4600;
  -webkit-box-shadow: #333 0 2px 10px;
          box-shadow: #333 0 2px 10px;
  position: fixed;
  z-index: 999;
}

header .header {
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 1080px;
  height: 100%;
  margin: 0 auto;
}

header .header__logo {
  display: block;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  text-shadow: 0 5px 5px #000;
}

header .header .show {
  display: block;
  width: 100%;
}

header .header .show ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header .show ul li {
  display: block;
}

header .header .show ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

header .header .show ul li a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

header .header .show ul li a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

header .header #navbutton {
  display: none;
}

.display {
  width: 100%;
  height: 800px;
  padding-top: 96px;
  background-blend-mode: lighten;
  position: relative;
}

.display img,
.display video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.display__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: #fff;
  width: 100%;
  text-shadow: 0 2px 2px #999;
}

.display__title--sub, .display__title--main {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  padding: 4px;
  background: #2e4600;
}

.display__title--sub {
  font-size: 2rem;
  letter-spacing: 1rem;
  text-indent: 1rem;
  background: #2e4600;
}

.display__title--main {
  letter-spacing: 2.5rem;
  text-indent: 2.5rem;
}

.display__copy {
  position: absolute;
  top: 50%;
  right: 10%;
  height: 100%;
  padding-top: 96px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
}

.content {
  width: 100%;
  max-width: 1080px;
  margin: 80px auto;
}

.idea {
  -webkit-box-shadow: #777 0 5px 10px;
          box-shadow: #777 0 5px 10px;
  padding: 24px;
  border: 1px solid #999;
  border-radius: 10px;
  color: red;
}

.menu__block {
  -webkit-box-shadow: #777 0 5px 10px;
          box-shadow: #777 0 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 280px;
  margin-bottom: 64px;
}

.menu__block img {
  width: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__block--text {
  width: 55%;
  padding: 32px 40px;
  position: relative;
}

.menu__block--text h2 {
  color: #2e4600;
}

.menu__block--text a {
  position: absolute;
  bottom: 24px;
  left: 40px;
  padding: 8px 16px;
  background: #2e4600;
  -webkit-box-shadow: #999 0 5px 5px;
          box-shadow: #999 0 5px 5px;
  border-radius: 4px;
}

.menu__block--text a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.menu__block--text a P {
  margin: 8px 16px;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column__block {
  width: 48%;
  position: relative;
  margin-bottom: 64px;
}

.column__block a {
  display: block;
}

.column__block a img {
  -webkit-box-shadow: #777 0 5px 10px;
          box-shadow: #777 0 5px 10px;
  width: 100%;
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.column__block a h2 {
  color: #fff;
  position: absolute;
  top: 40px;
  left: 40px;
}

.info {
  -webkit-box-shadow: #777 0 5px 10px;
          box-shadow: #777 0 5px 10px;
  padding: 40px;
}

.info h2 {
  color: #2e4600;
}

.info__block {
  margin-top: 24px;
}

.info__date, .info__title {
  display: inline-block;
  margin-bottom: 4px;
}

.info__date {
  width: 120px;
  margin-right: 24px;
}

.info__link {
  color: #000;
}

.info__link:hover {
  color: #2e4600;
}

.info__arrow {
  display: inline-block;
  margin-left: 8px;
}

.contact a {
  -webkit-box-shadow: #777 0 5px 10px;
          box-shadow: #777 0 5px 10px;
  border: 1px solid #999;
  display: block;
  padding: 24px 40px;
  width: 100%;
  color: #000;
}

.contact a h2 {
  color: #2e4600;
}

.contact a:hover {
  background: #2e4600;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.contact a:hover h2 {
  color: #fff;
}

footer {
  margin-top: 120px;
  background: #2e4600;
  color: #fff;
}

footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
}

footer .footer__menu {
  display: block;
  width: 70%;
}

footer .footer__menu--block {
  margin-left: 32px;
  margin-bottom: 40px;
  width: 25%;
}

footer .footer__menu--block h3 {
  font-size: 1.2rem;
  font-weight: normal;
  border-bottom: 1px solid #fff;
}

footer .copy {
  text-align: center;
  margin-top: 40px;
}

.footer-menu-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 64px;
}

.footer-menu-portal {
  margin-top: 24px;
  margin-left: 32px;
}

.footer-menu-portal__title {
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 4px;
}

.fa-external-link-alt {
  margin-left: 4px;
}

.about {
  margin-top: 64px;
}

.about__title {
  padding-bottom: 4px;
  border-bottom: 1px solid #109972;
}

.link {
  display: block;
  margin-top: -96px;
  padding-top: 96px;
}

.notes {
  font-size: 0.8rem;
}

.title {
  padding-bottom: 4px;
  border-bottom: 1px solid #109972;
  margin-bottom: 24px;
}

.eventVideo {
  width: 100%;
  height: calc(1080px * 0.5625);
  margin: 0 auto 80px;
}

.eventVideo__item {
  width: 100%;
  height: 100%;
}

.eventPhoto__unit {
  margin-bottom: 24px;
}

.eventPhoto__unit .photo {
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.eventPhoto__unit .thumb {
  width: 100%;
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}

.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.video__unit {
  width: 520px;
  height: 320px;
  margin-bottom: 24px;
}

.video__unit--midium {
  width: 100%;
  height: 100%;
}

.video__top {
  width: 100%;
  height: 608px;
}

.map-list {
  width: 100%;
  height: 640px;
}

.map {
  width: 100%;
  height: 450px;
}

.guide {
  margin-top: 40px;
}

.guide__title {
  margin-bottom: 4px;
}

.guide__time {
  margin: 4px 0;
}

.access-img {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: auto;
  margin-bottom: 16px;
}

.access-img__item {
  display: inline-block;
  width: 90%;
  height: 720px;
  padding: 0 8px;
  white-space: normal;
  scroll-snap-align: center;
}

.access-img__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  margin-top: 64px;
}

.faq__block {
  margin-top: 40px;
}

.faq__block .question {
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}

.faq__block .question:before {
  content: "Q.";
  display: inline-block;
  width: 32px;
  margin-right: 8px;
}

.faq__block .answer {
  margin-top: 16px;
}

.faq__block .answer:before {
  content: "A.";
  display: inline-block;
  width: 32px;
  margin-right: 8px;
}

.ctForm {
  display: block;
  width: 100%;
  margin: 64px auto;
}

.ctForm__block {
  width: 100%;
  margin-top: 24px;
}

.ctForm__block--left {
  display: inline-block;
  margin: 0;
  margin-right: 8px;
}

.ctForm__block--right {
  display: inline-block;
  color: red;
  font-size: 0.8rem;
}

.ctForm__block input,
.ctForm__block textarea {
  display: block;
  width: 50%;
  padding: 8px;
}

.ctForm__block textarea {
  height: 400px;
}

.error {
  color: red;
}

@media screen and (max-width: 767px) {
  html {
    max-width: 766px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.618rem;
  }
  h3 {
    font-size: 1.414rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  header {
    max-width: 766px;
    height: 64px;
  }
  header .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  header .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header .show {
    display: none;
    position: fixed;
    margin-top: 64px;
    background: #fff;
    width: 100%;
    height: 100vh;
  }
  header .header .show ul {
    height: calc(100% - 64px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header .show ul li {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  header .header .show ul li a {
    color: #333;
  }
  header .header #navbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 64px;
    -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: fixed;
    right: 24px;
    z-index: 200;
    color: #fff;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
  }
  header .header #navbutton:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  header .header #navbutton .menu-trigger {
    display: inline-block;
    position: relative;
    margin: auto;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .header #navbutton .menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(1) {
    top: 15%;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(2) {
    top: 50%;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(3) {
    top: 85%;
  }
  header .header #navbutton .active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
            transform: translateY(12px) rotate(-45deg);
  }
  header .header #navbutton .active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    z-index: -1;
  }
  header .header #navbutton .active span:nth-of-type(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
            transform: translateY(-15px) rotate(45deg);
  }
  .display {
    padding-top: 64px;
    height: 100vh;
  }
  .display__title--sub, .display__title--main {
    width: 100%;
  }
  .display__title--sub {
    font-size: 1.2rem;
    padding-bottom: 16px;
  }
  .display__title--main {
    font-size: 2rem;
    padding-top: 16px;
  }
  .display__copy {
    right: 0;
    padding-top: 64px;
  }
  .info {
    width: 85%;
    margin: 0 auto;
  }
  .info__block {
    margin-top: 32px;
  }
  .info__date, .info__title {
    display: block;
    margin: 0;
  }
  .info__title {
    margin-top: 4px;
  }
  .menu__block {
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .menu__block img {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
  .menu__block--text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px 16px;
  }
  .menu__block--text h2,
  .menu__block--text p {
    padding: 4px 8px;
    display: inline-block;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
  }
  .menu__block--text .sp-button {
    position: static;
    display: inline-block;
    background: #109972;
    font-weight: normal;
  }
  .column {
    margin-top: 96px;
  }
  .column__block {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.8);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .column a img {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .about {
    width: 85%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .link {
    margin-top: -64px;
    padding-top: 64px;
  }
  .eventVideo {
    width: 85%;
    height: calc(100vw * 0.85 * 0.5625);
    margin: 0 auto 40px;
  }
  .eventPhoto__unit .photo {
    height: 400px;
  }
  .eventPhoto__unit .thumb {
    height: 120px;
  }
  .title {
    width: 85%;
    margin: 0 auto 16px;
  }
  .video {
    width: 85%;
    margin: 0 auto;
  }
  .video__unit {
    width: 100%;
    height: 240px;
    margin-bottom: 40px;
  }
  .guide {
    margin-top: 64px;
  }
  .map {
    height: 480px;
  }
  .access-img__item {
    height: 240px;
  }
  .ctForm__block input,
  .ctForm__block textarea {
    width: 100%;
  }
  .content {
    margin-top: 24px;
  }
  .contact {
    width: 85%;
    margin: 96px auto 0;
  }
  .contact a {
    border: none;
    padding: 16px 8px;
  }
  footer .footer {
    width: 85%;
    display: block;
  }
  footer .footer__menu {
    display: block;
    width: 100%;
  }
  footer .footer__menu--block {
    width: 100%;
    margin: 0 0 32px;
  }
  footer .footer__menu--block h3 {
    padding-bottom: 8px;
  }
  .footer-menu-portal {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  html {
    max-width: 1000px;
  }
  header {
    max-width: 1000px;
  }
  header .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  header .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.5rem;
  }
  header .header .show {
    display: none;
    position: fixed;
    background: #fff;
    margin-top: 96px;
    width: 100%;
    height: 100vh;
  }
  header .header .show ul {
    height: calc(100% - 64px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header .show ul li {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  header .header .show ul li a {
    color: #333;
  }
  header .header #navbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 96px;
    -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: fixed;
    right: 24px;
    z-index: 200;
    color: #fff;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
  }
  header .header #navbutton:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  header .header #navbutton .menu-trigger {
    display: inline-block;
    position: relative;
    margin: auto;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .header #navbutton .menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(1) {
    top: 15%;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(2) {
    top: 50%;
  }
  header .header #navbutton .menu-trigger span:nth-of-type(3) {
    top: 85%;
  }
  header .header #navbutton .active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
            transform: translateY(12px) rotate(-45deg);
  }
  header .header #navbutton .active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    z-index: -1;
  }
  header .header #navbutton .active span:nth-of-type(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
            transform: translateY(-15px) rotate(45deg);
  }
  .display__copy {
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .info,
  .contact {
    width: 90%;
    margin: 0 auto;
  }
  .column__block {
    width: 50%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .column__block a img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .contact {
    margin-top: 96px;
  }
  .about {
    width: 90%;
    margin: 40px auto;
  }
  .eventVideo {
    width: 90%;
    height: calc(100vw * 0.9 * 0.5625);
  }
  .title {
    width: 90%;
    margin: 0 auto 16px;
  }
  .swiper-container {
    width: 90%;
  }
  .video__unit {
    width: 90%;
    height: 480px;
    margin: 0 auto 64px;
  }
  .guide {
    margin-top: 64px;
  }
  .faq__block {
    margin-top: 64px;
  }
  .ctForm__block input,
  .ctForm__block textarea {
    width: 80%;
  }
  footer .footer {
    width: 90%;
  }
  footer .footer__menu--block {
    width: 40%;
    margin-left: 24px;
  }
  footer .footer__menu--block h3 {
    padding-bottom: 8px;
  }
}
/*# sourceMappingURL=styles.css.map */