* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    color: #333333;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
    background-color: #fff9ee;
}

a {
    color: #333333;
}

option {
    text-align: left;
}

.content {
    width: 85vw;
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
}

.title {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto 60px;
    padding: 5px 50px;
    border-radius: 50px;
    background: linear-gradient(90deg, #EF760D 0%, #F8981D 80%);
}

.title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 35px;
    width: 0;
    height: 0;
    border-top: 25px solid #F8981D;
    border-right: 25px solid transparent;
    z-index: -1;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: bold;
}

.subhead {
    font-size: 1.4rem;
    /* font-weight: bold; */
}

.text {
    font-size: 1.2rem;
}

.ss-show {
    display: none;
}

.red {
    color: #c1272d;
}

.signup-notice ::-webkit-scrollbar,
.speaker-popup ::-webkit-scrollbar {
    width: 7px;
}

.signup-notice ::-webkit-scrollbar-thumb,
.speaker-popup ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #a8a8a8;
}

.signup-notice ::-webkit-scrollbar-track {
    background: #f2f2f2;
    border: 1px solid #a8a8a8;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5e6d5;
    z-index: 99;
}


#status img {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: swing3 3s ease-in-out infinite;
    -moz-animation: swing3 3s ease-in-out infinite;
    -webkit-animation: swing3 3s ease-in-out infinite;
}


@keyframes swing3 {
    0% {
        transform: translate(-50%, -50%);
    }

    45% {
        transform: translate(-50%, -40%);
    }

    55% {
        transform: translate(-50%, -40%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* nav-bar */
.nav_bar {
    padding: 0 15px;
    display: flex;
    position: fixed;
    width: 100%;
    color: #ff9661;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: space-between;
    align-items: center;
    z-index: 9;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.menu_box,
.menu_list_mb {
    display: none;
}

.main-logo {
    display: flex;
    gap: 25px;
}

.logo {
    height: 35px;
}

.logo img {
    height: 100%;
}

.menu_list_pc {
    display: flex;
}

.menu_list_pc li {
    text-align: center;
    padding: 17px 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

.menu_list_pc li:hover {
    color: #f3553c;
}

.header_social_area {
    display: flex;
    gap: 25px;
}

.header_fb,
.header_line {
    width: 35px;
    height: 35px;
    transition: 0.5s;
}

.header_fb:hover,
.header_line:hover {
    opacity: 0.7;
}

.header_fb {
    background-image: url(../images/logo-icon/logo-fb.svg);
    background-size: cover;

}

.header_line {
    background-image: url(../images/logo-icon/logo-line.svg);
    background-size: cover;
    width: 37px;
}

/* section_1 kv-seciton */
section {
    position: relative;
}

#section_kv_bg {
    background-color: #fff9ee;
}

.shape-3 {
    position: absolute;
    bottom: 0;
    left: -20vw;
    width: 64vw;
}

.shape-4 {
    position: absolute;
    bottom: 7vw;
    right: -16vw;
    width: 87vw;
}

#section_1 {
    position: relative;
    height: 50vw;
    /* overflow: hidden; */
    z-index: 2;
}

.kv-pc {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.kv-sm {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.kv-title {
    width: 70vw;
    position: absolute;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    object-fit: contain;
    object-position: center;
}

/* 論壇引言 */
#section_2 {
    overflow: hidden;
    position: relative;
    padding: 20vw 0 25vw;
    background: url(../images/introduction-bg.svg);
    background-size: cover;
    background-position: center;
    margin-top: -6vw;
}

#section_2 .content {
    max-width: 900px;
}

.light-yellow-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.light-yellow-2 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    transform: scale(-1);
}

#section_2 .introduction_box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
    line-height: 2rem;
    color: #4d4d4d;
}

/* 最新消息 */
#section_3 {
    margin-top: -2vw;
    padding: 0 0 10vw;
    z-index: 2;
}

#section_3 .content {
    max-width: 900px;
}

.news_box {
    position: relative;
    display: block;
    padding: 40px;
    background-color: rgba(255, 255, 255);
    border-radius: 10px;
    border: 2px solid #f8981d;
    text-align: center;
}

.goToWinnerList {
    cursor: pointer;
    padding: 6px 45px;
    color: white;
    background-color: #f8981d;
    border-radius: 30px;
    margin: 50px auto 0;
    font-weight: bold;
    display: block;
    width: fit-content;
    transition: 0.3s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.goToWinnerList:hover {
    transform: scale(1.05);
}

/* 三大主題 */
#section_4 {
    position: relative;
    padding: 10vw 0;
}

/* 有最新消息時 */
/* #section_4 {
    margin-top: -50px;
    padding: 0 0 80px;
} */

.issue_box {
    display: flex;
    margin: 100px 0 60px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 150px;
}

.issue {
    position: relative;
    width: calc((100% - 150px * 2)/ 3);
}

.issue-1,
.issue-3 {
    top: 100px;
}

.people-4 {
    width: 90%;
    max-width: 470px;
    margin: 0 auto;
    display: block;
}

/* section_5 */
#section_5 {
    background: url(../images/introduction-bg.svg);
    background-size: cover;
    background-position: center;
    padding: 10vw 0 20vw;
}

.top-speaker {
    padding: 60px;
    background-color: #fffdf3;
    border: solid 2px #ff5c68;
    position: relative;
    margin: 0 auto 60px;
    border-radius: 1rem;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    align-items: center;
}

.top-speaker h1 {
    color: #ff8748;
    margin-bottom: 0.5rem;
}

.speaker h1 {
    color: #F3553C;
    margin-bottom: 0.5rem;
}

.top-speaker p {
    color: #808080;
    font-size: 1.2rem;
    margin-top: 30px;
    padding-top: 10px;
    text-align: justify;
    border-top: 2px solid #ff8748;
}

.top-speaker img {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.speaker-content {
    display: flex;
    flex-wrap: wrap;
}

.speaker {
    padding: 1.7rem 1.7rem 5rem 1.7rem;
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.speaker-img {
    position: relative;
    display: block;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #ffc45a;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5e6d5;
}

.more-btn {
    position: relative;
    cursor: pointer;
    background-color: #ffb53c;
    color: white;
    padding: 0px 20px 3px;
    border-radius: 50px;
    transition: 0.5s;
    width: fit-content;
    font-size: 1.2rem;
    margin: 25px auto 0;
    font-weight: bold;
}

.more-btn::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 15px;
    width: 0;
    height: 0;
    border-bottom: 15px solid #ffb53c;
    border-left: 15px solid transparent;
    pointer-events: none;
}

.more-btn:hover {
    transform: translateY(-5px);
}

/* section_6 */
#section_6 {
    margin-top: -100px;
    padding-bottom: 100px;
}

.schedule-chart {
    border: solid 2px #f0a88f;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
}

.schedule-chart table {
    width: 100%;
    font-size: 1.2rem;
    border-collapse: separate;
    border-spacing: 5px;
}

.schedule-chart thead {
    color: #f0a88f;
    background-color: #fffdf3;
}

thead th {
    text-align: left;
}

thead th:first-child {
    text-align: center;
}

.schedule-chart th,
.schedule-chart td {
    padding: 15px 10px;
}

tbody tr td:first-child {
    text-align: center;
}

tbody tr:nth-child(odd) td {
    background-color: #fcf0e7;
}

tbody tr:nth-child(even) td {
    background-color: #fffdf3;
}

.issue-title {
    background-color: #e5825c;
    color: #fff;
}

.agenda-more-btn {
    display: none;
}

.active {
    height: fit-content;
}

.download_pdf_btn {
    display: block;
    width: fit-content;
    padding: 10px 50px;
    color: #fff;
    background: linear-gradient(90deg, #ffe046 0%, #f19043 100%);
    border-radius: 50px;
    transition: 0.5s;
    margin: 30px auto 0;
    border: 4px solid white;
    font-weight: bold;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.download_pdf_btn:hover {
    transform: scale(1.05);
}

/* 活動資訊 */
#section_9 {
    padding: 10vw 0;
    background: url(../images/info-bg.svg);
    background-size: cover;
    background-position: center;
}

.info-content {
    border: 2px solid #f0a88f;
    padding: 40px;
    background-color: white;
    border-radius: 1rem;
}

.info-content .title {
    margin: 0 auto 30px;
}

.info-time {
    text-align: center;
    margin: 0 0 30px;
    color: #4d4d4d;
}

.info-box {
    display: flex;
    gap: 30px;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 430px;
}

.info-title {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #f3553c;
    font-weight: bold;
}

.info-location img {
    width: 22px;
}

.info-transportation img {
    width: 22px;
    padding-top: 5px;
}

.map {
    flex: 1;
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* 抽獎活動 */
#section_14 {
    padding: 10vw 0;
    overflow: hidden;
}

#section_14 .content {
    max-width: 1100px;
}

.award_content {
    border: 2px solid #f0a88f;
    padding: 80px;
    background-color: white;
    border-radius: 1rem;
}

.award_content:first-child {
    margin-bottom: 50px;
}

.award-subtitle {
    text-align: center;
    color: #f3553c;
    margin-bottom: 60px;
}


.award-plan {
    margin-left: -10px;
    margin-bottom: 10px;
    color: #c1272d;
    font-weight: bold;
}

.award-detail p {
    text-align: justify;
}

/* 有獎品才要開 */
/* .award-notice {
    margin-bottom: 3rem;
    padding-left: 30px;
} */

.award-notice {
    padding-left: 30px;
}

.award-notice li {
    list-style-type: decimal;
    margin-bottom: 1rem;
    text-align: justify;
}

.award-pic {
    display: flex;
    flex-wrap: wrap;
}

.prize {
    margin: 0.5rem;
    width: 10rem;
    text-align: center;
}

.name_block {
    display: none;
}

.prize p {
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.prize-pic {
    width: 100%;
}

.prize-title {
    display: block;
    font-weight: 600;
    padding-bottom: 0.5rem;
    color: #2a5987;
}

.prize-title.gift {
    height: 4rem;
}

.prize-title.jackie.gift {
    height: 5rem;
}

.prize-title.jackie2.gift {
    height: 2rem;
}

.prize-title.gift::before {
    position: relative;
    content: '';
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

.prize-title.gift span {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.win-person {
    margin-left: 2rem;
}

.section-title {
    text-align: center;
    color: #f3553c;
    margin: 30px 0 60px;
}

.prize-more-btn {
    font-size: 1rem;
    background-color: #2a5987;
    color: #fff;
    padding: 5px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    width: fit-content;
    margin: 5px auto;
}

.prize-more-btn:hover {
    background-color: #331f49;
}

.title-list {
    color: #2a5987;
}


/* prize popup */
.prize-popup {
    display: none;
}

.prize-popup-content {
    background-color: #fff;
    width: 85vw;
    max-width: 655px;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
}

.prize-notice {
    margin: 20px;
    font-size: 1.2rem;
}

.prize-notice.hoka .award-pic {
    justify-content: center;
}

.prize-notice li {
    list-style-type: decimal;
    margin: 10px 0;
    text-align: justify;
    margin-left: 10px;
}

.prize-notice ul {
    padding-left: 20px;

}

.prize-notice ul li {
    list-style-type: square;
}

.prize-notice ul li ul li {
    list-style-type: circle;
}

/* 報名欄位 */
#section_7 {
    padding: 10vw 0;
}

#section_7 .content {
    max-width: 1100px;
}

.signup_content {
    border: 2px solid #f0a88f;
    padding: 80px;
    background-color: white;
    border-radius: 1rem;
}

.signup-title {
    font-size: 2rem;
    color: #f3553c;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto 60px;
}

#signup_form {
    font-size: 1.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

input,
select {
    text-align: left;
    font-size: 1rem;
    padding: 10px 10px 8px;
    border-radius: 5px;
    border: solid 1px #b3b3b3;
    background-color: #fff;
    color: #3d3d3d;
    display: block;
}

select {
    cursor: pointer;
    appearance: none;
}

.select-arrow {
    position: absolute;
    top: 74%;
    transform: translateY(-50%);
    right: 18px;
    width: 16px;
    z-index: 2;
    opacity: 0.7;
}

.signup-input {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.signup-half {
    display: flex;
    gap: 30px 20px;

}

.signup-half div {
    flex: 1;
}

.select {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.select div {
    display: flex;
    gap: 5px;
}

.signup-notice {
    background-color: #f2f2f2;
    padding: 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.signup-notice .red {
    margin-bottom: 5px;
}

.notice {
    background-color: #cccccc;
    height: 250px;
    overflow-y: scroll;
    padding: 15px;
    line-height: 1.7rem;
    color: #4d4d4d;
    text-align: justify;
}

.agree {
    margin: 20px 0;
    text-align: justify;
}

.agree-input {
    display: flex;
    gap: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
}

.submit-btn {
    background-color: #e12e4b;
    color: white;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
}

.submit-btn img {
    height: 30px
}

.submit-btn:hover {
    opacity: 0.8;
}

/* section_article_bg */
#section_article_bg {
    background: url('../images/alticle-bg.svg') center center;
    background-size: cover;
}

/* 樂齡生活學 */
#section_10 {
    padding: 10vw 0;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.soho-slider .item {
    margin: 1rem;
    background: #fff6e6;
    border-radius: 1rem;
    overflow: hidden;
    border: solid 4px #f0a88f;
}

.soho-slider .item-img {
    height: 15rem;
    overflow: hidden;
    position: relative;
}

.soho-slider .item-img::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 28px);
    height: 100%;
    border: 4px solid #fff6e6;
    border-radius: calc(1rem - 10px);
}

.soho-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    top: 50%;
    transform: scale(1) translateY(-50%);
    transition: 0.5s;
}

.soho-slider .text {
    text-align: justify;
    padding: 10px 15px;
}

.soho-slider .item:hover>.item-img img {
    transform: scale(1.1) translateY(-50%);

}

.soho-slider .slick-prev,
.soho-slider .slick-next {
    z-index: 5;
    opacity: 1;
}

.soho-slider .slick-prev:before,
.soho-slider .slick-next:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 51px;
    transform: translateY(-50%);
    opacity: 1;
    background-size: contain;
}

.soho-slider .slick-prev:before {
    background-image: url(../images/arrow-article.svg);
    background-repeat: no-repeat;
    left: 0px;
}

.soho-slider .slick-next:before {
    background-image: url(../images/arrow-article.svg);
    transform: translateY(-50%) scale(-1);
    right: 0px;
}

.soho-slider .slick-prev:hover:before,
.soho-slider .slick-next:hover:before {
    filter: contrast(5);
}

/* 精彩回顧 */
#section_11 {
    padding: 10vw 0;
}

.shape-5 {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.history-slider .item {
    color: #f3553c;
    margin: 0 1rem;
    text-align: center;
}



.history-slider .item-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    border: solid 3px #f3553c;
    margin: 1rem 0;
    transition: 0.5s;
}

.history-slider .item-img img {
    width: 100%;
    height: auto;
}

.year {

    width: fit-content;
    padding: 10px 30px 25px;
    position: relative;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem;
    background: url(../images/year.svg);
    background-size: contain;
    background-repeat: no-repeat;

    background-position: center;
}

.history-line {
    border: none;
    height: 2px;
    background-color: #f3553c;
    position: relative;
    width: 98%;
    transform: translateX(-50%);
    left: 50%;
    top: 1.5rem;
}

.history-slider .item:hover>.item-img {
    transform: scale(0.95)
}

.history-slider .slick-prev {
    left: 0;
}

.history-slider .slick-next {
    right: 0;
}

.history-slider .slick-prev,
.history-slider .slick-next {
    z-index: 5;
    top: 0;
    opacity: 1;
}

.history-slider .slick-prev:before,
.history-slider .slick-next:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 51px;
    top: 9px;
    opacity: 1 !important;
    background-image: url(../images/arrow-history.svg);
}

.history-slider .slick-prev:before {
    left: 0;
}

.history-slider .slick-next:before {
    transform: scale(-1);
    right: 0;
}

.history-slider .slick-prev:hover:before,
.history-slider .slick-next:hover:before {
    filter: contrast(3);
}

/* logo */
#section_12 {
    padding: 10vw 0 0;
    background-color: #fff;
    text-align: center;
}

.logo-title {
    color: #e12e4b;
    border: 3px solid #e12e4b;
    font-weight: bold;
    padding: 10px 40px;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto;
}

.logo-content {
    padding-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: calc(33% - 4rem);
    margin: 2rem;
}

.organizer-content .partner-logo img {
    height: 3.2rem;
}

.noclick {
    cursor: none;
    pointer-events: none;
}

.partner-content {
    justify-content: start;
}

.partner-logo img {
    height: 2.7rem;
}

.yunlin img {
    height: 3.2rem;
}

.global-gclinic img {
    height: 2.2rem;
}

/* right-fixed */
.right-fixed-area {
    width: 60px;
    position: fixed;
    right: 0px;
    bottom: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.5s;
    z-index: 6;
}

.see {
    opacity: 1;
}

.go-to-signup,
.go-share,
.go-to-top {
    width: 100%;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
}

.go-to-signup img,
.go-share img,
.go-to-top img {
    width: 100%;
}

.go-to-signup:hover,
.go-share:hover,
.go-to-top:hover {
    opacity: 1;
}

/* footer */
footer {
    background: linear-gradient(60deg, #fe929f 0%, #fce5d1 100%);
    color: #e12e4b;
    padding: 30px;
    font-size: 0.8rem;
    position: relative;
    text-align: center;
}

footer hr {
    margin: 20px auto;
    border: none;
    height: 1px;
    width: 90%;
    max-width: 900px;
    background: #e12e4b;
}

/* speaker popup */
.speaker-popup {
    position: relative;
    display: none;
}

.speaker-popup.active {
    display: block;
}

.speaker-popup-bg,
.form-bg {
    width: 100vw;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #352a29c3;
}

.popup-content,
.form-content {
    background-color: #fff;
    max-width: 960px;
    width: 85vw;
    position: relative;
    border-radius: 10px;
    max-height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
}

.close-area {
    position: sticky;
    top: 0px;
    z-index: 5;
}

.close {
    position: absolute;
    font-size: 1.7rem;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #ececec;
    border-radius: 0 5px 0 0;
}

.close:hover {
    color: white;
    background-color: #ff8748;
}

.popup-top {
    display: flex;
    gap: 20px 60px;
    padding: 40px;
}

.speaker-name,
.speaker-title,
.academic,
.detail-title,
.intro,
.career {
    text-align: justify;
}

.speaker-popup-img {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    border: solid 1px #f8981d;
    padding: 0.5rem;
}

.line-orange {
    margin: 1rem 0;
    border: none;
    height: 1px;
    background: #f8981d;
}

.speaker-name {
    color: #ff8748;
}

/* signup_popup */
.signup-popup {
    display: none;
}

.signup-popup-content {
    background-color: #ffffff;
    width: 85vw;
    max-width: 500px;
    padding: 3rem 2rem;
    position: relative;
    border-radius: 0.7rem;
    font-size: 1.2rem;
}

.signup-popup-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #e5825c;
    font-size: 1.8rem;
}

/* latest-news-popup */
.news-popup {
    position: fixed;
    display: block;
    opacity: 0;
    transition: 0.5s;
    z-index: 999;
}

.news-popup-content {
    background-color: #fffaf6;
    max-width: 960px;
    width: 85vw;
    padding: 2rem 4rem 3rem 4rem;
    position: relative;
    border-radius: 1rem;
}

.news-popup-content h2 {
    font-size: 1.8rem;
}

.news-popup-content li {
    list-style-type: disc;
    font-size: 1.3rem;
    text-align: justify;
    margin-bottom: 1rem;
}

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

    .menu_list_pc,
    .header_social_area {
        display: none;
    }

    .menu_box {
        display: block;
    }

    .nav_bar {
        height: 55px;
        padding: 0 10px;
    }

    #OpenNav {
        font-size: 2rem;
        cursor: pointer;
    }

    .menu_list_mb {
        padding-top: 50px;
        width: 20%;
        min-height: 100vh;
        height: auto;

        background-color: #fff9ee;
        z-index: 9;
        text-align: center;
        display: block;
        position: fixed;
        right: -120%;
        transition: 0.5s;
        top: 0;
        box-shadow: -1px 0px 4px 1px rgba(0, 0, 0, 0.1);
    }

    .mb_item {
        color: #ff9661;
        padding: 20px 0;
        cursor: pointer;
        font-size: 1.2rem;
    }

    .menu_close_box {
        font-size: 2rem;
        position: absolute;
        right: 20px;
        top: 10px;
        cursor: pointer;
    }

    #OpenNav:hover,
    .menu_close_box:hover,
    .mb_item:hover {
        color: #F3553C;
    }

    .mb_header_social_area {
        display: flex;
        gap: 25px;
        justify-content: center;
    }
}

@media screen and (max-width:1250px) {
    .issue_box {
        gap: 50px;
    }

    .issue {
        width: calc((100% - 50px * 2)/ 3);
    }

    .speaker-img {
        width: 12rem;
        height: 12rem;
    }
}

@media screen and (max-width:1180px) {
    .soho-slider .item-img {
        height: 14rem;
    }
}

@media screen and (max-width:1000px) {
    .top-speaker {
        padding: 120px 40px 40px;
        margin: 200px auto 60px;
    }

    .top-speaker img {
        width: 15rem;
        height: 15rem;
        position: absolute;
        top: -120px;
        transform: translateX(-50%);
        left: 50%;
        border: 8px solid white;
    }

    .speaker {
        width: calc(100% / 3);
    }

    #section_6 {
        padding: 10vw 0;
    }

    .info-box {
        flex-direction: column-reverse;
    }

    .info {
        min-width: auto;
    }

    .map {
        height: 300px;
        flex: none;
    }
}

@media screen and (max-width:820px) {
    .menu_list_mb {
        width: 100vw;
    }

    #section_1 {
        height: 55vw;
    }

    .speaker {
        width: calc(100% / 2);
    }

    .speaker-img {
        width: 13rem;
        height: 13rem;
    }

    .popup-top {
        flex-direction: column;
        align-items: center;
    }

    .signup-half {
        flex-direction: column;
    }

    .ss-show.schedule {
        display: block;
    }

    .ss-show.award {
        display: block;
    }
}

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

    .soho-slider .item-img {
        height: 12rem;
    }

    .partner-logo {
        width: calc(42% - 2rem);
        margin: 2rem;
    }

    .partner-logo img {
        width: 100%;
        height: auto;
    }

    .thebetterage img {
        width: 110%;
    }

    .global-gclinic img {
        width: 70%;
    }
}

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

    .soho-slider .item-img {
        height: 10rem;
    }
}

@media screen and (max-width:540px) {
    .title {
        font-size: 1.5rem;
        margin: 0 auto 30px;
        padding: 3px 40px 5px;
    }

    .title::after {
        bottom: -15px;
        right: 27px;
        border-top: 20px solid #F8981D;
        border-right: 20px solid transparent;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .subhead {
        font-size: 1.1rem;
    }

    .text {
        font-size: 1rem;
    }

    #status img {
        width: 60px;
        height: 60px;
    }

    .ss-show {
        display: block;
    }

    .pc-show {
        display: none;
    }

    .kv-pc {
        display: none;
    }

    .kv-sm {
        display: block;
    }

    .kv-title {
        width: 100vw;
    }

    .logo {
        height: 30px;
        margin: 0 7px;
    }

    #section_1 {
        height: 140vw;
    }

    #section_2 .introduction_box {
        line-height: 1.75rem;
    }

    #section_3 {
        margin-top: 0;
    }

    .news_box {

        padding: 30px 20px;
        text-align: justify;
        background-color: rgba(255, 255, 255);
        border-radius: 10px;
        border: 2px solid #f8981d;
    }

    .goToWinnerList {
        margin: 20px auto 0;
        width: 100%;
        text-align: center;
    }

    .issue_box {
        flex-direction: column-reverse;
        margin: -15vw 0 0;
        align-items: center;
        gap: 0px;
    }

    .issue {
        width: 60%;
    }


    .issue-1 {
        top: -10vw;
        left: 10vw;
    }

    .issue-2 {
        top: 0;
        right: 20vw;
    }

    .issue-3 {
        top: 20vw;
        left: 20vw;
    }

    .top-speaker {
        padding: 100px 20px 30px;
        margin: 120px auto 30px;
    }

    .top-speaker img {
        width: 9rem;
        height: 9rem;
        top: -60px;
        border: 6px solid white;
    }

    .speaker h1,
    .top-speaker h1 {
        margin-bottom: 0;
    }

    .top-speaker p {
        font-size: 1rem;
        margin-top: 15px;
    }

    .speaker {
        padding: 0.5rem 0.4rem 3rem 0.4rem;
    }

    .speaker-img {
        width: 100%;
        height: auto;
        padding: 0.2rem;
    }

    .speaker h3 {
        font-size: 1.1rem;
    }

    .more-btn {
        font-size: 1rem;
        padding: 1px 20px 4px;
        margin: 20px auto 0;
    }

    .more-btn::after {
        top: -10px;
        border-bottom: 12px solid #ffb53c;
        border-left: 12px solid transparent;
    }

    .popup-top {
        padding: 30px 20px;
    }

    .speaker-popup-img {
        width: 13rem;
        height: 13rem;
    }

    #section_6 {
        padding: 20vw 0 10vw;
    }

    .schedule-chart {
        height: 35rem;
        overflow: hidden;
        padding: 1rem;
        padding-bottom: 3rem;
    }

    .schedule-chart table {
        font-size: 1rem;
    }

    .agenda-more-btn {
        font-size: 1rem;
        width: 4.5rem;
        height: 4.5rem;
        color: #fff;
        background-color: #f0a88f;
        display: flex;
        gap: 4px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        top: -2rem;
        cursor: pointer;
    }

    .agenda-more-btn img {
        width: 1.2rem;
    }

    .active {
        height: fit-content;
    }

    .download_pdf_btn {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        border: 3px solid white;
    }

    .info-content {
        padding: 30px 20px 20px;
    }

    .info-title {
        gap: 5px;
    }

    .info-location img,
    .info-transportation img {
        width: 20px;
    }

    .info-title.subtitle {
        font-size: 1.2rem;
    }

    .award_content {
        padding: 30px 20px;
    }

    .award-subtitle {
        margin-bottom: 30px;
    }

    .award-plan {
        margin-bottom: 2px;
    }

    .award-notice {
        padding-left: 20px;
    }

    .award-pic {
        justify-content: center;
    }

    .win-person {
        margin-left: 0;
    }

    .prize-title.gift {
        height: fit-content;
    }

    .prize-title.jackie.gift {
        height: fit-content;
    }

    .award-notice li {
        font-size: 1rem;
    }

    .prize-notice {
        margin: 20px;
        font-size: 1rem;
    }

    .name_block {
        display: block;
    }

    .prize {
        width: 60vw;
    }

    .prize-pic {
        width: 80%;
    }

    .section-title {
        margin: 30px 0 20px;
    }

    .signup_content {
        padding: 30px 20px;
    }

    .signup-title {
        font-size: 1.5rem;
        margin: 0 auto 30px;
    }

    #signup_form {
        gap: 25px;
        font-size: 1rem;
    }

    .signup-half {
        gap: 25px;
    }

    .signup-notice {
        padding: 10px 10px 15px;
    }

    .notice {
        padding: 10px;
        font-size: 0.9rem;
    }

    .agree {
        margin: 10px 0;
        font-size: 0.9rem;
    }

    .agree-input {
        font-size: 1rem;
    }

    .submit-btn {
        font-size: 1.2rem;
    }

    .soho-slider .item {
        border: solid 2px #f0a88f;
    }

    .soho-slider .item-img {
        height: 11rem;
    }

    .soho-slider .item-img::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        width: calc(100% - 20px);
        height: 100%;
        border: 2px solid #fff6e6;
        border-radius: calc(1rem - 8px);
    }

    .history-slider .item-img {
        border: solid 2px #f3553c;
    }

    .right-fixed-area {
        width: 45px;
        bottom: 0;
    }

    .go-to-signup,
    .go-share,
    .go-to-top {
        opacity: 1;
    }

    footer {
        padding: 20px;
    }

    .logo-content {
        padding-bottom: 2rem;
    }

    .logo-title {
        padding: 3px 25px;
        border: 2px solid #e12e4b;
    }

    #section_12 {
        text-align: left;
    }

    .partner-logo {
        width: calc(50% - 2rem);
        margin: 1rem;
    }

    .partner-logo img {
        width: 100%;
        height: auto;
    }

    .bt img {
        width: 75%;
    }

    .global-gclinic img {
        width: 70%;
    }

}