/* ---------------------------------------------------------------- 
 * network.css - 業務ネットワーク
 * 追加日： 2026/07/29
 * ---------------------------------------------------------------- */
@import url("common.css");

/* [layout] */
.newsMain {
	margin-top: 3rem;
	padding: 4rem;
	background: #FFF;	
	border-radius: 4px;
}
#newsArchive .newsMain.w_common {
	margin-bottom: 0;
	padding-bottom: 0;
}
#newsArchive .postBody .news_item {
	margin: 0;
	padding: 1.5em 0 .5em;
	border-bottom: 2px dotted #c7b299;
}
#newsArchive .postBody .infoWrap{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	position: relative;
}
#newsArchive .postBody .infoWrap:before {
	content: '';
	display: block;
	position: absolute;
	width: 2rem;
	height: 2rem;
	top: calc( 50% - 1rem );
	right: 1rem;
	background: #0171bc;
	border-radius: 50%;
	pointer-events: none;
	transition: .3s all;
}
#newsArchive .postBody .infoWrap:after {
	content: '';
	display: block;
	position: absolute;
	width: .8rem;
	height: .8rem;
	top: calc( 50% - .4rem );
	right: 1.75rem;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	transform: rotate(45deg);
	pointer-events: none;
	transition: .3s all;
}
#newsArchive .news_date {
	padding-top: 2px;
	min-width: 12rem;
}
#newsArchive .infoWrap {}
#newsArchive .news_title {
	font-family: "Shippori Mincho", serif;
	font-size: 1.2em;
	/* font-feature-settings: "palt" 1; */
	/* font-kerning: normal; */
	letter-spacing: -.025em;
}
.wrap_btn {
	margin: 2em 0;
	text-align: center;
}

/* [contents header] */
#newsArchive .newsMain .title {
	font-size: 4.2rem;
}

/* [tab] */

/* [img] */

/* [heading] */

/* [contents] */
/* header */
.postHead {
	position: relative;
	padding: 0 0 1.5em;
	margin: 0 0 1.5em;
}
#newsArchive .postHead {
	margin-bottom: 0;
}
.postHead:after {
	content: " ";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(135deg, #C6AE5C 0%, #A88817 95%);
}
.postMeta {
	margin: 1em 0 0 .25em;
}
/* body */
.postBody {
	margin: 2em 0 4em .75em;
}
#newsArchive .postBody {
	margin-top: 0;
}
.postBody p{
	font-family: "Noto Sans JP",sans-serif;
	/* font-size: 1em; */
	font-size: 1.6rem;
	/* line-height: 1.5; */
	line-height: 1.6;
	letter-spacing: .25rem;
	font-feature-settings: "palt" 1;
	margin: 0 0 1.2em;
}

/* foot */
.postFoot {
	
}

/* [link] */
.newsMain a:not( .def_btn_l ):hover {
	color: #0171bc;
	text-decoration: underline;
}
.news_link {
	display: block;
	width: 100%;
	padding-right: 3em;
	box-sizing: border-box;
}
.def_btn_l {
	max-width: 500px;
	margin: 0 auto;
}
/* [side] */

/* [frame] */

/* [table] */

/* [list] */

/* [card] */

/* [media screen] */
/* --------------------
 *  450px
 *  769px
 * 1000px
 * 1200px
 * 1200px
 * -------------------- */

@media screen and (max-width: 600px) {
	.newsMain.w_common {
		padding: 0;
	}
	#newsArchive .news_title {
		padding-bottom: .5em;
	}
	#newsArchive .postBody .news_item {
		padding-top: 1.5em;
		padding-bottom: .75em;
	}
	#newsArchive .postBody .infoWrap{
		flex-direction: column;
		gap: 0;
	}
}