@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

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

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

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

@keyframes fuwa-anime {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes scale-anime {
  0% {
    transform: scaleY(1.12);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1.12);
  }
}
@keyframes scale-anime-sp {
  0% {
    transform: scaleY(1.05);
  }
  50% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(1.05);
  }
}
.main-cloud {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main-cloud img:nth-child(1) {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 35%;
}
@media screen and (max-width: 800px) {
  .main-cloud img:nth-child(1) {
    width: 55%;
  }
}
.main-cloud img:nth-child(2) {
  position: absolute;
  top: 5%;
  right: 35%;
  width: 12%;
  animation: scale-anime 6s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .main-cloud img:nth-child(2) {
    animation: scale-anime-sp 6s infinite ease-in-out;
    width: 16%;
    top: 8%;
    right: 26%;
  }
}
.main-cloud img:nth-child(3) {
  position: absolute;
  top: 25%;
  right: 0%;
  width: 16%;
  animation: scale-anime 6s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .main-cloud img:nth-child(3) {
    width: 28%;
    top: 20%;
    animation: scale-anime-sp 6s infinite ease-in-out;
  }
}
.main-cloud img:nth-child(4) {
  position: absolute;
  top: 98%;
  left: 6%;
  width: 14%;
  animation: scale-anime 6s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .main-cloud img:nth-child(4) {
    width: 31%;
    animation: scale-anime-sp 6s infinite ease-in-out;
  }
}

/* MAIN VEGI */
.main-vegi-img {
  position: absolute;
}
.main-vegi-img:nth-child(1) {
  top: 12%;
  left: 24%;
  width: 10%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(1) {
    width: 13%;
    top: 23%;
    left: 22%;
  }
}
.main-vegi-img:nth-child(2) {
  top: 42%;
  left: 13%;
  width: 8.5%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(2) {
    top: 90%;
    left: 10%;
    width: 12%;
  }
}
.main-vegi-img:nth-child(3) {
  top: 83%;
  left: 18%;
  width: 7%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(3) {
    top: 102%;
    left: 56%;
    width: 10%;
  }
}
.main-vegi-img:nth-child(4) {
  top: 7%;
  right: 23%;
  width: 9%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(4) {
    top: 11%;
    right: 27%;
    width: 11%;
  }
}
.main-vegi-img:nth-child(5) {
  top: 29%;
  right: 12%;
  width: 9%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(5) {
    top: 23%;
    right: 11%;
    width: 13%;
  }
}
.main-vegi-img:nth-child(6) {
  top: 72%;
  right: 14%;
  width: 7%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .main-vegi-img:nth-child(6) {
    top: 89%;
    right: 10%;
    width: 9%;
  }
}

/* LP Original Style
===============================*/
body {
  background-image: url(images/bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* MAIN-V
==============================*/
.main-v {
  width: 100%;
  position: relative;
}
.main-v .main-flame {
  width: 100%;
}
.main-v .main-flame img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .main-v .main-flame img {
    height: 100vw;
  }
}
.main-v .main-hokuren {
  position: absolute;
  width: 16.4%;
  top: 4%;
  left: 4.5%;
  z-index: 20;
}
@media screen and (max-width: 800px) {
  .main-v .main-hokuren {
    width: 30%;
  }
}
.main-v .g-navi {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 18%;
  z-index: 30;
}
.main-v .g-navi a {
  display: block;
}
.main-v .g-navi a:hover {
  opacity: 0.7;
}
.main-v .g-navi img {
  width: 100%;
}
.main-v .main-btn {
  position: fixed;
  z-index: 50;
  width: 167px;
  bottom: 3%;
  right: 2%;
}
@media screen and (max-width: 1535px) {
  .main-v .main-btn {
    width: 130px;
  }
}
@media screen and (max-width: 800px) {
  .main-v .main-btn {
    width: 20.5%;
    right: 4%;
  }
}
.main-v .main-btn img {
  width: 100%;
}
.main-v .main-logo {
  position: absolute;
  top: 22%;
  left: 24.7%;
  width: 51.5%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .main-v .main-logo {
    width: 95%;
    top: 28%;
    left: 2.3%;
  }
}
.main-v .main-logo .main-img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.main-v .main-logo .main-img:nth-child(1) {
  opacity: 0;
}
.main-v .main-logo .main-img:nth-child(2) {
  opacity: 1;
  z-index: 20;
}
.main-v .main-logo .main-img:nth-child(3) {
  opacity: 0;
  z-index: 1;
}
.main-v .main-logo .main-img:nth-child(4) {
  opacity: 0;
  z-index: 2;
}
.main-v .main-logo .main-img:nth-child(5) {
  opacity: 0;
  z-index: 3;
}
.main-v .main-logo .main-img:nth-child(6) {
  opacity: 0;
  z-index: 1;
}
.main-v .main-logo .main-img:nth-child(7) {
  opacity: 0;
  z-index: 1;
}
.main-v .main-logo .main-img:nth-child(8) {
  opacity: 0;
  z-index: 3;
}
.main-v .main-logo .main-img:nth-child(9) {
  opacity: 0;
  z-index: 2;
}
.main-v .main-logo .main-img:nth-child(10) {
  opacity: 0;
  z-index: 1;
}
.main-v .main-logo .main-img:nth-child(11) {
  opacity: 1;
  z-index: 1;
}
.main-v .main-logo .main-img-active:nth-child(1) {
  animation: pyon-anime 0.45s forwards ease-in-out;
  animation-delay: 0.6s;
}
.main-v .main-logo .main-img-active:nth-child(2) {
  animation: guragura-anime 0.5s forwards ease-in;
  animation-delay: 1.1s;
}
.main-v .main-logo .main-img-active:nth-child(3) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.1s;
}
.main-v .main-logo .main-img-active:nth-child(4) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.3s;
}
.main-v .main-logo .main-img-active:nth-child(5) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.2s;
}
.main-v .main-logo .main-img-active:nth-child(6) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.4s;
}
.main-v .main-logo .main-img-active:nth-child(7) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.5s;
}
.main-v .main-logo .main-img-active:nth-child(8) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.2s;
}
.main-v .main-logo .main-img-active:nth-child(9) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.3s;
}
.main-v .main-logo .main-img-active:nth-child(10) {
  animation: pyon-anime 0.3s forwards ease-in-out;
  animation-delay: 0.4s;
}

@keyframes pyon-anime {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  50% {
    transform: translateY(-25px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes guragura-anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* SKY-Z
==============================*/
.banner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  .banner {
    margin-top: 12.5vw;
  }
}
.banner .banner-main {
  width: 51.5%;
  margin: 0 auto;
}
.banner .banner-main a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .banner .banner-main {
    width: 100%;
  }
}
.banner #banner-width {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .banner #banner-width {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .banner #banner-width a {
    display: block;
    margin-bottom: 3vw;
  }
}
.banner #banner-width .x {
  display: inline-block;
  text-align: center;
  padding: 0 9.5vw;
  margin-bottom: 7vw;
}
@media (min-width: 768px) {
  .banner #banner-width .x {
    margin-bottom: 15px;
    padding: 0 8px;
  }
}
.banner #banner-width .x img {
  width: 100%;
}
.banner .banner-x {
  width: 30.5%;
  margin: 0 auto 14vw auto;
}
@media screen and (max-width: 800px) {
  .banner .banner-x {
    width: 82%;
    margin-bottom: 28vw;
  }
}
.banner .banner-x img {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .banner-vegi {
  position: absolute;
}
.banner .b-v-01 {
  top: 9%;
  left: 10%;
  width: 6%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .banner .b-v-01 {
    width: 9%;
    top: 12%;
    left: 7%;
  }
}
.banner .b-v-02 {
  top: 19%;
  left: 16%;
  width: 6%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-02 {
    width: 10%;
    top: 33%;
    left: 24%;
  }
}
.banner .b-v-03 {
  top: 4%;
  right: 16%;
  width: 7%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .banner .b-v-03 {
    width: 12%;
    top: 22%;
    right: 5%;
  }
}
.banner .b-v-04 {
  top: 34%;
  right: 14%;
  width: 7%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-04 {
    width: 11%;
    top: 42%;
    right: 23%;
  }
}
.banner .b-v-05 {
  top: 68%;
  right: 17%;
  width: 5.5%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .banner .b-v-05 {
    width: 8%;
    top: 60%;
    right: 40%;
  }
}
.banner .b-v-06 {
  top: 77%;
  left: 7%;
  width: 5%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-06 {
    width: 8%;
    top: 41%;
    left: 22%;
  }
}
.banner .b-v-07 {
  top: 81%;
  right: 7%;
  width: 8%;
  animation: fuwa-anime 3s infinite ease-in-out;
}
@media screen and (max-width: 800px) {
  .banner .b-v-07 {
    width: 12%;
    top: 102%;
    right: 11%;
  }
}
.banner .b-v-08 {
  top: 110%;
  right: 26%;
  width: 8%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-08 {
    width: 10%;
    top: 107%;
    right: 28%;
  }
}
.banner .b-v-09 {
  top: 60%;
  left: 10%;
  width: 8%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-09 {
    width: 10%;
    top: 112%;
    right: 28%;
  }
}
.banner .b-v-10 {
  top: 95%;
  left: 10%;
  width: 8%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-10 {
    width: 10%;
    top: 112%;
    right: 28%;
  }
}
.banner .b-v-11 {
  top: 97%;
  right: 10%;
  width: 8%;
  animation: fuwa-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-v-11 {
    width: 10%;
    top: 112%;
    right: 28%;
  }
}
.banner .b-c-01 {
  top: 10%;
  right: 0%;
  width: 28.5%;
  animation: scale-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-c-01 {
    top:10.5%;
    width: 23.5%;
    animation: scale-anime-sp 3s infinite ease-in-out 0.5s;
  }
}
.banner .b-c-02 {
  top: 10%;
  right: 0%;
  width: 28.5%;
}
@media screen and (max-width: 800px) {
  .banner .b-c-02 {
    width: 23.5%;
    top: 10.5%;
  }
}
.banner .b-c-03 {
  top: 30%;
  left: 0%;
  width: 24.5%;
  animation: scale-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .banner .b-c-03 {
    width: 25%;
    top: 23.2%;
    animation: scale-anime-sp 3s infinite ease-in-out 0.5s;
  }
}
.banner .b-c-04 {
  top: 30%;
  left: 0%;
  width: 24.5%;
}
@media screen and (max-width: 800px) {
  .banner .b-c-04 {
    width: 25%;
    top: 23%;
  }
}

.banner-cloud {
  position: relative;
}
.banner-cloud .sinamo-abso {
  position: absolute;
  top: 9%;
  right: -2.5%;
  width: 28%;
}
@media screen and (max-width: 800px) {
  .banner-cloud .sinamo-abso {
    width: 27%;
    top: 18%;
  }
}

.sky-z {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .sky-z .sky-z-bg {
    height: 32vw;
  }
}
.sky-z img {
  width: 100%;
}
.sky-z .banner-vegi {
  position: absolute;
}
.sky-z .b-c-05 {
  top: 34%;
  left: 10%;
  width: 30%;
  animation: scale-anime 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 800px) {
  .sky-z .b-c-05 {
    width: 40%;
    top: 18%;
    left: 13%;
    animation: scale-anime-sp 3s infinite ease-in-out 0.5s;
  }
}
.sky-z .b-c-06 {
  top: 34%;
  left: 10%;
  width: 30%;
}
@media screen and (max-width: 800px) {
  .sky-z .b-c-06 {
    width: 40%;
    top: 18%;
    left: 13%;
  }
}
.sky-z .b-c-07 {
  top: 34%;
  left: 10%;
  width: 30%;
}
@media screen and (max-width: 800px) {
  .sky-z .b-c-07 {
    width: 40%;
    top: 18%;
    left: 13%;
  }
}

footer {
  width: 100%;
}
footer img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */