@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* argument */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
#contact {
  /* dislay */
  /* contact */ }
  #contact .errMsg {
    margin-left: 1em;
    padding-bottom: 1px;
    display: block;
    line-height: 1.4;
    text-indent: -.9em; }
  #contact .formError {
    padding-bottom: 13px;
    display: block; }
  #contact .fixed {
    padding-bottom: 0px; }
  #contact .formError .formErrorClose {
    border: solid #252525 2px;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -4px;
    right: -4px;
    color: #efefef;
    background: #333;
    font-weight: bold;
    text-align: center;
    line-height: middle;
    cursor: pointer;
    z-index: 2;
    -webkit-border-radius: 9px 9px 9px 9px;
    -moz-border-radius: 9px 9px 9px 9px;
    -ms-border-radius: 9px 9px 9px 9px;
    -o-border-radius: 9px 9px 9px 9px;
    border-radius: 9px 9px 9px 9px;
    -webkit-box-shadow: 1px -1px 3px #888;
    -moz-box-shadow: 1px -1px 3px #888;
    -ms-box-shadow: 1px -1px 3px #888;
    -o-box-shadow: 1px -1px 3px #888;
    box-shadow: 1px -1px 3px #888; }
  #contact .formError .formErrorClose:hover {
    background: #666; }
  #contact .fixed .formErrorClose {
    display: none; }
  #contact .formError .formErrorContent {
    padding: 6px 10px;
    width: 180px;
    position: relative;
    color: #fff;
    background: #252525;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif;
    font-size: 11px;
    margin: 0 0;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 6px #888;
    -moz-box-shadow: 0px 0px 6px #888;
    -ms-box-shadow: 0px 0px 6px #888;
    -o-box-shadow: 0px 0px 6px #888;
    box-shadow: 0px 0px 6px #888; }
  #contact .fixed .formErrorContent {
    margin-top: .5em;
    background: #f60;
    margin: 0 0 30px 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    border-radius: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .fadeOut {
    opacity: .2;
    filter: alpha(opacity=20); }
  #contact .formError .formErrorArrow {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 20px;
    margin: 0 0 30px 0;
    z-index: 0; }
  #contact .fixed .formErrorArrow {
    display: none; }
  #contact .formError .formErrorArrowBottom {
    margin: -6px;
    top: 0; }
  #contact .fixed .formErrorArrowBottom {
    display: none; }
  #contact .formError .formErrorArrow div {
    margin: 0 auto;
    display: block;
    height: 1px;
    background: #252525;
    line-height: 0px;
    font-size: 0px;
    -webkit-box-shadow: 0px 2px 3px #888;
    -moz-box-shadow: 0px 2px 3px #888;
    -ms-box-shadow: 0px 2px 3px #888;
    -o-box-shadow: 0px 2px 3px #888;
    box-shadow: 0px 2px 3px #888; }
  #contact .formError .formErrorArrowBottom div {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .formError .formErrorArrow .line10 {
    width: 19px; }
  #contact .formError .formErrorArrow .line9 {
    width: 17px; }
  #contact .formError .formErrorArrow .line8 {
    width: 15px; }
  #contact .formError .formErrorArrow .line7 {
    width: 13px; }
  #contact .formError .formErrorArrow .line6 {
    width: 11px; }
  #contact .formError .formErrorArrow .line5 {
    width: 9px; }
  #contact .formError .formErrorArrow .line4 {
    width: 7px; }
  #contact .formError .formErrorArrow .line3 {
    width: 5px; }
  #contact .formError .formErrorArrow .line2 {
    width: 3px; }
  #contact .formError .formErrorArrow .line1 {
    width: 1px; }
  #contact .hid_url {
    display: none; }
  #contact form p.test {
    position: relative;
    color: #C1C0BC; }
  #contact form p.test label {
    position: absolute;
    top: 3px;
    left: 10px;
    font-weight: normal; }
  #contact form p.test br {
    display: none; }
  #contact .formBlock {
    max-width: 890px;
    margin: auto; }
  #contact .txtContact {
    text-align: left;
    font-size: 16px;
    margin: 70px auto 50px; }
  #contact .txtContact01 {
    font-size: 14px;
    margin-bottom: 50px; }
  #contact .tableContact em,
  #contact .txtContact em {
    color: #fb2a2a;
    font-style: normal; }
  #contact .tableContact {
    border-top: #8f8f8f solid 1px;
    border-bottom: #8f8f8f solid 1px;
    width: 100%;
    margin: 30px 0 50px;
    font-size: 15px;
    text-align: left; }
    #contact .tableContact td,
    #contact .tableContact th {
      border-bottom: #8f8f8f solid 1px;
      padding: 20px;
      vertical-align: top; }
    #contact .tableContact th {
      background: #ededed;
      width: 210px;
      font-weight: normal; }
    #contact .tableContact td {
      position: relative; }
    #contact .tableContact input[type="text"],
    #contact .tableContact input[type="email"],
    #contact .tableContact input[type="number"],
    #contact .tableContact input[type="url"] {
      width: 300px;
      height: 23px;
      color: #1a1a1a; }
    #contact .tableContact input[type="text"],
    #contact .tableContact textarea {
      border: #8f8f8f solid 1px; }
    #contact .tableContact .size01 input[type="text"] {
      width: 160px; }
    #contact .tableContact .size02 input[type="text"],
    #contact .tableContact textarea {
      width: 100%; }
    #contact .tableContact textarea {
      height: 150px; }
  #contact .stepImg {
    margin: 30px 0; }
    #contact .stepImg img {
      display: block;
      width: 100%; }
  #contact .stepImg {
    margin: 30px 0; }
  #contact .tabForm {
    margin: 50px auto 0; }
  #contact .tabForm ul {
    font-size: 0;
    letter-spacing: 0;
    margin: 0;
    border-bottom: 2px solid #000; }
  #contact .tabForm ul li {
    display: inline-block;
    width: 50%;
    padding: 0; }
  #contact .tabForm ul li input {
    position: absolute;
    opacity: 0; }
  #contact .tabForm ul li label {
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: 20px; }
  #contact .tabForm ul li input:checked ~ label {
    background: #000;
    color: #fff; }
  #contact .tabForm ul li label:hover {
    opacity: 1;
    background: #555;
    color: #fff; }
  #contact .tableContact input[type="text"],
  #contact .tableContact input[type="url"],
  #contact .tableContact input[type="email"],
  #contact .tableContact textarea {
    padding: 10px;
    height: auto;
    border: 1px solid #aaa; }
  #contact .tableContact select {
    -webkit-appearance: none;
    border: 1px solid #aaa;
    padding: 10px; }
  #contact .tableContact .pRadio {
    display: inline-block;
    vertical-align: middle; }
  #contact .tableContact .pRadio input {
    position: absolute;
    opacity: 0; }
  #contact .tableContact .pRadio label {
    display: inline-block;
    margin: 0 5px 0 0;
    border: 1px solid #aaa;
    padding: 10px 20px; }
  #contact .tableContact .pRadio input:checked ~ label {
    background: #555;
    border-color: #555;
    color: #fff; }
  #contact button {
    height: 60px;
    margin: 20px auto;
    padding: 0 100px;
    background: #eee; }

@font-face {
  font-family: 'DIN';
  src: url("../fonts/DINLig.otf") format("opentype");
  font-weight: 200; }

@font-face {
  font-family: 'DIN';
  src: url("../fonts/DINReg.otf") format("opentype");
  font-weight: 300; }

@font-face {
  font-family: 'DIN';
  src: url("../fonts/DINMed.otf") format("opentype");
  font-weight: 400; }

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

html {
  font-size: 62.5%;
  font-family: "Helvetica", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: .3s; }
  a:hover {
    opacity: 0.7; }

.inner {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0; } }

.wrap {
  overflow: hidden; }

.footer {
  background: url("../images/background.jpg") center center/cover no-repeat;
  padding: 62px 0 60px;
  color: #fff;}
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 32px 0 20px; } }
      
	.footer .footer__top {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
		position: relative; }
	    @media only screen and (max-width: 767px) {
	      .footer .footer__top {
	        -webkit-flex-direction: column;
	        flex-direction: column;
	        padding: 0; } }
	        
	    .footer .footer__top .footer__nav li{
		    float: left;
		    margin-right: 18px;
		    font-size: 15px;
		    font-size: 1.5rem;
		    font-weight: bold;
		    text-decoration: underline;
	    }
	    @media only screen and (max-width: 767px) {
	      .footer__top .copyright {
	        order: 4;
	        margin: 30px 0 0; } }
    .footer .footer__top .copyright p {
		font-size: 14px;
		font-size: 1.4rem;
		color: #DEE0DF; }
		@media only screen and (max-width: 767px) {
		    .footer .footer__top .copyright p {
		      font-size: 12px;
		      font-size: 1.2rem; } }


.ttl02 {
  text-align: center;
  font-family: "Helvetica", "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif; }
  .ttl02.is-active small {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px); }
  .ttl02.is-active span {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px); }
  .ttl02 small {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: .046em;
    display: block;
    margin: 0 0 25px;
    font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 200;
    opacity: 0;
    transition: 1s;
    transition-delay: 0.5s;
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    transform: translate(0, 30px); }
    @media only screen and (max-width: 767px) {
      .ttl02 small {
        font-size: 24px;
        font-size: 2.4rem;
        margin: 0 0 36px; } }
  .ttl02 span {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: .01em;
    display: block;
    opacity: 0;
    transition: 1s;
    transition-delay: 1s;
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    transform: translate(0, 30px); }
    @media only screen and (max-width: 767px) {
      .ttl02 span {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.5; } }

.text01 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .046em;
  line-height: 1.375;
  margin: 55px 0 0;
  text-align: center;
  font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 200;
  opacity: 0;
  transition: 1s;
  transition-delay: 1.5s;
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
  transform: translate(0, 30px); }
  @media only screen and (max-width: 767px) {
    .text01 {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: .01em;
      line-height: 2.142;
      text-align: justify;
      margin: 40px 0 0; } }
  .text01 em {
    font-weight: bold; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

.vegas-wrapper,
.vegas-overlay,
.vegas-timer,
.vegas-slide,
.vegas-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0; }

.vegas-overlay {
  opacity: .5;
  background: transparent url("https://shirakaba-lake.com/kohan-no-jikan-2020/css/overlays/02.png") center center repeat; }

.vegas-timer {
  top: auto;
  bottom: 0;
  height: 2px; }

.vegas-timer-progress {
  width: 0%;
  height: 100%;
  background: white;
  transition: width ease-out; }

.vegas-timer-running .vegas-timer-progress {
  width: 100%; }

.vegas-slide,
.vegas-slide-inner {
  margin: 0;
  padding: 0;
  background: transparent center center no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity; }

body .vegas-container {
  overflow: hidden !important;
  position: relative; }

.vegas-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto; }

body.vegas-container {
  overflow: auto;
  position: static;
  z-index: -2; }

body.vegas-container > .vegas-timer,
body.vegas-container > .vegas-overlay,
body.vegas-container > .vegas-slide {
  position: fixed;
  z-index: -1; }

/* Target Safari IOS7+ in order to add 76px */
/*******************************************/
/* blur transition */
/*******************************************/
.vegas-transition-blur,
.vegas-transition-blur2 {
  opacity: 0;
  -webkit-filter: blur(32px) brightness(1.01);
  filter: blur(32px) brightness(1.01); }

.vegas-transition-blur-in,
.vegas-transition-blur2-in {
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1.01);
  filter: blur(0px) brightness(1.01); }

.vegas-transition-blur2-out {
  opacity: 0; }

/*******************************************/
/* burn transition */
/*******************************************/
.vegas-transition-burn,
.vegas-transition-burn2 {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%); }

.vegas-transition-burn-in,
.vegas-transition-burn2-in {
  opacity: 1;
  -webkit-filter: contrast(100%) saturate(100%);
  filter: contrast(100%) saturate(100%); }

.vegas-transition-burn2-out {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%); }

/*******************************************/
/* fade transition */
/*******************************************/
.vegas-transition-fade,
.vegas-transition-fade2 {
  opacity: 0; }

.vegas-transition-fade-in,
.vegas-transition-fade2-in {
  opacity: 1; }

.vegas-transition-fade2-out {
  opacity: 0; }

/*******************************************/
/* flash transition */
/*******************************************/
.vegas-transition-flash,
.vegas-transition-flash2 {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25); }

.vegas-transition-flash-in,
.vegas-transition-flash2-in {
  opacity: 1;
  -webkit-filter: brightness(1);
  filter: brightness(1); }

.vegas-transition-flash2-out {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25); }

/*******************************************/
/* negative transition */
/*******************************************/
.vegas-transition-negative,
.vegas-transition-negative2 {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%); }

.vegas-transition-negative-in,
.vegas-transition-negative2-in {
  opacity: 1;
  -webkit-filter: invert(0);
  filter: invert(0); }

.vegas-transition-negative2-out {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%); }

/*******************************************/
/* slideDown transition */
/*******************************************/
.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

.vegas-transition-slideDown2-out {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

/*******************************************/
/* slideLeft transition */
/*******************************************/
.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); }

.vegas-transition-slideLeft2-out {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

/*******************************************/
/* slideRight transition */
/*******************************************/
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); }

.vegas-transition-slideRight2-out {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

/*******************************************/
/* slideUp transition */
/*******************************************/
.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

.vegas-transition-slideUp2-out {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

/*******************************************/
/* swirlLeft transition */
/*******************************************/
.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0; }

.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  opacity: 1; }

.vegas-transition-swirlLeft2-out {
  -webkit-transform: scale(2) rotate(-35deg);
  transform: scale(2) rotate(-35deg);
  opacity: 0; }

/*******************************************/
/* swirlRight transition */
/*******************************************/
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
  -webkit-transform: scale(2) rotate(-35deg);
  transform: scale(2) rotate(-35deg);
  opacity: 0; }

.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  opacity: 1; }

.vegas-transition-swirlRight2-out {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0; }

/*******************************************/
/* zoomIn transition */
/*******************************************/
.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0; }

.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.vegas-transition-zoomIn2-out {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0; }

/*******************************************/
/* zoomOut transition */
/*******************************************/
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0; }

.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.vegas-transition-zoomOut2-out {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0; }

/*******************************************/
/* kenburns animation */
/*******************************************/
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out;
  animation: kenburns ease-out; }

@-webkit-keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

/*******************************************/
/* kenburnsDownLeft animation */
/*******************************************/
.vegas-animation-kenburnsDownLeft {
  -webkit-animation: kenburnsDownLeft ease-out;
  animation: kenburnsDownLeft ease-out; }

@-webkit-keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsDownRight animation */
/*******************************************/
.vegas-animation-kenburnsDownRight {
  -webkit-animation: kenburnsDownRight ease-out;
  animation: kenburnsDownRight ease-out; }

@-webkit-keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsDown animation */
/*******************************************/
.vegas-animation-kenburnsDown {
  -webkit-animation: kenburnsDown ease-out;
  animation: kenburnsDown ease-out; }

@-webkit-keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsLeft animation */
/*******************************************/
.vegas-animation-kenburnsLeft {
  -webkit-animation: kenburnsLeft ease-out;
  animation: kenburnsLeft ease-out; }

@-webkit-keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsRight animation */
/*******************************************/
.vegas-animation-kenburnsRight {
  -webkit-animation: kenburnsRight ease-out;
  animation: kenburnsRight ease-out; }

@-webkit-keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsUpLeft animation */
/*******************************************/
.vegas-animation-kenburnsUpLeft {
  -webkit-animation: kenburnsUpLeft ease-out;
  animation: kenburnsUpLeft ease-out; }

@-webkit-keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsUpRight animation */
/*******************************************/
.vegas-animation-kenburnsUpRight {
  -webkit-animation: kenburnsUpRight ease-out;
  animation: kenburnsUpRight ease-out; }

@-webkit-keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

/*******************************************/
/* kenburnsUp animation */
/*******************************************/
.vegas-animation-kenburnsUp {
  -webkit-animation: kenburnsUp ease-out;
  animation: kenburnsUp ease-out; }

@-webkit-keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }

@keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%); }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0); } }



/* [ body ]
-------------------------------------------------*/
h1.title{
	text-align: center;
	font-family: "Helvetica Neue", "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 57px;
	font-size: 5.7rem;
	font-weight: 600;
	letter-spacing: .02em;
	display: block;
	margin: 0 0 60px; }
	@media only screen and (max-width: 767px) {
		h1.title {
        font-size: 37px;
		font-size: 3.7rem;
		line-height: 1.2em;
		padding: 0 20px;
		margin: 0 0 36px; } }
		
body.index main #about,
body.index main #ticket,
body.index main #crowdfunding,
body.index main #artist,
body.index main #timetable,
body.index main #contents,
body.index main #workshop,
body.index main #access{
	padding: 160px 0;
	position: relative;
	z-index: +2; }
	@media only screen and (max-width: 767px) {
		body.index main #about,
		body.index main #ticket,
		body.index main #crowdfunding,
		body.index main #artist,
		body.index main #timetable,
		body.index main #contents,
		body.index main #workshop,
		body.index main #access{
			padding: 80px 0; } }
body.index main #credit {
	padding: 160px 0 0px;
	position: relative;
	z-index: +2; }
	@media only screen and (max-width: 767px) {
		body.index main #credit {
			padding: 50px 0; } }

body.index main section .inner {
	max-width: 1020px; }
	
body.index main .mv {
  position: relative;
  z-index: 10;
  height: 100vh; }
body.index main .mv .slider {
    width: 100vw;
    height: 100vh; }
body.index main .mv__wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    body.index main .mv__wrap.is-active .address,
	body.index main .mv__wrap.is-active .next,
    body.index main .mv__wrap.is-active .date,
	ody.index main .mv__wrap.is-active .about,
    body.index main .mv__wrap.is-active .logo-center,
    body.index main .mv__wrap.is-active .introduction,
    body.index main .mv__wrap.is-active .weather {
      opacity: 1; }
    body.index main .mv__wrap .inner {
      position: relative;
      height: 100%; }
    body.index main .mv__wrap .address {
      position: absolute;
      top: 45px;
      left: 40px;
      width: 333px;
      opacity: 0;
      transition: 1s;
      transition-delay: 2s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .address {
          width: 224px;
          top: 24px;
          left: 30px;
          display: none; } }


    body.index main .mv__wrap .next {
      position: absolute;
      top: 45px;
      left: 40px;
      width: 333px;
      opacity: 0;
      transition: 1s;
      transition-delay: 2s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .next {
          width: 224px;
          top: 24px;
          left: 30px;} }
	body.index main .mv__wrap .next span {
		  color: #fff;
          font-size: 22px;
          font-size: 2.2rem;
          letter-spacing: .01em;
          font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
          font-weight: 700;
          margin-top: 19px;
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            body.index main .mv__wrap .next span {
              font-size: 22px;
              font-size: 2.2rem; } }

    body.index main .mv__wrap .date {
      position: absolute;
      top: 45px;
      right: 40px;
      width: 250px;
      opacity: 0;
      transition: 1s;
      transition-delay: 2s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .date {
          width: 198px;
          top: 24px;
          left: 30px;
          display: none; } }
    body.index main .mv__wrap .logo-center {
      position: absolute;
      width: 800px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: 1s;
      transition-delay: 2.3s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .logo-center {
          width: 330px; } }
    body.index main .mv__wrap .introduction {
      position: absolute;
      top: 95%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 250px;
      opacity: 0;
      transition: 1s;
      transition-delay: 2.9s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .introduction {
          top: 91%;
     	  left: 50%;
          width:180px; } }
    body.index main .mv__wrap .weather {
      position: absolute;
      right: 40px;
      bottom: 42px;
      color: #fff;
      opacity: 0;
      transition: 1s;
      transition-delay: 2.6s; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__wrap .weather {
          right: 25px;
          bottom: 124px; } }
      body.index main .mv__wrap .weather__top {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        -webkit-align-items: center;
        align-items: center;
        margin: 0 0 5px; }
        body.index main .mv__wrap .weather__top i {
          display: block;
          width: 25px;
          margin-right: 9px; }
          @media only screen and (max-width: 767px) {
            body.index main .mv__wrap .weather__top i {
              width: 36px;
              margin-right: 16px; } }
        body.index main .mv__wrap .weather__top span {
          font-size: 25px;
          font-size: 2.5rem;
          letter-spacing: .01em;
          font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
          font-weight: 300;
          margin-top: 7px;
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            body.index main .mv__wrap .weather__top span {
              font-size: 22px;
              font-size: 2.2rem; } }
      body.index main .mv__wrap .weather__bottom {
        text-align: right; }
        @media only screen and (max-width: 767px) {
          body.index main .mv__wrap .weather__bottom {
            margin-top: 10px; } }
        body.index main .mv__wrap .weather__bottom span {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: .01em;
          line-height: 1.7;
          display: block; }
          @media only screen and (max-width: 767px) {
            body.index main .mv__wrap .weather__bottom span {
              font-size: 14px;
              font-size: 1.4rem; } }



/* [ news ]
-------------------------------------------------*/
body.index main .news{
	z-index: 9;
	background-color: #65B082;
	color: #fff;
	line-height: 2rem;
	padding: 130px 0 80px 0; }
	@media only screen and (max-width: 767px) {
		body.index main .news{
			padding: 40px 0;
		}
	}
	body.index main .news .inner{
		width: 780px;
		margin: 0 auto; }
		@media only screen and (max-width: 767px) {
			body.index main .news .inner{
				width: 100%;
				padding: 0 20px; } }
	body.index main .news h3{
		font-size: 12px;
		font-weight: bold;
		margin-bottom: 8px; }
	body.index main .news dl{
		padding: 12px 0;
		display: -webkit-flex;
		display: flex; }
		@media only screen and (max-width: 767px) {
			body.index main .news dl{
				font-size: 13px;
				font-size: 1.3rem;
				flex-direction: column; } }
	body.index main .news dl:nth-child(2),
	body.index main .news dl:nth-child(3),
	body.index main .news dl:nth-child(4){
		border-top: 1px solid rgba(255,255,255,0.66); }
		body.index main .news dl dt{
			font-weight: 100;
			margin-right: 24px; }
			@media only screen and (max-width: 767px) {
				body.index main .news dl dt{
					margin-bottom: 4px; } }
		body.index main .news dl dd{
			clear:both;
			float: right;}



/* [ about ]
-------------------------------------------------*/
body.index main .about{
	background:url(../images/back.jpg) center; background-size: contain;
	z-index: 8; }
body.index main .about h2{
	text-align: center;
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: 700;
	letter-spacing: .01em;
	display: block;
	margin: 0 0 32px; }
	@media only screen and (max-width: 767px) {
		body.index main .about h2{
			font-size: 20px;
			font-size: 2rem;
			line-height: 1.4em;
			padding: 0 20px; } }
body.index main .about .box_about{
	width: 700px;
	margin: 0 auto;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 2em;
	text-align: justify; }
	@media only screen and (max-width: 767px) {
		body.index main .about .box_about{
			width: 100%;
			font-size: 14px;
			font-size: 1.4rem;
			padding: 0 20px; } 
		body.index main .about .box_about p{
			line-height:3.1rem!important;
			padding: 0 30px; } }
body.index main .box_about_image .about__list{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 60px 0 10px; }
	@media only screen and (max-width: 767px) {
		body.index main .box_about_image {
			display: block;
			margin: 36px 0 0; } }
body.index main .box_about_image li {
	width: 49.5%;
	margin: 0 0 1%; }
	@media only screen and (max-width: 767px) {
		body.index main .box_about_image{
			padding: 0 20px;}
		body.index main .box_about_image li {
			width: 50%;
			margin: 0; } }
body.index main .box_about_image li {
	display: block; }
body.index main .box_about_image p {
	}
	@media only screen and (max-width: 767px) {
		body.index main .box_about_image p {
			padding: 10px 20px;
			line-height: 1.5em; } }
      


/* [ ticket & schedule ]
-------------------------------------------------*/
body.index main #ticket {
	font-family: "Helvetica Neue", "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	background: url("../images/green_bg.jpg") center center/cover no-repeat;
	background-attachment: fixed !important;
	color: #fff; }
	body.index main #ticket .ticket{
		background:url(../images/back2.jpg) center; background-size: contain;
		color: #000;
		margin-bottom: 30px;
		padding: 50px 60px; }
		@media only screen and (max-width: 767px) {
			body.index main #ticket .ticket{
				margin: 20px;
				padding: 30px 20px;} }		
		body.index main #ticket .ticket .ticket_name{
			font-size: 36px;
			font-size: 3.6rem;
			font-weight: 600;
			font-style: italic;
			margin-bottom: 15px; }
			@media only screen and (max-width: 767px) {
				body.index main #ticket .ticket .ticket_name{
					font-size: 30px;
					font-size: 3rem;
					line-height: 1.1em;
					margin-bottom: 10px;} }
			body.index main #ticket .ticket .ticket_name2{
				font-size: 24px;
				line-height: 1em;
				font-size: 2.4rem;
				margin-right: 24px;
				font-weight: 400;
				font-style: normal;
				margin-bottom: 24px; }
				@media only screen and (max-width: 767px) {
					body.index main #ticket .ticket .ticket_name2{
						line-height: 1em;
						margin-right: 16px;
						font-size: 16px;
						font-size: 1.6rem;
						margin-bottom: 15px; } }
				body.index main #ticket .ticket .ticket_name span.price{
					float: right;
					text-align: right;
					margin: 0;
					font-size: 30px !important;
					font-size: 3rem !important; }
					@media only screen and (max-width: 767px) {
						body.index main #ticket .ticket .ticket_name span.price {
							clear: both;
							text-align: left;
							font-size: 16px;
							font-size: 1.6rem; } }
		body.index main #ticket .box_ticket_image{
			display: -webkit-flex;
			display: flex; }
			@media only screen and (max-width: 767px) {
				body.index main #ticket .box_ticket_image{
					flex-direction: column; } }
			body.index main #ticket .box_ticket_image .ticket__image{
				flex-shrink: 2; }
			body.index main #ticket .box_ticket_image .ticket__list{
				padding: 0px 25px 20px;
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: space-between;
				justify-content: space-between;
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;}
				body.index main #ticket .box_ticket_image .ticket__list li {}
					@media only screen and (max-width: 767px) {
						body.index main #ticket .box_ticket_image .ticket__list li {
							display: block;
							width: 100%;
							margin: 0;} }
					body.index main #ticket .box_ticket_image .ticket__list li.ticket_date{
						width: 60%;
						text-align: right;
						font-style: italic;
						font-size: 36px;
						font-size: 3.6rem;
						font-weight: 800;
						letter-spacing: .02em;
						padding: 10px 10px 0; }
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list li.ticket_date{
								text-align: center !important;
								margin: 0 auto;
								padding: 20px 0 10px;
								font-size: 27px;
								font-size: 2.7rem;} }
					body.index main #ticket .box_ticket_image .ticket__list li.entry{
						padding: 10px 10px 0; }
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list li.entry{
								text-align: center !important;
								margin: 0 auto;} }
					body.index main #ticket .box_ticket_image .ticket__list .btn,
					body.index main #ticket .box_ticket_image .ticket__text .btn{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 180px;
						height: 45px;
						border-radius: 16px;
						background: #65B082;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn,
							body.index main #ticket .box_ticket_image .ticket__text .btn {
								width: 180px;
								height: 45px;
								border-radius: 16px;
								margin: 0px auto 0px auto;} }

					body.index main #ticket .box_ticket_image .ticket__list .btn-soon,
					body.index main #ticket .box_ticket_image .ticket__text .btn-soon{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 180px;
						height: 45px;
						border-radius: 16px;
						background: #B2B2B2;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn-soon,
							body.index main #ticket .box_ticket_image .ticket__text .btn-soon {
								width: 180px;
								height: 45px;
								border-radius: 16px;
								margin: 0px auto 0px auto;} }

					body.index main #ticket .box_ticket_image .ticket__list .btn2,
					body.index main #ticket .box_ticket_image .ticket__text .btn2{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 260px;
						height: 45px;
						border-radius: 16px;
						background: #65B082;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn2,
							body.index main #ticket .box_ticket_image .ticket__text .btn2 {
								width: 230px;
								height: 45px;
								border-radius: 16px;
								margin: 0px auto 0px auto;} }

					body.index main #ticket .box_ticket_image .ticket__list .btn-soon2,
					body.index main #ticket .box_ticket_image .ticket__text .btn-soon2{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 260px;
						height: 45px;
						border-radius: 16px;
						background: #B2B2B2;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn-soon2,
							body.index main #ticket .box_ticket_image .ticket__text .btn-soon2 {
								width: 230px;
								height: 45px;
								border-radius: 16px;
								margin: 0px auto 0px auto;} }

					body.index main #ticket .box_ticket_image .ticket__list .btn3,
					body.index main #ticket .box_ticket_image .ticket__text .btn3{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 340px;
						height: 55px;
						border-radius: 20px;
						background: #65B082;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn3,
							body.index main #ticket .box_ticket_image .ticket__text .btn3 {
								width: 340px;
								height: 55px;
								border-radius: 20px;
								margin: 0px auto 0px auto;} }

					body.index main #ticket .box_ticket_image .ticket__list .btn-soon3,
					body.index main #ticket .box_ticket_image .ticket__text .btn-soon3{
						display: -webkit-flex;
						display: flex;
						-webkit-align-items: center;
						align-items: center;
						-webkit-justify-content: center;
						justify-content: center;
						color: #fff;
						font-size: 14px;
						font-size: 1.4rem;
						letter-spacing: .01em;
						width: 340px;
						height: 55px;
						border-radius: 20px;
						background: #B2B2B2;}
						@media only screen and (max-width: 767px) {
							body.index main #ticket .box_ticket_image .ticket__list .btn-soon3,
							body.index main #ticket .box_ticket_image .ticket__text .btn-soon3 {
								width: 340px;
								height: 55px;
								border-radius: 20px;
								margin: 0px auto 0px auto;} }

			body.index main #ticket .box_ticket_image .ticket__text{
				width: 100%;
				display: -webkit-flex;
				display: flex;
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
				line-height: 2rem;
				padding-left: 48px; }
				@media only screen and (max-width: 767px) {
					body.index main #ticket .box_ticket_image .ticket__text{
						padding: 0; } }
				body.index main #ticket .box_ticket_image .ticket__text p{
					margin-bottom: 24px;}
					@media only screen and (max-width: 767px) {
						body.index main #ticket .box_ticket_image .ticket__text p{ 
							padding: 24px 0 0; 
						} }
	body.index main #ticket .ticket_goto{
		position: relative;
		background-color: #fff;
		color: #000;
		border: solid 2px #000;
		margin-top: 160px;
		margin-bottom: 30px;
		padding: 60px; }
		@media only screen and (max-width: 767px) {
			body.index main #ticket .ticket_goto{
				margin: 100px 20px 20px;
				padding: 60px 20px 30px;} }
		body.index main #ticket .ticket_goto .goto{
			position: absolute;
			left: 0;
			left: 50%;
		    transform: translate(-50%, -50%);
		    -webkit-transform: translate(-50%, -50%);
		    -ms-transform: translate(-50%, -50%);
			height: 80px; }
			@media only screen and (max-width: 767px) {
				body.index main #ticket .ticket_goto .goto{
					height: 60px; }}
		body.index main #ticket .ticket_goto h3{
			font-weight: bold;
			font-size: 24px;
			font-size: 2.4rem;
			margin: 66px 0 36px; }
			@media only screen and (max-width: 767px) {
				body.index main #ticket .ticket_goto h3{
					font-size: 24px;
					font-size: 2.4rem;} }
		body.index main #ticket .ticket_goto .box_ticket_image{
			display: -webkit-flex;
			display: flex;
			-webkit-justify-content: space-between;
			justify-content: space-between; }
			body.index main #ticket .ticket_goto .box_ticket_image .ticket__image{
				flex: 2;
				margin-bottom: 24px;
				line-height: 2rem; }
			body.index main #ticket .ticket_goto .box_ticket_image .ticket__text{
				flex: 1;
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: space-between;
				justify-content: space-between;}
			body.index main #ticket .ticket_goto .box_ticket_image .ticket__text a{
				flex: 1;
				margin: 0 10px;
			}
				@media only screen and (max-width: 767px) {
					body.index main #ticket .box_ticket_image .ticket__list li {
						display: block;
						width: 100%;
						margin: 0;} }
	
body.index main #ticket .box_ticket_image .note{
	padding: 20px 0 0 0;
	font-weight: bold;
	line-height: 1.5em;
	text-decoration: underline;
	text-align: center; }
	@media only screen and (max-width: 767px) {
		body.index main #ticket .box_ticket_image .note {
			font-size: 11px;
			font-size: 1.1rem;} }
	
body.index main #ticket .plus{
	display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content:center;
    justify-content: center;
    -ms-flex-align: center;
   -webkit-box-align: center;
   -webkit-align-items: center;
   align-items: center;
   margin: 55px auto; }

body.index main #ticket .plus img{
	width: 42px;
	text-align: center; }
	
body.index main #ticket .box_ticket_image h4{
	text-align: center;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.7em;
	font-weight: 700;
	margin: -40px 0 60px 0; }
	@media only screen and (max-width: 767px) {
		body.index main #ticket .box_ticket_image h4{
			margin:-10px 0 20px 0;
			font-size: 15px;
			font-size: 1.5rem;
			} }

body.index main #ticket .caution,
body.index main #access .caution{
	max-width: 660px;
	margin: 0 auto;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: normal;
	padding: 10px;
	line-height: 1.7em; }
	@media only screen and (max-width: 767px) {
		body.index main #ticket .caution,
		body.index main #access .caution{
			font-size: 11px;
			font-size: 1.1rem;} }



/* [ crowdfunding ]
-------------------------------------------------*/
body.index main .crowdfunding{
	background:url(../images/back2.jpg) center; background-size: contain;}
	body.index main .crowdfunding .inner {
		max-width: 1080px;
	line-height: 2em!important;}

body.index main .crowdfunding .inner .box_about{
	width: 700px;
	margin: 0 auto;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 2em!important;
	text-align: justify; }
	@media only screen and (max-width: 767px) {
		body.index main .crowdfunding .inner .box_about{
			width: 100%;
			font-size: 14px;
			font-size: 1.4rem;
			padding: 0 20px; } 
		body.index main .about .box_about p{
			line-height:3.1rem!important;
			padding: 0 30px; } }
body.index main .crowdfunding .inner .box_about_image .about__list{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 60px 0 10px; }
	@media only screen and (max-width: 767px) {
		body.index main .crowdfunding .inner .box_about_image {
			display: block;
			margin: 36px 0 0; } }
body.index main .crowdfunding .inner .box_about_image li {
	width: 49.5%;
	margin: 0 0 1%; }
	@media only screen and (max-width: 767px) {
		body.index main .crowdfunding .inner .box_about_image{
			padding: 0 20px;}
		body.index main .crowdfunding .inner .box_about_image li {
			width: 50%;
			margin: 0; } }
body.index main .crowdfunding .inner .box_about_image li {
	display: block; }
body.index main .crowdfunding .inner .box_about_image p {
	}
	@media only screen and (max-width: 767px) {
		body.index main .crowdfunding .inner .box_about_image p {
			padding: 10px 20px;
			line-height: 1.5em; } }


			body.index main .crowdfunding .inner p{
				max-width: 780px;
				margin: 0 auto;
				margin-bottom: 24px;
					line-height: 2em!important;}
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding .inner p{
						padding: 20px;} }
		body.index main .crowdfunding__list {
			display: -webkit-flex;
			display: flex;
			-webkit-justify-content: center;
			justify-content: center;
			-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
			max-width: 800px;
			margin: 0 auto;}
			@media only screen and (max-width: 767px) {
				body.index main .crowdfunding__list {
					display: -webkit-flex;
			display: flex;
			-webkit-justify-content: center;
			justify-content: center;
			-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
					display: block; } }
			body.index main .crowdfunding__list li {
				width: 93%;
				margin: 0 0 40px;
				display: block; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li {
						width: 83%;
						text-align:center!important;
						margin: 0 auto 50px!important;} }			
			body.index main .crowdfunding__list li:hover {
				opacity: 1; }
			body.index main .crowdfunding__list li:hover .img-box .img {
				-webkit-transform: scale(1);
				-moz-transform: scale(1);
				-ms-transform: scale(1);
				-o-transform: scale(1);
				transform: scale(1); }
			body.index main .crowdfunding__list li .img-box {
				position: relative;
				height:500px;
				overflow: hidden; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .img-box {
						height: 400px; } }
			body.index main .crowdfunding__list li:hover .img-box2 .img {
				-webkit-transform: scale(1);
				-moz-transform: scale(1);
				-ms-transform: scale(1);
				-o-transform: scale(1);
				transform: scale(1); }
			body.index main .crowdfunding__list li .img-box2 {
				position: relative;
				height:1000px;
				overflow: hidden; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .img-box2 {
						height: 600px; } }		
			body.index main .crowdfunding__list li .img {
				height: 400px;
				position: relative;
				transition: 0.5s;
				-webkit-transform: scale(1.1);
				-moz-transform: scale(1.1);
				-ms-transform: scale(1.1);
				-o-transform: scale(1.1);
				transform: scale(1.1); }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .img-box.img {
						height: 500px; } }
			body.index main .crowdfunding__list li .img-box2 .img {
				height: 1000px;
				position: relative;
				transition: 0.5s;
				-webkit-transform: scale(1.1);
				-moz-transform: scale(1.1);
				-ms-transform: scale(1.1);
				-o-transform: scale(1.1);
				transform: scale(1.1); }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .img-box2 .img {
						height: 600px; } }	
			body.index main .crowdfunding__list li .text {
				margin: 9px 0 0;
				color: #000;
				font-family: "Helvetica Neue", "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .text {
						margin: 20px 0 36px;
						padding: 0 20px; } }
			body.index main .crowdfunding__list li .text .jp {
				display: block;
				font-size: 14px;
				font-size: 1.4rem;
				font-weight: 700;
				letter-spacing: .046em;
				margin: 24px 0 5px; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding__list li .text .jp {
						font-size: 18px;
						font-size: 1.8rem;
						letter-spacing: .01em;
						line-height: 1.6666;
						margin: 4px 0 8px; } }
			body.index main .crowdfunding .goto{
				max-width: 800px;
				margin: 20px auto;
				border: 2px solid #000;
				padding: 50px 100px; }
				@media only screen and (max-width: 767px) {
					body.index main .crowdfunding .goto {
						width: 90%;
						border: 1px solid #000;
						margin: 40px auto;
						padding: 40px 20px; } }	
			body.index main .crowdfunding .goto p{
				font-size: 16px;
				font-size: 1.6rem;
				font-weight: 700;
				letter-spacing: .01em;
				line-height: 1.7em;
				margin-bottom: 20px; }



/* [ artist ]
-------------------------------------------------*/
body.index main #artist{
	color: #fff;
	background: url("../images/green-yellow4.jpg") center center/cover no-repeat;
	background-attachment: fixed;}

.artist .artist__box {
	margin: 0 0 160px;
	font-weight: 600;
	background-color:rgb(255, 255, 255, 0.8);
	color: #000;
	padding: 40px 35px; }
	@media only screen and (max-width: 767px) {
		.access__box {
			margin: 0px; 
			padding: 30px 20px;}} 

	body.index main .artist .artist__box .ticket_date{
		text-align: center;
		font-style: italic;
		font-weight: 600;
		letter-spacing: .02em;
		font-size: 44px;
		font-size: 4.4rem; }
		@media only screen and (max-width: 767px) {
			body.index main .artist .artist__box .ticket_date{
				font-size: 36px;
				font-size: 3.6rem;} }
	body.index main .artist .details{
		text-align: center;
		padding-bottom:50px;
		font-style: ;
		font-weight: 600;
		letter-spacing: .02em;
		font-size: 20px;
		font-size: 2rem; }
		@media only screen and (max-width: 767px) {
			body.index main .artist .artist__box .details{
				font-size: 17px;
				font-size: 1.7rem;} }

	body.index main .artist .artist__box .contents__list{
		margin-bottom: 72px;}
		body.index main .artist .artist__box .contents__list li{
			color: #000;
			margin: 0px;
			padding: 0px;
			width: 39%; }
			@media only screen and (max-width: 767px) {
				body.index main .artist .artist__box .contents__list li{
					color: #000;
					width: 90%!important;
					margin: 0 auto 50px; }
				body.index main .artist .artist__box .contents__list li img{
					width: 100%;}}
		body.index main .artist .artist__box .contents__list h2{
			color: #000;
			margin: 20px 0;
			font-size: 24px;
			font-size: 2.4rem;
			font-weight: bold; }
		body.index main .artist .artist__box .contents__list p{
			color: rgba(0,0,0,0.88);
			line-height: 2rem;
			margin-bottom: 24px;}
		body.index main .artist .artist__box .contents__list a{
			color: rgba(0,0,0,0.88);
			text-decoration: underline;}
	body.index main .artist .artist__box .day2{
		-webkit-justify-content: center;
		justify-content: center; }
		body.index main .artist .artist__box .day2 li{
			margin: 0 1.5%;
		}
		@media only screen and (max-width: 767px) {
			body.index main .artist .artist__box.artist__box .day2 li {
				width: 90%;
				margin: 0 auto 50px; }
			body.index main .artist .artist__box .day2 li img{
				width: 100%;}}
	body.index main .artist .artist__box .dj,
	body.index main .artist .artist__box .oact{
		margin: 0 auto;
		width: 80%;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap; }
		@media only screen and (max-width: 767px) {
			body.index main .artist .artist__box.dj,
			body.index main .artist .artist__box .oact{
				display: block;} }
		body.index main .artist .artist__box .dj .dj__image,
		body.index main .artist .artist__box .oact .oact__image{
			flex: 1; }
			@media only screen and (max-width: 767px) {
				body.index main .artist .artist__box .dj .dj__image,
				body.index main .artist .artist__box .oact .oact__image{
				text-align: center;} }
		body.index main .artist .artist__box .dj .dj__text{
			flex: 2;
			padding: 0 3%; }
			@media only screen and (max-width: 767px) {
				body.index main .artist .artist__box .dj .dj__text,
				body.index main .artist .artist__box .oact .oact__text{
					margin-top: 1.5em; }}
		body.index main .artist .artist__box .oact .oact__text{
			flex: 3;
			padding: 0 3%; }
			body.index main .artist .artist__box .dj .dj__text h3{
				font-size: 24px;
				font-size: 2.4rem;
				margin-bottom: 1.8rem;
				font-weight: bold; }
			body.index main .artist .artist__box .oact .oact__text h3{
				font-size: 18px;
				font-size: 1.8rem;
				margin-bottom: 1.8rem;
				font-weight: bold; }
			body.index main .artist .artist__box .dj .dj__text p,
			body.index main .artist .artist__box .oact .oact__text p{
				line-height: 1.7em;}
			body.index main .artist .artist__box .dj .dj__text a,
			body.index main .artist .artist__box .oact .oact__text a{
				word-wrap:break-word;
				text-decoration: underline; }


/* [ contents ]
-------------------------------------------------*/
body.index main .contents{
	background:url(../images/back2.jpg) center; background-size: contain;}

body.index main .contents .inner {
	max-width: 880px; }

body.index main .contents__list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 66px 0 0; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list {
			display: block;
			margin: 62px 0 0; } }
body.index main .contents__list li {
	width: 47.5%;
	margin: 0 0 40px; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li {
			width: 100%;
			margin: 0 0 50px; } }
body.index main .contents__list li {
	display: block; }
body.index main .contents__list li:hover {
	opacity: 1; }
body.index main .contents__list li:hover .img-box .img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1); }
body.index main .contents__list li .img-box {
	position: relative;
	height: 250px;
	overflow: hidden; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .img-box {
			height: 232px; } }
body.index main .contents__list li .img-box:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: +1; }
body.index main .contents__list li .img-box:after {
	content: "";
	width: 134px;
	height: 22px;
	display: block;
	/*background: url("../images/top/commingsoon.png") center center/cover no-repeat;*/
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: +1; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .img-box:after {
			width: 192px;
			height: 32px; } }
body.index main .contents__list li .comingsoon {
	position: relative;
	height: 250px;
	overflow: hidden; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .comingsoon {
			height: 232px; } }
body.index main .contents__list li .comingsoon:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: +1; }
body.index main .contents__list li .comingsoon:after {
	content: "";
	width: 134px;
	height: 22px;
	display: block;
	background: url("../images/top/commingsoon.png") center center/cover no-repeat;
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: +1; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .comingsoon:after {
			width: 192px;
			height: 32px; } }
body.index main .contents__list li .img {
	height: 250px;
	position: relative;
	transition: 1s;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1); }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .img {
			height: 232px; } }
body.index main .contents__list li .text {
	margin: 12px 0 0;
	color: #000000; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .text {
			margin: 20px 0 36px;
			padding: 0 20px; } }
body.index main .contents__list li .text .en {
	font-size: 2px;
	font-size: 2rem;
	letter-spacing: .046em;
	font-family: "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 700; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .text .en {
			font-size: 24px;
			font-size: 2.4rem;
			margin-top: -10px; } }
body.index main .contents__list li .text .jp {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .046em;
	margin: 12px 0 5px;
	font-family: "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .text .jp {
			font-size: 18px;
			font-size: 1.8rem;
			letter-spacing: .01em;
			line-height: 1.6666;
			margin: 4px 0 8px; } }
body.index main .contents__list li .text .link {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.7em;
	font-weight: 600;
	color:#000;
	font-family: "Helvetica Neue", "Helvetica", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	}
	@media only screen and (max-width: 767px) {
		body.index main .contents__list li .text .link {
			font-size: 16px;
			font-size: 1.6rem;
			line-height: 1.6em; } }



.project__list .btn,
		.project__text .btn{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 180px;
			height: 45px;
			border-radius: 16px;
			padding: 20px 0;
			background: #65B082;}
			@media only screen and (max-width: 767px) {
				.project__list .btn,
				.project__text .btn {
					width: 180px;
					height: 45px;
					border-radius: 16px;
					margin: 12px auto;} }

		.box_ticket_image .project__list .btn-soon,
		.project__text .btn-soon{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 180px;
			height: 45px;
			border-radius: 16px;
			padding: 20px 0;
			background: #B2B2B2;}
			@media only screen and (max-width: 767px) {
				.project__list .btn-soon,
				.project__text .btn-soon {
					width: 180px;
					height: 45px;
					border-radius: 16px;
					margin: 12px auto;} }

		.project__list .btn2,
		.project__text .btn2{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 260px;
			height: 45px;
			border-radius: 16px;
			padding: 10px 0 10px;
			background: #65B082;}
			@media only screen and (max-width: 767px) {
				.project__list .btn2,
				.project__text .btn2 {
					width: 260px;
					height: 45px;
					border-radius: 16px;
					margin: 0px auto;} }

		.project__list .btn-soon2,
		.project__text .btn-soon2{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 260px;
			height: 45px;
			border-radius: 16px;
			margin: 12px 0;
			background: #B2B2B2;}
			@media only screen and (max-width: 767px) {
				.project__list .btn-soon2,
				.project__text .btn-soon2 {
					width: 260px;
					height: 45px;
					border-radius: 16px;
					margin: 12px auto;} }

		.project__list .btn3,
		.project__text .btn3{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 340px;
			height: 55px;
			border-radius: 20px;
			margin: 12px 0;
			background: #65B082;}
			@media only screen and (max-width: 767px) {
				.project__list .btn3,
				.project__text .btn3 {
					width: 340px;
					height: 55px;
					border-radius: 20px;
					margin: 12px auto;} }

		.project__list .btn-soon3,
		.project__text .btn-soon3{
			display: -webkit-flex;
			display: flex;
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: center;
			justify-content: center;
			color: #fff;
			font-size: 14px;
			font-size: 1.4rem;
			letter-spacing: .01em;
			width: 340px;
			height: 55px;
			border-radius: 20px;
			margin: 12px 0;
			background: #B2B2B2;}
			@media only screen and (max-width: 767px) {
				.project__list .btn-soon3,
				.project__text .btn-soon3 {
					width: 340px;
					height: 55px;
					border-radius: 20px;
					margin: 12px auto;} }

.project_list li.entry{
			padding: 10px 10px 0; }
			@media only screen and (max-width: 767px) {
				.project_list li.entry{
					text-align: center !important;
					margin: 0 auto;} }
.project_list li.entry1{
			padding: 0px 0; }
			@media only screen and (max-width: 767px) {
				.project_list li.entry{
					text-align: center !important;
					margin: 0 auto;} }
.project_list li.entry2{
			padding: 0px 0; }
			@media only screen and (max-width: 767px) {
				.project_list li.entry{
					text-align: center !important;
					margin: 0 auto;} }
/* [ workshop ]
-------------------------------------------------*/
body.index main #workshop{
	padding-top: 0 !important; }
	@media only screen and (max-width: 767px) {
		body.index main #workshop{
			padding:0 15px; 
		} }
body.index main #workshop .wors{
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: underline;
	margin-left: 12px; }
	@media only screen and (max-width: 767px) {
		body.index main #workshop .wors{
			margin: 0; }}
body.index main #workshop .contents__list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 24px 0 0; }
	@media only screen and (max-width: 767px) {
		body.index main #workshop .contents__list {
			display: block;
			margin: 62px 0 0; } }
body.index main #workshop .contents__list li {
	width: 47.5%;
	margin: 0 0 40px; }
	@media only screen and (max-width: 767px) {
		body.index main #workshop .contents__list li {
			width: 100%;
			margin: 0 0 50px; } }
body.index main #workshop .contents__list li .ws {
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	}
	body.index main #workshop .contents__list li .ws__image{
		flex: 1; }
	body.index main #workshop .contents__list li .ws__text{
		flex: 1;
		padding: 0 3%; }
		body.index main #workshop .contents__list li .ws__text h3{
			font-size: 18px;
			font-size: 1.8rem;
			font-weight: bold;
			line-height: 1.5em;
			margin-bottom: 1.8rem; }
		body.index main #workshop .contents__list li .ws__text p{
			color: #707070; }
.lesson{
	border: 1px solid #707070;
	margin: 24px 12px;
	padding: 36px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap; }
	@media only screen and (max-width: 767px) {
		.lesson{
			display: block;
			margin: 24px 0;
			padding: 24px;} }
	.lesson .lesson__image{
		flex: 1; }
		@media only screen and (max-width: 767px) {
			.lesson .lesson__image{margin-bottom: 12px;}}
	.lesson .lesson__text{
		flex: 2;
		padding: 0 3%; }
		@media only screen and (max-width: 767px) {
			.lesson .lesson__text{padding: 0;} }
		.lesson .lesson__text h3{
			font-size: 18px;
			font-size: 1.8rem;
			font-weight: bold;
			line-height: 1.5em;
			margin-bottom: 1.8rem; }
		.lesson .lesson__text p{
			line-height: 1.5em; }


/* [ access ]
-------------------------------------------------*/

	#access{
		color: #000;
		background: url("../images/green_bg2.jpg") center center/cover no-repeat;
		background-attachment: fixed; }


.access__box {
	margin: 0 0 160px;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.8em;
	font-weight: 600;
	background-color:rgb(255, 255, 255, 0.9);
	color: #000;
	padding: 40px 10px; }
	@media only screen and (max-width: 767px) {
		.access__box {
			font-size: 20px;
			font-size: 2rem;
			line-height: 1.9em;
			font-weight: 600;
			margin: 0px; 
			padding: 30px 20px;}} 
.access__box h4 {
	text-align: center;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.7em;
	font-weight: 700;}
	@media only screen and (max-width: 767px) {
		.access__box h4{
			font-size: 18px;
			font-size: 1.8rem; } }
.access__box iframe{
	margin: 45px auto;
	display: block;
	width: 860px;
	height: 600px; }
	@media only screen and (max-width: 767px){
		.access__box iframe{
			width: 90%;
			height: 400px; } }
.access__box p {
	max-width: 660px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.7em;
	text-align: center;
	margin: 15px auto; }
	@media only screen and (max-width: 767px) {
		.access__box p{
			padding: 0 20px;
			font-size: 14px;
			font-size: 1.4rem; } }
.access__box p span{
	font-weight: normal;
}
.access__box a{
	color: #99B4CF;
	text-decoration: underline;
}
	

.koukyou img{
	height: 50px!important;}
		@media only screen and (max-width: 767px) {
		.koukyou img{
			height: 40px; } }
	
}
.koukyou-moji{
	padding: 20px 130px;
	}
	@media only screen and (max-width: 767px) {
		.koukyou-moji{
			padding: 20px 10px;
			font-size: 15px;
			font-size: 1.5rem; } }
.koukyou-title{
	text-align: center;
	padding: 30px 0 10px 0;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.5em;}
	@media only screen and (max-width: 767px) {
		.koukyou-title{
			padding: 0px;
			font-size: 15px;
			font-size: 1.5rem; } }

.parking img{
	width: 90%;
	margin: 20px auto 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;}
	@media only screen and (max-width: 767px) {
		.parking img{
			width: 100%; } }

.koukyou-img{
	width: 70%;
	margin: 20px auto 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;}
	@media only screen and (max-width: 767px) {
		.parking img{
			width: 100%; } }


.parking-moji {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.7em;
	text-align: left;
	padding: 0 100px;
	margin: 15px auto; }
	@media only screen and (max-width: 767px) {
		.parking-moji{
			padding: 30px;
			text-align: left;
			font-size: 15px;
			font-size: 1.5rem; } }



/* [ event account ]
-------------------------------------------------*/
body.index main #event_account{
	position: relative;
	padding: 150px 30px 20px;
	z-index: +1;
	color: #fff;
	background: url("../images/ea_bg.jpg") center center/cover no-repeat;
	background-attachment: fixed; }
	@media only screen and (max-width: 767px) {
		body.index main #event_account{
			padding: 40px 20px 80px; } }

body.index main #event_account .title{
	font-size: 30px;
	font-size: 3rem;
	letter-spacing: .01em;
	color: #fff; }
	@media only screen and (max-width: 767px) {
		body.index main #event_account .title{
			padding-top: 50px;
			font-size: 30px;
			font-size: 3rem; } }
	
body.index main #event_account .ea_logo{
	color: #fff;
	width: 230px;
	margin: 0 auto; }
	@media only screen and (max-width: 767px) {
		body.index main #event_account .ea_logo{
			width: 40%; } }

body.index main #event_account p{	
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.7em; 
	margin: 70px 0 30px;
	text-align: center;}
	
body.index main #event_account .btn{
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #00D118;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .01em;
	width: 200px;
	height: 50px;
	border-radius: 24px;
	background: #fff;}

.shop_mahouworks {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 66px 0 0; }
	@media only screen and (max-width: 767px) {
		body.index main .contents__list {
			display: block;
			margin: 0px 0 0; } }
.shop_mahouworks li {
	width: 47.5%;
	margin: 0 0 40px; }
	@media only screen and (max-width: 767px) {
		.shop_mahouworks li {
			width: 100%;
			margin: 0 0 50px; } }
.shop_mahouworks li {
	display: block; }
.shop_mahouworks li:hover {
	opacity: 1; }
.shop_mahouworks li:hover .img-box .img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1); }

.shop_mahouworks li .img-box {
	position: relative;
	color: #fff;
	width: 320px;
	margin: 0 auto;
	overflow: hidden; }
	@media only screen and (max-width: 767px) {
		.shop_mahouworks li .img-box {
			width: 70%;} }
.shop_mahouworks li .img-box:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: +1; }
.shop_mahouworks li .img-box:after {
	content: "";
	display: block;
	/*background: url("../images/top/commingsoon.png") center center/cover no-repeat;*/
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: +1; }
	@media only screen and (max-width: 767px) {
		.shop_mahouworks li .img-box:after {
			width: 192px;
			height: 32px; } }
.shop_mahouworks li .img {
	height: 250px;
	position: relative;
	transition: 1s;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1); }
	@media only screen and (max-width: 767px) {
		.shop_mahouworks li .img {
			height: 232px; } }



.greeting-btn .btn{
	margin: 15px auto 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #000;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .01em;
	width: 300px;
	height: 50px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid;
}

.shusai-namae{
	text-align: right;
	margin: 20px auto 5px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
	
.crowdfunding-btn .btn{
	margin: 40px auto 70px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #000;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .01em;
	width: 300px;
	height: 50px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid;
}
.crowdfunding-btn .btn a{
	text-decoration: none!important;
}
	
.crowdfunding-btn2 .btn{
	text-decoration: none;
	margin: 20px auto 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #000;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .01em;
	width: 180px;
	height: 50px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid;
}
.crowdfunding-btn2 .btn a{
	text-decoration: none!important;
}
/* [ credit ]
-------------------------------------------------*/
body.index main #credit h2{
	text-align: center;
	font-size: 50px;
	font-size: 5rem;
	font-weight: 600;
	letter-spacing: .01em;
	display: block; }
	@media only screen and (max-width: 767px) {
		body.index main #credit h2{
			padding: 0 15px;
			font-size: 30px;
			font-size: 3rem;}}
body.index main #credit h3{
	text-align: center;
	margin: 30px 0 12px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 400;
	padding: 0 20px 50px;}
	@media only screen and (max-width: 767px) {
		body.index main #credit h3{
			font-size: 20px;
			font-size: 2rem;
			padding: 0 20px 50px;}}
	
body.index main #credit .logo1,
body.index main #credit .logo2,
body.index main #credit .logo3,
body.index main #credit .logo4{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 66px 0 80px; }
	@media only screen and (max-width: 767px) {
		body.index main #credit .logo3,
		body.index main #credit .logo4{
			margin: 36px 0 80px;
			padding: 0 20px;}}
	body.index main #credit .logo_100 div{
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 0 auto;
		padding: 0;
		width: 30%; }
	@media only screen and (max-width: 767px) {
		body.index main #credit .logo_100 div{
			width: 40%;}}
		
	body.index main #credit .logo1 div{
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 0 auto;
		padding: 0;
		width: 51%; }
	body.index main #credit .logo2 div{
		margin: 0;
		padding: 0;
		width: 36%; }
	body.index main #credit .logo3 div{
		margin: 0;
		padding: 0;
		width: 31%; }
	body.index main #credit .logo4 div{
		margin: 0;
		padding: 0;
		width: 23%; }
	
body.index main #credit .box_credit{
	max-width: 600px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.7em; 
	margin: 36px auto 120px;
	padding-top: 50px;}
	@media only screen and (max-width: 767px) {
		body.index main #credit .box_credit{
			padding: 30px; } }
	body.index main #credit .box_credit p{
		margin-bottom: 24px;
	}

body.index main #credit .message{
	max-width: 1000px;
	margin: 20px auto 120px;
	border: 2px solid #000;
	padding: 50px 100px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 2em; }
	@media only screen and (max-width: 767px) {
		body.index main #credit .message{
			width: 90%;
			border: 1px solid #000;
			margin: 40px auto;
			padding: 40px 20px;} }

body.index main #credit .message p{
	margin: 2em 0; }
	
	

        
/* [ campicnic-picture ]
-------------------------------------------------*/
body.index main .campicnic-picture {
  height: 50vw;
  position: relative;
  z-index: +1;
  background: url("../images/bg01_01.jpg") center center/contain no-repeat;
  background-attachment: fixed; }
  @media only screen and (max-width: 1344px) {
    body.index main .campicnic-picture {
      height: 700px;
      margin: 0 0; } }
  @media only screen and (max-width: 767px) {
    body.index main .campicnic-picture {
      display: none} }

  body.index main .campicnic-picture:after {
    content: "";
    width: 100%;
    display: block;
    padding-top: 6.25%;
    background: url("../images/bg01_bottom.png") center center/cover no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    @media only screen and (max-width: 1344px) {
      body.index main .campicnic-picture:after {
        width: 1344px;
        padding-top: 0;
        height: 83px; } }
    @media only screen and (max-width: 767px) {
      body.index main .campicnic-picture:after {
        content: none; } }
  body.index main .campicnic-picture .inner {
    position: relative;
    height: 100%;
    max-width: 1074px; }
  body.index main .campicnic-picture__box {
    position: absolute;
    left: 21%;
    top: 40%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.index main .campicnic-picture__box {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%; } }
    body.index main .campicnic-picture__box h2 strong {
      display: block;
      font-size: 46px;
      font-size: 4.6rem;
      letter-spacing: .4em;
      font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
      font-weight: 200; }
      @media only screen and (max-width: 767px) {
        body.index main .campicnic-picture__box h2 strong {
          font-size: 33px;
          font-size: 3.3rem; } }
      body.index main .campicnic-picture__box h2 strong em {
        font-weight: 400; }
    body.index main .campicnic-picture__box h2 small {
      display: block;
      letter-spacing: 1em;
      font-size: 22px;
      font-size: 2.2rem;
      margin: 22px 0 31px; }
      @media only screen and (max-width: 767px) {
        body.index main .campicnic-picture__box h2 small {
          font-size: 16px;
          font-size: 1.6rem;
          margin: 14px 0 22px; } }
    body.index main .campicnic-picture__box .logo {
      width: 600px;
      margin: 0 auto 28px; }
      @media only screen and (max-width: 767px) {
        body.index main .campicnic-picture__box .logo {
          width: 400px;
          margin: 0 auto; } }
    body.index main .campicnic-picture__box p {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      letter-spacing: .01em;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.index main .campicnic-picture__box p {
          font-size: 14px;
          font-size: 1.4rem; } }
    body.index main .campicnic-picture__box .note {
      margin: 54px auto 0;
      width: 176px; }
      @media only screen and (max-width: 767px) {
        body.index main .campicnic-picture__box .note {
          width: 111px;
          margin: 24px auto 0; } }

body.index main .campicnic-picture-sp {
  padding: 0 0 54px;
  text-align: center; }
  body.index main .campicnic-picture-sp p {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: .01em;
    line-height: 1.85; }
  body.index main .campicnic-picture-sp a {
	color: #99B4CF;}
	
	
	
body.index main .footer .inner .footer__top ul.footer__nav li {
	font-size: 24px;
	font-size: 2.4rem;
	float: left; }
	
	
	
body.index main .single{
	background-color: #031920;
	padding: 50px 0; }
	@media only screen and (max-width: 767px) {
		body.index main .single{
			padding: 30px 0;} }
	body.index main .single h1{
		color: #fff;
		text-align: center;
		margin: 0 0 20px;
		font-size: 65px;
		font-size: 6.5rem; }
		@media only screen and (max-width: 767px) {
			body.index main .single h1{
				font-size: 36px;
				font-size: 3.6rem; } }
	body.index main .single h2{
		color: #fff;
		text-align: center;
		font-size: 24px;
		font-size: 2.4rem; }
		@media only screen and (max-width: 767px) {
			body.index main .single h2{
				font-size: 20px;
				font-size: 2rem; } }		
body.index main .faq{
	line-height: 2rem;
	padding: 100px 0; }
	@media only screen and (max-width: 767px) {
		body.index main .faq{
			padding: 40px 15px;
			text-align: justify; } }
	body.index main .faq h3{
		margin: 30px 0 20px;
		font-weight: bold;
		line-height: 1.7em;
		font-size: 20px;
		font-size: 2rem; }
	body.index main .faq dl{
		padding-bottom: 36px; }
	body.index main .faq dt{
		color: #99B4CF;
		line-height: 1.7em;
		font-weight: bold;
		margin-bottom: 8px; }
	body.index main .faq dd{
		margin-bottom: 20px; }
body.index main .faq dd a{
	color: #99B4CF;
	text-decoration: underline;
}

.top100{
	margin-top: 100px; }
.bottom72{
	margin-bottom: 72px; }



.pop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;width: 100%;height: 100%;
  z-index: 10000;

}
.pop__overlay {
  position: absolute;
  left: 0;top: 0;width: 100%;height: 100%;
  z-index: 1;
  background-color:rgba(0,0,0,0.6);
}
.pop__box {
  position: absolute;
  top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
	.pop__box {
		width: 100%;
	}
}


.pop__box > img {
  width: 473px;
  cursor: pointer;
}
.pop__box a {
  position: absolute;
  right: 18px;
  top: 18px;
  display: block;
}
.pop__box a img {
  width: 32px;
  height: 32px;
}


.pop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;width: 100%;height: 100%;
  z-index: 10000;

}
.pop__overlay {
  position: absolute;
  left: 0;top: 0;width: 100%;height: 100%;
  z-index: 1;
  background-color:rgba(0,0,0,0.6);
}
.pop__box {
  position: absolute;
  top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
	.pop__box {
		width: 100%;
	}
}


.pop__box > img {
  width: 473px;
  cursor: pointer;
}
.pop__box a {
  position: absolute;
  right: 18px;
  top: 18px;
  display: block;
}
.pop__box a img {
  width: 32px;
  height: 32px;
}

.pop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;width: 100%;height: 100%;
  z-index: 10000;

}
.pop__overlay {
  position: absolute;
  left: 0;top: 0;width: 100%;height: 100%;
  z-index: 1;
  background-color:rgba(0,0,0,0.6);
}
.pop__box {
  position: absolute;
  top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
	.pop__box {
		width: 100%;
	}
}


.pop__box > img {
  width: 473px;
  cursor: pointer;
}
.pop__box a {
  position: absolute;
  right: 18px;
  top: 18px;
  display: block;
}
.pop__box a img {
  width: 32px;
  height: 32px;
}





#pageHeader{
	width:100%
}



#menu{
	display:block;
	position:fixed;
	z-index:998;
	top:24px;
	right:2.5%;
	padding:15px 15px 10px 15px;
	cursor:pointer;
	background:#65B082
}

#menu:hover{
	opacity:0.8
}

.menu-trigger,.menu-trigger span{
	display:inline-block;
	-webkit-transition:all
	.4s;-o-transition:all
	.4s;transition:all
	.4s;-webkit-box-sizing:border-box;
		box-sizing:border-box
}

.menu-trigger{
	position:relative;
	width:30px;
	height:30px
}

.menu-trigger span{
	position:absolute;
	left:0;
	width:100%;
	height:3px;
	background-color:#fff
}

.menu-trigger span:nth-of-type(1){
	top:0
}

.menu-trigger span:nth-of-type(2){
	top:12px
}

.menu-trigger span:nth-of-type(3){
	bottom:3px
}

.menu-trigger.active{
	-webkit-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg)
}

.menu-trigger.active span:nth-of-type(1){
	-webkit-transform:translateY(10px) rotate(-45deg);
	-ms-transform:translateY(10px) rotate(-45deg);
	transform:translateY(10px) rotate(-45deg)
}

.menu-trigger.active span:nth-of-type(2){
	-webkit-transform:translateY(0) rotate(45deg);
	-ms-transform:translateY(0) rotate(45deg);
	transform:translateY(0) rotate(45deg)
}

.menu-trigger.active span:nth-of-type(3){
	opacity:0
}

.noscroll{
	overflow:hidden
}

nav#gNav{
	display:none;
	text-align:center;
	background:rgba(0,0,0,0.9);
	position:fixed;top:0;left:0;
	z-index:888;
	width:100%;
	height:670px;
	overflow:hidden;
	padding:100px 0 0 0}

nav#gNav #nav{
	display:none
}

nav#gNav ul{
	display:inline-block;
	text-align:left;
	vertical-align:top;
	padding:0 5%;
	margin:0}

nav#gNav ul li{
	color:#f1e9d2;
	font-family:"Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight:700;
	font-size:28px;
	line-height:2.2em;
	letter-spacing:.1em
}

nav#gNav ul li.soon{
	color:#333
}

nav#gNav ul li a{
	text-decoration:none;
	color:#f1e9d2;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

nav#gNav ul li a:hover{
	color:#65B082
}

nav#gNav ul li ul{
	display:block;
	margin:0;
	padding:0 0 0 17px
}

nav#gNav ul li ul li{
	font-size:20px;
	line-height:1.8em
}

nav#gNav #snsLinks{
	overflow:hidden;
	position:absolute;
	right:2.5%;
	bottom:2.5%;
	z-index:888
}

nav#gNav #snsLinks p{
	float:left;
	margin:0;
	font-size:24px
}

nav#gNav #snsLinks p a{
	color:#bec1b2;
	padding:0px 15px 0px 15px;
	display:block
}

nav#gNav #snsLinks p a:hover{
	color:#fff
}



@media screen and (max-width: 767px){
	
	#pageHeader #logo{
		width:90px;left:5%
	}
	
	#menu{
		top:20px;
		right:20px
	}
	
	nav#gNav{
		-webkit-overflow-scrolling:touch;
		overflow:scroll
	}
	
	nav#gNav ul{
		display:block;
		text-align:left;
		padding:0 5% 0 15%
	}
	
	nav#gNav ul li{
		font-size:20px;
		line-height:2em
	}
	
	nav#gNav ul li a::after{
		content:"";
		font-family:'FontAwesome';
		padding:0 0 0 15px
	}
	
	nav#gNav ul li ul{
		padding:0 0 0 30px
	}
	
	nav#gNav ul li ul li{
		font-size:16px;
		line-height:1.8em
	}
	
	nav#gNav #snsLinks{
		overflow:hidden;
		position:static;
		padding:0 5% 30% 12%
	}
}


@media screen and (max-width: 480px){
	
	#pageHeader #logo{
		width:60px;
		left:4%;top:20px
	}
}



.top-2 {
	max-width:100%;
	width:100%;
    position: absolute;
	z-index:100;
    top:69vh;
    left: 0;
}


@media only screen and (min-width:1100px) and (max-width:1410px){

.top-2 {
	max-width:100%;
	width:100%;
    position: absolute;
	z-index:100;
    top:80vh;
    left: 0;
}

}

@media only screen and (min-width:770px) and (max-width:1100px){

.top-2 {
	max-width:100%;
	width:100%;
    position: absolute;
	z-index:100;
    top:85vh;
    left: 0;
}

}



@media only screen and (min-width:600px) and (max-width:770px){
	
.top-2 {
	max-width:100%;
	width:100%;
    position: absolute;
	z-index:100;
    top: 89vh;
    left: 0;
}

}



@media only screen and (max-width:600px){

.top-2 {
	max-width:100%;
	width:100%;
    position: absolute;
	z-index:100;
    top: 91vh;
    left: 0;
}
}
.green1{color: #65B082}
.font07{font-size: 0.7em}
.font08{font-size: 0.8em}
.font09{font-size: 0.9em}
.font10{font-size: 1em}
.font11{font-size: 1.1em}
.font12{font-size: 1.2em}
.font13{font-size: 1.3em}