@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Indie+Flower&family=Permanent+Marker&family=Rock+3D&family=ZCOOL+QingKe+HuangYou&display=swap');@keyframes bg1 {
	0% {
		transform: translateY(0)
	}

	to {
		transform: translateY(-916px)
	}
}

@keyframes bg2 {
	0% {
		transform: translateY(0)
	}

	to {
		transform: translateY(-916px)
	}
}

.by-home .banner {
	height: 100%;
	width: 100%;
	    position: fixed;
	overflow: hidden;
	perspective: 500px;
	transform-style: preserve-3d
}

@media screen and (max-width:768px) {
	.by-home .banner {
		height: 100%
	}
}

.by-home .banner .bg {
	min-width: 2200px;
	height: 1432px;
	z-index: 0;
	position: absolute;
	left: -22%;
	right: -22%;
	top: -22%;
	bottom: -22%;
	transform: rotateX(0deg);
	transform-origin: center;
	vertical-align: middle;
	    opacity: .3;
}

@media screen and (max-width:768px) {
	.by-home .banner .bg {
		width: 768px
	}
}

.by-home .banner .bg .bg1 {
	height: 2200px;
	background: 50% no-repeat;
	background-size: 100% 100%;
	animation: bg1 30s linear infinite
}

.by-home .banner .bg .bg2 {
	height: 1400px;
	background: 50% no-repeat;
	background-size: 100% 100%;
	animation: bg2 30s linear infinite;
}

.by-home .banner:before {
    content: "";
    position: absolute;
    right: 0;
    top: -2%;
    bottom: 0;
    left: 0;
    background-size: 100% 100%;
    z-index: -1;
    background-color: #ff9d9d;
}




/* -------------------------------- 

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 100000;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
  -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
  transition: opacity 0.3s 0, visibility 0 0.3s;
}
.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0, visibility 0 0;
  -moz-transition: opacity 0.3s 0, visibility 0 0;
  transition: opacity 0.3s 0, visibility 0 0;
}
.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #FFF;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-user-modal-container .cd-switcher:after {
  content: "";
  display: table;
  clear: both;
}
.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
}
.cd-user-modal-container .cd-switcher li:first-child a {
	border-radius: .25em 0 0 0;
	text-decoration: none;
}
.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 .25em 0 0;
  text-decoration: none;
}
.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #d2d8d8;
  color: #809191;
}
.cd-user-modal-container .cd-switcher a.selected {
  background: #FFF;
  color: #505260;
}
@media only screen and (min-width: 767px) {
  .cd-user-modal-container {
    margin: 4em auto;
  }
  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }


}

.cd-form {
  padding: 1.4em;
}
.cd-form .fieldset {
  position: relative;
  margin: 1.4em 0;
}
.cd-form .fieldset:first-child {
  margin-top: 0;
}
.cd-form .fieldset:last-child {
  margin-bottom: 0;
}
.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.cd-form label.cd-username {
  background-image: url("../images/cd-icon-username.svg");
}
.cd-form label.cd-email {
  background-image: url("../images/cd-icon-email.svg");
}
.cd-form label.cd-password {
  background-image: url("../images/cd-icon-password.svg");
}
.cd-form label.cd-phone {
  background-image: url("../images/cd-icon-phone.svg");
}
.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}
.cd-form input.full-width {
  width: 100%;
}
.cd-form input.has-padding {
  padding: 12px 20px 12px 50px;
}
.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}
.cd-form input.has-error {
  border: 1px solid #d76666;
}
.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}
.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #2f889a;
  color: #FFF;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 30px;
}
.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
  background: #3599ae;
  outline: none;
}
.cd-form .hide-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
  text-decoration: none;
}
.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: .8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}
.cd-form .cd-error-message::after {
  /* triangle */
  content: '';
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}
.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}
@media only screen and (min-width: 767px) {
  .cd-form {
   padding: 5em 8em;
    background-color: #fff;
    border-radius: 25px;
	  
  }
  .cd-form .fieldset {
    margin: 2em 0;
  }
  .cd-form .fieldset:first-child {
    margin-top: 0;
  }
  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .cd-form input.has-padding {
    padding: 16px 20px 16px 50px;
  }
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .cd-form-message {
    padding: 2em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("../images/cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: none;
  }
}

#cd-login, #cd-signup, #cd-reset-password {
  display: none;
}

#cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
  display: block;
}



.featureList__item {
	    width: 100%;
    padding-bottom: 180px;
    float: left;
	
}
.hr-r{
	 background: url(../images/hr-r.svg) repeat-x left bottom;
	    background-size: 100% auto;
}
.hr-l{
	 background: url(../images/hr-l.svg) repeat-x left bottom;
	    background-size: 100% auto;
}
.featureList__item:last-of-type {
    padding-bottom: 0px;
}


.featureList__item .ftrTxtWrap  {
	padding-left: 50px;
}

.featureList__item .ftrTxtWrap .ftr__title  {
	    line-height: 1.6;
	    margin-bottom: 50px;
    padding-bottom: 30px;
    background: url(../images/dots_hr.svg) repeat-x left bottom;
    background-size: 10px auto;
}
.Keep-Right  {
	     float: right;
}

.featureList__item .item-box   {
margin-bottom: 20px;
	 float: left;
	
}

@media screen and (max-width:768px){
.featureList__item .ftrTxtWrap {
    padding-left: 0px;
}
.featureList__item {
    padding-bottom: 80px;
}
.featureList__item  h3{
       font-size: 20px;
}
}




.about2 {
    padding-bottom: 0px;
}


.about2 .tit {
    text-align: center;
}

.about2 ul {
    background: url(../images/dots_ht.svg) repeat-y center;
    background-size: 2px auto;
}

.clearfix-time {
    display: block;
    zoom: 1;
}

.about2 .tit h6 {
    color: #666;
}


.about2 .tit h5 {
    color: #333;
    margin: 15px 0 45px;
}

.f24 {
    font-size: 24px;
}

.about2 li:before {
     background: url(../images/sy50.svg) no-repeat center center;
    left: -9px;
    top: 0px;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
}

.about2 li h4:hover {
    color: #F8F8F8;
    transition: all 1s;
    transform: translateY(-15px);
}

.about2 li h4 {
    position: relative;
    display: block;
    text-decoration: none;
    font-family: "Lato";
    color: #ecf0f1;
    text-transform: uppercase;
    padding: 4px 0;
    transition: 0.5s;
	font-family: 'Concert One', cursive;
}

.about2 li h4:hover {
    color: #95a5a6;
}

.about2 li h4:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.about2 li .span {
        color: #606060;
	    font-weight: 600;
	    font-size: 24px;
}


.f30 {
    font-size: 30px;
}



.f14 {
    font-size: 14px;
}

.about2 li:nth-child(2n):before {
    background: url(../images/sy50.svg) no-repeat center center;
    right: -8px;
    top: 12px;
    left: auto;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
}

.about2 li h4 {
    color: #333;
    transition: all 1s;
}

.about2 li p {
    color: #666;
    margin-top: 10px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.future {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 17px;
}

.clearfix-time:after {
    content: '\20';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.about2 li:nth-child(1) {
    margin-top: 0;
}

.about2 li {
float: right;
    width: 50%;
    padding: 0 5%;
    text-align: left;
    position: relative;
    margin-top: 100px;
}

.about2 li:nth-child(2n) {
    float: left;
    text-align: right;
    margin-top: 90px;
}



@media (max-width: 420px) {
.about2 li {
       width: 100%;
    padding: 0 10%;
	    margin-top: 50px;
  
}
.about2 li:nth-child(1) {
    float: left;
}
.about2 li:nth-child(2n) {
	  float: left;
    text-align: left;
    margin-top: 50px;
}	
.about2 li:before {
    left: 0px;
}
.about2 ul {
    background: url(../images/dots_ht.svg) repeat-y 8px;
	  background-size: 2px auto;
    
}
.about2 li:nth-child(2n):before {
    left: 0px;
	
}	
	.future {
    text-align: left;
  
}
}










.section-title {
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 10px;
    word-spacing: 5px;
    margin-bottom: 30px;
}
.section-title span {
    color: #eebbc3;
}
.section-title2 {
    font-size: 35px;
    font-weight: 300;
    color: #b19777;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.title-tw {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 5rem;
}













.title {
         line-height: 1.6;
	    font-size: 24px;
	    text-align: center;
	    width: 70%;
    margin: 0 auto 0px;
}


.Supplies {
        background-color: #f4efec;
        padding: 15px;
        float: left;
        width: 100%;
        border-radius: 25px;
	    margin-bottom: 25px;
}
.Supplies img{
        width: 100%;
    border-radius: 15px;
}
.Supplies h3{
       top: -50px;
       font-size: 30px;
       padding: 10px 20px;
       float: left;
       position: relative;
       background-color: #f4efec;
       border-radius: 50px;
       /* page: auto; */
}
.Supplies ul{
    margin: 10px;
    float: left;
    width: calc(100% - 20px);
}
.Supplies ul li{
  margin-bottom: 15px;
    background: url(../images/dots_hr.svg) repeat-x left bottom;
    background-size: 4px auto;
    padding-bottom: 8px;
}
.Supplies ul li span{
   float: right;
   /* font-size: 1.6rem; */
   font-weight: 600;
}

.setting-720 {
    position: relative;
    background: #fdfdfd;
    padding: 10px;
    float: left;
    margin-bottom: 20px;
    border-radius: 30px;
    /* width: calc(100% - 60px); */
    border: solid 3px #ededed;
}


.setting-720 img {
    width: 100%;
    border-radius: 20px;
}
@media (max-width: 768px) {
	.title {
	    font-size: 20px;
	   width: 100%; 
}
	}











/*關於我們*/
.box-shadow-lv2 {
    -webkit-box-shadow: 10px 10px 25px rgba(4,11,32,.3);
    box-shadow: 10px 10px 25px rgba(4,11,32,.3);
}
.title-lang .title-lang-en {
   color: #4d7d43;
    font-size: 8.5rem;
	font-weight: 700;
}
.title-lang .title-lang-ja {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
}		
 
@media screen and (max-width:420px){
	.title-lang .title-lang-en {
    font-size: 5.5rem;
    line-height: 1.2;
		margin-bottom: 30px;
}
	
}
.product{margin:100px 0 0px;position:relative}
@media screen and (max-width:767px){.product{margin:80px 0 80px}}

.product::before{
	content:'';display:block;width:100%;height:calc(100% - 60px);
	position:absolute;top:60px;z-index:0}
@media screen and (max-width:767px){.product::before{top:25px;height:calc(100% - 15px);background-size:20px}}

.product .top-sec-01{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;max-width:1200px;margin:auto}
@media screen and (max-width:767px){.product .top-sec-01{max-width:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 20px}}

.product .top-sec-01 .top-sec-01-txt{
	width:100%;
	text-align:left;z-index:1}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt{width:100%}}

.product .top-sec-01 .top-sec-01-txt .top-sec-01-subttl{
	margin-top:0px;
    font-size: 2.5rem;
    line-height: 1.5em;}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt .top-sec-01-subttl{margin-top:30px;font-size:2.5rem}}

.product .top-sec-01 .top-sec-01-txt p{
	margin: 36px 0;
	line-height:2em;
	color:#333}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt p{margin-top:18px}}

.product .top-sec-01 .top-sec-01-txt .product_list{
	margin-top:48px}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt .product_list{margin-top:25px;overflow:hidden}}

.product .top-sec-01 .top-sec-01-txt .product_list li{
	padding-left:18px;
	position:relative;font-weight:700;
	position:relative;color:#24879c;display:inline-block;margin:0 32px 1rem 0}

@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt .product_list li{padding-left:14px;width:50%;margin:0 0 .8rem 0;float:left}}

.product .top-sec-01 .top-sec-01-txt .product_list li::before{content:'';display:block;width:10px;height:2px;background:#24879c;border-radius:1px;position:absolute;top:0;bottom:0;left:0;margin:auto}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-txt .product_list li::before{width:8px}}

.product .top-sec-01 .top-sec-01-img{width:46%;position:relative}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-img{width:100%;margin-top:150px}}

.product .top-sec-01 .top-sec-01-img .top-sec-01-img-main{width:100%;top:38%;position:absolute;z-index:2}
@media screen and (max-width:1024px){.product .top-sec-01 .top-sec-01-img .top-sec-01-img-main{width:100%;top:55%;position:absolute;z-index:2}}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-img .top-sec-01-img-main{position:relative;top:0;width:90%;margin-left:auto}}

.product .top-sec-01 .top-sec-01-img .top-sec-01-img-sub{width:60%;position:absolute;left:-10%;z-index:1;bottom:50%}
@media screen and (max-width:1024px){
	.product .top-sec-01 .top-sec-01-img .top-sec-01-img-sub{width: 100%;
    position: absolute;
    left: -15%;
    z-index: 1;
    bottom: 50%;}
	}
@media screen and (max-width:767px){.product .top-sec-01 .top-sec-01-img .top-sec-01-img-sub{bottom:auto;left:-20px;width:90%;position:absolute;top:-120px}}

.product .top-sec-01 .top-sec-01-img img{width:100%}


.Play2 {
    height: 350px;
    width: 450px;
    margin: 50px auto;
}

.Play2 img {
width: 80%;
    left: 50%;
    top: 50%;
    position: relative;
    transform: translateX(-70%) translateY(-50%);
}
.backdrop {
	position: relative;
    
}
.backdrop:before {
    content: "";
    display: block;
	background: url(../images/purple_01.png) repeat center;
    background-size: 100%;
	width: 300px;
	height: 300px;
    background-repeat: no-repeat;
	position: absolute;
	top:0px;
	left: 0px;
	z-index: 1;
}

.backdrop:after{
    content: "";
    display: block;
	background: url(../images/purple_04.png) repeat center;
    background-size: 100%;
	width: 200px;
	height: 200px;
    background-repeat: no-repeat;
	position: absolute;
	bottom: 0px;
	right:0px;
	z-index: 1;
}



.top-sec-01 {
	position: relative;
    
}
.top-sec-01:before {
    content: "";
    display: block;
	background: url(../images/purple_02.png) repeat center;
    background-size: 100%;
	width: 400px;
	height: 100%;
    background-repeat: no-repeat;
	position: absolute;
	bottom: -50px;
	left: 0px;
	z-index: 1;
}




/*---------æµ®å‹•å‹•ç•«----------*/

.float-box {
	height:100%;
	width: 100%;
	top:0;
	left:0;
	pointer-events:none;
	position: absolute;
	z-index: 10;
}
.lazyloaded {
    opacity: 1;
    transition: opacity .3s;
}

.float-box img {
	position:absolute;
	width:120px;
	animation:float 3s ease-in-out infinite;
}
.float-box .-top {
	width:100%;
	height: 100%;
	top:0;
	left: 50%;
	transform: translatex(-50%);
	position: absolute;
	    z-index: 100;
}
.float-box .ba {
    bottom: -40px;
    left: 0px;
    animation-delay: .2s;
    width: 200px !important;
}
 .float-box .bb {
    bottom: -40px;
    left: 150px;
    animation-delay: .8s;
    width: 200px !important;
}
.float-box .bc {
	bottom: -40px;
	right: 320px;
	width: 200px !important;
	animation-delay: .5s;
}
.float-box .bd {
	bottom: -40px;
	right: 0px;
	animation-delay: 1.2s;
	width: 200px !important;
}
.float-box .be {
bottom: -40px;
    right: 0px;
    animation-delay: .4s;
    width: 200px;
    z-index: -3;


}
.float-box .be {
bottom: -60px;
    right: 0px;
    animation-delay: .4s;
    width: 200px;
    z-index: -3;


}
.float-box .bf {
    top: 100px;
    right: 200px;
    width: 180px;
    height: 200px;
  animation: kakukaku2 4s step-start 0s infinite normal;

}
.float-box .bg {
  width: 170px;
  height: 140px;
  animation: kakukaku2 4s step-start 0s infinite normal;
  top: 150px;
  right: 15%;
}

.float-box .bh {
 width: 170px;
  height: 140px;
  animation: kakukaku2 6s step-start 0s infinite normal;
  top: 350px;
  left: 10%;
}
@media (max-width: 768px){
.float-box .ba {
    bottom: 0px;
    left: 0px;
    animation-delay: .2s;
    width: 25% !important;
}
 .float-box .bb {
    bottom: 0px;
    left: 20%;
    animation-delay: .8s;
     width: 25% !important;
}
.float-box .bc {
	bottom: 0px;
	left: 33%;
	 width: 25% !important;
	animation-delay: .5s;
}
.float-box .bd {
	bottom: 0px;
	right: 0px;
	animation-delay: 1.2s;
	 width: 25% !important;
}
.float-box .be {
  bottom: -60px;
    right: 0px;
    width: 100px;
	display: none;
}	

	.float-box .bh {
     bottom: -200px;
    right: 0px;
    width: 25%;
 
}
.float-box .bg {
    width: 100px;
    left: 5%;
}	
	
.float-box .bf {
    top: 100px;
    right: 0px;
    width: 80px;
}	
	
}
@-webkit-keyframes spinY {
	0% {
	transform:rotateY(0)
}
95% {
	transform:rotateY(0)
}
100% {
	transform:rotateY(360deg)
}
}
@keyframes spinY {
	0% {
	transform:rotateY(0)
}
95% {
	transform:rotateY(0)
}
100% {
	transform:rotateY(360deg)
}
}

@keyframes float {
0% {
	transform:translateZ(0)
}
65% {
	transform:translate3d(0,15px,0)
}
to {
	transform:translateZ(0)
}
}	

@keyframes bounce {
0% {
    top: 1em;
    scale(1, 1)
  }
  10% {
    transform: scale(1, 1.1);
  }
  90% {
    transform: scale(0.8, 1.3);
  }
  95% {
    transform: scale(1.2, 0.8);
  }
  100% {
    top: 12em;
    transform: scale(1.2, 0.6);
  }
}


@keyframes kakukaku2 {
  0% {
    -webkit-transform: translate(0, -2px) rotate(6deg);
    transform: translate(0, -2px) rotate(6deg);
  }
  10% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(0, 0) rotate(-6deg);
    transform: translate(0, 0) rotate(-6deg);
  }
  30% {
    -webkit-transform: translate(0, -2px) rotate(0deg);
    transform: translate(0, -2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(0, -2px) rotate(6deg);
    transform: translate(0, -2px) rotate(6deg);
  }
  50% {
    -webkit-transform: translate(2px, 0) rotate(-2deg);
    transform: translate(2px, 0) rotate(-2deg);
  }
  60% {
    -webkit-transform: translate(0, 2px) rotate(0deg);
    transform: translate(0, 2px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(0, 0) rotate(6deg);
    transform: translate(0, 0) rotate(6deg);
  }
  80% {
    -webkit-transform: translate(2px, 0) rotate(-2deg);
    transform: translate(2px, 0) rotate(-2deg);
  }
  90% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, -2px) rotate(6deg);
    transform: translate(0, -2px) rotate(6deg);
  }
}
  










.movie-box22 {
	height:100%;
	width: 100%;
	top:0;
	left:0;
	pointer-events:none;
	position: absolute;
	z-index: 100;
}
.movie-box22 .lazyloaded {
    opacity: 1;
    transition: opacity .3s;
}

.movie-box22 img {
	position:absolute;
	width:300px;
	animation:float 3s ease-in-out infinite;
}
.movie-box22 .-top {
	width:100%;
	height: 100%;
	top:0;
	left: 50%;
	transform: translatex(-50%);
	position: absolute;
}
.movie-box22 .ba {
    bottom: 50px;
    right: 0px;
    animation-delay: .2s;
    width: 300px;
}
 .movie-box22 .bb {
  top: 0px;
    right: 0px;
    animation-delay: .8s;
}
.movie-box22 .bc {
	     bottom: 150px;
    left: 100px;
    animation-delay: .5s;
    width: 200px;
}
.movie-box22 .bd {
    bottom: 350px;
    left: 0px;
    animation-delay: 1.2s;
    width: 150px;
}

.movie-box22 .be {
    top: 50px;
    left: 250px;
    animation-delay: 1.2s;
    width: 220px;
}




.waveWrapper {
   position: relative;
    left: 0;
    top: 0;
    margin: auto;
    width: 100%;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 120px;
    top: 0px;
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}






@media screen and (max-width: 768px){
.movie-box22 .ba {
    bottom: 0px;
    right: 30px;
    width: 220px;
}	
.movie-box22 .bc {
           bottom: 0px;
        left: 0px;
        width: 220px;
}
	
.movie-box22 .bd {
    display: none;
}
	
.movie-box22 .bb {
    top: 230px;
    right: 0px;
    width: 160px;
}	
	}



@media screen and (max-width: 460px){
.movie-box22 .ba {
    bottom: 100px;
    right: 0px;
    width: 150px;
}	
.movie-box22 .bc {
           bottom: 0px;
           left: -35px;
           width: 150px;
}
	
.movie-box22 .bd {
    display: none;
}
	
.movie-box22 .bb {
    top: 230px;
    right: 0px;
    width: 160px;
}	
	}





.roomList {
    counter-reset: item
}
.roomList-box ol, .roomList-box ul {
    list-style: none;
}
.roomList>li {
    counter-increment: item
}

.roomList>li+li {
    margin-top: 100px
}

@media (max-width: 768px) {
    .roomList>li+li {
        margin-top:40px
    }
}

@media (min-width: 1181px) {
    .roomList>li:nth-child(odd) .Txt {
        padding-left:95px
    }
}

@media (min-width: 768px) and (max-width: 1180px) {
    .roomList>li:nth-child(odd) .Txt {
        padding-left:20px
    }
}


@media (min-width: 1181px) {
    .roomList>li:nth-child(even) .Txt {
        padding-right:95px
    }
}





@media (min-width: 768px) and (max-width: 1180px) {
    .roomList>li:nth-child(even) .Txt {
        padding-right:20px
    }
}

@media (min-width: 769px) {
    .roomList>li:nth-child(even) .Txt {
        -webkit-order:0;
        -ms-flex-order: 0;
        order: 0
    }
}

@media (min-width: 769px) {
    .roomList>li:nth-child(even) .Img {
        -webkit-order:1;
        -ms-flex-order: 1;
        order: 1
    }
}



.roomList>li:nth-child(-n+9) .Txt::before {
    content: "0" counter(item)
}

.roomList .item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 768px) {
    .roomList .item {
        -webkit-flex-direction:column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.roomList .Img {
    position: relative;
    padding: 0 7px;
}
.roomList .Img .banner{
    position:absolute;
	width: 250px;
	   z-index: 1;
}
.roomList .Img .map{
	position:absolute;
      width: 190px;
    z-index: 1;
}
@media (min-width: 769px) {
    .roomList .Img {
        width:calc(50% + 130px);
    }
.roomList .Img .banner{
    position:absolute;
	width: 220px;
	   z-index: 1;
}	
.roomList .Img .map{
      width: 150px;
}
}

.roomList .Img::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: calc(100% - 7px);
    height: calc(100% - 7px);
    background: url(../images/room.png) no-repeat center/contain;
    pointer-events: none;
    z-index: -1;
}

.roomList .mask {
    -webkit-mask-image: url(../images/room.png);
    mask-image: url(../images/room.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;   
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.roomList img {
    display: block;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .5s;
}

.roomList img:hover {
    transform: scale(1.03);
}

.roomList .Img img {
    display: block;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	   width: 100%;
}

@media (min-width: 769px) {
    .roomList .Txt {
        width:calc(50% - 130px);
        max-width: 490px
    }
}

@media (max-width: 768px) {
    .roomList .Txt {
		    width: 80%;
        text-align:center;
		    margin-bottom: 100px;

    }
}

.roomList .Txt::before {
    content: counter(item);
    display: block;
    font: 80px/1 "Fugaz One",serif;
    color: #e6e6e6
}

@media (max-width: 768px) {
    .roomList .Txt::before {
        font-size:40px;
        margin-top: 15px;
    }
}

.roomList .Txt h3 {
    display: inline-block;
		font-size: 36px;
}

.roomList .Txt h3 a {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .5px;
    color: #3c3a3a;
    background: linear-gradient(to right, #7f7f7f 0, #7f7f7f 100%) 0 100%/100% 1px no-repeat;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (min-width: 1181px) {
    .roomList .Txt h3 a:hover {
        color:#58579f
    }
}

.roomList .Txt h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #58579f
}

.roomList .Txt .price {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	    padding: 10px 0px 20px;
	font-size: 24px;
}

@media (max-width: 768px) {
    .roomList .Txt .price {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.roomList .Txt p {
    max-height: 81px;
    line-height: 1.8
}

@media (max-width: 768px) {
    .roomList .moreBtn {
        margin-left:auto;
        margin-right: auto
    }
}











/* -------------------------------
	關於我

------------------------------- */


.sec-greeting {
  background: #fef4d9; }
  @media (min-width: 751px) {
    .sec-greeting {
      padding: 1px 0 130px; } }
  @media (max-width: 750px) {
    .sec-greeting {
      padding: 1px 0 70px; } }

@media (min-width: 751px) {
  .greeting__kv {
    width: 64vw;
    max-width: 640px;
    margin: -23px 0 0 auto; } }

@media (max-width: 750px) {
  .greeting__kv {
    width: 78.67%;
    margin: -23px auto 26px; } }

.greeting__inner {
  margin: auto; }
  


  @media (min-width: 751px) {
    .greeting__inner {
      width: 94%;
      max-width: 1020px; } }

@media (min-width: 751px) {
  .greeting__content {
    margin-top: -400px; } }

@media (min-width: 750px) and (max-width: 1024px) {
  .greeting__content {
    margin-top: -32%; } }

@media (min-width: 751px) {
  .greeting__message {
    width: 50vw;
    max-width: 506px;
   margin: 0px 0 50px;
	
	}
  .greeting__message img {
    width: 100%;
   }

}

@media (min-width: 750px) and (max-width: 1024px) {
  .greeting__message {
    margin-bottom: 6%; } }

@media (max-width: 750px) {
  .greeting__message {
    width: 78.67%;
    max-width: 400px;
    margin: 0 auto 22px; } }

.greeting__text {
  font-weight: bold;
  font-feature-settings: "palt"; }
  @media (min-width: 751px) {
    .greeting__text {
      margin-bottom: 40px;
      font-size: 16px;
      line-height: 2.2; } }
  @media (max-width: 750px) {
    .greeting__text {
      width: 90%;
      margin: 0 auto 16px;
      line-height: 2; } }

@media (min-width: 751px) {
  .greeting__sign {
    width: 245px; } }

@media (max-width: 750px) {
  .greeting__sign {
    width: 140px;
    margin-left: auto;
    margin-right: 5%; } }
.ipad {
    display: none;
}




