
.rental-section{
    color: #fff;
    padding: 40px 0;
    border-top: 1px solid  #D7D7D7;
border-bottom: 1px solid  #D7D7D7;
}
.rental-item{
    display: flex;
    align-items: flex-start;
color:  #424242;
font-size: 18px;
font-weight: 500;
line-height: 1.8;
letter-spacing: 0.06em;
margin-bottom: 40px;
}
.rental-type{
    width: 150px;
}
.rental-info{
    flex: 1;
}
.rental-info ol{
    list-style-type: decimal;
    padding-left: 1.8em;
}
.rental-box{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
}
.rental-col{
    width: 50%;
    margin-bottom: 40px;
    padding: 0 40px;
}
.multiple-select{
    display: flex;
    align-items: center;
    width: 100%;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: 0.08em;
    padding:0 12px;
    border-radius: 2px;
    border-radius: 2px;
    border: 1px solid rgba(245, 245, 245, 0.30);
    background: rgba(186, 186, 186, 0.30);
    outline: none;
    background-image: url(../images/select-1.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 12px;
    text-decoration: none;
    height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.select-box{
    position: relative;
}
.select-list{
    display: none;
    width: 100%;
  border-radius: 2px;
background: #FFF;
position: absolute;
z-index: 9;
top: 56px;
max-height: 184px;
overflow: auto;
padding: 4px 0;
}
.select-list.active{
    display: block;
}
.select-list li{
    display: block;
    padding: 8px;
    border-bottom: solid 1px #F2F2F2;
}
.select-list li label{
    display: flex;
    align-items: center;
}
.select-list li span{
    flex: 1;
    padding-left: 6px;
    color: #424242;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
letter-spacing: 0.08em;
}
.select-list li:last-child{
    border-bottom:none;
}
.subscribe-box{
   width: 100%;
   max-width: 864px;
   padding: 0 24px;
   margin: 0 auto;
   text-align: center;
}
.subscribe-group{
    width: 100%;
    display: flex;
    align-items: stretch;
}
.subscribe-group .e-news-input{
    flex: 1;
   border: 1px solid #D7D7D7;
}
#luxury-outlook,
#taiwan-housing-market {
    position: absolute;
    top: -150px;
}

.reserve-name{
    color: #B89745 !important;
}
.object-btn{
    display: none;
}
.obj-agent-tag {
    display: inline-flex;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 3px 6px 3px 8px;
    border-radius: 2px;
    background: #B89745;
    margin-right: 8px;
    text-decoration: none;
}
.obj-agent-tag img{
    width: 26px;
    margin-right: 4px;
}
.popup-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.popup-mask.active {
    display: flex;
}

.popup-body {
    max-width: 850px;
    border-radius: 40px;
    background: #FFF;
    padding: 40px;
    position: relative;
}
.popup-body.sm {
    width: 464px;
    max-width: 100%;
    border-radius: 4px;
    background: #FFF;
    padding: 28px 24px;
}

.popup-mask.active .popup-body {
    opacity: 0;
    animation: popup 0.5s forwards cubic-bezier(0.215, 0.610, 0.355, 1);
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-head {
    display: flex;
    justify-content: space-between;
}
.popup-head.fix .popup-close {
 width: 24px;
    height: 24px;
}
.popup-close {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../images/close-btn.svg);
    background-size: cover;
}

.popup-close:hover {
    opacity: 0.8;
}

.popup-head h3 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.03em;
    padding-bottom: 20px;
    position: relative;
}
.popup-head h5 {
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-bottom: 20px;
}
.popup-head h3::after {
    content: '';
    display: inline-block;
    width: 72px;
    height: 2px;
    background-color: #B89745;
    position: absolute;
    left: 0;
    bottom: 0;
}

.popup-content {
    width: 100%;
    overflow: auto;
    max-height: calc(100dvh - 300px);
    color: #4E4E4E;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    position: relative;
    padding-top: 12px;
}
.popup-content.fix {
    max-height: calc(100dvh - 300px);
    padding: 12px 0;
}
.popup-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.popup-content p {
    margin-bottom: 24px;
}
.popup-content.fix p {
    margin-bottom: 16px;
}
.popup-btn{
    display: flex;
    justify-content: center;
}
.popup-btn button{
    margin: 0 14px;
}
.area-type.fix {
    margin: 0 0 12px 0;
}

.area-type.fix li:first-child {
    padding: 0 12px 0 0;
}

.slider-container.fix {
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12px;
    margin-bottom: 0;
}

.value-inputs.fix {
    display: inline-flex;
    align-items: center;
}

.value-inputs.fix .value-group {
    flex: 1;
    width: auto;
}


.slider-group.fix {
    padding-top: 16px;
    padding-left: 0;
    max-width: 100%;
}

.value-inputs.fix .value-input.fix {
    padding-left: 110px;
}
.value-input.fix-1 {
    padding: 0 75px;
}
.no-event-title {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 62px;
}

.no-event-img-box {
    position: relative;
    margin-bottom: 40px;
    display: none;
    font-size: 0;
}

.power-by {
    display: block;
    padding: 8px 20px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    color: #646464;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.no-event-img-box.active {
    display: block;
}

.global-title {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 80px;
}

.p-text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 42px;
}

.key-box {
    width: 100%;
    max-width: 1050px;
    padding: 0 40px;
    margin: 0 auto;
}

.table-rwd {
    width: 100%;
    overflow-x: auto;
    margin-top: 56px;
}

.table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    min-width: 578px;
}

.table td {
    border-bottom: 1px solid #D7D7D7;
    padding: 28px 16px;
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    background-color: #F5F5F5;
}

.table.fix td,
.table.fix th {
    color: #fff;
    background-color: transparent;
}

.table tr:last-child td {
    border-bottom: none;
}

.table th {
    border-bottom: 1px solid #002349;
    padding: 16px 16px;
    color: #002349;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.table.fix th {
    border-bottom: 1px solid #D7D7D7;
}

.chart-box {
    display: flex;
    align-items: center;
    margin: 0 -30px;
}

.chart-col {
    width: 50%;
    padding: 0 30px;
}

.chart-col-full {
    width: 100%;
    padding: 0 30px;
}

.chart-box p {
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}

.chart-box p:last-child {
    margin-bottom: 0;
}

.chart-box p.fix {
    color: #fff;
}

.chart-note {
    color: #959595;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-top: 40px;
}

.chart-note.fix {
    color: #D7D7D7;
}

.note-ul {
    list-style-type: disc;
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    padding-left: 1.5em;
    margin-bottom: 0;
}

.info-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    overflow: hidden;
}

.info-list li {
    padding: 40px 0;
    border-bottom: solid 1px #D7D7D7;
    margin-bottom: -1px;
}

.info-list li:nth-child(odd) {
    width: calc(50% - 60px);
    margin-right: 60px;
}

.info-list li:nth-child(even) {
    width: calc(50% - 60px);
    margin-left: 60px;
}

.info-list-title {
    color: #B89745;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.info-list-date {
    color: #959595;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.info-list-text {
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.career-btn {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 40px;
}

.career-box {
    display: flex;
    padding-top: 24px;
}

.career-col {
    width: 50%;
    padding-right: 60px;
}

.career-title {
    color: #424242;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.career-list {
    display: block;
}

.career-list li {
    display: block;
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    padding-left: 24px;
    position: relative;
}

.career-list li::before {
    content: '';
    width: 3px;
    height: 3px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 9px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.radio-box {
    display: inline-block;
    position: relative;
    margin-right: 12px;
}

.radio-box input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.radio-tag {
    display: block;
    width: 100%;
    color: #959595;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background-color: rgba(163, 163, 163, 0.30);
}

.radio-box input:checked~.radio-tag {
    color: #fff;
    background-color: #B89745;
    border-color: #B89745;
}

.form-row {
    margin-bottom: 16px;
    display: flex;
}

.form-col {
    width: 50%;
}

.form-row .form-col:nth-child(1) {
    padding-right: 20px;
}

.form-row .form-col:nth-child(2) {
    padding-left: 20px;
}

.form-col-full {
    width: 100%;
}

.input-flex {
    display: flex;
    align-items: center;
}

.form-label {
    display: inline-block;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    width: 94px;
    padding: 0 12px 0 0;
}

.form-label span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
}

.input-box {
    flex: 1;
    position: relative;
}
.input-box .radio-box:last-child{
    margin-right: 0;
}
.input-style::placeholder {
    color: #959595;
}

.input-style {
    width: 100%;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    padding: 12px;
    border-radius: 2px;
    border-radius: 2px;
    border: 1px solid rgba(245, 245, 245, 0.30);
    background: rgba(186, 186, 186, 0.30);
    outline: none;
}

.input-style.error {
    border-color: red;
}

.input-style.error::placeholder {
    color: red;
}

select.input-style {
    background-image: url(../images/select-1.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 12px;
}

.form-btn {
    text-align: center;
    margin-top: 24px;
}
.event-item{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}
.event-image {
    width: 100%;
    max-width: 424px;
    aspect-ratio: 1/0.75;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    background-color: #fff;
    position: relative;
}
.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease-in-out;
}
.event-item:hover .event-image::after {
 background-color: rgba(0, 0, 0, 0.40);
}
.event-info{
    flex: 1;
    padding-left: 20px;
}
.event-name{
    color: #000;
font-size: 24px;
font-weight: 400;
line-height: 1.3;
letter-spacing: 0.1em;
margin-bottom: 12px;
height: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-text{
    display: block;
    list-style-type: none;
    padding: 0 !important;
    margin: 0;
}
.event-text li{
    display: flex;
    margin-bottom: 4px;
    align-items: center;
}
.event-text li img{
   width: 16px;
}
.event-text li span{
    display: block;
    flex: 1;
    color: #959595;
font-size: 17px;
font-weight: 400;
line-height: 1.3;
letter-spacing: 0.1em;
padding-left: 8px;
}
.event-img{
    width: 100%;
    margin-bottom: 40px;
}
.event-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.event-swiper{
    overflow: hidden;
    position: relative;
    margin-bottom: 160px;
}

.event-content {
    color: #424242;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.event-content p {
    margin-bottom: 40px;
}

.event-content ul {
    list-style-type: disc;
    padding-left: 1.6em;
    margin-top: 20px;
}
.event-btn{
    margin-top: 60px;
}
.event-card {
    background-color: #fff;
    padding: 24px;
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.event-card span {
    display: inline-block;
    margin-right: 40px;
}

.event-card span i {
    color: #A7A7A7;
    display: inline-block;
}

.event-card hr {
    border: none;
    border-bottom: solid 1px #D7D7D7;
    margin: 24px 0;
}

.form-section {
    padding: 80px 0;
    background-color: #002349;
}

.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-section-date {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -12px;
}

.news-list li {
    width: 50%;
    margin-bottom: 12px;
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    padding-left: 24px;
    position: relative;
}

.news-list li::before {
    content: '';
    width: 3px;
    height: 3px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translateY(-50%);
}

.news-list li span {
    display: inline-block;
    white-space: nowrap;
    padding-right: 12px;
    padding-left: 8px;
}

.news-list li a {
    display: inline-block;
    color: #000;
    height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.news-list li a:hover {
    color: #B89745;
}

.head-right,
.head-left {
    display: inline-flex;
    align-items: center;
    position: relative;
}

#customLabel {
    display: inline-flex;
    height: 48px;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    cursor: pointer;
    background-image: url(../images/tri.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 12px;
    padding-right: 20px;
    padding-left: 16px;
}

#monthPicker {
    position: absolute;
    opacity: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.head-right .obj-share-btn {
    border-top: none;
    border-bottom: none;
    border-right: none;
    height: 48px;
    margin-right: -8px;
    border-radius: 0;
}

.head-right .btn {
    height: 48px;
    border-radius: 0;
    border-top: none;
    border-bottom: none;
}

.e-news-box-right .btn {
    border-radius: 0;
    border-top: none;
    border-bottom: none;
}

.news-date {
    color: #959595;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-top: 12px;
}

.news-line {
    border-top: solid 1px #d7d7d7;
    margin: 40px 0;
}

.news-line.fix {
    margin: 80px 0;
}

.e-news-link {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.18);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: background-color 0.5s;
}

.e-news-link:hover {
    background-color: rgba(0, 0, 0, 0.46);
}

.e-news-link span {
    display: block;
    height: 40px;
    color: #FFF;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e-news-link i {
    display: block;
    color: #F5F5F5;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.back-box .back-btn {
    display: inline-block;
    color: #fff;
    background-image: url(../images/back-1.svg);
    margin-bottom: 0;

}

.history-section-5 {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: #1F1F1F;
}

.history-section-5-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}

.history-section-5-left {
    width: 50%;
    padding-right: 80px;
}

.history-section-5-right {
    width: 50%;
}

.history-section-4 {
    background-color: #fff;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
    scroll-margin-top: 140px;
}

.ideal-swiper-out {
    position: relative;
}

.ideal-swiper {
    overflow: hidden;
    position: relative;
}

.ideal-swiper .swiper-slide {
    position: relative;
}

.ideal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 24px;
    z-index: 3;
}

.ideal-type {
    color: #E3D3AB;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.ideal-text {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.history-section-3 {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 120px 0;
   scroll-margin-top: 80px;
}

.history-section-3-box {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.history-title {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.history-title.fix {
    text-align: left;
}

.history-text {
    color: #2B2B2B;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.history-text.fix {
    text-align: left;
    margin-bottom: 0;
}

.history-section-2 {
    background-color: #002349;
    position: sticky;
    top: 0;
   scroll-margin-top: 100px;
}

.history-section-2-box {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.history-section-2-left {
    width: 40%;
    padding: 40px 80px 40px 40px;
}

.history-section-2-right {
    width: 60%;
    font-size: 0;
}

.history-section-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.history-section-text {
    color: #D7D7D7;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.history-years-link {
    display: block;
    padding: 80px 0;
    background-image: url(../images/year-line.svg);
    background-repeat: no-repeat;
    background-position: center left 15px;
}

.history-years-link li {
    display: block;
    margin-bottom: 60px;
}

.history-years-link li:last-child {
    margin-bottom: 0;
}

.history-years-link li a {
    display: flex;
    align-items: center;
    height: 40px;
    color: #959595;
    font-size: 16px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: 0.02em;
    padding-left: 42px;
    text-decoration: none;
    background-image: url(../images/dot-2.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 30px;
}

.history-years-link li a.active {
    color: #002349;
    font-size: 32px;
    background-image: url(../images/dot-1.svg);
}

.history-section {
    background-color: #EEEDE8;
    padding: 40px 0;
}

.history-section-1 {
    background-color: #EEEDE8;
    padding: 40px 0 160px;
   scroll-margin-top: 140px;
}

.history-row {
    display: flex;
    align-items: center;
}

.history-years {
    width: 192px;
}

.history-info {
    width: calc(100% - 192px);
    position: relative;
}

.history-card {
    display: flex;
}

.history-card-left {
    width: 50%;
    padding-right: 20px;
}

.history-card-right {
    width: 50%;
    padding-left: 20px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.history-card-year {
    color: #002349;
    font-size: 100px;
    font-weight: 100;
    line-height: 0.8;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0;
}

.swiper-slide-active .history-card-year {
    opacity: 0;
    animation: slideInUp 1s forwards 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.history-card-title {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0;
}

.swiper-slide-active .history-card-title {
    opacity: 0;
    animation: slideInUp 1s forwards 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.history-card-text {
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    opacity: 0;
}

.swiper-slide-active .history-card-text {
    opacity: 0;
    animation: slideInUp 1s forwards 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.history-num {
    display: flex;
}

.swiper-slide-active .history-num {
    opacity: 0;
    animation: slideInUp 1s forwards 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.history-num li {
    width: 33.3%;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.history-num li span {
    display: block;
    margin-bottom: 4px;
    color: #A7A7A7;
}

.his-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.his-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-box {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
}

.input-row {
    display: flex;
    margin: 24px -4px 0 -4px;
}

.input-col {
    width: 33.3%;
    padding: 0 4px;
    margin-bottom: 8px;
    position: relative;
}

.form-input {
    height: 36px;
    padding: 8px 12px;
    border-radius: 2px;
    border: 1px solid #D7D7D7;
    background-color: #FFF;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    width: 100%;
}

.form-input::placeholder {
    color: #B6B6B6;
}

.form-input:focus {
    border: 1px solid #000;
    outline: none;
}

textarea.form-input {
    height: auto;
}

.map-iframe {
    width: 100%;
    height: 0;
    padding-top: 62%;
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.e-news-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.e-news-box-right {
    display: inline-flex;
    align-items: center;
}

.e-news-label {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 20px;
    border-left: solid 1px #D7D7D7;
    border-right: solid 1px #D7D7D7;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.e-news-banner {
    padding: 0;
    overflow: hidden;
}

.e-news-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.e-news-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-box {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.e-news-head {
    padding: 40px 0;
    margin-top: 100px;
}

.e-news-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.e-news-title h1 {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin: 0;
}

.e-news-select {
    color: #000;
    background-image: url(../images/tri.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 12px;
    padding: 8px 36px 8px 20px;
    width: auto;
}

.team-banner {
    position: relative;
    background-color: #002349;
    padding-top: 100px;
}

.team-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.team-left {
    width: calc(100% - 542px);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.motto-box {
    display: flex;
    flex-direction: column;
    max-width: 658px;
}

.symbol {
    width: 28px;
    margin-bottom: 24px;
}

.symbol-1 {
    width: 28px;
    margin-left: auto;
}

.symbol.fix {
    display: inline-block;
    margin-bottom: 32px;
}

.motto {
    color: #FFF;
    font-family: "Noto Serif TC";
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.resume {
    display: block;
    margin-bottom: 40px;
}

.resume li {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.period {
    display: inline-block;
    min-width: 106px;
    margin-right: 16px;
}

.position {
    display: inline-block;
    min-width: 190px;
    margin-right: 16px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact-info li img {
    width: 24px;
    margin-right: 8px;
}

.contact-info li a {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.team-right {
    width: 542px;
    height: 606px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.salesman-card {
    width: 100%;
    padding: 12px 20px 20px 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(4deg, rgba(0, 0, 0, 0.40) 31.08%, rgba(0, 0, 0, 0.00) 75.18%);
}

.salesman-card-name {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.salesman-card-name span {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-left: 12px;
}

.salesman-card-text {
    color: #F5F5F5;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
}

.team-col {
    width: 33.3%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.salesman-img {
    background-size: cover;
    width: 100%;
    height: 0;
    padding-top: 125%;
    position: relative;
}

.salesman-info {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 36px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.salesman-img::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 82.96%);
    opacity: 1;
    transition: opacity 0.5s;
}

.salesman-img:hover::after {
    opacity: 0.8;
}

.salesman-name {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.salesman-service {
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.salesman-contact {
    padding-top: 16px;
}

.salesman-contact a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.salesman-contact a img {
    width: 24px;
    margin-right: 8px;
}

.dis-banner {
    margin-top: 100px;
    background-color: #FFF;
    padding: 80px 0;
}

.dis-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dis-head .back-btn {
    display: inline-block;
    margin-bottom: 0;
}

.dis-title {
    color: #000;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.dus-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.dis-box {
    width: 100%;
    padding: 0 24px;
    max-width: 1168px;
    margin: 0 auto;
}

.dis-box p {
    color: #424242;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-align: justify;
}

.dis-box hr {
    height: 0;
    border-bottom: solid 1px #D7D7D7;
    margin: 40px 0;
}

.dis-box h3 {
    color: #424242;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.gray-container {
    background-color: #D7D7D7;
}

.gray-container-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 78px);
}

.gray-container-bottom {
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #B6B6B6;
}

.gray-container-bottom a {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    padding-right: 24px;
    background-image: url(../images/home.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 24px;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.5s;
}

.gray-container-bottom a:hover {
    opacity: 0.6;
}

.logo-404 {
    width: 332px;
    margin-bottom: 80px;
}

.gray-container-title {
    color: #2B2B2B;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.gray-container-text {
    color: #2B2B2B;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.count-down {
    color: #2B2B2B;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.count-bar {
    width: 150px;
    height: 4px;
    background-color: #fff;
    position: relative;
}

.count-bar span {
    display: inline-block;
    width: 0;
    background-color: #A7A7A7;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.count-bar.active span {
    animation: count 5s forwards linear;
}

@keyframes count {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.input-label {
    color: #424242;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
}

.form-control {
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    border-radius: 4px;
    border: 1px solid #A7A7A7;
    height: 56px;
    padding: 0 16px;
}

.copy-url {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/copy.svg);
    background-size: cover;
    position: absolute;
    top: 16px;
    right: 16px;
}

.copy-url:hover {
    background-image: url(../images/copy-1.svg);
}

.famous-card {
    background-color: #F5F5F5;
    padding: 40px 0;
}

.famous-card-title {
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: solid 1px #D7D7D7;
}

.famous-card-title img {
    width: 24px;
}

.famous-card-title span {
    display: inline-block;
    padding-left: 16px;
}

.famous-card-row {
    display: flex;
    flex-wrap: wrap;
    padding: 24px 0 16px;
    margin-bottom: 24px;
    border-bottom: solid 1px #D7D7D7;
}

.famous-card-col {
    width: 33.3%;
    margin-bottom: 8px;
    display: flex;
}

.famous-card-col.fix {
    width: 100%;
    margin-bottom: 0;
}

.famous-card-label {
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    width: 104px;
}

.famous-card-text {
    padding-left: 8px;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    width: calc(100% - 104px);
}

.detail-section {
    padding: 80px 0;
}

.detail-section.fix {
    background-color: #f5f5f5;
}

.detail-content {
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.detail-content>h2,
.detail-content>h3 {
    color: #424242;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    display: block;
    width: 100%;
    max-width: 728px;
    margin: 0 auto 20px auto;
}

.detail-content>p {
    display: block;
    width: 100%;
    max-width: 728px;
    margin: 0 auto 64px auto;
    text-align: justify;
}

.detail-content a {
    color: #c10484;
}

.detail-content>img {
    display: block;
    width: 100%;
    margin-bottom: 64px;
}

.img-note {
    color: #A7A7A7;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-top: -56px;
    margin-bottom: 64px;
}

.famous-list {
    padding: 40px 0 80px;
    background-color: #F5F5F5;
}

.home-banner {
    position: relative;
}

.famous-sub-title {
    color: #424242;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    position: relative;
}

.famous-sub-title span {
    position: absolute;
    top: -188px;
}

.tour-box {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.tour-sub-title {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.tour-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.tour-tag {
    display: flex;
    flex-wrap: wrap;
}

.tour-tag span {
    display: inline-block;
    padding: 8px;
    border-radius: 2px;
    background-color: rgba(111, 111, 111, 0.30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-right: 12px;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.tour-text {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

.famous-head {
    border-bottom: 1px solid #D7D7D7;
    position: sticky;
    top: 100px;
    background-color: #fff;
    z-index: 11;
}

.famous-search {
    width: 280px;
    border-left: 1px solid #D7D7D7;
    display: flex;
    align-items: center;
}

.famous-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.famous-area-box {
    flex: 1;
}

.famous-area-box::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.famous-area {
    display: inline-flex;
}

.famous-area li {
    display: inline-block;
}

.famous-area li a {
    display: block;
    color: #959595;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    padding: 16px 8px;
    text-decoration: none;
    position: relative;
}

.famous-area li a.active,
.famous-area li a:hover {
    color: #000;
}

.famous-area li a.active::after,
.famous-area li a:hover::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.zoom-tab {
    display: inline-flex;
}

.zoom-tab li {
    display: inline-block;
}

.zoom-tab li a {
    display: block;
    padding: 16px 8px;
    border-bottom: solid 1px transparent;
    color: #959595;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.zoom-tab li a.active {
    color: #000;
    border-bottom: solid 1px #000;
}

.close {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../images/close-1.svg);
    background-size: cover;
}

.video-box {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    max-height: calc(100dvh - 98px);
    position: absolute;
    top: 0;
    left: 0;
}

.zoom-swiper {
    position: relative;
    overflow: visible;
}

.zoom-image {
    position: relative;
    width: 100%;
    height: calc(100dvh - 98px);
    overflow: hidden;
}

.zoom-image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
}

.zoom-table {
    display: none;
}

.zoom-table.active {
    display: block;
}

.modal-mask {
    position: fixed;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 9999;
    display: none;
    top: 0;
    left: 0;
}

.modal-mask.active {
    display: block;
}

.modal-box {
    width: 100%;
    height: 100svh;
    background-color: #fff;
}
.modal-body{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.modal-mask.active .modal-box {
    opacity: 0;
    animation: boxDw 0.3s forwards ease-in-out;
}

@keyframes boxDw {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-head {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.obj-base-function {
    display: inline-flex;
    position: absolute;
    top: 24px;
    right: 24px;
    margin: 0 -6px;
    z-index: 9;
}

.obj-base-function li {
    padding: 0 6px;
}

.obj-base-function li a {
    display: flex;
    height: 42px;
    padding: 0 8px;
    align-items: center;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.obj-base-function li a img {
    width: 24px;
    margin-right: 8px;
}

.map-box {
    padding-top: 40px;
    display: flex;
}

.map-box-left {
    width: 50%;
    height: 0;
    padding-top: 30%;
    position: relative;
}

.map-box-left.fix {
    width: 100%;
}

.map-box-left iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-box-right {
    width: 50%;
    padding-left: 80px;
}

.map-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #D7D7D7;
    padding: 12px 0;
}

.map-box-right .map-info-item:last-child {
    border-bottom: none;
}

.map-info-item {
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.map-info-item span:nth-child(1) {
    color: #000;
    display: inline-block;
    padding-right: 8px;
}

.map-info-item span:nth-child(2) {
    display: inline-flex;
    align-items: center;
}

.map-info-item i {
    display: inline-block;
    text-align: right;
}

.map-info-item i img {
    width: 24px;
}

.map-info-item i:nth-child(1) {
    width: auto;
    padding-right: 8px;
}

.map-info-item i:nth-child(2) {
    min-width: 78px;
}

.map-info-item i:nth-child(3) {
    min-width: 88px;
}

.map-note {
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: right;
    margin-top: 48px;
}

.det-box {
    display: block;
    height: auto;
    padding: 40px 0;
}

.det-box.fix {
    padding: 20px 0 0 0;
}

.public-box {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
}

.public-box span {
    display: inline-flex;
    height: 36px;
    align-items: center;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-right: 8px;
    border-right: solid 1px #D7D7D7;
}

.public-box span:last-child {
    border-right: none;
}

.public-box span img {
    width: 24px;
    margin-right: 8px;
}

.open-box {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.open-box::after {
    content: '';
    display: block;
    width: 100%;
    height: 46px;
    background: linear-gradient(0deg, #F5F5F5 0%, rgba(245, 245, 245, 0.00) 120.65%);
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 100%;
}

.det-section.fix .open-box::after {
    background: linear-gradient(0deg, #FFF 0%, rgba(245, 245, 245, 0.00) 120.65%);
}

.det-box.active .open-box::after {
    display: none;
}

.open-box a {
    display: inline-flex;
    align-items: center;
    color: #424242;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.open-box a:hover {
    color: #959595;
}

.open-box a::before {
    content: '展開看更多內容';
}

.open-box a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/info-btn.svg);
    background-size: cover;
    margin-left: 4px;
}

.open-box a:hover::after {
    background-image: url(../images/info-btn-2.svg);
}

.det-box.active .open-box a::before {
    content: '收合內容';
}

.det-box.active .open-box a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/info-btn-1.svg);
    background-size: cover;
    margin-left: 4px;
}

.det-box.active .open-box a:hover::after {
    background-image: url(../images/info-btn-4.svg);
}

.det-content {
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.det-box.active .det-content {
    max-height: 200vh;
}

.det-content p {
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.1em;
}

.det-box.active .det-content p {
    display: block;
    max-height: none;
}

.det-content ul {
    list-style-type: disc;
    padding-left: 1.5em;
    color: #424242;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.1em;
}

.det-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.det-section.fix {
    padding: 80px 0 0 0;
    background-color: #FFF;
}

.rec-section {
    padding: 80px 0;
    background-color: #D7D7D7;
    position: relative;
}

.rec-section.fix-1 {
    background-color: #F5F5F5;
}

.rec-section.fix-2 {
    background-color: #002349;
}

.rec-swiper-out {
    position: relative;
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 0 40px;
}

.rec-swiper {
    position: relative;
    overflow: hidden;
}

.rec-swiper-out:hover .button-next,
.rec-swiper-out:hover .button-prev {
    visibility: visible;
}

.rec-swiper-out .button-next,
.rec-swiper-out .button-prev {
    margin-top: -43px;
}

.rec-swiper .banner-pagination-box {
    visibility: hidden;
}

.back-btn {
    display: none;
}

.back-btn {
    display: none;
    padding-left: 24px;
    margin-bottom: 24px;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    background-image: url(../images/back.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
    text-decoration: none;
}

.page-function .back-btn {
    display: inline-block;
    color: #fff;
    background-image: url(../images/back-1.svg);
}

.page-function {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    position: absolute;
    top: 156px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page-function .breadcrumbs li,
.page-function .breadcrumbs li a {
    color: #fff;
}

.team-left .breadcrumbs li a,
.team-left .breadcrumbs li {
    color: #B6B6B6;
}

.team-left .breadcrumbs {
    display: block;
    margin-top: 20px;
}

.obj-intro {
    padding-bottom: 80px;
}

.obj-base-info-box {
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.obj-base-info-box.active {
    max-height: 200vh;
}

.info-btn {
    cursor: pointer;
    background-image: url(../images/info-btn.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 12px;
}

.info-btn:hover {
    background-image: url(../images/info-btn-2.svg);
}

.base-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
}

.book {
    background-image: url(../images/base-icon-1.svg);
}

.info-btn:hover .book {
    background-image: url(../images/base-icon-1-1.svg);
}

.pen {
    background-image: url(../images/base-icon-4.svg);
}

.info-btn:hover .pen {
    background-image: url(../images/base-icon-4-1.svg);
}

.build {
    background-image: url(../images/base-icon-2.svg);
}

.info-btn:hover .build {
    background-image: url(../images/base-icon-2-1.svg);
}

.car {
    background-image: url(../images/base-icon-3.svg);
}

.info-btn:hover .car {
    background-image: url(../images/base-icon-3-1.svg);
}

.info-btn:hover span {
    color: #959595;
}

.info-btn.active {
    background-image: url(../images/info-btn-1.svg);
}

.info-btn.active:hover {
    background-image: url(../images/info-btn-4.svg);
}

.obj-base-title {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #D7D7D7;
}

.obj-base-title img {
    width: 24px;
}

.obj-base-title span {
    color: #2B2B2B;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    display: inline-block;
    padding-left: 16px;
}

.obj-row {
    display: flex;
    flex-wrap: wrap;
    padding: 24px 0 8px;
    border-bottom: solid 1px #D7D7D7;
}

.obj-row.fix {
    border-bottom: none;
}

.obj-col {
    width: 50%;
    margin-bottom: 16px;
}

.obj-col-4 {
    width: 25%;
    margin-bottom: 16px;
}

.obj-label {
    display: block;
    margin-bottom: 4px;
    color: #A7A7A7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.obj-text {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    max-width: 220px;
}

.obj-section {
    padding: 80px 0;
}

.obj-base-box {
    display: flex;
}

.obj-base-left {
    width: 40%;
    padding-right: 40px;
}

.obj-base-right {
    width: 60%;
    position: relative;
}

.obj-base-swiper {
    position: relative;
    overflow: hidden;
}

.obj-base-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
}

.obj-base-image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
}

.obj-base-image-info {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) -27.02%, rgba(0, 0, 0, 0.00) 88.14%);
    padding: 8px 20px;
    padding-top: calc( 50% - 16px );
    text-align: right;
    color: #FFF;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.6;
    letter-spacing: 0.08em;
}
.banner-pagination-box .pagination-num{
   font-weight: 500 !important;
}
.organizer-contact-flex a {
    max-width: 24px;
    height: 24px;
    overflow: hidden;
    transition: max-width 0.3s;
}

.organizer-contact-flex a.active {
    max-width: 100vw;
    height: auto;
}

.organizer-address {
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    margin-right: 16px;
    background-image: url(../images/address.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
}

.organizer-phone {
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    margin-right: 16px;
    background-image: url(../images/phone.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
}

.organizer-phone.fix {
    margin-right: 0;
}

.organizer-mail {
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    background-image: url(../images/mail.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
}

.organizer-section {
    padding: 28px 0;
    background-color: #F5F5F5;
    position: sticky;
    top: 100px;
    z-index: 96;
}

.organizer-box {
    display: flex;
    align-items: center;
}

.organizer-face {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
}

.organizer-info {
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.organizer-info a {
    color: #000;
    text-decoration: none;
}

.organizer-contact.fix {
    margin-left: auto;
    margin-right: 40px;
}

.organizer-contact-flex {
    display: flex;
}

.organizer-apps {
    display: inline-flex;
    margin-left: 32px;
}

.organizer-apps li {
    display: inline-block;
    margin-left: 8px;
    height: 24px;
}

.organizer-apps li a {
    display: inline-block;
    height: 24px;
}

.organizer-apps li a img {
    width: 24px;
}

.obj-head {
    padding: 40px 0;
    border-bottom: 1px solid #D7D7D7;
}

.obj-name {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.obj-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 97;
}

.obj-tag-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.obj-tag {
    display: inline-block;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    border-radius: 2px;
    background: rgba(185, 185, 185, 0.30);
    text-decoration: none;
    margin-right: 8px;
    padding: 6px;
}

.obj-tag::before {
    content: '#';
    color: #959595;
    margin-right: 8px;
}

.obj-function-box {
    display: inline-flex;
    align-items: center;
}

.obj-function-box li {
    position: relative;
}

.obj-function-box li.active .obj-share-btn {
    background-color: #424242;
    color: #D7D7D7;
}

.obj-function-box li.active .obj-share-btn::before {
    background-image: url(../images/share-btn-1.svg);
}

.share-box {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 9;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
    padding: 8px;
}

.obj-function-box li.active .share-box {
    display: inline-flex;
}

.share-box::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    position: absolute;
    top: -8px;
    left: 0;
    background-image: url(../images/tri.png);
    background-size: cover;
}

.share-box li {
    display: inline-block;
    width: 40px;

}

.share-box li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #959595;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.share-box li a img {
    width: 24px;
}

.obj-favorites-btn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: 48px;
    border-radius: 2px;
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding: 0 12px;
    border: solid 1px #D7D7D7;
    box-sizing: border-box;
    text-decoration: none;
    align-self: auto;
    margin-right: 12px;
}

.obj-favorites-btn::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/favorites-btn.svg);
    background-size: cover;
    margin-right: 4px;
}

.obj-favorites-btn:hover::before {
    background-image: url(../images/favorites-btn-1.svg);
}

.obj-share-btn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: 48px;
    border-radius: 2px;
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding: 0 12px;
    border: solid 1px #D7D7D7;
    box-sizing: border-box;
    text-decoration: none;
    align-self: auto;
    margin-right: 12px;
}

.obj-share-btn::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/share-btn.svg);
    background-size: cover;
    margin-right: 4px;
}

.obj-share-btn:hover,
.obj-favorites-btn:hover {
    background-color: #424242;
    color: #D7D7D7;
}

.obj-share-btn:hover::before {
    background-image: url(../images/share-btn-1.svg);
}

.obj-swiper {
    position: relative;
    overflow: hidden;
    font-size: 0;
}

.obj-swiper.fix {
    overflow: visible;
}

.obj-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.obj-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb-condition-title,
.mb-condition-tag-box {
    display: none;
}

.no-condition {
    display: inline-block;
    margin-bottom: 8px;
}

.total-box {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.condition-box {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.clear-btn {
    display: inline-block;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    white-space: nowrap;
}

.clear-btn:hover {
    color: #A7A7A7;
}

.condition-tag-box {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 24px;
    color: #959595;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.condition-tag {
    color: #2B2B2B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding: 0 6px 0 30px;
    border: solid 1px #000;
    border-radius: 2px;
    margin-right: 8px;
    margin-bottom: 8px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    background-image: url(../images/close.svg);
    background-repeat: no-repeat;
    background-position: center left 6px;
    background-size: 16px;
    text-decoration: none;
}

.condition-tag:hover {
    background-color: rgba(111, 111, 111, 0.30);
}

.object-back-btn {
    display: block;
    background-image: url(../images/back.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-left: 24px;
    color: #2B2B2B;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.object-back-btn:hover {
    color: #2B2B2B;
}

.search-input,
.e-news-input {
    border: none;
    padding-left: 20px;
    color: #000;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.search-input:focus,
.e-news-input:focus {
    outline: none;
}

.search-input::placeholder,
.e-news-input::placeholder {
    color: #B6B6B6;
}

.object-search-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.object-requirement {
    display: inline-flex;
}

.object-requirement>li {
    border-right: solid 1px #D7D7D7;
}

.object-requirement>li>a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    height: 58px;
    align-items: center;
    text-decoration: none;
    padding: 0 16px;
    position: relative;
}

.object-requirement>li>a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/tri-b.svg);
    background-size: 12px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: 8px;
    transform-origin: center center;
    transition: all 0.3s;
}

.object-requirement>li>a.active::after {
    transform: rotate(180deg);
}

.object-box-right {
    display: inline-flex;
    align-items: center;
    position: relative;

}

.object-box-right.fix {
    margin-left: auto;
}

.object-type {
    display: inline-flex;
}

.object-type li {
    display: inline-block;
}

.object-type li a {
    display: flex;
    align-items: center;
    padding: 0 8px;
    height: 59px;
    color: #959595;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.object-type li a:hover,
.object-type li a.active {
    color: #000;
}

.object-type li a:hover::after,
.object-type li a.active::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.object-list {
    padding: 80px 0;
}


.object-list-row {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
}

.object-list-col {
    width: 33.3%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.breadcrumbs {
    display: inline-block;
}

.breadcrumbs.fix {
    margin-bottom: 16px;
}

.object-head {
    display: flex;
    justify-content: space-between;
}

.breadcrumbs li {
    display: inline-block;
    padding-right: 8px;
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.breadcrumbs.fix li {
    color: #B6B6B6;
}

.breadcrumbs li::after {
    content: '⦁';
    margin-left: 8px;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs li a {
    color: #646464;
    text-decoration: none;
}

.breadcrumbs.fix li a {
    color: #B6B6B6;
}

.back-container {
    width: 100%;
    margin-bottom: 32px;
}

.back-container a {
    display: inline-block;
    padding-left: 24px;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    background-image: url(../images/back.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
    text-decoration: none;
}

.object-title {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.object-title h2,
.object-title h1 {
    color: #000;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    margin-top: 0;
}

.object-title span {
    font-family: Poppins;
    font-weight: 200;
    display: inline-block;
    padding-left: 24px;
    margin-left: 24px;
    border-left: solid 1px #D7D7D7;
    color: #A7A7A7;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.object-banner {
    margin-top: 100px;
    background-color: #F5F5F5;
    padding: 80px 0;
}

.object-banner.fix {
    background-color: #FFF;
}

.object-requirement-card-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.object-requirement-card-col {
    width: auto;
    min-width: 16.6%;
    padding: 0 6px;
    margin-bottom: 12px;
}

.object-requirement-card-col-4 {
    width: auto;
    min-width: 33.3%;
    padding: 0 10px;
    margin-bottom: 12px;
}

.container-box-right {
    position: relative;
}

.object-requirement-card {
    width: 666px;
    padding: 16px 28px 4px;
    border-radius: 4px;
    background: rgba(231, 231, 231, 0.90);
    box-shadow: 0px 6px 10.4px 0px rgba(94, 94, 94, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    visibility: hidden;
    z-index: 9;
}

.object-requirement-card.active {
    visibility: visible;
    opacity: 0;
    animation: cardUp 0.3s forwards ease-in-out;
}

@keyframes cardUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.object-requirement-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.object-card-close {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/close-1.svg);
    background-size: cover;
}

.object-search-box {
    border-bottom: 1px solid #D7D7D7;
    background-color: #fff;
    position: sticky;
    top: 100px;
    z-index: 11;
}

.filter-btn {
    display: none;
}

.banner-mb-title {
    display: none;
}

@media (max-width:1264px) {
    .object-btn{
        padding-top: 40px;
    display: block;
    text-align: center;
}
.search-close{
    display: inline-block;
    height: 16px;
}
    #luxury-outlook,
    #taiwan-housing-market {
        position: absolute;
        top: -72px;
    }

    .famous-head {
        top: 72px;
    }

    .object-search-box {
        position: static;
    }

    .famous-sub-title span {
        position: absolute;
        top: -162px;
    }

    .symbol {
        width: 26px;
        margin-bottom: 24px;
    }

    .motto {
        max-width: none;
        color: #FFF;
        font-size: 18px;
        margin-bottom: 24px;
    }

    .resume {
        margin-bottom: 28px;
    }

    .resume li {
        font-size: 14px;
    }

    .period {
        min-width: 92px;
        margin-right: 8px;
    }

    .position {
        min-width: 162px;
        margin-right: 8px;
    }

    .contact-info li a {
        font-size: 14px;
        line-height: 1.6;
    }

    .famous-search {
        width: 200px;
        padding-left: 8px;
    }

    .organizer-section {
        top: 72px;
    }

    .object-requirement-card-row {
        margin: 0 -4px;
    }

    .object-requirement-card-col,
    .object-requirement-card-col-4 {
        width: auto;
        min-width: 25%;
        padding: 0 4px;
    }

    .object-box-right {
        display: inline-flex;
        align-items: center;
        position: static;
        z-index: none;
    }

    .object-requirement {
        width: 100%;
        height: 100dvh;
        max-width: none;
        position: fixed;
        left: 0;
        bottom: auto;
        top: 0;
        transform: none;
        z-index: 9999;
        background-color: #fff;
        padding-bottom: 70px;
        overflow: auto;
        display: none;
    }

    .object-requirement.active {
        display: block;
        opacity: 0;
        animation: boxUp 0.3s forwards ease-in-out;
    }

    @keyframes boxUp {
        from {
            opacity: 0;
            top: 100px;
        }

        to {
            opacity: 1;
            top: 0;
        }
    }

    .filter-btn {
        display: inline-block;
        padding-right: 20px;
        background-image: url(../images/filter.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 12px;
        color: #424242;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: 1.12px;
        text-decoration: none;
    }

    .object-search-flex {
        flex-direction: column;
    }

    .object-requirement {
        display: none;
    }

    .object-type {
        display: inline-flex;
        border-bottom: 1px solid #D7D7D7;
        width: calc(100% + 80px);
        margin-left: -40px;
        padding: 0 40px;
    }

    .search-div {
        width: 100%;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .search-input {
        padding-left: 8px;
        width: 200px;
    }


    .object-requirement>li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ECECEC;
    }

    .object-requirement>li>a {
        color: #424242;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: 0.1em;
        display: flex;
        height: 56px;
        align-items: center;
        text-decoration: none;
        padding: 0 24px;
        background-image: url(../images/plus.svg);
        background-repeat: no-repeat;
        background-position: center right 24px;
        background-size: 24px;
    }

    .object-requirement>li>a.active {
        color: #424242;
        background-image: url(../images/minus.svg);
    }

    .object-requirement-card {
        width: 100%;
        padding: 16px 24px 4px;
        border-radius: 0;
        background: rgba(231, 231, 231, 0.90);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        position: static;
        visibility: visible;
        display: none;
    }

    .object-requirement-card.active {
        opacity: 1;
        display: block;
        animation: none;
    }

    .object-banner {
        margin-top: 72px;
    }

    .banner-mb-title {
        padding: 0 24px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0.08em;
    }

    .banner-mb-title.fix {
        border-bottom: 1px solid #ECECEC;
    }

    .mb-condition-title {
        display: block;
        padding: 24px 24px 8px 24px;
        color: #959595;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        letter-spacing: 0.08em;
    }

    .mb-condition-tag-box {
        display: flex;
        flex-wrap: wrap;
        padding: 0 24px;
        margin-bottom: 16px;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0.08em;
    }

    .object-requirement>li>a::after {
        display: none;
    }

    .dis-banner {
        margin-top: 72px;
    }

    .team-banner {
        padding-top: 72px;
    }

    .e-news-head {
        margin-top: 72px;
    }
}

@media (max-width:1024px) {
    .event-image {
    width: 50%;
    max-width: none;
}
    .object-requirement-card {
        overflow: hidden;
    }

    .slider-group.fix {
        padding: 0;
    }

    .team-left {
        width: 50%;
    }

    .team-right {
        width: 50%;
        height: 0;
        padding-top: 65%;
    }

    .chart-col-full {
        padding: 0;
    }

    .chart-box {
        flex-direction: column;
        margin: 0;
    }

    .chart-col {
        width: 100%;
        padding: 0;
        order: 1;
    }

    .chart-col.fix {
        order: 0;
    }

    .chart-note {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 40px;
    }

    .info-list li:nth-child(odd) {
        width: calc(50% - 30px);
        margin-right: 30px;
    }

    .info-list li:nth-child(even) {
        width: calc(50% - 30px);
        margin-left: 30px;
    }

    .career-btn {
        display: block;
        width: 100%;
        position: static;
        margin-top: 24px;
        text-align: center;
    }

    .team-left {
        padding: 60px 40px;
    }

    .history-section-5-left {
        padding-right: 40px;
    }

    .history-section-2-left {
        width: 50%;
        padding: 40px;
    }

    .history-section-2-right {
        width: 50%;
    }

    .history-info .button-next,
    .history-info .button-prev {
        visibility: hidden;
    }

    .history-card {
        flex-direction: column;
    }

    .history-card-left {
        width: 100%;
        padding-right: 0;
    }

    .history-card-right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .history-card-year {
        font-size: 60px;
        letter-spacing: 1.2px;
        margin-bottom: 24px;
    }

    .history-card-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .history-card-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .history-num li {
        font-size: 14px;
    }

    .organizer-contact.fix {
        display: none;
    }

    .e-news-info .breadcrumbs {
        margin-bottom: 0;
    }

    .team-row {
        margin: 0 -24px;
    }

    .team-col {
        width: 50%;
        padding: 0 24px;
    }

    .famous-flex {
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        width: calc(100% + 80px);
        margin-left: -40px;
    }

    .famous-flex.fix {
        flex-direction: row;
        justify-content: space-between;
    }

    .famous-area-box {
        width: 100%;
        padding: 0 40px;
        overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
    }
.famous-area li a.active::after, .famous-area li a:hover::after {
    bottom: 0;
}
    .famous-search {
        width: 100%;
        padding: 8px 0;
        border-left: none;
        border-bottom: solid 1px #D7D7D7;
    }

    .famous-search .search-input {
        padding-left: 40px;
        width: 100%;
    }

    .famous-area li a {
        white-space: nowrap;
    }

    .zoom-tab li a {
        padding: 8px;
        font-size: 14px;
    }

    .modal-head {
        height: 72px;
    }

    .zoom-image {
        height: 0;
        padding-top: 56.25%;
    }

    .obj-base-box {
        flex-direction: column-reverse;
    }

    .obj-base-right {
        width: 100%;
        margin-bottom: 40px;
    }

    .obj-base-left {
        width: 100%;
        padding-right: 0;
    }

    .obj-row {
        padding: 24px 0 16px;
    }

    .obj-col {
        width: 50%;
        margin-bottom: 8px;
    }

    .obj-row .obj-col:nth-child(odd),.obj-row .obj-col-4:nth-child(odd){
        padding-right: 8px;
    }
    .obj-row .obj-col:nth-child(even),.obj-row .obj-col-4:nth-child(even){
        padding-left: 8px;
    }

    .obj-col-4 {
        width: 50%;
        margin-bottom: 8px;
    }

    .obj-base-title span {
        font-size: 16px;
    }

    .obj-label,
    .obj-text {
        font-size: 14px;
        letter-spacing: 0.03em;
    }

    .obj-name {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .obj-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .obj-tag-box {
        display: flex;
        margin-bottom: 16px;
    }

    .obj-tag,.obj-agent-tag {
        margin-bottom: 8px;
    }

    .obj-function-box .btn {
        padding: 0 20px;
    }

    .object-list-col {
        width: 50%;
    }

    .object-head {
        flex-direction: column-reverse;
    }

    .breadcrumbs {
        margin-bottom: 24px;
    }

    .breadcrumbs li {
        font-size: 14px;
    }

    .object-title h2,
    .object-title h1 {
        font-size: 32px;
        min-width: 141px;
    }

    .object-title span {
        padding-left: 8px;
        margin-left: 8px;
        font-size: 14px;
    }

    .organizer-info {
        width: auto;
        display: inline-flex;
        justify-content: flex-start;
        padding-left: 16px;
        color: #F5F5F5;
        font-size: 14px;
        flex-direction: column;
    }

    .organizer-info a {
        color: #F5F5F5;
    }

    .organizer-box {
        display: flex;
        justify-content: center;

    }

    .organizer-section {
        width: 100%;
        padding: 8px 0;
        background-color: rgba(0, 0, 0, 0.40);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: fixed;
        top: auto;
        bottom: 0;
        z-index: 98;
        border-radius: 8px 8px 0 0;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .organizer-contact {
        display: none;
    }

    .map-box-right {
        padding-left: 40px;
    }

    .history-section-2 {
        position: relative;
        top: 0;
    }

    .container-title.fix-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .container-title i {
        font-size: 14px;
        margin-left: 0;
        padding-top: 12px;
    }

    .form-row .form-col:nth-child(1) {
        padding-right: 10px;
    }

    .form-row .form-col:nth-child(2) {
        padding-left: 10px;
    }
    .event-btn{
    margin-top: 20px;
}
}

@media (max-width:768px) {
    .rental-item {
    font-size: 16px;
    flex-direction: column;
}
    .multiple-select{
    font-size: 14px;
}
.select-list li span{
font-size: 12px;
}
    .event-name {
    font-size: 22px;
}

.event-text li span{
font-size: 14px;
}

    .no-event-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .power-by {
        padding: 4px 8px;
        font-size: 8px;
    }

    .team-left .breadcrumbs {
        display: none;
    }

    .e-news-link {
        padding: 58px 40px;
    }

    .e-news-link span {
        font-size: 20px;
        line-height: 24px;
        height: 24px;
        margin-bottom: 8px;
    }

    .e-news-link i {
        font-size: 14px;
    }

    .e-news-flex {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        border-left: none;
    }

    .e-news-flex .e-news-select {
        margin: 8px 0;
        font-size: 14px;
    }

    .e-news-box-right {
        width: 100%;
        margin-right: 0;
        border-top: solid 1px #D7D7D7;
    }

    .e-news {
        flex: 1;
    }

    .e-news input {
        width: 100%;
    }

    .e-news-label {
        border-left: none;
        font-size: 14px;
    }

    .map-box {
        flex-direction: column;
    }

    .map-box-left {
        width: 100%;
        padding-top: 60%;
        margin-bottom: 12px;
    }

    .map-box-right {
        width: 100%;
        padding-left: 0;
    }

    .breadcrumbs {
        display: none;
    }

    .famous-card {
        padding: 20px 0;
    }

    .famous-card-title {
        font-size: 16px;
    }

    .famous-card-col {
        width: 100%;
    }

    .famous-card-label {
        font-size: 14px;
    }

    .famous-card-text {
        font-size: 14px;
    }

    .team-box {
        flex-direction: column-reverse;
        position: relative;
    }

    .team-right {
        width: 100%;
        padding-top: 125%;
    }

    .team-left {
        width: 100%;
        padding: 40px 24px 32px;
    }

    .input-row {
        flex-wrap: wrap;
    }

    .input-col {
        width: 100%;
    }

    .history-row {
        display: block;
    }

    .history-years {
        width: 100%;
    }

    .history-info {
        width: 100%;
    }

    .history-section .page-flex.fix {
        margin: 0 auto;
    }

    .history-section-1 {
        padding: 0 0 40px 0;
    }

    .history-years-link {
        max-width: 375px;
        display: flex;
        padding: 0;
        background-image: url(../images/year-line-1.svg);
        background-repeat: no-repeat;
        background-position: top 15px center;
        margin: 0 auto 40px auto;
    }

    .history-years-link li {
        display: inline-block;
        width: 33.3%;
        margin-bottom: 0;
    }

    .history-years-link li a {
        justify-content: center;
        height: 70px;
        padding-left: 0;
        padding-top: 40px;
        background-image: url(../images/dot-2.svg);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 30px;
    }

    .history-section-2-box {
        flex-direction: column-reverse;
    }

    .history-section-2-left {
        width: 100%;
        padding: 40px;
    }

    .history-section-2-right {
        width: 100%;
    }

    .history-section-5-box {
        flex-direction: column;
    }

    .history-section-5-left {
        padding-right: 0;
        width: 100%;
        padding-bottom: 32px;
    }

    .history-section-5-right {
        width: 100%;
    }

    .back-box {
        position: absolute;
        top: 24px;
        left: 0;
        padding-left: 24px;
        z-index: 9;
    }

    .form-row {
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .form-col {
        width: 100%;
        margin-bottom: 16px;
    }

    .form-row .form-col:nth-child(1) {
        padding-right: 0;
    }

    .form-row .form-col:nth-child(2) {
        padding-left: 0;
    }

    .form-col-full {
        margin-bottom: 16px;
    }

    .form-btn {
        margin-top: 8px;
    }

    .event-section {
        padding: 40px 0;
    }

    .form-section {
        padding: 40px 0;
    }

    .form-label {
        font-size: 14px;
        width: 72px;
        padding: 0;
    }

    .input-style,
    .radio-tag {
        font-size: 14px;
    }

    .event-content {
        font-size: 17px;
    }

    .event-content p {
        margin-bottom: 24px;
    }

    .event-content ul {
        margin-top: 12px;
    }

    .event-card {
        padding: 24px 16px;
        font-size: 14px;
    }

    .event-card span {
        display: block;
        margin-right: 0;
    }

    .career-box {
        flex-direction: column;
    }

    .career-col {
        width: 100%;
        padding-right: 0;
    }

    .career-box .career-col:nth-child(2) {
        margin-top: 12px;
        padding-top: 12px;
        border-top: solid 1px #f5f5f5;
    }

    .info-list {
        margin-top: 20px;
    }

    .info-list li {
        padding: 20px 0;
        margin-bottom: 0;
    }

    .info-list li:nth-child(odd) {
        width: 100%;
        margin-right: 0;

    }

    .info-list li:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }

    .info-list li:last-child {
        border-bottom: none;
    }

    .table-rwd {
        margin-top: 40px;
    }

    .global-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .back-container {
        margin-bottom: 16px;
    }

    .back-container a {
        font-size: 14px;
    }
    .rental-col{
    width: 100%;
}
}

@media (max-width:540px) {
        .zoom-image {
        padding-top: 158%;
    }
    .video-box {
    padding-top: 158%;
}
   .zoom-swiper .button-next{
               background: linear-gradient(-90deg, rgba(167, 167, 167, 0.40) -168.75%, rgba(83, 83, 83, 0.00) 100%), url(../images/next.svg);
               background-repeat: no-repeat;
               background-size:6px auto;
               background-position: center center;

    }
    .zoom-swiper .button-prev{
               background: linear-gradient(-90deg, rgba(167, 167, 167, 0.40) -168.75%, rgba(83, 83, 83, 0.00) 100%), url(../images/prev.svg);
               background-repeat: no-repeat;
               background-size:6px auto;
               background-position: center center;

    }
    .popup-btn{
   flex-direction: column;
}
.popup-btn button{
    margin: 0;
    text-align: center;
}
.popup-btn button:last-child{
    margin-top: 12px;
}
    .event-swiper {
    margin-bottom: 80px;
}
 .e-news-image-wrapper.fix {
        height: 490px;
    }
    .event-list{
        margin-bottom: -40px;
    }
    .event-item {
    flex-direction: column;
    align-items: flex-start;
}
    .event-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .event-info {
    width: 100%;
    padding-left: 0;
}
    .subscribe-group {
    flex-direction: column;
    justify-content: center;
}
.subscribe-group .e-news-input {
    width: 100%;
    padding: 12px 20px;
}
.subscribe-btn{
    margin-top: 20px;
}
    .xs-mb-0{
        margin-bottom: 0 !important;
    }
    .map-note {
        font-size: 14px;
        margin-top: 32px;
    }

    .key-box {
        padding: 0 24px;
    }

    .organizer-box {
        justify-content: flex-start;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .organizer-name div {
        height: 22.5px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .organizer-info {
        flex: 1;
        align-items: flex-start;
    }

    .info-list-title {
        margin-bottom: 8px;
    }

    .info-list-date {
        margin-bottom: 8px;
    }

    .info-list-text {
        font-size: 17px;
    }

    .career-title,
    .career-list li {
        font-size: 14px;
    }

    .career-list li::before {
        top: 10px;
    }

    .history-section-5-right {
        font-size: 0;
    }

    .history-section-5 {
        padding: 40px 0 0;
    }

    .history-section-5-box {
        padding: 0;
    }

    .history-section-5-left {
        padding: 0 24px 32px 24px;
    }

    .history-section-2-left {
        padding: 40px 24px;
    }

    .history-section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
        text-align: center;
    }

    .history-section-text {
        text-align: justify;
    }

    .object-box-right.fix {
        margin-left: 0;
    }

    .e-news-flex .e-news-select {
        margin-left: 4px;
    }

    .e-news-label {
        margin-left: 4px;
    }

    .e-news input {
        font-size: 14px;
    }

    .rec-section.fix-1,
    .rec-section.fix-2 {
        padding: 40px 0;
    }

    .e-news-head {
        padding: 24px 0;
    }

    .e-news-title h1 {
        font-size: 28px;
    }

    .e-news-image-wrapper {
        height: 256px;
    }

    .dis-banner {
        padding: 40px 0;
    }

    .dis-title {
        font-size: 32px;
    }

    .dus-section {
        padding: 40px 0;
    }

    .dis-box p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .dis-box h3 {
        font-size: 17px;
    }

    .object-type {
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 0 24px;
    }

    .tour-box {
        padding: 0 24px;
        top: 142px;
        left: 0;
        transform: translate(0.0);
    }

    .tour-title {
        font-size: 28px;
    }

    .tour-text {
        font-size: 17px;
    }

    .map-info-item {
        font-size: 14px;
    }

    .map-box {
        padding-top: 24px;
    }

    .back-btn {
        font-size: 14px;
        display: inline-block;
    }

    .organizer-section {
        bottom: 52px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(183, 183, 183, 0.10);
    }

    .organizer-section.fix {
        bottom: 0;
    }

    .obj-image-wrapper {
        height: 100dvh;
    }

    .obj-image-wrapper.fix {
        height: 300px;
    }

    .obj-swiper .button-next,
    .obj-base-swiper .button-next {
        background-color: rgba(68, 68, 68, 0.40);
        background-image: url(../images/next.svg);
        background-size: 7px auto;
    }

    .obj-swiper .button-prev,
    .obj-base-swiper .button-prev {
        background-color: rgba(68, 68, 68, 0.40);
        background-image: url(../images/prev.svg);
        background-size: 7px auto;
    }

    .object-list {
        padding: 40px 0;
    }

    .object-list-col {
        width: 100%;
    }

    .hide-xs {
        display: none;
    }

    .total-box {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .condition-box {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .condition-tag-box {
        padding-left: 0;
        padding-right: 8px;
    }

    .clear-btn {
        font-size: 14px;
    }

    .obj-section {
        padding: 40px 0;
    }

    .obj-intro {
        padding-bottom: 40px;
    }

    .page-function {
        padding: 0 20px;
        top: 92px;
    }

    .rec-swiper-out {
        position: relative;
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 0 24px;
    }

    .rec-swiper {
        padding-bottom: 60px;
    }

    .rec-swiper .banner-pagination-box {
        visibility: visible;
    }

    .rec-swiper-out .button-next,
    .rec-swiper-out .button-prev {
        margin-top: -65px;
    }

    .det-box {
        padding: 24px 0;
    }

    .det-content {
        max-height: 72px;
    }

    .det-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .open-box a {
        font-size: 14px;
    }

    .det-section {
        padding: 40px 0;
    }

    .det-box.active .det-content {
        max-height: 300vh;
    }

    .public-box {
        padding: 24px 0;
    }

    .public-box span {
        font-size: 16px;
    }

    .obj-base-function {
        top: 12px;
        right: 24px;
        margin: 0 -2px;
    }

    .obj-base-function li {
        padding: 0 2px;
    }

    .obj-base-function li a {
        height: 40px;
        font-size: 14px;
    }

    .obj-base-function li a img {
        width: 24px;
        margin-right: 4px;
    }

    .obj-base-right {
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .container-box.fix {
        padding: 0;
    }

    .famous-flex {
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .famous-search .search-input {
        padding-left: 24px;
    }

    .famous-area-box {
        padding: 0 16px;
    }

    .famous-list {
        padding: 0 0px 40px;
    }

    .tour-sub-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .tour-tag span {
        padding: 6px;
        margin-right: 8px;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .e-news-link {
        padding: 58px 24px;
    }

    .detail-section {
        padding: 40px 0;
    }

    .detail-content {
        font-size: 17px;
    }

    .detail-content>h2,
    .detail-content>h3 {
        margin: 0 auto 16px auto;
    }

    .detail-content>p {
        margin: 0 auto 40px auto;
    }

    .detail-content>img {


        width: 100%;
        margin-bottom: 40px;
    }

    .img-note {
        font-size: 14px;
        margin-top: -40px;
        margin-bottom: 40px;
    }

    .input-label,
    .form-control {
        font-size: 14px;
    }

    .gray-container-body {
        min-height: calc(100dvh - 58px);
    }

    .gray-container-bottom {
        height: 58px;
    }

    .logo-404 {
        width: 248px;
        margin-bottom: 40px;
    }

    .gray-container-bottom a {
        font-size: 14px;
    }

    .gray-container-bottom a:hover {
        opacity: 0.6;
    }

    .gray-container-title {
        font-size: 32px;
    }

    .gray-container-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .count-down {
        font-size: 16px;
    }

    .object-type li a {
        padding: 0 6px;
    }

    .team-col {
        width: 100%;
    }

    .salesman-name {
        font-size: 18px;
    }

    .salesman-service {
        font-size: 14px;
    }

    .salesman-contact a {
        font-size: 14px;
    }

    .his-image-wrapper {
        height: 310px;
    }

    .history-num li:nth-child(1) {
        width: 30%;
    }

    .history-num li:nth-child(3) {
        flex: 1;
    }

    .history-info,
    .ideal-swiper-out {
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 0 24px;
    }

    .history-info .button-next,
    .history-info .button-prev {
        visibility: visible;
        top: 12vw;
        transform: translateY(0);
    }

    .history-section-3 {
        padding: 56px 24px;
    }

    .history-title {
        font-size: 28px;
        padding: 0;
    }

    .history-text {
        padding: 0;
        text-align: justify;
    }

    .history-title.fix {
        text-align: center;
    }
    .history-text.fix {
        text-align: justify;
    }
    .history-section-4 {
        background-color: #F5F5F5;
        padding-bottom: 56px;
        padding-top: 16px;
    }

    .salesman-card-text {
        font-size: 14px;
    }

    .close {
        width: 24px;
        height: 24px;
    }

    .head-right .btn {
        padding: 0 20px;
    }

    #customLabel {
        font-size: 14px;
        padding-left: 24px;
    }

    .famous-sub-title span {
        top: -150px;
    }

    .news-section {
        padding: 40px 0;
    }

    .news-section-date {
        font-size: 16px;
    }

    .news-list li {
        width: 100%;
        padding-bottom: 12px;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        border-bottom: solid 1px #d7d7d7;
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list li:last-child {
        border-bottom: none;
    }

    .news-list li::before {
        width: 2px;
        height: 2px;
        top: 10px;
        left: 11px;
        transform: translateY(0);
    }

    .news-list li span {
        padding-right: 0;
        padding-left: 0;
    }

    .news-list li a {
        margin-bottom: 4px;
    }

    .news-line.fix {
        border-top: none;
        border-bottom: none;
        margin: 20px 0;
    }

    .object-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .object-title span {
        margin-top: 8px;
        margin-left: 0;
    }

    .object-banner {
        padding: 40px 0;
    }

    .popup-body {
        border-radius: 20px;
        padding: 20px;
    }

    .popup-head h3 {
        font-size: 24px;
    }

    .popup-close {
        width: 24px;
        height: 24px;
    }

    .popup-content h5 {
        font-size: 18px;
    }

    .popup-content {
        font-size: 14px;
    }

    .det-section.fix {
        padding: 40px 0 0 0;
    }

    .e-news-box-right .btn {
        padding: 0 20px;
    }
      .event-btn{
    text-align: center;
}
.input-flex {
    flex-direction: column;
    align-items: flex-start;
}
    .form-label {
        width: 100%;
    }
    .input-box {
    width: 100%;
}
.form-label span {
    display: inline-block;
}
.radio-box {
    display: inline-block;
    position: relative;
    margin-right: 0
}
.input-box .radio-box{
    margin-right: 6px;
    width: calc( 50% - 8px );
    text-align: center;
}
.input-box .radio-box:last-child {
    margin-right: 0;
    margin-left: 6px;
    width: calc( 50% - 8px );
}
}