@charset "UTF-8";

.case_study {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.wrap_breadcrumb br {
	display: none;
}
.case_study .wrap {
	padding: 50px 40px 80px;
	color: var(--darkblue);
	font-size: 17px;
	word-break: break-all;
}

.conts {
	flex-basis: calc(100% / 3 * 2);/* max800px */
	overflow: hidden;
}
.conts h1 {
	margin-bottom: 10px;
	padding: 0;
	color: var(--deepblue);
	font-size: 35px;
	font-weight: 800;
	text-align: left;
}
.company_name {
	font-size: 24px;
	font-weight: 600;
}
.conts img {
	margin: 20px 0;
}

.conts .txt {
	margin-bottom: 60px;
	line-height: 2.2;
	text-align: justify;
	text-justify: inter-character;/* firefox only */
	text-justify: inter-ideograph;/* experimental */
}
.txt.person {
	font-size: 14px;
	line-height: 1.5;
}
.person .interviewee {
	margin-bottom: 5px;
	color: var(--deepblue);
	font-size: 16px;
	font-weight: 700;
}
.person .name {
	margin-top: 3px;
	font-size: 23px;
	font-weight: 600;
}
.person .textposition {
	font-size: 18px;
}
.txt strong {
	color: var(--basicred);
}

/* 記事由来要素 */
.case_study h2 {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
	color: var(--deepblue);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	text-align: start;
}
.case_study h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: calc(100% - 4px);
	border-left: 8px solid var(--deepblue);
}
.case_study h3 {
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.5;
	text-align: start;
}

.case_study figure {
	margin-top: 40px;
	padding: 10px 20px;
	background-color: #f7f7f7;
}
.case_study figcaption {
	font-size: 14px;
	line-height: normal;
	text-align: center;
}

.case_study .summary {
	padding: 30px 50px;
	background: #eef2fb;
}
.case_study .summary_title {
	padding-bottom: 10px;
	font-size: 28px;
	text-align: center;
	border-bottom: 1px dotted var(--darkblue);
}
.summary_table {
	margin-bottom: 1rem;
	width: 100%;
	border-collapse: collapse;
}
.summary_table th {
	font-weight: 600;
	white-space: nowrap;
}
.summary_table th,
.summary_table td {
	padding: 0.5em;
	text-align: center;
	background: #fff;
	border: 1px solid #000;
}
.summary_table thead th {
	color: #fff;
	background: #002676;
}
.case_study .summary_subtitle {
	margin-bottom: 10px;
	color: var(--deepblue);
	font-size: 23px;
	font-weight: 600;
	line-height: normal;
}
.case_study .summary_list {
	margin-bottom: 20px;
	list-style-type: none;
}
.case_study .summary_list li {
	position: relative;
	padding-block: 0.2em;
	padding-left: 1.2em;
	line-height: 1.5;
}
.case_study .summary_list li::before {
	content: "-";
	position: absolute;
	left: 0;
}


/* 右カラム */
.side-conts {
	flex-basis: 28%;
}
.case_study .companydate {
	font-size: 14px;
	font-weight: 500;
}
.companydate_list_title {
	padding: 10px;
	color: #fff;
	background-color: var(--deepblue);
}
.companydate table {
	margin: 10px;
}
.companydate td {
	padding: 10px;
}
.companydate .company_logo {
	padding: 15px;
}
.companydate .label {
	width: 50px;
}

.side-banner img {
	transition: opacity 0.3s ease;
}
.side-banner:hover img {
	opacity: 0.5;
}



.case_study .pc {
	display: block !important;
}
.case_study .sp {
	display: none !important;
}


@media (max-width: 768px) {
	.case_study .wrap {
		padding: 40px 5%;
		max-width: 100%;
	}

	.conts {
		flex-basis: 100%;
	}
	.conts h1 {
		font-size: min(6.7vw, 27px);
	}
	.company_name {
		font-size: min(4.2vw, 16px);
	}

	.case_study h2 {
		font-size: 24px;
	}
	.case_study h3 {
		font-size: 20px;
	}

	.case_study .summary {
		padding: 30px 25px;
	}
	.case_study .summary_title {
		font-size: 20px;
	}
	.case_study .summary_subtitle {
		font-size: 18px;
		text-align: center;
	}

	.side-conts {
		flex-basis: 100%;
	}

	.case_study .pc {
		display: none !important;
	}
	.case_study .sp {
		display: block !important;
	}
}

/* POPUP for MOTENASU */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 9999;
}
.popup.open {
	display: flex;
	animation: fadeIn 0.7s;
}
.popup-banner {
	position: relative;
	margin-top: 20px;
}
.popup-close {
	position: absolute;
	top: -35px;
	right: 0;
	display: block;
	width: 30px;
	height: 30px;
	color: white;
	font-size: 1.5rem;
	line-height: 30px;
	text-align: center;
	background-color: black;
	border-radius: 50%;
	cursor: pointer;
}
.popup-inner {
	margin: 0 3%;
}

.motenasu_head {
	padding: 40px 0;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	background-color: #3f67ab;
}
.motenasu_head .small {
	font-size: 0.6em;
	font-weight: 400;
}
.requireditem {
	padding-right: 15px;
	color: #f00;
	font-size: 0.9em;
	font-weight: bold;
	text-align: right;
	background: #e5e9f1;
}

.motenasu_form {
	padding: 40px 25px 50px !important;
	height: 70vh !important;
	overflow: scroll;
}
.motenasu_form label {
	display: inline-block;
}

@media screen and (max-width: 576px) {
	.motenasu_form {
		padding: 40px 10px 50px !important;
	}
	.motenasu_form label {
		display: block;
	}
}