/* =========================================================================

==base
==header
==banner
==intro
==product
==news
==contact
==footer
==breadcrumb + pagination + no-data + privacy
==RWD

========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/* wow animation載入預設透明度校正，配合custom.js */
.wow {
	opacity: 0;
}

.cke_editable .wow {
	opacity: 1;
}

/* =========================================================================
==base
========================================================================= */
:root {
	--fs-BNTitle: 48px;
	--fs-sectionTitle: 36px;
	--fs-sectionSubTitle: 20px;
	--fs-infoTitle: 28px;
	--fs-itemTitle: 24px;
	--fs-sidebarTitle: 24px;
	--fs-BNTxt: 20px; 
	--fs-headerNav: 18px;
	--fs-normal: 16px; 

	--cnvs-themecolor:	#0099DE;
	--cnvs-deepblue:	#166082;
	--cnvs-lightblue:	#C6E7FA;
	--cnvs-heading-color: var(--cnvs-black);
	
	--section: 80px;
	--header-height: 92px;
}

body,
.form-control {
	word-break: break-word;
	letter-spacing: 1px;
	line-height: 1.75;
	font-weight: 400;
	font-family: "Noto Sans TC", sans-serif;
	color: var(--cnvs-black);
	font-size: var(--fs-normal);
	transition: .3s ease all;
}

.form-control::placeholder {
	color: var(--cnvs-contrast-600);
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--cnvs-themecolor) !important;
}

p:last-child,
ul:last-child,
ol:last-child,
li:last-child,
form:last-child,
.form-control:last-child {
	margin-bottom: 0;
}

a {
	color: var(--cnvs-black);
	transition: .3s ease;
}

a:hover {
	color: var(--cnvs-themecolor);
}

button {
	transition: .3s ease;
}

input[type="date"],
input[type="time"] {
	cursor: pointer;
	padding-right: 2.5rem;
	position: relative;
}

input[type="date"]::after {
	content: "\f1f6";
	font-size: 15px;
	font-family: bootstrap-icons !important;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

input[type="time"]::after {
	content: "\f293";
	font-size: 15px;
	font-family: bootstrap-icons !important;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: right center;
}

.form-check-input {
	margin-top: 6px;
	width: 18px;
	height: 18px;
	border: 1px solid var(--cnvs-contrast-500);
}

.form-check-input:checked {
	background-color: var(--cnvs-themecolor);
}

.form-control:disabled {
	background-color: var(--cnvs-contrast-400);
}

.section {
	background-color: var(--cnvs-white);
	padding: var(--section) 0;
	margin: 0;
}

/* ================= ellipsis ================= */
.one-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.two-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.three-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ==================== btn ==================== */
.btn-base {
	padding: 12px 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: var(--fs-normal);
	color: var(--cnvs-white);
	background-color: var(--cnvs-deepblue);
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-base:hover {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

/* ==================== title ==================== */
.section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	line-height: 1.5;
	margin-bottom: 48px;
}

.section-title .en {
	font-size: var(--fs-sectionSubTitle);
	line-height: 1.5;
	font-weight: 700;
	color: var(--cnvs-deepblue);
}

.section-title .zh {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: var(--fs-sectionTitle);
	line-height: 1.5;
	font-weight: 700;
	color: var(--cnvs-themecolor);
}

.item-title {
	font-size: var(--fs-itemTitle);
	line-height: 1.5;
	font-weight: 600;
}

.info-title {
	font-size: var(--fs-infoTitle);
	line-height: 1.5;
	font-weight: 600;
}

.sidebar-title {
	font-size: var(--fs-sidebarTitle);
	line-height: 1.5;
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 8px;
	text-underline-offset: -3px;
	text-decoration-color: var(--cnvs-lightblue);
	text-decoration-skip-ink: none;
	color: var(--cnvs-deepblue);
}

/* ==================== other ==================== */
.color-deepblue {
	color: var(--cnvs-deepblue);
}

.bg-deepblue {
	background-color: var(--cnvs-deepblue);
}

/* =========================================================================
==header
========================================================================= */
.menu-link {
	padding: 32px 12px;
	font-size: var(--fs-headerNav);
	font-weight: 500;
	line-height: 1.5;
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link,
.sub-menu-container .menu-item > .menu-link {
	font-size: var(--fs-headerNav);
	font-weight: 500;
	line-height: 1.5;
}

.is-expanded-menu .menu-link div > i.sub-menu-indicator {
	top: 5px;
	margin-left: 4px;
}

#top-search-trigger {
	width: 58px;
	height: 38px;
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
	border-radius: 50px;
	font-size: 20px;
}

#top-search-trigger:hover,
#top-search-trigger:active {
	background-color: var(--cnvs-deepblue);
	color: var(--cnvs-white);
}

.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
	margin-left: 24px;
}

.header-misc {
	margin-left: 36px;
}

#logo {
	/* position: absolute;
	top: 0;
	left: 0; */
	max-height: fit-content;
}

#header-wrap #logo img {
	height: auto;
	width: 130px;
}

.is-expanded-menu .header-row {
	position: relative;
	justify-content: flex-end;
}

.header-wrap-clone {
	height: var(--header-height);
}


/* =========================================================================
==banner
========================================================================= */
#slider {
	aspect-ratio: 2000 / 780;
}

.swiper_wrapper.single-slide .swiper-navs,
.swiper_wrapper.single-slide .swiper-pagination {
	display: none !important;
}

.swiper-slide-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}

/* ==================== scroll down animation ==================== */
.one-page-arrow {
	bottom: 30px;
	cursor: pointer;
}

.one-page-arrow .animated {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

/* ==================== title ==================== */
.banner-title {
	font-size: var(--fs-BNTitle);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 2px;
	color: var(--cnvs-white);
	margin-bottom: 0;
}

.banner-txt {
	font-size: var(--fs-BNTxt);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 1.5px;
	color: var(--cnvs-white);
	margin-bottom: 0;
}

/* ==================== btn ==================== */
#slider .btn-base {
	background-color: var(--cnvs-themecolor);
}

#slider .btn-base:hover {
	background-color: var(--cnvs-lightblue);
	color: var(--cnvs-black);
}

/* =========================================================================
==intro
========================================================================= */
.intro-txt-wrap .btn-base {
	margin-top: 36px;
}

.intro-img-wrap {
	--space: 24px;
	padding: 0 var(--space) var(--space) 0;
	z-index: 0;
}

.intro-img-wrap:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--cnvs-lightblue);
	width: calc(100% - var(--space));
	height: calc(100% - var(--space));
	z-index: -1;
	border-radius: 0 0 0 70px;
}

.intro-img-wrap img {
	border-radius: 0 0 0 70px;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
}

/* ==================== info ==================== */
.rep-item.border {
	border-color: var(--cnvs-contrast-500) !important;
	background-color: var(--cnvs-white);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
	border-radius: 30px 0 30px 0;
	border-bottom: 6px solid var(--cnvs-themecolor) !important;
	position: relative;
}

/* .rep-item svg {
	position: absolute;
	top: 0;
	right: 0;
} */

.rep-item:before {
	content: '';
	background-image: url('../images/shape.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
}

/* ==================== history ==================== */
.history-section {
	overflow: hidden;
	background-image: url('../images/introbg_deco.png');
	background-attachment: fixed;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.timeline-box {
	border-right: 2px solid var(--cnvs-deepblue);
	width: 50%;
}

.timeline-box:first-child {
	padding-top: 0;
}

.timeline-box {
	justify-content: flex-end;
}

.timeline-box:nth-child(even) {
	flex-direction: row-reverse;
	margin-left: calc(50% - 2px);
	border-left: 2px solid var(--cnvs-deepblue);
	border-right: none;
}

.timeline-card__wrap {
	margin-right: 10px;
}

.timeline-box:nth-child(even) .timeline-card__wrap {
	margin-right: 0px;
	margin-left: 10px;
}

.timeline-year {
	font-size: var(--fs-BNTitle);
	color: var(--cnvs-deepblue);
	-webkit-text-stroke: 1px var(--cnvs-deepblue);
	color: transparent;
	text-align: right;
}

.timeline-box:nth-child(even) .timeline-year {
	text-align: left;
}

.timeline-card__txt::before {
	content: "";
	border-radius: 8px;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -15px;
	left: -15px;
	background: var(--cnvs-lightblue);
}

.timeline-box:nth-child(even) .timeline-card__txt::before {
	left: initial;
	right: -15px;
}

.timeline-card__inner {
	border: 1px solid var(--cnvs-deepblue);
}

.timeline-card__wrap .item-title {
	border-bottom: 2px solid var(--cnvs-deepblue);
}

/* 線圈 */
.timeline-decor {
	display: flex;
	align-items: center;
	margin-right: -9px;
	position: relative;
	top: 60px;
}

.timeline-box:nth-child(even) .timeline-decor {
	margin-left: -9px;
	margin-right: 0;
}

.timeline-decor .d-circle {
	width: 16px;
	height: 16px;
}

.timeline-decor .d-line {
	width: 50px;
	height: 2px;
}

/* ==================== intro2 ==================== */
.intro3-section .txt-wrap {
	padding: 36px;
	border: 1px solid var(--cnvs-themecolor);
	border-bottom: 4px solid var(--cnvs-themecolor);
}

.intro3-section .txt-wrap .svg-right {
	position: absolute;
	top: 0;
	right: 0;
}

.intro3-section .txt-wrap .svg-left {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(-1);
}

/* =========================================================================
==product
========================================================================= */
.index-pd-section {
	background-color: #E2F4FF;
	background-image: url('../images/pdbg_deco.png');
	background-blend-mode: lighten;
	background-attachment: fixed;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.pd-img-wrap {
	overflow: hidden;
	border: 1px solid var(--cnvs-contrast-500);
	border-radius: 30px 0 0 0;
}

.pd-img-wrap img {
	width: 100%;
	transition: all 0.3s ease;
}

.pd-item:hover .pd-img-wrap img {
	transform: scale(1.05);
}

.pd-item .item-title {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
	text-align: center;
	border-radius: 0 0 30px 0;
}

.pd-item:hover .item-title {
	background-color: var(--cnvs-deepblue);
	color: var(--cnvs-white);
}

.pd-tag {
	padding: 4px 16px;
	background-color: var(--cnvs-deepblue);
	color: var(--cnvs-white);
	border-radius: 0 0 0 12px;
	position: absolute;
	top: 0;
	right: 0;
}

.pd-tag:hover {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

/* ==================== sidebar category ==================== */
.product-cate-wrap .toggle .toggle:not(.toggle-active) .toggle-closed {
	display: inline-block;
}

.product-cate-wrap .toggle .toggle:not(.toggle-active) .toggle-open {
	display: none;
}

.toggle {
	margin-bottom: 8px;
}

.toggle.first {
	padding-right: 12px;
}

.toggle.first.active > .toggle-header > .product-page-link,
.toggle.second.active > .toggle-header > .product-page-link {
	color: #0172a5;
	font-weight: 700;
}

.cate-child-list {
	padding-right: 12px;
}

.cate-child-list li {
	margin-bottom: 4px;
}

.cate-child-list li.active .product-page-link {
	color: #0172a5;
	font-weight: 700;
}

.toggle.second:not(:last-child),
.cate-child-list li:not(:last-child) .product-page-link {
	border-bottom: 1px solid var(--cnvs-contrast-400);
}

.cate-child-list li .product-page-link {
	display: block;
	padding: 8px 0;
}

.toggle-icon i {
	font-size: 20px;
}

.product-page-link {
	font-weight: 400;
	padding: 8px 0 8px 12px;
}

.toggle-icon {
	padding: 0 12px;
}

.toggle-icon:hover {
	color: var(--cnvs-themecolor);
}

.toggle-active {
	background-color: rgb(198 231 250 / 30%);
	border-radius: 16px;
}

/* ==================== list ==================== */
.pd-list-wrap .pd-item {
	margin-bottom: 36px;
}

.pd-list-wrap .pd-item .item-title {
	font-size: calc(var(--fs-itemTitle) - 2px);
}

/* ==================== info img ==================== */
.proSwiper2 .swiper-wrapper {
	align-items: center;
}

.swiper-slide-thumb-active {
	border-color: var(--cnvs-deepblue) !important;
}

.swiper-slide-thumb-active::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: calc(50% - .5em);
	top: -.5em;
	border-top: 0;
	border-right: .5em solid transparent;
	border-bottom: .5em solid var(--cnvs-deepblue);
	border-left: .5em solid transparent;
}

.prodcut-info-img-wrap [class*=swiper-button-] {
	width: 36px;
	height: 36px;
	margin-top: 0;
	border-color: rgba(var(--cnvs-contrast-rgb), 0.1) !important;
	opacity: 0;
	transition: .3s ease-in-out;
}

.prodcut-info-img-wrap [class*=swiper-button-]:after {
	opacity: 0;
}

.prodcut-info-img-wrap [class*=swiper-button-]:hover {
	background-color: var(--cnvs-themecolor) !important;
	color: var(--cnvs-white);
}

.prodcut-info-img-wrap:hover [class*=swiper-button-] {
	opacity: 1;
}

.proSwiper .swiper-slide {
	aspect-ratio: 4 / 3;
}

.proSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==================== tab ==================== */
.product-info-tabs .nav-tabs {
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.pd-info-wrap .pd-tag {
	border-radius: 0 0 12px 0;
}

.product-info-tabs .nav-tabs .nav-link {
	white-space: nowrap;
}

.tab-pane {
	padding: 24px 0 0;
}

#myTab.nav-tabs .nav-link {
	color: #000;
}

#myTab.nav-tabs .nav-link.active,
#myTab.nav-tabs .nav-item.show .nav-link {
	color: var(--cnvs-themecolor);
}

#myTab.nav-tabs {
	width: 100%;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

#myTab.nav-tabs.has-scroll {
	cursor: grab;
}

#myTab.nav-tabs::-webkit-scrollbar {
	display: none;
}

.tab-scroll-wrap {
	width: 100%;
}

.tab-scroll-bar__track {
	display: none;
	height: 6px;
	background: rgba(var(--cnvs-contrast-rgb), 0.12);
	border-radius: 3px;
	position: relative;
	cursor: pointer;
}

.tab-scroll-wrap.has-scroll .tab-scroll-bar__track {
	display: block;
}

.tab-scroll-bar__thumb {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	min-width: 40px;
	background: var(--cnvs-themecolor);
	border-radius: 3px;
	cursor: grab;
}

.tab-scroll-bar__thumb.is-dragging {
	cursor: grabbing;
}

#myTab.nav-tabs.is-dragging {
	cursor: grabbing;
	user-select: none;
}

#myTab.nav-tabs.is-dragging .nav-link {
	pointer-events: none;
}

#myTab.nav-tabs .nav-item {
	flex-shrink: 0;
}

#myTab.nav-tabs .nav-link {
	white-space: nowrap;
}

/* ==================== info ==================== */
.download-btn {
	background-color: #f60002;
	color: var(--cnvs-white);
	border: 0;
	padding: 6px 32px;
	border-bottom: 4px solid #a80000;
}

.download-btn:hover,
.download-btn:active {
	background-color: #d30000;
	border-color: #880000;
}

.pd-info-tag {
	color: var(--cnvs-themecolor);
}

.pd-info-tag:hover,
.pd-info-tag:active {
	color: var(--cnvs-deepblue);
}


/* =========================================================================
==news
========================================================================= */
.news-title-wrap {
	position: absolute !important;
	top: 0;
	left: 0;
}

.news-title-wrap .btn-base {
	margin-top: 36px;
}

.news-item-wrap {
	padding-left: 88px;
}

.news-img-wrap {
	border: 1px solid var(--cnvs-contrast-500);
}

.news-img-wrap img {
	transition: all 0.3s ease;
}

.news-img-wrap:hover img {
	transform: scale(1.05);
}

.news-func-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
}

.news-func-wrap .date {
	color: var(--cnvs-deepblue);
}

.news-func-wrap .dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--cnvs-deepblue);
}

.news-func-wrap .news-tag {
	color: var(--cnvs-themecolor);
}

.news-func-wrap .news-tag:hover {
	color: var(--cnvs-deepblue);
}

.news-txt-wrap .item-title {
	font-size: calc(var(--fs-itemTitle) - 2px);
	transition: all 0.3s ease;
}

.news-txt-wrap:hover .item-title {
	color: var(--cnvs-themecolor);
}

.news-txt-wrap span {
	border-top: 1px solid var(--cnvs-contrast-500);
	padding-top: 16px;
}

.news-bgwave {
	position: absolute;
	top: 15%;
	right: 57%;
}

/* ==================== sidebar ==================== */
.sidebar-item + .sidebar-item {
	margin-top: 56px;
}

.sidebar-item .search-wrap input {
	border: none;
	background: none;
	padding: 10px 70px 10px 19px;
	width: 100%;
	border-bottom: 1px solid var(--cnvs-contrast-500);
}

.sidebar-item .search-wrap button {
	background-color: transparent;
	border: 0;
	color: var(--cnvs-themecolor);
	font-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 4px 12px;
}

.sidebar-item .search-wrap button:hover {
	background-color: var(--cnvs-deepblue);
	color: var(--cnvs-white);
}

.sidebar-item .cate-wrap a {
	padding: 8px 12px;
	border-bottom: 1px solid var(--bs-border-color);
}

.sidebar-item .cate-wrap li.active a {
	background-color: rgb(198 231 250 / 60%);
	border-radius: 8px;
}

/* ==================== hot ==================== */
.hot-wrap .item {
	border-bottom: 1px solid var(--bs-border-color);
}

.hot-wrap .item .img-wrap {
	display: block;
	width: 120px;
}

.hot-wrap .item .img-wrap img {
	transition: all 0.3s ease;
}

.hot-wrap .item .img-wrap:hover img {
	transform: scale(1.05);
}

.hot-wrap .item .txt-wrap .title {
	font-size: 18px;
}

/* ==================== list ==================== */
.news-info-item {
	position: relative;
	border-color: var(--cnvs-contrast-500) !important;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
	border-radius: 30px 0 30px 0;
	border-bottom: 6px solid var(--cnvs-themecolor) !important;
	margin-bottom: 36px;
}

.news-info-item svg {
	position: absolute;
	top: 0;
	right: 0;
}

.news-info-item .img-wrap img {
	width: 100%;
	transition: all 0.3s ease;
}

.news-info-item .img-wrap:hover img {
	transform: scale(1.05);
}

/* ==================== share ==================== */
.news-share-wrap a[title="Facebook"]:hover {
	color: #0b4da3 !important;
}

.news-share-wrap a[title="Line"]:hover {
	color: #068306 !important;
}

.news-share-wrap a[title="copy-link"]:hover {
	color: var(--cnvs-deepblue) !important;
}

/* =========================================================================
==contact
========================================================================= */
.index-contact-wrap {
	padding: 80px 48px;
	border-radius: 30px;
}

.index-contact-wrap:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

.index-contact-wrap .section-title .en {
	color: var(--cnvs-contrast-300);
}

.index-contact-wrap .btn-base {
	background-color: var(--cnvs-themecolor);
}

.contact-bgwave {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* ================= info ================= */
.contact-info {
	margin-bottom: -16px;
}

.contact-info li a {
	background-color: rgb(198 231 250 / 50%);
	word-break: break-word;
}

.contact-info li a:hover,
.contact-info li a:active {
	transform: translateY(-4px);
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

/* ================= form ================= */
.contact-link {
	color: var(--cnvs-themecolor);
}

.contact-link:hover,
.contact-link:active {
	color: var(--cnvs-deepblue);
}

.form-check-input[type=checkbox] {
	transform: translateY(5px);
}

/* ================= sending ================= */
.sending {
	top: 100%;
}

/* ================= map ================= */
.contact-map iframe {
	height: 450px !important;
}

/* =========================================================================
==footer
========================================================================= */
#footer {
	background-color: #C6E7FA;
}

#footer .main-footer {
	padding: 60px 12px;
}

.footer-h1 {
	font-size: var(--fs-normal);
	line-height: 1.75;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
}

.site-map li:not(:last-child)::after {
	content: '/';
	display: inline-block;
	margin: 0 24px;
}

.footer-contact-info {
	border-radius: 16px;
	margin-top: 24px;
}

#copyrights {
	background-color: var(--cnvs-themecolor);
}

#copyrights a {
	color: var(--cnvs-white);
}

#copyrights a:hover {
	color: var(--cnvs-lightblue);
}

/* ==================== float sns ==================== */
.float-sns-wrap .sns-icon {
	width: 44px;
	height: 44px;
}

.float-sns-wrap {
	right: 30px;
	bottom: calc(50px + 44px + 16px); /* gotop bottom + item width + gap */
	z-index: 599;
}

.float-sns-wrap .sns-icon {
	font-size: 24px;
	box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.20);
}

.h-bg-line:hover {
	background-color: #059505 !important;
}

.h-bg-color:hover {
	background-color: var(--cnvs-deepblue) !important;
}

.h-bg-deepblue:hover {
	background-color: #103d52;
}

/* =========================================================================
==breadcrumb + pagination + no-data + privacy
========================================================================= */
.breadcrumb-wrap {
	padding-top: 200px;
}

.breadcrumb-title {
	font-size: var(--fs-sectionTitle);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 1px;
	flex-shrink: 0;
	margin-right: 48px;
}

.php_breadcrumb li:not(:last-child)::after {
	content: '/';
	display: inline-block;
	margin: 0 12px;
}

.breadcrumb-wrap,
.breadcrumb-wrap a {
	color: var(--cnvs-lightblue);
}

.breadcrumb-wrap a:hover,
.breadcrumb-wrap a:active {
	color: var(--cnvs-white);
}

/* ================= pagination ================= */
.page-item {
	margin: 0 4px;
}

.page-link {
	width: 44px;
	height: 44px;
}

.page-link.arrow {
	background-color: transparent;
	color: var(--cnvs-themecolor);
}

.page-link.arrow:hover,
.page-link.arrow:active {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

.page-link.arrow i {
	font-size: 12px;
}

/* ================= no-data ================= */
.no-data {
	border-radius: 16px;
	border: 1px solid var(--cnvs-deepblue);
}

/* =========================================================================
==RWD
========================================================================= */
@media (max-width:1399px) {
	:root {
    --fs-BNTitle: 42px;
	}
}

@media (max-width:1199px) {
	:root {
    --fs-BNTitle: 36px;
		--fs-BNTxt: 18px;
	}

	/* ==================== header ==================== */
	/* #header-wrap #logo img {
		width: 160px;
	} */

	.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
		margin-left: 4px;
	}

	.header-misc {
    margin-left: 24px;
  }

	/* ==================== breadcrumb + pagintaion + privacy ==================== */
	.breadcrumb-wrap {
		padding-top: 180px;
	}
}

@media (max-width:991px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
		opacity: 1;
	}
	
	:root {
		--fs-BNTitle: 36px;
		--fs-sectionTitle: 32px;
		--fs-infoTitle: 26px;
		--fs-itemTitle: 22px;
		--fs-BNTxt: 17px;
		--fs-sectionSubTitle: 18px;
		--fs-headerNav: 17px;

		--cnvs-section-margin: 60px;

		--section: 60px;
		--cnvs-canvas-slider-dots-size: 8px;
		--cnvs-swiper-dots-position-bottom: 12px;
	}

	/* ==================== base ==================== */
	.btn-base {
		padding: 10px 24px;
	}

	.section-title img {
		width: 28px;
	}

	/* ==================== header ==================== */
	#logo {
		position: static;
	}

	#header-wrap #logo img {
		width: 120px;
  }

	.header-misc {
		margin-left: 0;
  }

	.primary-menu-trigger {
		border-radius: 4px;
		margin-left: 12px;
		margin-left: 12px;
		border: 1px solid var(--cnvs-deepblue);
	}

	#top-search-trigger:hover,
	#top-search-trigger:active {
		background-color: var(--cnvs-themecolor);
	}

	.cnvs-hamburger .cnvs-hamburger-inner,
	.cnvs-hamburger .cnvs-hamburger-inner::before,
	.cnvs-hamburger .cnvs-hamburger-inner::after {
		background-color: var(--cnvs-deepblue);
	}

	.menu-link {
		padding: var(--cnvs-primary-menu-padding-y) var(--cnvs-primary-menu-padding-x);
	}

	.menu-item:not(:first-child) {
    border-color: var(--cnvs-themecolor);
  }

	/* ==================== intro ==================== */
	/* history */
	.timeline-box {
		border-right: none;
		border-left: 2px solid var(--cnvs-deepblue);
		width: 100%;
		flex-direction: row-reverse;
	}

	.timeline-box:nth-child(even) {
		margin-left: 0;
	}

	.timeline-card__txt::before {
		left: initial;
		right: -15px;
	}

	.timeline-card__wrap {
		margin-left: 10px;
	}

	.timeline-box:nth-child(even) .timeline-card__wrap {
		margin-right: 10px;
	}

	.timeline-year {
		text-align: left;
	}

	.timeline-decor {
		margin-right: 0px;
		margin-left: -10px;
	}

	/* info */
	.rep-item .img-wrap img {
		width: 100px;
	}

	/* ==================== news ==================== */
	.news-item-wrap {
    padding-left: 0;
  }

	.news-bgwave {
    position: absolute;
    top: 5%;
    right: 30%;
    transform: rotate(7deg);
  }
	
	.sidebar-item + .sidebar-item {
    margin-top: 42px;
  }

	/* ==================== contact ==================== */
	.index-contact-wrap {
    padding: 60px 48px;
	}

	.contact-map iframe {
    height: 300px !important;
  }

	.contact-qrcode {
		width: 180px;
	}

	/* ==================== breadcrumb + pagintaion + privacy ==================== */
	.breadcrumb-wrap {
		padding-top: 48px;
	}
}

@media (max-width:767px) {
	:root {
		--fs-BNTitle: 32px;
	}

	/* ==================== banner ==================== */
	.banner-txt {
		display: none;
	}

	/* ==================== intro ==================== */
	.history-section {
		background-size: auto;
	}

	/* ==================== news ==================== */
	.news-info-item {
		margin-bottom: 24px;
	}

	/* ==================== breadcrumb + pagintaion + privacy ==================== */
	.breadcrumb-title {
		margin-right: 0;
	}

	.feature-box {
    --cnvs-featured-box-icon: 3.2rem;
		--cnvs-featured-box-icon-size: 1.5rem;
	}

	.fbox-icon i {
		line-height: 45px;
	}

	.page-link {
    width: 36px;
    height: 36px;
  }

	/* ==================== contact ==================== */
	.contact-map iframe {
    height: 200px !important;
  }
	
}

@media (max-width:575px) {
	:root {
		--fs-BNTitle: 22px;
		--fs-sectionTitle: 28px;
		--fs-infoTitle: 24px;
		--fs-itemTitle: 18px;
		--fs-sectionSubTitle: 16px;

		--section: 48px;
		--cnvs-canvas-slider-dots-size: 6px;
	}

	/* ==================== base ==================== */
	.btn-base {
		padding: 8px 20px;
	}

	.section-title {
		margin-bottom: 28px;
	}

	/* ==================== banner ==================== */
	#slider .btn-base {
		font-size: 14px;
		padding: 6px 18px;
	}

	/* ==================== header ==================== */
	#header-wrap #logo img {
		width: 90px;
  }

	#top-search-trigger {
    width: 48px;
    height: 32px;
		font-size: 18px;
	}

	.primary-menu-trigger {
		--cnvs-menu-trigger-gap: 8px;
		margin-left: 12px;
	}

	/* ==================== intro ==================== */
	.news-item-wrap > .row {
		row-gap: 36px;
	}
	
	.intro-img-wrap {
    --space: 16px;
	}

	.intro-img-wrap img,
	.intro-img-wrap:after {
    border-radius: 0 0 0 40px;
	}

	.intro-txt-wrap .btn-base {
    margin-top: 24px;
  }

	/* histroy */
	.timeline-decor .d-line {
		width: 20px;
	}

	.timeline-year {
		font-size: 30px;
  }

	.timeline-decor .d-circle {
    width: 12px;
    height: 12px;
  }

	.timeline-decor {
		margin-left: -7px;
  }

	.timeline-box:nth-child(even) .timeline-decor {
    margin-left: -7px;
	}

	/* ==================== news ==================== */
	.news-bgwave {
		display: none;
	}

	.news-title-wrap {
		position: static !important;
	}

	.news-txt-wrap .item-title {
		font-size: var(--fs-itemTitle);
	}

	.news-share-wrap [class*=border-] {
		border: 0 !important;
	}

	.news-share-wrap a {
		display: inline-block;
		font-size: 24px;
		margin: 0 8px;
	}

	.news-share-wrap a[title="Facebook"] {
		font-size: 26px;
	}

	/* ==================== product ==================== */
	.pd-list-wrap .pd-item .item-title {
    font-size: var(--fs-itemTitle);
  }

	.nav-tabs {
		margin-top: 36px;
	}

	.download-btn {
		padding: 4px 24px;
	}

	/* ==================== contact ==================== */
	.index-contact-wrap {
		padding: 48px 32px;
  }

	/* ==================== footer ==================== */
	#footer .main-footer {
    padding: 48px 12px;
  }

	.site-map li:not(:last-child)::after {
		margin: 0 12px;
	}

	.footer-menu {
		margin-top: 36px;
	}

	.stretched #gotoTop,
	.float-sns-wrap {
		right: 20px;
	}

	.float-sns-wrap {
		bottom: calc(50px + 44px + 8px);
	}

	/* ==================== breadcrumb + pagination + no-data + privacy ==================== */
	.fbox-content {
		padding-left: 6px;
	}

	.no-data {
    border-radius: 12px;
	}
}