@charset "UTF-8";
.mobile {
    display: block !important;
}

.wideSite {
    display: none !important;
}

ol li {
    counter-increment: listCounter;
    line-height: 1.25em;
    margin: .5em 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

ol li::before {
    content: counter(listCounter)". ";
}

ol li p {
    text-indent: 0;
    margin: .5em 0;
}

ol ol li {
    counter-increment: subListCounter;
    line-height: 1.25em;
    margin: .5em 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

ol ol li::before {
    content: "("counter(subListCounter)") ";
}

body {
    font-size: 13px;
    line-height: 16px;
    color: #5A5A5A;
}

.slogan {
    font-weight: bold;
    font-size: 32px;
    line-height: 48px;
}

h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 48px;
}

h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.plusText {
    font-size: 18px;
    line-height: 28px;
}

.largeText,
.captionText {
    font-size: 14px;
    line-height: 24px;
}

.smallText,
.noteText {
    font-size: 12px;
    line-height: 16px;
}

.colorText {
    color: #F2655C;
}

a {
    cursor: pointer;
}

p a,
p a:visited,
li a,
li a:visited {
    text-decoration: underline;
    color: #F2655C;
}

.btn,
input[type=submit] {
    height: 24px;
    min-width: 96px;
    text-align: center;
    padding: 12px 24px;
    border-radius: 36px;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.btn.bgColor {
    background: #F2655C;
    box-shadow: 0px 8px 16px rgba(242, 101, 92, 0.24);
    color: #FFF;
}

.btn.outLine {
    border: 2px solid #F2655C;
    color: #F2655C;
}

.btn.whiteLine {
    border: 2px solid #FFF;
    color: #FFF;
}

.btn.bgBlack {
    background-color: #000;
    color: #FFF;
}

.btnBox {
    /* display: -ms-grid; */
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 16px 0;
    text-align: center;
}

.btnBox .btn {
    margin: 16px 0 0;
    text-align: center;
}

.btnBox .btn:first-child {
    margin: 0;
}

input:focus {
    outline: unset;
    outline-offset: 0;
}


/* 表單物件 送出/按鈕 */

input[type=submit] {
    background: #F2655C;
    box-shadow: 0px 8px 16px rgba(242, 101, 92, 0.24);
    color: #FFF;
    display: block;
    margin: 16px auto;
    height: auto;
    min-width: 144px;
}

input[type=submit],
input[type=submit]:hover {
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* 表單物件 送出/按鈕 */


/* 表單物件 輸入框 + 下拉選單 共同 */

.input,
.select {
    margin: 48px 0;
    position: relative;
}

.input,
.input>label,
input+label {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    font-family: inherit;
    color: rgba(90, 90, 90, 0.72);
}

.input>label {
    margin-bottom: 8px;
}

.input:first-child,
.select:first-child,
.title+.input,
.title+.select {
    margin: 0 0 48px;
}

.input input[type=text],
.input input[type=number],
.input input[type=tel],
.select select {
    border: 2px solid #F2655C;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 16px 24px;
    font-family: inherit;
    width: 100%;
}

.input input[type=text]::placeholder,
.input input[type=number]::placeholder,
.input input[type=tel]::placeholder {
    color: rgba(90, 90, 90, 0.72);
}

.inputHalf {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inputHalf .input,
.inputHalf .select {
    margin: 0;
    width: calc(50% - 14px);
}


/* 表單物件 輸入框 + 下拉選單 共同 */


/* 表單物件 輸入框 */

.input label {
    display: block;
}

.input .state {
    position: absolute;
    right: 0;
    bottom: -24px;
    display: none;
}

.input .state::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 8px;
}

.input .state.warning::after {
    background-image: url(../../../ux/rwd/images/commonElement/icon_input_warning.svg);
}

.input.inline input[type=text],
.input.inline input[type=number],
.input.inline input[type=tel] {
    padding: 16px 24px;
}

.input.error .state {
    display: flex;
}


/* 表單物件 輸入框 */


/* 表單物件 下拉選單 */

.select::after {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    right: 24px;
    background-image: url(../../../ux/rwd/images/commonElement/icon_input_select_arrow.svg);
    background-size: cover;
    width: 24px;
    height: 24px;
}

.select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
}

.select.inline {
    width: 100%;
    border-radius: 25px;
}

.select.inline select {
    height: 36px;
}

.select select option {
    background: #FFF !important;
    color: rgba(90, 90, 90, 0.72) !important;
}

select::-ms-expand {
    display: none;
}

select:focus {
    outline: none;
}


/* 表單物件 下拉選單 */


/* 表單物件 文字框 */

textarea {
    background-color: #3F3F3F;
    border: none;
    color: #fff;
    padding: 16px;
    border-radius: 15px;
    box-sizing: border-box;
    width: 100%;
    height: 20em;
}


/* 表單物件 文字框 */


/* 表單物件 checkbox + radio */

.checkbox,
.radio {
    display: flex;
}

.checkbox input,
.radio input {
    display: none;
}

.checkbox input+label,
.radio input+label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.checkbox label:before,
.radio label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background: #FFFFFF;
    background-size: contain;
    background-position: center;
    border: 2px solid #F2655C;
    border-radius: 100%;
}

.radio label:before {
    background-image: url(../../../ux/rwd/images/commonElement/icon_input_radio.svg);
}

.checkbox input:checked+label:before,
.radio input:checked+label:before {
    vertical-align: middle;
}

.checkbox input:checked+label:before {
    background-color: #F2655C;
    background-image: url(../../../ux/rwd/images/commonElement/icon_input_checkbox_check.svg);
}

.radio input:checked+label:before {
    background-image: url(../../../ux/rwd/images/commonElement/icon_input_radio_check.svg);
}

.checkbox.inline,
.radio.inline {
    align-items: flex-start;
}

.radio.inline input+label {
    margin-right: 16px;
}

.radio .contentArea,
.checkbox .contentArea {
    width: calc(100% - 24px);
    font-size: 16px;
    line-height: 24px;
}


/* 表單物件 checkbox + radio */


/* 表單物件 其它屬性欄位 */

.input input[type=date],
.input input[type=date]:-webkit-autofill {
    width: 100%;
    border: none;
    border-bottom: 2px solid #f2655c;
    color: #f2655c;
    font-family: inherit;
    background-color: transparent;
}


/* 表單物件 其它屬性欄位 */

@media screen and (min-width: 1024px) {
    .mobile {
        display: none !important;
    }
    .wideSite {
        display: block !important;
    }
    body {
        font-size: 16px;
        line-height: 24px;
    }
    .slogan {
        font-weight: bold;
        font-size: 64px;
        line-height: 96px;
    }
    h1 {
        font-weight: bold;
        font-size: 32px;
        line-height: 48px;
    }
    h2 {
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
    }
    h3 {
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
    h6 {
        font-size: 16px;
        line-height: 24px;
        font-weight: bold;
    }
    .plusText {}
    .largeText,
    .captionText {
        font-size: 14px;
        line-height: 24px;
    }
    .smallText,
    .noteText {
        font-size: 12px;
        line-height: 16px;
    }
    .input input[type=text],
    .input input[type=number],
    .input input[type=tel],
    .select select {
        padding: 24px 32px;
    }
}