body {
    background-color: #efefef;
    font-size: 16px;
    line-height: 1.25em;
}

header {
    height: 60px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

header img.logo {
    height: 24px;
}

header .sns {
    display: flex;
}

header .sns a {
    width: 36px;
    margin-right: 8px;
}

header .sns a:last-child {
    margin-right: 0;
}

header .sns img {
    width: 100%;
    display: block;
}

footer {
    background-color: #f2655c;
    color: #FFF;
    padding: 48px 0;
}

p a,
p a:visited,
li a,
li a:visited {
    color: inherit;
}

.slogan {
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    margin-bottom: 12px;
}

.slogan.tag::before {
    content: 'step';
    font-size: .75em;
    border: 2px solid;
    border-radius: 2em;
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    display: inline-block;
    vertical-align: middle;
}

.slogan .number {
    font-size: 2em;
    vertical-align: text-top;
    margin-left: .25em;
    margin-right: .25em;
}

.slogan.tag .number {
    margin-left: 0;
    margin-right: .25em;
}

.slogan.slash::before,
.slogan.slash::after {
    content: ' / ';
    font-size: .5em;
}

.sloganText {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 12px;
}

.largeText {
    font-size: 20px;
    line-height: 36px;
}

.btn {
    height: auto;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    /* IE10+ CSS here */
    .btnBox .btn:first-child {
        margin: 0 auto;
    }
    .btnBox .btn {
        max-width: 10em;
        margin: 16px auto;
        display: block;
    }
}

button.btn {
    border: none;
    font-family: inherit;
    font-size: inherit;
    box-sizing: content-box;
    cursor: pointer;
}

@keyframes moveUp {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes scale {
    0% {
        transform: scale(90%);
    }
    50% {
        transform: scale(100%);
    }
    100% {
        transform: scale(90%);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(1.5deg);
    }
    50% {
        transform: rotate(-1.5deg);
    }
    100% {
        transform: rotate(1.5deg);
    }
}

.keyVision {
    position: relative;
}

.keyVision .bgBox img {
    display: block;
    width: 100%;
}

.keyVision .content {
    position: absolute;
    width: 100%;
}

.keyVision .content img {
    display: block;
    margin: 16px auto;
}

.keyVision .content img.title {
    width: 90%;
    max-width: 640px;
    animation: moveUp 3.5s ease-in-out infinite;
}

.keyVision .content .titleText {
    width: 14em;
    margin: 16px auto;
    text-align: left;
    text-shadow: 0px 0px 8px #fff;
}

.keyVision .content .giftText {
    font-size: 28px;
    line-height: 1.25em;
    width: 13em;
    margin: 16px auto;
    text-align: left;
    text-shadow: 0px 0px 8px #fff;
}

.keyVision .content .giftText span {
    display: block;
    font-size: .65em;
    line-height: 1.5em;
}

.keyVision .content img.gift {
    width: 30%;
    animation: rotate .5s ease-in-out infinite;
    margin-left: 65%;
}

.wrap {
    margin: auto 28px;
}

article,
section {
    padding: 20px 0;
}


/* 網頁內容 */

article.planBlock {
    padding: 0;
    margin-top: -25vw;
}

article.giftBlock {
    text-align: center;
}

article.giftBlock img {
    width: 90%;
    max-width: 420px;
    margin: 0 auto 16px;
    display: block;
}

article.introBlock {
    background-color: #f2655c;
    color: #FFF;
}

article.introBlock .brandBox img {
    display: block;
    width: 100%;
    margin: 16px auto;
}

article.introBlock .brandBox,
article.introBlock .termsBox {
    border-bottom: 1px solid #FFF;
}

article.introBlock .termsBox img,
article.introBlock .termsBox ul {
    display: block;
    width: 80%;
    margin: 16px auto;
}

article.introBlock .termsBox ul li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 1.5em;
}

article.ruleBlock {
    background-color: #f2655c;
    color: #FFF;
    padding: 48px 0;
}


/* 網頁內容 */

article.noteBlock {
    padding: 24px 0;
    background-color: #f2655c;
    color: #fff;
}

article.noteBlock .note .sloganText {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 16px;
}

article.noteBlock .note .sloganText::after {
    content: "";
    background-image: url(../images/icon_arrow_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
    width: 16px;
    height: 16px;
    display: block;
    margin-left: 20px;
    /* ↓黑箭頭 */
    /* filter: invert(.65); */
    /* ↓白箭頭 */
    filter: invert(0);
}

article.noteBlock .note.active .sloganText::after {
    transform: rotate(180deg);
}

article.noteBlock .note ol {
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    padding: 8px 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

article.noteBlock .note.active ol {
    height: auto;
    opacity: 1;
}

.owl-theme button:active,
.owl-theme button:focus {
    outline: none;
    border: none;
}

.owl-theme .owl-nav {
    display: block;
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
}

.owl-theme .owl-nav button span {
    display: none;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background-image: url(../images/icon_arrow_down.svg);
    background-size: cover;
    transform: rotate(90deg);
    display: block;
    position: absolute;
}

.owl-theme .owl-nav button.owl-prev {
    left: 0;
}

.owl-theme .owl-nav button.owl-next {
    transform: rotate(270deg);
    right: 0;
}

.owl-theme .owl-dots {
    text-align: center;
}

.owl-theme .owl-dots span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #484848;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #f2655c;
}

.select select {
    font-size: inherit;
    font-weight: 700;
    color: inherit;
    background-color: #fff;
}

.select::after {
    top: calc(50% + 6px);
}

.select label {
    display: block;
}

.select>label {
    margin-bottom: 8px;
}

.radio {
    position: relative;
}

.select>label,
select+label {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    font-family: inherit;
    color: rgba(90, 90, 90, 0.72);
}

.select .state,
.radio .state {
    position: absolute;
    right: 0;
    bottom: -24px;
    font-family: inherit;
    font-weight: 700;
    color: rgba(90, 90, 90, 0.72);
}

.select .state.warning::after,
.radio .state.warning::after {
    background-image: url(https://www.mymusic.net.tw/ux/rwd/images/commonElement/icon_input_warning.svg);
}

.select .state::after,
.radio .state::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 8px;
}

.select.error .state,
.radio.error .state {
    display: flex;
}

#activity_form .stateText,
#activity_form .input .state,
#activity_form .select .state,
#activity_form .radio .state {
    display: none;
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }
    .plusText {
        font-size: 18px;
        line-height: 26px;
    }
    header {
        height: 60px;
        padding: 15px 32px;
    }
    header img.logo {
        height: 26px;
    }
    header .sns a {
        width: 30px;
        margin-right: 16px;
    }
    footer {
        padding: 32px 0;
        font-size: 12px;
        line-height: 16px;
    }
    footer .copyright {
        text-align: center;
    }
    .wrap {
        width: 80%;
        max-width: 1224px;
        margin: 0 auto;
    }
    .slogan {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 32px;
    }
    .sloganText {
        font-size: 32px;
        line-height: 48px;
    }
    form {
        max-width: 640px;
        margin: 0 auto;
    }
    .keyVision .content {
        display: flex;
        justify-content: space-between;
        margin-top: 10%;
    }
    .keyVision .content .titleBox,
    .keyVision .content .giftBox {
        width: 40%;
    }
    .keyVision .content .giftText {
        font-size: 40px;
    }
    .keyVision .content .giftText span {
        margin-left: 10em;
    }
    .keyVision .content img.gift {
        margin: auto;
    }
    /* 網頁內容 */
    article.planBlock {
        margin-top: -15vw;
    }
    article.introBlock .wrap {
        max-width: 990px;
    }
    article.introBlock .brandBox,
    article.introBlock .termsBox {
        width: 90%;
        margin: auto;
    }
    article.introBlock .termsBox {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    article.introBlock .termsBox img,
    article.introBlock .termsBox ul {
        width: 40%;
    }
    article.ruleBlock ol:not(article.ruleBlock ol ol) {
        padding: 32px 128px;
    }
    /* 網頁內容 */
    article.noteBlock {
        padding: 40px 0;
    }
    article.noteBlock .note .sloganText {
        margin-bottom: 24px;
    }
    article.noteBlock .note.active ol {
        padding: 32px 128px;
    }
}