@charset "UTF-8";
/*----------
	tag
----------*/
.c-tag {
	display: inline-block;
	vertical-align: middle;
	color: #999;
	border-color: #999;
}

.c-tag>a,
.c-tag>span {
	height: 24px;
	display: block;
	max-width: 100%;
	min-width: 120px;
	border-color: inherit;
	background-color: #fff;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
border: 1px solid #5EA8DD;
color: #5EA8DD;
font-size: 1.2rem;
line-height: 23px;
}

.c-tag>a {
	border-color: var(--color-txt-link);
	color: var(--color-txt-link);
}

.c-tag--fill {
	border-color: var(--color-prim);
	color: #fff;
}

.c-tag--fill>a,
.c-tag--fill>span {
	background-color: var(--color-prim);
}

.c-tag_ir {
}
.c-tag_ir > a,
.c-tag_ir > span {
	background-color: #999;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	border: 1px solid #999;
	color: #fff;
}

@media (min-width: 768px) {
	.c-tag>a {
		transition: background-color 0.2s, color 0.2s;
	}

	.c-tag>a:hover {
		background-color: var(--color-prim);
		color: #fff;
	}

	.c-tag--fill>a:hover {
		background-color: #fff;
		color: var(--color-prim);
	}
}

/*----------
	tag container
----------*/
.g-tag-container {
	margin-top: -8px;
	font-size: 0;
}

.g-tag-container__item {
	display: inline-block;
	margin-right: 10px;
	margin-top: 8px;
}

/*----------
	text
----------*/
.c-text {
	font-size: 1.6rem;
	line-height: var(--line-height-m);
}
.c-text > a {
	text-decoration: underline;
}
.c-text--bold {
	font-weight: bold;
}
@media (min-width: 768px) {
	.c-text > a {
		transition: color 0.2s;
	}
	.c-text > a:hover {
		color: var(--color-txt-hover);
	}
}


/*----------
	news section
----------*/
.g-news-section {
	margin: 95px auto 120px;
}
.g-news-section__inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
@media (max-width: 1200px) {
	.g-news-section__inner {
		padding: 0 20px;
	}
}


/*----------
	news
----------*/
.c-news > a {
	display: inline-block;
	border-color: #999;
	border-color: var(--color-txt-link);
	color: var(--color-txt-link);
}
.c-news .c-news__title:hover{
	text-decoration: underline;
}
.c-news>a:hover{
	text-decoration: none;
}
.c-news>a:hover{
	text-decoration: none;
}
.c-news > a .c-news__title:hover{
	text-decoration: underline;
}
.c-news > a .c-news__title {
	position: relative;
}
.c-news > a[href*=".ashx"] .c-news__title {
	display: inline;
	padding-right: 20px;
}
.c-news > a[href*=".ashx"] .c-news__title:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/-/media/image/msh/sustainability/common/icn/icn-pdf.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.c-news__detail {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	padding: 16px 0;
}
.c-news__date {
	color: #999999;
	grid-column: 1;
	grid-row: 1;
	margin-right: 16px;
	font-size: 1.6rem;
	line-height: var(--line-height-m);
	vertical-align: middle;
}
.c-news__headline {
	grid-column: 1/3;
	grid-row: 2;
	font-size: 1.4rem;
	line-height: var(--line-height-m);
}
.c-news__headline > i[class^=icon-] {
	color: var(--color-txt);
}
.c-news__title > i[class^=icon-] {
	text-indent: 0;
	margin-right: 0.2em;
	transform: translateY(0.15em);
	color: var(--color-txt);
}
.c-news a.c-news__title {
	display: inline-block;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
.c-news__file {
	display: inline-block;
	line-height: var(--line-height-m);
	margin-left: 8px;
	font-size: 1.4rem;
	text-indent: 0;
	color: #999;
}
@media (max-width: 767px) {
	.c-news__date {
		margin-bottom: 8px;
		font-size: 1.6rem;
	}
	.c-news__tag {
		margin-bottom: 8px;
	}
}
@media (min-width: 768px) {
	.c-news > a .c-news__headline,
	.c-news > a .c-news__date {
		transition: color 0.2s;
	}
	.c-news > a:hover .c-news__headline,
	.c-news > a:hover .c-news__date {
		color: var(--color-txt-hover);
	}
	.c-news__detail {
		grid-template-columns: auto auto 1fr;
		grid-template-rows: auto;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.c-news__tag {
		margin-right: 8px;
		margin-top: 10px;
	}
	.c-news__headline {
		margin-top: 10px;
	}
	.c-news a.c-news__title {
		transition: color 0.2s;
	}
	.c-news a.c-news__title:hover {
		color: var(--color-txt-hover);
	}
	@supports (display: grid) {
		.c-news__detail {
			grid-template-columns: auto auto 1fr;
			grid-template-rows: auto;
		}
		.c-news__date {
			grid-column: 1;
			grid-row: 1;
		}
		.c-news__tag {
			grid-column: 2;
			grid-row: 1;
			margin-top: 2px;
		}
		.c-news__headline {
			grid-column: 3;
			grid-row: 1;
			margin-top: 0;
		}
	}
}

/*----------
	news list
----------*/
.g-news-container__item {
	border-bottom: 1px solid #ddd;
}

/*----------
	tag container
----------*/
.g-tag-container {
	margin-top: -8px;
	font-size: 0;
}

.g-tag-container__item {
	display: inline-block;
	margin-right: 10px;
	margin-top: 8px;
}

/*----------
	slider
----------*/
.c-slider {
	position: relative;
	padding-left: 55px;
}

.c-slider__wrapper {
	height: 360px;
}

.c-slider__image {
	position: relative;
	height: 100%;
}

.c-slider__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-slider__image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(37, 37, 37, 1));
}

.c-slider__controllers {
	position: absolute;
	bottom: 0;
	right: 30px;
	z-index: 1;
}

.c-slider__bullet {
	display: block;
	width: 4px;
	height: 20px;
	background: #fff;
	cursor: pointer;
}

.c-slider__bullet:not(:last-child) {
	margin-bottom: 8px;
}

.c-slider__bullet.is-active {
	background: #5EA8DD;
}

.c-slider__prev,
.c-slider__next {
	display: none;
}

@media (min-width: 768px) {
	.c-slider {
		position: relative;
		padding-left: 260px;
	}

	.c-slider__wrapper {
		height: 664px;
	}

	.c-slider__image::after {
		top: auto;
		bottom: 0;
		background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(37, 37, 37, 1) 90%);
	}

	.c-slider__controllers {
		left: 0;
		right: 0;
		bottom: 30px;
		margin: auto auto 0;
	}

	.c-slider__pagination {
		display: flex;
		justify-content: center;
	}

	.c-slider__bullet {
		width: 40px;
		height: 4px;
		margin: 0 4px!important;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.c-slider__bullet {
		width: 20px;
	}
}

/*----------
	c-contactbox
----------*/
.c-contactbox {
	border: 4px solid #EBF0F8;
	padding: 32px 24px;
			position: relative;
}
.c-contactbox__title {
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	margin-left: 12px;
}
.c-contactbox__icon{
	position: absolute;
}
.c-contactbox__text {
	font-size: 1.4rem;
	padding-left: 76px;
}
.c-contactbox__btn {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.c-contactbox {
		padding: 40px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.c-contactbox__body {
		padding-right: 115px;
	}
	.c-contactbox__title {
		margin-left: 0;
	}
.c-contactbox__icon {
	position: unset;
}
	.c-contactbox__text {
		padding-left: 10px;
	}
	.c-contactbox__btn {
		margin-top: 8px;
		width: 373px;
		max-width: 50%;
	}
}

/*# sourceMappingURL=components.css.map */
