@charset "utf-8";
/* ------------------------------
 見出し・テキスト（PC）
------------------------------ */
/* -- h1 -- */
.heading {
	position: relative;
	z-index: 1;
	background-color: var(--blue-bg-color);
	margin-bottom: 50px;
}
.heading:has(img) {
	background-color: transparent;
	margin-bottom: 60px;
}
.heading:has(img)::before {
	content: "";
	width: 100%;
	height: 300px;
	background-color: var(--blue-bg-color);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}
.heading img {
	display: block;
	border-radius: 16px;
	margin: -45px auto 0;
}
.heading .headingIn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 1140px;
	height: 300px;
	margin: 0 auto;
}
.heading .headingIn h1 {
	position: relative;
	font-size: 3.8rem;
	font-weight: bold;
	line-height: 1.2;
}
.heading .headingIn h1::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--blue-color);
	margin-top: 30px;
}
.heading .headingIn h1::before {
	content: "";
	display: block;
	width: 20px;
	height: 3px;
	background-color: var(--co-color);
	position: absolute;
	left: 0;
	bottom: 0;
}
.heading .headingIn .subtitle {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--blue-color);
	letter-spacing: 0.035em;
	margin-bottom: 15px;
}
.heading .headingIn .subtitle:empty {
	display: none;
}
/* 新着情報のh1 */
.contents .mainContents h1 {
	position: relative;
	font-size: 3.0rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.02em;
	border-bottom: solid 3px var(--border-color);
	padding-bottom: 25px;
	margin: 10px 0 30px;
}
/* -- h2 -- */
.contents h2 {
	position: relative;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 30px;
}
.contents h2::before {
	content: "";
	width: 80px;
	height: 2px;
	background-color: var(--blue-color);
	position: absolute;
	bottom: 0;
	left: 0;
}
.contents h2::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--border-color);
	margin-top: 15px;
}
/* -- h3 -- */
.contents h3 {
	position: relative;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
	padding-left: 13px;
	margin-bottom: 25px;
}
.contents h3::before {
	content: "";
	width: 3px;
	height: 95%;
	min-height: 26px;
	background-color: var(--blue-color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
/* -- h4 -- */
.contents h4,
.contactBlock :is(.contact, .magazine) > p {
	position: relative;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.3;
	padding-left: 16px;
	margin-bottom: 10px;
}
.contents h4::before,
.contactBlock :is(.contact, .magazine) > p::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: var(--blue-color);
	border-radius: 100%;
	top: 0.5em;
	left: 0;
}
.contactBlock :is(.contact, .magazine) > p {
	font-family: "Montserrat", sans-serif;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.035em;
	margin-bottom: 25px;
}
.contactBlock :is(.contact, .magazine) > p::before {
	background-color: #fff;
	top: 0.4em;
}
/* -- 新着情報の見出し -- */
.contents .mainContents .newsHead {
	display: none;
	position: relative;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.4;
	padding-bottom: 15px;
	margin-bottom: 65px;
}
.contents .mainContents .newsHead::before {
	content: "";
	width: 40px;
	height: 2px;
	background-color: var(--blue-color);
	position: absolute;
	bottom: 0;
	left: 0;
}
/* -- リードテキスト -- */
.contents .text-lead {
	font-size: 2.6rem;
	line-height: 1.6;
	font-weight: 600;
}
.contents .text-lead.en {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
}
/* -- 青太20px -- */
.contents .text-blue {
	font-size: 2.0rem;
	font-weight: bold;
	color: var(--blue-color);
	margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
	/* 新着情報のh2 */
	.contents .mainContents h2 {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.contents .mainContents h2::before {
		width: 78px;
	}
	/* 新着情報のh3 */
	.contents .mainContents h3 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.contents .mainContents h3::before {
		height: 95%;
		min-height: 22px;
	}
	/* 新着情報のh4 */
	.contents .mainContents h4 {
		font-size: 1.6rem;
	}
	.contents .mainContents h4::before {
		width: 8px;
		height: 8px;
		top: 0.5em;
	}
}
/* ------------------------------
 見出し・テキスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- h1 -- */
	.heading {
		padding: 0 5%;
		margin-bottom: 35px;
	}
	.heading:has(img) {
		margin-bottom: 35px;
	}
	.heading:has(img)::before {
		min-height: 180px;
		height: 65%;
	}
	.heading img {
		border-radius: 8px;
		margin-top: -5%;
	}
	.heading .headingIn {
		width: 100%;
		height: fit-content;
		min-height: 160px;
	}
	.heading:has(img) .headingIn {
		padding: 30px 0 40px;
	}
	.heading .headingIn h1 {
		font-size: 2.8rem;
	}
	.heading .headingIn h1::after {
		width: 25px;
		height: 2px;
		margin-top: 20px;
	}
	.heading .headingIn h1::before {
		width: calc(25px / 2);
		height: 2px;
	}
	.heading .headingIn .subtitle {
		font-size: 1.0rem;
		margin-bottom: 5px;
	}
	/* 新着情報のh1 */
	.contents .mainContents h1 {
		font-size: 2.4rem;
		padding-bottom: 15px;
		margin: 5px 0 20px;
	}
	/* -- h2 -- */
	.contents h2 {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.contents h2::before {
		width: 50px;
	}
	.contents h2::after {
		margin-top: 10px;
	}
	/* -- h3 -- */
	.contents h3 {
		font-size: 1.8rem;
		padding-left: 10px;
		margin-bottom: 15px;
	}
	.contents h3::before {
		min-height: 22px;
	}
	/* -- h4 -- */
	.contents h4,
	.contactBlock :is(.contact, .magazine) > p {
		font-size: 1.6rem;
		margin-bottom: 15px;
	}
	.contents h4::before,
	.contactBlock :is(.contact, .magazine) > p::before {
		top: 0.5em;
	}
	.contactBlock :is(.contact, .magazine) > p {
		font-weight: 500;
		margin-bottom: 12px;
	}
	.contactBlock :is(.contact, .magazine) > p::before {
		top: 0.35em;
	}
	/* -- リードテキスト -- */
	.contents .text-lead {
		font-size: 2.2rem;
	}
	/* -- 青太20px -- */
	.contents .text-blue {
		font-size: 1.8rem;
	}
	/* -- 新着情報の見出し -- */
	.contents .mainContents .newsHead {
		font-size: 2.2rem;
		padding-bottom: 12px;
		margin-bottom: 40px;
	}
	.contents .mainContents .newsHead::before {
		width: 25px;
	}
}
/* ------------------------------
 横幅（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.cms_fl + .cms_fl {
		margin-left: 5.702%;
	}
	.mainContents .cms_fl + .cms_fl {
		margin-left: 8.725%;
	}
	/* 1/2 */
	.w546,
	.w1-2 {
		width: 47.895%;
	}
	/* サイドあり1/2 */
	.mainContents .w546,
	.mainContents .w1-2 {
		width: 48.323%;
	}
	/* 1/3 */
	.w350,
	.w1-3 {
		width: 30.702%;
	}
	.w350.cms_fl + .w350.cms_fl:not(.cms_clear_before),
	.w350.fl + .w350.fl:not(.cms_clear_before),
	.w1-3.cms_fl + .w1-3.cms_fl:not(.cms_clear_before),
	.w1-3.fl + .w1-3.fl:not(.cms_clear_before) {
		margin-left: 3.947%;
	}
	.w350.cms_fl + .w350.cms_fl.ml0 {
		margin-left: 0;
	}
	/* サイドあり1/3 */
	.mainContents .w350,
	.mainContents .w1-3 {
		width: 31.276%;
	}
	.mainContents .w350.cms_fl + .w350.cms_fl:not(.cms_clear_before),
	.mainContents .w350.fl + .w350.fl:not(.cms_clear_before),
	.mainContents .w1-3.cms_fl + .w1-3.cms_fl:not(.cms_clear_before),
	.mainContents .w1-3.fl + .w1-3.fl:not(.cms_clear_before) {
		margin-left: 3.086%;
	}
	/* 2/3 */
	.w745,
	.w2-3 {
		width: 65.351%;
	}
	/* サイドあり2/3 */
	.mainContents .w745,
	.mainContents .w2-3 {
		width: 65.638%;
	}
	/* 1/4 */
	.w258,
	.w1-4 {
		width: 22.632%;
	}
	.w258.cms_fl + .w258.cms_fl,
	.w258.fl + .w258.fl,
	.w1-4.cms_fl + .w1-4.cms_fl,
	.w1-4.fl + .w1-4.fl {
		margin-left: 3.157%;
	}
	/* サイドあり1/4 */
	.mainContents .w258,
	.mainContents .w1-4 {
		width: 22.685%;
	}
	.mainContents .w258.cms_fl + .w258.cms_fl,
	.mainContents .w258.fl + .w258.fl,
	.mainContents .w1-4.cms_fl + .w1-4.cms_fl,
	.mainContents .w1-4.fl + .w1-4.fl {
		margin-left: 3.084%;
	}
	/* 3/4 */
	.w846,
	.w3-4 {
		width: 74.211%;
	}
	/* サイドあり3/4 */
	.mainContents .ww846,
	.mainContents .w3-4 {
		width: 74.229%;
	}
	/* 1/5 */
	.w208,
	.w1-5 {
		width: 18.246%;
	}
	.w208.cms_fl + .w208.cms_fl,
	.w208.fl + .w208.fl,
	.w1-5.cms_fl + .w1-5.cms_fl,
	.w1-5.fl + .w1-5.fl {
		margin-left: 2.1925%;
	}
	/* その他 */
	.w980 {
		width: 980px;
	}
	.w780 {
		width: 780px;
	}
	.w300 {
		width: 300px;
	}
}
/* ----------------------
 横幅（SP）
---------------------- */
@media screen and (max-width: 767px) {
	:is(.w258, .w1-4),
	:is(.w208, .w1-5) {
		width: 47.25%;
	}
	:is(.w258, .w1-4).cms_fl,
	:is(.w208, .w1-5).cms_fl {
		float: left !important;
	}
	:is(.w258, .w1-4).cms_fr {
		float: right !important;
	}
	:is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl,
	:is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl,
	:is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl {
		margin-left: 5.5%;
	}
	:is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl {
		margin-bottom: 0;
		margin-left: 0;
	}
	:is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl {
		margin-left: 0;
	}
	/* サイドあり */
	.mainContents :is(.w258, .w1-4),
	.mainContents :is(.w208, .w1-5) {
		width: 47.41%;
	}
	.mainContents :is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl,
	.mainContents :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl,
	.mainContents :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl {
		margin-left: 5.18%;
	}
	.mainContents :is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl + :is(.w258, .w1-4).cms_fl {
		margin-bottom: 0;
		margin-left: 0;
	}
	.mainContents :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl + :is(.w208, .w1-5).cms_fl {
		margin-left: 0;
	}
	/* 3/4サイズは100% */
	:is(.w258, .w1-4) + .w3-4 {
		clear: both;
	}
}
/* ------------------------------
 ボックス（PC）
------------------------------ */
/* 枠線 */
.borderBox,
.borderBox-s {
	border: var(--border);
	border-radius: 10px;
	padding: 40px 35px;
}
.borderBox-s {
	padding: 30px;
}
.bgBox.borderBox,
.bgBox-s.borderBox {
	border: solid 1px #b5cce9;
}
/* 背景 */
.bgBox,
.bgBox-w,
.bgBox-s,
.bgBox-w-s {
	padding: 45px;
	border-radius: 10px;
	background-color: var(--blue-bg-color);
}
.bgBox-w,
.bgBox-w-s {
	background-color: #fff;
}
.bgBox-s,
.bgBox-w-s {
	padding: 35px;
}
/* 横並び */
.flexBox {
	display: flex !important;
	flex-wrap: wrap;
}
.cms_block.flexBox::after {
	content: none;
}
/* 横並び センター揃え */
.flexBox.jc-c {
	justify-content: center;
}
/* 横並び 端揃え */
.flexBox.jc-sb {
	justify-content: space-between;
}
/* 横並び 縦センター揃え */
.flexBox.ai-c {
	align-items: center;
}
/* 横並び 縦上揃え */
.flexBox.ai-s {
	align-items: start;
}
/* 横並び4列（SP横並び2列） */
.flexBox.div4 {
	flex-wrap: wrap;
	gap: 30px 3.158%;
}
/* 横並びで写真キャプションが上 */
.flexBox.capTop > * {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* flexBoxの中でも横並びにしない */
.flexBox.h100p > h2,
.flexBox.h100p > h3 {
	width: 100% !important;
	text-align: center !important;
}
.flexBox .fg-1 {
	flex-grow: 1;
}
@media print, screen and (min-width: 768px) {
	/* 横並び2列 */
	.flexBox.div2 {
		flex-wrap: wrap;
		column-gap: 4.21%;
	}
	.flexBox.div2 > * {
		width: 47.895%;
	}
	.mainContents .flexBox.div2 {
		column-gap: 4.39%;
	}
	.mainContents .flexBox.div2 > * {
		width: 47.805%;
	}
	/* 横並び3列 */
	.flexBox.div3 {
		flex-wrap: wrap;
		column-gap: 3.948%;
	}
	.flexBox.div3 > * {
		width: 30.702%;
	}
	.mainContents .flexBox.div3 {
		column-gap: 3.17%;
	}
	.mainContents .flexBox.div3 > * {
		width: 31.22%;
	}
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 > * {
		width: 22.632%;
	}
}
/* ------------------------------
 ボックス（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* 枠線 */
	.borderBox {
		padding: 25px 20px;
	}
	.borderBox-s {
		padding: 20px;
	}
	/* 背景 */
	.bgBox,
	.bgBox-w,
	.bgBox-s,
	.bgBox-w-s {
		padding: 20px;
		border-radius: 8px;
	}
	/* 横並び2列・横並び3列 */
	.flexBox.div2,
	.flexBox.div3 {
		display: block !important;
	}
	/* .flexBox.div2 > * + *,
	.flexBox.div3 > * + * {
		margin-top: 30px;
	} */
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 {
		flex-wrap: wrap;
		gap: 15px 5.18%;
	}
	.flexBox.div4 > * {
		width: 47.41%;
	}
	/* 横並び4列（SP横並びにしない） */
	.flexBox.div4.sp_nodiv {
		display: block;
	}
	.flexBox.div4.sp_nodiv > * {
		width: 100%;
	}
}
/* ------------------------------
 順番指定
------------------------------ */
@media print, screen and (min-width: 768px) {
	.order1 { order: 1;}
	.order2 { order: 2;}
	.order3 { order: 3;}
}
@media screen and (max-width: 767px) {
	.sp_order1 { order: 1;}
	.sp_order2 { order: 2;}
	.sp_order3 { order: 3;}
}
/* ------------------------------
 テーブル（PC）
------------------------------ */
/* デフォルト */
table {
	width: 100%;
	border-collapse: separate;
	border: var(--border);
	line-height: 1.5;
}
table tr:not(tbody tr:last-child) th,
table tr:not(:last-child) td {
	border-bottom: var(--border);
}
table tr th:not(:last-child),
table tr td:not(:last-child) {
	border-right: var(--border);
}
table th,
table td {
	padding: 20px 14px;
}
table th {
	font-weight: bold;
	background-color: var(--bg-color);
}
/* ラインのみ */
.contents .simple table,
.contents .noline table,
.contents .coordinator table {
	border: none !important;
}
.contents .simple table th {
	background-color: transparent;
}
.contents .simple table th,
.contents .simple table td {
	padding: 20px 0;
}
.contents .simple table tr:last-child th,
.contents .simple table tr:last-child td {
	border-bottom: var(--border);
}
.contents .simple table tr th:not(:last-child),
.contents .simple table tr td:not(:last-child) {
	border-right: none;
}
/* ラインなし */
.contents .noline table tr,
.contents .coordinator table tr {
	display: grid;
	align-items: start;
}
.contents .noline table tr:not(:last-child),
.contents .coordinator table tr:not(:last-child) {
	margin-bottom: 15px;
}
.contents .noline table th,
.contents .coordinator table th {
	width: 100%;
	padding: 0 !important;
	border: none !important;
	background-color: transparent;
	font-weight: bold;
}
.contents .noline table td,
.contents .coordinator table td {
	padding: 0 !important;
	border: none !important;
}
/* 沿革 */
.contents .outline table {
	border: none;
	outline: none;
	border-collapse: collapse;
	border-radius: 0;
	overflow: unset;
}
.contents .outline table th,
.contents .outline table td {
	border: none !important;
}
.contents .outline table tr th {
	font-size: 1.8rem;
	background-color: transparent;
	padding: 25px 15px 25px 0;
}
.contents .outline table tr td {
	position: relative;
	padding: 25px 0 25px 25px;
}
.contents .outline table tr td p {
	position: relative;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.contents .outline table tr:not(:last-child) th::before,
.contents .outline table tr:not(:last-child) td::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: var(--blue-color);
	top: 40px;
	left: 0;
	margin: auto;
}
/* スクロール */
.cms_text.scroller {
	overflow-y: hidden !important;
}
/* テーブル内のsmall */
.contents table th .small,
.contents table td .small {
	display: block;
	line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
	/* デフォルト */
	table th {
		width: fit-content;
	}
	/* ラインなし */
	.contents .noline table tr,
	.contents .coordinator table tr {
		grid-template-columns: 1fr 7fr;
		column-gap: 10px;
	}
	.contents .cms_text.coordinator table tr {
		grid-template-columns: 1fr 8fr;
	}
	/* 沿革 */
	.contents .outline table tr th {
		width: 8%;
	}
	.contents .outline table tr th::before {
		opacity: 0;
	}
	.contents .outline table tr td {
		width: 92%;
	}
	.contents .outline table tr td::after {
		content: "";
		position: absolute;
		width: 14px;
		height: 14px;
		background-color: var(--blue-color);
		border-radius: 100%;
		top: 32px;
		left: -6px;
		margin: auto;
	}
	.contents .outline table tr:not(:first-child) td p::before {
		content: "";
		width: 100%;
		height: 1px;
		background-color: var(--border-color);
		position: absolute;
		top: -25px;
		left: 0;
		right: 0;
		margin: auto;
	}
}
/* ------------------------------
 テーブル（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	table th,
	table td {
		padding: 12px 14px;
	}
	/* -- ラインなし -- */
	.contents .noline table tr,
	.contents .coordinator table tr {
		gap: 5px;
	}
	/* -- レスポンシブ -- */
	.res table th,
	.res table td {
		display: block;
		width: auto !important;
	}
	.res table tr th:not(:last-child),
	.res table tr td:not(:last-child) {
		border-right: none;
	}
	.res table th {
		border-bottom: var(--border);
		text-align: left;
	}
	.res table tr > td {
		border-left: none;
	}
	.res table tr:last-child td:not(:last-child) {
		border-bottom: var(--border);
	}
	/* ラインのみ */
	.contents .simple table th {
		padding: 12px 5px 5px;
	}
	.contents .simple table td {
		padding: 5px 5px 12px;
	}
	.contents .simple.res table th,
	.contents .simple table tr:last-child th {
		border-bottom: none;
	}
	/* ラインなし・レスポンシブ */
	.contents .noline.res table tr {
		display: block;
	}
	.contents .noline.res table tr th {
		margin-bottom: 10px;
	}
	.contents .noline table th {
		width: 45% !important;
	}
	/* 沿革 */
	.contents .outline table tr th,
	.contents .outline table tr td {
		display: block;
		width: auto !important;
		line-height: 1.5;
	}
	.contents .outline table tr th {
		position: relative;
		font-size: 1.6rem;
		padding: 0 0 5px 15px;
	}
	.contents .outline table tr:not(:last-child) th::before {
		top: 15px;
	}
	.contents .outline table tr th::after {
		content: "";
		position: absolute;
		width: 14px;
		height: 14px;
		background-color: var(--blue-color);
		border-radius: 100%;
		top: 6px;
		left: -6px;
		margin: auto;
	}
	.contents .outline table tr td {
		padding: 0 0 28px 15px;
	}
	.contents .outline table tr:last-child td {
		padding-bottom: 0;
	}
	.contents .outline table tr:not(:last-child) td::before {
		top: 10px;
	}
	.contents .outline table tr:not(:last-child) td::after {
		content: "";
		width: calc(100% - 13px);
		height: 1px;
		background-color: var(--border-color);
		position: absolute;
		right: 0;
		bottom: 13px;
	}
	.contents .outline table tr td p {
		font-size: 1.6rem;
	}
	/* -- スクロール -- */
	.cms_text.scroller table {
		width: 1140px !important;
	}
	/* コンテンツ幅が狭い時のスクロール */
	.mainContents .cms_text.scroller table {
		width: 745px !important;
	}
}
/* ------------------------------
 リスト（PC）
------------------------------ */
/* -- ノーマルリスト●付き -- */
.cms_text ul > li,
.cms_image ul > li {
	position: relative;
	padding-left: 1em;
}
.cms_text .ti1c ul > li {
	text-indent: 0;
}
.cms_text ul > li::before,
.cms_image ul > li::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--blue-color);
	border-radius: 100%;
	position: absolute;
	top: .6em;
	left: 0;
}
.cms_text table ul > li {
	line-height: 1.75;
}
/* -- 数字リスト -- */
.cms_text ol > li,
.cms_image ol > li {
	position: relative;
	counter-increment: cnt;
	padding-left: 2.5em;
}
.cms_text ol:has(li:nth-child(n + 10)) > li,
.cms_image ol:has(li:nth-child(n + 10)) > li {
	padding-left: 3em;
}
.cms_text ol > li::before,
.cms_image ol > li::before {
	content: '（' counter(cnt) '）';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main-font-color);
}
.cms_text ol:has(li:nth-child(n + 10)) > li::before,
.cms_image ol:has(li:nth-child(n + 10)) > li::before {
	width: 3.2em;
	text-align: right;
}
/* ul、ol下スペース */
.cms_text ul > li:not(:last-child),
.cms_image ul > li:not(:last-child),
.cms_text ol > li:not(:last-child),
.cms_image ol > li:not(:last-child) {
	margin-bottom: 3px;
}
/* 1文字分アキ */
.cms_block .cms_text.list-mb1c ul > li:not(:last-child),
.cms_block .cms_image.list-mb1c ul > li:not(:last-child),
.cms_block ul.list-mb1c > li:not(:last-child),
.cms_block .cms_text.list-mb1c ol > li:not(:last-child),
.cms_block .cms_image.list-mb1c ol > li:not(:last-child),
.cms_block ol.list-mb1c > li:not(:last-child) {
	margin-bottom: 1em;
}
/* -- 横並びリスト -- */
.inline ul li {
	display: inline-block;
	margin-right: 2em;
}
table .inline ul li {
	margin-right: 1em;
}
@media print, screen and (min-width: 768px) {
	/* 5行で折り返し */
	.list_grid2 ul {
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(5, auto);
	}
	.list_grid2 ul li {
		align-self: self-start;
	}
	/* 横並び2分割 */
	.list_div4 ul {
		display: flex;
		flex-wrap: wrap;
		column-gap: 1em;
	}
	.list_div4 ul li {
		width: calc((100% - 3em) / 4);
	}
}
/* ------------------------------
 リスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.cms_text ul > li::before,
	.cms_image ul > li::before {
		width: 9px;
		height: 9px;
		top: .55em;
	}
	/* ul、ol下スペース */
	.cms_text ul > li:not(:last-child),
	.cms_image ul > li:not(:last-child),
	.cms_text ol > li:not(:last-child),
	.cms_image ol > li:not(:last-child) {
		margin-bottom: 5px;
	}
}
/* ------------------------------
 角丸（PC）
------------------------------ */
.r,
.r img {
	border-radius: 10px;
}
/* 角丸なし */
.no-r img {
	border-radius: 0;
}
/* ------------------------------
 線（PC）
------------------------------ */
.line-t {
	border-top: solid 2px var(--border-color);
	padding-top: 20px;
}
/* ------------------------------
 線（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.line-t {
		padding-top: 15px;
	}
}
/* ------------------------------
 リンク（PC）
------------------------------ */
/* -- 横並びリンク -- */
.inlineLink {
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
}
/* -- 下線付きリンク -- */
.lineLink a.cms_link,
.lineLink.cms_link a {
	display: block;
	font-size: 1.4rem;
	color: var(--main-font-color);
	line-height: 1.5;
	border-bottom: var(--border);
	padding-top: 5px;
	padding-right: 29px;
	padding-bottom: 11px;
}
.lineLink.cms_link {
	display: flex;
	flex-direction: column;
}
.cms_image.lineLink,
.cms_text.lineLink {
	position: relative;
	text-align: center;
	margin-bottom: 0;
}
.cms_image.lineLink a {
	display: block;
	width: 100%;
	height: 100%;
	padding-bottom: calc(1.5em + 34px);
}
.cms_text.lineLink a {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
	height: 100%;
	color: var(--main-font-color);
	text-decoration: none;
}
.cms_text.lineLink a div {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.cms_text.lineLink a div figure {
	display: flex;
	align-items: center;
}
.cms_image.lineLink a::after,
.cms_text.lineLink a::after {
	content: none;
}
.cms_image.lineLink .cms_caption_b {
	width: 100%;
	line-height: 1.5;
	text-align: left;
	border-bottom: var(--border);
	padding-right: 29px;
	padding-bottom: 11px;
	margin-top: 0;
	transition: .3s ease-in-out;
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0;
}
.cms_text.lineLink p {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex-grow: 1;
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: left;
	border-bottom: var(--border);
	padding-right: 29px;
	padding-bottom: 11px;
	margin-top: 1em;
	transition: .3s ease-in-out;
	pointer-events: none;
}
.lineLink a:not([target="_blank"]).cms_link::after,
.lineLink.cms_link a:not([target="_blank"])::after,
.cms_image.lineLink a + .cms_caption_b::after,
.cms_text.lineLink a p::after {
	content: "";
	width: 24px;
	height: 24px;
	background: url(../img/icon_arrowbox_24.svg) no-repeat 0 0 / cover;
	position: absolute;
	bottom: 9px;
	right: 0;
	margin: auto;
}
.lineLink a.cms_link[target="_blank"]::after,
.lineLink.cms_link a[target="_blank"]::after,
.cms_image.lineLink a[target="_blank"] + .cms_caption_b::after,
.cms_text.lineLink a[target="_blank"] p::after {
	content: "";
	width: 24px;
	height: 24px;
	background: url(../img/icon_blankbox_24.svg) no-repeat 0 0 / cover;
	position: absolute;
	bottom: 9px;
	right: 0;
	margin: auto;
}
/* -- ダウンロード囲みリンク -- */
.flexBox.dl {
	gap: 10px 40px;
}
.dlBox:not(:last-child) {
	margin: 0;
}
.dlBox a.cms_pdf,
.dlBox.cms_pdf a,
.dlBox a.cms_xls,
.dlBox.cms_xls a,
.dlBox a.cms_doc,
.dlBox.cms_doc a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 74px;
	line-height: 1.5;
	text-align: center;
	border: solid 1px var(--blue-color);
	border-radius: 7px;
	padding: 12px 30px;
	padding-left: 45px;
}
.dlBox a.cms_pdf[target="_blank"]::after,
.dlBox.cms_pdf a[target="_blank"]::after,
.dlBox a.cms_xls[target="_blank"]::after,
.dlBox.cms_xls a[target="_blank"]::after,
.dlBox.cms_doc a[target="_blank"]::after {
	position: absolute;
	left: 26px;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media print, screen and (min-width: 768px) {
	/* -- 下線付きリンク -- */
	.cms_image.lineLink a:hover + .cms_caption_b {
		opacity: .7;
	}
	/* -- ダウンロード囲みリンク -- */
	.flexBox.dl {
		justify-content: center;
	}
	.dlBox {
		width: 472px;
	}
}
/* ------------------------------
 リンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- 横並びリンク -- */
	.inlineLink {
		gap: 5px 10px;
	}
	/* -- 下線付きリンク -- */
	.lineLink a.cms_link,
	.lineLink.cms_link a {
		font-size: 1.3rem;
	}
	.cms_image.lineLink a {
		padding-bottom: calc(1.5em + 25px);
	}
	.cms_text.lineLink a p {
		font-size: 1.3rem;
	}
	/* -- ダウンロード囲みリンク -- */
	.dlBox a.cms_pdf,
	.dlBox.cms_pdf a,
	.dlBox a.cms_xls,
	.dlBox.cms_xls a {
		min-height: 70px;
	}
	.dlBox a.cms_pdf[target="_blank"]::after,
	.dlBox.cms_pdf a[target="_blank"]::after,
	.dlBox a.cms_xls[target="_blank"]::after,
	.dlBox.cms_xls a[target="_blank"]::after {
		left: 18px;
	}
}
/* ------------------------------
 ボタン（PC）
------------------------------ */
/* -- デフォルト -- */
.btn a,
a.btn,
.formBlock button {
	display: inline-flex;
	align-items: center;
	position: relative;
	min-width: 227px;
	min-height: 50px;
	color: #fff;
	font-weight: 500;
	background-color: var(--blue-color);
	border-radius: 7px;
	padding: 10px 45px 10px 20px;
	text-decoration: none;
	cursor: pointer;
	transition: .3s ease-in-out;
}
.btn a::after,
a.btn::after,
.formBlock button::after {
	content: "";
	width: 19px;
	height: 14px;
	background: url(../img/icon_arrow_w.svg) no-repeat 0 0 / cover;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
	transition: .3s ease-in-out;
}
.btn.list a::after,
a.btn.list::after {
	width: 15px;
	height: 15px;
	background: url(../img/icon_list.svg) no-repeat 0 0 / cover;
}
.btn a[target="_blank"]::after,
a.btn[target="_blank"]::after {
	width: 15px;
	height: 15px;
	background: url(../img/icon_blank_w.svg) no-repeat 0 0 / cover;
	margin: auto;
}
/* -- エントリー -- */
.btn.big {
	text-align: center;
}
.btn.big a {
	justify-content: center;
	min-width: 477px;
	min-height: 60px;
	font-size: 2.0rem;
	line-height: 1.5;
}
/* -- 色違い -- */
.btn.em a {
	min-height: 70px;
	background-color: var(--evc-color);
	padding: 10px 112px 10px 20px;
}
/* -- 戻る -- */
.btn.back a {
	padding: 10px 20px 10px 70px;
}
.btn.back a::after {
	transform: rotate(180deg);
	right: auto;
	left: 15px;
}
@media print, screen and (min-width: 768px) {
	/* f18 */
	.btn.f18 a {
		font-size: 1.8rem;
	}
	/* 横幅 */
	.btn.w1-2 a,
	.btn.w1-3 a,
	.btn.w1-4 a,
	.btn.w1-5 a,
	.flexBox.div3 .btn a {
		width: 100%;
	}
	.btn.w1-2 a,
	.btn.w1-3 a,
	.flexBox.div3 .btn a {
		min-height: 60px;
	}
}
/* ------------------------------
 ボタン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- デフォルト -- */
	.btn a,
	a.btn {
		min-width: 204px;
	}
	/* -- エントリー -- */
	.btn.big a {
		min-width: 80%;
		font-size: 1.6rem;
	}
	/* -- 色違い -- */
	.btn.em a {
		min-height: 60px;
	}
}
/* ------------------------------
 下層ページリンク（PC）
------------------------------ */
.lowerLink {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3.947%;
}
.cms_block.lowerLink::after {
	content: none;
}
.lowerLink .cms_text {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}
.lowerLink .cms_text a {
	display: block;
	width: 100%;
	height: 100%;
	color: var(--main-font-color);
	text-decoration: none;
}
.lowerLink .cms_text figure {
	border-radius: 10px;
	overflow: hidden;
}
.lowerLink .cms_text figure img,
.centerBlock .cms_text > a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lowerLink .cms_text p {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 15px;
}
.lowerLink .cms_text p::after,
.centerBlock .cms_text .textBox p::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: -4px 0 0 8px;
	background: url(../img/icon_arrowbox_24.svg) no-repeat 0 0 / cover;
	vertical-align: middle;
}
/* ブランクアイコン */
.lowerLink .cms_text a[target="_blank"]::after {
	content: none;
}
.lowerLink .cms_text a[target="_blank"] p::after {
	background: url(../img/icon_blankbox_24.svg) no-repeat 0 0 / cover;
}
/* -- テキストだけのリンク -- */
.lowerLink:not(:has(img)) {
	row-gap: 30px;
}
.lowerLink .cms_link:not(:last-child) {
	margin-bottom: 0;
}
.lowerLink .cms_link a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 60px;
	color: #fff;
	font-weight: 500;
	background-color: var(--blue-color);
	border-radius: 7px;
	padding: 16px 45px 16px 20px;
}
.contents .lowerLink .cms_link a::after {
	content: "";
	width: 19px;
	height: 14px;
	background: url(../img/icon_arrow_w.svg) no-repeat 0 0 / cover;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
	transition: .3s ease-in-out;
}
/* ブランクアイコン */
.contents .lowerLink .cms_link a[target="_blank"]::after {
	width: 15px;
	height: 15px;
	background: url(../img/icon_blank_w.svg) no-repeat 0 0 / cover;
}
@media print, screen and (min-width: 768px) {
	.lowerLink .cms_text,
	.lowerLink .cms_link {
		width: 30.702%;
	}
	/* 2分割 */
	.lowerLink.div2,
	.cms_block.div2 .lowerLink {
		gap: 16px 4.21%;
	}
	.lowerLink.div2 .cms_text,
	.cms_block.div2 .lowerLink .cms_text {
		width: 47.895%;
	}
	.lowerLink.div2 .cms_text p,
	.cms_block.div2 .lowerLink .cms_text p {
		font-size: 2.0rem;
	}
	.lowerLink.div2 .cms_text p::after,
	.cms_block.div2 .lowerLink .cms_text p::after {
		width: 32px;
		height: 32px;
		background: url(../img/icon_arrowbox_32.svg) no-repeat 0 0 / cover;
	}
	/* ブランクアイコン */
	.lowerLink.div2 .cms_text a[target="_blank"] p::after,
	.cms_block.div2 .lowerLink .cms_text a[target="_blank"] p::after {
		width: 32px;
		height: 32px;
		background: url(../img/icon_blankbox_32.svg) no-repeat 0 0 / cover;
	}
	/* -- マウスオーバー -- */
	.lowerLink .cms_text a figure,
	.centerBlock .cms_text > a figure {
		overflow: hidden;
	}
	.lowerLink .cms_text a figure img,
	.centerBlock .cms_text > a figure img {
		transition: transform .3s ease-in-out;
	}
	.lowerLink .cms_text a:hover,
	.centerBlock .cms_text > a:hover {
		opacity: 1;
	}
	.lowerLink .cms_text a:hover figure img,
	.centerBlock .cms_text > a:hover figure img {
		transform: scale(1.1);
	}
}
/* ------------------------------
 下層ページリンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.lowerLink {
		flex-direction: column;
		gap: 20px 0;
	}
	.lowerLink .cms_text a {
		border-radius: 8px;
	}
	.lowerLink .cms_text p {
		font-size: 1.6rem;
	}
	/* -- テキストだけのリンク -- */
	.lowerLink:not(:has(img)) {
		row-gap: 10px;
	}
	.lowerLink .cms_link a::after {
		right: 15px;
		width: 19px;
		height: 14px;
	}
}
/* ------------------------------
 ページ内リンク（PC）
------------------------------ */
.pageLink {
	display: flex;
	flex-direction: column;
	gap: 0.8em;
	background-color: var(--bg-color);
	border: var(--border);
	border-radius: 10px;
	padding: 35px;
}
.cms_block.pageLink::after {
	content: none;
}
.pageLink .cms_link {
	margin-bottom: 0;
}
.pageLink .cms_link a {
	display: block;
	font-weight: 500;
	padding-left: calc(18px + 1em);
}
.pageLink .cms_link a::after {
	position: absolute;
	top: 0.5em;
	left: 0;
	margin: -2px 0 0 0 !important;
}
/* ------------------------------
 ページ内リンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.pageLink {
		gap: 0.5em;
		border-radius: 6px;
		padding: 20px 5%;
	}
	.pageLink .cms_link a {
		display: block;
		font-weight: 500;
		padding-left: calc(16px + 0.7em);
	}
}
/* ------------------------------
 埋め込み
------------------------------ */
.map,
.youtube {
	text-align: center;
}
.map iframe,
.youtube iframe {
	width: 100% !important;
	height: 100% !important;
	aspect-ratio: 16 / 9 !important;
	border: 0;
}
/* ----------------------
 埋め込み（SP）
---------------------- */
@media screen and (max-width: 767px) {
	.map {
		aspect-ratio: 1 / 1 !important;
	}
}
/* ------------------------------
 新着情報（PC）
------------------------------ */
/* -- 新着情報一覧 -- */
.newsList li {
	width: 100%;
	padding: 19px 0 20px;
	border-bottom: var(--border);
}
.newsList li:first-child {
	border-top: var(--border);
}
/* ブランクアイコン */
span.blank {
	display: none;
}
.newsList li a {
	color: var(--main-font-color);
	text-decoration: none;
}
.newsList li a[target="_blank"] span.blank {
	position: relative;
	display: inline-block;
	width: 11px;
	height: 11px;
	margin-left: 5px;
}
.newsList li a[target="_blank"] span.blank img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
/* NEWアイコン */
.newsList li .headline span.new {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	background-color: #ed1c24;
	letter-spacing: 0.035em;
	border-radius: 12px;
	vertical-align: middle;
	padding: 1px 8px 3px;
	margin: -3px 0 0 5px;
}
/* お知らせタイトル */
.newsList .headline {
	width: 100%;
	padding-top: 7px;
	line-height: 1.5;
}
/* リンクありの場合 */
.newsList .headline a {
	position: relative;
	display: inline-block;
}
/* 日付 */
.date {
	display: inline-block;
	color: #828993;
}
.newsList .date {
	padding-top: 2px;
	line-height: 20px;
}
/* カテゴリ */
.cate {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 90px;
	height: 22px;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--blue-color);
	line-height: 1;
	background-color: #fff;
	border: 1px solid #c6d0e0;
	border-radius: 4px;
	padding: 0 10px;
}
.date + .cate {
	margin-left: 5px;
}
/* -- 新着情報詳細 -- */
.dateBox {
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
	/* -- スクロール（Simplebar） -- */
	.scrollBox {
		position: relative;
		height: 298px;
		padding-right: 40px;
	}
	.scrollBox::before,
	.scrollBox::after {
		content: "";
		position: absolute;
		width: calc(100% - 40px);
		height: 2px;
		background: var(--border-color);
		top: 0;
		left: 0;
		z-index: 1;
	}
	.scrollBox::after {
		height: 1px;
		top: auto;
		bottom: 0;
	}
	.scrollBox .simplebar-track.simplebar-horizontal {
		display: none;
	}
	.scrollBox .simplebar-track {
		background: transparent;
		width: 20px !important;
		right: -8px;
	}
	.scrollBox .simplebar-track::before {
		content: "";
		width: 4px;
		height: 100%;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		background: var(--border-color);
	}
	.scrollBox .simplebar-scrollbar::before {
		width: 4px;
		background: var(--blue-color);
		border-radius: 0;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		opacity: 1 !important;
	}
}
/* ------------------------------
 新着一覧（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- 新着情報一覧 -- */
	.newsList li {
		padding: 12px 0 13px;
	}
	/* NEWアイコン */
	.newsList li .headline span.new {
		font-size: 1.1rem;
		border-radius: 11px;
		padding: 1px 6px 3px;
		margin: -2px 0 0 4px;
	}
	/* スマホ時は最後から3件目まで非表示 */
	.newsBox .newsList.other li:nth-child(4),
	.newsBox .newsList.other li:nth-child(5),
	.newsBox .newsList.other li:nth-child(6),
	.cms_block .newsList li:nth-child(4),
	.cms_block .newsList li:nth-child(5),
	.cms_block .newsList li:nth-child(6) {
		display: none;
	}
}
/* ------------------------------
 事例（PC）
------------------------------ */
.mainContents .caseBlock {
	display: flex;
	flex-flow: row wrap;
	gap: 30px 6.04%;
}
.caseBlock .caseBox a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	flex-grow: 1;
}
.caseBlock .caseBox a figure {
	aspect-ratio: 350 / 202;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
}
.caseBlock .caseBox a figure:has(img.border) {
	border: var(--border);
}
.caseBlock .caseBox a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease-in-out;
}
.caseBlock .caseBox a .cate {
	height: 23px;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	background-color: #999;
	border: none;
	border-radius: 2px;
}
.mainContents .caseBlock .caseBox a .date {
	font-size: 1.4rem;
	line-height: 1;
}
.caseBlock .caseBox a .title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 10px;
}
.caseBlock .caseBox a .cateBox {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.caseBlock .caseBox a .text {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--blue-color);
}
.caseBlock .caseBox a .title,
.caseBlock .caseBox a .text,
.caseBlock .caseBox a .cateBox {
	padding: 0 10px;
}
@media print, screen and (min-width: 768px) {
	.mainContents .caseBlock .caseBox {
		width: 46.98%;
	}
	.mainContents .caseBlock .caseBox a .date {
		line-height: 22px;
	}
	.caseBlock .caseBox a:hover {
		opacity: 1;
	}
	.caseBlock .caseBox a:hover figure img {
		transform: scale(1.1);
	}
}
/* ------------------------------
 事例（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.mainContents .caseBlock {
		gap: 30px 5.18%;
	}
	.mainContents .caseBlock .caseBox {
		width: 47.41%;
	}
	.mainContents .caseBlock .caseBox a figure {
		margin-bottom: 10px;
	}
	.mainContents .caseBlock .caseBox a .title,
	.mainContents .caseBlock .caseBox a .text,
	.mainContents .caseBlock .caseBox a .cateBox {
		padding: 0;
	}
	.mainContents .caseBlock .caseBox a .cateBox {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px 0;
		margin-bottom: 8px;
	}
	.mainContents .caseBlock .caseBox a .cate {
		height: 22px;
		font-size: 1.2rem;
	}
	.mainContents .caseBlock .caseBox a .title {
		font-size: 1.4rem;
		line-height: 1.4;
		margin-bottom: 8px;
	}
	.mainContents .caseBlock .caseBox a .text {
		font-size: 1.3rem;
		line-height: 1.4;
	}
}
/* ------------------------------
 支援メニュー（PC）
------------------------------ */
/* -- 各サイトへのリンク -- */
.centerBlock .cms_text {
	background-color: var(--blue-color);
	border-radius: 10px;
	overflow: hidden;
}
.centerBlock .cms_text a {
	display: block;
	text-decoration: none;
}
.centerBlock .cms_text > a {
	color: #fff;
}
.centerBlock .cms_text:not(:has(.asapLink)) > a {
	height: 100%;
}
.centerBlock .cms_text .textBox {
	padding: 27px;
}
.centerBlock .cms_text .textBox p {
	position: relative;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 15px;
}
.centerBlock .cms_text .textBox p::after {
	position: absolute;
	width: 38px;
	height: 38px;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: url(../img/icon_arrowbox_38.svg) no-repeat 0 0 / cover;
}
/* A-SAP */
.centerBlock .cms_text .asapLink {
	padding: 0 27px 27px 27px;
}
.centerBlock .cms_text .asapLink a {
	position: relative;
	display: block;
	text-align: center;
	background-color: #fff;
	padding: 18px 48px 15px 20px;
	border-radius: 7px;
}
.centerBlock .cms_text .asapLink a::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	bottom: 0;
	right: 24px;
	margin: auto;
	background: url(../img/icon_arrowbox_b_24.svg) no-repeat 0 0 / cover;
}
.centerBlock .cms_text .asapLink a img {
	width: 207px;
}
@media print, screen and (min-width: 768px) {
	.inBlock.centerBlock,
	.cms_block.centerBlock {
		display: flex;
		justify-content: space-between;
		width: 94.792%;
		max-width: 1820px;
		margin-left: auto;
		margin-right: auto;
	}
	.cms_block.centerBlock::after {
		content: none;
	}
	.centerBlock .cms_text {
		width: 48.627%;
		max-width: 885px;
		margin-bottom: 0;
	}
	.centerBlock .cms_text > a {
		display: flex;
		flex-direction: column;
	}
}
/* ------------------------------
 支援メニュー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.centerBlock .cms_text {
		border-radius: 8px;
	}
	.centerBlock .cms_text:not(:last-child) {
		margin-bottom: 15px;
	}
	.centerBlock .cms_text .textBox {
		padding: 20px 5% 25px;
	}
	.centerBlock .cms_text .textBox p {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}
	.centerBlock .cms_text .textBox p::after {
		width: 32px;
		height: 32px;
		background-image: url(../img/icon_arrowbox_32.svg);
	}
	/* A-SAP */
	.centerBlock .cms_text .asapLink {
		padding: 0 5% 20px 5%;
	}
	.centerBlock .cms_text .asapLink a {
		padding: 18px calc(30px + 5%) 15px 5%;
	}
	.centerBlock .cms_text .asapLink a::after {
		right: 5%;
	}
	.centerBlock .cms_text .asapLink a img {
		width: 190px;
	}
}
/* ------------------------------
 コーディネーター紹介（PC）
------------------------------ */
.cms_image.coordinator img {
	border-radius: 10px;
}
.cms_image.coordinator .cms_caption_b {
	margin-top: 0;
	font-size: inherit;
}
.cms_image.coordinator .cms_caption_b p,
.cms_text.coordinator p {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 5px;
}
.cms_image.coordinator .cms_caption_b p span,
.cms_text.coordinator p span {
	font-size: 1.6rem;
	font-weight: normal;
}
.cms_image.coordinator .cms_caption_b .line-t,
.cms_text.coordinator .line-t {
	margin-top: 35px;
}
@media print, screen and (min-width: 768px) {
	.cms_image.coordinator {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.cms_image.coordinator img {
		width: 18.727%;
		margin-bottom: 0;
	}
	.cms_image.coordinator .cms_caption_b {
		width: 78.278%;
	}
	.cms_image.coordinator .cms_caption_b p span,
	.cms_text.coordinator p span {
		margin-left: 10px;
	}
}
/* ------------------------------
 コーディネーター紹介（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.cms_image.coordinator .cms_caption_b {
		margin-top: 20px;
	}
	.cms_image.coordinator .cms_caption_b p,
	.cms_text.coordinator p {
		font-size: 1.8rem;
	}
	.cms_image.coordinator .cms_caption_b p span,
	.cms_text.coordinator p span {
		display: block;
		margin-top: 3px;
	}
	.cms_image.coordinator .cms_caption_b .line-t,
	.cms_text.coordinator .line-t {
		margin-top: 15px;
	}
}
/* ------------------------------
 流れ（PC）
------------------------------ */
.flowBox .w1-3 p {
	position: relative;
	font-size: 2.0rem;
	font-weight: 500;
	color: #fff !important;
	text-align: center;
	line-height: 1.4;
	background-color: var(--blue-color);
	border-radius: 7px;
	padding: 17px 10px;
}
.flowBox .w1-3 p:has(span:not(span[class])) {
	padding: 17px calc(15px + 2em);
}
.flowBox .w1-3 p:not(:last-child) {
	margin-bottom: 30px;
}
.flowBox .w1-3 p:not(:last-child)::after {
	content: "";
	width: 24px;
	height: 11px;
	background-color: var(--blue-color);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: auto;
}
.flowBox .w1-3 p.orange,
.flowBox .w1-3 p.orange:not(:last-child)::after {
	background-color: var(--asap-color);
}
.flowBox .w1-3 p.green,
.flowBox .w1-3 p.green:not(:last-child)::after {
	background-color: #00a99d;
}
.flowBox .w1-3 p span {
	width: 2em;
	height: fit-content;
	font-size: 3.0rem;
	line-height: 1;
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 2px;
	margin: auto;
}
.flowBox .borderBox {
	border-width: 6px;
    padding: 20px 25px;
}
/* ------------------------------
 流れ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.flowBox .w1-3 p {
		font-size: 1.8rem;
		padding: 12px 10px;
	}
	.flowBox .w1-3 p:has(span:not(span[class])) {
		padding: 12px calc(15px + 2em);
	}
	.flowBox .w1-3 p:not(:last-child) {
		margin-bottom: 20px;
	}
	.flowBox .w1-3 p span {
		font-size: 2.4rem;
	}
	.flowBox .borderBox {
		padding: 20px 5%;
	}
}
/* ------------------------------
 パートナー（PC）
------------------------------ */
.cms_image.partner {
	position: relative;
	border: solid 2px var(--border-color);
	border-radius: 10px;
	overflow: hidden;
}
.cms_image.partner a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: left;
}
.cms_image.partner img {
	width: 100%;
	height: auto;
}
.cms_image.partner .cms_caption_b {
	flex-grow: 1;
	font-size: inherit;
	background-color: var(--bg-color);
	padding: 25px 35px;
	margin-top: 0;
}
@media print, screen and (min-width: 768px) {
	.cms_image.partner {
		display: flex;
		align-items: stretch;
		min-height: 212px;
	}
	.cms_image.partner a {
		display: flex;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	.cms_image.partner .cms_caption_b {
		transition: opacity .3s ease-in-out;
		pointer-events: none;
	}
	.cms_image.partner a:hover + .cms_caption_b {
		opacity: .7;
	}
	.cms_image.partner img {
		width: 31.691%;
	}
	.cms_image.partner .cms_caption_b {
		width: 100%;
		margin-left: 31.691%;
	}
}
/* ------------------------------
 パートナー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.cms_image.partner {
		border-radius: 7px;
	}
	.cms_image.partner a {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	.cms_image.partner img {
		max-height: 122px;
		object-fit: cover;
	}
	.cms_image.partner .cms_caption_b {
		padding: 20px 5%;
		margin-top: 122px;
	}
}
/* ------------------------------
 部品ベンチマーク（PC）
------------------------------ */
.contents .partsList {
	display: flex;
	flex-flow: row wrap;
}
.contents .partsList::after {
	content: none;
}
.contents .partsList .cms_image.partsBox {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 0;
}
.contents .partsList .cms_image.partsBox > .cms_pdf:not(.dlBox) a {
	display: block;
	text-align: left;
}
.contents .partsList .cms_image.partsBox > .cms_pdf.dlBox {
	width: 100%;
}
.contents .partsList .cms_image.partsBox > a {
	display: block;
	width: 100%;
	height: 100%;
	color: var(--main-font-color);
	text-decoration: none;
}
.contents .partsList .cms_image.partsBox > a:not(:last-child) {
	margin-bottom: 10px;
}
.contents .partsList .partsBox img {
	width: 100%;
	height: 203px;
	object-fit: cover;
	border-radius: 10px;
}
.contents .partsList .partsBox .cms_caption_b {
	font-size: 1.5rem;
	font-weight: bold;
	transition: opacity .3s ease-in-out;
	pointer-events: none;
}
.contents .partsList .partsBox .cms_caption_b p {
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 10px;
}
.contents .partsList .partsBox .cms_caption_b table,
.contents .partsList .partsBox .cms_caption_b table th,
.contents .partsList .partsBox .cms_caption_b table td {
	border: none !important;
	padding: 0 !important;
}
.contents .partsList .partsBox .cms_caption_b table tr {
	display: grid;
	align-items: start;
	grid-template-columns: 75px auto;
	column-gap: 10px;
}
.contents .partsList .partsBox .cms_caption_b table tr:not(:last-child) {
	margin-bottom: 8px;
}
.contents .partsList .partsBox .cms_caption_b table th {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 75px;
	height: 25px;
	font-size: 1.3rem;
	color: #fff;
	background-color: var(--blue-color);
	border-radius: 3px;
	padding: 0;
}
.contents .partsList .partsBox .cms_caption_b table tr:last-child th {
	background-color: var(--evc-color);
}
@media print, screen and (min-width: 768px) {
	.contents .partsList {
		gap: 40px 3.948%;
	}
	.contents .partsList .partsBox {
		width: 30.702%;
	}
	.contents .partsList .cms_image.partsBox > a {
		display: flex;
		flex-direction: column;
	}
	.contents .partsList .partsBox .cms_caption_b {
		flex-grow: 1;
	}
}
/* ------------------------------
 部品ベンチマーク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .partsList {
		gap: 35px 0;
	}
	.contents .partsList .partsBox {
		width: 100%;
	}
	.contents .partsList .partsBox img {
		border-radius: 7px;
	}
	.contents .partsList .partsBox .cms_caption_b {
		font-size: 1.4rem;
	}
	.contents .partsList .partsBox .cms_caption_b p {
		font-size: 1.6rem;
	}
	.contents .partsList .partsBox .cms_caption_b table tr:not(:last-child) {
		margin-bottom: 6px;
	}
	.contents .partsList .partsBox .cms_caption_b table th {
		height: 24px;
		font-size: 1.2rem;
	}
}
/* ------------------------------
 次世代自動車センター　事業紹介（PC）
------------------------------ */
.contents .simple.business table tr:first-child th {
	border-top: var(--border);
}
.contents .simple.business table tr th {
	font-size: 2.5rem;
	font-weight: normal;
	color: var(--blue-color);
	line-height: 1;
	padding: 35px 0;
}
.contents .simple.business table tr th strong {
	display: inline-block;
	font-size: 4.0rem;
	vertical-align: middle;
	margin-top: -15px;
	margin-right: 5px;
}
@media print, screen and (min-width: 768px) {
	.contents .simple.business table tr:first-child td {
		border-top: var(--border);
	}
}
/* ------------------------------
 次世代自動車センター　事業紹介（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .simple.business table tr th {
		font-size: 2.0rem;
		padding: 22px 0 12px;
	}
	.contents .simple.business table td {
		padding: 0;
	}
	.contents .simple.business table td:last-child {
		padding: 8px 0 15px;
	}
	.contents .simple.business table td:not(:last-child) {
		border-bottom: none;
	}
	.contents .simple.business table tr th strong {
		font-size: 3.0rem;
		margin-top: -13px;
		margin-right: 3px;
	}
}
/* ------------------------------
 サイト内検索（PC）
------------------------------ */
.gsc-overflow-hidden {
	overflow: auto !important;
}
.cms_text .gsc-results-wrapper-overlay {
	position: static !important;
	width: 100%;
	box-shadow: none;
	padding: 0;
	overflow: visible;
}
.cms_text .gsc-modal-background-image {
	position: relative !important;
	background: transparent;
}
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area {
    max-width: 100%;
}
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table,
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table tr,
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table th,
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table td {
	border: none;
}
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table th,
.cms_text .gsc-control-wrapper-cse .gsc-above-wrapper-area table td {
	padding: 0;
}
.cms_text .gsc-control-wrapper-cse .gsc-wrapper {
	max-width: 100%;
}
.cms_block .gsc-control-wrapper-cse a:hover {
	opacity: 1;
}
.cms_block .gsc-control-wrapper-cse a[target="_blank"]::after {
	content: none;
}

/* ------------------------------
 メルマガフォーム（PC）
------------------------------ */
form:not(.formBlock form) :is(input, select, textarea) {
    border-radius: 3px;
    border: 1px solid #aaa;
    font-family: メイリオ, Meiryo, Arial, Verdana, "Helvetica Neue", Helvetica, sans-serif;
    padding: 1px;
    display: inline-block;
}
form:not(.formBlock form) input[type="submit"] {
    text-align: center;
    padding: 4px 12px;
    line-height: 16px;
    cursor: pointer;
    background: #eee;
    font-family: メイリオ, Meiryo, Arial, Verdana, "Helvetica Neue", Helvetica, sans-serif;
    border: 1px solid #aaa;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(#fff, #eee, #eee);
    background-image: linear-gradient(#fff, #eee, #eee);
}
/* ------------------------------
 メルマガフォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	form:not(.formBlock form) select:not([multiple="multiple"]) {
		width: 100%;
	}
}