@charset "UTF-8";
/* global */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
    /* color: var(--blue); */
}
body {
    font-family: "微軟正黑體", "MicrosoftJhengHeiRegular", "sans-serif";
    color: #333333;
	font-size: 1.4vw;
/*	line-height: 1.8;*/
    overflow-x: hidden;
    font-weight: 700;
    background: #faf7ee;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
    color: currentColor;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin: 2vw 0;
    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 {
	max-width: 74vw;
	margin: auto;
}
main {
	
}
.section {
	padding: 5vw 0;
}
.section .flex {
    gap: 3vw;
    align-items: center;
}
.section .img_area {
    width: 36.666vw;
/*    margin-top: 1.25vw;*/
}
.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;
}
.max100 {
    max-width: 100%;
}
.full {
    width: 100%;
}
.r {
    position: relative;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}
.grid {
    display: grid;
}

/* header */
header {
	
}
nav {
	
}

/* footer */
footer {
	padding: 4.5vw 0;
    font-size: 1.25vw;
    text-align: center;
}

/* title & font-size */
h1 {
    font-size: 3.75vw;
    margin: 3vw 0;
}
h1 .en {
    font-size: 48%;
    font-weight: normal;
}
h1 .ch {
    font-family: "Noto Sans TC", sans-serif;
    color: #9a2221;
}
h2 {
    font-size: 3.3vw;
    margin: 0 0 2vw;
}
h2 .en {
    font-size: 54%;
    font-weight: normal;
}
h2 .ch {
    font-family: "Noto Sans TC", sans-serif;
}
h3 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 1.3vw;
    margin: 0 0 0.9vw;
}
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;
}
.btn {
	background-color: transparent;
	padding: 0;
}
.btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffde59;
    border-radius: 100px;
    position: relative;
    line-height: 1;
    color: currentColor;
    aspect-ratio: 159/57;
    width: 8.2vw;
    font-weight: 700;
    font-size: 1.4vw;
}
.btns_wrap {
    display: flex;
    gap: 1.5vw;
    margin: 2vw 0;
    justify-content: center;
}

/* form */
.form {
    display: grid;
    width: 43.5vw;
    margin: 0 auto;
}
.form_wrap {
    margin-bottom: 0.6vw;
    display: flex;
    gap: 1.5vw;
    align-items: center;
}
.form_wrap > label {
    font-size: 1.6vw;
    flex: 1;
}
.form_wrap > .input {
    flex: 3;
}
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 20px;
    height: 2.6vw;
    box-shadow: none;
    border: none;
    margin: 0;
    color: #333333;
    border-radius: 20px;
}
.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: 0.5vw;
    display: flex;
    gap: 0.5vw;
    align-items: center;
    font-size: 1.25vw;
    margin: 1.5vw 0;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    content: "";
    width: 2vw;
    height: 2vw;
    border-radius: 5px;
    border: 1px solid #555;
    left: 2px;
    display: inline-block;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 0.5vw;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #555;
}

/* elements */
.box1 {
    border-radius: 10px;
    background: #f0f4f7;
}
.box2 {
    border-radius: 10px;
    background: #fff;
}
.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {
	margin-left: 0;
}
.tab_btn {
	display: flex;
}
.tab_btn > * {
	padding: 0 2px;
	position: relative;
	z-index: 1;
	padding: 10px;
	text-align: center;
	border: 1px solid #cccccc;
	cursor: pointer;
    flex: 1;
}	
.tab_btn > *:not(:last-of-type) {
    border-right: 0;
}
.tab_btn > *:last-of-type {
    border-right: 1px solid #cccccc;
}
.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: 10px;
}
.tab_con > div.show {
	display: block;
}
.tab_con > div.fade {
	opacity: 1;
}

/* acc */
.acc_btn {
    padding: 10px;
    border: 1px solid #000;
    cursor: pointer;
}
.acc_con {
    display: none;
    padding: 10px;
}


/* 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 {
    max-width: 500px;
/*    margin: auto;*/
}
.owl-carousel .item {
    border: 1px solid #000;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/icon-arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 29px;
    height: 29px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}
.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: 15px;
}
.owl-carousel .owl-dots {
    text-align: center;
    display: flex;
    justify-content: flex-end;
}
.owl-carousel .owl-dots button.owl-dot {
    width: 7vw;
    height: 10px;
    background: #434343;
    display: inline-block;
}
.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: #CD0001;
}

/* popup */
.p_layout {
    position: relative;
    background: #fff;
    padding: 3vw;
    background-image: url(../img/bg-02.jpg);
    background-size: cover;
/*    font-size: 0.9vw;*/
    min-height: 50vh;
    margin: 10vw;
    font-size: 1.25vw;
}
.mfp-container {
    padding: 0;
}
.pop_close {
    background-image: url(../img/icon-close.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    aspect-ratio: 1;
    width: 36px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}
.pop_con {
    
}

/* scrollbar */
.scroll_con {
    font-family: "Noto Sans TC", serif;
    height: 80vh;
    padding-right: 3vw;
}
.mCSB_scrollTools {
    width: 18px;
}
.mCSB_scrollTools .mCSB_draggerRail {
	width: 100%;
	background: none;
/*	height: calc( 100% - 100px );*/
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	border-radius: 10px;
	width: 100%;
	background: #f098bc;
/*	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: #f098bc;
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_outside + .mCSB_scrollTools {
	right: 20px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
/*	top: 50px;*/
/*	bottom: 50px;*/
}
.mCSB_scrollTools .mCSB_dragger {
/*	height: calc( 100% - 100px ) !important;*/
}

/* logo */
.logo {
    display: inline-block;
    width: 18.02vw;
    position: absolute;
    top: 4.7vw;
    left: 3.6vw;
}
/* top */
.top .flex {
    align-items: flex-end;
    justify-content: space-between;
}
.top .txt_area {
    padding-left: 3.6vw;
}
.top .img_area {
    width: 45.052vw;
}
.social_wrap {
    display: flex;
    gap: 1.25vw;
    margin: 3vw 0;
    justify-content: center;
}
.social_wrap .fb {
    width: 3.125vw;
}
.social_wrap .yt {
    width: 4.687vw;
}
/* 全新營運團隊 */
#profile .img_area {
/*    margin-top: 1.25vw;*/
}
.logo2 {
    width: 30vw;
    margin: 0 auto;
}
.hl_txt {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 500;
    font-size: 1.6vw;
    text-align: center;
    margin-top: 2vw;
    letter-spacing: 0.3em;
}
/* 國家邊境第一站 */
#border .grid {
    grid-template-areas:
        "a c"
        "b c";
    column-gap: 3vw;
    align-items: center;
}
#border .img_area {
    grid-area: a;
    align-self: flex-end;
}
#border .hl_txt {
    grid-area: b;
    align-self: flex-start;
}
#border .txt_area {
    grid-area: c;
}
.map {
    margin-top: -1vw;
}
/* 全方位家外媒體 */
#ooh .grid {
    grid-template-areas:
        "a c"
        "a c"
        "b c"
        "b d";
    align-items: center;
    column-gap: 1.6vw;
}
#ooh .txt_area {
    grid-area: a;
}
#ooh .img_area2 {
    grid-area: b;
    width: 34.218vw;
}
#ooh .img_area {
    grid-area: c;
    width: 38.333vw;
}
#ooh .hl_txt {
    grid-area: d;
    margin: -2vw 0 0 3.6vw;
}
.hl_txt2 {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 900;
    color: #c95c3d;
    font-size: 2vw;
    line-height: 1.3;
    margin: 1.5vw 0;
}
/* 我們的媒體 */
.tit_flex {
    display: flex;
    gap: 1.3vw;
    align-items: baseline;
}
#media .flex {
    align-items: flex-start;
    gap: 2vw;
}
.flex_in {
    display: flex;
    gap: 2vw;
}
.flex_in .item {
/*    width: 16.458vw;*/
}
/* 高質感廣告媒體 */
#media2 .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3vw;
    margin-bottom: 3.8vw;
}
figure {
    font-family: "Noto Sans TC", sans-serif;
    color: #fff;
    font-weight: 500;
    margin: 0;
    padding: 0.5vw;
    border-radius: 10px 10px 0 0;
}
figcaption {
    padding: 0.7vw 0;
}
.box_btm {
    padding: 1vw 1vw 1.7vw;
}
.desc {
    line-height: 1.5;
    font-size: 1vw;
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 500;
}
/* 創意多媒體展示 */
#multimedia .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5vw;
    margin-bottom: 3.3vw;
}
#multimedia .box1 {
    display: flex;
}
#multimedia figure {
    display: flex;
    padding: 0.5vw 0.9vw;
}
#multimedia figure img {
    width: 17.187vw;
}
#multimedia figcaption {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 0 0.5vw 0 0.2vw;
}
#multimedia .desc {
    font-size: 1.1vw;
}
#multimedia h3 {
    margin: 0.9vw 0;
}
/* 精彩案例 */
#case .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.3vw;
}
#case h3 {
    margin: 0.9vw 0;
}
#case .desc {
    font-size: 1.1vw;
}
/* 聯絡我們 */
#contact .flex {
    gap: 2.8vw;
    align-items: stretch;
}
.contact_list li {
    display: flex;
    gap: 0.7vw;
    margin: 1.8vw 0;
}
.contact_list .icon {
    width: 2.6vw;
}
.c_tit {
    font-family: "Noto Sans TC", sans-serif;
    color: #9d2327;
    font-weight: 500;
    font-size: 1.6vw;
    margin-bottom: .3vw;
}
.c_desc {
    line-height: 1.5;
}
#contact .txt_area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.to_top {
    position: fixed;
    right: 1vw;
    bottom: 1vw;
    z-index: 1;
    width: 3vw;
}


/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

@media only screen and (max-width: 769px) {
    body {
        font-size: 3.5vw;
    }
    .logo {
        position: static;
        width: 46vw;
        display: block;
        margin: 0 auto;
        padding: 6vw 0 3vw;
    }
    .top .flex {
        flex-direction: column-reverse;
    }
    .top .img_area {
        width: 100%;
    }
    .top .txt_area {
        padding: 0 5vw;
        width: 100%;
    }
    h1 {
        text-align: center;
        font-size: 9.6vw;
        margin: 6vw 0;
    }
    p, .p {
        margin: 5vw 0;
        text-align: justify;
    }
    .btns_wrap {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 3.5vw;
        margin: 5vw 0;
    }
    .btn1 {
        width: 21vw;
        font-size: 3.5vw;
    }
    .social_wrap {
        gap: 3.3vw;
        margin: 5vw 0;
    }
    .social_wrap .fb {
        width: 8vw;
    }
    .social_wrap .yt {
        width: 12vw;
    }
    .inner {
        max-width: none;
        padding: 0 3.3vw;
    }
    .section .flex {
        flex-direction: column-reverse;
    }
    .section .img_area {
        width: 100%;
    }
    h2 {
        font-size: 8.5vw;
        text-align: center;
        margin: 0 0 5vw;
    }
    .logo2 {
        width: 76.8vw;
    }
    .hl_txt {
        font-size: 4.2vw;
        margin-top: 6.5vw;
    }
    #border .grid {
        grid-template-areas:
        "a"
        "c"
        "b";
    }
    #border .img_area {
        margin-bottom: 5vw;
    }
    #ooh .grid {
        grid-template-areas:
        "a a"
        "b c"
        "d d";
    }
    .hl_txt2 {
        font-size: 5.3vw;
        width: fit-content;
        margin: 5vw auto;
    }
    #ooh .img_area2 {
        width: 43.3vw;
    }
    #ooh .img_area {
        width: 48.5vw;
    }
    #ooh .hl_txt {
        margin-top: 5vw;
    }
    .tit_flex {
        flex-direction: column-reverse;
        align-items: center;
    }
    #media .flex {
        gap: 4.5vw;
    }
    .flex_in {
        gap: 4.5vw;
    }
    #media2 .grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2vw;
        row-gap: 3.6vw;
    }
    figure {
        padding: 1.3vw;
    }
    h3 {
        font-size: 3.5vw;
        margin: 0 0 2vw;
    }
    .desc {
        font-size: 2.7vw;
        text-align: justify;
    }
    .box_btm {
        padding: 2.6vw 2.6vw 4.4vw;
    }
    #multimedia .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 4.4vw;
    }
    #multimedia figure img {
        width: 44vw;
    }
    #multimedia figure {
        padding: 1.3vw 2.6vw;
    }
    #multimedia figcaption {
        padding-right: 2.6vw;
        font-size: 3.2vw;
    }
    #multimedia .desc {
        font-size: 2.7vw;
    }
    #multimedia h3 {
        margin: 2vw 0;
    }
    #case .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 4vw;
    }
    .box2 {
        width: 59vw;
        margin: 0 auto;
    }
    #case h3 {
        margin: 2vw 0;
    }
    #case .desc {
        font-size: 2.8vw;
    }
    .form {
        width: auto;
    }
    .form_wrap {
        margin-bottom: 1.7vw;
        gap: 3.6vw;
    }
    .form_wrap > label {
        font-size: 3.5vw;
    }
    .input {
        padding: 0 10px;
        height: 6.8vw;
    }
    .contact_list .icon {
        width: 6.8vw;
    }
    .c_tit {
        font-size: 4.2vw;
        margin-bottom: 1vw;
    }
    .contact_list li {
        gap: 2.6vw;
        margin: 4.9vw 0;
    }
    .contact_list2 {
        text-align: center;
        margin: 8vw 0;
    }
    #contact .txt_area {
        align-items: center;
    }
    footer {
        font-size: 3.2vw;
        line-height: 1.3;
        padding: 5vw 0 10vw;
    }
    .to_top {
        right: 2vw;
        bottom: 2vw;
        width: 10vw;
    }
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}

/* 表單驗證... */
.form_wrap.has-error {
    flex-wrap: wrap;
}
.form-validation {
    display: none;
}
.has-error .form-validation {
    display: block;
    flex-basis: 100%;
    position: relative;
    top: -1vw;
}
@media only screen and (max-width: 769px) {
    .has-error .form-validation {
        top: -3vw;
    }
}