@charset "utf-8";
/* ===================================================================
  企業情報 表彰・認定 
=================================================================== */
.commendation__list {
    padding: 0;
    margin: 0 0 3em 0;
	margin-bottom: 6em;
}
.is-hidden{
	display: none;
}

/* ===================================================================
  満足度調査
=================================================================== */
.manzokudo__list {
    margin: 0;
    padding: 0;
}
.manzokudo__list__item {
    margin: 0;
    padding: 0;
}

.list-note--manzokudo {
	border-top: 1px solid #e2e7ec;
	text-align: center;
	padding-top: 1em;
}

.kimera__item {
	background: #f0f5f7;
	padding: 2em;
	margin: 2em 0 0;
}

.kimera__subtitle {
	font-size: 0.9375rem;
	margin-top: .3em;
	padding-bottom: .5em;
	margin-bottom: .5em;
	border-bottom: 1px solid #14a0dc;
}

@media screen and (min-width: 48em) {
	.manzokudo__list__item,
	.manzokudo__list__item:last-child {
		margin: 0;
	}

	}

@media screen and (min-width: 64em) {
	.pure-g--kimera {
		align-items: center;
	}
}



/* ===================================================================
  moreの設定
=================================================================== */
.more{
	cursor: pointer;
	background: linear-gradient(to bottom,#fff0, #fff 50%);
	position: absolute;
	display: block;
	padding: 5em 1em 1em;
	font-size: 1.1em;
	font-weight: 400;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	bottom: -2em;
	transition: 0.2s ease-in-out;
}

.more:hover{
	color: #14a0dc;
	transition: 0.2s ease-in-out;
}
.more span{
	position: relative;
}
.more span::after{
	position: absolute;
	content: "";
	right: -2em;
	top: calc(50% - 10px);
	width: 10px;
	height: 10px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	transition: 0.2s ease-in-out;
}
.more:hover span::after{
	border-top: 2px solid #14a0dc;
	border-right: 2px solid #14a0dc;
	transition: 0.2s ease-in-out;
}

