/* ===============================
   News Page Styles v2
   - 面包屑融入蓝色
   - 蓝色调浅
   - 加背景纹理
   =============================== */

/* 面包屑 - 融入蓝色背景，文字极淡 */
/* 列表页隐藏面包屑 */
#news .crumb {
	display: none;
}

#news .crumb ul {
	background: #2d5a87; /* 匹配 page_title 渐变起点 */
	padding: 8px 15px;
}
#news .crumb li,
#news .crumb a,
#news .crumb span {
	color: rgba(255,255,255,0.35);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.02em;
}
#news .crumb li:after {
	color: rgba(255,255,255,0.2);
	font-size: 9px;
}
#news .crumb a:hover {
	color: rgba(255,255,255,0.6);
}

/* ページタイトル - 调浅 + 背景纹理 */
.page_title {
	position: relative;
	padding: 80px 50px 60px;
	background: linear-gradient(135deg, rgba(10,92,158,0.85) 0%, rgba(27,159,255,0.75) 100%), url("/2024/assets/img/news/title.jpg") center center; background-size: cover;
	text-align: center;
	overflow: hidden;
}

/* 背景装饰 - 微妙的几何图案 */
.page_title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
		radial-gradient(circle at 40% 40%, rgba(255,255,255,0.03) 0%, transparent 30%);
	pointer-events: none;
}

/* 添加细线网格纹理 */
.page_title::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.page_title h1 {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0 0 20px;
	font-size: 38px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1em;
	color: #fff;
}
.page_lead {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0 auto;
	padding: 0;
	max-width: 600px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 2em;
	color: rgba(255,255,255,0.9);
}
/* ページタイトルここまで */

/* カテゴリフィルター - 调浅配合 */
.news-filter {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 25px 4vw;
	background: linear-gradient(180deg, #4a7fb8 0%, #5d9bcf 100%);
}
.filter-btn {
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.8);
	background: rgba(255,255,255,0.1);
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.2s ease;
	letter-spacing: 0.05em;
}
.filter-btn:hover {
	color: #fff;
	background: rgba(255,255,255,0.15);
	border-color: rgba(255,255,255,0.5);
}
.filter-btn.active {
	color: #2d5a87;
	background: #fff;
	border-color: #fff;
}
/* カテゴリフィルターここまで */

/* ニュース一覧ここから */
.news_list {
	margin: 0;
	padding: 60px 4vw 40px;
	background: #f6f8fa;
}

/* 年グループ */
.year-group {
	max-width: 900px;
	margin: 0 auto 40px;
}
.year-group:last-child {
	margin-bottom: 0;
}
.year-title {
	display: inline-block;
	margin: 0 0 15px;
	padding: 5px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #2d5a87;
	background: #e8eef5;
	border-radius: 15px;
	border-left: 3px solid #1B9FFF;
	letter-spacing: 0.08em;
}

.news_list ul {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.05);
	overflow: hidden;
}
.news_list li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f0f2f5;
	border-left: 4px solid transparent;
	transition: border-color 0.2s ease;
}
.news_list li:last-child {
	border-bottom: none;
}
.news_list li.cat-release { border-left-color: #1B9FFF; }
.news_list li.cat-service { border-left-color: #10b981; }
.news_list li.cat-info { border-left-color: #f59e0b; }

.news_list a {
	display: flex;
	align-items: center;
	padding: 20px 30px;
	color: #333;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5em;
	text-decoration: none;
	transition: background 0.2s ease;
}
.news_list li.cat-release a:hover { background: #f0f7ff; }
.news_list li.cat-service a:hover { background: #f0fdf8; }
.news_list li.cat-info a:hover { background: #fffbf0; }

.news_list time {
	flex-shrink: 0;
	width: 110px;
	font-size: 14px;
	font-weight: 500;
	color: #999;
	letter-spacing: 0.02em;
}
.cat-release time { color: #1B9FFF !important; }
.cat-service time { color: #10b981 !important; }
.cat-info time { color: #d97706 !important; }

.news-tag {
	flex-shrink: 0;
	display: inline-block;
	padding: 4px 14px;
	margin-right: 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: 3px;
}
.tag-release {
	color: #1B9FFF;
	background: #e8f4ff;
	border: 1px solid #c8e4ff;
}
.tag-service {
	color: #059669;
	background: #e6faf2;
	border: 1px solid #b0ecd6;
}
.tag-info {
	color: #d97706;
	background: #fef8e8;
	border: 1px solid #fce4a8;
}

.news-title {
	flex: 1;
	font-size: 15px;
	color: #444;
	line-height: 1.5em;
	transition: color 0.2s ease;
}
.news_list a:hover .news-title {
	color: #1B9FFF;
}

.news-arrow {
	flex-shrink: 0;
	margin-left: 15px;
	font-size: 12px;
	color: #ccc;
	transition: all 0.2s ease;
}
.news_list a:hover .news-arrow {
	color: #1B9FFF;
	transform: translateX(3px);
}
/* ニュース一覧ここまで */

/* CTAここから */
.news-cta {
	padding: 70px 4vw;
	background: #f0f2f5;
}
.news-cta .cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	gap: 50px;
}
.news-cta .cta-text {
	flex: 1;
}
.news-cta h2 {
	display: block;
	margin: 0 0 15px;
	padding: 0;
	font-size: 26px;
	font-weight: 600;
	color: #2d5a87;
	letter-spacing: 0.08em;
	line-height: 1.5em;
	text-align: left;
}
.news-cta p {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 400;
	color: #7a99b5;
	letter-spacing: 0.05em;
	line-height: 1.8em;
	text-align: left;
}
.news-cta .cta-buttons {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 14px;
}
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 42px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	text-decoration: none;
}
.cta-primary {
	color: #fff;
	background: linear-gradient(135deg, #1B9FFF 0%, #0e7ed4 100%);
	border-color: transparent;
	box-shadow: 0 4px 15px rgba(27,159,255,0.3);
}
.cta-primary:hover {
	background: linear-gradient(135deg, #0e7ed4 0%, #0a5c9e 100%);
	box-shadow: 0 6px 20px rgba(27,159,255,0.4);
	transform: translateY(-2px);
}
.cta-secondary {
	color: #2d5a87;
	background: #fff;
	border: 2px solid #d0dbe6;
}
.cta-secondary:hover {
	color: #1B9FFF;
	border-color: #1B9FFF;
}
/* CTAここまで */

/* ニュース記事ここから */
.news_body {
	margin: 0;
	padding: 100px 4vw 60px;
	background: #fff;
}
.news_body .inner {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 0 50px;
}
.news_body h2 {
	display: block;
	margin: 0 0 40px;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1em;
	text-align: center;
}
.news_body h3 {
	display: block;
	margin: 50px 0 20px;
	padding: 0 0 0 10px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1em;
	border-left: 10px solid #1B9FFF;
}
.news_body h4 {
	display: block;
	margin: 50px 0 20px;
	padding: 0 0 0 5px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1em;
	border-left: 5px solid #1B9FFF;
}
.news_body p {
	display: block;
	margin: 0 0 2rem;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 2em;
}
.news_body p.notice {
	color: #999;
	font-size: 12px;
}
.news_body img {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 20px;
}
.news_body .bt {
	display: block;
	width: 400px;
	margin: 0 auto;
}
.news_body .bt a {
	display: block;
	margin: 0;
	padding: 28px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #999999;
	border: 1px solid #999999;
	border-radius: 50px;
	transition: .3s ease;
}
.news_body a:hover {
	color: #999999;
	background: #fff;
	border: 1px solid #999999;
}
/* ニュース記事ここまで */

/* スマホここから */
@media screen and (max-width: 600px) {

/* 面包屑手机端 */
/* 列表页隐藏面包屑 */
#news .crumb {
	display: none;
}

#news .crumb ul {
	padding: 8px 10px;
}

/* ページタイトルここから */
.page_title {
	padding: 50px 4vw 40px;
}
.page_title h1 {
	font-size: 7vw;
	margin: 0 0 15px;
}
.page_lead {
	font-size: 3.5vw;
	line-height: 1.8em;
}
/* ページタイトルここまで */

/* カテゴリフィルターここから */
.news-filter {
	flex-wrap: wrap;
	gap: 8px;
	padding: 15px 4vw;
}
.filter-btn {
	padding: 8px 16px;
	font-size: 3.2vw;
}
/* カテゴリフィルターここまで */

/* ニュース一覧ここから */
.news_list {
	padding: 40px 4vw 30px;
}

.year-group {
	margin: 0 0 30px;
}
.year-title {
	font-size: 3.2vw;
	padding: 4px 12px;
	margin: 0 0 12px;
}

.news_list a {
	flex-wrap: wrap;
	padding: 14px 15px;
}

.news_list time {
	width: auto;
	margin-right: 8px;
	font-size: 3.2vw;
}

.news-tag {
	font-size: 2.5vw;
	padding: 2px 8px;
	margin-right: 0;
}

.news-title {
	width: 100%;
	margin-top: 6px;
	font-size: 3.5vw;
}

.news-arrow {
	display: none;
}
/* ニュース一覧ここまで */

/* CTAここから */
.news-cta {
	padding: 50px 4vw;
}
.news-cta .cta-inner {
	flex-direction: column;
	gap: 25px;
	text-align: center;
}
.news-cta h2 {
	font-size: 5vw;
	text-align: center;
}
.news-cta p {
	font-size: 3.5vw;
	text-align: center;
}
.news-cta .cta-buttons {
	flex-direction: row;
	justify-content: center;
	gap: 12px;
}
.cta-btn {
	padding: 12px 20px;
	font-size: 3.5vw;
}
/* CTAここまで */

/* ニュース記事ここから */
.news_body {
	padding: 50px 5vw;
}
.news_body h2 {
	margin: 0 0 30px;
	font-size: 5vw;
	line-height: 1.5em;
}
.news_body p {
	font-size: 4vw;
}
.news_body .bt {
	width: 270px;
}
.news_body .bt a {
	padding: 18px 0;
	font-size: 4vw;
}
/* ニュース記事ここまで */

}
/* スマホここまで */
