@charset "utf-8";
/* CSS Document */

#lower-image {
	background: url(../../images/main_image.jpg) center top;
	background-size: cover;
}


:where(.lower-contents .main-contents) h2 {
	margin-bottom: 1em;
	font-weight: bold;
	color: var(--color-link);
}

:where(.lower-contents .main-contents) h3 {
	color: inherit;
	margin-bottom: 1em;
}

@media screen and (min-width: 1280px) {
	:where(.contents-area) section h3 {
		font-size: 1.7rem;
	}
}


/* -------------------------------------------------------------------------------------------- */


.case {
	counter-reset: casenum;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.case__item {
	
}

.case__img {
	width: 80%;
	margin: auto;
}

.case__img img {
	display: block;
	max-width: 180px;
	width: 100%;
	margin: auto;
}

.case__contents {
	text-align: justify;
}

.case__ttl {
	text-align: center;
}

.case__ttl::before {
	content: "Case " counter(casenum, decimal-leading-zero);
	counter-increment: casenum;
	display: block;
	width: fit-content;
	padding: 6px 12px;
	margin: 0 auto 8px;
	line-height: 1;
	font-size: 1.2rem;
	border-radius: 15px;
	color: #fff;
	background-color: var(--color-link);
}

@media (min-width: 768px) {
	.case {
		flex-direction: row;
	}
	
	.case__item {
		flex: 1;
	}
	
	.case__img {
		width: 100%;
		margin: auto;
	}
}

@media (min-width: 1600px) {
	.case {
		gap: 60px;
	}
}


/* -------------------------------------------------------------------------------------------- */


.feature {
	counter-reset: casenum;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.feature__item {
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.feature__img {
	position: relative;
	width: 80%;
	margin: 25px auto;
}

.feature__img img {
	display: block;
	width: 100%;
	margin: auto;
}

.feature__img figcaption {
	position: absolute;
	inset: auto -8px -8px auto;
	display: block;
	width: fit-content;
	padding: 6px 10px 2px;
	background-color: #fff;
	border: 1px dashed;
	border-right: none;
	border-bottom: none;
	border-radius: 5px 0 0 0;
	text-align: right;
	line-height: 1.6;
	z-index: 2;
	font-size: 1.1rem;
}

.feature__contents {
	margin-top: 25px;
	text-align: justify;
}

.feature__ttl {
	text-align: center;
}

.feature__ttl::before {
	content: "Feature " counter(casenum, decimal-leading-zero);
	counter-increment: casenum;
	display: block;
	width: fit-content;
	padding: 6px 12px;
	margin: 0 auto 8px;
	line-height: 1;
	font-size: 1.2rem;
	border-radius: 15px;
	color: #fff;
	background-color: var(--color-link);
}

@media (min-width: 768px) {
	.feature {
		flex-direction: row;
		gap: 40px;
	}
	
	.feature__item {
		flex: 1;
	}
	
	.feature__img {
		width: 100%;
	}
}


@media (min-width: 1600px) {
	.feature {
		gap: 60px;
	}
}


/* -------------------------------------------------------------------------------------------- */


.interviewList {
	counter-reset: interviewnum;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

@media (min-width: 768px) {
	.interviewList {
		
	}
}

@media (min-width: 1280px) {
	.interviewList {
		
	}
}


.interviewList__item {
	position: relative;
	inset: 0;
	width: 100%;
}

.interviewList__item::before {
	position: absolute;
	content: "";
}

@media (min-width: 768px) {
	.interviewList__item {
		width: calc(50% - 20px);
	}
}

@media (min-width: 1280px) {
	.interviewList__item {
		width: calc(25% - 23px);
	}
}



.interviewList__anchor {
	position: relative;
	display: flex;
	align-items: center;
	opacity: 0.8;
	border-radius: 5px;
}

.interviewList__anchor::after {
	position: absolute;
	inset: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	opacity: 0.15;
	border-radius: 5px;
	pointer-events: none;
}

a.interviewList__anchor {
	opacity: 1;
	text-decoration: none;
	filter: none;
	box-shadow: 8px 8px 16px rgba(0,0,0,.1), 0 0px 13px 0px rgba(0,0,0,0.05);
}

a.interviewList__anchor::before {
	background-color: var(--color-link);
}

a.interviewList__anchor::after {
	border: 1px solid;
	transition: 0.2s ease;
	opacity: 0.2;
}

a:hover.interviewList__anchor {
	background-color: var(--color-link);
	color: #fff;
	box-shadow: 1px 1px 3px rgba(0,0,0,.2);
}

a.interviewList__anchor:hover::after {
	border-color: var(--color-link);
	opacity: 1;
}

@media (min-width: 1280px) {
	.interviewList__anchor {
		flex-direction: column;
	}
}


.interviewList__img {
	width: 40%;
	max-width: 100px;
	background-color: var(--color-link);
	border-radius: 5px;
	overflow: hidden;
}

a .interviewList__img {
	border-radius: 5px 0 0 5px;
}

.interviewList__img img {
	display: block;
	width: 100%;
	transition: 0.6s cubic-bezier(.17,.84,.44,1);
}

a:hover .interviewList__img img {
	opacity: 0.7;
	transform: scale(1.05);
}


.interviewList__ttl {
	display: flex;
	align-items: baseline;
	flex-grow: 1;
	width: 60%;
	padding: 5px 15px;
	box-sizing: border-box;
	line-height: 1.6;
	font-weight: bold;
	font-size: 90%;
	font-feature-settings: "palt";
}

.interviewList__ttl::before {
	content: counter(interviewnum, decimal-leading-zero) "";
	counter-increment: interviewnum;
	display: inline-block;
	line-height: 1;
	font-weight: bold;
	border-radius: 0;
	border-right: 1px solid;
	padding-right: 8px;
	margin-right: 8px;
}

a .interviewList__ttl {
	padding: 5px 15px;
}

a .interviewList__ttl::after {
	position: absolute;
	inset: auto 0 0 auto;
	display: flex;
	align-items: center;
	content: "詳しく見る";
	width: fit-content;
	margin-top: 5px;
	padding: 3px 10px;
	border-radius: 10px;
	background-color: #555;
	color: #fff;
	z-index: 1;
	font-size: 1.0rem;
	transform: translate(0.75em, 33.333%);
	transition: 0.2s cubic-bezier(.17,.84,.44,1);
	box-shadow: 10px 10px 20px rgba(0,0,0,.1);
}

a:hover .interviewList__ttl::after {
	transform: translate(1.5em, 33.333%);
	background-color: var(--color-link);
}

@media (min-width: 1280px) {
	.interviewList__img {
		max-width: 100%;
		width: 100%;
	}
	
	a .interviewList__img {
		border-radius: 5px 5px 0 0;
	}
	
	.interviewList__img img {
		
	}
	
	.interviewList__ttl {
		width: 100%;
		padding: 15px 0;
		font-size: inherit;
	}
	
	a .interviewList__ttl {
		padding: 15px 15px;
	}
}


/* -------------------------------------------------------------------------------------------- */


.flow {
	padding: 0;
	list-style: none;
	counter-reset: countnum;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.flow li {
	position: relative;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 25px 0;
	margin: 0 !important;
}

.flow li:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 16px;
	height: 16px;
	margin: auto;
	padding: 0 15px;
	z-index: 1;
	background: #fff url(/common/images/flow_arrow.png) center no-repeat;
	background-size: contain;
	transform: translateY(50%);
}

.flow > *:last-child:after {
	display: none !important;
}

.flow .ttl {
	display: flex;
	font-size: inherit;
	font-weight: normal;
}

.flow .ttl::before {
	content: counter(countnum);
	counter-increment: countnum;
	display: inline-block;
	width: 20px;
	margin-right: 10px;
	padding: 0 ;
	text-align: left;
	font-weight: bold;
	color: var(--color-link);
	flex-shrink: 0;
}


/* -------------------------------------------------------------------------------------------- */


.usecase {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 30px;
}

.usecase__item {
	display: flow-root;
	position: relative;
	margin: 0;
	padding-top: 30px;
	padding-left: 20px;
	box-sizing: border-box;
	border-top: 1px solid rgba(0,0,0,0.25);
	border-left: 1px solid rgba(0,0,0,0.25);
	font-feature-settings: "palt";
}

.usecase__img {
	position: relative;
	width: 33.333%;
	max-width: 100px;
	margin-left: 1em;
	float: right;
	z-index: 1;
}

.usecase__img img {
	display: block;
	width: 100%;
}

.usecase__contents {
	
}

.usecase__ttl {
	
}

@media (min-width: 768px) {
	.usecase {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
	}
	
	.usecase__item {
		max-width: calc(50% - 20px);
		padding: 40px 0 0 40px;
	}
}



.usecase__job {
	position: relative;
	margin: 20px 0;
	box-sizing: border-box;
	border-radius: 5px;
}

.usecase__job .ttl {
	margin-bottom: 0;
	font-size: 1.1rem;
	transform: translateY(-50%);
	color: #777;
}

.usecase__job .joblist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-weight: bold;
	font-size: 90%;
}

.usecase__job .joblist li {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 6px 14px 6px 10px;
	color: #fff;
	border-radius: 15px;
	line-height: 1;
	font-size: 1.2rem;
}

.joblist .icon svg {
	width: 16px;
	height: 16px;
	stroke-width: 1.75;
}

.joblist .ot {
	background-color: rgb(247, 126, 132);
}

.joblist .pt {
	background-color: rgb(74, 165, 221);
}

.joblist .st {
	background-color: rgb(96, 191, 0);
}


/* -------------------------------------------------------------------------------------------- */
