@charset "UTF-8";
/* Eric Meyer's Reset CSS 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;
  text-decoration: none;
}

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

body {
  line-height: 1;
}

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

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #333;
  min-height: 100vh;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  body {
    background-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #009C61;
  text-transform: uppercase;
  text-align: center;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
}

/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #333;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes flash {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/*-inview------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_title {
  position: fixed;
  z-index: 105;
  width: 220px;
  top: 10px;
  left: 10px;
}
@media (max-width: 1200px) {
  .nav_title {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_title {
    display: block;
    top: 5px;
    left: 0px;
    width: 190px;
  }
}

.nav_btn {
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 104;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
    top: 0px;
    right: 0px;
    background-image: url(img/nav_icon.svg);
    background-size: 100%, 100%;
    width: 50px;
    height: 50px;
  }
}
.nav_btn.show {
  background-size: 100%, 100%;
  background-image: url(img/nav_icon-close.svg);
  opacity: 0.8;
}
.nav_btn.active {
  background-size: 100%, 100%;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    z-index: 103;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-color: rgba(238, 238, 238, 0.95);
    background-image: url(img/bgo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  opacity: 1;
}
.gnav .gnav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    background-image: none;
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  font-size: 1.1em;
  color: black;
  transition: 0.2s;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.2em;
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.gnav .gnav_list li a img {
  width: 22px;
}

.nav_top {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 0px;
  right: 0px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #009C61;
  cursor: pointer;
  opacity: 0;
}
.nav_top:hover {
  opacity: 0.8;
}
.nav_top::before {
  content: "▲";
  position: absolute;
  top: 43%;
  left: 50%;
  transform: scale(1, 0.6) translate(-50%, -50%);
  color: #333;
}
.nav_top.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_top.active {
    opacity: 1;
  }
}

/*-------------------------------*/
/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(img/map.jpg);
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #009C61;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_inner .loader {
  animation: flash 1s infinite;
  max-width: 300px;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_inner .loader img {
  opacity: 0.2;
}

/*-------------------------------*/
.footer {
  width: 100%;
  background-color: #009C61;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 40px 60px;
  }
}
.footer .title {
  width: 70%;
  max-width: 450px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .footer .title {
    margin: 0 auto 20px;
  }
}
.footer .release {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#top {
  position: relative;
  height: 49vw;
  width: 100%;
  overflow: hidden;
  background-color: #009C61;
}
@media screen and (max-width: 768px) {
  #top {
    height: 151vw;
  }
}
#top .img_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 54%;
}
@media screen and (max-width: 768px) {
  #top .img_main {
    width: 100%;
  }
}
#top .copy_tate {
  position: absolute;
  top: 7%;
  left: 3%;
  width: 7%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    top: 4%;
    left: 4%;
    width: 21%;
  }
}
#top h1.title {
  position: absolute;
  width: 38%;
  top: 19%;
  left: 56%;
}
@media screen and (max-width: 768px) {
  #top h1.title {
    width: 78%;
    top: 56%;
    left: 7%;
  }
}
#top .billing {
  position: absolute;
  width: 20%;
  top: 61%;
  left: 67%;
}
@media screen and (max-width: 768px) {
  #top .billing {
    width: 60%;
    top: 83%;
    left: 21%;
  }
}
#top .release {
  position: absolute;
  width: 29%;
  top: 67%;
  left: 62%;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 66%;
    top: 94%;
    left: 7%;
  }
}
#top .copy_yoko {
  position: absolute;
  width: 30%;
  top: 74%;
  left: 61%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 60%;
    top: 88%;
    left: 21%;
  }
}
#top .panda {
  position: absolute;
  width: 14%;
  top: 77%;
  left: 85%;
}
@media screen and (max-width: 768px) {
  #top .panda {
    width: 27%;
    top: 86%;
    left: 73%;
  }
}

#info {
  padding: 40px 50px 40px;
  width: 100%;
  margin: 0 0 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  #info {
    padding: 30px 20px 30px;
  }
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#info .btns div {
  margin: 0 10px 10px;
  position: relative;
  max-width: 120px;
  width: 100%;
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 120px;
  width: 100%;
  transition: 0.3s;
  transform: rotate(0deg);
}
#info .btns div a:hover {
  transform: rotate(30deg);
}

.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 20px auto;
}

.sns_btns {
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}
.sns_btns a {
  width: 160px;
  display: block;
  margin: 0 5px;
}
.sns_btns a:hover {
  opacity: 0.7;
}

.bnrs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bnrs .bnr {
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  max-width: 200px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bnrs .bnr {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    max-width: unset;
  }
}
.bnrs .bnr a {
  display: block;
  transition: 0.3s;
}
.bnrs .bnr a:hover {
  filter: brightness(120%);
}
.bnrs .bnr img {
  border-radius: 5px;
}

.mvtk {
  width: 100%;
  margin: 0 auto 30px;
}
.mvtk div {
  margin: 0 auto;
}

.tkt {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tkt li {
  width: calc(50% - 5px);
  max-width: 240px;
}
.tkt li a {
  display: block;
  transition: 0.3s;
}
.tkt li a:hover {
  filter: brightness(120%);
}

/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 30px auto 40px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
    margin-bottom: 20px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px rgba(0, 156, 97, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main .youtube_embed {
    border-radius: 5px;
  }
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2px;
}
#trailer .trailer_tabs li {
  cursor: pointer;
  border-radius: 10px;
  width: calc(50% - 1px);
  margin: 0;
  height: 3em;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009C61;
  color: #FFF;
  background-color: #3D3000;
  font-weight: 700;
  font-size: 0.9em;
  transition: 0.4s;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs li {
    border-radius: 5px;
    height: 3em;
  }
}
#trailer .trailer_tabs li:hover {
  opacity: 0.8;
}
#trailer .trailer_tabs .tab.active {
  color: #333;
  background-color: #009C61;
  pointer-events: none;
}
#trailer .trailer_tabs .tab.active::before {
  content: "● ";
}

/*-------------------------------*/
#intro {
  background-color: #fff;
}
#intro .section_inner {
  position: relative;
}
#intro .section_inner .section_header {
  position: relative;
}
#intro .section_inner .section_header .upper {
  position: relative;
}
#intro .section_inner .section_header h2 {
  display: block;
  bottom: 0;
  position: absolute;
  width: 80%;
  left: 10%;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_header h2 {
    position: relative;
    width: 100%;
    padding: 0 20px;
    margin: -20vw auto 0;
    left: 0;
    max-width: 500px;
  }
}
#intro .section_inner .section_main {
  padding: 0 50px;
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    padding: 0 20px;
    max-width: 500px;
  }
}
#intro .section_inner .section_main h3 {
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h3 {
    margin: 0 auto 20px;
  }
}
#intro .section_inner .section_main .text_body p {
  color: #009C61;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body p {
    text-align: justify;
  }
}
#intro .pandas {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #intro .pandas {
    display: flex;
    padding-top: 0px;
  }
}
#intro .pandas img {
  width: 15%;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #intro .pandas img {
    position: relative;
    width: 50%;
  }
}
#intro .pandas img:first-of-type {
  left: 0;
}
#intro .pandas img:last-of-type {
  right: 0;
}

.imgs2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .imgs2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.imgs4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .imgs4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

#world {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #world {
    padding: 60px 0;
  }
}
#world .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #world .section_inner {
    padding: 0 20px;
  }
}
#world .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main {
    max-width: 500px;
  }
}
#world .section_inner .section_main h2 {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main h2 {
    margin: 0 auto 10px;
  }
}
#world .section_inner .section_main .text_body {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main .text_body {
    margin-bottom: 20px;
  }
}
#world .section_inner .section_main .text_body p {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main .text_body p {
    text-align: justify;
  }
}
#world .section_inner .section_main .text_body p.head {
  color: #009C61;
  margin-bottom: 0.5em;
  font-size: 1.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main .text_body p.head {
    font-size: 1em;
  }
}
#world .section_inner .section_main .panda {
  width: 15%;
  margin: 0 auto 40px;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main .panda {
    margin: 0 auto 20px;
  }
}
#world .section_inner .section_main h3 {
  margin: 0 auto 40px;
  max-width: 700px;
  display: block;
}
#world .section_inner .section_main .worlds {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #world .section_inner .section_main .worlds {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

#comment {
  background-color: rgba(255, 255, 255, 0.9);
}
#comment .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main {
  max-width: 1000px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}
#comment .section_inner .section_main h2 {
  color: #00370B;
  opacity: 1;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main h2 {
    margin-bottom: 40px;
  }
}
#comment .section_inner .section_main .comment_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
#comment .section_inner .section_main .comment_list li {
  padding: 0.5em;
}
#comment .section_inner .section_main .comment_list li a {
  color: #009C61;
  transition: 0.2s;
}
#comment .section_inner .section_main .comment_list li a:hover {
  color: #00370B;
}
#comment .section_inner .section_main .cau {
  text-align: center;
  font-size: 0.9em;
  margin: 60px auto 20px;
}
#comment .section_inner .section_main .comment_items .comment_item {
  margin-bottom: 40px;
  background-color: #f4faf1;
  padding: 20px 40px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item {
    padding: 30px 20px;
  }
}
#comment .section_inner .section_main .comment_items .comment_item:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_names {
    gap: 0.5em;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_name {
  font-size: 1.5em;
  color: #00370B;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_role {
  opacity: 0.8;
  font-size: 0.9em;
  color: #009C61;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body {
  border-top: dashed 1px rgba(0, 55, 11, 0.25);
  margin-bottom: 20px;
  padding-top: 20px;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.8em;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_body p {
    margin-bottom: 0.4em;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_img {
  max-width: 700px;
  margin: 0 auto;
  border-top: dashed 1px rgba(0, 55, 11, 0.25);
  margin-bottom: 20px;
  padding-top: 20px;
}/*# sourceMappingURL=style.css.map */