@charset "UTF-8";


.news-all {
	position: relative;
	padding-bottom: 100px;
}
.news-item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	padding: 17px 10px;
	border-bottom: solid 1px #000;
}
.news-item .category {
	width: 80px;
}
.news-item .category span {
	width: 100%;
	display: inline-block;
	border: solid 1px #000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	background: #F4F4F4;
	line-height: 1.7em;
}
.news-item .date {
	width: 80px;
	color: #666;
	font-family: var(--en-font);
	font-weight: 600;
	font-size: 18px;
	padding: 0 20px 0 0;
	line-height: 1.7em;
}
.news-item .news-title {
	width: calc(100% - 200px);
	line-height: 1.7em;
}

@media screen and (max-width: 834px) {
	.news-all {
		position: relative;
		padding-bottom: 100px;
	}
	.news-item {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		justify-content: flex-start;
		padding: 12px 5px;
		border-bottom: solid 1px #000;
	}
	.news-item .category {
		width: 80px;
	}
	.news-item .category span {
		width: 100%;
		display: inline-block;
		border: solid 1px #000;
		font-weight: bold;
		font-size: 11px;
		text-align: center;
		background: #F4F4F4;
		line-height: 1.7em;
	}
	.news-item .date {
		width: 80px;
		color: #666;
		font-family: var(--en-font);
		font-weight: 600;
		font-size: 15px;
		padding: 0 20px 0 13px;
		line-height: 1.7em;
	}
	.news-item .news-title {
		width: 100%;
		line-height: 1.7em;
		display: block;
		padding: 5px 0 0;
	}
}
@media (hover: hover) {
	.news-item .news-title a:hover {
		text-decoration: underline;
	}
}
.news-wrap {
	padding-bottom: 100px;
}
.news-header {
	margin-bottom: 20px;
}
.category-date {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 15px;
}
.news-header .category {
	width: 120px;
}
.news-header .category span {
	width: 100%;
	display: inline-block;
	border: solid 1px #000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	background: #F4F4F4;
	line-height: 1.7em;
}
.news-header .date {
	width: 80px;
	color: #666;
	font-family: var(--en-font);
	font-weight: 600;
	font-size: 18px;
	padding: 0 0 0 20px;
	line-height: 1.7em;
}
.news-header h2 {
	font-size: 24px;
	line-height: 1.6em;
	margin: 20px 0;
	padding: 0 0 20px;
	border-bottom: solid 1px #000;
}
.news-content {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: solid 1px #000;
}
.news-content p {
	margin-bottom: 1em;
}
.news-content ul {
	list-style-type: disc;
}
.news-content ul li {
	line-height: 1.6em;
	/*margin-bottom: 10px;*/
}
.news-content img {
	max-width: 100%;
	height: auto;
}
.news-content .ttl {
	font-size: 20px;
	color: var(--main-color);
	margin-bottom: .2em;
}
.news-content .ttl-large {
	font-size: 1.2em;
	margin-top: 30px;
	color: #333;
}
.txt-block01 {
	margin: 40px 0;
}
.news-content .ttl-large {
	position: relative;
	padding-left: 20px;
	margin: 20px 0;
	font-size: 28px;
	line-height: 1.4em;
}
.news-content .ttl-large:before {
	width: 4px;
	height: 100%;
	background: linear-gradient(#84c261 0%, #39992d 37.93%, #003400 100%);
	left: 0;
	top: 0;
}
.news-content .text-image {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.news-content .text-image .text {
	width: 48%;
}
.news-content .text-image .image {
	width: 48%;
}
.news-content .large-image {
	width: 100%;
	max-width: 928px; /* 幅928pxを上限 */
	margin: 40px auto; /* 上下のマージンと中央揃え */
	text-align: center;
}
.news-content .large-image img {
	width: auto; /* 画像の本来の幅 */
	max-width: 100%; /* 最大幅928px */
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.link-block {
	position: relative;
	width: 100%;
}
.link-nomal {
	display: block;
	width: 80%;
	margin: 0 auto 10px!important;
	padding: 15px 20px;
	border: solid 1px #000;
	box-sizing: border-box;
	position: relative;
	transition: all .4s;
	text-decoration: none!important;
}
.link-pdf {
	display: block;
	width: 80%;
	margin: 0 auto 10px!important;
	padding: 15px 20px 15px 60px;
	border: solid 1px #000;
	box-sizing: border-box;
	position: relative;
	text-decoration: none!important;
	transition: all .4s;
}
.link-pdf:before {
	width: 30px;
	height: 40px;
	background-image: url("../img/common_img/icon-pdf.svg");
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.link-nomal:after,
.link-pdf:after {
	width: 12px;
	height: 8px;
	background-image: url("../img/common_img/arrow-black.svg");
	right: 10px;
	bottom: 10px;
	transition: all .4s;
}
@media (hover: hover) {
	.link-nomal:hover,
	.link-pdf:hover {
		background: #FBFBFB;
	}
}

@keyframes moveRight {
  from {
		opacity: 0;
    right: 15px;
  }
  to {
		opacity: 1;
    right: 10px;
  }
}
@media screen and (max-width: 834px) {
	.news-wrap {
		padding-bottom: 0;
	}
	.news-header {
		margin-bottom: 10px;
	}
	.category-date {
		display: flex;
		justify-content: flex-start;
		margin-bottom: 15px;
	}
	.news-header .category {
		width: 100px;
	}
	.news-header .category span {
		width: 100%;
		display: inline-block;
		border: solid 1px #000;
		font-weight: bold;
		font-size: 12px;
		text-align: center;
		background: #F4F4F4;
		line-height: 1.7em;
	}
	.news-header .date {
		width: 80px;
		color: #666;
		font-family: var(--en-font);
		font-weight: 600;
		font-size: 15px;
		padding: 0 0 0 15px;
		line-height: 1.7em;
	}
	.news-header h2 {
		font-size: 18px;
		line-height: 1.6em;
		margin: 20px 0 10px;
		padding: 0 0 20px;
		border-bottom: solid 1px #000;
	}
	.news-content {
		padding-bottom: 50px;
		margin-bottom: 50px;
		border-bottom: solid 1px #000;
	}
	.news-content p {
		margin-bottom: 1em;
	}
	.news-content ul {
		list-style-type: disc;
	}
	.news-content ul li {
		margin-bottom: 10px;
	}
	.news-content img {
		max-width: 100%;
		height: auto;
	}
	.news-content .ttl {
		font-size: 15px;
		line-height: 1.8em;
		color: var(--main-color);
	}
	.news-content .ttl-large {
		font-size: 1.2em;
		margin-top: 30px;
		color: #333;
	}
	.txt-block01 {
		margin: 20px 0;
	}
	.news-content .ttl-large {
		position: relative;
		padding-left: 20px;
		margin: 20px 0;
		font-size: 20px;
		line-height: 1.4em;
	}
	.news-content .ttl-large:before {
		width: 4px;
		height: 100%;
		background: linear-gradient(#84c261 0%, #39992d 37.93%, #003400 100%);
		left: 0;
		top: 0;
	}
	.news-content .text-image {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 20px 0;
	}
	.news-content .text-image .text {
		width: 100%;
	}
	.news-content .text-image .image {
		width: 100%;
	}
	.news-content .large-image {
		width: 100%;
		max-width: 928px; /* 幅928pxを上限 */
		margin: 20px auto; /* 上下のマージンと中央揃え */
		text-align: center;
	}
	.news-content .large-image img {
		width: auto; /* 画像の本来の幅 */
		max-width: 100%; /* 最大幅928px */
		height: auto;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.link-block {
		position: relative;
		width: 100%;
	}
	.link-nomal {
		display: block;
		width: 100%;
		margin: 0 auto 10px;
		padding: 15px 20px;
		border: solid 1px #000;
		box-sizing: border-box;
		position: relative;
		line-height: 1.4em;
		transition: all .4s;
	}
	.link-pdf {
		display: block;
		width: 100%;
		margin: 0 auto 10px;
		padding: 15px 20px 15px 40px;
		border: solid 1px #000;
		box-sizing: border-box;
		position: relative;
		line-height: 1.4em;
		transition: all .4s;
	}
	.link-pdf:before {
		width: 22px;
		height: 30px;
		background-image: url("../img/common_img/icon-pdf.svg");
		left: 12px;
		top: 50%;
		transform: translateY(-50%);
	}
	.link-nomal:after,
	.link-pdf:after {
		width: 12px;
		height: 8px;
		background-image: url("../img/common_img/arrow-black.svg");
		right: 10px;
		bottom: 10px;
		transition: all .4s;
	}
}


/* カテゴリーカラー追記　*/

/* 重要　*/
.news-item .category-important span,
.category-date .category-important span {
	background: rgba(173,61,89,1.00);
	color: #FFF;
}
/* 経営　*/
.news-item .category-management span,
.category-date .category-management span {
	background: rgb(61, 134, 173);
	color: #FFF;
}
/* お知らせ　*/
.news-item .category-notice span,
.category-date .category-notice span {
	background: rgb(61, 173, 78);
	color: #FFF;
}
/* その他　*/
.news-item .category-other span,
.category-date .category-other span {
	background: rgba(204,204,204,1.00);
}
/* 技術製品　*/
.news-item .category-product span,
.category-date .category-product span {
	background: rgb(123, 61, 173);
	color: #FFF;
}
/* 採用　*/
.news-item .category-recruit span,
.category-date .category-recruit span {
	background: rgb(173, 168, 61);
	color: #FFF;
}




/* 詳細 仕様追加に伴う追記　*/

.txt-block01 a {
	text-decoration: underline;
	margin-right: 10px;
	position: relative;
	transition: all .3s;
}
.txt-block01 a,
.txt-block01 a.external-link {
	padding-right: 15px;
}
.txt-block01 a:after {
	width: 8px;
	height: 8px;
	background-image: url("../img/common_img/arrow-black.svg");
	right: 0px;
	bottom: 6px;
	z-index: 2;
}
.txt-block01 a.external-link:after {
	width: 8px;
	height: 8px;
	background-image: url("../img/common_img/window-green.svg");
/*	right: 0px;*/
	bottom: 10px;
	z-index: 2;
}
.txt-block01 a.pdf-icon.external-link:after {
	width: 12px;
	height: 18px;
	background-image: url("../img/common_img/icon-pdf.svg");
	right: -2px;
	bottom: 1px;
	z-index: 2;
}
.news-wrap .link-nomal:after,
.news-wrap .link-pdf:after,
.news-wrap .link-nomal.external-link:after {
	right: 10px;
	bottom: 10px;
}
.news-content a:hover {
	opacity: 0.5;
}
.news-wrap .indent {
	margin-left: 2em;
}
.news-wrap .list-dot li {
	position: relative;
	padding: 0 0 0 15px;
}
.news-wrap .list-dot li:before {
	width: 8px;
	height: 8px;
	background: #39992D;
	left: 0;
	top: 9px;
}
.news-content ul li a {
	text-decoration: underline;
	position: relative;
}
.news-content ul li a.external-link {
	padding-right: 15px;
}
.news-content ul li a.external-link:after {
	width: 8px;
	height: 8px;
	background-image: url("../img/common_img/window-green.svg");
	right: 0px;
	bottom: 6px;
	z-index: 2;
}
.news-content .note {
	font-size: 75%;
  line-height: 1.6em;
  text-indent: -1em;
  padding-left: 1em;
}

.photo-links {
	padding: 10px 0 20px;
	position: relative;
}
.photo-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 102%;
	position: relative;
	left: -1%;
	margin-left: 0;
}
.photo-links ul li {
	width: 23%;
	margin: 0 1% 20px;
	position: relative;
  display: flex;
  flex-direction: column;
}
.photo-links ul li a.link-area {
	position: absolute!important;
}
.photo-links ul li a.link-area:after {
	display: none;
}
.photo-links ul li .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
	transition: all .4s;
}
.photo-links ul li .image img {
	height: 100%; /* 画像の高さを親divに合わせる */
	width: auto; /* 横幅を自動調整 */
	object-fit: cover;
	position: absolute;
	left: 50%; /* 中央寄せ */
	transform: translateX(-50%); 
}
.photo-links ul li .txt {
	padding: 10px 10px 10px;
	background: #F4F4F4;
	flex-grow: 1;
  display: flex;
	height: 82px;
}
.photo-links ul li .txt p {
	font-size: 14px;
	line-height: 1.6em;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.photo-links ul li:after {
	width: 8px;
	height: 8px;
	background-image: url("../img/common_img/arrow-black.svg");
	right: 10px;
	bottom: 6px;
	z-index: 2;
}

@media screen and (max-width: 834px) {
	.photo-links ul li {
		width: 31.33%;
		margin: 0 1% 20px;
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.photo-links ul li .image {
		width: 100%;
		height: 180px;
		overflow: hidden;
		position: relative;
		flex-grow: 1;
		transition: all .4s;
	}
}
@media screen and (max-width: 480px) {
	.photo-links ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 102%;
		position: relative;
		left: -1%;
		margin-left: 0;
	}
	.photo-links ul li {
		width: 48%;
		margin: 0 1% 20px;
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.photo-links ul li a.link-area {
		position: absolute!important;
	}
	.photo-links ul li .image {
		width: 100%;
		height: 120px;
		overflow: hidden;
		position: relative;
		flex-grow: 1;
		transition: all .4s;
	}
	.photo-links ul li .image img {
		height: 100%; /* 画像の高さを親divに合わせる */
		width: 100%; /* 横幅を自動調整 */
		object-fit: cover; 
		position: absolute;
		left: 50%; /* 中央寄せ */
		transform: translateX(-50%); /* 画像の中央基準で調整 */
	}
	.photo-links ul li .txt {
		padding: 5px 10px 10px;
		background: #F4F4F4;
		flex-grow: 1;
		display: flex;
		height: 65px;
	}
	.photo-links ul li .txt p {
		font-size: 13px;
		line-height: 1.4em;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
}

.green-btn a.link-area:after {
	display: none;
}

.txt-block01 ol {
  list-style: decimal;      /* 通常の数字を表示 */
  padding-left: 1.5em;      /* 番号の分のインデントを確保 */
  margin-left: 0;           /* 必要に応じて調整 */
}

.txt-block01 ol li {
  list-style: decimal;      /* 念のためliにも指定 */
}

.txt-link-under {
	margin-bottom: 0!important;
}
.txt-link-only {
	margin-bottom: 0!important;
}