@charset "UTF-8";

html {
    font-size: 16px;
    -webkit-text-size-adjust:none;
    color:#000;
}

body {
    background: #dfdddc;
	font-size:12px;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
}

img {
    position: relative;
    display: block;
    border: 0;
    width: 100%;
    height: auto;
}
.wrap {
    position: absolute;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #dfdddc;
}
.wrap .preload {
    display: none;
}
.symbol-m {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    .symbol-m {
        display: block !important;
    }
    .symbol-pc {
        display: none !important;
    }
}
.wrap a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}

.nav {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed {
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 4vw;
}
.nav .nav-logo {
    display: none;
}
.nav.nav-fixed .nav-logo {
    position: absolute;
    display: block;
    width: 5vw;
    top:1vw;
    left: 8vw;
}
.nav .nav-menu {
    position: absolute;
    display: block;
    right: 2vw;
    top:2vw;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed .nav-menu {
    top:1vw;
}
.nav.expand .nav-menu {
    left: 0;
}
.nav .nav-menu ul {
    position: relative;
    display: flex;
}
.nav .nav-menu ul li {
    position: relative;
    display: block;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-weight: 700;
    font-size: 1.1vw;
    line-height: 180%;
    text-align: center;
    cursor: pointer;
    color:#fff;
    height: 2vw;
    padding: 0 1vw;
    margin: 0 0.5vw;
}
.nav.nav-fixed .nav-menu ul li {
    color: #0a3358;
}
.nav .nav-menu ul li:hover {
    background: #0a3358;
    background: linear-gradient(90deg,rgba(10, 50, 80, 1) 0%, rgba(58, 121, 175, 1) 100%);
    border-radius: 1vw;
}
.nav.nav-fixed .nav-menu ul li:hover {
    color: #fff;
}
.nav .nav-menu ul li span {
    position: relative;
    display: inline-block;
}
.nav .nav-menu ul li:last-child {
    border-right: 0;
}

@media screen and (max-width: 1000px) {
    .nav.nav-fixed {
        height: 60px;
    }
    .nav.nav-fixed .nav-logo {
        width: 80px;
        top:3vw;
        left: 8vw;
    }
    .nav .nav-menu {
        position: absolute;
        display: block;
        right: auto;
        left: 100%;
        top:0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 1;
    }
    .nav.nav-fixed .nav-menu {
        top:0;
    }
    .nav.expand .nav-menu {
        left: 0;
    }
    .nav .nav-menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    .nav .nav-menu ul li {
        font-size: 4vw;
        line-height: 100%;
        padding: 5vw 0;
        text-align: center;
        cursor: pointer;
        color:#0a3358;
        border-right:0px;
        border-bottom:1px solid rgba(255,255,255,1);
        width: 70%;
        background: none;
        line-height: 100%;
    }
    .nav .nav-menu ul li:hover {
        color: #666;
    }
    .nav .nav-menu ul li span {
        position: relative;
        display: inline-block;
    }
    .nav .nav-menu ul li:last-child {
        border-right: 0;
    }
    .nav .burger-btn {
        position: absolute;
        display: block;
        width: 40px;
        height: 30px;
        right: 15px;
        top:20px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index:2;
    }
    .nav.nav-fixed .burger-btn {
        top:20px;
        right: 15px;
    }
    .nav .burger-btn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 4px;
        background: #dfdddc;
        border-radius: 2px;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
    }
    .nav.nav-fixed .burger-btn span{
        background: #0a3358;
    }
    .nav .burger-btn span:nth-child(1) {
        -webkit-transform: scale(1,1) translate(0,0) rotate(0deg);
        transform: scale(1,1) translate(0,0) rotate(0deg);
    }
    .nav .burger-btn span:nth-child(2) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(0deg);
        transform: scale(1,1) translate(0,10px) rotate(0deg);
    }
    .nav .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,20px) rotate(0deg);
        transform: scale(1,1) translate(0,20px) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(1) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(45deg);
        transform: scale(1,1) translate(0,10px) rotate(45deg);
    }
    .nav.expand .burger-btn span:nth-child(2) {
        -webkit-transform: scale(0,1) translate(0,10px) rotate(0deg);
        transform: scale(0,1) translate(0,10px) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,10px) rotate(-45deg);
        transform: scale(1,1) translate(0,10px) rotate(-45deg);
    }
    
}

.footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #333;
    padding: 2vw 0;
    color: #fff;
}
.footer span {
    text-align: center;
    line-height: 180%;
    font-size: 0.95vw;
}
@media screen and (max-width: 1000px) {
    .footer span {
        font-size: 1.7vw;
    }
}

.popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index:9999;
    left: 100%;
    top:0;
    -wekbit-transition: left 0.5s ease;
    transition: left 0.5s ease;
}
.popup.expand {
    left: 0;
}
.popup-content {
    position: relative;
    display: block;
    width:55vw;
    padding: 1vw 2vw;
    border-radius: 2vw;
}
.popup-content .t1 {
    position: relative;
    display: block;
    font-size: 1.2vw;
    line-height: 150%;
    color: #7935b5;
    padding: 1vw 0;
    border-bottom: 1px solid #555555;
}
.popup-content .t1 span {
    position: relative;
    display: block;
    font-size: 2.5vw;
    line-height: 200%;
}
.popup-content .t2 {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 180%;
    padding: 1vw 0;
}
.popup-content .close-btn {
    position: absolute;
    display: block;
    right: 1vw;
    top:1vw;
    z-index: 999;
    width: 2vw;
}
@media screen and (max-width: 1000px) {
    .popup-content {
        width: 80vw;
        padding: 6vw 3vw;
    }
    .popup-content .t1 {
        font-size: 3vw;
        padding: 2vw 0;
    }
    .popup-content .t1 span {
        font-size: 5vw;

    }
    .popup-content .t2 {
        font-size: 3vw;
        padding: 2vw 0;
        max-height: 70vh;
        overflow-y: auto;
    }
    .popup-content .close-btn {
        top:2vw;
        right: 2vw;
        width: 6vw;
    }
}

.hover-scale {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.hover-scale:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.kv-box {
    position: relative;
    display: block;
    width: 100%;
    height: 60vw;
    background: #0a3358;
    overflow: hidden;
}
.kv-box .kv-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: url(../images/kv_bg.jpg) no-repeat bottom center;
    background-size: 100% auto;
}
.kv-box .kv-logo {
    position: absolute;
    display: block;
    width: 40vw;
    top:2vw;
    left: 5vw;
}
.kv-box .kv-title {
    position: absolute;
    display: block;
    width: 60vw;
    left: calc(50% - 30vw);
    top: calc(50% - 15vw);
}
.kv-box .kv-textbox {
    position: absolute;
    display: block;
    color: #fff;
    font-size: 12px;
    bottom: 5px;
    right: 5px;
    text-align: right;
    z-index: 1;
    font-weight: 300;
}
.kv-box .kv-textbox span{
    font-size: 0.8em;
}
@media screen and (max-width: 1000px) {
    .kv-box {
        width: 100%;
        height: 100vw;
        /*height: 125vw;*/
        justify-content: flex-start;
        padding: 25vw 0 0 0;
    }
    .kv-box .kv-logo {
        width: 60vw;
        top:6vw;
        left: 5vw;
    }
    .kv-box .kv-title {
        width: 80vw;
        left: calc(50% - 40vw);
        top: calc(50% - 15vw);
    }
    .kv-box .kv-textbox {
        margin: 4vw 0 0 0;
        padding: 0;
    }
}
.side-btn {
    position: fixed;
    right: 1vw;
    bottom: 10vw;
    z-index: 9;
    width: 3vw;
}
@media screen and (max-width: 1000px) {
    .side-btn {
        width: 7vw;
    }
}
.stage-container {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}
.stage-container1 {
    top:-1px;
}

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

}
.stagebox {
    position: relative;
    display: block;
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 16px;
    line-height: 180%;
    padding: 10vw 0 0 0;
}
.stage-title {
    position: relative;
    display: block;
    width: 18vw;
    margin: 0 auto 5vw auto;
}

@media screen and (max-width: 1000px) {
    .stage-title {
        width: 50vw;
    }
    .stagebox {
        justify-content: flex-start;
        align-items: flex-start;
        width: 90vw;
        padding: 20vw 0 0 0;
    }
}
.stage-intro .stage-textbox {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.stage-intro-t1 {
    position: relative;
    display: block;
}
.stage-intro-t2 {
    position: relative;
    display: block;
    padding: 0 0 2em 0;
    font-size: 1.5em;
    line-height: 180%;
    margin: 0 auto;
}
.stage-intro-t2 .c-blue {
    color: #0054a6;
}

.speaker-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 65vw;
    gap: 5vw; 
}
.speaker-list .item {
    position: relative;
    display: block;
    width: 45%;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease;
}
.speaker-list .item:nth-child(even){
    top:15vw;
}
.speaker-list .item:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    .speaker-list {
        width: 100%;
        justify-content: center;
    }
    .speaker-list .item:nth-child(even){
        top:auto;
    }
}
@media screen and (max-width: 600px) {
    .speaker-list .item {
        width: 70%;
    }
}
.stage-agenda {
    display: block;
}
.agenda-sliderbox {
    position: relative;
    display: block;
    width: 100vw;
    left: calc(50% - 50vw);
}
.agenda-sliderbox .agenda-slider {
    position: relative;
    display: block;
    width: 100%;
}
.slider-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 10vw 0;
}
.slider-item:last-child{
    margin: 0;
}
.slick-track {
    display: flex;
}
.arrow-left {
    position: absolute;
    display: block;
    top:8vw;
    left: 3vw;
    width: 7vw;
    max-width: 60px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease;
}
.arrow-left:hover {
    transform: scale(1.1);
}
.arrow-right {
    position: absolute;
    display: block;
    top:8vw;
    right: 3vw;
    width: 7vw;
    max-width: 60px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease;
}
.arrow-right:hover {
    transform: scale(1.1);
}
.agenda-content {
    position: relative;
    display: block;
    width: 70vw;
    margin: 0 auto;
}
.agenda-content .agenda-img {
    position: relative;
    display: block;
    margin: 2vw 0 0 0;
}
.map-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3vw 0 0 0;
}
.map-content .map-gbox {
    position: relative;
    display: block;
    width: 25vw;
    height: 25vw;
}
.map-content .map-gbox iframe {
    width: 100%;
    height: 100%;
}
.map-content .map-textbox {
    position: relative;
    display: block;
    width: calc(100% - 25vw);
    padding: 3vw;
}
@media screen and (max-width: 1000px) {
    .agenda-sliderbox {
    }
    .agenda-content {
        width: 80%;
    }
    .map-content {
        flex-direction: column;
    }
    .map-content .map-gbox {
        width: 100%;
        height: 60vw;
        max-height: 300px;
    }
    .map-content .map-textbox {
        width: 100%;
    }
}


.stage6 .contentbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70vw;
    margin: 0 0 5vw 0;
}
.stage6 .contentbox .stage6-mapbox {
    position: relative;
    display: block;
    width: 35vw;
    height: 35vw;
}
.stage6 .contentbox .stage6-mapbox iframe {
    width: 100%;
    height: 100%;
}
.stage6 .contentbox .stage6-textbox {
    position: relative;
    display: block;
    width: 35vw;
    font-size: 1.2vw;
    line-height: 150%;
    color: #333;
    padding: 0 0 0 3vw;
}
.red-text {
    color: #ff0000;
    font-weight: 700;
}
.blue-text {
    color: #0070c0;
    font-weight: 700;
}
.orange-text {
    color: #ff9933;
    font-weight: 700;
}
.black-text {
    color:#395aa8;
    font-weight: 700;
    font-size: 1.2em;
}
@media screen and (max-width: 1000px) {
    .stage6 .contentbox {
        flex-direction: column;
        width: 100vw;
    }
    .stage6 .contentbox .stage6-mapbox {
        width: 85vw;
        height: 85vw;
    }
    .stage6 .contentbox .stage6-textbox {
        font-size: 3vw;
        padding: 8vw 0 8vw 0;
        width: 85vw;
    }
}

.stage-form .formbox{
    position: relative;
    display: block;
    width:60vw;
    margin: 0 auto 5vw auto;
    padding: 3vw;
    background: #fff;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.2);
}

.stage-form .form-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stage-form .formbox ul li {
    position: relative;
    display: block;
    margin: 0 1vw 1.5vw 1vw;
    width: calc(50% - 2vw);
}
.stage-form .form-list select {
    width: 100%;
    height: 2.5vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
    padding: 0 1vw;
    color: #888;
}
.stage-form .formbox label {
    position: relative;
    display: inline-block;
    width: 20vw;
    font-size: 1.5vw;
    line-height: 150%;
}
.stage-form .formbox ul li label {
    display: block;
}
.stage-form .formbox ul li label::after {
    content: "*";
    color: crimson;
}
.stage-form .formbox input {
    width: 100%;
    height: 2.5vw;
    font-size: 1.5vw;
    line-height: 2.5vw;
    padding: 0 1vw;
}
.stage-form .formbox input[type="radio"] {
    width: 2vw;
    margin: 0 1vw 0 0;
}
.stage-form .formbox ul li.your-plan-check {
    display: flex;
    align-items: center;
}
.stage-form .formbox ul li.your-plan-check label {
    margin: 0 1vw 0 0;
    width: auto;
}
.stage-form .formbox ul li.your-plan-check input {
    margin: 0;
}
.stage-form .formbox ul li.your-plan-check label::after {
    display: none;
}
.stage-form .formbox ul li.your-plan-check label:last-child {
    margin: 0;
}
.stage-form .formbox ul li.your-plan-check label:last-child::after {
    display: inline-block;
}

.stage-form .formbox .sub-label {
    width: auto;
    margin: 0 3vw 0 0;
}
.stage-form .formbox input[type="checkbox"] {
    width: 2.5vw;
    margin: 0 1vw 0 0;
}
.stage-form .formbox .agreebox {
    position: relative;
    display: block;
    padding: 2em;
    background: #eee;
    margin: 0 0 2em 0;
    border-radius: 2em;
}
.stage-form .formbox .agreebox dt {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    color: #000;
}
.stage-form .formbox .agreebox dd {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 180%;
    padding: 1vw 0;
    font-weight: 300;
    text-align: justify;
}
.stage-form .formbox .privacy-btn {
    position: relative;
    display: block;
    width: 10vw;
    cursor: pointer;
    margin: 0 0 1vw 0;
}
.stage-form .formbox .agreebox label{
    width: auto;
}
.stage-form .formbox input[type="button"]{
    position: relative;
    display: block;
    width: 18vw;
    height: 5vw;
    font-size:0px;
    border:0px;
    background: url(../images/send-btn.png?v=0909) no-repeat center center;
    background-size: contain;
    margin: 2vw auto;
    cursor: pointer;
}
.stage-form .formbox .notebox {
    position: relative;
    display: block;
    padding: 1vw;
}
.stage-form .formbox .notebox .note-title {
    position: relative;
    display: block;
    font-size: 1.5vw;
    line-height: 150%;
    color: #c1272d;
}
.stage-form .formbox .notebox ol{
    padding: 1vw 0;
}
.stage-form .formbox .notebox ol li{
    list-style-type: decimal;
    font-size: 1.2vw;
    line-height: 150%;
    margin: 0 0 1vw 3vw;
}
@media screen and (max-width: 1000px) {
    .stage-form {
        padding: 5vw 0 0 0;
    }
    .stage-form .formbox{
        width:90vw;
        margin: 0 auto 5vw auto;
        padding: 3vw;
        border-radius: 2vw;
        box-shadow: 0 1vw 2vw rgba(0,0,0,0.2);
    }
    .stage-form .formbox ul li {
        margin: 0 0 4vw 0;
        width: 100%;
    }
    .stage-form .form-list select {
        width: 100%;
        height: 7vw;
        font-size: 4vw;
        line-height: 7vw;
    }
    .stage-form .formbox label {
        width: 50vw;
        font-size: 3vw;
    }
    .stage-form .formbox input {
        width: 100%;
        height: 7vw;
        font-size: 4vw;
        line-height: 7vw;
    }
    .stage-form .formbox input[type="radio"] {
        width: 5vw;
        margin: 0 1vw 0 0;
    }
    .stage-form .formbox ul li.your-plan-check label {
        margin: 0 2vw 0 0;
        width: auto;
    }
    .stage-form .formbox .agreebox {
    }
    .stage-form .formbox .agreebox dt {
        padding: 5vw;
    }
    .stage-form .formbox .agreebox dd {
        font-size: 3vw;
        padding: 2vw 0;
    }
    .stage-form .formbox .privacy-btn {
        width:25vw;
        margin: 0 0 3vw 0;
    }
    .stage-form .formbox .agreebox label{
        width: auto;
    }
    .stage-form .formbox input[type="button"]{
        width: 40vw;
        height: 12vw;
    }
    .stage-form .formbox .notebox {
        position: relative;
        display: block;
        padding: 1vw;
    }
    .stage-form .formbox .notebox .note-title {
        font-size: 4vw;
    }
    .stage-form .formbox .notebox ol{
        padding: 2vw 0;
    }
    .stage-form .formbox .notebox ol li{
        font-size: 3vw;
        line-height: 150%;
        margin: 0 0 3vw 5vw;
    }
}

.logo-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    flex-wrap: wrap;
}
.logo-list li {
    margin: 2vw;
}
.logo-list li dl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.logo-list li dl dt {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 100%;

}
.logo-list li dl dd {
    position: relative;
    display: block;
    margin: 0.5vw 2vw 0.5vw 0;
}
.logo-list li dl dd:last-child{
    margin: 0;
}
.logo-list li dl dd img {
    position: relative;
    display: block;
    width: auto;
    height: 3vw;
}
.logo-list li dl dd.tp-logo img {
    height: 4vw;
}
@media screen and (max-width: 1000px) {
    .logo-list {
        flex-direction: column;
        width: 70vw;
        margin: 0 auto;
    }
    .logo-list li {
        margin: 3vw 0;
    }
    .logo-list li dl {
        flex-wrap: wrap;
        margin: 0 0 2vw 0;
    }
    .logo-list li dl dt {
        font-size: 3vw;
        width: 100%;
        text-align: center;
        margin: 0 0 2vw 0;
    }
    .logo-list li dl dd {
        margin:2vw;
    }
    .logo-list li dl dd img {
        height: 7vw;
    }
    .logo-list li dl dd.tp-logo img {
        height: 10vw;
    }
}