@charset "UTF-8";
/* global */
/*
body {
    font-family: "Noto Sans TC", sans-serif;
    color: #333333;
	font-size: 1em;
    overflow-x: hidden;
}
*/
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
/*
p, .p {
    margin-bottom: 10px;
	line-height: 1.5;
}
*/
.hidden {
    overflow: hidden;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	width: 71.979vw;
	margin: auto;
}
main {
	
}
section {
	
}
.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
}
img {
    vertical-align: bottom;
}
.max100 {
    max-width: 100%;
}
.full {
    width: 100%;
}
.r {
    position: relative;
}
.a {
    position: absolute;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}
.grid {
    display: grid;
}
.grid-2-item {
    gap: 1vw;
    grid-template-columns: repeat(2, 1fr);
}
.grid-3-item {
    gap: 0.4vw;
    grid-template-columns: repeat(3, 1fr);
}
.x_center {
    left: 50%;
    transform: translateX(-50%);
}
.inner_in {
    padding: 0 4vw;
    width: 100%;
    max-width: 100%;
}

/* header */
header {
	
}
nav {
	
}

/* footer */
footer {
	
}

/* title & font-size */
h2 {
    color: #259bb1;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.5;
}
h3 {
    margin-bottom: 20px;
}
h4 {
    color: #259bb1;
}
h5 {
    color: #ffffff;
}
big {
	
}
small {
    font-size: 20px;
}

/* breed */
.bread {
    margin-bottom: 40px;
}
.bread a {
    position: relative;
    padding-right: 30px;
}
.bread a:hover {
    text-decoration: underline;
}
.bread a:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #EEA71B;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	background-color: transparent;
	padding: 0;
}

/* form */
.form_wrap {
    margin-bottom: 20px;
}
.form_wrap > label {
    display: block;
    color: #259bb1;
}
textarea {
	width: 100%;
	resize: none;
	padding: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 10px;
    border: 1px solid #235535;
    height: 40px;
    box-shadow: none;
    margin: 0;
    color: #333333;
}
.input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
    background: #ffffff;
}
.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 10px;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    display: inline-block;
/*	line-height: 1.5;*/
}
.checkbox_wrap input[type='checkbox'] + label:before {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 5px;
    border: 2px solid #ffffff;
    top: 50%;
	margin-top: -.5em;
    left: 2px;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
.checkbox_wrap input[type='checkbox']:disabled + label {
    color: #999999;
}
.checkbox_wrap input[type='checkbox']:disabled + label:before {
    border-color: #999999;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 100px;
    border-color: #259bb1;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}

/* elements */
.bar1 {
    background: #4793e1;
    text-align: center;
    color: #ffffff;
    padding: 0.7vw;
    position: relative;
    font-size: 1.6vw;
    font-weight: 900;
    margin-bottom: 1vw;
    display: none;
}

/* tab */
.tab {
	background: transparent;
	font-family: "Noto Sans TC", sans-serif;
	font-style: italic;
    margin: 0;
    border: 0;
}
.tab_btn {
	display: flex;
	gap: 0.5vw;
}
.tab_btn > * {
	/*
	padding: 0 2px;
	position: relative;
	z-index: 1;
	padding: 10px;
	text-align: center;
	border: 1px solid #cccccc;
	cursor: pointer;
    flex: 1;
*/
	cursor: pointer;
	flex: 1;
	/* border-right: 0.2vw dashed #9e9e9e; */
	background: #fcda65;
	font-size: 1.25vw;
	font-weight: 900;
	border-radius: 1.5vw 1.5vw 0 0;
	padding: 0.7vw 0;
	line-height: 1;
	color: #000;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	}
.tab_btn .tab_bg {
    display: block;
    /* height: 7.5vw; */
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
/*    opacity: 0.6;*/
}
.tab_btn > *:last-of-type {
    border-right: 0;
}
.tab_btn > *.show {
    background: #0a4d9a;
    color: #fff;
}
.tab_con {
/*	border: 1px solid #cccccc;*/
/*	border-top: none;*/
}
.tab_con > div {
/*	opacity: 0;*/
	transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
	display: none;
	padding: 1.3vw 0 0;
}
.tab_con > div.show {
	display: block;
}
.tab_con > div.fade {
/*	opacity: 1;*/
}
.tab_con .inner {
	padding: 0 94px;
}

/* acc */
.acc_btn {
    cursor: pointer;
}
.acc_con {
    display: none;
}


/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.list1 {
    background: #ffffff;
    border-radius: 10px;
}
.list1 tr {
    border-bottom: 1px solid #c33333;
    padding: 10px 20px;
}
.list1 tr:last-child {
    border-bottom: 0;
}
.list1 td {
    padding: 10px 20px;
    vertical-align: middle;
}
.list1 td:first-child {
    padding-right: 5px;
}
.list1 td:last-child {
    padding-left: 5px;
    width: 110px;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 50px auto;
}
.pagers .num {
    color: #666666;
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}
.pagers .num.cur,
.pagers .num:hover {
    background: #e5e5e5;
}
.pagers .btn {
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}

/* owl-carousel */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 0px;
    background: url(../images/arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 1vw;
    height: 1.8vw;
    position: absolute;
    top: 50%;
    margin-top: -0.9vw;
}
.owl-carousel .owl-nav button.owl-prev {
    left: -2vw;
}
.owl-carousel .owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: -2vw;
}
.owl-carousel .owl-dots {
    text-align: center;
}
.owl-carousel .owl-dots button.owl-dot {
    width: 0.7vw;
    height: 0.7vw;
    background: #c1c0c0;
    display: inline-block;
    border-radius: 100px;
    margin: 0 0.36vw;
}
.owl-carousel .owl-dots button.owl-dot {
    transition: all .3s;
}
.owl-carousel .owl-dots button.owl-dot.active, .owl-carousel .owl-dots button.owl-dot:hover {
	background: #909090;
}

/* popup */
.p_layout {
    position: relative;
/*    background: #fff;*/
    padding: 6vw 5vw;
    background-image: url(../images/POP.png);
    background-size: 100% 100%;
    aspect-ratio: 1375/1440;
    /*    font-size: 0.9vw;*/
    min-height: 50vh;
    margin: 0vw 16vw;
/*    border: 1vw solid #f49f00;*/
/*    outline: 0.5vw solid #e94609;*/
/*    border-radius: 3vw;*/
}
.mfp-container {
    padding: 0;
}
.mfp-bg {
    background: rgba(0,0,0,.75);
}
button.mfp-close {
    background-image: url(../images/close-01.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    font-size: 0px;
    width: 2.8vw;
    height: 2.8vw;
    right: 3vw;
    top: 3vw;
}
.mfp-close:active {
    top: 3vw;
}

/* scrollbar */
.scroll_con {
/*    height: 80vh;*/
/*    padding-right: 3vw;*/
/*    position: relative;*/
}
.mCSB_scrollTools .mCSB_draggerRail {
/*	width: 0.9vw;*/
	background: none;
/*	height: calc( 100% - 100px );*/
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	border-radius: 10px;
	width: 0.9vw;
	background: #fff;
    box-shadow: 0 0 0.3vw rgba(0,0,0,0.5);
/*	border: 4px solid #fff;*/
}
/*
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
	position: absolute;
	content: '';
	left: 0;
	top: calc( 70% - 4px );
	width: 100%;
	height: 4px;
	background: #fff;
}
*/
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background: #fff;
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background: #fff;
}
.mCSB_outside + .mCSB_scrollTools {
	right: 20px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
	top: 50px;
	bottom: 50px;
}
.mCSB_scrollTools .mCSB_dragger {
/*	height: calc( 100% - 100px ) !important;*/
}

/* event global */
.bg {
    background-size: 100% 100%;
    background-position: center;
}

/* 網路門市 */
#kv {
    background-image: url(../images/kv.jpg);
    height: 35vw;
}
#kv .owl-wrap {
    padding: 24.8vw 37.6vw 0 14vw;
}
.owl-wrap .owl-item img {
    max-width: 100%;
    width: auto;
}



.btn {
    display: inline-block;
/*    background: green;*/
/*    opacity: .5;*/
    /*    border-radius: 1000px;*/
}
.event_content .btn:focus {
    box-shadow: none;
}

#part1 .inner_in {
    top: 9.1vw;
}
#part1 .btn {
/*    position: absolute;*/
}
#part1 .btn_tab {
    position: absolute;
    width: 50%;
    height: 5vw;
    top: 2vw;
    left: 0;
    border-radius: 3vw 3vw 0 0;
}
#part1 .btn1 {
    width: 100%;
    height: 4vw;
    margin-bottom: 1.5vw;
}
#part1 .btn2 {
    height: 14vw;
}
.flex_link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.flex_link a {
    flex: 1;
    height: 100%;
/*    background: red;*/
/*    opacity: .5;*/
}
/* Dots */
.slick-dotted.slick-slider
{
/*    margin-bottom: 30px;*/
}

.slick-dots
{
/*    position: absolute;*/
/*    bottom: -25px;*/

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
    margin-top: 1vw;
    margin-bottom: 2vw;
    line-height: 1;
}
.slick-dots li
{
    width: 0.7vw;
    height: 0.7vw;
    background: #c1c0c0;
    display: inline-block;
    border-radius: 100vw;
    margin: 0 0.4vw;
    cursor: pointer;
    transition: all .3s;
}
.slick-dots li:hover, .slick-dots li.slick-active {
    background: #909090;
}
.slick-dots li button {
    font-size: 0;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    display: none;
}
#part1 .slick-dots {
    position: absolute;
    bottom: 1.5vw;
    margin-bottom: 1vw;
}
#part1 .slick-dots li {
    width: 0.52vw;
    height: 0.52vw;
    background: #fff;
    margin: 0 0.6vw;
}
#part1 .slick-dots li:hover, #part1 .slick-dots li.slick-active {
    opacity: .5;
}
#part2 .inner_in {
    top: 7.3vw;
}
#part2 .btn1 {
    height: 14vw;
}
#part2 .flex {
    margin-top: 11vw;
    margin-left: 34vw;
}
#part2 .btn2 {
    height: 3vw;
    flex: 1;
}
#part3 .inner_in {
    top: 7.6vw;
}
#part3 .grid {
    width: 59vw;
    margin: auto;
}
.btn-detail {
    width: 13.125vw;
    margin: 0.5vw auto 0;
}
#part4 .inner_in {
    top: 8vw;
}
.two-slider .slick-slide {
    margin: 0 0.5vw;
}
#part4 .grid {
    margin-top: 2vw;
}

.box1 {
/*
    border: 0.5vw solid #f49f00;
    outline: 0.26vw solid #e94609;
    border-radius: 2.5vw;
    width: 66vw;
    margin: auto;
    position: relative;
    padding: 4vw 2.6vw 2.5vw;
    background: #fff;
*/
}
.box_top {
    background-size: 100% 100%;
    height: 7.343vw;
}
.box_mid {
    background-image: url(../images/box-mid.png);
    background-size: contain;
/*    min-height: 1000px;*/
}
.box_btm {
    background-image: url(../images/box-btm.png);
    background-size: 100% 100%;
    height: 5.625vw;
}
.box1 .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}
.btn-mall {
    display: block;
    width: 13.125vw;;
    margin: 1.5vw auto 0;
    
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1vw;
    
    display: none;
}
.btn-mall.show {
    display: block;
}
.btn-more, .btn-more2 {
    width: 13.125vw;
    margin-top: .5vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.btn-close {
    display: block;
    width: 20vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2vw;
    display: none;
}
.btn-close.show {
    display: block;
}
.box1 .con {
    overflow: hidden;
    height: 58vw;
}
.box1 .con.show {
    height: auto;
}
.tab .con {
    height: 56vw;
}
.btn-calendar {
    width: 15.729vw;
    margin: 1.5vw auto;
}
#part8 .con {
    height: auto;
}
#part8 .con.show {
/*    height: auto;*/
}

.side_menu {
    position: fixed;
    width: 12.6vw;
    right: 0.5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 51;
}
.side_menu .btn_wrap {
    background: #fee7c5;
    border: 0.1vw solid #5b3333;
    /*    padding: 0 0.6vw;*/
    width: 10.4vw;
    margin: auto;
}
.side_menu .btn_wrap a {
    display: block;
    color: #5b3333;
    font-size: 0.9vw;
    font-weight: bold;
    text-align: center;
    padding: 1vw 0.6vw;
    position: relative;
}
.side_menu .btn_wrap a:hover, .side_menu .btn_wrap a.cur {
    color: #ffffff;
    background: #e94609;
}
.side_menu .btn_wrap .light {
    color: #ffffff;
    background: #e94609;
}
.side_menu .btn_wrap a:after {
    position: absolute;
    content: '';
    width: 86.5%;
    height: 0.05vw;
    background: #5b3333;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.side_menu .btn_wrap a:last-of-type:after {
    opacity: 0;
}
.btn-hamigo {
    width: 27.5vw;
    display: block;
    margin: 3vw auto 0;
}

.bg-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    background: url("../images/bg-main.jpg") center/cover no-repeat;
    z-index: 0;
}
.section-content {
    position: relative;
    z-index: 1;
    margin-top: -100vh;
    padding: 0;
}



/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

@media only screen and (max-width: 769px) {
    #kv {
        background-image: url(../images/kv-m.jpg);
        height: 70.8vw;
/*        margin-top: 10vw;*/
    }
    .inner {
        width: auto;
    }
    .inner_in {
        padding: 0 10vw;
    }
    .bg-sticky {
        background: url(../images/bg-main-m.jpg) center / cover no-repeat;
    }
    .box1 {
/*
        width: 92.2vw;
        border: 1.3vw solid #f49f00;
        outline: 0.66vw solid #e94609;
        border-radius: 5vw;
        padding: 10vw 6vw 5.7vw;
*/
    }
    .box_top {
        height: 19.866vw;
    }
    .box_mid {
        background-image: url(../images/box-mid-m.png);
    }
    .box_btm {
        background-image: url(../images/box-btm-m.png);
        height: 14.666vw;
    }
    .box1 .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.4vw;
    }
    .box1 .con {
        height: 294vw;
    }
    .btn-mall {
        width: 34vw;
        margin-top: 2.9vw;
    }
    .btn-more, .btn-more2 {
        width: 34vw;
        margin-top: 2vw;
    }
        .btn-close {
        width: 54.2vw;
        bottom: -5vw;
    }
    .grid-2-item {
        grid-template-columns: repeat(1, 1fr);
        gap: 2vw;
    }
    .grid-3-item {
        grid-template-columns: repeat(1, 1fr);
        gap: 6vw;
    }
    #part1 .btn_tab {
        height: 12vw;
        top: 7vw;
    }
    #part1 .inner_in {
        top: 23vw;
    }
    #part1 .btn1 {
        height: 25vw;
        margin-bottom: 3vw;
    }
    #part1 .btn2 {
        height: 35vw;
    }
    #part1 .grid {
        margin-bottom: 2vw;
        gap: 10vw;
    }
    #part1 .slick-dots {
        bottom: 5vw;
    }
    #part1 .slick-dots li {
        width: 1.3vw;
        height: 1.3vw;
        margin: 0 1.6vw;
    }
    #part2 .inner_in {
        top: 26.3vw;
    }
    #part2 .btn1 {
        height: 36vw;
    }
    #part2 .flex {
        margin-top: 71vw;
        margin-left: 9vw;
    }
    #part2 .btn2 {
        height: 8vw;
    }
    #part3 .inner_in {
        top: 29vw;
    }
    #part3 .grid {
        width: 47vw;
    }
    .btn-detail {
        width: 34vw;
        margin-top: 3vw;
    }
    #part4 .inner_in {
        top: 19vw;
    }
    #part4 .slick-dots {
        margin-top: 0;
        margin-bottom: 1vw;
    }
    .slick-dots li {
        width: 2vw;
        height: 2vw;
        margin: 0 1vw;
    }
    
    .top_menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 2;
    }
    .top_menu .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .top_menu a {
        display: block;
        text-align: center;
        background: #fee7c5;
        color: #5b3333;
        font-weight: bold;
        font-size: 4vw;
        padding: 2.8vw 0;
        position: relative;
    }
    .top_menu a:after {
    position: absolute;
    content: '';
    width: 0.1vw;
    height: 76%;
    background: #5b3333;
    right: 0.2vw;
    transform: translateY(-50%);
    top: 50%;
}
    .top_menu .grid a:nth-child(3n) {
/*        background: red;*/
    }
    .top_menu .grid a:nth-child(3n):after {
    opacity: 0;
}
    .top_menu a:hover, .top_menu a.cur {
    color: #ffffff;
    background: #e94609;
}
    .top_menu .top_con {
        border: 0.2vw solid #5b3333;
    }
    .top_menu .btm_con {
        border: 0.2vw solid #5b3333;
        border-top: 0;
        flex-wrap: wrap;
    }
    .top_menu .btm_con a {
        flex-basis: 33.33%;
    }
    .top_menu .btm_con a[href='#part7'] {
        flex-basis: 50%;
    }
    .top_menu .btm_con a.light {
        flex-basis: 50%;
    }
    .top_menu .btm_con a.light:after {
        opacity: 0;
    }
    .top_menu .acc_btn {
        position: absolute;
        display: inline-block;
        background-image: url(../images/arrow-02.png);
        background-size: 100% auto;
        background-position: center;
        background-repeat: no-repeat;
        width: 2.4vw;
        height: 10.4vw;
        /*        position: relative;*/
        top: 0;
        /* margin: 0 0.3vw; */
        right: 0.9vw;
        z-index: 1;
    }
    .top_menu .acc_con.show {
        display: flex;
    }
    .top_menu .with_btn {
/*        position: relative;*/
        padding-right: 3.3vw;
    }
    .p_layout {
        margin: 0;
        background-image: url(../images/POPSP.png);
        aspect-ratio: 750 / 1316;
        padding: 15vw 6vw;
        overflow: hidden;
    }
    button.mfp-close {
        width: 5.6vw;
        height: 5.6vw;
        top: 6vw;
        right: 6vw;
    }
    .mfp-close:active {
        top: 6vw;
    }
    
    .scroll_con {
        height: 80vh;
    padding-right: 3vw;
/*        padding-right: 0;*/
    }
    .mCSB_outside + .mCSB_scrollTools {
        right: 0;
    }
    .tab_btn {
        /* flex-wrap: wrap; */
        /* margin-top: -4.5vw; */
        /* position: relative; */
        gap: 1.3vw;
        margin-bottom: 2vw;
    }
/*
    .tab_btn:after {
        position: absolute;
        content: '';
        width: 68vw;
        height: 0.5vw;
        border-top: 0.5vw dashed #9e9e9e;
        left: 50%;
        transform: translateX(-50%);
        top: 28vw;
    }
*/
    .tab_btn > * {
        flex-basis: 33.33%;
        /* margin: 4.5vw 0; */
        /* border-width: 0.5vw; */
        font-size: 2.4vw;
        border-radius: 3vw 3vw 0 0;
        padding: 2.8vw 0;
    }
    .tab_btn > *:nth-of-type(3n) {
        border-right: 0;
    }
    .tab_btn .tab_bg {
        /* height: 19vw; */
    }
    .tab .con {
        height: 284vw;
    }
    .bar1 {
        font-size: 4vw;
        padding: 1.8vw;
        margin-bottom: 3vw;
    }
    .btn-hamigo {
    width: 70vw;
    margin: 7.4vw auto 0;
}
    #part1 .btn3 {
        width: 21.5vw;
        height: 6.5vw;
        top: 78.5vw;
        left: 39vw;
    }
    #part1 .btn4 {
        width: 38.5vw;
        height: 11.5vw;
        top: 159.5vw;
        left: 30vw;
    }
    #part1 .btn5 {
        width: 22.5vw;
        height: 6.5vw;
        top: 87.5vw;
        left: 16vw;
    }
    #part1 .btn6 {
        width: 21.5vw;
        height: 6.5vw;
        top: 87.5vw;
        left: 61vw;
    }
    .btn-calendar {
        width: 41vw;
    }
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}

/* */
.event_content {
/*    font-family: "Noto Sans TC", sans-serif;*/
}
.event_content section {
    padding: 0;
}
.event_content a:hover {
    text-decoration: none;
}
.owl-item, .owl-stage {
    display: block;
}
ul {
    padding: 0;
}
.miniature {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
    .desktop-only {
    display: none !important;
}
}

/* 2025-10-30 refine... */
.slider_wrap {
    padding-top: 2.5vw;
    width: 60.937vw;
    margin: auto;
}
.slider_wrap .tit {
    width: 38%;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
    .slider_wrap {
        width: 100%;
        padding-top: 7vw;
    }
    .slider_wrap .tit {
        width: 70%;
    }
}