@charset "UTF-8";

@import 'reset.css';
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&amp;display=swap');

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none;
    outline: none;
    /* for Firefox */
    hlbr: expression(this.onFocus=this.blur());
    /* for IE */
}

body,
html {
    height: 100%;
    /*大背景一定要設高度100%*/
    padding: 0;
    margin: 0;
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    background: url(../images/bg.html);
    background-attachment: fixed;
    -webkit-background-size: cover;
    background-color: #ffffff;
}

/*基礎設定 END*/

.lockbody{
  overflow-y:  hidden;
}

.scroll{
  overflow-y: scroll;
}

.clear {
    clear: both;
}

.img-fluid {
    width: 100%;
}

.red {
    color: #DE1D1D;
}

.bold {
    font-weight: 700;
}

.eng-num {
    font-family: 'Roboto';
}

@media (max-width: 441px) {
    .hidden-xxs-down {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .hidden-xs-up {
        display: none !important;
    }
}

@media (min-width: 441px) {
    .hidden-xxs-up {
        display: none !important;
    }
}

/*基礎設定 END*/


#HEADER {
    min-height: 320px;
    background-color: #FFD619;
    background-image: url("../img/blue_wave_header.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-top: 20px;
    overflow: hidden;
}

#HEADER .container{
    position: relative;
}

.header_kv{
    width: 300px;
    height: 214px;
    background-image: url("../img/header_kv.svg");
    -webkit-background-size: cover;
    background-size: cover;
    margin: 0 auto;
}

.header_kv_left{
    position: absolute;
    width: 420px;
    height: 310px;  
    background-image: url("../img/kv_header_left.svg");
    -webkit-background-size: cover;
    background-size: cover;
    top: -50px;
    left: 50px;
}
.header_kv_right{
    position: absolute;
    width: 420px;
    height: 246px;  
    background-image: url("../img/kv_header_right.svg");
    -webkit-background-size: cover;
    background-size: cover;
    top: -50px;
    right: 60px;
}

@media screen and (max-width: 1200px) {
    .header_kv_left{
        left: -50px;
    }
    .header_kv_right{
        right: -50px;
    }
}
@media screen and (max-width: 990px) {
    .header_kv_left{
        left: -100px;
    }
    .header_kv_right{
        right: -100px;
    }
}
@media screen and (max-width: 880px) {
    .header_kv_left{
        width: 300px;
        height: 221px;
        top: 0;
        left: -20px;
    }
    .header_kv_right{
        width: 300px;
        height: 175px;  
        top: 0;
        right: -20px;
    }
}

@media screen and (max-width: 800px) {
    .header_kv_left{
        left: -50px;
    }
    .header_kv_right{
        right: -50px;
    }
}

@media screen and (max-width: 768px) {

    .header_kv_left{
        display: none;
    }
    .header_kv_right{
        display: none;
    }

     .header_inner{
          background-image: url("../img/header_vege_bg.svg");
          -webkit-background-size: cover;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center center;
     }
}

@media screen and (max-width: 590px) {
       .header_inner{
          -webkit-background-size: 600px auto;
          background-size: 600px auto;
          padding-top: 45px;
     }  
}
@media screen and (max-width: 414px) {
    .header_inner{
          -webkit-background-size: 500px auto;
          background-size: 500px auto;
           padding-top: 35px;
    }  
    .header_kv{
        width: 250px;
        height: 178px;
        margin-top: 30px;
    }
}
#MAIN_PAGE {
    background-color: #10AFFF;
    padding: 0 0 40px 0;
}

.main_page_frame {
    width: 100%;
    border-radius: 15px;
    background-color: #D1F0FF;
    border: 3px solid #027DDF;
    overflow: hidden;
    margin-top: -100px;
}

.page_frame_head {
    width: 100%;
    padding: 10px 20px;
    background-color: #027DDF;
    min-height: 70px;
}

.page_frame_head h3 {
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
}

.page_frame_head p {
    font-weight: 500;
    color: #D7F1FF;
    text-align: center;
    font-size: 16px;
}

.page_frame_body {
    padding: 20px 30px;
}

.page_frame_body .frame_title {
    max-width: 600px;
    margin: 15px auto;
    display: flex;
    align-items: center;
}

.page_frame_body .frame_blue_line {
    flex: 1;
    height: 22px;
    background: url('../img/blue_title_line.svg') repeat-x center center;
}

.page_frame_body .frame_title_blue {
    flex: 1.5;
    background-color: #D1F0FF;
}

.page_frame_body .frame_title h4 {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #027DDF;
}

.page_frame_body .frame_sum {
    max-width: 900px;
    margin: 0 auto;
}

.page_frame_body .frame_sum p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}


@media screen and (max-width: 590px) {
 
  .page_frame_body {
      padding: 20px 15px;
  }

  .page_frame_body .frame_blue_line {
    display: none;
  }

  .page_frame_body .frame_sum p {
        font-size: 17px;
        line-height: 26px;
        text-align: justify;
  }

  .main_page_frame {
    margin-top: -70px;
  }
}

@media screen and (max-width: 340px) {


  .page_frame_head h3 {
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      font-size: 18px;
  }

  .page_frame_head p {
      font-weight: 500;
      color: #D7F1FF;
      text-align: center;
      font-size: 15px;
  }

}


.section_block {
    /*     padding: 40px 0 40px 0; */
}

.title_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.title_block p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
}

.title_block .main_title {
    border-radius: 80px;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

@media screen and (max-width: 1680px) {
    .title_block .main_title {
        font-size: 20px;
    }
}

/**** 按鈕設定 ****/
.submit-block {
    display: flex;
    justify-content: center;
    margin: 30px 0 0px 0;
}

a.btn {
    display: inline-block;
    min-width: 200px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 80px;
    line-height: 50px;
    background-color: #ccc;
    color: #fff;
    transition: all 0.45s;
    transform: translateY(0px);
}

a.btn:hover {
    transition: all 0.45s;
    transform: translateY(-2px);
}

a.btn.orange {
    background-color: #FC3C1A;
    box-shadow: 0 5px 10px 0 rgba(252, 60, 26, 0.3);
}


.floating {
    animation-name: swing;
    -webkit-animation-name: swing;

    animation-duration: .5s;
    -webkit-animation-duration: .5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes swing {
    0% { transform: rotate(1deg); }
    100% { transform: rotate(-2deg); }
}


@-webkit-keyframes swing {
    0% {  -webkit-transform: rotate(1deg); }
    100% {  -webkit-transform: rotate(-2deg); }
}

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(8%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

.floating2{
    animation-name: floating2;
    -webkit-animation-name: floating2;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating2 {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(1.5%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating2 {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(1.5%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}



@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse2 {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(0.98, 0.98, 0.98);
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse2 {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(0.98, 0.98, 0.98);
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse2 {
    -webkit-animation-name: pulse2;
    animation-name: pulse2;
}


@-webkit-keyframes flash {

    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: .5;
    }
}

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: .2;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name.: flash;
}


.head-logo{
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    z-index: 70;
}

.head-logo div.al-logo{
    width: 100px;
}

.head-logo div.fifty-logo{
    width: 70px;
}

.fifty-logo-social{
    display: flex;
    align-items: center;
}
.fifty-logo-social .social_box{
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.fifty-logo-social .social_box a{
    display: block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 26px;
    margin-right: 5px;
}

.fifty-logo-social .social_box a.fb{
    background-color: #3B5A9F;
}
.fifty-logo-social .social_box a.line{
    background-color: #3FC945;
     font-size: 28px;
}

@media screen and (max-width: 1680px) {

    .head-logo div.al-logo{
        width: 85px;
    }

    .head-logo div.fifty-logo{
        width: 55px;
    }


    .fifty-logo-social .social_box a{
        display: block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 20px;
    }

}

@media screen and (max-width: 990px) {

    .head-logo{
       justify-content: flex-start;
    }

    .head-logo div{
        margin-right: 10px;
    }

    .fifty-logo-social .social_box{
        display: none;
    }
}

@media screen and (max-width: 590px) {

    .head-logo{
        padding: 20px 20px;
        z-index: 70;
    }

    .head-logo div.al-logo{
        width: 68px;
    }

    .head-logo div.fifty-logo{
        width: 45px;
    }


}


@media screen and (max-width: 440px) {

    .head-logo div.al-logo{
        width: 55px;
    }

    .head-logo div.fifty-logo{
        width: 35px;
    }


}

/*MENU*/
#MENU {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 100;
}

#MENU ul li {
    cursor: pointer;
    display: flex;
    width: 123px;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    background-color: #fff;
    border-radius: 100px 0 0 100px;
    padding: 0 15px 0 15px;
    margin-bottom: 8px;
    background-color: #E1F5FF;
    box-shadow: 0 2px 6px 0 rgba(16, 175, 255, 0.2);
}

#MENU ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 17px;
    line-height: 20px;
    text-align: right;
    color: #000;
    font-weight: 500;
}

#MENU  .menu_img{
    display: none;
}

#MENU ul li span {
    color: #027DDF;
}

#MENU ul li a span {
    font-weight: 500;
}

#MENU ul li:nth-child(1) a {
    color: #583112;
}

#MENU ul li:nth-child(1) a i {
    margin: 0 5px;
    font-size: 18px;
}

#MENU ul li:nth-child(1) {
    background-color: #FFF4C2;
}

#MENU ul li:nth-child(1) a {
    font-weight: 500;
    font-family: 'Roboto';
}

#MENU ul li:nth-child(5) {
    background-color: #FFEAEE;
}



#MENU ul li:nth-child(5) span {
    color: #FA5977;
}


/* #MENU ul li:nth-child(6) {
    background-color: #FFEAEE;
}



#MENU ul li:nth-child(6) span {
    color: #FA5977;
}
 */

#MENU .social_box{
  display: none;
}


@media screen and (max-width: 1680px) {

    #MENU ul li {
        width: 103px;
        min-height: 50px;
        margin-bottom: 6px;
        padding: 0 10px 0 10px;
    }

    #MENU ul li a {
        font-size: 15px;
        line-height: 16px;
    }
}

@media screen and (max-width: 990px) {
 
  #MENU .social_box{
    margin: 25px auto;
    display: flex;
    justify-content: center;
  }

  #MENU .social_box a{
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    line-height: 45px;
    text-align: center;
    margin: 0 10px;
  }

    #MENU .social_box a.fb{
        font-size: 28px;
        background-color: #3B5A9F;
    }

    #MENU .social_box a.line{
        font-size: 35px;
        background-color: #3FC945;
    }

}

.mobile-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    background-color: #ffffff;
    z-index: 999;
    top: 20px;
    right: 20px;
}


.hamburger-menu {
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu:hover {
    cursor: pointer;
}

.hamburger-menu .menu-item {
    background: #027DDF;
    display: block;
    height: 3px;
    margin: 0 0 6px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 30px;
}

.hamburger-menu.open .menu-item {
    margin: 0 0 5px;
}

.hamburger-menu.open .menu-item:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 4px;
    transform-origin: 4px;
    margin-left: 6px;
}

.hamburger-menu.open .menu-item:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .menu-item:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 4px;
    transform-origin: 4px;
    margin-left: 6px;
}


@media screen and (max-width: 990px) {

    #MENU {
        display: none;
        width: 100%;
        height: calc(100vh);
        background-color: #8ECDFF;
        top: 0;
        z-index: 200;
        padding: 80px 15%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #MENU  .menu_img{
        display: block;
        position: fixed;
        bottom: 0;
    }

    #MENU ul li {
        cursor: pointer;
        display: flex;
        width: 100%;
        min-height: 60px;
        background-color: #fff;
        border-radius: 100px 100px 100px 100px;
        margin-bottom: 15px;
        background-color: #E1F5FF;
        box-shadow: none;
    }


    #MENU ul li a {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px 0 rgba(16, 175, 255, 0.4);
    }

    .hamburger-menu {
        margin-top: 5px;
    }
}

/*注意事項*/

.notice_list {
    background-color: #027DDF;
    padding: 40px 0;
}

.notice_list a {
    text-decoration: underline;
    color: #ffffff;
}

.notice_list a:hover {
    text-decoration: none;
}

.notice_list h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #D1F0FF;
}

.notice_list ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: justify;
    font-weight: 300;
}



.lity-dialog {
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    max-width: 100%;
    border-radius: 5px;
}

.lity-dialog-inner {
    padding: 20px;
}

.lity-dialog.sm {
    width: 600px;
}

.lity-dialog.md {
    width: 960px;
}

.lity-dialog.lg {
    width: 1200px;
}

.gift_title{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding:8px 0;
    background-color: #D1F0FF;
    color: #027DDF; 
}

.gift_title span{
    color: #000;
}

.gift_body{
    padding: 20px;
}

.gift_body p{
    font-size: 15px;
    line-height: 22px;
}

.gift_body ul li{
    font-size: 15px;
    line-height: 22px;
}

.gift_box_wrap{
    display: flex;
}


.gift_box_wrap.two-row{
    padding: 0 10%;
    align-items: center;
   
}

.gift_box_wrap.two-row  .gift_img{
    flex: 3;
}

.gift_box_wrap.two-row  .gift_name{
    flex: 2;
    padding-left: 20px;
}

.gift_box_wrap.two-row  .gift_name ul li.title{
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 8px;
}


.gift_box_wrap.two-row  .gift_name ul li.price{
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    font-weight: bold;
}

.gift_box_wrap .gift_box{
    flex: 1;
    padding: 0 15px;
}

.gift_box_wrap .gift_box .gift_img{
    margin-bottom: 15px; 
}

.gift_box_wrap .gift_box .gift_name ul li.title{
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 8px;
}


.gift_box_wrap .gift_box .gift_name ul li.price{
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .gift_box_wrap{
        flex-wrap: wrap
    }
    .gift_box_wrap .gift_box{
       flex-basis: 280px;
        padding: 0 25px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 590px) {

    .gift_box_wrap.two-row{
        display: block;
        padding: 0 25px;
        align-items: center;
    }

    .gift_box_wrap.two-row  .gift_img{
        margin-bottom: 20px;
    }

    .gift_box_wrap.two-row  .gift_name ul li.title{
        text-align: center;
    }


    .gift_box_wrap.two-row  .gift_name ul li.price{
        text-align: center;
    }
}
footer {
    color: #D2D2D2;
    background-color: #333333;
    font-size: 0.9rem;
    line-height: 20px;
    padding: 15px 0;
    text-align: center;
}

footer p {
    color: #faba55;
    font-size: 12px;
}