/* ============================================================
   台灣玻璃館 - 公司簡介頁 (introduction)
   主題色: #123d7c / 標題字體: 明體 (Noto Serif TC)
   ============================================================ */

.intro-page{
	width: 100%;
	overflow-x: hidden;
}

/* 錨點定位:扣固定 header 高度 */
html{
	scroll-padding-top: 109px;
}
@media (max-width: 1279px){
	html{ scroll-padding-top: 49px; }
}

/* ---------- 第一塊:滿版 Banner ---------- */
.intro-hero{
	position: relative;
	width: 100%;
	/* 滿版首屏:扣 header 109px */
	min-height: calc(100vh - 109px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* banner 分流:<1280 載小圖,以上載大圖 */
	background: url('/assets/images/introduction/intro-mobile.webp') center 38% / cover no-repeat;
}
@media (min-width: 1280px){
	.intro-hero{
		background-image: url('/assets/images/introduction/intro-desktop.webp');
	}
}
.intro-hero::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.66) 100%);
}

/* 麵包屑 + 分享:壓在 banner 上方列 */
.intro-hero-topbar{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 16px 4vw 0;
}
.intro-hero-topbar .xinde-share2.crumb-new{
	margin: 0;
	padding: 0;
	background: transparent;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	letter-spacing: 0.05em;
}
.intro-hero-topbar .xinde-share2.crumb-new a{
	color: rgba(255,255,255,0.8);
}
.intro-hero-topbar .xinde-share2.crumb-new a:hover{
	color: #ffffff;
}
/* 覆蓋全站 .ahover 灰底樣式 (aqxinz.css) */
.intro-hero-topbar .xinde-share2.crumb-new .ahover{
	background: transparent;
	padding: 0;
	border-radius: 0;
	color: #ffffff;
}
.intro-hero-topbar .content-share{
	display: flex;
	align-items: center;
}
.intro-hero-topbar .article_conshare{
	margin: 0;
}
/* 下移避開桌機下拉選單 */
@media (min-width: 1280px){
	.intro-hero-topbar{
		padding-top: 78px;
	}
}

.intro-hero-text{
	position: relative;
	z-index: 2;
	text-align: center;
	color: #ffffff;
	padding: 110px 6vw 70px;
}
.intro-hero-logo{
	display: block;
	width: 230px;
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 2px 14px rgba(0,0,0,0.5));
}
.intro-hero-text h1{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 30px;
	letter-spacing: 0.09em;
	text-indent: 0.09em; /* 平衡 letter-spacing 造成的偏移 */
	line-height: 1.5;
	color: #ffffff;
	margin: 0 0 26px;
	text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.intro-hero-text h1:after{
	content: '';
	display: block;
	width: 64px;
	height: 2px;
	margin: 24px auto 0;
	background: rgba(255,255,255,0.85);
}
.intro-hero-slogan{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.12em;
	line-height: 2;
	color: rgba(255,255,255,0.95);
	margin: 0 0 12px;
	text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
/* 字級分段寫,禁用 clamp (主機壓縮器會弄壞) */
@media (min-width: 768px){
	.intro-hero-logo{ width: 300px; }
	.intro-hero-text h1{ font-size: 34px; }
	.intro-hero-slogan{ font-size: 18px; }
}
@media (min-width: 1280px){
	.intro-hero-logo{ width: 340px; }
	.intro-hero-text h1{ font-size: 40px; }
	.intro-hero-slogan{ font-size: 20px; letter-spacing: 0.14em; }
}
@media (min-width: 1600px){
	.intro-hero-logo{ width: 380px; }
}

/* 平板 banner 收矮 */
@media (max-width: 1279px){
	.intro-hero{
		min-height: calc(50vh - 50px);
	}
}
@media (max-width: 768px){
	.intro-hero{
		min-height: calc(50vh - 150px); /* 數字加大 = banner 變矮 */
	}
	.intro-hero-topbar{
		padding: 14px 5vw 0;
	}
	.intro-hero-text{
		padding: 110px 6vw 60px;
	}
	.intro-hero-text h1{ font-size: 28px; }
	.intro-hero-slogan{ line-height: 1.5; }
}

/* ---------- 分享浮動鈕:收合式 (僅此頁覆蓋全站的 left:0!important) ----------
   開合狀態靠 share.js 切換的 .article_consharebtn-actie class 判斷 */
@media (min-width: 768px){
	.intro-page .article_conshare-fix{
		background: rgba(230,230,230,0.5);
		padding: 5px;
		top: 80px;
		left: -50px!important;
		transition: left 0.3s ease;
	}
	.intro-page .article_conshare-fix:has(.article_consharebtn-actie){
		left: 0!important;
	}
	.intro-page .article_conshare-fix .article_consharea{
		margin-left: 0;
		margin-bottom: 5px;
	}
	.intro-page .article_consharebtn,
	.intro-page .article_icob{
		display: block;
	}
	.intro-page .article_consharebtn{
		cursor: pointer;
		width: 22px;
		background: rgba(230,230,230,0.5);
		position: absolute;
		top: 67px;
		right: -22px;
		text-align: center;
		line-height: 14px;
		font-size: 12px;
		font-weight: bold;
		padding: 5px 0;
	}
	.intro-page .article_consharebtn img{ margin-top: 5px; }
	.intro-page .article_icob{ text-align: center; line-height: 10px; padding-bottom: 5px; }
}
/* 桌機 header 較高,面板下移 */
@media (min-width: 1280px){
	.intro-page .article_conshare-fix{
		top: 150px;
	}
}

/* ---------- 第二塊:公司簡介文字 (主題色底 + 細框) ---------- */
.intro-about{
	background: #123d7c;
	padding: 90px 6vw;
}
.intro-about-box{
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	border: 1px solid rgba(255,255,255,0.45);
	padding: 64px 56px;
	text-align: center;
}
.intro-about-box:before{
	content: '';
	position: absolute;
	top: 7px;
	right: 7px;
	bottom: 7px;
	left: 7px;
	border: 1px solid rgba(255,255,255,0.18);
	pointer-events: none;
}
.intro-about-box h2{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.14em;
	line-height: 1.8;
	color: #ffffff;
	margin: 0 0 30px;
}
.intro-about-box h2:after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 26px auto 0;
	background: rgba(255,255,255,0.55);
}
.intro-about-box p{
	font-size: 15px;
	line-height: 2.3;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.92);
	text-align: justify;
	margin: 0;
}
@media (min-width: 768px){
	.intro-about-box h2{ font-size: 24px; }
	.intro-about-box p{ font-size: 16px; }
}
@media (min-width: 1280px){
	.intro-about{ padding: 110px 6vw; }
	.intro-about-box{ padding: 72px 88px; }
	.intro-about-box h2{ font-size: 27px; }
	.intro-about-box p{ font-size: 17px; }
}
@media (max-width: 767px){
	.intro-about{ padding: 48px 20px; }
	.intro-about-box{ padding: 36px 22px; }
	.intro-about-box h2{ line-height: 1.5; }
	.intro-about-box p{ line-height: 1.8; }
}

/* ---------- 第三塊:創立故事 (淺米色底 / 圖上字下) ---------- */
.intro-story{
	background: #f6f1e7;
	padding: 80px 6vw;
}
.intro-story-inner{
	max-width: 900px;
	margin: 0 auto;
}
.intro-story h2{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0.12em;
	text-indent: 0.12em;
	line-height: 1.6;
	color: #123d7c;
	text-align: center;
	margin: 0 0 18px;
}
.intro-story h2:after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 20px auto 0;
	background: #123d7c;
	opacity: 0.5;
}
.intro-story-img{
	margin: 42px 0 0;
}
.intro-story-img img{
	display: block;
	width: 100%;
	height: auto;
	border: 6px solid #ffffff;
	box-shadow: 0 10px 30px rgba(18,61,124,0.1);
	box-sizing: border-box;
}
.intro-story-lead{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0.08em;
	line-height: 2;
	color: #333;
	text-align: center;
	margin: 44px 0 34px;
}
/* 創立故事:直式時間軸 */
.intro-story-timeline{
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	text-align: left;
}
.intro-story-timeline:before{
	content: '';
	position: absolute;
	left: 104px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: rgba(18,61,124,0.22);
}
.intro-story-tl-item{
	position: relative;
	padding: 0 0 36px 134px;
}
.intro-story-tl-item:last-child{
	padding-bottom: 0;
}
.intro-story-tl-item:before{
	content: '';
	position: absolute;
	left: 100px;
	top: 10px;
	width: 9px;
	height: 9px;
	border: 1px solid #123d7c;
	border-radius: 50%;
	background: #f6f1e7;
	box-sizing: border-box;
}
.intro-story-tl-item em{
	position: absolute;
	left: 0;
	top: 0;
	width: 84px;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-style: normal;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.04em;
	line-height: 1.4;
	color: #123d7c;
	text-align: right;
}
.intro-story-tl-body strong{
	display: block;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.08em;
	color: #123d7c;
	margin-bottom: 8px;
}
.intro-story-tl-body p{
	font-size: 15px;
	line-height: 2.1;
	letter-spacing: 0.05em;
	color: #4a4a4a;
	text-align: justify;
	margin: 0;
}
@media (min-width: 768px){
	.intro-story h2{ font-size: 30px; }
	.intro-story-lead{ font-size: 19px; }
}
@media (min-width: 1280px){
	.intro-story{ padding: 110px 6vw; }
	.intro-story h2{ font-size: 34px; }
	.intro-story-lead{ font-size: 21px; }
}
@media (max-width: 767px){
	.intro-story{ padding: 48px 20px; }
	.intro-story-img{ margin-top: 24px; }
	.intro-story-img img{ border-width: 4px; }
	.intro-story-lead{ margin: 26px 0 22px; line-height: 1.5; }
	.intro-story-timeline:before{ left: 66px; }
	.intro-story-tl-item{ padding-left: 90px; padding-bottom: 24px; }
	.intro-story-tl-item:before{ left: 62px; top: 8px; }
	.intro-story-tl-item em{ width: 52px; font-size: 17px; }
	.intro-story-tl-body strong{ font-size: 16px; }
	.intro-story-tl-body p{ line-height: 1.8; }
}

/* ---------- 第四塊:五大必遊亮點 (背景底圖卡片) ---------- */
.intro-spots{
	background: #f4f5f7;
	padding: 80px 4vw;
}
.intro-spots-inner{
	max-width: 1520px;
	margin: 0 auto;
}
.intro-spots h2{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0.12em;
	text-indent: 0.12em;
	line-height: 1.6;
	color: #123d7c;
	text-align: center;
	margin: 0 0 18px;
}
.intro-spots h2:after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 20px auto 0;
	background: #123d7c;
	opacity: 0.5;
}
.intro-spots-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 46px;
}
.intro-spot{
	position: relative;
	overflow: hidden;
	flex: 0 0 calc(50% - 9px);
	background: #123d7c; }
/* 3:4 直式比例 */
.intro-spot:before{
	content: '';
	display: block;
	padding-top: 133%;
}
.intro-spot-bg{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 0.6s ease;
}
.intro-spot:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(8,18,38,0) 40%, rgba(8,18,38,0.78) 100%);
	pointer-events: none;
}
.intro-spot:hover .intro-spot-bg{
	transform: scale(1.06);
}
.intro-spot-info{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	text-align: center;
	padding: 0 14px 22px;
	color: #ffffff;
}
.intro-spot-info em{
	display: block;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-style: normal;
	font-size: 13px;
	letter-spacing: 0.3em;
	text-indent: 0.3em;
	color: rgba(255,255,255,0.75);
	margin-bottom: 8px;
}
.intro-spot-info em:after{
	content: '';
	display: block;
	width: 22px;
	height: 1px;
	margin: 8px auto 0;
	background: rgba(255,255,255,0.5);
}
.intro-spot-info strong{
	display: block;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	line-height: 1.6;
}
.intro-spot-info:after{
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	margin: 10px auto 0;
	border-right: 1px solid rgba(255,255,255,0.85);
	border-bottom: 1px solid rgba(255,255,255,0.85);
	transform: rotate(45deg);
	transition: margin-top 0.3s ease;
}
.intro-spot:hover .intro-spot-info:after{
	margin-top: 15px;
}
.intro-spot{
	color: #ffffff;
	cursor: pointer;
}
.intro-spot:hover{
	color: #ffffff;
}
@media (min-width: 768px){
	.intro-spots h2{ font-size: 30px; }
	.intro-spot{ flex: 0 0 calc(33.333% - 12px); }
	.intro-spot-info strong{ font-size: 18px; }
}
@media (min-width: 1280px){
	.intro-spots{ padding: 110px 4vw; }
	.intro-spots h2{ font-size: 34px; }
	.intro-spots-grid{ gap: 20px; margin-top: 56px; flex-wrap: nowrap; }
	.intro-spot{ flex: 1 1 0; }
	.intro-spot-info{ padding: 0 16px 26px; }
	.intro-spot-info strong{ font-size: 18px; }
}
/* 手機:全寬橫式卡片 */
@media (max-width: 767px){
	.intro-spots{ padding: 48px 20px; }
	.intro-spots-grid{ gap: 12px; margin-top: 26px; }
	.intro-spot{ flex: 0 0 100%; }
	.intro-spot:before{ padding-top: 62%; } /* 橫式比例約 8:5 */
	.intro-spot-info{
		text-align: left;
		padding: 0 20px 18px;
	}
	.intro-spot-info em{ margin-bottom: 6px; text-indent: 0; }
	.intro-spot-info em:after{
		margin-left: 0;
		margin-right: auto;
	}
	.intro-spot-info strong{ font-size: 17px; text-indent: 0; display: inline-block; }
	.intro-spot-info:after{
		display: inline-block;
		margin: 0 0 10px 10px;
		vertical-align: middle;
	}
	.intro-spot:hover .intro-spot-info:after{
		margin: 0 0 10px 10px;
	}
}

/* ---------- 五大必遊亮點:個別介紹 (字圖左右分割 + 輪播) ---------- */
.intro-detail{
	background: #123d7c;
}
.intro-detail-text{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 56px 24px;
}
.intro-detail-textbox{
	max-width: 520px;
}
.intro-detail-num{
	display: block;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0.3em;
	color: rgba(255,255,255,0.75);
}
.intro-detail-num:after{
	content: '';
	display: block;
	width: 26px;
	height: 1px;
	margin: 10px 0 0;
	background: rgba(255,255,255,0.5);
}
.intro-detail-textbox h3{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.1em;
	line-height: 1.6;
	color: #ffffff;
	margin: 18px 0 20px;
}
.intro-detail-textbox p{
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,0.9);
	text-align: justify;
	margin: 0;
}
.intro-detail-textbox p + p{
	margin-top: 22px;
}
/* 淺色底變體 (03 媽祖廟) */
.intro-detail-light{
	background: #f5ecdb;
}
/* 磚紅底變體 (05 生活商品館) */
.intro-detail-warm{
	background: #793030;
}
.intro-detail-light .intro-detail-num{
	color: rgba(18,61,124,0.7);
}
.intro-detail-light .intro-detail-num:after{
	background: rgba(18,61,124,0.5);
}
.intro-detail-light .intro-detail-textbox h3{
	color: #123d7c;
}
.intro-detail-light .intro-detail-textbox p{
	color: #4a4a4a;
}
.intro-detail-media{
	position: relative;
}
.intro-detail-media .swiper-container{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.intro-detail-media .swiper-slide{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
/* 輪播點點 (共用) */
.intro-detail .swiper-pagination-bullet{
	width: 13px;
	height: 13px;
	background: transparent;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	opacity: 0.8;
	margin: 0 6px;
}
.intro-detail .swiper-pagination-bullet-active{
	opacity: 1;
	background: #ffffff;
}

/* 手機/直式平板:圖上文下堆疊 */
@media (max-width: 1023px){
	.intro-detail-flex{
		display: flex;
		flex-direction: column-reverse;
	}
	.intro-detail-media{
		padding-top: 66%; /* 圖高比例約 3:2 */
	}
	.intro-detail-textbox .intro-detail-num{
		text-align: center;
		text-indent: 0.3em; /* 平衡 letter-spacing 置中偏移 */
	}
	.intro-detail-textbox .intro-detail-num:after{
		margin-left: auto;
		margin-right: auto;
	}
	.intro-detail-textbox h3{ text-align: center; }
}
/* 手機 */
@media (max-width: 767px){
	.intro-detail-text{
		padding: 40px 20px;
	}
	.intro-detail-textbox p{ line-height: 1.8; }
}
/* 橫式平板以上:左右分割,輪播切齊區塊高度 */
@media (min-width: 1024px){
	.intro-detail-flex{
		display: flex;
		align-items: stretch;
	}
	.intro-detail-text{
		flex: 0 0 50%;
		padding: 48px 4vw;
	}
	.intro-detail-media{
		flex: 1 1 50%;
		min-height: 520px;
	}
	/* 偶數塊反轉方向 (圖左字右) */
	.intro-detail-reverse .intro-detail-flex{
		flex-direction: row-reverse;
	}
}
/* 桌機:間距圖高放大、字級升階 */
@media (min-width: 1280px){
	.intro-detail-text{ padding: 80px 5vw; }
	.intro-detail-media{ min-height: 700px; }
	.intro-detail-textbox h3{ font-size: 28px; }
	.intro-detail-textbox p{ font-size: 16px; }
}
@media (min-width: 1600px){
	.intro-detail-media{ min-height: 770px; }
	.intro-detail-textbox h3{ font-size: 30px; }
}

/* ---------- 亮點介紹:滿版大圖款 (02 黃金隧道) ---------- */
.intro-detail-wide{
	background: #0a1830; 	padding-bottom: 56px;
}
.intro-detail-wide-media{
	position: relative;
}
.intro-detail-wide-visual{
	position: relative;
	padding-top: 78%;
}
.intro-detail-wide-visual .swiper-container{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.intro-detail-wide-visual .swiper-slide{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
/* 底部漸層護點點 (桌機另有加深版) */
.intro-detail-wide-visual:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(5,12,26,0) 72%, rgba(5,12,26,0.4) 100%);
	pointer-events: none;
	z-index: 1;
}
.intro-detail-wide-visual .swiper-pagination{
	z-index: 2;
	bottom: 14px;
}
/* 文字群 */
.intro-detail-wide-caption{
	max-width: 860px;
	margin: 0 auto;
	padding: 44px 24px 0;
	text-align: center;
}
.intro-detail-wide-caption .intro-detail-num{
	color: rgba(255,255,255,0.85);
	text-indent: 0.3em;
}
.intro-detail-wide-caption .intro-detail-num:after{
	margin-left: auto;
	margin-right: auto;
}
.intro-detail-wide-caption h3{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	line-height: 1.6;
	color: #ffffff;
	margin: 16px 0 22px;
	text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.intro-detail-wide-caption p{
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,0.9);
	text-align: justify;
	margin: 0;
}
.intro-detail-wide-caption .intro-detail-note{
	font-size: 13px;
	color: rgba(255,255,255,0.65);
	text-align: center;
	margin-top: 24px;
}
/* 桌機:文字壓在圖底部 */
@media (min-width: 1280px){
	.intro-detail-wide{
		padding-bottom: 0;
	}
	.intro-detail-wide-media{
		height: 110vh;
		min-height: 825px;
	}
	.intro-detail-wide-visual{
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 0;
	}
	.intro-detail-wide-visual:after{
		background: linear-gradient(180deg, rgba(5,12,26,0.35) 0%, rgba(5,12,26,0.05) 36%, rgba(5,12,26,0.55) 66%, rgba(7,14,28,0.93) 100%);
	}
	.intro-detail-wide-caption{
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		max-width: 1000px;
		margin: 0 auto;
		padding: 0 24px 56px;
	}
	.intro-detail-wide-caption h3{ font-size: 28px; }
	.intro-detail-wide-caption p{ font-size: 16px; }
	.intro-detail-wide-caption .intro-detail-note{ font-size: 14px; }
	/* 點點右側直排 */
	.intro-detail-wide-visual .swiper-pagination{
		left: auto;
		right: 28px;
		top: 50%;
		bottom: auto;
		width: auto;
		transform: translateY(-50%);
	}
	.intro-detail-wide-visual .swiper-pagination .swiper-pagination-bullet{
		display: block;
		margin: 8px 0;
	}
}
@media (min-width: 1600px){
	.intro-detail-wide-caption h3{ font-size: 30px; }
}
@media (max-width: 767px){
	.intro-detail-wide{ padding-bottom: 40px; }
	.intro-detail-wide-caption{ padding: 28px 20px 0; }
	.intro-detail-wide-caption p{ line-height: 1.8; }
	.intro-detail-wide-caption .intro-detail-note{ line-height: 1.5; }
	.intro-detail-wide-caption h3{ margin-bottom: 18px; }
}

/* ---------- 亮點介紹:文上輪播下款 (04 煉功屋) ---------- */
.intro-detail-stackblock{
	background: #f4f5f7;
	padding: 80px 0 90px;
}
.intro-detail-stack{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}
.intro-detail-stack .intro-detail-num{
	color: rgba(18,61,124,0.7);
	text-indent: 0.3em;
}
.intro-detail-stack .intro-detail-num:after{
	margin-left: auto;
	margin-right: auto;
	background: rgba(18,61,124,0.5);
}
.intro-detail-stack h3{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	line-height: 1.6;
	color: #123d7c;
	margin: 16px 0 22px;
}
.intro-detail-stack p{
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: 0.05em;
	color: #4a4a4a;
	text-align: justify;
	margin: 0;
}
.intro-detail-stack .intro-detail-note{
	font-size: 13px;
	color: #123d7c;
	text-align: center;
	margin-top: 22px;
}
.intro-btn{
	display: inline-block;
	margin-top: 30px!important;
	padding: 13px 44px;
	border: 1px solid #123d7c;
	color: #123d7c;
	background: transparent;
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-indent: 0.18em;
	line-height: 1;
	transition: background 0.35s ease, color 0.35s ease;
}
.intro-btn:hover{
	background: #123d7c;
	color: #ffffff;
}
/* 置中大圖輪播:中間大、兩側小 */
.intro-detail-gallery{
	position: relative;
	margin-top: 52px;
	overflow: hidden;
}
.intro-detail-gallery .swiper-container{
	overflow: visible;
	height: 440px; /* 高度固定,寬度由 Swiper 計算 */
}
.intro-detail-gallery .swiper-slide{
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(0.9);
	opacity: 0.45;
	transition: transform 0.7s ease, opacity 0.7s ease;
}
.intro-detail-gallery .swiper-slide-active{
	transform: scale(1);
	opacity: 1;
}
.intro-detail-gallery-prev,
.intro-detail-gallery-next{
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	border: 1px solid rgba(18,61,124,0.55);
	border-radius: 50%;
	background: rgba(244,245,247,0.55);
	cursor: pointer;
	transition: border-color 0.3s ease, background 0.3s ease;
}
.intro-detail-gallery-prev{ left: 6%; }
.intro-detail-gallery-next{ right: 6%; }
.intro-detail-gallery-prev:after,
.intro-detail-gallery-next:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 1px solid #123d7c;
	border-right: 1px solid #123d7c;
}
.intro-detail-gallery-prev:after{
	transform: translate(-30%, -50%) rotate(-135deg);
}
.intro-detail-gallery-next:after{
	transform: translate(-70%, -50%) rotate(45deg);
}
.intro-detail-gallery-prev:hover,
.intro-detail-gallery-next:hover{
	border-color: #123d7c;
	background: rgba(255,255,255,0.9);
}
@media (min-width: 1280px){
	.intro-detail-stackblock{ padding: 110px 0 120px; }
	.intro-detail-stack h3{ font-size: 28px; }
	.intro-detail-stack p{ font-size: 16px; }
	.intro-detail-stack .intro-detail-note{ font-size: 14px; }
	.intro-detail-gallery{ margin-top: 64px; }
	.intro-detail-gallery .swiper-container{ height: 560px; }
}
@media (min-width: 1600px){
	.intro-detail-stack h3{ font-size: 30px; }
}
@media (max-width: 767px){
	.intro-detail-stackblock{ padding: 48px 0 52px; }
	.intro-detail-stack p{ line-height: 1.8; }
	.intro-detail-stack .intro-detail-note{ line-height: 1.5; }
	.intro-detail-gallery{ margin-top: 28px; }
	.intro-detail-gallery .swiper-container{ height: 220px; }
	.intro-detail-gallery-prev,
	.intro-detail-gallery-next{ width: 28px; height: 28px; margin-top: -19px; }
	.intro-detail-gallery-prev{ left: 10px; }
	.intro-detail-gallery-next{ right: 10px; }
}

/* ---------- 展館理念總覽 (白底 / 四欄髮線分隔) ---------- */
.intro-philosophy{
	background: #ffffff;
	padding: 80px 6vw;
}
.intro-philosophy-inner{
	max-width: 1240px;
	margin: 0 auto;
}
.intro-philosophy h2{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: 0.12em;
	text-indent: 0.12em;
	line-height: 1.6;
	color: #123d7c;
	text-align: center;
	margin: 0 0 18px;
}
.intro-philosophy h2:after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 20px auto 0;
	background: #123d7c;
	opacity: 0.5;
}
.intro-philosophy-grid{
	display: flex;
	flex-wrap: wrap;
	margin-top: 48px;
}
.intro-philosophy-item{
	flex: 0 0 100%;
	padding: 30px 18px;
	text-align: center;
}
.intro-philosophy-item + .intro-philosophy-item{
	border-top: 1px solid rgba(18,61,124,0.16);
}
/* 圓印編號 (壹貳參肆) */
.intro-philosophy-item:before{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 400;
	display: block;
	width: 74px;
	height: 74px;
	line-height: 72px;
	margin: 0 auto 18px;
	border: 1px solid rgba(18,61,124,0.3);
	border-radius: 50%;
	font-size: 36px;
	text-align: center;
	color: rgba(18,61,124,0.42);
}
.intro-philosophy-item:nth-child(1):before{ content: '壹'; }
.intro-philosophy-item:nth-child(2):before{ content: '貳'; }
.intro-philosophy-item:nth-child(3):before{ content: '參'; }
.intro-philosophy-item:nth-child(4):before{ content: '肆'; }
.intro-philosophy-item h3{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	color: #123d7c;
	margin: 0;
}
.intro-philosophy-item h3:after{
	content: '';
	display: block;
	width: 22px;
	height: 1px;
	margin: 12px auto 0;
	background: rgba(18,61,124,0.5);
}
.intro-philosophy-item p{
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: 2.2;
	color: #4a4a4a;
	margin: 18px 0 0;
}
.intro-philosophy-tagline{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 600;
	font-size: 19px;
	letter-spacing: 0.1em;
	line-height: 2;
	color: #333333;
	text-align: center;
	margin: 52px 0 0;
}
/* ---------- 頁尾 CTA:預約導覽 (主題藍滿版) ---------- */
.intro-cta{
	background: #123d7c;
	padding: 72px 6vw;
}
.intro-cta-inner{
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
.intro-cta-text{
	font-family: 'Noto Serif TC', 'PMingLiU', '新細明體', serif;
	font-weight: 500;
	font-size: 19px;
	letter-spacing: 0.1em;
	line-height: 2;
	color: #ffffff;
	margin: 0;
}
.intro-btn-light{
	margin-top: 34px;
	border-color: rgba(255,255,255,0.85);
	color: #ffffff;
}
.intro-btn-light:hover{
	background: #ffffff;
	color: #123d7c;
}
@media (min-width: 1280px){
	.intro-cta{ padding: 96px 6vw; }
	.intro-cta-text{ font-size: 24px; }
	.intro-cta-br{ display: none; }
}
@media (max-width: 767px){
	.intro-cta{ padding: 48px 20px; }
	.intro-cta-text{ font-size: 17px; line-height: 1.5; }
	.intro-btn-light{ margin-top: 26px; }
}

@media (min-width: 768px){
	.intro-philosophy h2{ font-size: 30px; }
}
/* 平板:2x2 */
@media (min-width: 768px){
	.intro-philosophy-item{
		flex: 0 0 50%;
		padding: 34px 26px;
		border-top: 0;
	}
	.intro-philosophy-item + .intro-philosophy-item{
		border-top: 0;
	}
	.intro-philosophy-item:nth-child(even){
		border-left: 1px solid rgba(18,61,124,0.16);
	}
	.intro-philosophy-item:nth-child(n+3){
		border-top: 1px solid rgba(18,61,124,0.16);
	}
}
/* 桌機:一排四欄 */
@media (min-width: 1280px){
	.intro-philosophy{ padding: 110px 6vw; }
	.intro-philosophy h2{ font-size: 34px; }
	.intro-philosophy-grid{ margin-top: 60px; flex-wrap: nowrap; }
	.intro-philosophy-item{
		flex: 1 1 0;
		padding: 14px 30px;
		border-top: 0!important;
		border-left: 0;
	}
	.intro-philosophy-item + .intro-philosophy-item{
		border-left: 1px solid rgba(18,61,124,0.16);
	}
	.intro-philosophy-item:nth-child(even){
		border-left: 1px solid rgba(18,61,124,0.16);
	}
	.intro-philosophy-item:before{ width: 84px; height: 84px; line-height: 82px; font-size: 36px; margin-bottom: 22px; }
	.intro-philosophy-item p{ font-size: 15px; }
	.intro-philosophy-tagline{ margin-top: 72px; font-size: 21px; }
}
/* 手機 */
@media (max-width: 767px){
	.intro-philosophy{ padding: 48px 20px; }
	.intro-philosophy-grid{ margin-top: 28px; }
	.intro-philosophy-item{ padding: 24px 14px; }
	.intro-philosophy-item p{ line-height: 1.8; }
	.intro-philosophy-tagline{ margin-top: 30px; font-size: 17px; line-height: 1.5; }
}
