@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;
}

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

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

    .inner {
        max-width: none;
        margin: 0 3%;

    }

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

@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);
    }
  
  }
  
  /***** ハンバーガー *****/




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

main {
    position: relative;
    background-color: #8cf7f5;
}


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

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


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

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

h1 {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    height: 20rem;
}

.logo {
    width: 8%;
    min-width: 100px;
}

.logo a:hover {
    opacity: .7;
    transition-duration: .5s;
}

.logo img {
    width: 100%;
}



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


    .thumb {
        padding: 4rem 2rem 0;
    }

    .thumb p {
        width: calc(100%/4);
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 5%;
    }
}


/*----------------------------
    story
-----------------------------*/

.story__box {
    min-height: 600px;
    position: relative;
}

.story__box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: rgba(333, 333, 333, .5);
    z-index: 5;
    border-radius: 5%;
}

.story__image {
    z-index: 5;
    position: relative;
    float: right;
    clear: both;
    padding: 3rem 3rem 0 3rem;
    margin: 0 auto 2rem;
}

@media screen and (max-width:1024px) {
    .story__image {
        padding: 3rem 3rem 0 3rem;
    }
}

.story__image p {
    width: 100%;
}

.story__image img {
    width: 100%;
}

.story__text {
    margin: 0 0 0 auto;
    padding: 50px 3rem;
    z-index: 5;
    position: relative;
}

.story__title {
    margin: 1rem 0;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    /* padding: 0 3rem; */
}

.story__disc {
    overflow-wrap: break-word;
    font-size: 2rem;
    line-height: 1.3em;
}

@media screen and (max-width:767px) {
    .story__box {
        height: auto;
        padding: 0 5%;
        display: block;
        padding: 3rem;
    }

    .story__box::before {
        width: 100%;
        height: 100%;
    }

    .story__image {
        top: auto;
        left: auto;
        transform: none;
        position: relative;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .story__image img {
        width: 100%;
    }

    .story__text {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        z-index: 5;
        padding: 0;
    }

    .story__title {
        margin: 1rem 0;
        font-size: 3rem;
        padding: 0;
    }

    .story__disc {
        overflow-wrap: break-word;
        font-size: 2rem;
        line-height: 1.3em;
    }
}



/*----------------------------
    trailera
-----------------------------*/

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

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


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

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

.trailer h2 {
    width: 9em;
    height: 1.5em;
    display: flex;
    font-size: 3.5rem;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    opacity: .7;
    border-radius: 50px;
    margin: 8rem auto 4rem;
    position: relative;
    z-index: 99;
}

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

    }

    .tr__bg {
        min-width: 4500px;
    }

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

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

    .trailer h2 {
        margin:2rem auto 4rem;
    }

}

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

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

    .tr__bg {
        min-width: 2500px;
    }

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

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

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

footer {
    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: 10% 0 5%;
    }

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

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

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

    .credits {
        padding: 0;
    }

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

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