@charset "utf-8";
/* ========================================
   partner.css
   協力会社・お取引先のみなさまへ ページ用CSS
======================================== */

/* 見出しアニメーション（他ページと共通）
========================================== */
.titPage::before,.contents .arrow::before {
	-webkit-animation: imgLeft 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
	animation: imgLeft 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.titPage::before,.contents .arrow::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: block;
	background: #fff;
	content: "";
}
.contents .arrow {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: url("../img/common/bg_main.png") center top / 100% auto no-repeat;
}
.contents {
	background: none !important;
}
h1 {
	opacity: 0;
	top: 41% !important;
}
.is-loaded h1 {
	-webkit-animation: fadeInLeft .4s ease-in .6s forwards;
	animation: fadeInLeft .4s ease-in .6s forwards;
}

/* コンテンツエリア */
.partner .partnerContents {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}

.partner .partnerContents h2 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 0.08em;
	line-height: 1.6;
}

/* セクション共通 */
.partner .partnerSection {
	margin-bottom: 50px;
}

.partner .partnerSection h3 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 12px;
	border-bottom: 2px solid #006837;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

/* お知らせセクション */
.partner .newsHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 2px solid #006837;
	margin-bottom: 20px;
}

.partner .newsHeader h3 {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.partner .newsHeader .newsListLink {
	font-size: 14px;
	color: #006837;
	text-decoration: none;
	white-space: nowrap;
}
.partner .newsHeader .newsListLink:hover {
	text-decoration: underline;
}

/* お知らせリスト */
.partner .newsList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.partner .newsList li {
	border-bottom: 1px solid #ddd;
}

.partner .newsList li a {
	display: flex;
	align-items: baseline;
	padding: 14px 0;
	text-decoration: none;
	color: #333;
	transition: opacity 0.3s;
}

.partner .newsList li a:hover {
	opacity: 0.7;
}

.partner .newsList .newsDate {
	font-size: 14px;
	color: #666;
	min-width: 110px;
	letter-spacing: 0.05em;
}

.partner .newsList .newsTitle {
	font-size: 15px;
	line-height: 1.6;
}

/* 各種書式のダウンロード */
.partner .downloadList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.partner .downloadList li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.partner .downloadList li a {
	display: inline-flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.6;
	transition: opacity 0.3s;
}

.partner .downloadList li a:hover {
	opacity: 0.7;
}

/* ファイルアイコン */
.partner .downloadList .fileIcon {
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	color: #fff;
	padding: 2px 8px;
	border-radius: 3px;
	margin-right: 12px;
	min-width: 44px;
	text-align: center;
	flex-shrink: 0;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.partner .downloadList .fileIcon.pdf {
	background: #d9534f;
}
.partner .downloadList .fileIcon.excel {
	background: #217346;
}

/* お知らせ一覧ページ */
.partner .newsListPage h2 {
	margin-bottom: 10px;
}

.partner .newsListPage .partnerLabel {
	text-align: center;
	font-size: 14px;
	color: #006837;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	font-weight: bold;
}

.partner .newsListPage .newsList li a {
	padding: 16px 0;
}

/* お知らせPDFアイコン */
.partner .newsList .newsTitle .pdfIcon {
	display: inline-block;
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	background: #d9534f;
	padding: 1px 5px;
	border-radius: 2px;
	margin-left: 8px;
	vertical-align: middle;
	line-height: 1.5;
}

/* ========================================
   フェードインアニメーション
======================================== */
.partner .fadeIn {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.partner .fadeIn.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   レスポンシブ
======================================== */
@media screen and (max-width: 768px) {
	.partner .partnerContents {
		padding: 40px 15px 60px;
	}
	.partner .partnerContents h2 {
		font-size: 20px;
		margin-bottom: 35px;
	}
	.partner .partnerSection h3 {
		font-size: 16px;
	}
	.partner .newsHeader {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.partner .newsHeader .newsListLink {
		align-self: flex-end;
	}
	.partner .newsList li a {
		flex-direction: column;
		gap: 4px;
		padding: 12px 0;
	}
	.partner .newsList .newsDate {
		min-width: auto;
		font-size: 13px;
	}
	.partner .newsList .newsTitle {
		font-size: 14px;
	}
	.partner .downloadList li a {
		font-size: 14px;
	}
}
