@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
*/

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "PT Serif";
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

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


img,
svg,
video {
  width: 100%;
  vertical-align: bottom;
}

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}


/*----------------------------
  common
-----------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  margin: auto;
  overflow: hidden;
  position: relative;
}

.inner {
  max-width: calc(800px + 2%);
  margin: 0 auto;
  padding: 3% 1% 0;
}

.inner__large {
  max-width: calc(1200px + 2%);
  padding: 0 1%;
  margin: 0 auto;
  padding: 0 1%;
}

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

  .inner,
  .inner__large {
    padding: 0 3%;
  }
}

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

  .inner,
  .inner__large {
    padding: 0 5%;
  }
}



/***** ハンバーガー *****/

.hd__menu {
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: .3s ease-out;
  margin: 0 0 0 auto;
  cursor: pointer;
  background: #fff;
  position: fixed;
  top: 20px;
  right: 5%;
}

.hd__hamburger {
  width: 30px;
  height: 26px;
  margin: 0 auto;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hd__hamburger span {
  background: #0b0c19;
  height: 4px;
  width: 100%;
  left: 0;
  position: absolute;
}

.hd__hamburger.active span {
  background: #0b0c19;
}

.hd__hamburger--top {
  top: 0;
  transition: .5s;
}

.hd__hamburger--mid {
  top: 42.5%;
  transition: .5s;
}

.hd__hamburger--btm {
  bottom: 0;
  transition: .5s;
}

.hd__hamburger.active .hd__hamburger--top {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}

.hd__hamburger.active .hd__hamburger--mid {
  display: none;
}

.hd__hamburger.active .hd__hamburger--btm {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
}




/*****  nav *****/

html.active {
  overflow-y: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(333, 333, 333, .5);
  opacity: 0;
  display: none;
  transition: .5s;
  pointer-events: none;
}

html.active body:before {
  opacity: 0;
  z-index: 999;
  display: block;
  animation-name: BgAppear;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  pointer-events: fill;
}

html.close body:before {
  opacity: 0;
  z-index: 999;
  display: block;
  animation: BgHide .5s forwards;
  pointer-events: none;
}

@keyframes BgAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes BgHide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}

.hide__menu {
  position: fixed;
  top: -150%;
  left: 0;
  height: 100vh;
  width: 100%;
  transition: all .7s;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 100px 0;
  z-index: 999;
  opacity: 0;
  animation: hmHide 1s forwards;
}

.hide__menu.active {
  top: 0;
  animation: hmAppear 1s .3s forwards;
}

@keyframes hmAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hmHide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}

.hide__menu--box {
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
  background: #0b0c19;
  padding: 2em 3em;
  border-radius: 30px;
  background-image: url(images/common/stars.png);
  background-size: cover;
}

.hide__menu--logo {
  border-bottom: solid 1px rgba(333, 333, 333, .5);
  margin-bottom: 1em;
}

.hide__menu--logo img {
  width: 90%;
  top: auto;
  left: auto;
  max-width: 360px;
  margin: 1em auto 3em;
  position: relative;
  display: block;
  text-shadow: white 1px 0 10px;
}


.g-nav__li a {
  font-size: 24px;
  height: 100%;
  display: block;
  padding: 0;
  line-height: 1.2;
  padding: .75em 0;
  background: none;
  border: none;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.g-nav__li a:hover {
  color: rgba(333, 333, 333, .7);
}

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

  .hd__menu {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 3%;
  }

  .hd__hamburger {
    width: 25px;
    height: 20px
  }

  .hd__hamburger span {
    height: 3px;
  }


  /*****  nav *****/

  .hide__menu {
    padding: 100px 5%;
  }

  .hide__menu--box {
    width: 100%;
    max-width: 100%;
    padding: 2em 3em;
    border-radius: 20px;
  }

  .hide__menu--logo {
    border-bottom: solid 1px rgba(333, 333, 333, .5);
    margin-bottom: 1em;
  }

  .hide__menu--logo img {
    width: 90%;
    top: auto;
    left: auto;
    max-width: 360px;
    margin: 1em auto 3em;
    position: relative;
    display: block;
    text-shadow: white 1px 0 10px;
  }

  .hide__menu.active {
    top: 0;
  }


  .g-nav__li a {
    font-size: 24px;
    height: 100%;
    display: block;
    font-weight: bold;
    padding: 0;
    line-height: 1.2;
    padding: .75em 0;
    background: none;
    border: none;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }

  .g-nav__li a:hover {
    color: rgba(333, 333, 333, .7);
  }

}

/***** ハンバーガー *****/



/*----------------------------
  header
-----------------------------*/

header {
  background-color: #0b0c19;
  background-image: url(images/common/stars.png);
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  display: flex;
  justify-content: center;
}


.mv {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 10% 0;
}

.mv__feather01 {
  max-width: 312px;
  width: 31.2%;
  position: absolute;
  top: 65%;
  left: -34%;
  transform: translate(0, -50%);
}

.mv__feather02 {
  max-width: 351px;
  width: 35.1%;
  position: absolute;
  top: 75%;
  right: -35%;
  transform: translate(0, -50%);
}

/***** main *****/

main {
  position: relative;
  background-color: #fff;
}


@media screen and (max-width:1024px) {
  header {
    padding-bottom: 100px;
  }

}

@media screen and (max-width:767px) {
  header {
    padding-bottom: 0;
  }

  .mv {
    padding: 0 0 10% 0;
  }

}

/*----------------------------
  trailer
-----------------------------*/

.trailer {
  padding: 3rem 0px 13rem;
}

.tr__bg {
  position: absolute;
  width: 100%;
  min-width: 6000px;
  top: -5%;
  left: 50%;
  transform: translate(-50%);
}

.trailer .inner {
  position: relative;
}

.tr__feather01 {
  max-width: 290px;
  width: 29%;
  position: absolute;
  top: 40%;
  left: -5%;
  transform: translate(-50%, -50%);
}

.tr__feather02 {
  max-width: 442px;
  width: 44.2%;
  position: absolute;
  top: 60%;
  left: 110%;
  transform: translate(-50%, -50%);
}

.trailer h2 {
  margin: 0 auto 1rem;
  font-size: 4rem;
  text-align: center;
}

.trailer .video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  z-index: 9;
}

.ytwrap {
  position: relative;
  word-wrap: 100%;
  padding-bottom: 56.25%;

}

.ytwrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width:1024px) {
  .trailer {
    padding: 50px 0 200px;

  }

  .tr__bg {
    min-width: 4500px;
  }

  .tr__feather01 {
    width: 29%;
    top: 45%;
    left: -10%;
  }

  .tr__feather02 {
    width: 44.2%;
    top: 60%;
    left: 115%;
  }
}

@media screen and (max-width:767px) {
  .trailer {
    padding: 20px 0 30px;
  }

  .tr__bg {
    min-width: 2500px;
  }

  .tr__feather01 {
    width: 29%;
    top: 45%;
    left: -5%;
  }

  .tr__feather02 {
    width: 44.2%;
    top: 60%;
    left: 115%;
  }

}

/*----------------------------
  info
-----------------------------*/
.info {
  padding: 0 0 300px;
  position: relative;
}

.info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 380px);
  min-width: 3000px;
  background: url(./images/common/bg_mountain.png) no-repeat center top/cover;
  background-size: 6000px;
  top: -380px;
  left: 50%;
  transform: translate(-50%);
}

.ns_content {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 600px;
}

.news {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5rem 2rem;
  border-radius: 20px;
  position: relative;
}

.news .ns__ttl {
  max-width: 267px;
}

.ns__ttl {
  width: 80%;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translate(-50%);
}

.news h2 {
  font-size: 3.5rem;
  background-color: #8cf7f5;
  border-radius: 50px;
  width: 5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fb__wrap iframe {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width:1024px) {
  .info {
    padding: 0 0 150px;
  }

  .info::before {
    height: calc(100% + 280px);
    min-width: 5000px;
    top: -280px;
  }

  .ns_content {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }

  .ns__ttl {
    width: 80%;
    top: -80px;
  }

  .news .ns__ttl {
    max-width: 200px;
  }

  .twitter .ns__ttl {
    max-width: 300px;
  }


  .news,
  .twitter {
    /* width: 48%; */
    padding: 2em;
    border-radius: 20px;
  }
}

@media screen and (max-width:767px) {
  .info {
    padding: 10rem 0 20rem;
  }

  .info::before {
    height: calc(100% + 200px);
    min-width: 2000px;
    top: -200px;
  }


  .ns_content {
    display: block;
  }

  .ns__ttl {
    width: 80%;
    top: -70px;
  }

  .news .ns__ttl {
    max-width: 160px;
  }

  .twitter .ns__ttl {
    max-width: 210px;
  }


  .news,
  .twitter {
    width: 100%;
    margin: 0 auto;
    padding: 20px 5%;
  }

  .news {
    margin-bottom: 100px;
  }

  .fb__wrap iframe {
    height: 500px;
  }

}



/*----------------------------
  footer
-----------------------------*/

footer {
  text-align: center;
  padding: 0 0 50px;
  background-color: #03160b;
  position: relative;
}

.ft__forest {
  position: absolute;
  width: 100%;
  min-width: 6000px;
  top: -600px;
  left: 50%;
  transform: translate(-50%);
}

footer p {
  width: 100%;
}

.credits {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 0 10%;
  top: -45px;
}

.sponsors {
  position: relative;
  display: flex;
  width: 50%;
}

.sponsors img:nth-child(1) {
  padding-right: 0.5rem;
}

.sponsors img {
  width: 100%;
}


@media screen and (max-width:1024px) {
  footer {
    padding: 100px 0 60px;
  }

  .ft__forest {
    min-width: 5000px;
    top: -400px;
  }

  .credits {
    top: -30px;
  }
}


@media screen and (max-width:767px) {
  footer {
    padding: 30px 0 30px;
  }

  .ft__forest {
    top: -470px;
  }

  .credits {
    padding: 0;
    top: 0;
    top: -20px;
  }

  .sponsors {
    position: relative;
    display: block;
    width: 100%;
  }

  .sponsors img:nth-child(1) {
    padding: 0;
  }
}