@charset "UTF-8";

/*
---------------------------------------
一覧
---------------------------------------
*/

.result.list .page-header::before {
	content: '';
	position: absolute;
  	right: max(calc((100vw - 1200px) / 2) - -53px,20px);
  	top: 366px;
	display: block;
	width: min(24.35vw,302px);
	height: auto;
	aspect-ratio: 302 / 274;
	background: url(../img/result/main_img.png) center / contain no-repeat;
  	transform: translateY(-50%);
}

.result-cat-nav {
	padding: 5rem 0 0;
}

.result-cat-nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem 3rem;
	width: max-content;
	max-width: 100%;
	height: auto;
	background: #fafafa;
	border: solid 2px #ebebeb;
	border-radius: 30px;
	margin: 0 auto;
	padding: 1.1rem 5rem;
}

.result-cat-nav-list .cat-item a {
	display: block;
	position: relative;
	border-radius: 30px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	padding: .3rem 2rem;
	transition: .2s;
}


.result-cat-nav-list .cat-item a::after {
	content: "";
	position: absolute;
	bottom: -1.2rem;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	background: #e74921;
	width: 20px;
	height: 4px;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	transition: .2s;
}

.result-cat-nav-list .cat-item a:hover {
	color: #e74921;
}

.result-cat-nav-list .cat-item a:hover::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

.result-cat-nav-list .cat-item.current-cat a {
	background: #222;
	color: #fff;
	pointer-events: none;
}

@media screen and (max-width: 750px) {
	.result.list .page-header::before {
        top: 67.8vw;
		right: 1.25vw;
		width: 27vw;
	}

	.result-cat-nav {
		padding: 20px 0 0;
	}

	.result-cat-nav-list {
		position: relative;
		flex-wrap: nowrap;
		gap: 8px;
		width: auto;
		height: auto;
		background: none;
		border: none;
		border-radius: 0;
		overflow-x: scroll;
		padding: 5px 20px;
	}

	.result-cat-nav-list::before {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		display: block;
		width: 40px;
		height: 100%;
		background: linear-gradient(to right, transparent, #fff);
		transition: .2s;
		pointer-events: none;
	}

	.result-cat-nav-list.is-scroll::before {
		opacity: 0;
	}

	.result-cat-nav-list .cat-item a {
		position: static;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #ebebeb;
		border-radius: 30px;
		min-width: 80px;
		height: 32px;
		font-size: 12px;
		padding: 0 15px;
		white-space: nowrap;
	}

	.result-cat-nav-list .cat-item.all a {
		min-width: 62px;
	}
}

/*
---------------------------------------
詳細
---------------------------------------
*/

.sec-feature {
	margin-top: 8rem;
}

.sec-feature-head {
	flex-wrap: nowrap;
}

.sec-feature-head .client {
	flex: 1;
	min-width: 0;
}

.sec-feature-head .client-business {
	width: max-content;
	max-width: 100%;
	background: #fff;
	border-radius: 5px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1rem;
	padding: .8rem 1.5rem;
}

.sec-feature-head .client-name {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.sec-feature-head .client-link {
	display: block;
	color: #e74921;
	font-family: "Outfit", sans-serif;;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .08em;
	margin-top: 1.2rem;
}

.sec-feature-head .client-link::after {
	content: '\e90e';
	display: inline-block;
  	font-family: 'icomoon';
	font-size: 1.6rem;
	margin-left: .5em;
	vertical-align: 1px;
}

.sec-feature-head .issue {
	flex: 0 0 50%;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-left: 5rem;
}

.sec-feature .ss {
	margin-top: 4rem;
}

.sec-feature .ss img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.site-info-ttl {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.sec-services {
	margin-top: 7rem;
	padding: 0 20px;
}

.sec-services .site-info-ttl::before {
	content: '';
	display: inline-block;
	width: 2em;
	height: 2em;
	background: url(../img/result/icon-ttl-service.png) left center / 36px no-repeat;
	margin-right: .4em;
	vertical-align: -14px;
}

.sec-services .service-list {
	display: flex;
	gap: .6rem;
	margin-top: 1.8rem;
}

.sec-services .service-list-item {
	position: relative;
	flex: 1;
}

.sec-services .service-list-item img {
	width: 100%;
	aspect-ratio: 195 / 210;
}

.sec-services .service-name {
	position: absolute;
	left: 0;
	bottom: 1.7rem;
	width: 100%;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.sec-images {
	margin-top: 7.2rem;
	padding: 0 20px;
}

.sec-images .inner {
	gap: 4rem;
	justify-content: center;
}

.sec-images .images-subsec-pc,
.sec-images .images-subsec-sp {
	flex: 1;
}

.sec-images .images-subsec-pc .site-info-ttl::before {
	content: '';
	display: inline-block;
	width: 2em;
	height: 2em;
	background: url(../img/result/icon-ttl-pc.png) left center / 3.7rem no-repeat;
	margin-right: .4em;
	vertical-align: -1.6rem;
}

.sec-images .images-subsec-sp .site-info-ttl::before {
	content: '';
	display: inline-block;
	width: 1.6em;
	height: 2em;
	background: url(../img/result/icon-ttl-sp.png) left center / auto 4rem no-repeat;
	vertical-align: -1.6rem;
}

.sec-images .image-list {
	display: grid;
	gap: 2rem;
	margin-top: 2.4rem;
}

.sec-images .images-subsec-pc .image-list {
	grid-template-columns: 1fr;
}

.sec-images:not(:has(.images-subsec-sp)) .images-subsec-pc .image-list {
	grid-template-columns: 1fr 1fr;
}

.sec-images .images-subsec-sp .image-list {
	grid-template-columns: 1fr 1fr;
}

.sec-images:not(:has(.images-subsec-pc)) .images-subsec-sp .image-list {
	grid-template-columns: repeat(4,1fr);
}

.sec-images .ss-image {
	border: solid 2px #000;
}

.sec-images .ss-image img {
	display: block;
	width: 100%;
	height: auto;
}

.sec-implement {
	position: relative;
	margin-top: 6.8rem;
	padding: 0 20px;
}

.sec-implement::before {
	content: '';
	position: absolute;
	top: -2px;
	left: min(74.06vw,calc(50vw + 409px));
	display: block;
	width: min(356px,20.94vw);
	aspect-ratio: 356 / 313;
	background: #0f91ce;
	mask: url(../img/common/deco1.svg) center / contain no-repeat;
	transform: rotate(-12.35deg);
}

.sec-implement .site-info-ttl::before {
	content: '';
	display: inline-block;
	width: 1.6em;
	height: 2em;
	background: url(../img/result/icon-ttl-implement.png) left center / 3.8rem no-repeat;
	margin-right: .5em;
	vertical-align: -1.6rem;
}

.implement-box-inner {
	counter-reset: implement-item;
	position: relative;
	background: #fff;
	border: solid 8px #fafafa;
	border-radius: 15px;
	margin-top: 2.7rem;
	padding: 4.2rem 5.2rem 4.4rem 5.2rem;
}

.implement-box-inner::before {
	content: '';
	position: absolute;
	top: -1.5rem;
	left: 0;
	right: 0;
	display: block;
	width: 12.3rem;
	height: 2rem;
	background: url(../img/common/clip.svg) center / contain no-repeat;
	margin: auto;
}

.implement-item {
	counter-increment: implement-item;
}

.implement-item + .implement-item {
	margin-top: 3rem;
}

.implement-item .ttl {
	position: relative;
	background: #fff5f2;
	border-radius: 10px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 2.2rem;
	padding: 1.9rem 2rem 2rem 9.3rem;
}

.implement-item .ttl::before {
	content: counter(implement-item, decimal-leading-zero) '.';
	position: absolute;
	left: 2.8rem;
	top: 0;
	bottom: 0;
	display: block;
	height: 1em;
	color: #e74921;
	font-family: "Outfit", sans-serif;
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1;
	margin: auto;
}

.implement-item .txt {
	flex: 1;
	font-weight: 500;
	letter-spacing: 0;
}

.implement-item .img {
	flex: 0 0 280px;
	margin-left: 3rem;
}

.implement-item .img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.result-service-bnr {
	margin: 7rem auto 0;
	padding: 0 20px;
}

.result-service-bnr__link {
	position: relative;
	display: block;
	width: 54rem;
	height: 15rem;
	background: #e74921 url(../img/service-1/service_bnr_img02.png) top -24.6rem left -20.5rem / 37rem 32.8rem no-repeat;
	border-radius: 15px;
	box-shadow: 0 4px 0 rgba(0,0,0,.06);
	color: #fff;
	margin: auto;
	padding: 4.1rem 0 0 4.2rem;
	transition: .3s;
}

.result-service-bnr__link:hover {
	background-color: #c93f1d;
}

.result-service-bnr__link::after {
	content: '';
	position: absolute;
	top: -.6rem;
	right: 3.2rem;
	display: block;
	width: 16.1rem;
	height: 16.3rem;
	background: url(../img/result/bnr_illust.png) center / contain no-repeat;
	pointer-events: none;
}

.result-service-bnr__ttl {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
	font-size: 3.6rem;
    letter-spacing: 0.05em;
	line-height: 1;
	padding-left: .5rem;
}

.result-service-bnr__ttl::after {
	content: '';
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background: url(../img/common/service_bnr_arrow_orange.png) center / contain no-repeat;
	margin-left: 1rem;
	vertical-align: -.1em;
}

.result-service-bnr__desc {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0;
    line-height: 1.5;
    margin-top: .6rem;
}

.single-post-nav {
	margin-top: 7rem;
}

.sec-works {
	margin-top: 7rem;
	margin-bottom: 12rem;
	overflow: hidden;
}

.sec-works .works-ttl {
	position: relative;
	padding: 8rem 0 0;
	z-index: 0;
}

.sec-works .works-ttl::before {
	content: 'WORKS';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 16rem;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1;
	text-align: center;
	z-index: -1;
}

.sec-works .works-ttl .en {
	color: #e74921;
	font-family: "Outfit", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.5;
	margin-bottom: .8rem;
	text-align: center;
}

.sec-works .works-ttl .ja {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.works-slider {
	padding: 2rem 0;
	margin-top: 2.2rem;
}

.works-slider .slick-list {
	overflow: visible;
}

.works-slider .slick-track {
	display: flex;
	align-items: stretch;
	margin: auto;
}

.works-slider .slick-arrow {
	width: 48px;
	height: 48px;
	background: #222;
	border-radius: 50%;
	transform: translateY(-27%);
	z-index: 1;
}

.works-slider .slick-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #fff;
	mask: url(../img/common/arrow-right2.svg) center / 21px no-repeat;
	opacity: 1;
}

.works-slider .slick-prev {
	left: -48px;
}

.works-slider .slick-prev::before {
	transform: rotate(180deg);
}

.works-slider .slick-next {
	right: -48px;
}

.works-slide-item {
	margin: 0 2rem;
	height: auto;
}

.works-slide-item .link {
	display: block;
	height: 100%;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: .2s;
}

.works-slide-item .link:hover {
	box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.works-slide-item .img {
	width: 100%;
}

.works-slide-item .img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 360 / 203;
	object-fit: cover;
}

.works-slide-item .img img.default {
	border-bottom: solid 1px #ebebeb;
}

.works-slide-item .works-txtbox {
	padding: 2.4rem 3rem 3.3rem;
}

.works-slide-item .works-txtbox .ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: 3em;
	overflow: hidden;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	padding-right: .5em;
	transition: .2s;
}

.works-slide-item .link:hover .ttl {
	color: #e74921;
}

.works-slide-item .works-txtbox .client {
	width: 100%;
	color: #666;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 1.5rem;
	text-align: right;
	white-space: nowrap;
}

.works-slide-item .works-txtbox .client .name {
	display: inline-block;
	max-width: calc(100% - 1em);
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}

.works-slide-item .works-txtbox .client .sama {
	display: inline-block;
	width: 1em;
	vertical-align: middle;
}

.result.detail .service_seminar_banner {
	margin-top: 13rem;
}

.result.detail .contact-bnr {
	margin-top: 12rem;
}

@media screen and (max-width: 1240px) {
	.sec-feature-head {
		padding: 0 20px;
	}
}

@media screen and (max-width: 960px) {
	.sec-feature {
		margin-top: 14rem;
	}
}

@media screen and (max-width: 750px) {

	.sec-feature {
		position: relative;
		margin-top: 48px;
	}

	.sec-feature-head {
		display: block;
	}

	.sec-feature-head .client {
		width: 100%;
	}

	.sec-feature-head .client-business {
		border-radius: 2.5px;
		font-size: 16px;
		margin-bottom: 12px;
		padding: 8px 15px;
	}

	.sec-feature-head .client-name {
		font-size: 24px;
	}

	.sec-feature-head .client-link {
		font-size: 12px;
		margin-top: 15px;
	}

	.sec-feature-head .issue {
		flex: auto;
		font-size: 14px;
		line-height: calc(52/28);
		margin-left: 0;
		margin-top: 28px;
	}

	.sec-feature .ss {
		margin-top: 33px;
	}

	.sec-feature .ss img {
		border-radius: 0;
	}

	.site-info-ttl {
		font-size: 18px;
	}

	.sec-services {
		margin-top: 34px;
	}

	.sec-services .site-info-ttl::before {
		background-size: 27px;
		margin-right: .2em;
		vertical-align: -11px;
	}

	.sec-services .service-list {
		display: grid;
		grid-template-columns: repeat(3,1fr);
		gap: 2.5px;
		margin-top: 20px;
	}

	.sec-services .service-name {
		bottom: 7px;
		font-size: 12px;
	}

	.sec-images {
		margin-top: 36px;
	}

	.sec-images .inner {
		gap: 35px;
	}

	.sec-images .images-subsec-pc,
	.sec-images .images-subsec-sp {
		flex: auto;
		width: 100%;
	}

	.sec-images .images-subsec-pc .site-info-ttl::before {
		background-size: 28px;
		margin-right: .2em;
	}

	.sec-images .images-subsec-sp .site-info-ttl::before {
		background-size: auto 29px;
	}

	.sec-images .image-list {
		gap: 10px;
		margin-top: 15px;
	}

	.sec-images:not(:has(.images-subsec-sp)) .images-subsec-pc .image-list {
		grid-template-columns: 1fr;
	}

	.sec-images:not(:has(.images-subsec-pc)) .images-subsec-sp .image-list {
		grid-template-columns: 1fr 1fr;
	}

	.sec-images .ss-image {
		border-width: 1px;
	}

	.sec-implement {
		margin-top: 28px;
	}

	.sec-implement::before {
		top: -2px;
		left: calc(50vw + 52px);
		width: 178px;
	}

	.sec-implement .site-info-ttl::before {
		background-size: 29px;;
	}

	.implement-box-inner {
		border: solid 4px #ebebeb;
		margin-top: 20px;
		padding: 29px 0 23px 0;
	}

	.implement-box-inner::before {
		top: -5px;
		width: 76.5px;
		height: 12.5px;
	}

	.implement-item .flex {
		flex-direction: column-reverse;
		padding: 0 20px;
	}

	.implement-item .ttl {
		border-radius: 0;
		font-size: 16px;
		margin-bottom: 2.2rem;
		padding: 20px 10px 21px 66px;
	}

	.implement-item .ttl::before {
		left: 20px;
		font-size: 20px;
		letter-spacing: .1em;
	}

	.implement-item .txt {
		flex: auto;
		font-size: 14px;
		line-height: calc(52/28);
	}

	.implement-item .img {
		flex: auto;
		width: 100%;
		margin-left: 0;
		margin-bottom: 10px;
	}

	.implement-item .img img {
		border-radius: 7.5px;
	}

	.result-service-bnr {
		margin-top: 70px;
	}

	.result-service-bnr__link {
		width: 100%;
		height: 120px;
		border-radius: 7.5px;
		box-shadow: 0 2px 0 rgba(0,0,0,.06);
		padding: 30px 2rem 0;
	}

	.result-service-bnr__link::after {
		top: -20px;
		right: -8px;
		width: 107px;
		height: 108px;
	}

	.result-service-bnr__ttl {
		font-size: 28px;
		padding-left: 2px;
	}

	.result-service-bnr__ttl::after {
		width: 30px;
		height: 30px;
		margin-left: 10px;
		vertical-align: -.25em;
	}

	.result-service-bnr__desc {
		font-size: 13px;
		margin-top: 6px;
	}

	.single-post-nav {
		margin-top: 70px;
	}

	.sec-works {
		margin-top: 70px;
		margin-bottom: 14vw;
	}

	.sec-works .works-ttl {
		padding-top: 22px;
	}

	.sec-works .works-ttl::before {
		font-size: 70px;
	}

	.sec-works .works-ttl .en {
		font-size: 14px;
		margin-bottom: 2px;
	}

	.sec-works .works-ttl .ja {
		font-size: 24px;
	}

	.works-slider {
		padding: 10px 0;
		margin-top: 20px;
	}

	.sec-works .slick-slider {
		margin-bottom: 50px;
	}

	.works-slider .slick-arrow {
		width: 35px;
		height: 35px;
		transform: translateY(-50%);
	}

	.works-slider .slick-arrow::before {
		mask-size: 16px;
	}

	.works-slider .slick-prev {
		left: 20px;
	}

	.works-slider .slick-next {
		right: 20px;
	}

	.works-slider .slick-dots {
		width: 100%;
		bottom: -40px;
	}

	.works-slider .slick-dots li {
		width: 24px;
		height: 24px;
		margin: 0 1px;
	}

	.works-slider .slick-dots li button {
		position: relative;
		display: block;
		width: 24px;
		height: 24px;
	}

	.works-slider .slick-dots li button:before {
		top: 50%;
		left: 50%;
		width: 7px;
		height: 7px;
		background: #aaa;
		transform: translate(-50%,-50%);
	}

	.works-slider .slick-dots li.slick-active button::before {
		background-color: #e74921;
	}

	.works-slide-item {
		margin: 0 40px;
	}

	.works-slide-item .link {
		border-radius: 12px;
	}

	.works-slide-item .link:hover {
		box-shadow: 0 1px 10px rgba(0,0,0,.1);
	}

	.works-slide-item .works-txtbox {
		padding: 20px 25px 27px;
	}

	.works-slide-item .works-txtbox .ttl {
		font-size: 16px;
	}

	.works-slide-item .works-txtbox .client {
		font-size: 12px;
		margin-top: 15px;
	}

    .result.detail .contact-bnr {
        margin-top: 14vw;
    }
}