@charset "utf-8";
/* CSS Document */
body {
    font-family: 微軟正黑體, Arial;
    margin: 0 auto;
    padding: 0;
    background: url(images/bg.png), url(images/bg2.png), #6FC1EA;
	background-size: auto;
    overflow-x: hidden;
/*    animation: bgani 30s infinite linear;*/
}

@keyframes bgani {
    0% { background-position: 0 0; }
    100% { background-position: 0px -1000px; }
}

a {
    color: #de507d;
    text-decoration: none;
}
a:hover {
    color: #0CC;
}

.gp {
    display: inline-block;
}

/* 東立選單 */
#nav {
    min-height: 1vh;
    text-align: center;
    margin-bottom: 0;
    z-index: B6DDFE9;
    margin-top: 1em;
}

#nav a {
    color: #572A1B;
    animation: 1s linear 0s normal none infinite jello-horizontal;
    margin: 1%;
    font-size: 1.1em;
    display: inline-block;
    text-decoration: none;
}

@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
/* 東立選單結束 */

/* 主視覺 */
.vicover {
    position: relative;  
    margin: 0 auto;
    text-align: center;
}
.visual {
    width: 80%;
    display:block;
	position:relative;
    margin: 0 auto;
}
.visual img,
.visual2 img {
    width: 100%;
    max-width: 1500px;
}


/* 主視覺結束 */

/* 各內容區塊樣式 */
.block {
    position: relative;
    width: 100%;
    margin-top: -2%;
    text-align: center;
}
h1 {
    color: #FFF;
    margin: 1em auto;
    text-align: center;
    font-size: 40px;
	line-height:1.5em
}
h1 span{ font-size:.8em; line-height:0.5em; color:#6F6293}
.block2 {
    display: block;
    margin: auto;
    width: 65%;
}


.copyright {
    display: block;
    color: #FFF;
    font-size: 13px;
    margin: 1% auto;
    letter-spacing: .1em;
    line-height: 2em;
    text-align: center;
}

.price {
    text-align: center;
    margin: 2% auto;
    color: #FFF;
    line-height: 2em;
	font-size:22px;
	font-weight:bolder;
	background:#D35D83;
	width:40%
}


.gift {
    width: 90%;
    display: block;
    max-width: 1000px;
    margin: 1% auto;
    z-index: 99;
}
.gift:hover{ animation:big 0.2S ease-in both;}


.stitle {
    width: 100%;
    z-index: 99;
    display: inline-block;
    position: absolute;
}

p {
    line-height: 2.5em;
    margin: 0% auto;
    text-align: center;
    color: #FFF;
	font-size:20px;
    font-weight: bolder;
    text-indent: 0;
}

p a {
    text-decoration: none;
}

.cast{ display: inline-block; width:35%; margin:2%; position:relative; box-shadow:#6F6293 0 20px 20px; border-radius:1em}
.castimg{ width:90%; margin:2% auto; border-radius:50em; display:block; position:relative; max-width:300px}
.casttxt{ display: block; width:90%; margin:2% auto}
.casttxt h2{ font-size:30px; margin:1% auto; color:#6F6293}
.casttxt p{ text-align:left; text-indent:2em; line-height:2em}

/*animate*/

@keyframes big {
    0% { transform: none; }
    100% { transform: scale(1.05); }
}


@keyframes rot {
    0% { transform: rotate(0); }
    50% { transform: rotate(-2deg); }
    100% { transform: rotate(0); }
}

@keyframes jump {
    0% { transform: translate(0,0px); }
    50% { transform: translate(0,-4px); }
    100% { transform:  translate(0,0px); }
}

/* shop */
.btn {
    font-size: 1.2em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1% 2%;
    border: 2px solid #D35D83;
    border-radius: 10em;
    background: rgba(255,255,255,1);
    overflow: hidden;
    margin: 1% 1%;
    position: relative;
    display: inline-block;
    color: #D35D83;
    width: 16%;
    z-index: 5;
    transition: all 0.5s;
    cursor: pointer;
}
.long{   border-radius:2em; width:30%}
.btn:hover {
    color: #FFF;
    text-shadow: #D35D83 1px 1px 4px, #D35D83 0px 0px 10px, #D35D83 0px 0px 10px, #D35D83 0px 0px 10px;
    animation: swoosh 0.4s ease-out 0.2s;
    border: 2px solid #D35D83;
}

.btn:before,
.btn:after {
    content: "";
    background-color: #D35D83;
    height: 100%;
    width: 100%;
    opacity: .9;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    transition: all 0.4s ease-out 0.1s;
}

.btn:after {
    opacity: 0;
    transform: scale(0.9, 0.7);
    left: 0;
    transition: all 0.3s ease-out 0s;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover:after {
    opacity: .7;
    transform: scale(1);
}

@keyframes swoosh {
    0%, 100% { box-shadow: 0 0 0 0 transparent; }
    50% { box-shadow: 0 0 0 8px rgba(210, 90, 130, 0.5); }
}

/* shop over */

.gradient2 {
    color: #FFF;
    letter-spacing: .05em;
    line-height: 2em;
    font-size: 1.8em;
    text-align: center;
    margin-top: 4em;
    font-weight: bold;
}

 
.gradient3 {
  background: linear-gradient(90deg, rgba(0, 175, 236, 0) 0%, rgba(0, 175, 236, 0.6) 15%, rgba(0, 175, 236, 0.6) 85%, rgba(0, 175, 236, 0) 100%);
  color: #FFF;
  width: 80%;
  margin: 2% auto;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: bolder;
}

.gradient4 {
  color: #D35D83;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  font-weight: bolder;
  margin: 1% auto;
  line-height: 2em;
  text-align: center;
  text-shadow: 0 0 4px #FFF, 0 0 7px #FFF, 0 0 10px #FFF, 0 0 15px #FFF;
}

.gradient4 span {
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  color: #00B2C0;
  font-size: 0.8em;
  text-shadow: 0 0 4px #FFF, 0 0 7px #FFF, 0 0 10px #FFF;
  animation: jump 1s ease infinite;
}

.gradient4 span:nth-child(2) {
  animation-delay: 0.14s;
}
.gradient4 span:nth-child(3) {
  animation-delay: 0.28s;
}
.gradient4 span:nth-child(4) {
  animation-delay: 0.42s;
}
.gradient4 span:nth-child(5) {
  animation-delay: 0.56s;
}
.gradient4 span:nth-child(6) {
  animation-delay: 0.7s;
}
.gradient4 span:nth-child(7) {
  animation-delay: 0.84s;
}


@media (max-width:767px){
h1 {    font-size: 25px;}
.block2{ width:90% }
.gift{ width:90%}
.gradient2 {font-size: 1.4em; }
.btn{ width:50%; display:block; margin:3% auto}
p {	font-size:18px;}
.long{ border-radius:0em;width:70%}
.cast{ display:block; width:90%; margin:5% auto}
.visual {    width: 100%;}
.price {	width:100%}
}

