@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
		margin: 0px;
		padding: 0px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
}
html, body {
		height: 100%;
}
a, a:link, a:visited, a:hover, a:active {
		text-decoration: none;
		color: #333;
		border: 0 !important;
		outline: none !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		-webkit-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
}
button, button:link, button:visited, button:hover, button:active {
		outline: none !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
}
img {
		border: 0px none;
}
body {
		padding: 0;
		margin: 0;
		color: #000000;
		font-family: 'Open Sans', '微軟正黑體', 'Microsoft JhengHei', Verdana, Helvetica, Arial, 'HeitiTC', 'Microsoft YaHei', sans-serif;
		font-size: 1rem;
		background-color: #ffffff;
		font-weight: 500;
}
.c-red {
		color: #ff3333;
}
.c-brown {
		color: #d66616;
}
.bg-brown {
		background-color: #c45d18;
}
ul {
		padding-left: 0;
		margin-left: 0;
}
a:link, a:visited {
		color: #000000;
}
a:hover, a:active {
		color: #a47764;
}
ol.rt {
		list-style: none;
		counter-reset: item;
		padding-left: 0;
}
ol.rt li {
		counter-increment: item;
		position: relative;
		padding-left: .85em;
}
ol.rt li:before {
		content: "("counter(item) ")";
		position: absolute;
		left: -.85em;
}
#popupContainer {
		position: fixed !important;
		bottom: 0;
		margin: auto;
}
@media screen and (max-width: 991px) {
		body.open header .h_menu {
				display: inline-block;
				overflow-x: hidden;
		}
		body.open {
				width: 100%;
				height: 100vh;
				overflow: hidden;
		}
		.overlay {
				position: fixed;
				top: 0;
				left: 0;
				z-index: 49;
				width: 100%;
				height: 100%;
				opacity: 0;
				visibility: hidden;
				-webkit-transition: all 0.3s ease-in-out;
				-o-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
				background-color: rgba(0, 0, 0, 0.8);
		}
		.overlay.open {
				opacity: 0.8;
				visibility: visible;
		}
}
/***********************
LAYOUT 框架
***********************/
section.main-content {
		position: relative;
		display: inline-block;
		float: left;
		width: 100%;
		padding-top: 120px;
		background: #fcf8f5;
		overflow: hidden;
}
body.open section.main-content {
		padding-top: 50px;
}
@media screen and (max-width: 991px) {
		body.open section.main-content, section.main-content {
				padding-top: 50px;
		}
}
/************************
BLOCK
************************/
.page-wrapper, .page-container {
		margin: 0 auto;
		width: 100%;
}
.page-container.full {
		max-width: 100%;
}
.page-wrapper {
		padding: 0px;
}
.page-container.wide {
		padding: 0px;
		max-width: 100%;
		position: relative;
}
.page-container {
		padding: 0px;
		max-width: 991px;
		position: relative;
}
@media only screen and (min-width:1200px) {
		.page-container {
				max-width: 1100px;
		}
		.page-container.wide {
				max-width: 1366px;
		}
		.key-visual .page-container.wide {
				max-width: 1920px;
		}
		.page-container.full {
				max-width: 100%;
		}
}
@media only screen and (min-width:1921px) {
		.page-container.wide {
				max-width: 1600px;
		}
		.key-visual .page-container.wide {
				max-width: 2560px;
		}
}
/****************************/
.toggle-button {
		position: relative;
		display: none;
		float: left;
		left: 0;
		width: 50px;
		height: 50px;
		padding: 18px 15px;
		margin: 0px;
		-webkit-transition: .25s;
		-o-transition: .25s;
		transition: .25s;
		z-index: 999;
}
.toggle-button:hover {
		cursor: pointer;
}
.toggle-button .menu-bar {
		position: relative;
		width: 100%;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
}
.toggle-button .menu-bar-top {
		border: 2px solid #909090;
		border-bottom: none;
		top: 0px;
}
.toggle-button .menu-bar-middle {
		height: 2px;
		margin: 2px 0px;
		top: 0px;
}
.toggle-button .menu-bar-bottom {
		border: 2px solid #909090;
		border-top: none;
		top: 0px;
}
.toggle-button.open .menu-bar-top {
		-webkit-transform: rotate(45deg) translate(3px, 3px);
		-ms-transform: rotate(45deg) translate(3px, 3px);
		transform: rotate(45deg) translate(3px, 3px);
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
}
.toggle-button.open .menu-bar-middle {
		-webkit-transform: translate(0px);
		-ms-transform: translate(0px);
		transform: translate(0px);
		-webkit-transition: .1s ease-in;
		-o-transition: .1s ease-in;
		transition: .1s ease-in;
		opacity: 0;
}
.toggle-button.open .menu-bar-bottom {
		-webkit-transform: rotate(-45deg) translate(3px, -3px);
		-ms-transform: rotate(-45deg) translate(3px, -3px);
		transform: rotate(-45deg) translate(3px, -3px);
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
}
@media only screen and (max-width: 991px) {
		.toggle-button {
				display: inline-block;
		}
}
@media only screen and (max-width: 320px) {
		.toggle-button {
				width: 40px;
				height: 40px;
				padding: 18px 8px;
		}
}
/************************
HEADER
************************/
header {
		position: fixed;
		display: inline-block;
		width: 100%;
		top: 0;
		left: 0;
		font-size: 16px;
		height: 120px;
		z-index: 50;
		border-top: 0;
		background-color: rgba(255, 255, 255, 0.99);
		-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
header.open {
		height: 50px;
		border-top: 4px solid #2e2e2e;
		-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
		header {
				height: 50px;
				border-top: 4px solid #2e2e2e;
		}
}
/************************/
header .h_menu, header .h_logo, header .h_content {
		position: relative;
		display: inline-block;
		float: left;
}
header .h_content {
		width: 100%;
		padding-top: 40px;
}
header .h_content > .page-container {
		position: static;
}
header .h_menu ul.menu-bottom {
		position: fixed;
		display: inline-block;
		top: 0;
		left: 0;
		width: 100%;
		height: 40px;
		background: #2e2e2e;
		z-index: 50;
}
header .h_menu ul.menu-bottom li {
		position: relative;
		display: inline-block;
		float: right;
		font-size: 14px;
		line-height: 1.5em;
		font-weight: 700;
}
header .h_menu ul.menu-bottom a:hover, header .h_menu ul.menu-bottom a {
		display: inline-block;
		color: #ffffff;
		height: 40px;
		padding: 9px 18px;
}
header .h_menu ul.menu-bottom a span {
		font-size: 12px;
		color: #82827c;
		font-family: '微軟正黑體', 'Microsoft JhengHei', Verdana, Helvetica, Arial, 'HeitiTC', 'Microsoft YaHei', sans-serif;
}
header .h_menu ul.menu-bottom li:hover {
		background: #444444;
}
header .h_menu ul.menu-bottom ul {
		position: absolute;
		display: none;
		top: 100%;
		width: 280px;
		color: #b8b8b8;
		background: #444444;
}
header .h_menu ul.menu-bottom li:hover > ul {
		display: block;
		height: auto;
}
header .h_menu ul.menu-bottom ul li {
		float: left;
		width: 100%;
		padding: 5px 20px;
		min-height: 40px;
}
header .h_menu ul.menu-bottom ul li:hover {
		background: #999999;
}
header .h_menu ul.menu-bottom ul li.panel-header:hover {
		background: #444444;
}
header .h_menu ul.menu-bottom ul label, header .h_menu ul.menu-bottom ul a {
		font-weight: 400;
}
header.open ul.menu-bottom {
		/*display: none;*/
		top: -40px;
}
header.open .h_content {
		padding-top: 0px;
}
@media screen and (max-width: 991px) {
		header .h_content {
				padding-top: 0px;
		}
		body.open .h_content {
				padding-left: 280px;
		}
		header .h_content, body.open .h_content {
				-webkit-transition: all 0.36s ease-out;
				-o-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
		}
		header.open ul.menu-bottom, header .h_menu ul.menu-bottom {
				position: relative;
				display: inline-block;
				background: #ffffff;
		}
		header .h_menu ul.menu-bottom li {
				float: left;
				width: 100%;
		}
		header .h_menu ul.menu-bottom li:hover {
				background: #ffffff;
		}
		header .h_menu ul.menu-bottom a:hover, header .h_menu ul.menu-bottom a {
				width: 100%;
				color: #656565;
		}
		header .h_menu ul.menu-bottom a span {
				position: absolute;
				right: 30px;
				color: #ff3333;
		}
		header .h_menu ul.menu-bottom li.pc768 {
				display: none;
		}
		header .h_menu ul.menu-bottom ul {
				position: relative;
				display: inline-block;
				padding: 10px 0px;
				color: #70706f;
				background: #ececec;
		}
		header .h_menu ul.menu-bottom ul li {
				padding: 5px 20px;
				min-height: 30px;
		}
		header .h_menu ul.menu-bottom ul.last-menu li, header .h_menu ul.menu-bottom ul li.panel-header:hover {
				background: #ececec;
		}
		header .h_menu ul.menu-bottom ul li:hover {
				background: #e2e2e2;
		}
		header .h_menu ul.menu-bottom ul a:hover, header .h_menu ul.menu-bottom ul a {
				font-weight: 900;
				color: #000000;
		}
		header .h_menu ul.menu-bottom li:hover > ul, header .h_menu ul.menu-bottom ul {
				display: none;
		}
		header .h_menu ul.menu-bottom li:hover > ul.open, header .h_menu ul.menu-bottom ul.open {
				display: inline-block;
		}
		header .h_menu ul.menu-bottom ul {
				width: 100%;
		}
}
@media screen and (max-width: 480px) {
		body .h_bank, body.open .h_bank {
				position: absolute;
				-webkit-transition: all 0.36s ease-out;
				-o-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
		}
		body .h_bank {
				right: 0;
		}
		body.open .h_bank {
				right: -100%;
		}
		body.open .h_content {
				padding-left: 220px;
		}
}
@media screen and (max-width: 320px) {
		body.open .h_content {
				padding-left: 200px;
		}
}
/************************/
header .h_logo {
		width: 190px;
		margin-top: 26px;
		margin-right: 10px;
}
header .h_logo > a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		position: relative;
}
header .h_logo img {
		display: inline-block;
		float: left;
		width: 50%;
}
header .h_menu ul.menu-top li, header .h_menu ul.menu-top, header .h_menu, header .h_bank {
		position: relative;
		display: inline-block;
}
header .h_bank .menu-dark, header .h_menu ul.menu-top li {
		line-height: 1.75em;
		height: 80px;
		padding: 26px 0px;
		font-weight: 700;
		color: #2e2e2e;
}
header .h_menu ul.menu-top li {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
}
/************************/
header .h_bank:hover ul.dark-last {
		display: block;
}
header .h_bank ul.dark-last {
		position: absolute;
		display: none;
		top: 100%;
		right: 0px;
		width: 180px;
		color: #2e2e2e;
		background: #ececec;
		text-align: center;
}
header .h_bank ul.dark-last li {
		display: inline-block;
		width: 100%;
}
header .h_bank ul.dark-last a, header .h_bank ul.dark-last a:hover {
		display: inline-block;
		width: 100%;
		padding: 15px 0px;
		font-size: 14px;
		color: #2e2e2e;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
}
header .h_bank ul.dark-last a:hover {
		background: #dedede;
}
header .h_bank ul.dark-last.open {
		display: inline-block;
}
/************************/
header .h_menu ul.menu-top a, header .h_menu ul.menu-top a:hover {
		display: inline-block;
		padding: 0px 13px;
		color: #2e2e2e;
}
header .h_menu ul.menu-top li:last-child a {
		border-left: 1px solid #c0c0c0 !important;
}
header .h_menu ul.menu-top li:hover {
		background: #eeeeee;
}
header.open ul.menu-top li {
		height: 46px;
		padding: 10px 0px;
}
/************************/
header .h_bank {
		float: right;
}
header .h_bank .menu-dark {
		padding: 26px 17px;
		display: inline-block;
		color: #ffffff;
		background: #ff3333;
}
header .h_bank:hover a.menu-dark {
		display: inline-block;
		color: #ffffff;
		background: #ee1818;
}
header .h_bank .menu-dark img {
		display: inline-block;
		width: 20px;
		position: relative;
		top: -3px;
		margin-right: 5px;
}
header .h_logo img.logo_en {
		margin-left: auto;
}
header .h_logo img.logo_tc {
		position: absolute;
		left: 0;
}
header.open .h_bank .menu-dark {
		height: 46px;
		padding: 10px 17px;
}
header.open .h_logo img.logo_tc {
		display: none;
}
header.open .h_logo {
		width: 80px;
		margin-top: 12px;
		margin-left: 10px;
		margin-right: 10px;
}
header.open .h_logo img {
		width: 100%;
}
/************************/
header, header .h_logo, header .h_logo img, header .h_content, header .h_menu ul.menu-bottom, header .h_menu ul.menu-top li, header .h_bank:hover .menu-dark, header .h_bank .menu-dark, header.open, header.open .h_logo, header.open .h_logo img, header.open .h_content, header.open ul.menu-bottom, header.open .h_menu ul.menu-top li, header.open .h_bank .menu-dark {
		-webkit-transition: all 0.22s ease-out;
		-o-transition: all 0.22s ease-out;
		transition: all 0.22s ease-out;
}
@media screen and (max-width: 991px) {
		header .h_content {
				height: 50px;
		}
		header .h_logo img.logo_tc {
				display: none;
		}
		header.open .h_logo, header .h_logo {
				width: 80px;
				margin-top: 12px;
				margin-left: 0px;
				margin-right: 10px;
		}
		header .h_logo img {
				width: 100%;
		}
		header .h_bank a.menu-dark {
				font-size: 14px;
				height: 46px;
				padding: 10px 17px;
		}
		header .h_menu {
				position: absolute;
				width: 280px;
				height: 100vh;
				top: -4px;
				left: -100%;
				z-index: 20;
				padding-bottom: 100px;
				background: #ffffff;
		}
		body.open header .h_menu {
				left: 0;
		}
		body header .h_menu, body.open header .h_menu {
				-webkit-transition: all 0.36s ease-out;
				-o-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
				overflow-y: auto;
		}
		header .h_menu ul.menu-top {
				border-bottom: 1px solid #ececec;
				padding-left: 0;
		}
		header .h_menu ul.menu-bottom {
				padding-left: 0;
		}
		header .h_menu ul.menu-top li {
				width: 100%;
				height: auto;
				font-size: 18px;
				padding: 12px 0px;
		}
		header .h_menu a, header .h_menu a:hover {
				padding: 0px 20px;
		}
}
@media screen and (max-width: 480px) {
		header .h_menu {
				width: 220px;
		}
		header.open .h_bank a.menu-dark, header .h_bank a.menu-dark {
				font-size: 12px;
				padding: 10px 10px;
		}
}
@media screen and (max-width: 320px) {
		header .h_menu {
				width: 200px;
		}
		header.open .h_logo, header .h_logo {
				width: 60px;
		}
}
/************************
FOOTER
************************/
footer .f_link, footer .fiscal .f_right, footer .fiscal .f_left, footer .fiscal, footer .f_warning, footer {
		position: relative;
		display: inline-block;
		float: left;
		width: 100%;
}
footer {
		padding: 10px 2%;
		background-color: rgb(72, 72, 72);
}
/************************/
footer .f_warning {
		color: #fff;
		margin: 10px 0 40px 0;
		width: 100%;
		padding: 0;
}
/************************/
footer .fiscal {
		margin: 20px 0px;
		color: #191919;
}
footer .fiscal .f_left {
		width: calc(25% + 20px);
		font-size: 30px;
		color: #ffffff;
		min-height: 48px;
		text-align: left;
}
footer .fiscal .f_left img {
		width: 80%;
}
footer .fiscal .f_right {
		width: calc(75% - 20px);
		font-size: 14px;
		line-height: 1.6em;
		color: #ffffff;
}
footer .fiscal .f_right a, footer .fiscal .f_right a:hover {
		color: #ffffff;
		line-height: 1em;
}
/************************/
footer .f_link {
		margin-top: 10px;
		min-height: 40px;
		font-size: 14px;
		color: #b8b8b8;
}
footer .f_link a, footer .f_link a:hover {
		display: inline-block;
		padding: 0px 10px;
		color: #b8b8b8;
		line-height: 1em;
}
footer .f_link a:first-child {
		padding-left: 0;
}
footer .f_link a + a {
		border-left: 1px solid #b8b8b8 !important;
}
footer .f_copy {
		display: inline-block;
		font-weight: 600;
}
@media screen and (max-width: 991px) {
		footer .fiscal {
				width: 100%;
				padding: 0px 4%;
		}
		footer .fiscal .f_left img {
				max-width: 300px;
		}
		footer .fiscal .f_warning {
				padding-bottom: 20px;
				text-align: justify !important;
		}
		footer .fiscal .f_warning, footer .fiscal .f_left, footer .fiscal .f_right {
				width: 100%;
				padding: 0;
				text-align: left;
		}
		footer .f_link {
				font-size: 13px;
		}
		footer .f_link {
				width: 96%;
				margin: 1em 2%;
				text-align: center;
		}
		footer .f_copy {
				display: inline-block;
				width: 90%;
				margin: 10px 5%;
				text-align: center;
		}
}
@media screen and (max-width: 991px) {
		footer .fiscal .f_warning {
				font-size: 14px;
		}
}
@media screen and (max-width: 480px) {
		footer .fiscal .f_left {
				font-size: 28px;
		}
		footer {
				padding-bottom: 3rem;
		}
}
@media screen and (max-width: 320px) {
		footer .fiscal .f_left {
				font-size: 23px;
				padding-right: 25%;
				text-wrap: nowrap;
		}
		footer .fiscal .f_right {
				font-size: 12px;
		}
}
@media screen and (max-width:280px) {
		footer .fiscal .f_warning, footer .fiscal .f_right {
				font-size: 12px;
		}
		footer .fiscal .f_left {
				font-size: 23px;
		}
}
/************************
KEY-VISUAL
************************/
.key-visual .kv-star {
		position: absolute;
		left: auto;
		right: 0;
		top: 0;
		bottom: 0;
		max-width: 14vw;
		margin: auto;
		z-index: 6;
		opacity: .5;
}
.key-visual {
		width: 100%;
		height: 100%;
		position: relative;
		background-color: #0a161a;
}
.key-visual .kv-bg-item {
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center top;
		aspect-ratio: 21 / 7;
		background-attachment: fixed;
		background-size: 120% auto;
}
.key-visual .kv-bot {
		left: 0;
		right: 0;
		top: auto;
		bottom: 0;
		margin: auto;
}
.key-visual .kv-topic {
		position: absolute;
		left: 0;
		right: 0;
		top: 5%;
		bottom: auto;
		margin: auto;
		width: 100%;
		height: 100%;
		max-width: 34vw;
		z-index: 3;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
}
@media only screen and (min-width: 1600px) {
		.key-visual .kv-bg-item {
				aspect-ratio: 21 / 6.5;
				background-size: 115% auto;
		}
		.key-visual .kv-topic {
				max-width: 30vw;
		}
}
@media only screen and (min-width:1921px) {
		.key-visual .kv-bot {
				width: 100%;
		}
		.key-visual .kv-bg-item {
				aspect-ratio: 21 / 6.5;
				background-size: 110% auto;
		}
}
@media only screen and (min-width:2560px) {
		.key-visual .kv-bg-item {
				width: 2560px;
				background-size: 2560px auto;
				max-height: 740px;
		}
		.key-visual .kv-star {
				max-width: 330px;
		}
		.key-visual .kv-topic {
				max-width: 720px;
		}
		.key-visual .kv-bot {
				max-width: 2560px;
		}
}
@media only screen and (max-width: 1199px) {
		.key-visual .kv-bg-item {
				background-position: center 20%;
		}
		.key-visual .kv-topic {
				top: 10%;
		}
}
@media only screen and (max-width: 991px) {
		.key-visual .kv-bg-item {
				background-position: center top;
		}
		.key-visual .kv-star {
				max-width: inherit;
				width: 20vw;
		}
}
@media only screen and (max-width: 767px) {
		.key-visual .kv-star {
				width: 15vw;
		}
}
@media only screen and (max-width: 991px) and (orientation: landscape) {}
@media only screen and (max-width: 480px) {
		.key-visual .kv-bg-item {
				aspect-ratio: 21 / 9;
				background-size: 150% auto;
				background-position: center 5%;
		}
		.key-visual .kv-topic {
				top: 10%;
				max-width: 45vw;
		}
		.key-visual .kv-star {
				max-width: 25vw;
		}
}
@media only screen and (max-width: 320px) {}
/************************
INFO CONTENT
************************/
.info-content {
		background-color: #0a161a;
}
.info-content .content {
		background-image: url("../images/content_bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: 100% auto;
		margin: auto;
		background-color: #c45d18;
}
@media only screen and (min-width: 1921px) {
		.info-content .content {
				max-width: 2560px;
		}
}
/************************
DRAWER-ITEM 
************************/
.drawer-item {
		width: 100%;
}
.drawer-header {
		margin: 0px;
		padding: .5rem 0;
		cursor: pointer;
		min-height: 50px;
		-webkit-transition: 0.25s;
		-o-transition: 0.25s;
		transition: 0.25s;
		overflow: hidden;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		border-bottom: 1px solid #000000;
}
.drawer-header .title {
		float: left;
		font-size: 18px;
		line-height: 2em;
		font-weight: 600;
		margin: 0;
}
.drawer-item-active .drawer-header {
		-webkit-transition: 0.25s;
		-o-transition: 0.25s;
		transition: 0.25s;
		min-height: 50px;
}
.drawer-header-icon {
		display: inline-block;
		width: 40px;
		height: 40px;
		background: url('../images/btn_to_open.svg') no-repeat scroll center center transparent;
		background-size: 60% 60%;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 0;
}
.drawer-header-icon.drawer-header-icon-active {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
}
.drawer-content {
		width: 100%;
		padding: 10px 6px 30px 6px;
		display: block;
		font-size: 16px;
		line-height: 1.8em;
		text-align: justify;
		word-wrap: break-word;
}
.drawer-content a {
		text-decoration: underline;
}
.drawer-content a:hover {
		color: #e9d1c1;
}
.drawer-content .part {
		margin-bottom: 1rem;
}
.drawer-content .part h6 {
		font-size: 1.15rem;
		font-weight: 700;
}
.drawer-content ol {
		padding-left: 1rem;
}
@media screen and (max-width:991px) {
		.drawer-item {
				max-width: calc(100% - 4rem);
				margin: auto;
		}
		.drawer-header .title {
				font-size: 1rem;
		}
		.drawer-content .part h6 {
				font-size: .825rem;
		}
		.drawer-content {
				font-size: .825rem;
		}
}
@media screen and (max-width:767px) {
		.drawer-content ol {
				padding-left: 1rem;
		}
		.drawer-content {
				font-size: 14px;
		}
		.drawer-content .part h6 {
				font-size: 1rem;
		}
}
@media screen and (max-width:480px) {
		.drawer-content .part h6 {
				font-size: 13px;
		}
		.drawer-item {
				max-width: calc(100% - 2.5rem);
		}
		.drawer-content {
				font-size: 13px;
				padding-left: 0;
				padding-right: 0;
		}
}
/************************
RWD
************************/
.pc_768, .pc_480 {
		display: block !important;
}
.mo_768, .mo_480 {
		display: none !important;
}
@media screen and (max-width: 768px) {
		.pc_768 {
				display: none !important;
		}
		.mo_768 {
				display: block !important;
		}
}
@media screen and (max-width: 480px) {
		.pc_480 {
				display: none !important;
		}
		.mo_480 {
				display: block !important;
		}
}
/************************
GOTOP
************************/
.go_top {
		position: fixed;
		display: inline-block;
		z-index: 99;
		width: 50px;
		height: 50px;
		right: 10px;
		bottom: 50px;
}
.go_top img {
		position: relative;
		display: inline-block;
		width: 100%;
}
@media screen and (max-width: 991px) {
		.go_top {
				width: 40px;
				height: 40px;
				right: 15px;
				bottom: 1.5rem;
		}
}
@media screen and (max-width: 767px) {
		.go_top {
				right: 5px;
		}
}
@media screen and (max-width: 480px) {
		.go_top {
				right: 5px;
				bottom: 3.5rem;
		}
}
/************************
BG ITEM
************************/
.item_1 {
		right: -5%;
		top: 5%;
		max-width: 120px;
}
.item_2 {
		left: 8%;
		top: -1%;
		max-width: 100px;
}
.item_3 {
		left: -8%;
		top: 6%;
		max-width: 140px;
		z-index: 1;
}
.item_4 {
		right: -8%;
		top: 20%;
		max-width: 90px;
		z-index: 1;
}
/************************
CARDS
************************/
.card-box {
		max-width: 30vw;
}
@media only screen and (min-width: 1600px) {
		.card-box {
				max-width: 450px;
		}
}
@media only screen and (min-width: 1921px) {
		.card-box {
				max-width: 550px;
		}
}
@media only screen and (max-width: 1199px) {
		.card-box {
				max-width: 35vw;
				margin-top: 2rem;
		}
}
@media only screen and (max-width: 991px) {
		.card-box {
				max-width: 40vw;
				margin-top: 1rem;
		}
}
@media only screen and (max-width: 767px) {
		.card-box {
				max-width: 45vw;
		}
}
@media only screen and (max-width: 576px) {
		.card-box {
				max-width: 50vw;
		}
}
@media only screen and (max-width: 480px) {
		.card-box {
				max-width: 60vw;
		}
}
@media only screen and (max-width: 320px) {
		.card-box {
				max-width: 70vw;
		}
}
/************************
CARDS
************************/
.info_slider .card, .info_slider .card .card-head, .info_slider .card .card-body, .info_slider .card.card-footer {
		border: 0;
		background-color: transparent;
		padding: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
}
.info_slider {
		max-width: 50%;
		margin: auto;
}
.info_slider .slick-dots li.slick-active button:before {
		background-color: #ffffff !important;
}
.info_slider .slick-dots li button:before {
		background-color: RGBA(255, 255, 255, 1) !important;
		border-radius: 100%;
		content: '';
		width: 12px;
		height: 12px;
}
.info_slider .slick-dots li button:hover {
		opacity: .7;
}
.info_slider .slick-dots li, .info_slider .slick-dots li button {
		width: 12px;
		height: 12px;
}
.info_slider .slick-next:before, .info_slider .slick-prev:before {
		content: "";
}
.info_slider .slick-dotted.slick-slider {
		margin-bottom: 0;
}
.info_slider .slick-prev, .info_slider .slick-next {
		top: 55%;
		width: 70px;
		height: 100px;
}
.info_slider .slick-prev, .info_slider .slick-next {
		top: 50%;
		z-index: 2;
}
.info_slider .slick-prev {
		left: -35px;
}
.info_slider .slick-next {
		right: -35px;
}
.info_slider .slick-next {
		background: url(../images/arrow_right.png) no-repeat scroll center center transparent !important;
		background-size: contain !important;
}
.info_slider .slick-prev {
		background: url(../images/arrow_left.png) no-repeat scroll center center transparent !important;
		background-size: contain !important;
}
.info_slider .slick-slide {
		background-color: transparent !important;
}
.info_slider .slick-dots {
		bottom: -3rem;
}
.info_slider .slick-list {
		overflow: visible !important;
}
.info_slider .card {
		padding: 2rem 0 0 0;
}
.info_slider .card .card-body {
		max-width: calc(100% - 2rem);
		margin: auto;
}
.info_slider .card .card-body > .cover {
		display: block;
		border: 5px solid #ffffff;
		border-radius: 1rem;
		overflow: hidden;
}
.info_slider .card .logo {
		max-width: 200px;
}
.info_slider .card .text-block {
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		max-width: 90%;
		z-index: 1;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		opacity: 0;
		font-size: 1.275rem;
		color: #ffffff;
}
.info_slider .card .text-block .text {
		max-width: 100%;
		margin: auto;
}
.info_slider .card .text-block .name {
		font-size: 1.5rem;
		font-weight: bold;
		margin: .5rem auto 3rem auto;
}
.info_slider .card .text-block small {
		font-size: .75rem;
}
.info_slider .card .card-body .cover::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		background-color: RGBA(0, 0, 0, .5);
		opacity: 0;
}
.info_slider .card .card-body .cover img.bg {
		position: relative;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		max-width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-moz-object-fit: cover;
		-webkit-object-fit: cover;
}
.info_slider .slick-slide .card, .info_slider .slick-slide .card .card-body, .info_slider .slick-slide .card .card-body > .cover, .info_slider .slick-slide .card .card-body .cover img.bg {
		aspect-ratio: 1200 / 800;
}
.info_slider .slick-slide .card .card-body .cover img.bg {
		position: relative;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		max-width: 100%;
		object-fit: cover;
}
.info_slider .slick-cloned img {
		width: 100% !important;
		height: auto !important;
}
.info_slider .slick-show .card .card-body .cover::after {
		-webkit-animation: show1 .75s linear forwards;
		animation: show1 .75s linear forwards;
}
.info_slider .slick-show .card .text-block {
		-webkit-animation: show2 .25s linear forwards;
		animation: show2 .25s linear forwards;
		-webkit-transform: translateY(2rem);
		-ms-transform: translateY(2rem);
		transform: translateY(2rem);
}
.info_slider .card .text-block, .info_slider .card .card-body .cover::after, .info_slider .slick-show .card .text-block, .info_slider .slick-show .card .card-body .cover::after {
		-webkit-transition: all 2s linear;
		-o-transition: all 2s linear;
		transition: all 2s linear;
}
.info_slider .slick-show .card .card-body .cover::after {
		-webkit-animation: show1 .75s linear forwards;
		animation: show1 .75s linear forwards;
}
.info_slider .slick-show .card .text-block {
		-webkit-animation: show2 .25s linear forwards;
		animation: show2 .25s linear forwards;
		-webkit-transform: translateY(2rem);
		-ms-transform: translateY(2rem);
		transform: translateY(2rem);
}
@-webkit-keyframes show1 {
		from {
				opacity: 0;
		}
		to {
				opacity: 1;
		}
}
@keyframes show1 {
		from {
				opacity: 0;
		}
		to {
				opacity: 1;
		}
}
@-webkit-keyframes show2 {
		from {
				opacity: 0;
				-webkit-transform: translateY(2rem);
				transform: translateY(2rem);
		}
		to {
				opacity: 1;
				-webkit-transform: translateY(0);
				transform: translateY(0);
		}
}
@keyframes show2 {
		from {
				opacity: 0;
				-webkit-transform: translateY(2rem);
				transform: translateY(2rem);
		}
		to {
				opacity: 1;
				-webkit-transform: translateY(0);
				transform: translateY(0);
		}
}
/************************
EVENT
************************/
.title-block {
		margin-bottom: 1rem;
}
.title-block {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: relative;
}
.title-block .txt .date {
		font-size: 1.35rem;
}
.title-block .txt {
		font-size: 1.5rem;
		line-height: 1.5;
}
.title-block .txt .fs-1 {
		line-height: 1;
}
.remark-block .txt {
		font-size: 1rem;
		font-weight: normal;
		letter-spacing: 1px;
		color: #ffffff;
		padding: 0 1rem;
}
.remark-text {
		font-size: .75rem;
}
.remark-text.large {
		font-size: 1rem;
}
.head-block {
		font-size: 2rem;
		line-height: 1.25;
}
.head-block img {
		max-width: 25px;
}
/************************
STORE CARD
************************/
.store-card .card-head, .store-card .card-body, .store-card .card-footer, .store-card {
		border: 0;
		background-color: transparent;
}
.store-card {
		max-width: 100%;
		border-radius: 1rem;
		background: linear-gradient(180deg, #fcf9f5 0%, #e3e4e4 100%);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
}
.store-card:hover {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
		-webkit-box-shadow: 0 .35rem .5rem RGBA(0, 0, 0, .35);
		box-shadow: 0 .35rem .5rem RGBA(0, 0, 0, .35);
		background: linear-gradient(30deg, #fcf9f5 0%, #fcf9f5 100%);
}
.store-card .tag {
		max-width: 150px;
}
.store-card:hover .tag img {
		-webkit-transform: scale(1.15);
		-ms-transform: scale(1.15);
		transform: scale(1.15);
}
.store-card:hover .tag {
		-webkit-transform: translate(-1rem, -1rem);
		-ms-transform: translate(-1rem, -1rem);
		transform: translate(-1rem, -1rem);
}
.store-card:hover .tag .text {
		left: 0;
		right: 0;
		bottom: -4rem;
		top: auto;
		-webkit-animation: gogo .35s linear forwards;
		animation: gogo .35s linear forwards;
}
@-webkit-keyframes gogo {
		from {
				opacity: 0;
				bottom: -3rem;
		}
		to {
				opacity: 1;
				bottom: -2.5rem;
		}
}
@keyframes gogo {
		from {
				opacity: 0;
				bottom: -3rem;
		}
		to {
				opacity: 1;
				bottom: -2.5rem;
		}
}
.store-card, .store-card .tag img, .store-card .tag, .store-card .tag .text, .store-card:hover, .store-card:hover .tag img, .store-card:hover .tag, .store-card:hover .tag .text {
		-webkit-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
}
.store-card .tag .text {
		left: -1rem;
		top: -1rem;
		bottom: 0;
		margin: auto;
		font-size: 1.125rem;
		font-weight: bold;
		color: #cb6012;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
}
.store-card .tag img {
		max-width: 70%;
		margin: auto;
}
.store-card .card-body {
		padding: 2rem 1rem 2rem 3rem;
}
.store-card .card-body .info {
		font-size: 1.275rem;
		line-height: 1.6;
		font-weight: 600;
}
.store-card .card-body .info small {
		font-size: 1rem;
}
.store-card .card-body .info .btn {
		font-weight: normal;
		font-size: .85rem;
		line-height: 1.5;
		color: #a47764 !important;
		border-color: #a47764 !important;
		border-radius: 0;
		min-height: 31px;
}
.store-card .card-body .info .btn:hover, .store-card .card-body .info .btn:focus {
		color: #ffffff !important;
		border-color: #56463f !important;
		background-color: #56463f;
}
.store-card .card-head {
		position: relative;
		min-width: 200px;
		max-width: 200px;
		width: 200px;
		padding: 2rem 1rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
}
.store-card .card-head .name {
		font-size: 1.25rem;
		font-weight: bold;
		display: block;
		margin: .5rem auto;
}
.store-card .card-head::after {
		content: '';
		width: 15px;
		height: 100%;
		top: 0;
		bottom: 0;
		left: auto;
		right: -15px;
		background: -o-linear-gradient(right, RGBA(0, 0, 0, 0)30%, RGBA(0, 0, 0, .125)100%);
		background: -webkit-gradient(linear, right top, left top, color-stop(30%, RGBA(0, 0, 0, 0)), to(RGBA(0, 0, 0, .125)));
		background: linear-gradient(to left, RGBA(0, 0, 0, 0)30%, RGBA(0, 0, 0, .125)100%);
		position: absolute;
}
.warning-block {
		color: #cccccc;
		background-color: #484748
}
/************************
RWD
************************/
@media screen and (min-width: 1920px) {
		.info_slider .slick-prev {
				left: -30px;
		}
		.info_slider .slick-next {
				right: -30px;
		}
		.head-block {
				font-size: 2.5rem;
		}
		.head-block img {
				max-width: 30px;
		}
		.title-block .txt .date {
				font-size: 1.5rem;
		}
		.title-block .txt {
				font-size: 1.75rem;
		}
		.info_slider .card .card-body {
				max-width: calc(100% - 5rem);
		}
		.info_slider .slick-slide .card, .info_slider .slick-slide .card .card-body, .info_slider .slick-slide .card .card-body > .cover, .info_slider .slick-slide .card .card-body .cover img.bg {
				aspect-ratio: 1200 / 600;
		}
		.info_slider .card .text-block {
				max-width: 80%;
		}
}
@media only screen and (max-width: 1199px) {
		.info_slider .card .logo {
				max-width: 150px;
		}
		.info_slider .card .logo img {
				max-width: 80%;
				margin: auto;
		}
		.info_slider {
				max-width: 70%;
				margin: auto;
		}
		.info_slider .card .text-block .name {
				font-size: 1rem;
		}
		.info_slider .card .text-block {
				font-size: .875rem;
		}
		.info_slider {
				max-width: 60%;
				margin: auto;
		}
		.item_1 {
				right: 0;
				top: 5%;
				max-width: 10vw;
		}
		.item_2 {
				left: 8%;
				top: -1%;
				max-width: 9vw;
		}
		.item_3 {
				left: 0;
				top: 6%;
				max-width: 11vw;
				z-index: 1;
		}
		.item_4 {
				right: 0;
				top: 20%;
				max-width: 8vw;
				z-index: 1;
		}
		.store-card .card-head {
				padding: 1rem 1rem;
		}
		.store-card .card-head .name {
				font-size: 1.25rem;
		}
		.store-card .card-body {
				padding: 2rem 1rem 2rem 2rem;
		}
		.store-card .tag img {
				max-width: 60%;
		}
		.store-card .tag .text {
				left: -.5rem;
				top: -1rem;
				font-size: 1rem;
		}
		.store-card .card-body .info {
				font-size: 1.125rem;
		}
		.store-block {
				max-width: 90%;
		}
		.remark-text.large {
				font-size: 1rem;
		}
		.title-block .txt .date {
				font-size: 1.25rem;
		}
		.title-block .txt {
				font-size: 1.45rem;
		}
		.info_slider .slick-prev {
				left: -35px;
		}
		.info_slider .slick-next {
				right: -35px;
		}
}
@media only screen and (max-width: 991px) {
		.info_slider .slick-prev {
				left: -22px;
		}
		.info_slider .slick-next {
				right: -22px;
		}
		.info_slider .card .logo img {
				max-width: 70%;
		}
		.info_slider .slick-prev, .info_slider .slick-next {
				width: 50px;
				height: 80px;
		}
		.info_slider .card .card-body > .cover {
				border-width: 4px;
		}
		.info_slider {
				max-width: 70%;
				margin: auto;
		}
		.head-block {
				font-size: 1.5rem;
		}
		.head-block img {
				max-width: 20px;
		}
		.title-block .txt {
				font-size: 1.125rem;
		}
		.title-block .txt .fs-1 {
				font-size: calc(1.125rem + 1.5vw) !important;
		}
		.title-block .txt .date {
				font-size: 1rem;
		}
		.store-card .card-body .info small, .remark-text.large {
				font-size: .875rem;
		}
		.store-card .card-head {
				min-width: 140px;
				max-width: 140px;
				width: 140px;
				padding: 1rem 1rem;
		}
		.store-card .tag img {
				max-width: 60%;
		}
		.store-card .tag .text {
				left: -.5rem;
				top: -1rem;
				font-size: .875rem;
		}
		.store-card .card-body .info {
				font-size: 1rem;
		}
		.store-card .card-head .name {
				font-size: 1.125rem;
		}
		.store-card .tag {
				max-width: 120px;
		}
		.title-block .txt {
				font-size: 1rem;
		}
}
@media only screen and (max-width: 767px) {
		.store-card .card-body .info {
				font-size: .875rem;
		}
		.store-card .card-body .info small, .remark-text.large {
				font-size: .8125rem;
		}
		.store-card .card-head {
				min-width: 130px;
				max-width: 130px;
				width: 130px;
				padding: 1rem 1rem;
		}
		.store-card .card-head .name {
				font-size: 1rem;
		}
		.store-card .tag {
				max-width: 100px;
		}
		.info_slider .card .logo img {
				max-width: 70%;
		}
		.info_slider .card .text-block .name {
				font-size: .875rem;
		}
		.info_slider .card .text-block .text {
				font-size: .75rem;
		}
		.info_slider .slick-next {
				right: -25px;
		}
		.info_slider .slick-prev {
				left: -25px;
		}
}
@media only screen and (max-width: 576px) {
		.info_slider {
				max-width: 80%;
		}
		.info_slider .slick-next {
				right: -25px;
		}
		.info_slider .slick-prev {
				left: -25px;
		}
}
@media only screen and (max-width: 480px) {
		.info_slider .slick-next {
				right: 0;
		}
		.info_slider .slick-prev {
				left: 0;
		}
		.item_1 {
				right: 5%;
				top: 5%;
				max-width: 13vw;
		}
		.item_2 {
				left: 8%;
				top: 0;
				max-width: 10vw;
		}
		.item_3 {
				left: 5%;
				top: 5.5%;
				max-width: 16vw;
				z-index: 1;
		}
		.item_4 {
				right: 0;
				top: 10%;
				max-width: 12vw;
				z-index: 1;
		}
		.title-block .txt .date {
				font-size: .875rem;
		}
		.title-block .txt {
				font-size: 1rem;
		}
		.info_slider .card .card-body {
				max-width: calc(100% - 1rem);
		}
		.info_slider .card .card-body > .cover {
				border-width: 3px;
		}
		.info_slider .slick-slide .card, .info_slider .slick-slide .card .card-body, .info_slider .slick-slide .card .card-body > .cover, .info_slider .slick-slide .card .card-body .cover img.bg {
				aspect-ratio: 1200 / 1100;
		}
		.info_slider .card .text-block .name {
				font-size: .825rem;
		}
		.info_slider .card .text-block .text {
				font-size: .75rem;
		}
		.info_slider .card .logo {
				max-width: 30vw;
		}
		.info_slider .slick-dots {
				bottom: -3rem;
		}
		.info_slider .slick-prev {
				left: -20px;
		}
		.info_slider .slick-next {
				right: -20px;
		}
		.info_slider .slick-prev, .info_slider .slick-next {
				top: 55%;
				width: 40px;
				height: 50px;
		}
		.info_slider {
				max-width: 80%;
		}
		.store-card .card-head {
				min-width: 100%;
				max-width: 100%;
				width: 100%;
				padding: .75rem 0 .5rem 0;
		}
		.store-card .card-body > div {
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				-ms-flex-direction: column;
				flex-direction: column;
		}
		.store-card .card-head img {
				max-width: 50%;
				margin: auto;
		}
		.store-card .card-head::after {
				content: '';
				width: 100%;
				height: 15px;
				top: auto;
				bottom: -15px;
				left: 0;
				right: 0;
				background: -o-linear-gradient(bottom, RGBA(0, 0, 0, 0) 30%, RGBA(0, 0, 0, .125) 100%);
				background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, RGBA(0, 0, 0, 0)), to(RGBA(0, 0, 0, .125)));
				background: linear-gradient(to top, RGBA(0, 0, 0, 0) 30%, RGBA(0, 0, 0, .125) 100%);
		}
		.store-card {
				max-width: 100%;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				-ms-flex-direction: column;
				flex-direction: column;
		}
		.store-card .card-head .name br {
				display: none !important;
		}
		.store-card .tag .text {
				left: -1.125rem;
				top: -1rem;
				font-size: .875rem;
		}
		.store-card .tag {
				margin: 1rem auto 2rem auto;
		}
		.store-card:hover .tag {
				-webkit-transform: translate(0, -1rem);
				-ms-transform: translate(0, -1rem);
				transform: translate(0, -1rem);
		}
		.store-card .tag img {
				max-width: 70%;
		}
		.store-card .card-body {
				padding: 1.5rem 2rem 2rem 2rem;
				-webkit-box-pack: center !important;
				-ms-flex-pack: center !important;
				justify-content: center !important
		}
		.store-card .card-body > div {
				-webkit-box-pack: center !important;
				-ms-flex-pack: center !important;
				justify-content: center !important
		}
		.warning-block .display-4 {
				font-size: calc(1.35rem + .9vw) !important;
		}
		.warning-block {
				position: fixed;
				left: 0;
				right: 0;
				bottom: 0;
				margin: auto;
				z-index: 2;
		}
}
@media only screen and (max-width: 320px) {
		.info_slider .card .text-block .text {
				font-size: .65rem;
		}
		.warning-block .display-4 {
				font-size: calc(1.125rem + .9vw) !important;
		}
}
/************************
Sticky Bar
************************/
.fix-ad {
		bottom: 6.5rem;
		right: .25rem;
		left: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
}
.fix-ad .item {
		border-radius: 1rem;
		padding: 1rem .5rem .5rem .5rem;
		text-align: center;
		display: block;
		margin-bottom: .5rem;
		width: 125px;
		position: relative;
}
.fix-ad .item.pic {
		border-radius: 0;
		padding: 0;
		text-align: center;
		display: block;
		margin-bottom: .25rem;
		width: 125px;
		position: relative;
}
.fix-ad .item:not(.pic) img {
		max-width: 80px;
		margin-bottom: .5rem;
}
.fix-ad .item.pic1 img {
		max-width: 135px;
		position: relative;
		left: -10px;
}
.fix-ad .item.pic2 img {
		margin-bottom: .5rem;
}
.fix-ad .item .act {
		font-size: 1rem;
		font-weight: bold;
		color: #000000;
		position: relative;
}
.fix-ad .item .act img {
		max-width: 12px;
		margin-left: .25rem;
		position: absolute;
		top: .5rem;
}
/*.fix-ad .item, .fix-ad .item:hover {
		-webkit-transition: all .2s;
		-o-transition: all .2s;
		transition: all .2s;
		-webkit-transform-origin: center right;
		-ms-transform-origin: center right;
		transform-origin: center right;
}*/
@media only screen and (min-width:1200px) {
		/*.fix-ad .item:hover {
				width: 150px;
		}*/
}
@media only screen and (max-width:1199px) {
		.fix-ad {
				-webkit-transform: translateZ(0);
				transform: translateZ(0);
				-webkit-backface-visibility: hidden;
				backface-visibility: hidden;
				-webkit-filter: blur(0);
				-webkit-transform-origin: 0% 0;
				-ms-transform-origin: 0% 0;
				transform-origin: 0% 0;
		}
		.fix-ad {
				-webkit-transform: scale(.85);
				-ms-transform: scale(.85);
				transform: scale(.85);
				-webkit-transform-origin: center right;
				-ms-transform-origin: center right;
				transform-origin: center right;
				bottom: 6rem;
		}
}
@media only screen and (max-width:991px) {
		.fix-ad {
				-webkit-transform: scale(.7);
				-ms-transform: scale(.7);
				transform: scale(.7);
				-webkit-transform-origin: center right;
				-ms-transform-origin: center right;
				transform-origin: center right;
				bottom: 0;
		}
		.fix-ad .item {
				margin-bottom: .35rem;
		}
}
@media only screen and (max-width:767px) {
		.fix-ad {
				-webkit-transform: scale(.6);
				-ms-transform: scale(.6);
				transform: scale(.6);
				bottom: -1.5rem
		}
}
@media only screen and (max-width: 568px) and (orientation: landscape) {
		.fix-ad {
				-webkit-transform: scale(.5);
				-ms-transform: scale(.5);
				transform: scale(.5);
				bottom: -3rem
		}
}
@media only screen and (max-width:480px) {
		.fix-ad {
				-webkit-transform: scale(.6);
				-ms-transform: scale(.6);
				transform: scale(.6);
				bottom: .5rem
		}
}
@media only screen and (max-width:320px) {
		.fix-ad {}
}