* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Noto Sans TC", sans-serif;
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

@font-face {
    font-family: "DINCondensed";
    src: url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.eot");
    src: url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/954a505bdd1fd46577f8b93badf61c8c.svg#DIN Condensed")format("svg");
}

:root {
    --gold: #eed275;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box {
    width: 100%;
    max-width: 1024px;
}

div[d="signup"] .box {
	margin-top: 35px;
}

/** */
div[d="contacts"] .box {
	margin-top: 180px;
	padding: 80px;
	width: 80vw;
	background-image: linear-gradient(to right, #fff2fa, #fffcea);
}
.contact {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px;
	border-top: 1px solid #AFA723;
	color: #515151;
	font-size: 1.3rem;
}
.contact .username {
	width: 150px;
}
.contact .email {
	width: 580px;
}
.contact .phone {
	width: 250px;
	text-align: right;
}
@media (max-width: 900px) {
	.contact {
		display: flex;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		text-align: center;
	}

	.contact .username,
	.contact .email,
	.contact .phone {
		width: 100%;
		text-align: center;
	}

	.contact .email {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}





.computerShowF {
    display: flex !important;
}

.mobileShowF {
    display: none !important;
}

.computerShow {
display: block !important;
}

.mobileShow {
display: none !important;
}


.titleE {
	color: #a07740;
	font-size: 20px;
	text-align: center;
}

.title {
	color: #4f4f4f;
	font-size: 40px;
	text-align: center;
	margin-bottom: 10px;
}

.titleGold {
	color: var(--gold);
	font-size: 20px;
	margin-bottom: 20px;
}


.titleLineBox {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 50px;
}

.titleLineBox .line {
    width: 155px;
    height: 3px;
    background: linear-gradient(90deg, #ff90de 40%, #aa69e9 60%);
}

.mb40 {
	margin-bottom: 40px;
}

@media (max-width:1024px) {
	.box {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.computerShowF {
		display: none !important;
	}
	.mobileShowF {
		display: flex !important;
	}
	.w33 {
		width: calc(100% / 3) !important;
	}
	.w50 {
		width: 50% !important;
	}

	.computerShow {
		display: none !important;
	}

	.mobileShow {
		display: block !important;
	}
}

/* navbar */
#navbar {
	width: 100%;
	position: fixed;
	height: 100px;
	background: #000;
	z-index: 12;
}
#navbar .box {
	max-width: 1440px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
	height: 100%;
}
#navbar .box .left {
	height: 100%;
}

#navbar .box .right {
display: flex;
gap: 50px;
}

#navbar .box .right .link {
display: flex;
align-items: center;
gap: 10px;
}

#navbar .box .right .link .icon {
width: 23px;
height: 23px;
}

#navbar .box .right .link .textbox {
font-size: 18px;
color: #fff;
}

#navbar .box .right .link .textbox div {
font-size: 12px;
color: rgb(197, 170, 81);
line-height: 16px;
}

@media (max-width:1440px) {
#navbar .box {
    padding: 25px 20px;
}
}

/* bg */

#bgContainer {
position: fixed;
top: 100px;
left: 0;
background-color: #fff;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
width: 100%;
height: calc(100vh - 100px);
z-index: -1;
}

#bgContainer img {
    height: 500px;
    position: absolute;
}

#bgContainer .left {
left: 0;
top: 20px;
}

#bgContainer .right {
right: 0;
top: 20px;
}

/* key visual */
#keyVisual {
padding-top: 100px;
position: relative;
width: 100%;
}

#keyVisual img {
width: 100%;
display: block;
}

.kvBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(180deg, #ea6da5 0%, #ab4be0 100%);
	border: 2px solid #fcf164;
    height: 140px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    font-size: 20px;
    color: #fff;
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 8px;

}

@media (max-width:480px) {
	.kvBtn {
		bottom: 30px;
		right: 30px;
		font-size: 16px;
		height: 130px;
	}
}

/* about */
#about {
	padding: 100px 0 0;
}


#about .textContainer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

#about .textContainer .textBox {
width: 48%;
}

#about .cardContainer {
width: 100%;
display: flex;
flex-wrap: wrap;
}

#about .cardContainer .card {
padding: 35px 20px;
width: 25%;
min-height: 329px;
display: flex;
position: relative;
justify-content: center;
align-items: center;
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
transition-duration: 1s;
}

#about .cardContainer .card .insideBox {
width: 274px;
}

#about .cardContainer .card:nth-child(1) {
left: 0;
background: #31A4A1;
}

#about .cardContainer .card:nth-child(2) {
left: -20%;
background: #73BCB1;
}

#about .cardContainer .card:nth-child(3) {
left: -40%;
background: #3BBA65;

}

#about .cardContainer .card:nth-child(4) {
left: -60%;
background: #A1C673;
}

#about .cardContainer .card:nth-child(5) {
background-color: rgb(33, 105, 104);
left: -80%;
}

#about .cardContainer .iconContainer {
display: flex;
justify-content: center;
height: 100px;
align-items: center;
}

#about .cardContainer .iconContainer .num {
font-size: 120px;
font-family: DINCondensed, sans-serif;
font-style: normal;
font-weight: 400;
line-height: 100px;
color: #fff;
}

#about .cardContainer .iconContainer img {
height: 100%;
}

#about .cardContainer .cardTitle {
font-size: 26px;
color: #fff;
text-align: center;
margin-top: 10px;
}

#about .cardContainer .description {
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    font-size: 18px;
}

#about .highlight {
padding: 0 0 80px 0;
display: flex;
width: 100%;
justify-content: center;
}

#about .hightLightBtm {
padding: 80px 0;
display: flex;
width: 100%;
justify-content: center;
}

#about .highlight .box {
width: 100%;
max-width: 937px;
text-align: center;
font-weight: 400;
color: #4F4F4F;
position: relative;
line-height: 200%;
}

#about .highlight .box span {
position: relative;
bottom: 10px;
padding-right: 10px;
}

/* speaker */

#speaker {
padding: 80px 0;
background-color: #eef7f7;
}

#speaker .controls {
width: 100%;
display: flex;
gap: 1px;
justify-content: center;
border-bottom: 1px solid rgb(222, 203, 95);
margin-bottom: 75px;
}

#speaker .controls .control {
padding: 25px 20px;
display: flex;
flex-direction: column;
gap: 5px;
font-size: 20px;
align-items: center;
color: #fff;
}


#speaker .controls #control1 {
background-color: rgb(187, 160, 38);
}

#speaker .controls #control2 {
background-color: rgb(194, 176, 87);
}

#speaker .controls .control img {
width: 20px;
}

#speaker .titleLineBox {
margin-bottom: 120px;
}

#speaker .speaker_top {
width: 100%;
padding-bottom: 100px;
border-bottom: 1px solid rgb(193, 195, 114);
display: flex;
flex-direction: column;
align-items: center;
}

#speaker .speaker_bottom {
width: 100%;
margin-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
}

#speaker .field {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 80px;
}

#speaker .field .line {

height: 1px;
width: calc((100% - 100px) / 2);
max-width: 85px;
background-color: #008080;
margin-top: 5px;
}

#speaker .field .text {
	width: 80px;
	color: #008080;
	font-weight: 400;
	font-size: 26px;
}

#speaker .field .swiper {
	width: 100%;
}


/* agenda */
#agenda {
	padding: 80px 0;
	background-image: linear-gradient(to right, #fff2fa, #fffcea);
}

#agenda .agendaTitle {
	color: #a350c3;
	display: block;
	font-size: 24px;
	margin-bottom: 55px;
	text-align: center;
}

#agenda .timeDescription {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 55px;
}

#agenda .timeDescription .left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	align-items: center;
}

#agenda .timeDescription .left img {
	height: 24px;
}

#agenda .timeDescription .right {
	padding: 5px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#agenda .timeDescription .address a {
	color: #53b5f9;
}
#agenda .timeDescription .right div {
    font-size: 18px;
    color: #4f4f4f;
}


#agenda .agendaLists {
    background-color: #fff;
}

#agenda .agendaList {
    width: 100%;
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #AFA723;
    font-size: 20px;
}
#agenda .agendaList .time {
    color: #4f4f4f;
    width: 150px;
    font-weight: 300;
}

#agenda .agendaList .description {
    color: #4f4f4f;
    font-weight: 300;
    font-size: 20px;
    padding-right: 20px;
    min-width: 500px;
}
#agenda .agendaList .speakers {
    width: 330px;
    color: #4f4f4f;
    font-weight: 300;
    font-size: 20px;
    padding-right: 20px;
}
#agenda .agendaList .speakers .host {
    margin-bottom: 15px;
}

#agenda .agendaList .detail {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    color: #030303;
}

#agenda .agendaList .detail_list {
display: flex;
}

#agenda .agendaList .detail_list::before {
    content: '\00a0';
    width: 10px;
    height: 100%;
}

#agenda li {
    display: flex;
}

#agenda li::marker {
    font-size: 0px;
    margin-bottom: 5px;
    height: 100%;
}

#agenda li::before {
    content: '.';
    font-size: 20px;
    position: relative;
    padding-right: 4px;
    top: -10px;
    left: -10px;
}

@media (max-width:440px) {
    #agenda .timeDescription .left {
        justify-content: space-around;
    }
}

/* sign up */
#signUp {
    padding: 80px 0;
    background: linear-gradient(0deg, #FFFFFF 0%, #EEF7F7 100%);
}
form[role="edit"] {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
form[role="edit"] .list {
	width: calc(50% - 25px);
}

form[role="edit"] .list100 {
	width: 100%;
}

form[role="edit"] .list .text,
form[role="edit"] .list100 .text {
	font-size: 18px;
	margin-bottom: 15px;
	width: 100%;
	font-weight: 500;
	color: #4f4f4f;
}

form[role="edit"] .list .inputStyle,
form[role="edit"] .list100 .inputStyle {
	outline: unset;
	border: 1px solid #d9d9d9;
	padding: 10px;
	font-size: 18px;
	width: 100%;
}

form[role="edit"] .list .selectStyle {
	width: 100%;
	font-size: 18px;
	border: 1px solid #d9d9d9;
	padding: 9px;
}

select {
    appearance: none;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    outline: unset;
}

select::-ms-expand {
    display: none;
}

.selectBox {
    position: relative;
    width: 100%;
    display: inline-block;
    cursor: pointer;
}
.selectBox img {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.inputSquare input {
    display: none;
}

.inputSquare label {
    display: inline-block;
    padding: 5px 10px 5px 0;
    cursor: pointer;
}

.inputSquare label span {
    position: relative;
    line-height: 22px;
    font-size: 18px;
    font-weight: 300;
    color: #4f4f4f;
}

.inputSquare label span:before,
.inputSquare label span:after {
content: '';
}

.inputSquare label span:before {
border: 1px solid #4f4f4f;
background: #fff;
width: 20px;
height: 20px;
margin-right: 10px;
display: inline-block;
vertical-align: top;
}

.inputSquare label span:after {
	background: #a955f1;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 6px;
	left: 4px;
	transition: 300ms;
	opacity: 0;
}

.inputSquare label input:checked+span:after {
opacity: 1;
}


.selectItem:hover,
.selectItem span:hover {
cursor: pointer;
}


.precautionsText {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 300;
    color: #4F4F4F;
}

form[role="edit"] .submitContainer {
width: 100%;
display: flex;
justify-content: center;
}

form[role="edit"] .submitContainer button {
    max-width: 369px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
	background: linear-gradient(270deg, #6e54bb 0%, #ea6da5 100%);
    border: unset;
}

form[role="edit"] .submitContainer button:hover {
	cursor: pointer !important;
}

@media (max-width:480px) {
	form[role="edit"] .list {
		width: 100%;
	}
}


#footer {
    background-color: #fff;
}

#footer .box {
    padding: 80px 0;
}

#footer .companyBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

#footer .companyBox .name {
    padding-bottom: 24px;
    font-size: 1.2rem;
    color: #4f4f4f;
    font-weight: 300;
}

#footer .companyBox .logo {
    max-width: 90%;
    height: 50px;
}
#footer .companyBox .ag {
    width: 100%;
}

#footer .box .bottom {
    text-align: center;
    padding-top: 50px;
    font-size: 14px;
    color: #4f4f4f;
    border-top: 1px solid #000;
    font-weight: 300;
}

#footer .center {
    width: 100%;
    font-size: 14px;
    padding-bottom: 60px;
}

#footer .center_title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

#footer .center_description {
    padding: 0 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
}

#footer .center_description .logo {
    height: 40px;
}


@media (max-width:480px) {
    #footer .center_description .logo {
        height: 31px;
    }
}
.foot-logo {
    margin-bottom: 35px;
}
.foot-logo > img {
    max-width: 90%;
}



@media (max-width:1024px) {
    #speaker .speaker_top,
    #speaker .speaker_bottom {
        padding: 0 50px 100px;
    }
}

@media (max-width:768px) {
    .swiper .more {
        max-width: 100px;
    }

    #speaker .field {
        margin-bottom: 20px;
    }

    #bgContainer img {
        height: 200px;
    }
}

@media (max-width:480px) {
    .titleE {
        font-size: 16px;
    }

    .title {
        font-size: 34px;
    }

    #about {
        padding: 60px 0 0;
    }

    #about .title {
        margin-bottom: unset;
    }

    #about .highlight {
        padding: 0 0 40px 0;
    }

    #about .hightLightBtm {
        padding: 40px 0;
    }
    #about .cardContainer .card {
        left: 0 !important;
    }

    #speaker {
        padding: 60px 0;
    }

    #speaker .titleLineBox {
        margin-bottom: 40px;
    }

    #speaker .speaker_top,
    #speaker .speaker_bottom {
        padding: 0 50px;
    }

    #speaker .speaker_top {
        padding-bottom: 50px;
    }

    #speaker .speaker_bottom {
        margin-top: 50px;

    }

    #agenda {
        padding: 60px 0;
    }

    #agenda .agendaList .time,
    #agenda .agendaList .description,
    #agenda .agendaList .detail {
        width: 100%;
    }
    #agenda .agendaList .simple {
        width: 100% !important;
    }

    #agenda .agendaList .description {
        padding-right: 0;
    }

    #signUp {
        padding: 60px 0;
    }

    #footer .center_description {
        padding: unset;
    }

    #footer .box .top {
        flex-direction: column;
    }
}


.submit-alert {
    font-size: 1.2rem;
    line-height: 2rem;
    color: rgb(231 22 22);
    margin-top: 15px;
}




.photos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
}
.photos .photo {
	width: 20%;
	position: relative;
	transition: box-shadow 0.5s ease;
}
.photos .photo img {
	width: 100%;
	cursor: pointer;
}
.photos .photo:hover img {
	box-shadow: 2px 4px 14px rgb(0 0 0 / 56%);
	filter: contrast(120%);
}
.photos .photo .job_title {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #fff;
}

.photos .photo:hover .job_title {
    bottom: 5px;
    right: 0;
    color: #d9cbf5;
    background: #684aa4;
    width: 100%;
}
.photos .photo .job_title h5 {
	font-weight: 200;
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-align: right;
	transition: 0.5s;
}
.photos .photo:hover .job_title h5 {
	font-weight: 400;
	font-size: 1.3rem;
}
.photos .photo .job_title h6 {
	font-weight: 200;
	font-size: 0.8rem;
	letter-spacing: 1px;
	text-align: right;
	transition: 0.5s;
}
.photos .photo:hover .job_title h6 {
	font-weight: 400;
	font-size: 0.9rem;
}
@media (max-width: 900px) {
	.photos .photo {
		width: 25%;
	}
}
@media (max-width: 600px) {
	.photos .photo {
		width: 33%;
	}
}
@media (max-width: 500px) {
	.photos .photo {
		width: 48%;
	}
}





/** */
.agendas {
	background: #fff;
}
.agenda {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px;
	border-top: 1px solid #AFA723;
	color: #515151;
	font-size: 18px;
}
.agenda .time {
	width: 150px;
}
.agenda .description {
	width: 580px;
}
.agenda .speakers {
	width: 250px;
	text-align: right;
}
@media (max-width: 900px) {
	.agenda {
		display: flex;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		text-align: center;
	}

	.agenda .time,
	.agenda .description,
	.agenda .speakers {
		width: 100%;
		text-align: center;
	}

	.agenda .description {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.agenda .speakers {
		margin-top: 15px;
	}
	.agenda .host {
		margin: 15px auto;
	}
}



/** @override sweetalert2 */
div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
	background-color: #f26fd3 !important;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring {
	border: .25em solid rgb(244 134 234 / 30%) !important;
}
