﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Lists
 *   1.5 Table
 *   1.6 Other Elements
 *        1.6.1 page top
 *        1.6.2 btn
 * 2. HEADER
 * 3. MAIN VISUAL
 * 4. CONTENTS
 *    4.1 Info
 *    4.2 Topics
 *    4.3 Cast
 *    4.4 Ticket
 *    4.5 Goods
 *    4.6 SNS
 * 5. FOOTER
 * 6. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.7rem;
    background: #fff;
	color: #000;
	line-height: 2;
	font-weight: 400;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(13px + 4 * (100vw - 320px) / 704);
    }
}
@media screen and (orientation:landscape) and (max-width: 896px) {
    html {
        overflow-x: hidden;
    }
    body {
        overflow: hidden;
    }
}
@media (max-width: 767px) {
    html {
        overflow-x: hidden;
    }
    body {
        overflow: hidden;
    }
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #000;
    text-decoration: underline;
}
a:focus {
  outline: none !important;
  overflow: hidden;
  text-decoration: none;
}
*:focus {
    outline: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

.small {
    display: inline-block;
    font-size: 90%;
}
@media (max-width: 767px) {
    .small {
        line-height: 1.7;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 0.5rem !important; }
.mt10 { margin-top: 1rem !important; }
.mt15 { margin-top: 1.5rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }
.mt40 { margin-top: 4rem !important; }
.mt50 { margin-top: 5rem !important; }
.mt60 { margin-top: 6rem !important; }
.mt70 { margin-top: 7rem !important; }
.mt80 { margin-top: 8rem !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb15 { margin-bottom: 1.5rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }
.mb40 { margin-bottom: 4rem !important; }
.mb50 { margin-bottom: 5rem !important; }
.mb60 { margin-bottom: 6rem !important; }
.mb70 { margin-bottom: 7rem !important; }
.mb80 { margin-bottom: 8rem !important; }

.ml05 { margin-left: 0.5rem !important; }

@media (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-justify {
    text-align: justify;
    text-justify: inter-ideograph;
}
.line-height18 {
    line-height: 1.8 !important;
}
@media (max-width: 960px) {
     .text-left-md {
        text-align: left !important;
    }
    .text-center-md {
        text-align: center !important;
    }
    .text-right-md {
        text-align: right !important;
    }
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
    .text-justify-xs {
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #CE1427 !important;
}
.txt-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}
.txt-gray,
.txt-gray a,
.txt-gray a:hover {
    color: #ccc !important;
}
.txt-purple,
.txt-purple a,
.txt-purple a:hover {
    color: #7219C3 !important;
}

.txt-italic {
    display: inline-block;
    margin-left: 0.5rem;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
}

.txt-indent {
    display: inline-block;
    margin: 0;
    text-indent: -1em;
    padding-left: 1em;
}

.txt-marker {
    display: inline-block;
    /*background: linear-gradient(transparent 65%, #D7B7EA 65%);*/
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgba(215, 183, 234, 1);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
}
@media (max-width: 767px) {
    .txt-marker {
        text-decoration: none;
        background:linear-gradient(transparent 70%, #D7B7EA 70%) !important;
    }
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.f10 { font-size: 1rem !important; }
.f11 { font-size: 1.1rem !important; }
.f12 { font-size: 1.2rem !important; }
.f13 { font-size: 1.3rem !important; }
.f14 { font-size: 1.4rem !important; }
.f15 { font-size: 1.5rem !important; }
.f16 { font-size: 1.6rem !important; }
.f17 { font-size: 1.7rem !important; }
.f18 { font-size: 1.8rem !important; }
.f19 { font-size: 1.9rem !important; }
.f20 { font-size: 2rem !important; }
.f21 { font-size: 2.1rem !important; }
.f22 { font-size: 2.2rem !important; }
.f23 { font-size: 2.3rem !important; }
.f24 { font-size: 2.4rem !important; }
.f25 { font-size: 2.5rem !important; }
.f50 { font-size: 5rem !important; }
@media (max-width: 960px) {
    .f18, .f19 {
        font-size: 1.6rem !important;
    }
    .f20, .f21 {
        font-size: 1.7rem !important;
    }
    .f22, .f23 {
        font-size: 1.8rem !important;
    }
    .f24, .f25 {
        font-size: 2rem !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 1.2rem !important;
    }
    .f15, .f16 {
        font-size: 1.3rem !important;
    }
    .f17, .f18 {
        font-size: 1.4rem !important;
    }
    .f19, .f20, .f21 {
        font-size: 1.5rem !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 1.6rem !important;
    }
    .f50 {
        font-size: 3rem !important;
    }
    .f15-xs {
        font-size: 1.5rem !important;
    }
    .f14-xs {
        font-size: 1.4rem !important;
    }
    .f13-xs {
        font-size: 1.3rem !important;
    }
    .f12-xs {
        font-size: 1.2rem !important;
    }
    .f11-xs {
        font-size: 1.1rem !important;
    }
    .f10-xs {
        font-size: 1rem !important;
        line-height: 1.6;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.6;
    }
}

.section-ttl {
    max-width: 220px;
    margin: 0 auto 5rem;
}
@media (max-width: 960px) {
    .section-ttl {
        max-width: 180px;
        margin-bottom: 3rem;
    }
}
@media (max-width: 767px) {
    .section-ttl {
        max-width: 130px;
        margin-bottom: 2rem;
    }
}

/* 1.4 Lists
 * ------------------------------*/
ul.disc-list {
    list-style: disc;
    margin: 0 0 0 2.2rem;
    line-height: 2.3;
}

ol.ol-list {
    padding: 0;
    margin: 0 0 0 2.2rem;
    line-height: 2.3;
}
@media (max-width: 767px) {
    ul.disc-list {
        margin-left: 2rem;
    }
    ul.disc-list,
    ol.ol-list {
        line-height: 2;
    }
}

/* 1.5 Table
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin: 0 0 3rem;
}
table th {
    background: #faf6ee;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0.7rem 1rem;
    font-weight: 400;
}
table td {
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0.7rem 1rem;
}
@media (max-width: 960px) {
    table tr.sp-none {
        display: none !important;
    }
}
@media (max-width: 767px) {
    table {
        margin-bottom: 2rem;
    }
    table th,
    table td {
        padding: 0.5rem 1rem 0.6rem;
        white-space: normal !important;
    }
}

/* 1.6 Other Elements
 * ------------------------------*/
/* 1.6.1 page top ------------*/
#pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 10;
    transition: background-color 400ms;
    background: url(../image/pagetop.svg) center center no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
#pagetop:hover {
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 767px) {
    #pagetop {
        width: 44px;
        height: 44px;
        right: 15px;
    }
}

/* 1.6.2 btn ------------*/
.btn {
    max-width: 900px;
    box-sizing: border-box;
    margin: 6.5rem auto 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 2px solid #CE1427;
    padding: 2rem 1rem 2.3rem;
    text-align: center;
    outline: none;
    transition: ease .2s;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    background: #CE1427;
    line-height: 1.6;
}
.btn.pre {
    max-width: 800px;
}
.btn.large {
    font-size: 3.5rem;
}
.btn:hover {
    text-decoration: none;
    transition: 0.5s;
}
.btn .txt {
    position: relative;
    z-index: 3;
    color: #fff;
}
.btn:hover .txt {
    color: #CE1427;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background:#fff;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}
.btn:hover::before {
  animation: skewanime .5s forwards;
}
.btn.pre::before {
    display: none;
}
.btn i {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.btn:hover i {
    color: #CE1427;
}
@media (max-width: 1024px) {
    .btn {
        font-size: calc(15px + 13 * (100vw - 320px) / 704);
    }
    .btn.large {
        font-size: calc(16px + 19 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .btn {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .btn {
        margin-top: 3rem;
        padding: 1rem 1rem 1.2rem;
    }
    .btn i {
        right: 15px;
    }
}
@media (max-width: 360px) {
    .btn.large {
        font-size: 1.5rem;
    }
}

.btn-map {
    display: inline-block;
    width: 170px;
    margin: 0 1.5rem;
    background: #CAB14F;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.4rem 2rem 1rem 1rem;
    box-sizing: border-box;
    text-align: center;
    border-radius: 40px;
    border: 2px solid #CAB14F;
    position: relative;
    vertical-align: -50%;
    z-index: 10;
    overflow: hidden;
}
.btn-map:hover {
    text-decoration: none;
    color: #CAB14F;
    background: #fff;
    transition: 0.5s;
}
.btn-map i {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
@media (max-width: 1024px) {
    .btn-map {
        font-size: calc(12px + 6 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .btn-map {
        width: 150px;
        margin: 0 1rem;
        padding: 0.3rem 1.5rem 0.8rem 1rem;
    }
}
@media (max-width: 480px) {
    .btn-map {
        display: block;
        width: 140px;
        margin: 0.5rem auto 0;
        padding: 0.3rem 1.5rem 0.8rem 1rem;
        font-size: 1.3rem;
    }
}

/*----- tsuika hanbai -----*/
.btn-tsuika-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
.btn-tsuika-box .icon-tsuika {
    display: block;
    position: absolute;
    top: -20px;
    left: -60px;
    margin: 0;
    width: 140px;
    z-index: 10;
}
@media (max-width: 960px) {
    .btn-tsuika-box .icon-tsuika {
        width: 110px;
        top: -12px;
        left: -25px;
    }
}
@media (max-width: 767px) {
    .btn-tsuika-box .icon-tsuika {
        width: 70px;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
    }
    .btn-tsuika-box .btn {
        padding-left: 5rem;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    display: none;
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
    background: #7219C3 url(../image/main.png) top center no-repeat;
    background-size: cover;
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    overflow: hidden;
}
@media (max-width: 1200px) {
    #main-visual {
        height: 700px;
    }
}
@media (max-width: 960px) {
    #main-visual {
        height: 500px;
    }
}
@media screen and (orientation:landscape) and (max-width: 896px) {
    #main-visual {
        height: 500px;
    }
}
@media (max-width: 767px) {
    #main-visual {
        height: 400px;
    }
}
@media (max-width: 480px) {
    #main-visual {
        height: 580px;
    }
}
@media (max-width: 390px) {
    #main-visual {
        height: 550px;
    }
}

.main-circle {
    width: calc(620 / 1280 * 100vw);
    height: calc(620 / 1280 * 100vw);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
	will-change: transform;
	-webkit-animation: rotation 30s linear infinite;
	-o-animation: rotation 30s infinite linear;
	animation: rotation 30s linear infinite;
}
.main-ttl {
    position: absolute;
    width: calc(270 / 1280 * 100vw);
    top: 20px;
    left: 30px;
    margin: 0;
    z-index: 2;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    display: none;
}
@media (max-width: 480px) {
    .main-circle {
        width: 320px;
        height: 320px;
        top: 80px;
        margin: 0 auto;
    }
    .main-ttl {
        display: block;
        width: 200px;
        top: 10px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

.main-logo-info {
    position: absolute;
    width: calc(800 / 1280 * 100vw);
    left: 0;
    right: 0;
    top: 40%;
    transform: translateY(-40%);
    margin: auto;
    z-index: 2;
}
.main-logo {
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.main-info {
    margin-top: 2%;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
@media (max-width: 1200px) {
    .main-logo-info {
        width: calc(670 / 1200 * 100vw);
    }
}
@media (max-width: 1024px) {
    .main-logo-info {
        width: calc(650 / 1024 * 100vw);
    }
}
@media (max-width: 960px) {
    .main-logo-info {
        width: calc(580 / 960 * 100vw);
    }
}
@media (max-width: 480px) {
    .main-logo-info {
        width: 90%;
        top: 265px;
    }
}
@media (max-width: 390px) {
    .main-logo-info {
        top: 255px;
    }
}

.main-speaker-left {
    position: absolute;
    width: calc(120 / 1280 * 100vw);
    left: -90px;
    bottom: -21px;
    margin: 0;
    z-index: 2;
    overflow: hidden;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.main-speaker-left::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 56px;
    width: calc(65 / 1280 * 100vw);
    height: calc(65 / 1280 * 100vw);
    border-radius: 50%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.17) 100%);
    transform: skewX(5deg);
   animation: flash 1s infinite;
}
.main-speaker-right {
    position: absolute;
    width: calc(120 / 1280 * 100vw);
    right: -90px;
    bottom: -21px;
    margin: 0;
    z-index: 2;
    overflow: hidden;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.main-speaker-right::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 75px;
    width: calc(65 / 1280 * 100vw);
    height: calc(65 / 1280 * 100vw);
    border-radius: 50%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.17) 100%);
    transform: skewX(-5deg);
   animation: flash 1s infinite;
}
@media (max-width: 1400px) {
    .main-speaker-left::before {
        left: 46px;
    }
    .main-speaker-right::before {
        right: 65px;
    }
}
@media (max-width: 1200px) {
    .main-speaker-left {
        left: -70px;
        bottom: -10px;
    }
    .main-speaker-right {
        right: -70px;
        bottom: -10px;
    }
    .main-speaker-left::before {
        left: 38px;
    }
    .main-speaker-right::before {
        right: 50px;
    }
}
@media (max-width: 1024px) {
    .main-speaker-left::before {
        left: 28px;
    }
    .main-speaker-right::before {
        right: 40px;
    }
}
@media (max-width: 960px) {
    .main-speaker-left {
        left: -40px;
        bottom: -11px;
    }
    .main-speaker-right {
        right: -40px;
        bottom: -11px;
    }
    .main-speaker-left::before {
        top: 10px;
        left: 20px;
    }
    .main-speaker-right::before {
        top: 10px;
        right: 30px;
    }
}
@media (max-width: 480px) {
    .main-speaker-left {
        width: 70px;
        left: -19px;
    }
    .main-speaker-right {
        width: 70px;
        right: -19px;
    }
    .main-speaker-left::before {
        left: 25px;
        top: 15px;
        width: 35px;
        height: 35px;
    }
    .main-speaker-right::before {
        right: 35px;
        top: 15px;
        width: 35px;
        height: 35px;
    }
}

.main-pict01,
.main-pict02,
.main-pict03,
.main-pict04 {
    position: absolute;
    margin: 0;
    z-index: 0;
}
.main-pict01 {
    width: 630px;
    bottom: -105px;
    left: -130px;
    z-index: 1;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.main-pict02 {
    width: 630px;
    top: 0;
    right: -190px;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.main-pict03 {
    width: 490px;
    top: 180px;
    left: -200px;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.main-pict04 {
    width: 440px;
    top: 60vh;
    right: -160px;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
@media (max-width: 1400px) {
    .main-pict01 {
        width: 400px;
        bottom: -63px;
        left: -50px;
    }
    .main-pict02 {
        width: 400px;
        right: -150px;
    }
}
@media (max-width: 1200px) {
    .main-pict01 {
        top: 635px;
    }
    .main-pict03 {
        width: 300px;
        top: 180px;
        left: -100px;
    }
    .main-pict04 {
        width: 300px;
        top: 300px;
        right: -120px;
    }
}
@media (max-width: 960px) {
    .main-pict01 {
        width: 350px;
        top: 445px;
        left: -50px;
    }
    .main-pict02 {
        width: 400px;
        right: -190px;
    }
    .main-pict03 {
        width: 200px;
        top: 180px;
        left: -50px;
    }
    .main-pict04 {
        width: 200px;
        top: 270px;
        right: -80px;
    }
}
@media (max-width: 767px) {
    .main-pict01 {
        width: 250px;
        top: 360px;
        left: -50px;
    }
    .main-pict02 {
        width: 300px;
        right: -100px;
    }
}
@media (max-width: 480px) {
    .main-pict01 {
        width: 200px;
        top: 548px;
        left: -50px;
    }
    .main-pict02 {
        width: 250px;
        right: -160px;
    }
    .main-pict03 {
        width: 150px;
        top: 180px;
        left: -50px;
    }
    .main-pict04 {
        width: 150px;
        top: 270px;
        right: -80px;
    }
}
@media (max-width: 390px) {
    .main-pict01 {
        top: 517px;
    }
}

.main-cloud-top,
.main-cloud-bottom {
    position: absolute;
    margin: 0;
    z-index: 0;
    width: 380px;
}
.main-cloud-top {
    top: -285px;
    left: -50px;
    -webkit-animation: cloud 2s ease-in-out infinite;
    animation: cloud 2s ease-in-out infinite;
}
.main-cloud-bottom {
    bottom: -285px;
    right: -90px;
    -webkit-animation: cloud 2s ease-in-out infinite;
    animation: cloud 2s ease-in-out infinite;
}
@media (max-width: 960px) {
    .main-cloud-top,
    .main-cloud-bottom {
        width: 300px;
    }
    .main-cloud-top {
        top: -240px;
        left: -50px;
    }
    .main-cloud-bottom {
        bottom: -240px;
        right: -90px;
    }
}
@media (max-width: 480px) {
    .main-cloud-top,
    .main-cloud-bottom {
        width: 180px;
    }
    .main-cloud-top {
        top: -120px;
        left: -90px;
    }
    .main-cloud-bottom {
        bottom: -120px;
        right: -100px;
    }
}

.main-badge-goods,
.main-badge-hulu {
    position: absolute;
    margin: 0;
    z-index: 0;
    width: calc(180 / 1280 * 100vw);
    top: calc(25 / 1280 * 100vw);
    z-index: 2;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.main-badge-goods {
    right: calc(30 / 1280 * 100vw);
}
.main-badge-hulu {
    left: calc(30 / 1280 * 100vw);
}
@media (max-width: 1024px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 165px;
        top: 30px;
    }
    .main-badge-goods {
         right: 10px;
    }
    .main-badge-hulu {
        left: 10px;
    }
}
@media (max-width: 960px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 130px;
    }
}
@media (max-width: 767px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 115px;
    }
}
@media (max-width: 480px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 110px;
        top: 5px;
    }
    .main-badge-goods {
         right: 0;
    }
    .main-badge-hulu {
        left: 0;
    }
}
@media (max-width: 420px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 100px;
    }
}
@media (max-width: 390px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 90px;
    }
}
@media (max-width: 360px) {
    .main-badge-goods,
    .main-badge-hulu {
        width: 80px;
    }
}

/*-------------------------------
 * 4. CONTENTS
 * ----------------------------*/
main {
    margin: 0 auto;
    padding: 0;
}
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
section {
    margin: 0;
    padding: 6rem 0 12rem;
    position: relative;
}
@media (max-width: 1120px) {
    .wrap {
        max-width: 92vw;
    }
}
@media (max-width: 960px) {
    section {
        padding: 6rem 0 10rem;
    }
}
@media (max-width: 767px) {
    section {
        padding: 3rem 0 6rem;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}

.waku-wrap {
    position: relative;
}
.waku-box {
    position: relative;
    margin: 5rem auto 0;
    padding: 5rem 4rem 3rem 7rem;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #CAB14F;
    z-index: 1;
}
.waku-box::before {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 2px solid #CAB14F;
    border-radius: 20px;
    z-index: 2;
}
@media (max-width: 960px) {
    .waku-box {
        padding: 4rem 3rem 2rem 4rem;
    }
}
@media (max-width: 767px) {
    .waku-box {
        border-radius: 8px;
        margin-top: 2rem;
        padding: 2rem 1.5rem 1rem 2.5rem;
    }
    .waku-box::before {
        border-radius: 8px;
        inset: 8px -10px -10px 8px;
    }
}

.pict-top-right {
    width: 200px;
    position: absolute;
    right: -150px;
    top: 50px;
    z-index: 0;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.pict-top-right.info {
    z-index: 1;
    top: -38px;
    right: -120px;
}
.pict-bottom-left {
    width: 200px;
    position: absolute;
    left: -120px;
    bottom: 50px;
    z-index: 0;
    -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.pict-bottom-left.info {
    bottom: -80px;
    z-index: 1;
}
@media (max-width: 960px) {
    .pict-bottom-left.info {
        bottom: -40px;
    }
}
@media (max-width: 767px) {
    .pict-top-right {
        right: -90px;
        top: -40px;
        width: 120px;
    }
    .pict-bottom-left {
        left: -50px;
        bottom: -20px;
        width: 120px;
    }
    .pict-top-right.info {
        width: 150px;
        top: -30px;
    }
    .pict-bottom-left.info {
        width: 150px;
        bottom: -15px;
    }
}

.line {
    display: block;
    width: 100%;
    height: 50px;
    background-position: 0 0;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: calc(-18 / 1280 * 100vw);
    left: 0;
}
.line.gold {
    background-image: url(../image/line-gold.png);
}
.line.white {
    background-image: url(../image/line-white.png);
}
.line.black {
    background-image: url(../image/line-black.png);
}

/*-- ticket list --*/
dl.dl-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0;
    padding: 0;
    font-size: 2.2rem;
    font-weight: 600;
}
dl.dl-list + dl.dl-list {
    margin-top: 1.5rem;
}
dl.dl-list dt {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 15%;
}
dl.dl-list dt span {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    color: #fff;
    background: #7219C3;
    border-radius: 8px;
    line-height: 1;
    padding: 1rem 1rem 1.45rem;
}
dl.dl-list dd {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 85%;
    padding-left: 4rem;
}
dl.dl-list dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0;
    padding: 0;
}
dl.dl-list dl dt {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 18%;
}
dl.dl-list dl dd {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 82%;
}
@media (max-width: 1024px) {
    dl.dl-list {
        font-size: calc(15px + 7 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    dl.dl-list dt {
        width: 20%;
    }
    dl.dl-list dd {
        width: 80%;
        padding-left: 2rem;
    }
    dl.dl-list dl dt {
        width: 24%;
    }
    dl.dl-list dl dd {
        width: 76%;
    }
}
@media (max-width: 480px) {
    dl.dl-list dt {
        width: 100%;
        margin-bottom: 1rem;
    }
    dl.dl-list dd {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    dl.dl-list dt span {
        border-radius: 6px;
        padding: 0.7rem 0.5rem 0.9rem;
    }
    dl.dl-list + dl.dl-list {
        margin-top: 2rem;
    }
    dl.dl-list dl dt {
        width: 28%;
    }
    dl.dl-list dl dd {
        width: 72%;
    }
}
@media (max-width: 380px) {
    dl.dl-list dl dt {
        width: 35%;
    }
    dl.dl-list dl dd {
        width: 65%;
    }
}

dl.dl-list .day {
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
}
dl.dl-list .week {
    display: inline-block;
    font-size: 2.4rem;
    vertical-align: 4%;
    margin-left: 0.5rem;
}
@media (max-width: 1024px) {
    dl.dl-list .day {
        font-size: calc(16px + 14 * (100vw - 320px) / 704);
    }
    dl.dl-list .week {
        font-size: calc(14px + 10 * (100vw - 320px) / 704);
    }
}

/* 4.1  Info
 * ------------------------------*/
.info-wrap {
     padding: 10rem 0 15rem;
     background: url(../image/bg-pattern.jpg) top center repeat;
     background-size: auto;
}
.info-wrap .sub {
    text-align: center;
    font-size: 2.4rem;
    line-height: 2.35;
}
@media (max-width: 1024px) {
    .info-wrap {
        padding-top: 10rem;
    }
    .info-wrap .sub {
        font-size: calc(16px + 8 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .info-wrap {
        padding: 8rem 0 10rem;
    }
}
@media (max-width: 767px) {
    .info-wrap {
        padding: 4rem 0 6rem;
    }
    .info-wrap .sub {
        line-height: 2;
    }
}

.photo-mask figure {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.photo-mask figure::before {
    content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #7219C3;
}
.photo-mask.circle figure::before {
    border-radius: 50%;
}
.photo-mask.move figure::before {
    animation: barAnime forwards 1.2s 1 ease 0.1s normal;
}
.photo-mask figure img {
    opacity: 0;
    transform: scale(1.1);
}
.photo-mask.move figure img {
    animation: photoAnime forwards 1.2s 1 ease 0.5s normal;
}
@-webkit-keyframes barAnime {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
  100% {
		left: 100%;
		width: 0;
	}
}
@keyframes barAnime {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
  100% {
		left: 100%;
		width: 0;
	}
}

@-webkit-keyframes photoAnime {
	0% {
    opacity: 0;
    transform: scale(1.1);
  }
	50% {
    opacity: 0;
    transform: scale(1.1);
  }
	100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes photoAnime {
	0% {
    opacity: 0;
    transform: scale(1.1);
  }
	50% {
    opacity: 0;
    transform: scale(1.1);
  }
	100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 4.2 Topics
 * ------------------------------*/
.topics-wrap {
    background: url(../image/bg-gold.jpg) top center repeat;
    background-size: auto;
}
.topics-wrap .waku-box {
    padding-left: 5rem;
    padding-right: 3rem;
}
@media (max-width: 960px) {
    .topics-wrap .waku-box {
        padding-left: 4rem;
        padding-right: 2rem;
    }
}
@media (max-width: 767px) {
    .topics-wrap .waku-box {
        padding: 2rem 1rem 1rem 2.5rem;
    }
}

.topics-box {
    width: 100%;
    margin: 0;
    height: 350px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    z-index: 10;
}
.topics-box::-webkit-scrollbar {
    width: 5px;
}
.topics-box::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.topics-box::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #7219C3;
}
@media (max-width: 960px) {
    .topics-box {
        height: 320px;
    }
    .topics-box::-webkit-scrollbar {
        width: 3px;
    }
}
@media (max-width: 767px) {
    .topics-box {
        height: 260px;
    }
}

.topics-box ul {
    width: 100%;
    box-sizing: border-box;
}
.topics-box ul li {
    width: 100%;
    display: table;
    padding: 1.8rem 0.5rem 2rem 0;
    border-bottom: 1px dashed #BAA373;
    line-height: 1.8;
    box-sizing: border-box;
}
.topics-box ul li:first-of-type {
    border-top: 1px dashed #BAA373;
}
.topics-box ul li a {
    display: block;
    color: #000;
    text-decoration: none;
}
.topics-box ul li a:hover {
    text-decoration: none;
    color: #999;
    transition: 0.5s;
}
.topics-box ul li .day {
    display: table-cell;
    width: 110px;
    color: #000;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
}
.topics-box ul li .icon {
    display: table-cell;
    width: 150px;
}
.topics-box ul li .icon span {
    display: inline-block;
    width: 150px;
    height: 28px;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    line-height: 1;
    padding-top: 0.5rem;
    background: #7219C3;
}
.topics-box ul li .txt {
    display: table-cell;
    box-sizing: border-box;
    padding-left: 2rem;
}
@media (max-width: 1024px) {
    .topics-box ul li .day,
    .topics-box ul li .icon span {
        font-size: calc(12px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .topics-box ul li {
        padding: 1.5rem 0;
    }
}
@media (max-width: 767px) {
	.topics-box ul {
        padding-right: 1rem;
    }
    .topics-box ul li {
        padding: 1rem 0;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }
    .topics-box ul li .day {
        width: 80px;
        font-size: 1.3rem;
    }
    .topics-box ul li .icon span {
        height: 22px;
        padding-top: 0.4rem;
        vertical-align: 10%;
    }
    .topics-box ul li .txt {
        width: 100%;
        padding-top: 0.5rem;
        padding-left: 0;
    }
}

/* 4.3 Cast
 * ------------------------------*/
.cast-wrap {
    background: url(../image/bg-pattern.jpg) top center repeat;
    background-size: auto;
}

ul.cast-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    padding: 0;
    gap: 70px 70px;
}
ul.cast-list.col2 {
    width: calc(100% - 33.33333%);
}
ul.cast-list.col2 li {
    width: calc(100% / 2 - 35px );
}
ul.cast-list.col3 li {
    width: calc(100% / 3 - 47px );
}
ul.cast-list + ul.cast-list {
    margin-top: 7rem;
}
ul.cast-list li .img {
    position: relative;
}
ul.cast-list li .txt-credit {
    display: block;
    width: 200px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000,
           -2px 2px 0px #000,  2px -2px 0px #000,
            2px 0px 0px #000, -2px -0px 0px #000,
            0px 2px 0px #000,  0px -2px 0px #000;
}
ul.cast-list li .sub {
    margin: 2rem auto 0;
}
@media (max-width: 960px) {
    ul.cast-list {
        gap: 40px 40px;
    }
    ul.cast-list.col2 li {
        width: calc(100% / 2 - 20px );
    }
    ul.cast-list.col3 li {
        width: calc(100% / 3 - 27px );
    }
    ul.cast-list + ul.cast-list {
        margin-top: 4rem;
    }
}
@media (max-width: 480px) {
    ul.cast-list {
        gap: 30px 20px;
    }
    ul.cast-list.col2 {
        width: 100%;
    }
    ul.cast-list.col2 li {
        width: calc(100% / 2 - 10px );
    }
    ul.cast-list.col3 li {
        width: calc(100% / 2 - 10px );
    }
    ul.cast-list + ul.cast-list {
        margin-top: 3rem;
    }
    ul.cast-list li .txt-credit {
        font-size: 1rem;
        bottom: 11px;
    }
}

/* 4.4 Ticket
 * ------------------------------*/
.ticket-wrap {
    background: url(../image/bg-black.jpg) top center repeat;
    background-size: auto;
}

.attention-box {
    margin: 4rem 0 0;
    font-size: 1.6rem;
}
.attention-box .sub {
    background: #b15690;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 0.8rem 0.5rem 1rem;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem;
    border-radius: 8px;
}
.attention-box ul li {
    margin: 0;
    padding: 0;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.8;
    font-size: 1.6rem;
}
@media (max-width: 1024px) {
    .attention-box .sub {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
    .attention-box ul li {
        font-size: calc(12px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .attention-box {
        margin-top: 3rem;
    }
    .attention-box .sub {
        border-radius: 6px;
        padding: 0.7rem 0.5rem 0.8rem;
        margin-bottom: 1rem;
    }
}

/* 4.5 Goods
 * ------------------------------*/
.goods-wrap {
    background: url(../image/bg-black.jpg) top center repeat;
    background-size: auto;
    padding-top: 4rem;
}
.goods-wrap .comming-soon {
    max-width: 45%;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .goods-wrap {
        padding-top: 0;
    }
    .goods-wrap .comming-soon {
        max-width: 60%;
    }
}

ul.goods-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    margin: 0 auto;
    padding: 0;
    gap: 30px 30px;
}
ul.goods-box li {
    width: calc(100% / 3 - 20px );
    background: #fff;
    border: 2px solid #CAB14F;
    box-sizing: border-box;
}
ul.goods-box li .inner {
    background: #fff;
    padding: 2rem 0.5rem;
}
ul.goods-box li .sub {
    background: #7219C3;;
    color: #fff;
    line-height: 1.5;
    padding: 0.8rem 0.3rem 1.1rem;
    text-align: center;
    font-size: 1.9rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
ul.goods-box li .sub.h-wide {
    min-height: 120px;
}
ul.goods-box li .txt {
    text-align: center;
    margin: 0 1rem 1.2rem;
    font-size: 1.6rem;
    line-height: 1.6;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
}
ul.goods-box li.bg-none {
    background: none;
    color: #fff;
    border: none;
}
@media (max-width: 1024px) {
    ul.goods-box li .sub {
        font-size: calc(13px + 6 * (100vw - 320px) / 704);
    }
    ul.goods-box li .txt {
        font-size: calc(10px + 6 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    ul.goods-box li .sub.h-wide,
    ul.goods-box li .sub.h-wide-md {
        min-height: 100px;
    }
}
@media (max-width: 767px) {
    ul.goods-box {
        gap: 15px 15px;
        justify-content: flex-start;
    }
    ul.goods-box li {
        width: calc(100% / 2 - 8px );
    }
    ul.goods-box li.wide {
        width: 100%;
    }
    ul.goods-box li.wide img {
        width: 70%;
    }
    ul.goods-box li .inner {
        padding: 1rem 0;
    }
    ul.goods-box li .sub {
        padding: 0.5rem 0.3rem 0.7rem;
    }
    ul.goods-box li .sub.h-wide,
    ul.goods-box li .sub.h-wide-md {
        min-height: 0;
    }
    ul.goods-box li .sub.h-wide-xs {
        min-height: 85px;
    }
    ul.goods-box li .txt {
        margin-top: 0.5rem;
        margin-bottom: 0.8rem;
    }
}

/* 4.6 SNS
 * ------------------------------*/
ul.sns-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto 14rem;
    padding: 0;
    gap: 0 70px;
    max-width: 160px;
}
ul.sns-list li {
    width: calc(100% / 2 - 35px );
}
ul.sns-list li:hover {
    opacity: 0.7;
    transition: 0.5s;
}
@media (max-width: 767px) {
    ul.sns-list {
        margin-bottom: 7rem;
        max-width: 100px;
        gap: 0 40px;
    }
    ul.sns-list li {
        width: calc(100% / 2 - 20px );
    }
}

/*-------------------------------
 * 5. FOOTER
 * ----------------------------*/
footer {
    margin: -1rem 0 0;
    padding: 4rem 0 2rem;
    color: #fff;
    background: url(../image/bg-black.jpg) top center repeat;
    background-size: auto;
}
footer .copy {
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
}
@media (max-width: 767px) {
    footer {
        padding-top: 3rem;
    }
    footer .copy {
        font-size: 1.2rem;
    }
}

/*-------------------------------
 * 6. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.8;
  transition: 0.7s;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes fuwafuwa {
    0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0);
  }
  50% {
    transform:translate(-30px, 0);
  }
  100% {
    transform:translate(0, 0);
  }
}

@-webkit-keyframes cloud {
  0%, 100% {
      transform: rotate(10deg);
  }
  50% {
      transform: rotate(-10deg);
  }
}
@keyframes cloud {
  0%, 100% {
      transform: rotate(10deg);
  }
  50% {
      transform: rotate(-10deg);
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes skewanime {
    100% {
        left:-10%;
    }
}
@keyframes skewanime {
    100% {
        left:-10%;
    }
}
