:root {
    --color_d: #413c3c;
    --color_o: #f56e41;
    --color_b: #7da5cd;

    --color_w: #fff;
    --color_dw: #f4f1ec;
}


*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    position: relative;
    height: 100%;
}

body {
    margin: 0;
    height: auto;
    text-transform: none;
    font-family: "ArponaSansRegular","GenYoGothic2TWM", sans-serif;
    font-feature-settings: normal;
    font-style: normal;
    letter-spacing: normal;
    line-break: auto;
    -webkit-text-size-adjust: none;
    color: #3c3c46;
    letter-spacing: .1em;
    font-optical-sizing: auto;
    font-size: 15px;
    background: var(--color_dw);
    color: var(--color_d);
    transition: background 5s ease-out,color 5s ease-out;
    width: 100%;
    overflow-x: hidden;
}

body.night {
    margin: 0;
    height: auto;
    color: #fff;
    background: var(--color_d);
    transition: background 5s ease, color 5s ease;
}

body.fixed {
    overflow: hidden;
    position: fixed;
}

/*a:hover {
    color: inherit;
    text-decoration: underline;
}*/

h1,h2,h3,h4,h5,p,a {
    line-height: 1.5em;
}

h1 {
    /*font-size: 2em;*/
    margin: 0;
    margin-bottom: 1em;
    /*font-size: 2em;*/
}

h1,h2 {
    font-size: 2em;
    /*font-family: "ArponaLight","GenWanMin2TW";*/
    font-family: "ArponaLight","GenYoMin2TWM", sans-serif;
    font-weight: 600;
}

.styTitle {
    display: block;
    font-size: 1.5em;
    line-height: 1.5em;
    font-family: "ArponaLight","GenYoMin2TWM", sans-serif;
    font-weight: 600;
    margin: 20px 0;
}

h3,h4,h5,.stySubTitle {
    font-family: "ArponaSansLight","GenYoGothic2TWN", sans-serif;
    font-weight: normal;
}

.stySubTitle {
    /*font-size: 1.5em;*/
    line-height: 1.5em;
    display: block;
    font-weight: 600;
}

p {
    font-family: "ArponaSansRegular","GenYoGothic2TWM", sans-serif;
    margin: 0;
    line-height: 1.8em;
    font-size: 15px;
}

a {
    font-family: "ArponaLight","GenYoMin2TWEL", sans-serif;
    color: initial;
    text-decoration: none;
    font-size: 15px;

}

i {
    color: var(--color_d); 
}


.night a,
.night p,
.night i {
    color: #fff;  
}

.night .cookie,
.night .cookie h3,
.night .cookie p,
.night .ads,
.night .ads p,
.night .ads h3 {
    color: var(--color_d);
}

a:hover,
i:hover {
    color: var(--color_b);
}

.night a:hover,
.night i:hover {
    color: var(--color_o);
}




header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

header.list {
    position: relative;
    background: initial;
}

/*section {
    margin: 60px auto;
}*/

.sec_set{
    width: 100%;
    max-width: 1440px;
    margin: 100px auto;
    margin-bottom: 100px;

    /*overflow-x: hidden;
    height: auto;*/
    /*overflow: hidden;*/
}

.sec_set.sec1{
    max-width: 980px;
}

.header {
    padding: 20px 60px;
    /*padding-bottom: 20px;*/
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.menu_area {
    flex-grow: 0;
    width: 280px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.logo img {
    width: auto;
    /*height: 20px;*/
    height: 15px;
}

.lang {
    width: 120px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    /*opacity: 0;*/
}

.lang a{
    color: #fff;
}

header.list .lang a{
    color: var(--color_d);
}

.btn {
    cursor: pointer;
    display: inline-block;
    min-width: 120px; 
    width: fit-content;
    background: var(--color_d);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    transition: background .6s ease-out,color .6s ease-out;
    line-height: 1em;
    position: relative;
    transition: background 5s;
    z-index: 1;
}

.night .btn {
    background: var(--color_o);
    transition: background 5s ease;
}


.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color_b);
    transition: all 0.5s;
    z-index: -1;
}

.night .btn::before {
    background-color: #fff;
}

.btn:hover {
    color: #fff;
}

.night .btn:hover {
    color: #000;
}

.btn:hover::before {
    width: 100%;
}


 /*.btn-outline {
            background-color: transparent;
            color: #3ae374;
            border: 2px solid #3ae374;
            transition: all 0.5s;
            z-index: 1;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #3ae374;
            transition: all 0.5s;
            z-index: -1;
        }

        .btn-outline:hover {
            color: #000;
        }

        .btn-outline:hover::before {
            width: 100%;
        }*/





.banner {
    width: 100%;
    height: 100%;
    /*height: 100vh;*/
    /*min-height: 703px;*/
    position: relative;
}

.banner img {
    width: 100%;
    /*height: calc( 100vh - 60px );*/
    height: 100%;
    object-fit: cover;
}

.my-button-next,
.my-button-prev {
  background: transparent;
  position: absolute;
  top: 50%;
  display: inline-block;
  padding: 15px;
  border: 0;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  cursor: pointer;
  opacity: 0; /* 如果有 hover 動畫 */
  /*pointer-events: none;*/
  transition: opacity 0.3s ease;
}

.sec1_news .my-button-next,
.sec1_news .my-button-prev {
    top: 200px;
}

.page_swiper .my-button-next,
.page_swiper .my-button-prev {
    top: 40vh;
}


.page_swiper .swiper-pagination {
    margin-top: 10px;
}



/*.sec1_news .my-button-next,*/
/*.sec4 .my-button-next {
    right: 10%;
}*/

/*.sec1_news .my-button-prev,*/
/*.sec4 .my-button-prev {
    left: 10%;
}*/

.my-button-next {
  box-shadow: 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px rgba(255, 255, 255, 0.3);
  right: 20px;
  transform: translateY(-50%) rotate(225deg);
}

.my-button-prev {
  /*box-shadow: -1px 0 rgba(255, 255, 255, 0.3), 0 -1px rgba(255, 255, 255, 0.3) inset;*/
  box-shadow: 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px rgba(255, 255, 255, 0.3);
  left: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.night .my-button-next {
  box-shadow: 1px 0 rgba(0, 0, 0, 0.3) inset, 0 1px rgba(0, 0, 0, 0.3);
  right: 20px;
  transform: translateY(-50%) rotate(225deg);
}

.night .my-button-prev {
  /*box-shadow: -1px 0 rgba(255, 255, 255, 0.3), 0 -1px rgba(255, 255, 255, 0.3) inset;*/
  box-shadow: 1px 0 rgba(0, 0, 0, 0.3) inset, 0 1px rgba(0, 0, 0, 0.3);
  left: 20px;
  transform: translateY(-50%) rotate(45deg);
}

/*.sec2_swipwr .my-button-next,
.sec2_swipwr .my-button-prev {
    border-bottom: 2px solid var(--color_d);
    border-left: 2px solid var(--color_d);
}

.sec2_swipwr .my-button-next,
.sec2_swipwr .my-button-prev {
    border-bottom: 2px solid var(--color_d);
    border-left: 2px solid var(--color_d);
}

.sec2_swipwr .my-button-next:hover,
.sec2_swipwr .my-button-prev:hover {
    border-bottom: 2px solid var(--color_b);
    border-left: 2px solid var(--color_b);
}*/

.my-button-next,
.my-button-prev {
    border-bottom: 2px solid var(--color_d);
    border-left: 2px solid var(--color_d);
}

.night .my-button-next,
.night .my-button-prev {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

/*.sec2_swipwr .my-button-next,
.sec2_swipwr .my-button-prev {
    border-bottom: 2px solid var(--color_d);
    border-left: 2px solid var(--color_d);
}*/

/*bak*/
/*.my-button-next:hover,
.my-button-prev:hover {
    border-bottom: 2px solid var(--color_b);
    border-left: 2px solid var(--color_b);
}

.night .my-button-next:hover,
.night .my-button-prev:hover {
    border-bottom: 2px solid var(--color_o);
    border-left: 2px solid var(--color_o);
}*/
/*end*/

/* 如果要 hover 顯示效果 */
.my-button-next.show,
.my-button-prev.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}


.my-button-prev.m_only,
.my-button-next.m_only {
  opacity: 0;
  pointer-events: none;
}

.banner_swiper {
    width: 100%;
    height: 100%;
}

.banner_item {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    line-height: 0;
    transform-origin: bottom center;
    will-change: transform;
}

.header_line {
    /*width: calc( 100% - 240px);*/
    /*margin-left: 180px;*/
    margin-right: 60px;
    margin-left: 60px;
    height: 1px;
    /*background: #fff;*/
    background: var(--color_dw);
    text-align: right;
}

.fixed .header_line {
    display: none;
}

.menu_icon {
    /*margin-right: 60px;*/
    width: 40px;
    /*display: none;*/
    position: relative;
    text-align: center;
    vertical-align: middle;

    /*position: fixed;*/
    position: relative;
    /*top: 0;*/
    /*right: 50px;*/
    /*left: 5vw;*/
    /*z-index: 98;*/
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0px);
}

#menu_switch_open {
    /*display: none;*/
    /*width: 30px;*/
    width: 40px;
    /*height: 18px;*/
    height: 14px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 1000;

    position: relative;
    right: 0;
    /*top: 7px;*/
}

#menu_switch_open.open {
    width: 30px;
}

#menu_switch_open span {
    display: block;
    position: absolute;
    /*height: 2px;*/
    height: 1px;
    width: 100%;
    /*background: #fcfcfc;*/
    /*background: #000;*/
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.list #menu_switch_open span {
    background: var(--color_d);
}

.night .list #menu_switch_open span {
    background: #fff;
}

#menu_switch_open.open span {
    background: var(--color_d);
}

.list .lang {
    color: var(--color_d);
}

#menu_switch_open span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#menu_switch_open span:nth-child(2) {
  display: none;
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#menu_switch_open span:nth-child(3) {
    top: 9px;
    /*top: 18px;*/
    /*width: 70%;*/
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

/*#menu_switch_open span:nth-child(1) {
    width: 100%;
}*/

#menu_switch_open.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    /*top: -2px;*/
    width: 100%;
    top: -5px;
    right: 0
}

#menu_switch_open.open span:nth-child(2) {
    width: 0;
    opacity: 0
}

#menu_switch_open span:nth-child(3) {
    left: 0;
    width: 70%;
}

#menu_switch_open.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /*top: 20px;*/
    top: 17px;
    right: 0;
    width: 100%
}

.itemMask {
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.2);
    margin: 0 auto;
    padding:0;
    z-index: 1;
    transform-origin: bottom center;
    will-change: transform;
}  

.banner_txt {
    position:absolute;
    bottom: 0;
    width:100%;
    height:100%;
    padding: 60px;
    padding-top: 0;
    /*padding-bottom: 100px;*/
    padding-bottom: 80px;
    margin: 0 auto;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    /* justify-content: end; */
    /*align-items: end;*/
    /*gap:60px;*/
    justify-content: center;
    align-items: center;
}

.banner_txt .title {
    /*display: none;*/
    width: calc( 70% - 30px);
    text-align: center;
}

.banner_txt h1 {
    /*font-size: 5em;*/
    font-size: 3.1em;
    margin-bottom: 0;
    line-height: 1.2em;
    text-align: center;
}

.title span {
    font-family: ArponaLight;
    /*font-weight: 300;*/
    font-size: 3em;
}

/*.banner_txt h1 {
    font-size: 3em;
    margin-bottom: 0;
}*/

.banner_txt .content {
    width: calc( 30% - 30px);
}

.video-container {
    background: var(--color_d);
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}


/*.banner .video-container iframe {
    width: 178vw;
    height: 100vw;
    top: 0;
    left: -39vw;
    top: -24.5vw;
}*/

/*#banner_swiper,
#night_banner_swiper {
    height: 100vh;
    min-height: 700px;
}*/

.banner .video-container iframe {
    /*width: 140vw;
    height: 100vw;
    top: -20vw;
    left: -20vw;*/

    /*width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: calc( -50% + 60px );
    left: 50%;
    transform: translate(-50%, -50%);*/

    width: 140vw;
    height: 78.75vw;
    min-height: 120vh;
    min-width: 214vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.switch_btn {
    /*display: none;*/

    /*position: absolute;*/
    position: fixed;
    top: calc(50% - 140px );
    right: 0;
    z-index: 3;

    /*border: 1px solid var(--color_d);*/
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
}

.switch_btn img{
    /*width: 25px;*/
    /*width: 22px;*/
    width: 18px;
    height: auto;

}

.sun_btn {
    /*width: 20px;*/
    /*height: 20px;*/
    background: var(--color_d);
    /*padding: 5px;*/
    padding: 7px;
}

.sun_btn a,
.moon_btn a {
    display: block;
    /*width: 25px;
    height: 25px;*/
    /*width: 22px;
    height: 22px;*/
    width: 18px;
    height: auto;
}

.moon_btn {
    /*width: 20px;*/
    /*height: 20px;*/
    background: var(--color_d);
    /*padding: 5px;*/
    padding: 7px;
}

/*night*/
/*.night .btn {
    background: var(--color_o);
    transition: background .6s ease-out;
}*/

.night body {
    margin: 0;
    height: auto;
    color: #fff;
    background: var(--color_d);
    transition: background .6s ease-out,color .6s ease-out;
}
/*end*/

.booking_tool_grab {
    display: flex;

    /*display: none;*/

    flex-wrap: nowrap;
    position: absolute;
    width: 100%;
    /*bottom: -60px;*/
    bottom: -58px;
    height: 120px;
    text-align: center;
    z-index: 3;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}

.booking_tool {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    /*background: var(--color_dw);*/
    background: #fff;
    opacity: .8;
    padding: 25px 0;
    padding-right: 0;
}

.night .booking_tool {
    color: var(--color_d);
}

.date_in,
.date_out {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.date_out {
    /*margin-right: 100px;*/
    margin-right: 20px;
}

.check_in,
.check_out {
    /*padding-left: 100px;
    padding-right: 60px;*/
    padding-left: 40px;
    padding-right: 30px;
    white-space: nowrap;
    position: relative;
}

/*.check_in {
    margin-left: 10%;
    margin-right: 5%;
}*/

/*.check_in::before {
    content: "";
    position: relative;
    left: 0;
    width: 50%;
    min-width: 30px;
    max-width: 100px;
}*/

/*.pleft {
    min-width: 30px;
    max-width: 100px;
    width: 20%;
}

.pright {
    min-width: 10px;
    max-width: 60px;
    width: auto;
}*/


.date_in::after,
.date_out::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 1px;
    left: 0;
    bottom: -5px;
    background: var(--color_d);
}


.triangle-bottom {
    margin-left: 30px;
    /*border-top: 30px solid black;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;*/
    border-top: 10px solid black;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    width: 0;
    height: 0;
    /*margin: 30px auto;*/
}

.booking_tool_btn {
    height: 66px;
    padding: 0 60px;
    background: var(--color_d);
    color: var(--color_w);
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "ArponaLight", "GenYoMin2TWEL", sans-serif;
    font-size: 15px;
}

.booking_tool_btn a {
    color: #fff;
}

.night .booking_tool_btn:hover a {
    color: #000;
}


/*datepicker*/
#datepicker1_grab {
    position: absolute;
    display: none;
    /*margin-left: 200px;*/
    /*bottom: -284px;*/
    z-index: 9999;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: 23px;*/
    margin-top: 38px;
}

#datepicker1 {
    position: relative;
    /*position: absolute;*/
    display: none;
    
    /*margin-left: 41%;*/
    width: 34%;
    /*z-index: 9999;*/
   /* margin-left: 200px;
    bottom: -284px;*/
}

#datepicker1 div.datepicker {
    background: #FFFFFF;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
    height: 277px;
    width: 295px;
}

#datepicker2 {
    position: absolute;
    display: none;
    margin-left: 58%;
    z-index: 9999;
}

.ui-widget.ui-widget-content {
    /*width: 98%;*/
    width: 100%;
    /*margin-left: 6px;*/
    padding-bottom: 40px;
}

.dp-highlight .ui-state-default {
  background: #484;
  color: #FFF;
}

#datepicker1 .ui-datepicker .ui-datepicker-title {
    color: #999;    
}

#datepicker1 .ui-datepicker .ui-datepicker-title .ui-datepicker-month{
    color: #040404; 
}

#datepicker1 .ui-datepicker .ui-datepicker-header {
    background: #fff;
    border: 0;
}

#datepicker1 .ui-datepicker-calendar tbody {
    background: #f7f7f6;
}

#datepicker1 .ui-state-default {
    text-align: center;
    /*background: #e0e0e0;*/
    background: #fff;
    border: 1px solid #f5f5f0;
}

#datepicker1 .ui-state-default:hover {
    /*background: #1C1C1C;*/
    background: var(--color_b);
}

.night #datepicker1 .ui-state-default:hover {
    /*background: #1C1C1C;*/
    background: var(--color_o);
}

.ui-widget span {
    font-family: "ArponaLight","GenYoMin2TWM", sans-serif;
}

#datepicker1 .ui-state-default.ui-state-hover:hover {
    color: #fff;
} 

#datepicker1 .ui-datepicker td {
    border: 0;
    padding: 0px;
}

#datepicker1 .dp-highlight .ui-state-default {
    background: #b5b5b5;
    color: #6c6c6c;
}

#datepicker1 .dp-selectlight .ui-state-default {
    background: #1C1C1C;
    color: #fff;
}

#datepicker1 .ui-datepicker-unselectable.ui-state-disabled  span.ui-state-default { 
    background: #f7f7f6;
}

.datePickerClose {
    background: url(../images/data_close.png) no-repeat top right;
    z-index: 2;
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 12px;
    top: 15px;
    cursor: pointer;
}

.datePickerClearAll {
    bottom: 11px;
    display: none;
    font-size: 12px;
    padding-left: 14px;
    position: absolute;
    /*right: 10%;*/
    right: 12px;
}

.clearIcon {
    background: url(../images/imgL1.png) no-repeat -179px -13px;
    display: block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 6px;
}
.clearIcon a{
    text-decoration: underline;
}


div#datepicker1 table.datepickerViewDays td.datepickerNotInMonth,div#search-bar-calendar table.datepickerViewDays td.datepickerNotInMonth.datepickerSelected,div#search-bar-calendar table.datepickerViewDays td.datepickerDisabled {
    background: #f7f7f6 !important
}

div#datepicker1 table.datepickerViewDays td.datepickerNotInMonth a,div#search-bar-calendar table.datepickerViewDays td.datepickerNotInMonth.datepickerSelected a,div#search-bar-calendar table.datepickerViewDays td.datepickerDisabled a {
    color: #f7f7f6;
    cursor: default
}

div#datepicker1 table.datepickerViewDays td.datepickerDisabled a {
    color: #b3b3b3
}

div#datepicker1 table.datepickerViewDays td.datepickerNotInMonth a {
    color: #f7f7f6
}

div#datepicker1 table.datepickerViewDays td.datepickerSelectedDisabled {
    background: #1C1C1C !important
}

div#datepicker1 table.datepickerViewDays td.datepickerSelectedDisabled a {
    color: #fff
}

div#datepicker1 table.datepickerViewDays td.datepickerSelected {
    background: #b5b5b5
}

div#datepicker1 table.datepickerViewDays td.datepickerSelected a {
    color: #6c6c6c
}

div#datepicker1 table.datepickerViewDays td.date-checkin,div#search-bar-calendar table.datepickerViewDays td.date-checkout {
    background: #1C1C1C
}

div#datepicker1 table.datepickerViewDays td.date-checkin a,div#search-bar-calendar table.datepickerViewDays td.date-checkout a {
    color: #fff
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 85px;
}

.sec_2,
.sec_3 {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 60px;
}

.sec_2 img {
    width: 100%;
    /*height: 500px;*/
    /*height: calc( (100vw - 120px)*0.6 );*/
    /*height: calc( (100vw - 120px)*0.5 );*/
    min-height: calc( (100vw - 120px)*0.4 );
    height: 100%;
    object-fit: cover;
}

.sec_3_r img {
    width: 100%;
    /*height: 500px;*/
    /*height: calc( (100vw - 120px)*0.6 );*/
    /*height: calc(100vh - 237px);*/
    height: 100%;
    min-height: 600px;
    /*height: calc( (100vw - 120px)*0.4*1. );*/
    object-fit: cover;
    object-position: 80% 0;
}

.sec_2_l {
    width: 60%;
    line-height: 0;
}

.sec_2_r {
    width: 40%;
    display: flex;
    /*align-items: end;*/
}

.sec_3_l {
    /*width: 55%;*/
    display: flex;
    /*z-index: 2;*/
}

.sec_3_l h2{
    font-size: 4em;
    padding-right: 60px;
    margin: 0;
    margin-bottom: 40px;
    white-space: nowrap;
    color: #000;
}

.sec_3_l > div {
    display: flex;
    /*align-items: center;*/
    flex-direction: column;
}

.sec_3_l > div > div{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-bottom: 130px;
    /*width: 65%;*/
    width: 56vw;
}

.sec_3_l_txt {
    /*width: 60%;*/
    /*width: 50%;*/
    width: 300px;
    /*padding-right: 200px;*/

}

.sec_3_l_txt .btn{
    margin-top: 60px;
}

.sec_3_l_img {
    /*width: 100%;*/
    width: calc(100% - 300px);
    justify-content: end;
    display: flex;
}

.sec_3_l_img img{
    /*width: 100%;*/
    width: 70%;
    max-width: 300px;
    /*max-height: 50vh;*/
    height:420px;
    object-fit: cover;
    /*margin-right: 10%;*/
}

.sec_3_r {
    position: absolute;
    width: 45%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
}

/*.sec_2_r > div {*/
.sec_2_r_txt {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
}

/*.sec_2_r > div > div {*/
.sec_2_r_txt > div {
    display: flex;
    flex-direction: column;
    /*height: calc(100% - (62px + 3em));*/
    justify-content: end;
}

/*.sec_2_r h2 {
    position: absolute;
    left: 40%;
    max-width: calc(80% - 60px);
    top: 60px;
    font-size: 2em;
}*/

.sec_2_r h2 {
    font-size: 4em;
    text-align: center;
    flex-grow: 100;
    /*margin-left: -50%;*/
    margin-left: -140%;
    /*margin-top: 2em;
    margin-bottom: 1em;*/
    margin-top: 40px;
    margin-bottom: 40px;

    /*opacity: 0;*/
    color: #000;
    /*height: 100%;*/
    /*text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.4), 0px 8px 13px rgba(255, 255, 255, 0.1), 0px 18px 23px rgba(255, 255, 255, 0.1); */
    /*text-shadow: 0px 0px 20px #fff, 10px 10px 20px #fff;*/
    /*text-shadow: 0px 0px 20px var(--color_dw), 10px 10px 20px var(--color_dw);*/
    /*text-shadow: 1px 1px 3px var(--color_dw), 10px 10px 20px var(--color_dw);*/
    /*text-shadow: 0px 0px 10px rgba(244, 241, 236, 0.8), 2px 2px 100px rgba(244, 241, 236, 0.8);*/
    /*text-shadow: 0px 0px 50px rgba(244, 241, 236, 0.7);*/

    /*position: relative;*/
    
}

/*.swiper-slide-active .sec_2_r h2 {
   opacity: 1;
   transition: opacity 1s 1.5s ease; 
}*/

/*.sec_2_r > div > div{*/
.sec_2_r_txt > div,
.sec3_btn {
    overflow-x: hidden;
}

/*.sec_2_r > div > div h3,
.sec_2_r > div > div p,
.sec_2_r > div > div .btn {*/

.sec_2_r_txt > div h3,
.sec_2_r_txt > div p,
.sec_2_r_txt > div .btn {
    opacity: 0;
    position: relative;
    right: -100%;
    /*transition: opacity 0.3s ease, right 0.3s ease; */
}

.sec3_btn .btn {
    opacity: 0;
    position: relative;
    left: -100%;
}

/*.swiper-slide-active .sec_2_r > div > div h3,
.swiper-slide-active .sec_2_r > div > div p,
.swiper-slide-active .sec_2_r > div > div .btn {*/
.swiper-slide-active .sec_2_r_txt > div h3,
.swiper-slide-active .sec_2_r_txt > div p,
.swiper-slide-active .sec_2_r_txt > div .btn {
    opacity: 1;
    position: relative;
    right: 0;
    /*transition-delay: 2s;*/
    transition: opacity 1.6s 0.3s ease, right 1.6s 0.3s ease; 
}

.swiper-slide-active .sec3_btn .btn {
    opacity: 1;
    position: relative;
    left: 0;
    transition: opacity 1.6s 0.3s ease, left 1.6s 0.3s ease; 
}

.sec_2 .btn {
    margin-top: 60px;
}


.sec1_img {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.sec1_img > div {
    width: 50%;
    text-align: center;
}


.logo_sec1_r_txt {
    position: relative;
}

.logo_sec1_r_txt {
    /*display: none;*/
    /*height: 0;*/
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    /*transition: visibility .7s ease, opacity .7s ease;*/
}

.logo_sec1_l_txt {
    /*display: block;*/
    /*height: auto;*/
    position: relative;
    visibility: visible;
    opacity: 1;
    transition: visibility .5s ease, opacity .5s ease;
}


.logo_sec1_l_img img{
    max-width: 200px;
    width: 50%;
    margin: 60px auto;
    opacity: 1;
    transition: opacity .5s ease;
}

.logo_sec1_l_img {
    text-align: center;
    border-right: 1px solid var(--color_d);
}

.logo_sec1_r_img {
    text-align: center;
    cursor: pointer;
}

.logo_sec1_r_img img{
    max-width: 200px;
    width: 50%;
    margin: 60px auto;
    opacity: .1;
    transition: opacity .5s ease;
}

.show_r .logo_sec1_l_img{
    cursor: pointer;
}

.show_r .logo_sec1_r_img{
    cursor: initial;
}

.show_r .logo_sec1_l_img img{
    opacity: .1;
    transition: opacity .5s;
}

.show_r .logo_sec1_r_img img{
    opacity: 1;
    transition: opacity .5s;
}


.show_r .logo_sec1_r_txt {
    /*display: block;*/
    /*height: auto;*/
    position: relative;
    visibility: visible;
    opacity: 1;
    transition: visibility .5s, opacity .5s;
}

.show_r .logo_sec1_l_txt {
    /*display: none;*/
    /*height: 0;*/
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    /*transition: visibility .7s ease, opacity .7s ease;*/
}


.menu_icon_garb {
    flex-grow: 0;
    /*width: 280px;*/
    width: 100px;
    position: relative;
    z-index: 1000;
}

.logo_sec1_txt {
    position: relative;
}

footer {
    background: #fff;
    font-size: 14px;
}

.footer_container {
    background: var(--color_w);
    width: 100%;
    /*padding: 0 60px;*/
    /*padding: 0 20px;*/
}

.footer_container > div {
    /*background: var(--color_w);*/
    /*padding: 50px 60px;*/
    padding: 60px 60px 0px 60px;
    /*padding-top: 50px;*/
    /*padding-bottom: 30px;*/
    display: flex;
    flex-wrap: nowrap;
    gap:60px;
}

.newf .footer_container > div {
    padding-bottom: 0;
    /*align-items: center;*/
}

.newf .footer_container > div.marlogo {
    width: 100%;
    justify-content: center;
    padding: 0;
}

.foot_icon_grab {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 20px;
    width: 200px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.footer_logo_d img {
    margin-top: 50px;
    /*margin-bottom: 40px;*/
    margin-bottom: 80px;
    height: 60px;
    width: auto;
}

.copyright {
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 1.8em;
    /*margin-top: 1em;*/
    /*margin-bottom: 1em;*/
    /*padding-bottom: 1em;*/
}

.copyright.newfooter {
    padding: 0 60px;
    /*text-align: center;*/
    padding-bottom: 20px;
}

.footer_content {
    display: flex;
    flex-wrap: nowrap;

}

.footer_content_1 {
    /*width: 30%;*/
    width: calc( (100% - 120px)/3 );
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
}

footer .footer_content_1 .logo {
    line-height: 0;
}

footer .footer_content_1 .logo img{
    /*max-width: 250px;*/
    /*width: 100%;*/
    width: 200px;
    height: auto;
}

/*.footer_content_1 .foot_icon_grab {
    margin-top: 0;
}*/

.footer_content_1 .foot_icon {
    width: 16px;
    text-align: center;
}

.foot_icon i:hover{
    color: var(--color_b);
    transition: color 0.5s ease;
}

.night .foot_icon i:hover {
    color: var(--color_o);
}

.footer_content_2 {
    /*width: calc( 30% - 120px );*/
    width: calc( (100% - 120px)/3 );
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
}

.footer_content_2 img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.footer_content_3 {
    /*width: 40%;*/
    width: calc( (100% - 120px)/3 );
    display: flex;
    justify-content: center;
    /*align-items: center;*/
}

.footer_content_3 img {
    width: 100%;
    max-width: 200px;
}

/*.footer_content_3 p {
    padding-top: 20px;
}*/

.footer_content_r {
    /*margin-top: 1em;*/
    width: 100%;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    font-size: 14px;
}

footer .logo img {
    height: 15px;
}

.mo_mode {
    display: none;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 1px;

    padding-top: 20px;
    margin-bottom: 20px;
    background: transparent;
    /*border-bottom: 1px solid #000;*/
    /*border-bottom: 1px solid #000;*/
    border-bottom: 1px solid var(--color_d);
    border-radius: 0;
    opacity: 0.5
}

.night .swiper-pagination-bullet {
    border-bottom: 1px solid #fff;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    margin-bottom: 20px;
}

.swiper-pagination-bullet-active {
    /*background: var(--color_d);*/
    background: transparent;
    opacity: 1;
}

/*.swiper-pagination {
    position: relative;

    text-align: left;
    margin-left: calc((60vw + 25px));
    background: #fff;
    width: fit-content;
    padding: 0 20px;
    margin-top: 60px;
}*/

.swiper-pagination {
    position: relative;
    text-align: right;
    padding: 0 60px;
    margin-top: 60px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    /*width: fit-content;*/
}

/*OK bak*/
/*.cursor_sty {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  background-color: rgba(125, 165, 205, 0.7);
  pointer-events: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor_sty::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(125, 165, 205, 0.9);
  border-radius: 50%;
  animation: pulseRing 1.2s infinite ease-out;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4.5);
    opacity: 0;
  }
}

.night .cursor_sty {
   background-color: rgba(245, 110, 65, 0.7);
}

.night .cursor_sty::after {
  background-color: rgba(245, 110, 65, 0.7);
}*/
/*##############*/

/*new sty*/
.cursor_sty {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  pointer-events: none;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor_sty::before,
.cursor_sty::after {
  content: "";
  position: absolute;
  width: 18px;   /* 固定大小 */
  height: 18px;
  border-radius: 50%;
  background-color: rgba(125, 165, 205, 0.7);
}

.night .cursor_sty::before,
.night .cursor_sty::after {
  background-color: rgba(245, 110, 65, 0.7);
}

/* 第1個圓圈：固定大小，進行淡出 */
.cursor_sty.hovered::before {
  animation: fadeCircle 1.2s infinite;
}

/* 第2個圓圈：由小變大 */
.cursor_sty.hovered::after {
  animation: growCircle 1.2s infinite;
}

/* 淡出動畫 */
@keyframes fadeCircle {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 0; }
}

/* 擴大動畫 */
@keyframes growCircle {
  0%   { transform: scale(0.1); opacity: 0; }
  50%  { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1);   opacity: 1; }
}


.cursor-icon {
  width: 100%;
  height: 100%;
  display: none;
}

.cursor_sty.hovered {
  transform: scale(3);
  /*background-color: #485b7c;*/
  /*background-color: rgba(125, 165, 205, 0.7);*/
}

/*sec1_f*/
/*sec1news*/
.sec1_news {
    width: 100%;
    margin-top: 160px;
    /*margin-top: 130px;*/
}

.mySwiper {
    width: 120%;
    /*margin-left: calc(-10% + 60px);*/
    margin-left: -10%;
}

.sec1_news .swiper-slide{
    /*width: 400px !important;*/
    /*width: calc(100%/3);*/
    /*width: calc((100vw - 120px)/3)!important;*/
    /*width: calc(100vw/3)!important;*/

}

.sec1_news .swiper-slide img{
    /*width: calc((100vw - 120px)/3);*/
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.sec1_news .swiper-slide span,
.sec1_news .swiper-slide p{
    word-wrap: break-word;
    width: 100%;
}

.img-wrap {
    position: relative;
}

.oimg {
    position: relative;
}

.actimg {
    position: absolute;
    height: 500px;
    bottom: 0;
    left:0;
    opacity: 0;
}

.sec1_news .actimg {
    opacity: 0;
    height: 300px;
    
}

.sec1_news .swiper-slide-active .actimg {
    opacity: 1;
    height: 500px;
    transition: height .7s ease;

}

.sec1_news .wrap {
    position: relative;
}

.sec1newsTxt {
    opacity: 0;
    margin-top: 20px;
}

.sec1_news .swiper-slide-active .sec1newsTxt {
    opacity: 1;
    transition: opacity 1.5s ease;
}

.sec1_news .btn,
.sec4 .btn{
    margin-top: 60px;
}

.sec4 {
    width: 100%;
    /*width: 120%;*/
    /*margin-left: -10%;*/
    margin-top: 1.5em;
    margin-bottom: 60px;
}

.sec4 .swiper-wrapper {
    align-items: center;
}

.sec4 .swiper-slide {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    position: relative;
    line-height: 0;
}

.sec4 img {
    width: 100%;
    height: auto;
}

.sec4txt {
    position: absolute;
    left: 0;
    /*bottom: -20px;*/
    width: 100%;
    /*display: none;*/
    height: 0;
    opacity: 0;
    visibility: hidden;

    /*transition: opacity 1.5s ease;*/
}

/*.sec4txt p{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}*/

.swiper-slide-active .sec4txt {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease;
    /*display: block;*/
    height: auto;
}

/*.swiper-slide-active .sec4txt p{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}*/

.sec4txt p {
    word-wrap: break-word;
}

.sec1_news_title {
    text-align: center;
    margin: 0 auto;
    padding: 60px
    width: 100%;
    /*width: calc(100% - 120px);*/
    /*margin-bottom: -1.9em;*/
    margin-bottom: -1.6em;
    /*margin-bottom: -1.72em;*/
    /*top: 14px;*/
    position: relative;
    z-index: 2;
    font-size: 4em;
    /*white-space: nowrap;*/

    /*background: linear-gradient(to bottom, #000 50%, #fff 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

.sec4_title {
    text-align: center;
    margin: 0;
    z-index: 2;
    font-size: 4em;
    margin-bottom: 60px;
}

.sec1_news_set {
    width: 100%;
    overflow: hidden;
}

.sec4_subtitle {
    margin: 1em 0;
    text-align: center;
}

#startDate,
#endDate {
    cursor: pointer;
}

.page_set {
    /*padding: 0 40px;*/
    padding: 0 60px;
    width: 100%;
}

/*.page_set.list_set {
    padding: 0 60px;
}*/

.bred_grab {
    margin-top: 60px;
    width: 100%;
    border-bottom: solid 1px var(--color_d);
    /*display: flex;*/
    display: block;
    white-space: nowrap;
    text-align: center;
    /*flex-wrap: nowrap;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*gap: 60px; */
    overflow-x: auto;
    overflow-y: hidden;
}

.night .bred_grab {
    border-bottom: solid 1px #fff;
}

.bred_grab.page_bread,
.night .bred_grab.page_bread {
    margin-top: 0;
    border-bottom: 0;
}

.bred_item {
    /*padding: 10px 20px;*/
    padding: 10px;
    white-space: nowrap;
    display: inline-block;
    
}

.bred_item.active {
    border-bottom: solid 2px var(--color_d);
}

.night .bred_item.active {
    border-bottom: solid 2px #fff;
}

.bred_item a {
    font-weight: 600;
    /*font-size: 1.2em;*/
    font-size: 1em;
}

.page_content {
    /*margin-top: 60px;*/
    margin-top: 90px;
}

.page_title_grab {
    margin-bottom: 60px;
}

.page_title {
    text-align: center;
    font-size: 2em;
}


.page_title_grab h2 {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
}

.page_flex {
    display: flex;
    flex-wrap: nowrap;
    /*width: calc(100% - 60px);*/
    width: 100%;
    gap:60px;
    margin-bottom: 100px;
}



.page_flex_l,
.page_flex_r {
    width: calc((100% - 60px)/2);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_txt {
    margin-top: 60px;
    margin-bottom: 80px;
    line-height: 1.8em;
}

.page_txt h2 {
    /*font-size: 1.2em;*/
    font-size: 1.5em;
    font-weight: 600;
}

.page_txt.mrvw.pagerest h2 {
    font-size: 2em;
}

.mlvw {
    margin-left: 17vw;
}

.mrvw {
    margin-right: 17vw;
}

.mrvw.pagerest {
    margin-right: 0;
}

.img_txt {
    line-height: 1.8em;
}

.img_txt p{
    margin: 1.17em 0;
}

.img_title,
.page_note_title {
    display: block;
    font-weight: 600;
    /*font-size: 1.2em;*/
    font-size: 1.17em;
    /*margin-bottom: 20px;*/
    margin-top: 1em;
    margin-bottom: 1em;

}

.img_title.restsubt {
    font-size: 1.2em;
}

.page_img1,
.page_img4 {
    width: 100%;
    /*height: calc( 50vw - 70px );*/
}

.page_img1 img,
.page_img4 img {
    width: 100%;
    height: calc( 50vw - 70px );
}

.page_img2 {
    width: 100%;

    /*margin-bottom: 20vw;*/
    /*margin-bottom: 60px;*/
}


.page_img2 img{
   height: 25vw; 
}

.page_img3 {
    width: 100%;
    /*height: 40vw;*/
}

.page_img3 img{
    height: 40vw;
}

.page_art .page_img1 img,
.page_art .page_img2 img,
.page_art .page_img3 img,
.page_art .page_img4 img {
    height: auto;
}

.page_img4 {
    margin-top: 20vw;
}

.page_art .page_img4 {
    margin-top: 0;
}

.page_note {
    /*width: 50%;*/
    width: calc(66vw - 120px);
    line-height: 1.8em;
    margin-top: 100px;
}

.page_note li {
    list-style-position: inside;
}

.page_note h2 {
    font-size: 2em;
}

.page_mo {
    display: none;
}

.list_title_grab {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap:60px;
}

.list_title h1 {
    margin-bottom: 0;
    font-size: 2em;
}

.list_content {
    display: flex;
    gap:10px;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 60px;
    /*margin-top: 60px;*/
    margin-top: calc(1em + 60px);
}

.list_content .list_item {
    /*OK bak*/
    /*width: calc( (100% - 10px) * (2/5));*/
    width: calc( (100% - 20px)/3);
}

/*OK bak*/
/*.list_content .list_item:nth-child(2),
.list_content .list_item:nth-child(3n) {
    width: calc((100% - 10px) * (3/5));
}*/

.list_item_img {
    overflow: hidden;
    height: 25vw;  
}


.list_item img {
    width: 100%;
    /*height: 400px;*/
    height: 25vw;
    object-fit: cover;

    transform: scale(1.05, 1.05);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.list_item:hover img {
        transform: scale(1, 1);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

.list_content .btn {
    margin-top: 60px;
}

.sec_subt {
    margin-bottom: 1.8em;
}

/*.list_title,
.list_content {
    display: flex;
    justify-content: center;
}*/

header .logo {
    /*text-align: center;*/
    flex-grow: 1;
}

.sec1_news .swiper-pagination {
    margin-top: 0;
    padding: 0 10vw;
    padding-right: calc(10vw + 60px);
}

.marlogo {
    margin: 60px 0;
    width: 200px;
    text-align: center;
}

.marlogo img{
    /*width: 100%;*/
    width: 120px;
    height: auto;
}

footer,
footer p,
.night footer,
.night footer p,
.night footer i,
.night footer a {
    color: var(--color_d);
}

.footer_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 60px;
}

.footer_container a:hover{
    color: var(--color_b);
}

.night .footer_container a:hover{
    color: var(--color_o);
}

/*.footer_menu_t {
    margin-top: 20px;
}*/

.footer_menu li {
    display: inline-block;
    margin-right: 20px;
}

.footer_lang div {
    display: inline-block;
}

.sec4_of {
    overflow: hidden;
}

.sec4set {
    min-height: 833px;
    height: auto;
    transition: height 0.3s ease, min-height 0.3s ease;
}

.sec4set .swiper-wrapper{
    z-index: 2;
}

.sec4set .my-button-prev, 
.sec4set .my-button-next {
    z-index: 3;
}

/*.sec4set .swiper-pagination{*/
.sec4set .sec4_dots {
    transition: height 0.3s ease;
    z-index: 1;
    display: block;
    width: 100%;
    height: 105px;
    /*align-items: flex-end;*/
    /*justify-content: flex-end;*/
}

/*menu*/

body.open {
    overflow: hidden;
    /*position: fixed;*/
}

#menu_mo {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 33%;
    min-width: 500px;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0s 0.45s, visibility 0s 0.45s;
}

.open {
    opacity: 1;
    visibility: visible;
}

#menu_mo.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0s, visibility 0s;
}


#menu_mo li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color_d);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
#menu_mo li a:hover:after { 
  width: 100%; 
  left: 0; 
}

.menuOutLayer {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    height: 100%;
    /*background: #f1edea;*/
    background: var(--color_dw);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: rgb(0 0 0 / .2) 0 0 24px;
    transition: box-shadow 0.45s cubic-bezier(.645,.045,.355,1), transform 0.45s cubic-bezier(.645,.045,.355,1), -webkit-transform 0.45s cubic-bezier(.645,.045,.355,1);
}

.night .menuOutLayer {
    background: var(--color_d);
}

#menu_mo.open .menuOutLayer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.menu_text {
    text-align: left;
    width: 90vw;
    padding-top: 5vw;
    padding-left: 5vw;
    padding-bottom: 0;
    font-size: 16px;
    margin-bottom: 60px;
}

.mo_book_btn {
    display: inline-block;
    background: #3c3c46;
    color: #fff;
    border-radius: 24px;
    padding: 10px 19px;
    font-size: 0.875rem !important;
    line-height: 1.125rem !important;
    z-index: 2;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
}

#n_book_mo {
    border: 0;
    text-align: center;
    text-align-last: center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.site-menu-nav-primary-wrapper {
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding-top: 100px;
}

.site-menu-nav-primary.bw-medium {
    padding-bottom: 45px;
}

.site-menu-nav-primary ul, .site-menu-nav-secondary ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu-nav-primary>ul {
    width: 100%;
    min-height: 0vw;
    font-size: 1em;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 0.45scubic-bezier(.645,.045,.355,1);
    transition: transform 0.45scubic-bezier(.645,.045,.355,1);
    transition: transform 0.45scubic-bezier(.645,.045,.355,1),-webkit-transform 0.45scubic-bezier(.645,.045,.355,1);
}


.site-menu-nav-primary>ul li {
    /*margin: 0 5vw;*/
    margin: 0 60px;
}

.site-menu-nav-primary>ul li a, .site-menu-nav-primary>ul li span {
    position: relative;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    transition: color 0.3s;
    text-decoration: none;
    padding: 0;
    margin: .6em 1em;
}

.site-menu-nav-primary>ul li a {
    margin: 1.5em 0;
    font-size: 1.17em;
    width: fit-content;
}

.menu_mo_lang {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    font-size: 1em;
}

#menuMask {
    opacity: 0;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 998;
    background: transparent;
}

#menuMask.open {
    opacity: 0;
    display: block;
}

/*.sun_btn,
.moon_btn {
    cursor: pointer;
}*/

.sun_btn.active,
.moon_btn.active {
    background: var(--color_dw);
}

.sun_b_icon {
    display: block;
}

/*bak ok*/
/*.sun_w_icon {
    display: none;
}

.moon_b_icon {
    display: none;
}*/

.moon_w_icon {
    display: block;
}


.newTitle {
    background-color: var(--color_dw) !important;
    transition: background-color 5s ease;
}

.night .newTitle {
    background-color: var(--color_d) !important;
    transition: background-color 5s ease;
}

/*pop ad*/
#sec_mask_ad, #sec_mask_ad_out {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.7);
}

.alert{
    position: fixed;
    width: 400px;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    top: 50%;
    transform: translate(-50% , -50%);
    left: 50%;
    display: block;
    /*color: #fff;*/
}

/*control via cookie*/
#alert,
#sec_mask_ad {
    display: none;
}

#alert_out{
    display: none;
}


.alert h1{
margin-top: 0px;
margin-bottom: 26px;
/*font-size: 24px;*/
font-size: 2em;
line-height: 1.5em;
}

.alert img{
    cursor: pointer;
}

/*.alert a{
color:#fff;
color:#cd8755;

}*/
.alert_btn {
    text-align: center;
}

.alert_close{
    position:absolute;
    
    top: 15px;
    right: 15px;
}

.alert .container{
    padding: 5%;

}
.alert img{
    width: 100%;
}

.alert .ad_img{
    background:#fff;
    height: 150px;
    width: 400px;   
}


.ad_content {
    padding: 34px;
    background-color: rgb(255, 255, 255);
    /*color: rgb(0, 0, 0);*/
    max-height: 300px;
    overflow: auto;
    line-height: 1.5em;
}

.ad_btn {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 86px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    background-color: #cf9b24;
}

.ads {
    border: 0;
    position: fixed;
    user-select: none;
    background: transparent;
    /*width: 100%;*/
    max-width: 100%;
    height: 212px;
    /*left: 0;*/
    /*left: -416px;*/
    left: -100%;
    bottom: 16px;
    z-index: 9998;
}

.ads.active {
    left: 0;
    -webkit-transition: left 0.5s ease-out;
    -moz-transition: left 0.5s ease-out;
    -o-transition: left 0.5s ease-out;
    -ms-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
}



/*.ads div {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}*/

.ad1 {
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-property: opacity, transform;
}

.ad1_1 {
    position: relative;
    /*color: #000;*/
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 432px;
    margin-top: 16px;
    box-shadow: rgb(0 0 0 / 15%) 0px 0px 20px;
    max-height: 196px;
}


.ad1_l {
    flex-basis: 30%;

}

.ad1_img {

}

.ad1_r {
    flex: 1 1 0%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 0px;
}

.ad1_r_content {
    width: 100%;
    overflow: hidden;
}

.ad1_r_content {
    flex: 1 0 0%;
    font-size: 14px;
    line-height: 1.5em;
    width: 100%;
    margin-bottom: 8px;
}

.ad1_r_c_title{
    margin-top: 0px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 17px;
    font-weight: normal;
    width: calc(100% - 32px);
}

.ad1_r_c_content {
    flex: 1 0 0%;
    font-size: 14px;
    line-height: 1.5em;
    width: 100%;
    margin-bottom: 8px;
    height: 91px;
    overflow: auto;
} 

.ad1_r_btn{
    color: #fff;
    background-color: #cf9b24;
    font-size: 14px;
    padding: 13px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.35s ease 0s;
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;  
}

/*.ad_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    cursor: pointer;
    color: #666;
    background: transparent;
}

.ad_close:hover {
    color: #000;
}

.ad_close_btn {
    vertical-align: middle;
    line-height: 32px;
}*/


/*.ad1_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    opacity: .8;
}

.ad1_close:hover {
    opacity: .5;
}

.ad1_close_btn {
    vertical-align: middle;
    line-height: 48px;
}*/


#sec_mask_ad_out, #alert_out {
    display: none;
}
/*end*/
/*cookie*/
 .cookie {
    /*width: 100%;*/
    width: 350px;
    position: fixed;
    display: none;
    bottom: 20px;
    right: 35px;

    /*background: #f4f4f4;*/
    background: #fff;
    z-index: 9999;
    box-shadow: rgb(0 0 0 / 15%) 0px 0px 20px;
}

.cookie_title{
    /*font-size: 1.5em;*/
    font-size: large;
    line-height: 1.5em;
    margin: 20px 0;
    display: block;
}

.cookie_btn {
    margin-top: 35px;
    text-align: center;
}

.cookieContent{
  margin: 0 auto;
  /*padding: 12px;*/
  padding: 35px;
  display: block;
  /*width: auto;*/
  width: fit-content;
  max-width: 1280px;
}

.cookieContent > p {
  vertical-align: top;
    margin-bottom: 10px;
  display: inline-block;
  padding-right: 30px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cookieContent > a {
  font-weight: bold;
}

.cookieContent > .bannerBlock_buttons {
  vertical-align: top;
  display: inline-block;
  background: #3A3A3A;
  color: #fff;
  cursor: pointer;
  margin-left: 13px;
  display: inline-block;
  width: 191px;
  text-align: center;
}

.cookieContent > .bannerBlock_buttons > .button_iii {
  border: 0;
  font-size: 14px;
}

.cookieTxt {
  /*display: inline-block;*/
  /*width: calc( 100% - 210px );*/
  width: 100%;
}

.cookhref {
  text-decoration: underline;
}

.night .cookhref {
    color: var(--color_d);
}   
/*end*/

.mo_booking_btn {
    /*display: flex;*/
    display: none;
    flex-wrap: nowrap;
    padding: 0 15px;
    width: 100%;
    position: fixed;
    bottom: 15px;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.mo_booking_btn > div:nth-child(1) {
    /*width:calc(100% - 50px);*/
    width:100%;
    background: var(--color_d);
    color: #fff;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    /*border: 1px solid #ccc;*/
}



.mo_booking_btn > div:nth-child(2) {
    width: 50px;
    background: var(--color_d);
    color: #fff;
    height: 50px;
    text-align: center;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;

    display: none;
}

.night .mo_booking_btn > div:nth-child(1),
.night .mo_booking_btn > div:nth-child(2) {
    background: var(--color_o);
}

.mo_booking_btn a{
    color: #fff;
}

/*new sec1 news*/
.n1_newsitem_title {
    width: 100%;
    display: flex;
    justify-content: center;
}

.n1_newsitem_title > div{
    position: absolute;
    top: -128px;
}

.n1_newsitem_title h2,
.n1_newsitem_title_w h2 {
    height: 1em;
    margin: 0;
    line-height: 1em;
    white-space: nowrap;
    font-size: 4em;
}

.sec1_news .swiper-slide .actimg.n1_newsitem_title_w {
    overflow: hidden;
    display: flex;
    justify-content: center;
    color: #fff;
    height: 400px;
    width: 100%;
}

.sec1_news .swiper-slide.swiper-slide-active .actimg.n1_newsitem_title_w {
    height: 500px;

}

.swiper-slide .n1_newsitem_title h2,
.swiper-slide .n1_newsitem_title_w h2 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0s 0s, visibility 0s 0s;
}

.swiper-slide.swiper-slide-active .n1_newsitem_title h2,
.swiper-slide.swiper-slide-active .n1_newsitem_title_w h2 {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s 0.45s, visibility 1s 0.45s;
}

.sec1_news .swiper-slide .actimg img {
    position: relative;
    /*bottom: -100px;*/
    height: 400px;
}

.sec1_news .swiper-slide.swiper-slide-active .actimg img {
    bottom: 0;
    height: 500px;
    transition: height .7s ease;
}

.actimg.n1_newsitem_title_w > div {
    position: absolute;
    top: -30px;
}

/*.sec_subt {
    display: none;
}*/

/*end*/


header.fixed {
    position: fixed;
    background: var(--color_dw);
    color: var(--color_d);
    transition: background .7s ease;
}

.night header.fixed {
    background: var(--color_d);
}

header .logo_b {
    display: none;
}

header.fixed .logo_b {
    display: block;
}

.night header.fixed .logo_b {
    display: none;
}

header.fixed .logo_w {
    display: none;
}

.night header.fixed .logo_w {
    display: block;
}

header.fixed .lang a {
    color: var(--color_d);
}

.lang a:hover,
header.fixed .lang a:hover {
    color: var(--color_b);
}

.night header.fixed .lang a {
    color: #fff;
}

.night .lang a:hover,
.night header.fixed .lang a:hover {
    color: var(--color_o);
}

header.fixed #menu_switch_open span,
header.fixed .header_line {
    background: var(--color_d);
}

.night header.fixed #menu_switch_open span,
.night header #menu_switch_open span,
.night header.fixed .header_line {
    background: #fff;
}

.page_btn {
    margin-top: 60px;
}

.page_content_noimg {
    /*text-align: center;*/
    line-height: 1.5em;
    font-size: 15px;
    /*width: 50%;*/
    max-width: calc(66vw - 120px);
    margin: 0 auto;
    /*margin-left: 17vw;*/
}

.page_content_noimg.page_rest {
    margin-bottom: 100px;
}

#banner_swiper_night {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    transition: opacity 5s ease, visibility 5s ease;
}

#banner_swiper {
    transform-origin: bottom center;
    will-change: transform;
    opacity: 1;
    visibility: visible;
    transition: opacity 5s ease, visibility 5s ease;
}

.banner_grab {
    position: relative;
    transform-origin: bottom center;
    will-change: transform;
}

.night .index_banner #banner_swiper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 5s ease, visibility 5s ease;
}

.night .index_banner #banner_swiper_night {
    opacity: 1;
    visibility: visible;
    transition: opacity 5s ease, visibility 5s ease;
}

.night .newTitle h2{
    color: #fff;
}

.aos-init img,
.aos-init .sec1_news .swiper-slide-active{
    transform: scale(0.7);
    transition: transform 0.8s ease;
}

.aos-init.aos-animate img,
.aos-init.aos-animate .sec1_news .swiper-slide-active{
    transform: scale(1);
}

/*img player*/
.page_swiper img {
    /*height:60vh;*/
    height:80vh;
    min-height: 500px;
    width:auto;
}

.night .page_swiper .swiper-pagination-bullet {
    border-bottom: 1px solid var(--color_d);
}


/*.page_swiper .swiper-wrapper {
  width: 50%;
}*/

.page_swiper .swiper-slide {
  text-align: center;
  width: auto;
}

/*#newC, #newC img {
  height: 60%;
}*/



/*#newC img {
    object-fit: fill;
}*/

/*#newC {
    display:none;
}
*/
/*.playVideoIcon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(style/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}*/

.sectionImg {
    display: none;
    position: fixed;
    top: 0px;
    /*left: 110px;*/
    height: 100%;
    background: rgba(204, 204, 204, 0.8);
    z-index: 1500;
    width: 100%;
}

#imgCarouselOutlay {
    display:none;
    position:fixed;
    /*left: 110px;*/
    top: 50%;
    transform: translateY(-50%);
    z-index: 1501;
    display: none;
    width: 100%;
    /*height: 60vh;*/
    height: 80vh;
    min-height: 500px;
}

/*closeA*/
#closeA,
.closeA {
    display: none;
    position: fixed;
    top: 40px;
    /*right: 40px;*/
    right: 20px;
    z-index: 1502;
    width: 23px;
    height: 18px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
}

.closeA {
    top: 10px;
    right: 10px;
    display: block;
    position: absolute;
    width: 16px;
}

#closeA span,
.closeA span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #666;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

#closeA span:nth-child(1),
.closeA span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#closeA span:nth-child(2),
.closeA span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#closeA span:nth-child(3),
.closeA span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#closeA.open span:nth-child(1),
.closeA.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    right: -5px;
    /*background: #fff;*/
    background: var(--color_d);
    box-shadow: 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px rgba(255, 255, 255, 0.3);
}

#closeA.open span:nth-child(2),
.closeA.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

#closeA.open span:nth-child(3),
.closeA.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
    right: -5px;
    width: 100%;
    /*background: #fff;*/
    background: var(--color_d);
    box-shadow: 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px rgba(255, 255, 255, 0.3);
}

.night #closeA.open span:nth-child(1),
.night .closeA.open span:nth-child(1),
.night #closeA.open span:nth-child(3),
.night .closeA.open span:nth-child(3) {
   background: #fff;
   box-shadow: 1px 0 rgba(0, 0, 0, 0.3) inset, 0 1px rgba(0, 0, 0, 0.3);
}

#ads .closeA.open span:nth-child(1),
#ads .closeA.open span:nth-child(3),
.closeA.open.b_close span:nth-child(1),
.closeA.open.b_close span:nth-child(3) {
    background: var(--color_d);
}

.closeA.open span:nth-child(3) {
    top: 11px;
}

.img_cotent {
    font-size: 11px;
}


/*.sec_3 .newTitle,*/
.sec_3 .newTitle.hide {
    opacity: 0 !important;
    transition: opacity 0s;
}

.swiper-slide-active .sec_3 .newTitle {
    opacity: 1;
    transition: opacity .3s ease;
}

.pageart > div {
    margin: 2em 0;
}

.pageart img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.page_content table{
    border-spacing: 2px;
    border-collapse: separate;
}

.page_content tr td{
            padding:8px;
            border:1px rgba(255,255,255,0) solid;
            background:rgba(0, 0, 0, 0.1);
}

.page_content tr.light td{
            padding:8px;
            border:1px rgba(255,255,255,0) solid;
            background:rgba(0, 0, 0, 0.05);
}

.page_content tr.dark td{
            padding:8px;
            border:1px rgba(255,255,255,0) solid;
            background:rgba(0, 0, 0, 0.2);
            color:#fff;
}


.page_txt .text p,
.page_txt .text a{
    white-space: break-spaces;
    word-wrap: break-word;
    width: 100%;
}

.table-wrapper {
    width: 100%;
    table-layout: fixed;
}

.table-wrapper td{
    width: 70%;
    white-space: break-spaces;
    word-wrap: break-word;
}

.page_new_sty {
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    width: 100%;
    margin-top: 100px;
    color: var(--color_d);
    line-height: 1.5em;
    /*justify-content: center;*/
}


.page_new_sty.center_sty3,
.page_new_sty.center_sty2,
.page_new_sty.center_sty1 {
    justify-content: center;
}

.page_new_sty > div{
    width: calc((100% - 30px) / 4);
    flex-grow: 1;
    /*padding: 10px;*/
    padding: 1.8em;
    background: #fff;
    /*min-width: 322.5px;*/
    max-width: calc((100% - 30px) / 4);
    word-wrap: break-word;
}

.page_new_sty > div h3 {
    margin-top: 0;
}

.page_map {
    display: flex;
    flex-wrap: wrap;
    gap:60px;
    width: 100%;
    margin-top: 100px;
}

.page_map  .page_map_l,
.page_map  .page_map_r {
    width: calc((100vw - 180px) /2);
    flex-grow: 1;
    height: 100%;
}

.page_map  .page_map_l {
    position: sticky;
    top: 75px; 
    height: calc((100vw - 180px) / 2);
}

.page_map .page_map_r {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    /*gap: 60px;*/
}



.page_map_r img{
    width: 100%;
    /*height: calc((50vw - 90px)* 4/6);*/
    height: auto;
    object-fit: cover;
}

.page_map_r .map_item_txt {
    padding: 10px;
    line-height: 1.5em;
}

.page_map iframe {
    width: 100%;
    height: calc((100vw - 180px) /2);
}

.page_map  .page_map_l > div {
    height: calc((100vw - 180px) /2);
    color: var(--color_d);
}

.gm-ui-hover-effect {
  display: none !important;
}


.page_map_item {
    padding-bottom: 60px;
}

.page_map_item:last-of-type {
    min-height: calc((100vw - 180px) / 2 + 100px);
}

.pagerest_list {
    display: flex;
    gap:10px;
    width: 100%;
    flex-wrap: wrap;
    /*row-gap: 60px;*/
    margin-top: 100px;
}

.pagerest_list img {
    height: 25vw;
}


.pagerest_list .pagerest_list_item {
    width: calc((100% - 20px) / 3);
    height: 100%;
}

/*.pagerest_list .img_txt {
    text-align: center;
}*/

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

/*new header top*/
#nav_group{
    background: var(--color_d);
    color:#fff;
    padding: 0 60px;
    position:relative;
    z-index: 1000;
    overflow:hidden;
    height: 0;
    
    -webkit-transition: height 0.3s ease-out;
    -moz-transition: height 0.3s ease-out;
    -o-transition: height 0.3s ease-out;
    -ms-transition: height 0.3s ease-out;
    transition: height 0.3s ease-out;       
}

.night #nav_group{
    background: var(--color_o);
}

#nav_group.open{
    height: 45px;
}

#nav_group > div{
    display:inline-block;
    vertical-align:middle;
    padding: 10px 0;
}

#nav_group .brand{
    margin: 0 20px;
}
#group_logo{
    width:25px;
    height:45px;
    display:inline-block;
    vertical-align: middle;
    position:relative;
}

#group_logo >img{
    width:100%;
}

#nav_group a{
    color:#fff;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;    
}

#nav_group a:hover{
    /*color:#999;*/
    text-decoration: none;
}

.page_content img.imgplayer {
    cursor: pointer;
}



/*###################*/

@media (min-width: 432px){

    .ad1_1 {
        margin: 16px;
        width: 400px;
    }

}
/*end*/

@media screen and (min-width: 600px) {

    .sec1_news_title {
        /*margin: 0 60px;*/
        white-space: nowrap;
        background: linear-gradient(to bottom, #000 58%, #fff 42%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sec_3 .newTitle {
        /*width: calc(56vw - (56vw - 300px) * 0.35);*/
        width: calc( (100vw - 120px)*0.55 );
        padding-bottom: 0;
    }

    .newTitle {
        position: relative;
        /*background-color: var(--color_dw)!important;*/
        filter: invert(100%);

        @supports (mix-blend-mode: difference) {
        background-color: transparent;
            &::before {
              content: "";
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0;
              z-index: 1;
              background-color: white;
              mix-blend-mode: difference;
              pointer-events: none;
              transition: background-color 5s ease;

            }
        }
    }

    .sec_2 .newTitle,
    .sec_3 .newTitle {
        opacity: 0;
    }

    .swiper-slide-active .sec_2 .newTitle,
    .swiper-slide-active .sec_3 .newTitle {
        opacity: 1;
        transition: opacity 1s 1s ease;
    }


    .night .newTitle {
        filter: invert(0%);
        color: #fff;
        @supports (mix-blend-mode: difference) {
        background-color: transparent;
            &::before {
              background-color: initial;
            }
        }
    }

    .sec_newtc {
        overflow: hidden;
        color: var(--color_d);
        z-index: 3;
        position: absolute;
        top: 0;
    }

    .sec_2_r .sec_newtc h2,
    .sec_3_l .sec_newtc h2 {
        color: var(--color_d);   
    }

    .night .sec_2_r .sec_newtc h2,
    .night .sec_3_l .sec_newtc h2 {
        color: #fff;   
    }





}


@media screen and (max-width: 980px) {
    .page_new_sty > div{
        width: calc((100% - 20px) / 3);
        max-width: calc((100% - 20px) / 3);
    }
    .sec_set.sec1{
        padding: 0 60px;
    }
}


@media screen and (max-width: 900px) {
    .booking_tool_grab {
        justify-content: left;
    }
}

@media screen and (max-width: 800px) {
    .page_new_sty {
        /*justify-content: center;*/
        padding: 0;
        margin-top: 60px;
    }

    .page_new_sty > div {
        width: 100%;
        max-width: 100%;
    }

    .page_new_sty > div{
        width: calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
    }

    .page_new_sty.center_sty3 {
        justify-content: initial;
    }


}

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

    h1,h2 {
        font-size: 1.5em;
    }

    .newTitle {
        margin: 1em 0;
        padding: 0 20px;
    }

    .sec_2_r .newTitle h2 {
        margin: 0;
    }

    .sec_2_r_txt h3 {
        margin-top: 0;
    }

    .header {
        padding: 20px;
    }

    .lang {
        display: none;
    }

    .logo {
        width: 100%;
        text-align: right;
        /*margin-right: 40px;*/
    }

    header .logo {
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .logo {
        text-align: left;
        margin-bottom: 40px;
    }

    .logo img {
        /*height: 15px;*/
        /*height: 12px;*/
        /*height: 20px;*/
        height: 18px;
    }

    header .btn {
        min-width: auto;
        /*font-size: .5em;*/
        font-size: 1em;
        padding: 10px;
    }

    .menu_area {
        /*position: absolute;
        right: 20px;
        display: none;*/
        display: block;
        width: 100px;
        opacity: 0;
        position: relative;
        overflow: hidden;
        right: 0;
        flex-grow: 0;
    }

    .header_line {
        display: none;
        margin: 0 20px;
        margin-left: 60px;
    }

    .sec_set {
        margin-bottom: 60px;
    }
    .logo_sec1_l_img {
        text-align: left;
    }

    .logo_sec1_r_img {
        width: 70%;
        text-align: right;
    }

    .logo_sec1_l_img img,
    .logo_sec1_r_img img {
        width: 70%;
        max-width: 100%;
    }

    .banner_txt .title {
        width: 100%;
    }

    .sec_2,
    .sec_3 {
        flex-wrap: wrap;
    }

    .sec_2 {
        margin: 0;
    }

    .sec_2_l,
    .sec_2_r {
        width: 100%;
    }

    /*.sec_2_r > div {*/
    .sec_2_r_txt {
        padding: 0 20px;
        margin-left: 0;
    }

    .sec_2 img {
        height: 80vw;
        min-height: auto;
    }

    .sec_2_r h2 {
        text-align: left;
        opacity: 1;
        font-size: 2em;
        margin-left: 0;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    /*.sec_2_r > div > div h3 {*/
    .sec_2_r_txt > div h3 {
        margin-top: 0;
    }

    .sec1_news .my-button-next, 
    .sec1_news .my-button-prev,
    .sec2_swipwr .my-button-next, 
    .sec2_swipwr .my-button-prev,
    .sec3_swipwr .my-button-next, 
    .sec3_swipwr .my-button-prev {

        top: 40vw;
        opacity: 1;
        pointer-events: auto;
        box-shadow: 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px rgba(255, 255, 255, 0.3);
        border-bottom: 2px solid var(--color_w);
        border-left: 2px solid var(--color_w);
        z-index: 1;
    }

    /*.sec_2_r > div > div h3,
    .sec_2_r > div > div p,
    .sec_2_r > div > div .btn {*/
    .sec_2_r_txt > div h3,
    .sec_2_r_txt > div p,
    .sec_2_r_txt > div .btn {
        opacity: 1;
        position: relative;
        right: 0;
    }

    .sec_3_r {
        /*min-height: auto;*/
        position: relative;
        z-index: 1;
        width: 100%;
        height: 60vw;
    }

    .sec_3_r img{
        margin-top: 40px;
        min-height: auto;
        object-position: 
    }

    .sec_3_l > div > div {
        flex-wrap: wrap;

    }

    .sec_3_l h2 {
        font-size: 3em;
        margin-bottom: 1em;
        padding-right: 0;
    }

    .sec_3_l > div > div {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-bottom: 0;
        width: 100%;
    }

    .sec_3_l_txt {
        width: 100%;
        /*padding-right: 0;*/
        padding: 0 20px;
        /*order: 2;*/
    }

    .sec_3_l_txt h2 {
        font-size: 2em;
    }


    .footer_content {
        flex-wrap: wrap;
        /*gap: 40px;*/
    }
    
    .footer_content_l {
        width: 100%;
        /*text-align: left;*/
    }

    /*.foot_icon_grab {
        justify-content: flex-start;
    }*/

    /*.footer .logo {
        text-align: left;
    }*/

    .footer {
        background: var(--color_w);
        padding-bottom: 40px;
    }

    .sec_set.sec1,
    .footer_container {
        padding: 0 20px;
    }

    .footer_container > div {
        padding: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .newf .footer_container > div {
        padding-top: 80px;
        flex-wrap: wrap;
        /*gap: 40px;*/
        gap: 80px;
    }

    .footer_content_1,
    .footer_content_2,
    .footer_content_3 {
        width: 100%;
        align-items: center;
    }

    .footer_content_2,
    .footer_content_3 {
        /*align-items: flex-start;*/
        /*justify-content: flex-start;*/
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    footer .footer_content_1 .logo {
        text-align: center;
        margin-bottom: 0;
    }

    .footer_content_2 img {
        width: 150px;
    }

    .footer_content_r {
        justify-content: start;
        margin-top: 40px;
    }

    .banner_txt {
        padding: 60px 20px;
    }

    .banner_txt h1 {
        font-size: 3em;
        margin-bottom: 0;
    }

    .sec_3_l_img img {
        width: 100%;
    }

    .mo_mode {
        display: block;
    }

    .pc_mode {
        display: none;
    }

    .sec_3_mo_img {
        position: relative;
    }
    .sec_3_mo_img img {
        object-fit: cover;
    }
    
    .sec_3_mo_img_r {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .sec_3_mo_img_r img{
        width: 70%;
        height: 100vw;
        object-position: 80% 0;
    }

    .sec_3_mo_img_l{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .sec_3_mo_img_l img{
        width: 45%;
        height: 60vw;
    }

    .swiper-pagination {
        /*margin-left: 20px;*/
        padding: 0 20px;
    }

    .footer_content_3 img {
        display: none;
    }

    .copyright.newfooter {
        /*padding: 0 20px;
        padding-bottom: 20px;*/
        padding: 20px 0;
        padding-bottom: 40px;

    }

    .mySwiper {
        width: 60%;
        margin-left: 20%;
    }

    .sec1_news .swiper-slide img {
        height: 60vw;
    }

    .sec1_news .swiper-slide-active .actimg {
        height: calc(60vw + 40px);
    }

    .sec1_news_title {
        font-size: 2em;
    }

    .sec4 {
        /*width: 60%;*/
        /*margin-left: 20%;*/
        width: 100%;
    }

    /*.sec4_of {
        width: 100%;
        overflow-x: hidden;
        height: auto;
    }*/

    .sec4set {
        transition: height 0.3s ease;
    }

    .sec4set .swiper-pagination {
        transition: margin-top 0.3s ease;
    }

    .booking_tool_grab {
        display: none;
    }

    .page_pc {
        display: none;
    }

    .page_mo {
        display: block;
    }

    .page_set {
        padding: 0 20px;
    }

    /*.bred_grab {
        gap:20px;
    }*/

    .page_title {
        text-align: left;
        font-size: 1.5em;
    }

    .banner.pgae_banner {
        height: 50vh;
        min-height: 400px;
    }

    .banner.pgae_banner img {
        height: 50vh;
        min-height: 400px;
    }

    .page_txt {
        margin-bottom: 60px;
    }

    .page_img1,
    .page_img2,
    .page_img3,
    .page_img4,
    .img_txt {
        margin-bottom: 60px;
    }

    .page_img4 {
        margin-top: 0;
    }

    /*.page_img1,
    .page_img4 {
        height: calc( 80vw - 40px );
    }

    .page_img2 {
        height: calc( 100vw - 40px );
    }

    .page_img2 img{
        height: 100%;
    }

    .page_img3 {
        height: calc( 120vw - 40px );
    }*/

    .page_img1,
    .page_img2,
    .page_img3,
    .page_img4 {
        height: auto;       
    }

    .page_img1 img,
    .page_img2 img,
    .page_img3 img,
    .page_img4 img {
        height: 60vw;
        min-height: 200px;
    }

    .page_note {
        width: 100%;
        margin-left: 0;
        margin-top: 60px;
        /*padding: 0 20px;*/
    }

    .list_content .list_item,
    .list_content .list_item:nth-child(2),
    .list_content .list_item:nth-child(3n) {
        width: 100%;
    }

    .list_item img,
    .pagerest_list img {
        height: 60vw;
        min-height: 200px;
    }

    .list_title_grab {
        flex-wrap: wrap;
    }

    .list_title,
    .list_txt {
        width: 100%;
    }

    .menu_icon_garb {
        width: 100px;
    }

    /*.footer_menu {
        padding: 0 50px;
    }*/

    /*.sec4txt {
        position: relative;
    }*/

    .sec4_title {
        font-size: 2em;
        margin-bottom: 0;
    }

    .sec4_subtitle {
        margin-bottom: 60px;
    }

    .sec1_news .swiper-pagination {
        margin-top: 60px;
        /*padding: 0 20px;*/
    }

    #menu_mo {
        min-width: 100%;
        width: 100%;
    }
    .site-menu-nav-primary>ul li {
        margin: 0 20px;
    }

    /*pop ad*/
    #alert, #alert_out {
        width: 90%;
    }

    #alert .ad_img, #alert_out .ad_img{
        width: 100%;
    }

    .ad1_1 {
        width: auto;
        margin: 0 16px;
        max-height: 100%;
    }

    .ads {
        width: 100%;
        height: auto;
        bottom: 0px;
    }

    .cookie {
        width: calc(100% - 40px);
        right: 0;
        margin: 0 20px;
    }

    .mo_booking_btn {
        display: flex;
    }

    .sec1_news .swiper-slide .actimg.n1_newsitem_title_w,
    .sec1_news .swiper-slide .actimg img {
        height: 60vw;
    }

    .sec1_news .swiper-slide.swiper-slide-active .actimg.n1_newsitem_title_w,
    .sec1_news .swiper-slide.swiper-slide-active .actimg img {
        height: calc(60vw + 40px);
    }

    /*.n1_newsitem_title,
    .actimg.n1_newsitem_title_w > div {
        display: none;
    }*/

    .sec_subt {
        display: block;
    }

    .list_item_img {
        height: 60vw;
        min-height: 200px;
    }

    .sec4set {
        height: 671px;
    }

    .cursor_sty {
        display: none;
    }

    .sec_newtc {
        display: none;
    }

    .n1_newsitem_title h2, .n1_newsitem_title_w h2 {
        font-size: 2em;
    }

    /*.n1_newsitem_title > div{
        top: -53px;
    }*/

    .n1_newsitem_title > div{
        top: calc(-100px - 2em);

    }

    .actimg.n1_newsitem_title_w > div {
        top: -15px;
    }

    .sec1newsTxt .sec_subt {
        display: none;
    }

    .sec1_news {
        margin-top: calc(100px + 2em);
    }

    .sec1_news .swiper-pagination {
        width: calc(100vw - 40px);
        padding: 0;
        margin-left: calc(-20vw + 20px);
    }
  

    .page_swiper .swiper-wrapper {
        align-items: center;
    }

    .page_swiper img {
        height:auto;
        min-height: auto;
        width:100vw;
    }

    .swiper-slide.swiper-slide-active .n1_newsitem_title_w h2 {
        display: none;
    }

    #menu_switch_open {
        width: 36px;
    }

    .page_map {
        flex-direction: column;
        /*gap: initial;*/
    }

    .page_map .page_map_l {

        position: relative;
        width: 100vw;
        height: 100vw;
        top: 0;
    }

    .page_map .page_map_l > div {
        height: 100%;
    }

    .page_map .page_map_r {
        padding-right: 0;
        width: 100%;
        padding: 0 20px;
    }


    .page_title_grab h2 {
        text-align: left;
    }

    .page_mo .page_note.page_note_expsty {
        display: none;
    }

    .page_note_expsty {
        padding: 0 20px;
    }

    .sec4set .sec4_dots {
        height: 306px;
    }

    .pagerest_list .pagerest_list_item {
        width: 100%;
    }


    .pagerest .img_title,
    .page_note h2 {
        font-size: 1.5em;
    }

    .pagerest .img_title.restsubt {
        font-size: 1.2em;
    }

    #nav_group{
        padding: 0 20px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer_menu_t {
        text-align: center;
        width: 100%;
    }

    .footer_menu {
        margin: 0;
    }

    .footer_content_3 {
        padding-bottom: 20px;
    }

    .sec_set.footer_container {
        margin-bottom: 0;
    }


     .cookie {
        bottom: 80px;
    }

    /*.page_map_r img {
        height: calc((100vw - 40px) * 4 / 6);
    }*/


    
    /*########*/
}