@charset "utf-8";

/* company_grid
------------------------------------------------------------------- */
@media screen and (min-width : 768px) {
	.company_grid {
		padding-top: 64px;
		display: grid;
		grid-template-rows: 320px 1fr;
		grid-template-columns: 368px 1fr;
	}
	.company_grid.has_2row {
		grid-template-rows: calc(320px + 74px) 1fr;
	}
	.company_grid.has_3row {
		grid-template-rows: calc(320px + (74px * 2)) 1fr;
	}
	.company_grid.no_gallery {
		grid-template-rows: 245px 1fr;
	}
	.company_grid .g_col .inner {
		width: 100%;
		padding: 0;
	}
	.company_grid .g_col.col_gallery {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
	}
	.company_grid .g_col.col_content {
		grid-row: 1 / 3;
		grid-column: 2 / 3;
		padding-left: 48px;
	}
	.company_grid .g_col.col_info {
		grid-row: 2 / 3;
		grid-column: 1 / 2;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 1200px) and (min-width : 768px) {
	.company_grid {
		grid-template-columns: 300px 1fr;
	}
}
@media screen and (max-width : 767px) {
	.company_grid {
		display: flex;
		flex-direction: column;
	}
	.company_grid.inner {
		padding: 0;
		padding-top: 20px;
	}
	.company_grid .g_col.col_content {
		order: 2;
	}
	.company_grid .g_col.col_gallery {
		order: 1;
	}
	.company_grid .g_col.col_info {
		order: 3;
	}
}

/* ul.services
------------------------------------------------------------------- */
ul.services {
	margin: 24px 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
ul.services .sv_item {
	display: flex;
	flex-shrink: 0;
	align-items: stretch;
	margin: 20px 0 0 20px;
	background-color: #fff;
}
ul.services .sv_item > a {
	display: block;
	width: 100%;
	padding: 0;
	text-decoration: none;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
}
ul.services .sv_item > a > *:first-child { margin-top: 0; }
ul.services .sv_item > a > *:last-child { margin-bottom: 0; }

ul.services .sv_item div.photo {
	position: relative;
	text-align: center;
	padding-top: 50%;
	height: 0;
	border-bottom: 1px solid #e8e8e8;
}
ul.services .sv_item div.photo img {
	height: auto;
	max-width: calc(100% - 64px);
	max-height: calc(100% - 48px);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: contain;
}

ul.services .sv_item .score {
	display: flex;
	align-items: center;
	margin: 0 auto;
	width: calc(100% - 32px);
	font-size: 12px;
	font-weight: bold;
	padding: 17px 0 17px 8px;
	border-bottom: 1px solid #e8e8e8;
}
ul.services .sv_item .score .mod_score {
	margin-right: 20px;
}
ul.services .sv_item .score > .count {
	line-height: 1;
}
ul.services .sv_item .title {
	margin: 0;
	padding: 15px 24px;
	font-size: 12px;
	font-weight: bold;
	color: #797979;
}

@media screen and (min-width : 768px) {
	ul.services .sv_item {
		width: calc((100% - (48px * (3 - 1))) / 3);
		margin-top: 32px;
		margin-left: 48px;
	}
	ul.services .sv_item:nth-child(-n+3) {
		margin-top: 0;
	}
	ul.services .sv_item:nth-child(3n+1) {
		margin-left: 0;
	}
	ul.services .sv_item > a,
	ul.services .sv_item .photo {
		transition: border-color 0.1s linear;
	}
	ul.services .sv_item > a:hover,
	ul.services .sv_item > a:hover .photo {
		border-color: #FAD2B7;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 1200px) and (min-width : 768px) {}
@media screen and (max-width : 767px) {

	ul.services {
		width: calc(100% + 18px);
		max-width: calc(100% + 18px);
		flex-wrap: nowrap;
		align-items: stretch;
	}
	ul.services .sv_item {
		width: 300px;
		margin: 0;
		margin-left: 0;
		cursor: default;
	}
	ul.services .sv_item + .sv_item {
		margin-left: 12px;
	}
	ul.services .sv_item div.photo img {
		max-width: calc(100% - 48px);
	}
	ul.services .sv_item .score {
		padding: 20px 0 16px 8px;
	}
	ul.services .sv_item .score .mod_score {
		margin-right: 16px;
	}
}

/* ul.services.layout_one
------------------------------------------------------------------- */
ul.services.layout_one {
	margin: 0;
}
ul.services.layout_one .sv_item {
	margin: 0;
	width: 100%;
}
ul.services.layout_one .sv_item > a {
	border: 0;
	cursor: default;
	pointer-events: none;
}
/* photo */
ul.services.layout_one .sv_item div.photo {
	border: 1px solid #e8e8e8;
	border-radius: 8px;
}
/* title */
ul.services.layout_one .sv_item .title {
	padding: 23px 0;
}
/* score */
ul.services.layout_one .sv_item .score {
	width: 100%;
	padding: 18px 0 18px 8px;
}
/* description */
ul.services.layout_one .sv_item .description {
	margin-top: 24px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.65;
	color: #797979;
}
ul.services.layout_one .sv_item .description > *:first-child { margin-top: 0; }
ul.services.layout_one .sv_item .description > *:last-child { margin-bottom: 0; }

@media screen and (min-width : 768px) {
	ul.services.layout_one .sv_item,
	ul.services.layout_one .sv_item:nth-child(-n+3),
	ul.services.layout_one .sv_item:nth-child(3n+1) {
		width: 100%;
		margin: 0;
	}

	ul.services.layout_one .sv_item div.photo {
		transition: border-color 0.07s linear;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {

	ul.services.layout_one {
		width: 100%;
		max-width: 100%;
	}

	/* description */
	ul.services.layout_one .sv_item .description {
		margin-top: 16px;
	}
}


/* ul.services.layout_horizon
------------------------------------------------------------------- */
ul.services.layout_horizon .sv_item .score {
	display: none;
}
@media screen and (min-width : 768px) {
	ul.services.layout_horizon .sv_item {

		width: calc((100% - 24px) / 2);
		margin-left: 24px;
		margin-top: 24px;
	}
	ul.services.layout_horizon .sv_item:nth-child(-n+2) {
		margin-top: 0;
	}
	ul.services.layout_horizon .sv_item:nth-child(2n+1) {
		margin-left: 0;
	}

	ul.services.layout_horizon .sv_item > a {
		display: flex;
		width: 100%;
	}
	ul.services.layout_horizon .sv_item .title {
		padding: 15px 0 0;
	}
	ul.services.layout_horizon .sv_item .col_left {
		width: 257px;
		padding: 18px 16px;
	}
	ul.services.layout_horizon .sv_item .col_left .photo {
		border: 1px solid #e8e8e8;
		border-radius: 8px;
		padding-top: 43.58%;
	}
	ul.services.layout_horizon .sv_item .col_left .photo_in {

	}
	ul.services.layout_horizon .sv_item .col_left .photo_in img {
		max-width: calc(100% - 32px);
		max-height: calc(100% - 24px);
	}
	ul.services.layout_horizon .sv_item .col_right {
		flex-grow: 1;
		padding-right: 3px;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {}

/* ul.services.slide
------------------------------------------------------------------- */
@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	ul.services.slide:not(.slick-initialized) {
		overflow-x: hidden;
	}
	ul.services.slide.slick-initialized .slick-track {
		display: flex;
		align-items: stretch;
	}
	ul.services.slide.slick-initialized:before {
		content: '';
		position: absolute;
		width: 40px;
		height: 100%;
		right: 0;
		top: 0;
		z-index: 1;
	}
	ul.services.slide.slick-initialized .slick-slide {
		height: auto;
	}
	ul.services.slide:not(.slick-initialized) {
		opacity: 0;
	}
	ul.services.slide .slick-arrow {
		width: 24px;
		height: 24px;
		background-color: rgba(210, 210, 210, 0.8);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 8px;
		border-radius: 50%;
		z-index: 10;
	}
	ul.services.slide .slick-arrow.slick-disabled {
		background-color: rgba(210, 210, 210, 0.3);
	}
	ul.services.slide .slick-arrow:before {
		content: '';
	}
	ul.services.slide .slick-prev {
		left: -32px;
		background-image: url(../img/ico_arrow_left_w.svg);
	}
	ul.services.slide .slick-next {
		right: 8px;
		background-image: url(../img/ico_arrow_right_w.svg);
	}
}

/* ul.services_summary
------------------------------------------------------------------- */
ul.services_summary {
	margin: 24px 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
ul.services_summary .item {
	display: flex;
	flex-shrink: 0;
	align-items: stretch;
	flex-direction: column;
	margin: 24px 0 0 24px;
}
ul.services_summary .item > .link_more {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	padding: 0 16px 16px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	text-decoration: none;
}
ul.services_summary .item > .link_more {
	position: relative;
}
ul.services_summary .item > .link_more > *:first-child { margin-top: 0; }
ul.services_summary .item > .link_more > *:last-child { margin-bottom: 0; }

ul.services_summary .item .title {
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
	margin-left: -16px;
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: 8px 8px 0 0;
	background-color: #F8F8F8;
	margin-bottom: 16px;
}
ul.services_summary .item .title h3 {
	width: 100%;
	margin: 0;
	font-size: 14px;
	word-break: break-all;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
ul.services_summary .item .title span.mod_status_ico {
	height: 20px;
	line-height: 20px;
	margin-left: auto;
	font-size: 12px;
}

ul.services_summary .item .photo {
	width: 100%;
	flex-shrink: 0;
	border-radius: 8px;
	border: 1px solid #e8e8e8;
}
ul.services_summary .item .photo_in {
	position: relative;
	padding-top: 50%;
	height: auto;
}
ul.services_summary .item .photo img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: auto;
	max-width: calc(100% - 48px);
	max-height: calc(100% - 32px);
	object-fit: contain;
}

ul.services_summary .item .txt {
	margin-top: 14px;
	padding: 0;
	width: 100%;
	flex-grow: 1;
	flex-shrink: 1;
}
ul.services_summary .item .txt > *:first-child { margin-top: 0; }

ul.services_summary .item .txt ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
	color: #797979;
}
ul.services_summary .item .txt ul > li {
	margin: 0;
	padding: 2px 0;
}
ul.services_summary .item .txt ul > li + li {
	border-top: 1px solid #E8E8E8;
}
ul.services_summary .item .txt ul > li:last-child {
	padding-bottom: 0;
}
ul.services_summary .item .txt ul > li > span + span {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid #E8E8E8;
}
ul.services_summary .item .txt ul > li > span.company {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

ul.services_summary .item .txt ul > li > table {
	margin: 0 0 11px;
	padding: 0;
	border: 0;
	line-height: 1;
}
ul.services_summary .item .txt ul > li > table th,
ul.services_summary .item .txt ul > li > table td {
	padding: 0 11px;
	font-size: 12px;
	background-color: transparent;
	border: 0;
	width: auto;
	vertical-align: top;
}
ul.services_summary .item .txt ul > li > table tr > *:first-child {
	padding-left: 0;
}
ul.services_summary .item .txt ul > li > table tr > *:last-child {
	padding-right: 0;
}
ul.services_summary .item .txt ul > li > table th {
	color: #797979;
}
ul.services_summary .item .txt ul > li > table td {
	padding-top: 8px;
}
ul.services_summary .item .txt ul > li > table td .num,
ul.services_summary .item .txt ul > li > table td .unit {
	color: #353535;
}
ul.services_summary .item .txt ul > li > table td .num {
	font-size: 18px;
}
ul.services_summary .item .txt ul > li > table td .unit {
	font-size: 14px;
	margin-left: 2px;
}
ul.services_summary .item .txt ul > li.score {
	padding: 0 0 7px;
	line-height: 18px;
	color: #353535;
}
ul.services_summary .item .txt ul > li.score .mod_score {
	margin-right: 19px;
}
ul.services_summary .item .txt ul > li.score + li.nums table {
	margin-top: 10px;
}

ul.services_summary .item.transparent {
	opacity: 0;
}
ul.services_summary .item.hide {
	display: none;
	opacity: 0;
}
ul.services_summary .item.transparent.show,
ul.services_summary .item.hide.show {
	display: flex;
	animation-duration: 0.3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-name: slideUp;
}
@keyframes serviceItemFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media screen and (min-width : 768px) {
	body.page-service footer {
		margin-top: 64px;
	}
	ul.services_summary .item {
		margin-top: 24px;
		width: calc((100% - 72px) / 4);
	}
	ul.services_summary .item:nth-child(-n+4) {
		margin-top: 0;
	}
	ul.services_summary .item:nth-child(4n+1) {
		margin-left: 0;
	}

	ul.services_summary .item > .link_more:hover {
		border: 1px solid #FAD2B7;
	}
	ul.services_summary .item > .title {
		transition: background-color 0.07s linear;
	}
	ul.services_summary .item > .link_more:hover .title {
		background-color: #FEF3EB;
	}
	ul.services_summary .item .title h3 {
		transition: color 0.1s linear;
	}
	ul.services_summary .item > .link_more:hover .title h3 {
		color: #ED6103;
	}
	ul.services_summary .item .photo .mod_status_ico {
		display: none;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 1364px) and (min-width : 1201px) {
	ul.services_summary .item .txt ul > li > table th {
		font-size: 10px;
	}
	ul.services_summary .item .txt ul > li > table th,
	ul.services_summary .item .txt ul > li > table td {
		padding-left: 6px;
		padding-right: 6px;
	}
}
@media screen and (max-width : 1200px) and (min-width : 768px) {
	ul.services_summary .item {
		margin-top: 24px;
		margin-left: 24px;
		width: calc((100% - 48px) / 3);
	}
	/* cancel */
	ul.services_summary .item:nth-child(-n+4) {
		margin-top: 24px;
	}
	ul.services_summary .item:nth-child(4n+1) {
		margin-left: 24px;
	}
	/* override */
	ul.services_summary .item:nth-child(-n+3) {
		margin-top: 0;
	}
	ul.services_summary .item:nth-child(3n+1) {
		margin-left: 0;
	}
}
@media screen and (max-width : 950px) and (min-width : 768px) {
	ul.services_summary .item .txt ul > li > table th {
		font-size: 10px;
	}
	ul.services_summary .item .txt ul > li > table th,
	ul.services_summary .item .txt ul > li > table td {
		padding-left: 6px;
		padding-right: 6px;
	}
}
@media screen and (max-width : 767px) {
	body.page-service footer {
		margin-top: 32px;
	}
	ul.services_summary {
		width: calc(100% + 2px);
		max-width: calc(100% + 2px);
		margin-left: -2px;
	}
	ul.services_summary .item {
		margin: 0;
		margin-top: 16px;
		margin-left: 16px;
		width: calc((100% - 16px) / 2);
	}
	ul.services_summary .item:nth-child(-n+2) {
		margin-top: 0;
	}
	ul.services_summary .item:nth-child(2n+1) {
		margin-left: 0;
	}
	ul.services_summary .item > .link_more {
		cursor: default;
		padding: 0;
	}
	ul.services_summary .item .title {
		margin: 0;
		padding: 6px 12px;
		width: 100%;
		max-width: 100%;
		border-bottom: 1px solid #e8e8e8;
	}
	ul.services_summary .item .title h3 {
		font-size: 12px;
	}
	ul.services_summary .item .title .mod_status_ico {
		display: none;
	}
	ul.services_summary .item .photo {
		border: 0;
		border-radius: 0;
		position: relative;
		/* width: 120px; */
		/* padding: 22px 16px; */
	}
	ul.services_summary .item .photo img {
		max-width: calc(100% - 24px);
		max-height: calc(100% - 16px);
	}
	ul.services_summary .item .photo .mod_status_ico {
		position: absolute;
		top: 4px;
		left: 4px;
		height: 18px;
		line-height: 18px;
		padding-left: 18px;
		background-position: left 4px center;
		background-size: 10px;
		font-size: 10px;
	}

	ul.services_summary .item .txt {
		margin: 0;
	}
	ul.services_summary .item .txt ul > li {
		padding: 0;
	}
	ul.services_summary .item .txt ul > li.features {
		display: none;
	}
	ul.services_summary .item .txt ul > li.score {
		border-top: 1px solid #e8e8e8;
		padding: 7px 0;
		line-height: 14px;
		font-size: 10px;
		text-align: center;
	}
	ul.services_summary .item .txt ul > li.score .mod_score {
		margin-right: 5px;
	}
	ul.services_summary .item .txt ul > li.nums {
		border-top: 1px solid #e8e8e8;
	}
	ul.services_summary .item .txt ul > li.score + li.nums table {
		margin-top: 0;
	}
	ul.services_summary .item .txt ul > li > table {
		margin: 0;
	}
	ul.services_summary .item .txt ul > li > table tr {
		display: flex;
		width: 100%;
	}
	ul.services_summary .item .txt ul > li > table th,
	ul.services_summary .item .txt ul > li > table td {
		width: 50%;
		text-align: center;
	}
	ul.services_summary .item .txt ul > li > table th {
		padding: 10px 0 0;
		font-size: 10px;
	}
	ul.services_summary .item .txt ul > li > table td {
		padding: 5px 0 10px;
		align-self: center;
	}
	ul.services_summary .item .txt ul > li > table th.range,
	ul.services_summary .item .txt ul > li > table td.range {
		order: 2;
		border-left: 1px solid #e8e8e8;
	}
	ul.services_summary .item .txt ul > li > table th.yield,
	ul.services_summary .item .txt ul > li > table td.yield {
		order: 1;
	}
	ul.services_summary .item .txt ul > li > table td.yield .num {
		color: #ED6103;
		font-size: 18px;
	}
	ul.services_summary .item .txt ul > li > table td.yield .unit {
		color: #ED6103;
	}
	ul.services_summary .item .txt ul > li > table th.count,
	ul.services_summary .item .txt ul > li > table td.count {
		display: none;
	}
	ul.services_summary .item .txt ul > li.company {
		padding: 6px 8px;
	}
	ul.services_summary .item .txt ul > li > span.company {
		font-size: 10px;
	}
}

/* services_summary - campaign
------------------------------------------------------------------- */
ul.services_summary .campaign {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 14px auto 0;
	padding: 0;
	height: 34px;
	line-height: 34px;
	background-color: #FFF8EB;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
}
ul.services_summary .campaign:not(.off):before {
	display: inline-block;
	content: '';
	width: 18px;
	height: 18px;
	margin-right: 4px;
	background-position: center;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url(../img/ico_campaign.svg);
}
ul.services_summary .campaign.off {
	background-color: #F8F8F8;
	color: #797979;
	font-size: 12px;
}
ul.services_summary:not(.list) .item .title .campaign {
	display: none;
}
ul.services_summary.list .item .txt ul > li.score {
	display: none;
}
ul.services_summary.list .item .txt .campaign {
	display: none;
}

ul.services_summary.list .item .title .campaign {
	margin: 10px 0 0;
	padding-left: 8px;
	padding-right: 23px;
	height: 18px;
	line-height: 18px;
	font-size: 10px;
	border-radius: 9px;
}
ul.services_summary.list .item .title .campaign.off {
	display: none;
}
ul.services_summary.list .item .title .campaign:before {
	width: 10px;
	height: 10px;
	background-size: 10px;
}
ul.services_summary.list .item .title .mod_status_ico + .campaign {
	margin-left: 4px;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	ul.services_summary .campaign {
		width: calc(100% - 16px);
		margin: 0 auto 8px;
		font-size: 10px;
		height: 18px;
		line-height: 18px;
	}
	ul.services_summary .campaign:not(.off):before {
		width: 10px;
		height: 10px;
		background-size: 10px;
		margin-right: 3px;
	}
	ul.services_summary .campaign.off {
		font-size: 10px;
		color: #353535;
	}

	ul.services_summary.list .item .title .campaign {
		width: auto;
	}
}


/* ul.services_summary.list
------------------------------------------------------------------- */
ul.services_summary.list {
	border-top: 1px solid #e8e8e8;
}
ul.services_summary.list > li {
	width: 100%;
}
ul.services_summary.list .item,
ul.services_summary.list .item:nth-child(-n+3) {
	margin: 0;
}
ul.services_summary.list .item > .link_more {
	flex-direction: row;
	align-items: stretch;
	flex-wrap: nowrap;
	position: relative;
	padding: 0;
	border-radius: 0;
	border: 0;
}
ul.services_summary.list .item > .link_more:after {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: height 0.07s linear;
	background-color: #e8e8e8;
}
ul.services_summary.list .item > .link_official {
	display: none;
}
ul.services_summary.list .item .photo {
	display: none;
}
ul.services_summary.list .item .title {
	order: 2;
	width: calc(100% - 686px);
	flex-grow: 0;
	padding: 16px 16px 16px 24px;
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0;
}
ul.services_summary.list .item .title h3 {
	font-size: 20px;
	width: 100%;
}
ul.services_summary.list .item .title span.mod_status_ico {
	margin-left: 0;
	padding-left: 18px;
	margin-top: 10px;
	font-size: 10px;
	height: 18px;
	line-height: 18px;
	background-size: 10px;
	background-position: left 6px center;
}
ul.services_summary.list .item > .link_more:hover .title {
	background-color: transparent;
}
ul.services_summary.list .item .txt {
	order: 3;
	width: 686px;
	padding: 16px 0;
	padding-left: 32px;
	margin: 0;
	position: relative;
	flex-shrink: 0;
	flex-grow: 1;
}
ul.services_summary.list .item .txt:after {
	content: '';
	position: absolute;
	top: 16px;
	left: 0;
	width: 1px;
	height: calc(100% - 32px);
	border-left: 1px solid #e8e8e8;
}
ul.services_summary.list .item .txt ul {
	position: relative;
	padding-left: calc(345px + 32px);
	height: 100%;
	width: calc(320px + 345px + 32px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
ul.services_summary.list .item .txt ul:after {
	content: '';
	position: absolute;
	top: 0;
	left: 345px;
	width: 1px;
	height: 100%;
	border-left: 1px solid #e8e8e8;
}
ul.services_summary.list .item .txt ul > li.nums {
	width: 325px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: stretch;
}
ul.services_summary.list .item .txt ul > li + li {
	border-top: 0;
	margin: auto 0;
}
ul.services_summary.list .item .txt ul > li.features {
	margin-bottom: 0;
}
ul.services_summary.list .item .txt ul > li.features:not(.empty) + li.company {
	margin-top: 0;
}
ul.services_summary.list .item .txt ul > li > table th,
ul.services_summary.list .item .txt ul > li > table td {
	padding: 0 12px;
}
ul.services_summary.list .item .txt ul > li > table td {
	padding-top: 8px;
}
ul.services_summary.list .item .txt ul > li > table th {
	white-space: nowrap;
}
ul.services_summary.list .item .txt ul > li > table td .num {
	font-size: 24px;
}

ul.services_summary.list .item .txt ul > li:nth-child(2) > span {
	display: inline-block;
	border: 1px solid #e8e8e8;
	border-radius: 2px;
	margin-right: 8px;
	margin-left: 0;
	padding: 2px 5px;
}
ul.services_summary.list .item .txt ul > li.empty {
	display: none;
}
ul.services_summary.list .item .txt ul > li:nth-child(2) > span.empty {
	display: none;
}
ul.services_summary.list .item .txt ul > li > span.company {
	font-size: 14px;
}

@media screen and (min-width : 769px)  {
	ul.services_summary.list {
		margin-left: -10px;
		width: calc(100% + 20px);
		max-width: calc(100% + 20px);
	}
	ul.services_summary.list .item .txt ul {
		justify-content: stretch;
	}
	ul.services_summary.list .item .txt ul > li.nums {
		padding: 0;
	}
	ul.services_summary.list .item .txt ul > li > table {
		display: flex;
		flex-direction: column;
		margin: 0;
	}
	ul.services_summary.list .item .txt ul > li > table thead {
		display: flex;
		align-items: stretch;
		height: calc(50% - 12px);
		width: 100%;
	}
	ul.services_summary.list .item .txt ul > li > table thead th {
		display: flex;
		width: 100%;
		align-items: flex-end;
	}
	ul.services_summary.list .item .txt ul > li > table tbody {
		display: flex;
		align-items: stretch;
		height: calc(50% + 12px);
		width: 100%;
	}
	ul.services_summary.list .item .txt ul > li > table tbody td {
		display: flex;
		width: 100%;
		align-items: flex-start;
	}
	ul.services_summary.list .item .txt ul > li > table tr {
		display: flex;
		width: 100%;
	}
	ul.services_summary.list .item .txt ul > li > table tr > .yield {
		width: 34%;
	}
	ul.services_summary.list .item .txt ul > li > table tr > .range {
		width: 39%;
	}
	ul.services_summary.list .item .txt ul > li > table tr > .count {
		width: 27%;
	}
	ul.services_summary.list .item .txt ul > li > table th,
	ul.services_summary.list .item .txt ul > li > table td {
		display: flex;
	}
	ul.services_summary.list .item .txt ul > li > table th {
		align-items: flex-end;
	}
	ul.services_summary.list .item .txt ul > li > table td {
		align-items: flex-start;
	}
	ul.services_summary .item .txt ul > li > table td .unit {
		margin-top: 8px;
	}

	/* selected */
	ul.services_summary.list .item .txt ul > li > table th.selected,
	ul.services_summary.list .item .txt ul > li > table td.selected {
		position: relative;
	}
	ul.services_summary.list .item .txt ul > li > table th.selected:before,
	ul.services_summary.list .item .txt ul > li > table td.selected:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: calc(100% + 16px);
		background-color: #FFF8EB;
		z-index: -1;
	}
	ul.services_summary.list .item .txt ul > li > table th.selected:before {
		top: -16px;
	}
	ul.services_summary.list .item .txt ul > li > table td.selected .num,
	ul.services_summary.list .item .txt ul > li > table td.selected .unit {
		color: #ED6103;
	}

}
@media screen and (min-width : 1081px) {
	ul.services_summary.list .item .txt ul > li > span.company {
		white-space: normal;
		overflow: visible;
	}
	ul.services_summary.list .item > .link_more:after {
		transition: background-color 0.07s linear, height 0.07s linear;
	}
	ul.services_summary.list .item > .link_more:hover:after {
		height: 2px;
		background-color: #ED6103;
	}
}
@media screen and (max-width : 1366px) and (min-width : 769px) {
	ul.services_summary.list .item .txt ul > li > table th,
	ul.services_summary.list .item .txt ul > li > table td {
		padding: 0 12px;
	}
	ul.services_summary.list .item .txt ul > li > table td {
		padding-top: 8px;
	}
}
@media screen and (max-width : 1200px) and (min-width : 769px)  {
	ul.services_summary.list .item .txt ul {
		width: calc(280px + 315px + 32px);
	}
}
@media screen and (max-width : 1080px) {
	ul.services_summary.list {
		border-top: 0;
	}
	ul.services_summary.list .item,
	ul.services_summary.list .item:nth-child(-n+3) {
		border-bottom: 0;
		margin-bottom: 12px;
		/* padding: 0 8px; */
		border-radius: 8px;
	}
	ul.services_summary.list .item > .link_more {
		position: relative;
		padding: 0;
		padding-top: 12px;
		flex-wrap: wrap;
		border: 1px solid #e8e8e8;
		border-radius: 8px;
	}
	ul.services_summary.list .item > .link_more:after {
		display: none;
	}
	ul.services_summary.list .item .title {
		width: calc(100% - (56px + 24px));
		padding: 12px 315px 12px 12px;
		flex-shrink: 1;
	}
	ul.services_summary.list .item .title h3 {
		font-size: 20px;
	}
	ul.services_summary.list .item .title span.mod_status_ico {
		font-size: 10px;
	}
	ul.services_summary.list .item .txt {
		width: 100%;
		height: 36px;
		padding: 0 7px 0 16px;
		position: static;
		border-top: 1px solid #e8e8e8;
		background-color: #F8F8F8;
		border-radius: 0 0 8px 8px;
	}
	ul.services_summary.list .item .txt:after {
		display: none;
	}
	ul.services_summary.list .item .txt ul {
		width: 100%;
		padding: 0;
		position: static;
		flex-direction: row;
	}
	ul.services_summary.list .item .txt ul:after {
		display: none;
	}
	ul.services_summary.list .item .txt ul > li.nums {
		width: calc(325px + 16px);
		height: 51px;
		display: flex;
		align-items: stretch;
		padding: 0;
		left: initial;
		top: 0;
		right: 0;
		padding-left: 16px;
	}
	ul.services_summary.list .item .txt ul > li.nums:after {
		content: '';
		position: absolute;
		top: 0;
		left: -8px;
		width: 1px;
		height: 100%;
		border-left: 1px solid #E8E8E8;
	}
	ul.services_summary.list .item .txt ul > li > table thead {
		height: calc(50% - 10px);
	}
	ul.services_summary.list .item .txt ul > li > table th,
	ul.services_summary.list .item .txt ul > li > table td {
		text-align: center;
	}
	ul.services_summary.list .item .txt ul > li > table th {
		font-size: 10px;
	}
	ul.services_summary.list .item .txt ul > li > table td .num {
		font-size: 20px;
	}
	ul.services_summary.list .item .txt ul > li.features {
		display: flex;
		margin-bottom: auto;
	}
	ul.services_summary.list .item .txt ul > li.features.empty {
		display: none;
	}
	ul.services_summary.list .item .txt ul > li.features > span {
		white-space: nowrap;
		background-color: #fff;
	}
	ul.services_summary.list .item .txt ul > li.company {
		display: flex;
		align-items: center;
		padding: 0;
		flex-grow: 1;
		margin-left: auto;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		text-align: right;
	}
	ul.services_summary.list .item .txt ul > li > span.company {
		width: calc(100% - 7px);
		padding: 6px 0;
		font-size: 12px;
	}

	ul.services_summary.list .item .txt ul > li > table th.selected:before,
	ul.services_summary.list .item .txt ul > li > table td.selected:before {
		height: 100%;
		top: 0;
	}
	ul.services_summary.list .item .txt ul > li > table th.selected:before {
		border-radius: 10px 10px 0 0;
	}
	ul.services_summary.list .item .txt ul > li > table td.selected:before {
		border-radius: 0 0 10px 10px;
	}
}
@media screen and (max-width : 1080px) and (min-width : 769px) {
	ul.services_summary.list .item > .link_more {
		padding-top: 0;
		transition: border-color 0.07s linear, background-color 0.07s linear;
	}
	ul.services_summary.list .item > .link_more:hover {
		border-color: #ED6103;
		background-color: #FEF3EB;
	}
}
@media screen and (max-width : 768px) {

	ul.services_summary.list .item > .link_more:after {
		display: none;
	}
	ul.services_summary.list .item > .link_more {
		padding-top: 12px;
	}
	ul.services_summary.list .item .title {
		width: calc(100% - 118px);
		height: 48px;
		padding-right: 0;
		padding-top: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}
	ul.services_summary.list .item .title h3 {
		font-size: 14px;
	}
	ul.services_summary.list .item .title span.mod_status_ico {
		display: inline-block;
	}
	ul.services_summary.list .item .txt {
		height: 33px;
		padding-left: 4px;
		margin-top: 4px;
	}
	ul.services_summary.list .item .txt ul > li > table {
		margin: 0;
	}
	ul.services_summary.list .item .txt ul > li > table th,
	ul.services_summary.list .item .txt ul > li > table td {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	ul.services_summary.list .item .txt ul > li > table th {
		font-size: 10px;
	}
	ul.services_summary.list .item .txt ul > li > table th:not(.selected),
	ul.services_summary.list .item .txt ul > li > table td:not(.selected) {
		display: none;
	}
	ul.services_summary.list .item .txt ul > li > table td .num {
		font-size: 22px;
	}

	ul.services_summary.list .item .txt ul > li.nums {
		top: 12px;
		right: 8px;
		width: 100px;
		height: 48px;
		padding: 6px 0;
		background-color: #FFF8EB;
		border-radius: 8px;
		border: 0;
	}
	ul.services_summary.list .item .txt ul > li.nums:after {
		content: '';
		position: absolute;
		top: 0;
		left: -8px;
		width: 1px;
		height: 100%;
		border-left: 1px solid #E8E8E8;
	}
	ul.services_summary.list .item .txt ul > li.features > span {
		font-size: 10px;
	}
	ul.services_summary.list .item .txt ul > li.company {
		flex-grow: 0;
	}
	ul.services_summary.list .item .txt ul > li > span.company {
		margin-left: 0;
		font-size: 10px;
	}

	ul.services_summary.list .item .txt ul > li > table td.selected .num,
	ul.services_summary.list .item .txt ul > li > table td.selected .unit {
		color: #ED6103;
	}
}

@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {}


/* .company_header
------------------------------------------------------------------- */
.company_header {}
.company_header + .mod_tab {
	margin-top: 32px;
}
.company_header .inner {}
.company_header .ch_status {
	margin-bottom: 7px;
	line-height: 1;
}
.company_header .ch_title {
	margin: 0;
	margin-bottom: 24px;
	font-size: 40px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e8e8e8;
}
.company_header .ch_title > span.title {
	display: block;
}
.company_header .ch_title > span.kana {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #8F8F8F;
}
.company_header .ch_title p.blank {
	flex-shrink: 0;
	width: auto;
	margin: 0;
	margin-left: auto;
}
.company_header .ch_title p.blank > a {
	padding: 0;
	border: 0;
	color: #353535;
	font-size: 14px;
}
.company_header .ch_title p.blank > a:hover {
	color: #ED6103;
	background-color: transparent;
}
.company_header .ch_title p.blank > a:hover:after {
	background-image: url(../img/ico_window.svg);
}

.company_header .ch_txt {
	margin-top: 23px;
}
.company_header .ch_txt > *:first-child { margin-top: 0; }
.company_header .ch_txt > *:last-child { margin-bottom: 0; }
.company_header .ch_txt p {
	margin-bottom: 15px;
}

.company_header .ch_txt .mod_btn.ico_blank {
	margin-top: 24px;
}
.company_header .ch_txt div.s_tabs ul.tabs li.active button {
	color: #353535;
}

.company_header .ch_btn {
	margin-top: 24px;
	display: flex;
	gap: 15px;
}
.company_header .ch_btn .mod_btn {
	padding-left: 30px;
	padding-right: 30px;
	height: 56px;
	line-height: 54px;
}

@media screen and (min-width : 768px) {
	.company_header .ch_txt a.blank:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 950px) and (min-width : 768px) {}
@media screen and (max-width : 767px) {
	.company_header {
		padding-top: 24px;
	}
	.company_header > .inner {
		padding: 0 18px;
	}
	.company_header .ch_status {
		margin-bottom: 4px;
	}
	.company_header .ch_title {
		align-items: flex-start;
		font-size: 24px;
		margin-bottom: 20px;
		padding-bottom: 0;
		border-bottom: 0;
	}
	.company_header .ch_title > span.kana {
		font-size: 12px;
		margin-top: 8px;
	}

	.company_header .ch_txt {
		margin-top: 20px;
	}
	.company_header .ch_txt .mod_btn.ico_blank {
		margin-top: 32px;
	}
	.company_header .ch_txt p.blank > a {
		margin: auto;
		padding-left: 48px;
		padding-right: 48px;
	}
	.company_header .ch_btn {
		gap: 12px;
		flex-direction: column;
	}
	.company_header .ch_btn .mod_btn {
		width: 100%;
		padding: 0;
		height: 52px;
		line-height: 50px;
	}
}

/* service thumbnail popup
------------------------------------------------------------------- */
#swipebox-overlay {
	background-color: rgba(210, 210, 210, 0.8);
}
#swipebox-slider {
	cursor: default;
}
#swipebox-slider .slide .swipebox-video-container {
	padding: 20px;
}
#swipebox-close {
	right: 60px;
	top: 40px;
	width: 61px;
	height: 61px;
	border: 0;
	background: url(../img/ico_movie_close_w.svg) no-repeat top left;
	background-size: 61px;
}
#swipebox-bottom-bar {
	background-color: transparent;
	bottom: 0!important;
	transform: none!important;
}
#swipebox-arrows {
	position: relative;
	width: calc(100% - 164px);
}

#swipebox-prev,
#swipebox-next {
	position: fixed;
	width: 48px;
	height: 48px;
	max-height: 50%;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 48px;
	z-index: 1000;
}
#swipebox-prev:before,
#swipebox-next:before {
	display: none;
}
#swipebox-prev {
	left: 26px;
	background-image: url(../img/ico_slide_prev_w.svg)!important;
}
#swipebox-next {
	right: 26px;
	background-image: url(../img/ico_slide_next_w.svg)!important;
}
#swipebox-prev:hover {
	background-image: url(../img/ico_slide_prev_on.svg)!important;
}
#swipebox-next:hover {
	background-image: url(../img/ico_slide_next_on.svg)!important;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	#swipebox-close {
		top: 20px;
		right: -20px;
		width: 48px;
		height: 48px;
		background-size: 48px;
	}
	#swipebox-bottom-bar {
		z-index: 1000;
	}
	#swipebox-prev,
	#swipebox-next {
		width: 50px;
		height: 100px;
		z-index: 1000;
	}
	#swipebox-container {
		width: calc(100% - 56px);
		margin-left: 10px;
	}
	.swipebox-touch #swipebox-container:after,
	.swipebox-touch #swipebox-container:before {
		top: 0;
		bottom: 0;
		margin: auto;
		width: 200px;
		max-width: calc(50% - 50px);
		max-height: 100px;
	}
	#swipebox-prev,
	#swipebox-next {
		display: none;
	}
	#swipebox-slider .slide {
		/* width: calc(100% - 36px); */
		padding: 10px;
	}
	#swipebox-slider .slide .swipebox-video-container {
		padding: 10px;
	}
}

/* .archive.service .mod_tab
------------------------------------------------------------------- */
@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {}

/* company_images
------------------------------------------------------------------- */
.company_images {}
.company_images img {
	width: 100%;
	height: 100%;
	opacity: 0;
}
.company_images .ci_preview {
	display: flex;
	align-items: center;
	border: 1px solid #e8e8e8;
	height: 245px;
	padding: 20px;
}
.company_images .ci_preview .canvas {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.company_images .ci_thumbnails {
	list-style-type: none;
	margin: 10px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.company_images .ci_thumbnails > li {
	margin: 0;
	margin-left: 10px;
	padding: 0;
	width: calc((100% - 20px) / 3);
	border: 1px solid #D2D2D2;
	height: 64px;
	transition: border-color 0.1s linear;
	cursor: pointer;
}
.company_images .ci_thumbnails > li:nth-child(n+4) {
	margin-top: 10px;
}
.company_images .ci_thumbnails > li:nth-child(3n+1) {
	margin-left: 0;
}

.company_images .ci_thumbnails > li.selected,
.company_images .ci_thumbnails > li:hover {
	border-color: #ED6103;
}
.company_images .ci_thumbnails > li .canvas {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.company_images .ci_thumbnails > li:first-child {
	margin-left: 0;
}

/* movie */
.company_images .ci_thumbnails > li.movie {
	position: relative;
}
.company_images .ci_thumbnails > li.movie span.play {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.3);
	background-image: url(../img/ico_play.svg);
	background-repeat: no-repeat;
	background-size: 32px;
	background-position: center;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 950px) and (min-width : 768px) {
	/* .company_images .ci_preview {
		height: calc(245px * 0.8);
	}
	.company_images .ci_thumbnails > li {
		height: calc(64px * 0.8);
	} */
}
@media screen and (max-width : 767px) {}

/* company_info
------------------------------------------------------------------- */
.company_info {
	margin: 32px 0 0;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
}
.company_info h2 {
	margin: 0;
	padding: 14px 16px 12px;
	font-size: 14px;
	border-radius: 8px 8px 0 0;
	background-color: #F8F8F8;
	border-bottom: 1px solid #e8e8e8;
}
.company_info table {
	margin: 12px auto;
	width: calc(100% - 48px);
	border-top: 0;
}
.company_info table th,
.company_info table td {
	border-left: 0;
	padding: 12px 0;
	border-color: #e8e8e8;
	font-size: 14px;
	font-weight: bold;
}
.company_info table tbody tr:last-child th,
.company_info table tbody tr:last-child td {
	border-bottom: 0;
}
.company_info table th {
	width: 102px;
	background-color: transparent;
}
.company_info table td {
	width: auto;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.company_info {
		margin: 32px auto 0;
		width: calc(100% - 40px);
	}
	.company_info h2 {
		padding: 12px 16px 13px;
		font-size: 14px;
	}
	.company_info table {
		width: calc(100% - 32px);
		margin: 4px auto;
	}
}

/* company_status_list
------------------------------------------------------------------- */
.company_status_list {
	margin: 32px 0 0;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
}
.company_status_list h2 {
	margin: 0;
	padding: 14px 16px 12px;
	font-size: 14px;
	border-radius: 8px 8px 0 0;
	background-color: #F8F8F8;
}
.company_status_list ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.company_status_list ul > li {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 21px 16px 20px;
	width: 100%;
	border-top: 1px solid #E8E8E8;
}
.company_status_list ul > li span {
	font-weight: bold;
	line-height: 1;
}
.company_status_list ul > li span.status {
	display: inline-block;
	padding: 0 8px;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	border-radius: 4px;
}
.company_status_list ul > li span.status.before { background-color: #FFAB00; }
.company_status_list ul > li span.status.offer { background-color: #ED6103; }
.company_status_list ul > li span.status.operating { background-color: #3092A7; }
.company_status_list ul > li span.status.closed { background-color: #6E6E6E; }
.company_status_list ul > li span.num {
	margin-left: auto;
	font-size: 20px;
}
.company_status_list ul > li span.unit {
	font-size: 14px;
	height: 20px;
	line-height: 24px;
}
.company_status_list ul > li.more {
	padding: 0;
}
.company_status_list ul > li.more .mod_btn {
	border: 0;
	height: 64px;
	line-height: 63px;
}

@media screen and (min-width : 768px) {
	.company_status_list ul {
		display: flex;
		flex-wrap: wrap;
	}
	.company_status_list ul > li {
		width: 50%;
	}
	.company_status_list ul > li:nth-child(2n) {
		border-left: 1px solid #e8e8e8;
	}
	.company_status_list ul > li.more {
		width: 100%;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.company_status_list {
		width: calc(100% - 40px);
		margin: 16px auto 0;
	}
	.company_status_list h2 {
		padding: 12px 16px 13px;
		font-size: 14px;
	}
	.company_status_list ul > li {
		width: 50%;
		padding: 16px;
	}
	.company_status_list ul > li:nth-child(2n) {
		border-left: 1px solid #e8e8e8;
	}
	.company_status_list ul > li.more {
		width: 100%;
	}
	.company_status_list ul > li span.status:before {
		top: 6px;
	}
}

/* .company_images popup
------------------------------------------------------------------- */
.company_images .ci_thumbnails > li div.popup {
	display: none;
	position: fixed;
	top: 5%;
	left: 5%;
	width: 90%;
	height: 90%;
	z-index: 5600;
}
.company_images .ci_thumbnails > li div.popup .inbox {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	margin: 0 auto;
}
.company_images .ci_thumbnails > li.img div.popup .inbox img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	opacity: 1;
}
.company_images .ci_thumbnails > li.movie div.popup .inbox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.company_images .ci_thumbnails > li div.popup.on {
	display: block;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
	animation-name: showpopup;
}
.company_images .ci_thumbnails > li .popup a.btn-close {
	position: absolute;
	top: -100px;
	right: 0;
	width: 84px;
	height: 84px;
	border: 0;
	background: url(../img/ico_movie_close_w.svg) no-repeat top left;
	background-size: 84px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.company_images .ci_thumbnails > li div.popup {
		top: 200px;
		left: 10%;
		margin-left: 0;
		width: 80%;
	}
	.company_images .ci_thumbnails > li .popup a.btn-close {
		top: -64px;
		width: 48px;
		height: 48px;
		background-size: 48px;
	}
}

@keyframes showpopup {
	0% { transform: translateY(10px); }
	100% { transform: translateY(0); }
}


/* .company_grid .mod_tab
------------------------------------------------------------------- */
.company_grid .mod_tab .mt_tabs_wrap {
	background-color: #ED6103;
	border-radius: 8px 8px 0 0;
	padding: 0 48px;
	margin-bottom: 0;
	border: 0;
}
.company_grid .mod_tab .mt_tabs {}
.company_grid .mod_tab .mtt_btn {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 20px 0;
}
.company_grid .mod_tab .mtt_btn.active {
	font-weight: bold;
}
.company_grid .mod_tab .mt_bar {
	height: 4px;
	border-radius: 4px;
	background-color: #fff;
}

@media screen and (min-width : 768px) {
	.company_grid .mod_tab .mtt_btn:not(.active):hover {
		font-weight: bold;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 980px) {
	.mod_tab .mt_tab + .mt_tab {
		margin-left: 20px;
	}
}
@media screen and (max-width : 767px) {
	.company_grid .mod_tab .mt_tabs_wrap {
		padding: 0 16px;
		border-radius: 0;
	}
	.company_grid .mod_tab .mtt_btn {
		font-size: 14px;
		padding: 15px 0;
	}
}

/* .mt_contents
------------------------------------------------------------------- */
.mod_tab .mt_contents {
	border: 1px solid #e8e8e8;
}
.mod_tab .mtc_content {
	padding: 24px;
}
.mtc_content h3 {
	font-size: 16px;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.mod_tab .mt_contents.inner {
		padding: 0;
	}
	.mod_tab .mtc_content {
		padding: 20px;
	}
	.mtc_content h3 {
		font-size: 16px;
		margin-bottom: 20px;
	}
}

/* .company_nums
------------------------------------------------------------------- */
.company_nums {
	list-style-type: none;
	background-color: #FDF1E8;
	padding: 12px;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.company_nums .c_item {
	margin: 0;
	padding: 20px 16px;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
}
.company_nums dl {
	margin: 0;
	display: flex;
	align-items: center;
	width: 100%;
}
.company_nums dl:after {
	display: none;
}
.company_nums dl dt,
.company_nums dl dd {
	float: none;
	width: auto;
	margin: 0;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
}
.company_nums dl dt {}
.company_nums dl dd {
	display: flex;
	align-items: flex-end;
	margin-left: auto;
	font-size: 18px;
	color: #4c4c4c;
}
.company_nums dl dd:before {
	display: none;
}

/* otherlabel */
.company_nums dl dd .otherlabel {
	margin-left: 2px;
	font-size: 10px;
}
/* taxlabel */
.company_nums dl dd .taxlabel {
	margin-left: 3px;
	margin-bottom: 2px;
	color: #626262;
	font-size: 10px;
}

/* .c_item.vertical */
.company_nums .c_item.vertical dl.actual,
.company_nums .c_item.vertical dl.actual dd,
.company_nums .c_item.vertical dl.actual dd .taxlabel {
	color: #ED6103;
}

/* company_nums_desc */
.company_nums_desc {
	font-size: 14px;
	line-height: 1.6;
	color: #626262;
	margin-bottom: 4px;
}

@media screen and (min-width : 768px) {}
@media screen and (min-width : 1201px) {
	.company_nums .c_item {
		width: calc((100% - 24px) / 3);
	}

	/* .c_item.vertical */
	.company_nums .c_item.vertical {
		padding: 24px 16px;
	}
	.company_nums .c_item.vertical dl {
		flex-direction: column;
		gap: 12px;
	}
	.company_nums .c_item.vertical dl + dl {
		margin-top: 18px;
	}
	.company_nums .c_item.vertical dl dt {
		font-size: 14px;
	}
	.company_nums .c_item.vertical dl dd {
		margin: 0;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 1200px) {
	.company_nums {
		flex-direction: column;
		gap: 8px;
		margin-left: -8px;
		width: calc(100% + 16px);
		max-width: calc(100% + 16px);
	}
	.company_nums dl dt {
		font-size: 14px;
	}

	/* otherlabel */
	.company_nums dl dd .otherlabel {
		margin-bottom: 1px;
	}
	/* taxlabel */
	.company_nums dl dd .taxlabel {}

	/* .c_item.vertical */
	.company_nums .c_item.vertical dl + dl {
		margin-top: 13px;
		padding-top: 13px;
		border-top: 1px solid #e8e8e8;
	}

	/* company_nums_desc */
	.company_nums_desc {
		font-size: 14px;
		margin-bottom: 0;
	}
}
@media screen and (max-width : 767px) {}

/* evaluation_intro
------------------------------------------------------------------- */
.evaluation_intro {
	padding: 16px;
	background-color: #FDF1E8;
	border-radius: 8px;
	display: flex;
}
.evaluation_intro .e_title {
	background-color: #fff;
	padding: 16px 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
}
.evaluation_intro .e_txt {
	margin-left: 24px;
}
.evaluation_intro h3 {
	margin: 0;
	font-size: 16px;
	font-weight: bold;
}
.evaluation_intro p {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6111111111111112;
}
.evaluation_intro p strong {
	color: #ED6103;
}
.evaluation_intro p.small {
	margin-top: 4px;
	font-size: 12px;
	color: #8f8f8f;
	line-height: 1.6;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.evaluation_intro {
		flex-direction: column;
	}
	.evaluation_intro .e_title {
		width: 100%;
		justify-content: center;
		font-size: 14px;
		padding: 12px;
	}
	.evaluation_intro .e_txt {
		margin-top: 20px;
		margin-left: 0;
	}
	.evaluation_intro p {
		font-size: 16px;
		line-height: 1.625;
	}
	.evaluation_intro p.small {
		margin-top: 8px;
		font-size: 10px;
	}
}

/* evaluation
------------------------------------------------------------------- */
.evaluation {
	margin-top: 48px;
}
.evaluation + .evaluation {
	margin-top: 64px;
}
.evaluation h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 24px;
	padding-left: 14px;
	position: relative;
}
.evaluation h3:before {
	content: '';
	position: absolute;
	top: 0.42em;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #ED6103;
	border-radius: 50%;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.evaluation {
		margin-top: 27px;
	}
	.evaluation + .evaluation {
		margin-top: 24px;
	}
	.evaluation h3 {
		font-size: 16px;
		margin-bottom: 16px;
	}
}

/* evaluation_list
------------------------------------------------------------------- */
.evaluation_list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.evaluation_list .e_item {
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 24px 24px 28px;
}
.evaluation_list .e_title {
	margin: 0;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: bold;
}
.evaluation_list .e_txt {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #353535;
}
.evaluation_list .e_sublist {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style-type: none;
	margin: 0;
	margin-top: 12px;
	padding: 0;
}
.evaluation_list .e_sublist > li {
	margin: 0;
	border-radius: 24px;
	padding: 8px 14px;
	background-color: #F8F8F8;
	font-size: 15px;
	line-height: 1.5714;
}
.evaluation_list .e_sublist > li.checked {
	padding-left: 32px;
	position: relative;
	color: #ED6103;
	font-size: 14px;
	font-weight: bold;
}
.evaluation_list .e_sublist > li.checked:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 8px;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	/* background-size: 10px; */
	background-image: url(../img/company/ico_list_check_w.svg);
	background-color: #ED6103;
	border-radius: 50%;
}

@media screen and (min-width : 768px) {
	.evaluation_list .e_item {
		width: calc((100% - 24px) / 2);
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.evaluation_list {
		gap: 16px;
	}
	.evaluation_list .e_item {
		width: 100%;
		padding: 16px;
	}
	.evaluation_list .e_title {
		font-size: 16px;
	}
	.evaluation_list .e_txt {
		font-size: 14px;
	}
	.evaluation_list .e_sublist {
		margin-top: 8px;
	}
	.evaluation_list .e_sublist > li,
	.evaluation_list .e_sublist > li.checked {
		font-size: 12px;
	}
	.evaluation_list .e_sublist > li {
		padding: 5px 10px;
	}
	.evaluation_list .e_sublist > li.checked {
		padding: 6px 12px 6px 26px;
	}
	.evaluation_list .e_sublist > li.checked:before {
		left: 6px;
		width: 16px;
		height: 16px;
	}
}

/* company_comment
------------------------------------------------------------------- */
.mod_tab .mtc_content[data-tab-id="comment"] {
	padding: 40px;
}
.company_comment {}
.company_comment > *:first-child { margin-top: 0; }
.company_comment > *:last-child { margin-bottom: 0; }

.company_comment h2,
.company_comment h3 {
	font-size: 16px;
	margin-top: 38px;
	margin-bottom: 20px;
}
.company_comment p {
	font-size: 14px;
	margin-bottom: 20px;
}
.company_comment a:not(.mod_btn) {
	color: #ED6103;
}
.company_comment iframe {
	max-width: 100%;
}
.company_comment .mod_btn {
	height: auto;
	line-height: 1.625;
	padding: 14px;
	font-size: 16px;
	white-space: initial;
}

@media screen and (min-width : 768px) {}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.mod_tab .mtc_content[data-tab-id="comment"] {
		padding: 20px;
	}
}

/* company_service_section
------------------------------------------------------------------- */
.mod_tab .mtc_content[data-tab-id="related"] {
	padding: 28px;
}
.company_service_section {}
.company_service_section h3 {
	margin: 0;
	margin-bottom: 16px;
	font-size: 14px;
}
.company_service_box {
	width: 100%;
	display: flex;
	align-items: center;
	background-color: #F8F8F8;
	border-radius: 8px;
	padding: 12px;
	padding-right: 24px;
}
.company_service_box .cs_img {
	width: 128px;
	height: 72px;
	border-radius: 8px;
	flex-shrink: 0;
	background-color: #fff;
}
.company_service_box .cs_img img {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}
.company_service_box .cs_name {
	flex-grow: 1;
	margin-left: 12px;
	font-size: 18px;
	font-weight: bold;
}
.company_service_box .mod_btn {
	flex-shrink: 0;
	white-space: nowrap;
	margin-left: auto;
	font-size: 14px;
}
.company_service_empty {
	min-height: 96px;
	margin: 0;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	background-color: #f8f8f8;
	border-radius: 8px;
}

@media screen and (min-width : 768px) {
	.company_service_box .mod_btn:hover {
		background-color: transparent;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.mod_tab .mtc_content[data-tab-id="related"] {
		padding: 20px;
	}
	.company_service_section h3 {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.company_service_box {
		flex-wrap: wrap;
		padding: 12px;
	}
	.company_service_box .cs_img {
		width: 103px;
		height: 58px;
	}
	.company_service_box .cs_name {
		margin: 0;
		width: calc(100% - 103px);
		margin-left: 0;
		padding-left: 16px;
		font-size: 16px;
		line-height: 1.35;
	}
	.company_service_box .mod_btn {
		display: block;
		width: 100%;
		font-size: 12px;
		padding-top: 12px;
		margin-top: 16px;
		border-top: 1px solid #e8e8e8;
	}
	.company_service_empty {
		min-height: 72px;
		font-size: 14px;
	}
}

/* company_news_section
------------------------------------------------------------------- */
.company_news_section {
	margin-top: 38px;
}
.company_news_section h3 {
	margin: 0;
	margin-bottom: 16px;
	font-size: 14px;
}
.company_news {
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #e8e8e8;
}
.company_news .c_item {
	margin: 0;
	padding: 10px 16px 11px;
	border-bottom: 1px solid #e8e8e8;
}
.company_news .c_item .c_date {
	color: #797979;
	font-size: 12px;
	font-weight: bold;
}
.company_news .c_item .c_title {
	margin: 0;
	margin-left: 20px;
	font-size: 14px;
	font-weight: bold;
}
.company_news .c_item .c_title a {
	text-decoration: none;
}
.company_news_empty {
	min-height: 96px;
	margin: 0;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	background-color: #f8f8f8;
	border-radius: 8px;
}

@media screen and (min-width : 768px) {
	.company_news .c_item .c_title a {
		transition: color 0.07s linear;
	}
	.company_news .c_item .c_title a:hover {
		color: #ED6103;
	}
}
@media screen and (max-width : 1364px) {}
@media screen and (max-width : 767px) {
	.company_news_section {
		margin-top: 20px;
	}
	.company_news_section h3 {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.company_news .c_item {
		padding: 8px;
		display: flex;
		flex-direction: column;
	}
	.company_news .c_item .c_date {
		font-size: 10px;
	}
	.company_news .c_item .c_title {
		margin-left: 0;
		margin-top: -1px;
	}
	.company_news_empty {
		min-height: 72px;
		font-size: 14px;
	}
}