@charset "utf-8";
/* CSS Document */
.material-symbols-rounded {
	font-size: inherit;
}
body {
	font-family: 'Noto Sans TC', sans-serif;
}
.for-pc {
	display: none;
}
#loader {
    position: static;
}
.loader #loader::before {
	content: '';
	display: block;
    z-index: 10010;
    position: fixed;
    background-color: rgba(255,255,255,0.50);
    width: 100%;
    height:100%;
    left:0;
    top: 0;
}
.loader #loader::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/loading01.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left:calc((100vw - 32px) / 2);
    top: calc((100vh - 32px) / 2);
	z-index: 10015;
}
button, a, *:link, button:focus, a:focus, *:link:focus, input[type=text]:disabled, input[type=text]:read-only {
	cursor: pointer;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
	-webkit-appearance: none;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
    -moz-appearance: none;     /* FireFox */
    appearance: none !important;
	outline:none !important;
	-webkit-box-shadow: 0 0 0 0;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
    -moz-box-shadow: 0 0 0 0;     /* FireFox */
	box-shadow: 0 0 0 0 !important;
}
input[type=text]:disabled, input[type=text]:read-only {
	cursor:default;
}
input[type="button"] {
    -webkit-appearance: none;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
    -moz-appearance: none;     /* FireFox */
    appearance: none;
}
/*選單遮罩*/
.menuoverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000;/*高度需低於主選單*/
	background-color: rgba(255,255,255,0.75);
	display: none;
	opacity: 0;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.menuoverlay.active {
	display: block;
	opacity: 1;
	z-index: 1;
}
#header.header {
	background-color: #fff;
	position: relative;
	z-index: 2;
	-webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
	box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}
#header.header .navbar {
	
}
#header.header.menuOpen {
	max-height: 100vh;
}

#header.header .navbar-brand {
	width: 38%;
	max-width: 150px;
	display: block;
}
#header.header .logo {
	
}
#header.header .navbar-toggler {
	border: 0;
    padding: 5px;
	color: #966C25;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
#header.header.menuOpen .navbar-toggler {
	/*background-color: transparent;*/
}
#header.header .navbar-collapse {
	position: absolute;
    left: 0;
    top: 62px;
    background-color: #fff;
    width: 100%;
	-webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
	box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}
#header.header .navbar-nav {
	/*flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;*/
}
#header.header .navbar-nav .nav-item {
	/*width: 100%;*/
}

#header.header .main_menu .nav-link {
	font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: #1F1F1F;
    display: flex;
    gap: 10px;
    padding: 10px;
	align-items: center;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
#header.header .main_menu .nav-link:hover {
	color: #906525;
}
#header.header .main_menu .nav-link.active, #header.header .main_menu .nav-link.show {
	color: #CEAC4E;
}
#header.header .main_menu .nav-link .ch {
	font-size: 1.25em;
}
#header.header .main_menu .nav-link .en {
	font-size: .875em;
}
#header.header .navbar-nav .nav-item.func .nav-link:hover {
	/*background-color: rgba(248,237,229,0.00);*/
}
#header.header .main_menu .nav-link::before {
	/*display: none;*/
}
#header.header .main_menu .nav-link:hover::before {
	/*background-image: url("../images/icon-point_over.png");*/
}
#header.header .main_menu .nav-link.active::before {
	/*background-image: url("../images/icon-point_active.png");*/
}
#header.header .main_menu .dropdown-menu {
	/*padding: 0 1em 0 3em;
	border: 0 none;
	background-color: #68635f;
	margin-top: 0;
	border-radius: 0;*/
}
#header.header .main_menu .dropdown-item {
	/*color: #fff;
	border-bottom: 0 none;*/
}
#header.header .main_menu .dropdown-item.active, #header.header .main_menu .dropdown-item:active {
	/*color: #fff;
	background-color: #68635F;*/
}
#header.header .main_menu .dropdown-item:focus, #header.header .main_menu .dropdown-item:hover {
	/*color: #FFE976;
	background-color: #68635F;*/
}
/*#footer*/
#footer {
	background-color: #7F6330;
    color: #fff;
    font-size: 1rem;
}
.footer {
	padding: 1.25em 0;
}
.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap:15px;
}
.footer li {
	display: inline-flex;
	align-items: center;
}
.footer .label {
	font-size: .75em;
}
.footer .org1 {
	width: 48%;
	max-width: 142px;
}
.footer .org2 {
	width: 57%;
	max-width: 168px;
}
.footer .icon {
	width: 1em;
	margin-right: .5em;
}
.footer .txt {
	line-height: 1;
	font-size: .875em;
	font-weight: 500;
}
.footer .share {
	width: 30px;
	margin-right: 10px;
}
.footer .share:last-child {
	margin-right: 0;
}
.footer .rights {
	line-height: 1;
	font-size: .75em;
	font-weight: 500;
}
.footer a {
	color: #fff;
	text-decoration: none;
}
.breadcrumb {
	font-size: .875rem;
	color: #5E6169;
}
.breadcrumb::before {
	content: '';
	display: block;
	background-image: url("../images/icon-TGA-gray.webp");
	width: 28px;
	height: 20px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 20px;
}
.breadcrumb a {
	color: #5E6169;
	text-decoration: underline;
}
.breadcrumb a:hover {
	color: #292A2F;
	text-decoration: underline;
}
.breadcrumb-item.active {
	color: #292A2F;
}
.breadcrumb-item.active::before {
	color: #5E6169;
}
.lv3 .breadcrumb-item:nth-child(2) > a::after {
	content: '...';
	display: inline;
}
.lv3 .breadcrumb-item:nth-child(2) > a > span {
	display: none;
}
.headLine {
	display: inline-flex;
	align-items: center;
	gap:10px;
	font-size: 1.5rem;
	color: #BA8F37;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 0;
}
.headLine::before {
	display: block;
	content: '';
	background-image: url("../images/icon-TGA.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 45px;
	height: 48px;
}
.headLine .en {
	font-size: .75em;
	color: #D3BD61;
}
.card.gold {
	font-size: 1rem;
	border: 2px solid #A88440;
	border-radius: 1em;
	-webkit-box-shadow: 0px 4px 4px rgba(0,0,0,.25);
	box-shadow: 0px 4px 4px rgba(0,0,0,.25);
}
.card.gold .card-title {
	display: flex;
	gap:17px;
	align-items: center;
}
.card.gold .card-title .title {
	display: flex;
	gap: 0px;
    flex-direction: column;
    line-height: 1;
}
.card.gold .card-title .title .ch {
	font-size: 1.5em;
	font-weight: 700;
	color: #000;
}
.card.gold .card-title .title .en {
	font-size: 1em;
	font-weight: 500;
	color: #A88440;
}
.card.gold .icon.s1 {
	display: block;
	width: 45px;
}
.card.gold .icon.s2 {
	display: block;
	width: 61px;
}
.card.gold .card-text {
	color: #000;
    font-size: 1.3em;
    font-weight: 500;
}
/**/
.list {
	list-style: none;
	padding: 20px 0 0;
	margin: 0;
	font-size: 1rem;
}
.list li {
	padding: 10px;
	border-bottom: 1px dotted #5E5E5E;
	margin-bottom: 20px;
}
.list li a {
	text-decoration: none;
	display: inline-flex;
	color: #000;
	flex-direction: column;
	font-weight: 500;
}
.list li .date {
	line-height: 1;
	color: #616161;
}
.list li .label {
	line-height: 1.2;
	color: #000;
}
.list li a:hover .date {
	color: #9C7373;
}
.list li a:hover .label {
	color: #52250D;
}
/**/
.naviG {
	display: flex;
	flex-direction: column;
	gap:5px;
}
#tabs.nav-tabs {
	border-bottom-color: #BA8F37;
}
#tabs.nav-tabs .nav-link {
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.2;
	color: #97856B;
	border-bottom: 1px solid #BA8F37;
	padding: .23em 1em calc(.23em + 1px) 1em;
}
#tabs.nav-tabs .nav-item.show .nav-link, #tabs.nav-tabs .nav-link.active {
	color: #906525;
	border-bottom-color: #fff;
	border-top: 1px solid #BA8F37;
	border-right: 1px solid #BA8F37;
	border-left: 1px solid #BA8F37;
	border-top-right-radius: .56em;
	border-top-left-radius: .56em;
}
/**/
.map {
	width: 100% !important;
}
/**/
.funcBox {
	padding: 10px 0;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.naviB {
	display: inline-flex;
	gap: 10px;
}
.searchBox {
	display: inline-flex;
    align-items: center;
    gap: 10px;
}
.searchBox .btn-search {
	display: flex;
    align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 1.5rem;
	color: #fff;
	background-color: #946927;
	padding: .15em .2em;
	border-radius: 5px;
	border: 0 none;
}
/**/
.proList .card {
	font-size: 1rem;
	border: 1px solid #946927;
	padding: 5px;
	gap: 10px;
	border-radius: 10px;
	background-color: #fff;
	background-image: -webkit-linear-gradient(270deg,rgba(238,227,202,1.00) 0%,rgba(255,255,255,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(238,227,202,1.00) 0%,rgba(255,255,255,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(238,227,202,1.00) 0%,rgba(255,255,255,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(238,227,202,1.00) 0%,rgba(255,255,255,1.00) 100%);
}
.proList .card-img, .proList .card-img-top {
	width: 100%;
	height: calc(((100vw - 3.5rem) / 2 - 1rem - 10px) / 10 * 6 );
	overflow: hidden; /* 避免溢出 */
	border-radius: 5px;
	background-color: #fff;
}
.proList .card-img img, .proList .card-img-top img {
	width: 100%;
	height: 100%;
	display: block; /* 消除 inline 底部空隙 */
	object-fit: cover;
	object-position: center; /* 或 50% 20% 等 */
}
.proList .card-body {
	padding: 0;
	color: #333333;
	display: flex;
	flex-direction: column;
	gap:5px;
}
.proList .card-label {
	font-weight: 500;
	font-size: .75em;
	line-height: 1.2;
	letter-spacing: .4px;
	margin-bottom: 0;
}
.proList .card-title {
	font-weight: 400;
	font-size: 1.125em;
	line-height: 1.2;
	letter-spacing: .4px;
	margin-bottom: 0
}
.proList .card-text {
	font-size: .875em;
	font-weight: 400;
	margin-bottom: 0;
}
.proList .card-text a {
	color: #333333;
	text-decoration: none;
}
.proList .card-text a:hover {
	color: #682D13;
	text-decoration: none;
}
.proList .card-text .map {
	color: #682D13;
	text-decoration: none;
}
.proList .card .btn {
	border: 1px solid #C99F3E;
	color: #C99F3E;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	padding: .25em;
	border-radius: .833em;
	background-color: transparent;
}
.proList .card .btn:hover {
	border: 1px solid #AF7A00;
	color: #AF7A00;
	background-color: rgba(255,255,255,0.50);
}
.shareBox {
	display: flex;
	gap:6px;
	justify-content: flex-start;
	align-items: center;
	line-height: 1;
	font-size: .75rem;
	color: #946927;
	flex-wrap: wrap;
	margin-top: 1em;
    margin-bottom: auto;
}
.shareBox a {
	color: #946927 !important;
	text-decoration: none;
	display: block;
}
.shareBox a:not(.web) {
	text-align: left;
	overflow: hidden;
	text-indent: -9999px;
	width: 30px;
	height: 30px;
	position: relative;
}
.shareBox a::after {
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30px;
}
.shareBox a.line::after {
	background-image: url("../images/social-icons-lineG.webp");
}
.shareBox a.fb::after {
	background-image: url("../images/social-icons-fbG.webp");
}
.shareBox a.ig::after {
	background-image: url("../images/social-icons-igG.webp");
}
.shareBox a.yt::after {
	background-image: url("../images/social-icons-ytG.webp");
}
.shareBox a.x::after {
	background-image: url("../images/social-icons-xG.webp");
}
.shareBox a.thread::after {
	background-image: url("../images/social-icons-threadG.webp");
}
/**/
.photos {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: rgba(192,158,137,1.00);
	background-image: -webkit-linear-gradient(270deg,rgba(205,168,114,1.00) 0%,rgba(127,71,33,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(205,168,114,1.00) 0%,rgba(127,71,33,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(205,168,114,1.00) 0%,rgba(127,71,33,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(205,168,114,1.00) 0%,rgba(127,71,33,1.00) 100%);	
	padding: 10px;
}
.photos .show {
	display: block;
	text-align: center;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.photos .show img {
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.photos .thumbs {
	display: flex;
	justify-content: space-evenly;
	gap:10px;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}
.photos .thumbs li {
	display: block;
	width: 25%;
	height: calc(((100vw - 3.5rem) / 2 - 1rem - 10px) / 10 * 6 );
	overflow: hidden; /* 避免溢出 */
	background-color: #fff;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
	border-top: 4px solid #fff;
}
.photos .thumbs li.active {
	border-color: #ffa200;
}
.photos .thumbs li img {
	width: 100%;
	height: 100%;
	display: block; /* 消除 inline 底部空隙 */
	object-fit: cover;
	object-position: center; /* 或 50% 20% 等 */
	opacity: .7;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.photos .thumbs li.active img {
	opacity: 1;
}
/**/
.info {
	color: #4C4C4C;
	font-size: 1rem;
	line-height: 1.5;
}
.info h2 {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: .5rem;
}
.info h3 {
	font-size: 1.125em;
	font-weight: 400;
	margin-bottom: .5rem;
}
.info p {
	font-size: 1.125em;
	font-weight: 400;
	margin-bottom: .5rem;
}
.info a {
	color: #4C4C4C;
	text-decoration: none;
}
.info a:hover {
	color: #732D11;
	text-decoration: none;
}
.desc {
	line-height: 1.75;
	font-size: 1.125rem;
}
/**/
.article {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
}
.article h1, .article h2, .article h3, .article h4, .article h5 {
	font-weight: 700;
	font-size: 1.4em;
	margin-bottom: .5rem;
	line-height: 1.2;
}
.article h2, .article h3 {
	font-size: 1.2em;
}
.article h4, .article h5 {
	font-size: 1.1em;
}
.article p {
	margin-bottom: .5rem;
}
.article .headTitle {
	text-align: center;
	margin-bottom: 20px;
	border-bottom: 2px solid #9E9E9E;
}
.article .headTitle h1 {
	font-size: 1.5em;
	color: #946927;
	line-height: 1.2;
	margin-bottom: .5em;
}
.article .headTitle .date {
	font-size: .875em;
	color: #373737;
	line-height: 1.1;
}
.article img {
	max-width: 100%;
    height: auto;
}

/**/
.pager {
	margin-top: 50px;
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.20);
    border-top: 1px solid rgba(0,0,0,0.20);
}
.pager .pagination {
	margin-bottom: 0;
}
.pager .page-link, .pager .page-first, .pager .page-last {
    position: relative;
    display: inline-flex;
    padding: 0 .5em;
    font-size: 1.125rem;
    color: #44494B;
    background-color: transparent;
    border: 0;
	height: 50px;
	align-items: center;
	justify-content: center;
}
.pager .page-link.pre, .pager .page-link.next {
	text-align: left;
	overflow: hidden;
	padding: 0;
	text-indent: -9999px;
	background-image: url("../images/pager-pre-up.svg");
	background-position: center;
	background-size: auto 50px;
	background-repeat: no-repeat;
	width: 25px;
	height: 50px;
}
.pager .page-link.next {
	background-image: url("../images/pager-next-up.svg");
}
.pager .page-link.pre:hover, .pager .page-link.next:hover, .pager .page-link.pre:active, .pager .page-link.next:active, .pager .page-link.pre:focus, .pager .page-link.next:focus {
	background-image: url("../images/pager-pre-over.svg");
}
.pager .page-link.next:hover, .pager .page-link.next:active {
	background-image: url("../images/pager-next-over.svg");
}
.pager .page-link.pre:disabled, .pager .page-link.next:disabled, .pager .page-link.pre.disabled, .pager .page-link.next.disabled {
	background-image: url("../images/pager-pre-up.svg");
	opacity: .5;
}
.pager .page-link.next:disabled, .pager .page-link.next.disabled {
	background-image: url("../images/pager-next-up.svg");
	opacity: .5;
}
.pager .page-link.label.pre, .pager .page-link.label.next {
    text-align: left;
	overflow:visible; 
    padding: 0 0 0 26px;
	text-indent: 0; 
    background-position: left;
    width: auto;
    white-space: nowrap;
	font-size: .75em;
	line-height: 1;
}
.pager .page-link.label.next {
    text-align: right;
    padding: 0 26px 0 0;
    background-position: right;
}
.pager .page-link.active {
	border-bottom: 1px solid rgba(68,73,75,0.50);
}
.pager .page-link:hover {
	color: rgba(9,127,125,1.00);
}
.pager .page-first, .pager .page-last {
	text-align: left;
	overflow: hidden;
	padding: 0;
	text-indent: -9999px;
	background-image: url("../images/pager-first-up.svg");
	background-position: left center;
	background-size: auto 50px;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
}
.pager .page-first:hover, .pager .page-last:hover, .pager .page-first:active, .pager .page-last:active, .pager .page-first:focus, .pager .page-last:focus {
	background-image: url("../images/pager-first-over.svg");
}
.pager .page-first:disabled, .pager .page-last:disabled, .pager .page-first.disabled, .pager .page-last.disabled {
	background-image: url("../images/pager-first-up.svg");
	opacity: .5;
}
.pager .page-last:disabled, .pager .page-last.disabled {
	background-image: url("../images/pager-last-up.svg");
	opacity: .5;
}
.pager .page-last {
	background-image: url("../images/pager-last-up.svg");
	background-position: right center;
}
.pager .page-last:hover, .pager .page-last:active, .pager .page-last:focus {
	background-image: url("../images/pager-last-over.svg");
}
.pager .page-last:disabled {
	background-image: url("../images/pager-last-up.svg");
}
.pager .total {
	width: 100%;
	text-align: center;
	font-size: .75rem;
	line-height: 1.1;
	padding: .5em;
	display: block;
}
.form-select, .form-control {
	border-color: #946927;
}
.modal-backdrop {
	background-color: #fff;
}
.alertModal .modal-content {
	background-color: #EEE7DD;
	border-radius: 1.25em;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.50);
	box-shadow: 0 0 10px rgba(0,0,0,0.50);
}
.alertModal .modal-header {
	justify-content: center;
}
.alertModal .modal-title {
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.2;
}
.alertModal .modal-footer {
	justify-content: center;
	flex-wrap: nowrap;
}
.btn-scrollTop, .btn.btn-scrollTop {
	border: 0;
	padding: 0;
	border-radius: 0;
	width: 50px;
	position: absolute;
	right: .5em;
	bottom: 7em;
	opacity: 1;
	display: none;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.btn-scrollTop img.over, .btn.btn-scrollTop img.over {
	display: none;
}
.btn-scrollTop:hover img.up, .btn.btn-scrollTop:hover img.up, .btn-scrollTop:focus img.up, .btn.btn-scrollTop:focus img.up, .btn-scrollTop:active img.up, .btn.btn-scrollTop:active img.up {
	display: none;
}
.btn-scrollTop:hover img.over, .btn.btn-scrollTop:hover img.over, .btn-scrollTop:focus img.over, .btn.btn-scrollTop:focus img.over, .btn-scrollTop:active img.over, .btn.btn-scrollTop:active img.over {
	display: block;
}
.btn-scrollTop.show.foot, .btn.btn-scrollTop.show.foot {
	/*position: fixed;*/
}
.btn-scrollTop.show, .btn.btn-scrollTop.show {
    position: fixed;
	display: block;
}
.btn-primary {
	background-color: #906525;
	color: #FFF;
	border: 1px solid #BA945A;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.btn-primary:hover {
	background-color: #a24000;
	color: #FFF;
	border: 1px solid #EBBD36;
}
.btn-secondary {
	background-color: #CEC6A6;
	color: #484848;
	border: 1px solid #BDB79E;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.btn-secondary:hover {
	background-color: #EBD994;
	color: #393939;
	border: 1px solid #E4D69E;
}
.btn-gold {
	padding: .5em .75em;
	border-radius: .25em;
	font-size: 1rem;
	font-weight: 500;
	background-color: #C4A25C;
	background-image: -webkit-linear-gradient(270deg,rgba(196,162,92,1.00) 0%,rgba(153,94,42,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(196,162,92,1.00) 0%,rgba(153,94,42,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(196,162,92,1.00) 0%,rgba(153,94,42,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(196,162,92,1.00) 0%,rgba(153,94,42,1.00) 100%);
	color: #fff;
	letter-spacing: .1em;
	line-height: 1;
	border: 0 none;
	-webkit-transition : all 0.35s;
    transition : all 0.35s;
}
.btn-gold:hover {
	background-color: #CCA044;
	background-image: -webkit-linear-gradient(270deg,rgba(201,158,70,1.00) 0%,rgba(170,89,18,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(201,158,70,1.00) 0%,rgba(170,89,18,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(201,158,70,1.00) 0%,rgba(170,89,18,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(201,158,70,1.00) 0%,rgba(170,89,18,1.00) 100%);
	color: #fff !important;
}
.btn-gold.active, .btn-gold:active, .btn-gold:focus {
	background-color: #965F28;
	background-image: -webkit-linear-gradient(270deg,rgba(150,95,40,1.00) 0%,rgba(112,26,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(150,95,40,1.00) 0%,rgba(112,26,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(150,95,40,1.00) 0%,rgba(112,26,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(150,95,40,1.00) 0%,rgba(112,26,0,1.00) 100%);
	color: #fff !important;
}
@media (orientation:landscape) and (min-width:480px){
	#header.header .navbar-brand {
		/*width: 100vw;*/
	}
	#header.header .navbar-toggler {
		/*width: 60px;*/
	}
	
}
@media (orientation:landscape) and (min-width:768px){
	#header.header .navbar-brand {
		/*width: 19%;
		margin-right: 1em;*/
	}
	#header.header .navbar-toggler {
		/*width: 7vw;*/
	}
	
}
@media (orientation:portrait) and (min-width:768px){
	
}
@media (min-width:400px){
	
}
@media (min-width:480px){
	
}
@media (min-width:660px){
	
}
@media (min-width:768px){
	#header.header .bg-light > .container-fluid, #header.header .bg-light > .container {
		/*max-width: none;*/
		/*flex-direction: row-reverse;*/
	}
	#header.header {
		/*background-size: 100%;*/
	}
	#header.header .navbar-brand {
		/*max-width: 200px;
		margin-left: auto;
		margin-right: auto;*/
	}
	#header.header .navbar-toggler {
		/*width: 60px;*/
	}
	#header.header .main_menu .nav-link {
		/*font-size: 1.25em;*/
	}
	.lv3 .breadcrumb-item:nth-child(2) > a::after {
		display: none;
	}
	.lv3 .breadcrumb-item:nth-child(2) > a > span {
		display: inline;
	}
	/**/
	#tabs.nav-tabs .nav-link {
		font-size: 1.125rem;
	}
	/**/
	.proList .card-img, .proList .card-img-top {
		width: 100%;
		height: 60.6px;
	}
	.shareBox a:not(.web) {
		width: 20px;
		height: 20px;
	}
	.shareBox a::after {
		width: 20px;
		height: 20px;
		background-size: 20px;
	}
	/**/
	.photos {
		gap: 5px;
		padding: 5px;
	}
	.photos .thumbs {
		gap: 5px;
	}
	.photos .thumbs li {
		height: 39px;
	}
	
	/**/
	.pager {
		flex-wrap: nowrap;
		align-items: center;
	}
	.pager .page-first {
		margin-right: auto;
	}
	.pager .page-last {
		margin-left: auto;
	}
	.pager .total {
		width:auto;
		margin-left: 1em;
	}
	.footer ul {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.footer .org1 {
		width: 142px;
	}
	.footer .org2 {
		width: 168px;
	}
	.btn-gold {
		font-size: 1.25rem;
	}
}
@media (min-width:1000px){
	body {
		/*background-image: url("../images/bg.jpg");*/
	}
	#header.header .bg-light > .container-fluid, #header.header .bg-light > .container {
		 /*flex-direction: column; */
	}
	#header.header {
		/*background-image: url("../images/bg-header.png");
		border-bottom: 0 none;
		background-size: auto 100%;
		background-position: center;*/
	}
	#header.header.active .bg-light > .container-fluid, #header.header.active .bg-light > .container {
		/*flex-direction: row;
		justify-content: center;
		align-items: center;
		width: auto*/
	}
	#header.header .navbar-brand {
		width: 18%;
		max-width: 247px;
		position: absolute;
	}
	#header.header.active .navbar-brand {
		/*width: 129px;
		padding: 1em 0;
		margin-right: 1em;*/
	}
	#header.header .bg-header {
		/*padding-top: 3em;
		text-align: center;*/
	}
	#header.header .navbar-collapse {
		position: static;
        box-shadow: none;
        background-color: transparent;
	}
	#header.header .navbar-toggler {
		/*display: none;*/
	}
	#header.header .navbar-toggler.btn-search {
        position: absolute;
        right: 0;
    }
	#header.header .main_menu {
		/*flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;*/
	}
	#header.header.active .main_menu {
		/*width: auto;
		margin: 0 !important;*/
	}
	#header.header .main_menu .nav-item {
		/*display: inline-flex;
		align-items: center;*/
	}
	#header.header .main_menu .nav-link .ch {
		font-size: 1em;
	}
	#header.header .main_menu .nav-link .en {
		font-size: .67em;
	}
	#header.header .navbar {
		height: 60px;
	}
	#header.header .navbar-nav .nav-item {
		border-right: 1px solid #929292;
	}
	#header.header .navbar-nav .nav-item:last-child {
		border-right: 0 none;
	}
	#header.header.active .navbar-nav .nav-item {
		/*padding: 0 0.5em;*/
	}
	
	#header.header .main_menu .nav-link {
		font-size: 1.25em;
        flex-direction: column;
        gap: 3px;
		letter-spacing: -1px;
		padding: 0 14px;
	}
	#header.header .main_menu .nav-link:hover, #header.header .main_menu .nav-link.active, #header.header .main_menu .nav-link.show {
		/* color: #700D9E;
		background-color: rgba(255,255,255,0.50); */
	}
	
	#header.header .main_menu .nav-item.dropdown:hover .nav-link {
		/*color: #fff;
		border-radius: 1em 1em 0 0;*/
	}
	#header.header .main_menu .nav-item.dropdown:hover .dropdown-menu {
		/*display: block*/
	}
	#header.header .main_menu .dropdown-menu {
		/*padding: 0;
		border: 0 none;
		background-color: #68635f;
		border-radius: 0;
		top: 2em;*/
	}
	#header.header .main_menu .dropdown-item {
		/*color: #fff;
		border-bottom: 0 none;*/
	}
	#header.header .main_menu .dropdown-menu li:last-child .dropdown-item {
		/*border-bottom: 0 none;*/
	}
	
	.navbar>.container-fluid {
		/*align-items: flex-end;*/
	}
	/**/
	.naviG {
		flex-direction: row;
		gap: 30px;
		align-items: flex-end;
		border-bottom: 1px solid #BA8F37;
	}
	.naviG .headLine {
		padding-bottom: 5px;
	}
	#tabs.nav-tabs {
		margin-bottom: -1px;
	}
	/**/
	.list li {
		padding: 10px 20px;
	}
	.list li a {
		flex-direction: row;
		gap: 20px;
		align-items: flex-start;
	}
	.list li .date {
		width: 6em;
	}
	.list li .label {
		width: calc(100% - 6em);
	}
	/**/
	.proList .card-img, .proList .card-img-top {
        height: 85.8px;
    }
	/**/
	.photos .thumbs li {
        height: 55px;
    }
	.footer {
		/*font-size: 1rem;*/
	}
	.footer > .container {
		/*height: 13vw;*/
	}
	
}
@media (min-width:1200px){
	#header.header {
		/*background-size: 100% auto;
    	padding: 0;
		background-position: center bottom;*/
	}
	/**/
	.proList .card-img, .proList .card-img-top {
        height: 104.4px;
    }
	/**/
	.photos .thumbs li {
        height: 70px;
    }
}
@media (min-width:1300px){
	
}
@media (min-width:1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		/*max-width: 1250px;*/
	}
	#header.header .main_menu .nav-link {
		font-size: 1.4375em;
	}
	/**/
	.proList .card-img, .proList .card-img-top {
        height: 123px;
    }
	/**/
	.photos .thumbs li {
        height: 80px;
    }
	.footer ul {
		justify-content: space-evenly;
	}
}
@media (min-width:1600px){
	
	.btn-scrollTop {
		/*bottom: 9em;*/
	}
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		/*max-width: 1450px;*/
	}
	#header.header .navbar {
		padding: 1em 0;
		height: auto;
	}
	#header.header .navbar-toggler.btn-search {
		font-size: 2em;
	}
}
@media (min-width:1900px){
	#header.header .main_menu .nav-link {
		/*font-size: 1.8125em;*/
	}
	.btn-scrollTop {
		/*bottom: 4em;*/
	}
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		/*max-width: 1500px;*/
	}
	
}
@media (min-width:2500px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		/*max-width: 1800px;*/
	}
	#header.header .main_menu .nav-link {
		/*font-size: 3.5em;*/
	}
}


