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

/*
	導入事例
-----------------------------------------------------------------------------------------------*/
/* 企業名
============================== */
.cmnCompanyName{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 80px;
}
.cmnCompanyName .logo{
	max-width: 250px;
	border-radius: var(--border-radius-5);
	overflow: hidden;
}
.cmnCompanyName .logo img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cmnCompanyName .name{
	font-size: 3.4rem;
	font-weight: 700;
}

/* 企業プロフィール
============================== */
.cmnCompanyProfile{
	display: flex;
	align-items: flex-start;
	gap: 30px;
}
/* 画像 */
.cmnCompanyProfile .img{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 260px;
}
.cmnCompanyProfile .img img{
	border-radius: var(--border-radius-5);
}
.cmnCompanyProfile figcaption{
	font-size: 1.2rem;
	text-align: justify;
}
/* 表 */
.cmnCompanyProfile .cmnTbl{
	width: 450px;
}
.cmnCompanyProfile .cmnTblTh{
	width: 140px;
	color: #fff;
	background-color: var(--color-natural-grey-400);
}


/*
	共通 記事カード
-----------------------------------------------------------------------------------------------*/
.swiperWrapper{
	display: flex;
	width: 100%;
	overflow: hidden;
}
.cmnListArticleCardWrapper{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}
.cmnListArticleCard{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.cmnListArticleCard > li{
	width: 260px;
}
.cmnListArticleCard > li a{
	display: flex;
	flex-direction: column;
	position: relative;
}
.cmnListArticleCard > li a *{
	transition: all 0.4s;
}
/* カテゴリー */
.cmnListArticleCard > li .listCategory{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}
.cmnListArticleCard > li .listCategory > li{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 22px;
	font-size: 1.0rem;
	color: #fff;
	background-color: var(--color-primary-red-default);
	line-height: 1.0;
	border-radius: 11px;
}
/* 画像 */
.cmnListArticleCard > li .img{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	margin-bottom: 15px;
	background-color: #fff;
	border: 1px solid var(--color-natural-grey-100);
	border-radius: var(--border-radius-5);
	overflow: hidden;
}
.cmnListArticleCard > li img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* タイトル */
.cmnListArticleCard > li .tit{
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: 600;
}
/* サブタイトル */
.cmnListArticleCard > li .subTit{
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 20px;
	margin-bottom: 5px;
	padding-inline: 10px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	background-color: var(--color-natural-grey-900);
	border-radius: 2px;
}
/* テキスト */
.cmnListArticleCard > li .txt{
	margin-bottom: 10px;
	text-align: justify;
}
/* タグ */
.cmnListArticleCard > li .listTag{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
}
.cmnListArticleCard > li .listTag > li{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20px;
	padding-inline: 10px;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.0;
	background-color: var(--color-natural-grey-100);
	border-radius: 2px;
}
/* 日付 */
.cmnListArticleCard > li .dataBtnArea{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
.cmnListArticleCard > li .data{
	width: calc(100% - 30px);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--color-natural-grey-400);
}
/* ボタン */
.cmnListArticleCard > li .btn{
	width: 30px;
	aspect-ratio: 1/1;
	position: relative;
}
.cmnListArticleCard > li .btn::after{
	content: "";
	width: 26px;
	aspect-ratio: 1/1;
	background-color: var(--color-primary-red-default);
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%) scale(0.23);
	transition: all 0.4s;
}
@media (any-hover: hover){
	.cmnListArticleCard > li a:hover{
		opacity: 1;
	}
	.cmnListArticleCard > li a:hover .tit,
	.cmnListArticleCard > li a:hover .txt{
		color: var(--color-primary-red-default);
	}
	.cmnListArticleCard > li a:hover img{
		transform: scale(1.1);
	}
	.cmnListArticleCard > li a:hover .btn::after{
		background-image: url("../images/ico_arrow_wh.svg");
		transform: translateY(-50%) scale(1);
	}
}

/* swiper
============================== */
.jsSwiperArticleCard.swiper{
	overflow: visible;
}
.jsSwiperArticleCard .cmnListArticleCard{
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0;
	width: 260px;
}
.jsSwiperArticleCard .swiper-slide{
	transition: all 0.4s;
	transform: scale(0.9);
}
.jsSwiperArticleCard .swiper-slide-active {
	transform: scale(1.0);
}
/* swiper-button */
[class*="jsSwiperBtn"]{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--color-primary-red-default);
	position: absolute;
	top: 78px;
	transition: all 0.4s;
}
[class*="jsSwiperBtn"]::before,
[class*="jsSwiperBtn"]::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all 0.4s;
}
[class*="jsSwiperBtn"]::before{
	width: 10px;
	aspect-ratio: 1/1;	
	border-top: 2px solid var(--color-primary-red-default);
	border-right: 2px solid var(--color-primary-red-default);
	transform: translate(-50%, -50%) rotate(45deg);
}
[class*="jsSwiperBtn"]::after{
	width: 10px;
	height: 2px;
	background-color: var(--color-primary-red-default);
	transform: translate(-50%, -50%);
}
.jsSwiperBtnPrev{
	left: -25px;
	transform: rotate(-180deg);
}
.jsSwiperBtnNext{
	right: -25px;
}
@media (any-hover: hover){
	[class*="jsSwiperBtn"]:hover{
		background-color: var(--color-primary-red-default);
	}
	[class*="jsSwiperBtn"]:hover:before{
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
	[class*="jsSwiperBtn"]:hover:after{
		background-color: #fff;
	}
}


/*
	共通 パーツ
-----------------------------------------------------------------------------------------------*/
/* 記事詳細
============================== */
.articleDetailWrapper{
	margin-bottom: 80px;
}

/* グレー背景
============================== */
.cmnCtsGrey{
	width: var(--width-800);
	margin: 0 auto;
	padding: 30px;
	background-color: var(--color-natural-grey-25);
	border-radius: var(--border-radius-5);
}

/* コンテンツエリア
============================== */
.cmnCtsAreaL{
	margin-bottom: 50px;
}
.cmnCtsAreaM{
	margin-bottom: 30px;
}
.cmnCtsAreaS{
	margin-bottom: 20px;
}
.cmnCtsAreaL:last-child,
.cmnCtsAreaM:last-child,
.cmnCtsAreaS:last-child{
	margin-bottom: 0;
}

/* コラム
============================== */
/* 画像+文章 */
[class^="cmnColumnArea"]{
	display: flex;
	align-items: flex-start;
	gap: 30px;
}
[class^="cmnColumnArea"] .cmnTxtBase{
	width: 450px;
}
[class^="cmnColumnArea"] .cmnImg{
	width: 260px;
}
/* 文章+画像 */
.cmnColumnAreaReverse{
	flex-direction: row-reverse;
}

/* 課題と導入効果
============================== */
.cmnCtsIssue{
	padding: 50px;
	background-color: var(--color-natural-grey-25);
	border-radius: var(--border-radius-5);
}
.cmnCtsEffect{
	padding: 50px;
	background-color: var(--color-primary-red-background);
	border-radius: var(--border-radius-5);
}

/* 著者プロフィール
============================== */
.cmnAuthorProfile{
	display: flex;
	align-items: center;
	gap: 20px;
}
/* 画像 */
.cmnAuthorProfile img{
	width: 100px;
	aspect-ratio: 1/1;
}
/* テキスト */
.cmnAuthorProfile .orgName{
	font-size: 1.3rem;
	line-height: 1.5;
}
.cmnAuthorProfile .name span{
	display: inline-block;
	margin-right: 5px;
	font-size: 1.6rem;
	font-weight: 600;
}

/* インタビュープロフィール
============================== */
.cmnListProfile{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cmnListProfile > li{
	padding: 25px;
	width: calc((100% - 10px)/2);
	background-color: var(--color-natural-grey-25);
	border-radius: var(--border-radius-5);
}

/* pager
============================== */
.cmnPager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
/* 矢印 */
.cmnPagerPrev,
.cmnPagerNext {
	width: 50px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--color-natural-grey-900);
	position: relative;
	transition: all 0.4s;
}
.cmnPagerPrev::before,
.cmnPagerPrev::after,
.cmnPagerNext::before,
.cmnPagerNext::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all 0.4s;
}
.cmnPagerPrev::before,
.cmnPagerNext::before {
	width: 10px;
	aspect-ratio: 1/1;
	border-top: 2px solid var(--color-natural-grey-900);
	border-right: 2px solid var(--color-natural-grey-900);
	transform: translate(-50%, -50%) rotate(45deg);
}
.cmnPagerPrev::after,
.cmnPagerNext::after {
	width: 10px;
	height: 2px;
	background-color: var(--color-natural-grey-900);
	transform: translate(-50%, -50%);
}
.cmnPagerPrev {
	transform: rotate(-180deg);
}
/* number */
.cmnPagerNum {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	aspect-ratio: 1/1;
	padding-inline: 10px;
	border-radius: var(--border-radius-5);
	background-color: var(--color-natural-grey-50);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-natural-grey-900);
	transition: all 0.4s;
}
@media (any-hover: hover) {
	.cmnPagerPrev:hover,
	.cmnPagerNext:hover {
		background-color: var(--color-natural-grey-900);
		opacity: 1;
	}
	.cmnPagerPrev:hover::before,
	.cmnPagerNext:hover::before {
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
	.cmnPagerPrev:hover::after,
	.cmnPagerNext:hover::after {
		background-color: #fff;
	}
	.cmnPagerNum:hover{
		color: #fff;
		background-color: var(--color-primary-red-default);
		opacity: 1;
	}
}
/* active */
.cmnPagerNum.isCurrent {
	background-color: var(--color-primary-red-default);
	color: #fff;
	pointer-events: none;
}

/* 絞り込みボタン
============================== */
.cmnListFilterBtn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.cmnListFilterBtn .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 6px 20px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.0;
	background-color: var(--color-natural-grey-900);
	border-radius: var(--border-radius-2);
	transition: all 0.4s;
}
/* hover */
@media (any-hover: hover){
	.cmnListFilterBtn .btn:hover {
		background-color: var(--color-primary-red-default);
	}
}
/* active */
.cmnListFilterBtn .btn.is-active{
	background-color: var(--color-primary-red-default);
}

/* タブ
============================== */
.cmnTabAreaWrapper{
	margin-bottom: 50px;
}
.cmnTabArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 5px;
}
/* タブボタン */
.cmnTabLabel{
	display: flex;
	align-items: center;
	justify-content: center;
	order: -1;
	width: calc((100% - 15px)/4);
	min-height: 40px;
	padding: 10px;
	font-weight: 700;
	color: #fff;
	background-color: var(--color-natural-grey-100);
	border-radius: var(--border-radius-5);
	cursor: pointer;
	transition: all 0.4s;
}
/* radio非表示 */
.cmnTabLabel input {
	display: none;
}
/* コンテンツ */
.cmnTabPanel {
	display: none;
	width: 100%;
	margin-top: 50px;
}
/* active */
.cmnTabLabel:has(:checked) {
	background-color: var(--color-primary-red-default);
	opacity: 1;
	pointer-events: none;
}
.cmnTabLabel:has(:checked) + .cmnTabPanel {
	display: block;
}
/* hover */
@media (any-hover: hover) {
	.cmnTabLabel:hover:not(:has(:checked)) {
		background-color: var(--color-primary-red-default);
	}
}
/* タイトル */
.cmnTabPanelTit {
	margin-bottom: 20px;
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
	color: var(--color-primary-red-default);
}

/* 課題解決
============================== */
.cmnIssueSolutionCtsWrapper{
	margin-bottom: 80px;
}
.cmnIssueSolutionCtsWrapper:last-child{
	margin-bottom: 0;
}
.cmnIssueSolutionArea{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-radius: var(--border-radius-5);
	position: relative;
}
/* 課題 */
.cmnIssueSolutionArea.itemIssue{
	background-color: var(--color-natural-grey-700);
}
.cmnIssueSolutionArea.itemIssue::after {
	content: "";
	width: 20px;
	height: 10px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background-color: var(--color-natural-grey-700);
	position: absolute;
	left: 50%;
	bottom: -9px;
	transform: translateX(-50%);
	z-index: 1;
}
/* 解決 */
.cmnIssueSolutionArea.itemSolution{
	background: var(--gradation-primary-red);
}
.cmnIssueSolutionArea.itemSolution .label{
	color: var(--color-primary-red-default);
}
/* ラベル */
.cmnIssueSolutionArea .label{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	min-height: 50px;
	font-size: 2.0rem;
	font-weight: 600;
	background-color: #fff;
	border-radius: var(--border-radius-5);
}
/* テキスト */
.cmnIssueSolutionArea .txt{
	width: calc(100% - 95px);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
	text-align: justify;
}

/* アンカーリンク
============================== */
.cmnListAnkerLink{
	display: flex;
	flex-direction: column;
}
.cmnListAnkerLink > li a{
	display: flex;
	align-items: center;
	justify-content: space-between	;
	min-height: 30px;
	padding-block: 10px;
	border-bottom: 1px solid var(--color-natural-grey-100);
}
/* テキスト */
.cmnListAnkerLink > li .txt{
	width: calc(100% - 30px);
	padding-right: 10px;
	font-weight: 600;
	transition: all 0.4s;
}
/* ボタン */
.cmnListAnkerLink > li .btn{
	width: 30px;
	aspect-ratio: 1/1;
	position: relative;
}
.cmnListAnkerLink > li .btn::after{
	content: "";
	width: 26px;
	aspect-ratio: 1/1;
	background-color: var(--color-primary-red-default);
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px auto;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%) rotate(90deg) scale(0.23);
	transition: all 0.4s;
}
/* hover */
@media (any-hover: hover){
	.cmnListAnkerLink > li a:hover{
		opacity: 1;
	}
	.cmnListAnkerLink > li a:hover .tit,
	.cmnListAnkerLink > li a:hover .txt{
		color: var(--color-primary-red-default);
	}
	.cmnListAnkerLink > li a:hover img{
		transform: scale(1.1);
	}
	.cmnListAnkerLink > li a:hover .btn::after{
		background-image: url("../images/ico_arrow_wh.svg");
		transform: translateY(-50%) rotate(90deg) scale(1);
	}
}
/* active */
.cmnListAnkerLink a.is-active {
	color: var(--color-primary-red-default);
	background-color: var(--color-primary-red-background);
}
.cmnListAnkerLink a.is-active .txt {
	padding-left: 10px;
}
.cmnListAnkerLink > li a.is-active .btn{
	margin-right: 5px;
}
.cmnListAnkerLink > li a.is-active .btn::after{
	background-image: url("../images/ico_arrow_wh.svg");
	transform: translateY(-50%) rotate(90deg) scale(1);
}


/*
	画像
-----------------------------------------------------------------------------------------------*/
/* メイン画像
============================== */
.cmnImgMain{
	margin-bottom: 80px;
	border-radius: var(--border-radius-5);
	overflow: hidden;
}
.cmnImgMain img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 基本画像
============================== */
.cmnImg{
	width: var(--width-800);
	margin: 0 auto;
	border-radius: var(--border-radius-5);
	overflow: hidden;
}
.cmnImg img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*
	タイトル
-----------------------------------------------------------------------------------------------*/
[class^="cmnTit"]{
	line-height: 1.6;
}

/* スラッシュタイトル
============================== */
.cmnTitSlashArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
/* タイトル */
.cmnTitSlashArea .tit{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cmnTitSlashArea .tit .en{
	font-family: var(--font-family-en);
	font-size: 8.0rem;
	font-weight: 800;
	line-height: 1.0;
	position: relative;
}
.cmnTitSlashArea .tit .en::before{
	content: "";
	display: inline-block;
	width: 60px;
	height: 57px;
	clip-path: polygon(79.143% 0%, 0% 100%, 20.857% 100%, 100% 0%);
	background: var(--gradation-primary-red);
}
.cmnTitSlashArea .tit .jp{
	font-weight: 600;
	color: var(--color-primary-red-default);
}
/* リード */
.cmnTitSlashArea .lead{
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}
/* テキスト */
.cmnTitSlashArea .txt{
	text-align: center;
}

/* 下線センタータイトル
============================== */
.cmnTitBtmLineCenter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
}
/* タイトル */
.cmnTitBtmLineCenter .tit{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	font-size: 2.6rem;
	font-weight: 600;
	text-align: center;
}
.cmnTitBtmLineCenter .tit::after{
	content: "";
	width: 40px;
	height: 3px;
	background: var(--color-primary-red-default);
}
/* リード */
.cmnTitBtmLineCenter .lead{
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}
/* テキスト */
.cmnTitBtmLineCenter .txt{
	text-align: center;
}

/* 記事タイトル
============================== */
.cmnTitArticle{
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-natural-grey-200);
	position: relative;
}
.cmnTitArticle::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50px;
	height: 1px;
	background-color: var(--color-primary-red-default);
}
/* タイトル */
.cmnTitArticle .tit{
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.8;
}
/* サブタイトル */
.cmnTitArticle .sub{
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 25px;
	padding: 5px 15px;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1.2;
	background-color: var(--color-natural-grey-900);
	border-radius: var(--border-radius-2);
}
/* テキスト */
.cmnTitArticle .txt{
	text-align: justify;
}

/* 下線レフトタイトル
============================== */
.cmnTitBtmLineLeft{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--color-primary-red-default);
}
.cmnTitBtmLineLeft::after{
	content: "";
	width: 40px;
	height: 3px;
	background: var(--color-primary-red-default);
}

/* 下線タイトル
============================== */
.cmnTitBtmLine{
	display: inline-block;
	margin-bottom: 15px;
	font-size: 2.2rem;
	font-weight: 600;
	border-bottom: 2px solid;
}

/* 左線タイトル
============================== */
[class^="cmnTitLeftLine"]{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-left: 10px;
	font-weight: 600;
	line-height: 1.6;
	border-left: 3px solid var(--color-primary-red-default);
}
.cmnTitLeftLineL{
	font-size: 2.4rem;
}
.cmnTitLeftLineM{
	font-size: 2.0rem;
}

/* ノーマルタイトル
============================== */
[class^="cmnTitNormal"]{
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.5;
}
[class^="cmnTitNormal"]:last-child{
	margin-bottom: 0;
}
.cmnTitNormalS{
	font-size: 1.6rem;
}


/*
	テキスト
-----------------------------------------------------------------------------------------------*/
/* ベース
============================== */
.cmnTxtBase{
	text-align: justify;
}
/* ボールド */
.cmnTxtBase .bold{
	font-weight: 700;
}

/* テキストリンク
============================== */
.cmnTxtLink{
	display: block;
	margin-bottom: 10px;
	text-decoration: underline;
}
.cmnTxtLink:last-of-type{
	margin-bottom: 0;
}
@media (any-hover: hover){
	.cmnTxtLink:hover{
		color: var(--color-primary-red-default);
		text-decoration: underline;
		opacity: 1;
	}
}

/* テキストリンクリスト
============================== */
.listTxtLink{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.listTxtLink > li a{
	display: flex;
	align-items: center;
}
/* ボタン */
.listTxtLink > li .btn{
	width: 26px;
	aspect-ratio: 1/1;
	background: url("../images/ico_arrow_wh.svg") var(--color-primary-red-default) no-repeat center center / 8px auto;
	border-radius: 50%;
	transition: all 0.4s;
}
@media (any-hover: hover){
	.listTxtLink > li a:hover{
		opacity: 1;
	}
}
/* テキスト */
.listTxtLink > li .txt{
	width: calc(100% - 26px);
	padding-left: 10px;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: justify;
	text-decoration: underline;
	transition: all 0.4s;
}
@media (any-hover: hover){
	.listTxtLink > li a:hover .txt{
		color: var(--color-primary-red-default);
	}
}


/*
	テーブル
-----------------------------------------------------------------------------------------------*/
.cmnTbl{
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--color-natural-grey-200);
}
.cmnTblThead,
.cmnTblTh,
.cmnTblTd{
	padding: 15px 20px;
	border: 1px solid var(--color-natural-grey-200);
	vertical-align: middle;
}
.cmnTblThead{
	color: #fff;
	font-weight: 600;
	text-align: center;
	background-color: var(--color-natural-grey-500);
}
.cmnTblTh{
	width: clamp(150px, 20vw, 200px);
	white-space: nowrap;
	font-weight: 600;
	text-align: center;
	background-color: var(--color-natural-grey-25);
}
.cmnTblTd{
	background-color: #fff;
}


/*
	埋め込み動画
-----------------------------------------------------------------------------------------------*/
.cmnMovie iframe{
	width: 100%;
	aspect-ratio: 16/9;
}

/*
	投稿ページ用フッター
-----------------------------------------------------------------------------------------------*/
.cmnPostFooterWrapper{
	padding-block: 80px;
	background-color: var(--color-natural-grey-25);
}
.cmnPostFooterWrapper .ctsArea{
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.cmnPostFooterWrapper .btnArea,
.cmnPostFooterWrapper + .btnArea{
	margin-top: 50px;
}

/* おすすめの製品はこちら
============================== */
.cmnRecommendBtnArea{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cmnRecommendBtnArea > a{
	width: calc((100% - 30px)/4);
}


@media screen and (max-width:812px){
	/*
		導入事例
	-----------------------------------------------------------------------------------------------*/
	/* 企業名
	============================== */
	.cmnCompanyName{
		gap: 10px;
		margin-bottom: 50px;
	}
	.cmnCompanyName .logo{
		max-width: 150px;
	}
	.cmnCompanyName .name{
		font-size: 2.5rem;
	}

	/* 企業プロフィール
	============================== */
	.cmnCompanyProfile{
		flex-direction: column;
		gap: 20px;
	}
	/* 画像 */
	.cmnCompanyProfile .img{
		width: 100%;
	}
	.cmnCompanyProfile figcaption{
		font-size: 1.1rem;
	}
	/* 表 */
	.cmnCompanyProfile .cmnTbl{
		width: 100%;
	}
	.cmnCompanyProfile .cmnTblTh{
		width: 100%;
	}


	/*
		共通 記事カード
	-----------------------------------------------------------------------------------------------*/
	.swiperWrapper{
		overflow: visible;
	}	
	.cmnListArticleCard{
		justify-content: center;
	}
	/* タイトル */
	.cmnListArticleCard > li .tit{
		font-size: 1.4rem;
	}
	/* サブタイトル */
	.cmnListArticleCard > li .subTit{
		font-size: 1.0rem;
	}
	/* テキスト */
	.cmnListArticleCard > li .txt{
		font-size: 1.3rem;
	}
	/* タグ */
	.cmnListArticleCard > li .listTag > li{
		font-size: 1.0rem;
	}
	/* 日付 */
	.cmnListArticleCard > li .dataBtnArea{
		gap: 5px;
	}
	.cmnListArticleCard > li .data{
		font-size: 1.2rem;
	}
	/* ボタン */
	.cmnListArticleCard > li a .btn::after{
		background-image: url("../images/ico_arrow_wh.svg");
		transform: translateY(-50%) scale(1);
	}

	/* swiper
	============================== */
	/* swiper-button */
	[class*="jsSwiperBtn"]{
		width: 40px;
		height: 40px;
		top: 80px;
	}
	[class*="jsSwiperBtn"]::before{
		width: 8px;
	}
	.jsSwiperBtnPrev{
		left: -20px;
	}
	.jsSwiperBtnNext{
		right: -20px;
	}


	/*
		共通 パーツ
	-----------------------------------------------------------------------------------------------*/
	/* 記事詳細
	============================== */
	.articleDetailWrapper{
		margin-bottom: 50px;
	}

	/* グレー背景
	============================== */
	.cmnCtsGrey{
		padding: 20px;
	}

	/* コンテンツエリア
	============================== */
	.cmnCtsAreaL{
		margin-bottom: 30px;
	}
	.cmnCtsAreaM{
		margin-bottom: 20px;
	}
	.cmnCtsAreaS{
		margin-bottom: 15px;
	}

	/* コラム
	============================== */
	/* 画像+文章 */
	[class^="cmnColumnArea"]{
		flex-direction: column;
		gap: 15px;
	}
	[class^="cmnColumnArea"] .cmnTxtBase{
		width: 100%;
	}
	[class^="cmnColumnArea"] .cmnImg{
		width: 100%;
	}
	/* 文章+画像 */
	.cmnColumnAreaReverse{
		flex-direction: column;
	}

	/* 課題と導入効果
	============================== */
	.cmnCtsIssue{
		padding: 20px;
	}
	.cmnCtsEffect{
		padding: 20px;
	}

	/* 著者プロフィール
	============================== */
	.cmnAuthorProfile{
		gap: 15px;
	}
	/* 画像 */
	.cmnAuthorProfile img{
		width: 80px;
	}
	/* テキスト */
	.cmnAuthorProfile .orgName{
		font-size: 1.0rem;
	}
	.cmnAuthorProfile .name span{
		font-size: 1.5rem;
	}

	/* インタビュープロフィール
	============================== */
	.cmnListProfile{
		flex-direction: column;
		gap: 5px;
	}
	.cmnListProfile > li{
		padding: 10px;
		width: 100%;
	}

	/* pager
	============================== */
	.cmnPager {
		gap: 10px;
	}
	/* 矢印 */
	.cmnPagerPrev,
	.cmnPagerNext {
		width: 35px;
	}
	.cmnPagerPrev::before,
	.cmnPagerNext::before {
		width: 6px;
		border-top: 1px solid var(--color-natural-grey-900);
		border-right: 1px solid var(--color-natural-grey-900);
	}
	.cmnPagerPrev::after,
	.cmnPagerNext::after {
		width: 6px;
		height: 1px;
	}
	/* number */
	.cmnPagerNum {
		width: 30px;
		padding-inline: 5px;
		font-size: 1.0rem;
	}

	/* 絞り込みボタン
	============================== */
	.cmnListFilterBtn{
		gap: 5px;
	}
	.cmnListFilterBtn .btn{
		min-height: 15px;
		padding: 6px 12px;
		font-size: 1.2rem;
	}

	/* タブ
	============================== */
	.cmnTabAreaWrapper{
		margin-bottom: 30px;
	}
	.cmnTabArea{
		gap: 5px;
	}
	/* タブボタン */
	.cmnTabLabel{
		width: calc((100% - 5px)/2);
		min-height: 35px;
		padding: 5px;
		font-size: 1.2rem;
	}
	/* コンテンツ */
	.cmnTabPanel {
		margin-top: 20px;
	}
	/* タイトル */
	.cmnTabPanelTit {
		margin-bottom: 15px;
		font-size: 1.8rem;
	}

	/* 課題解決
	============================== */
	.cmnIssueSolutionCtsWrapper{
		margin-bottom: 50px;
	}
	.cmnIssueSolutionArea{
		flex-direction: column;
		padding: 15px;
	}
	/* 課題 */
	.cmnIssueSolutionArea.itemIssue::after {
		bottom: -8px;
	}
	/* ラベル */
	.cmnIssueSolutionArea .label{
		width: 100%;
		min-height: 30px;
		margin-bottom: 10px;
		font-size: 1.4rem;
		border-radius: var(--border-radius-2);
	}
	/* テキスト */
	.cmnIssueSolutionArea .txt{
		width: 100%;
		font-size: 1.4rem;
	}

	/* アンカーリンク
	============================== */
	.cmnListAnkerLink > li a{
		min-height: 30px;
		padding-block: 5px;
	}
	/* テキスト */
	.cmnListAnkerLink > li .txt{
		width: calc(100% - 30px);
		font-size: 1.3rem;
	}
	/* ボタン */
	.cmnListAnkerLink > li .btn{
		width: 30px;
	}
	.cmnListAnkerLink > li .btn::after{
		width: 20px;
		background: url("../images/ico_arrow_wh.svg") var(--color-primary-red-default) no-repeat center center / 8px auto;
		right: 50%;
		transform: translate(50%, -50%) rotate(90deg) scale(1);
	}


	/*
		画像
	-----------------------------------------------------------------------------------------------*/
	/* メイン画像
	============================== */
	.cmnImgMain{
		margin-bottom: 50px;
	}

	/* 基本画像
	============================== */
	.cmnImg{
		width: var(--width-800);
		margin: 0 auto 30px;
		border-radius: var(--border-radius-5);
		overflow: hidden;
	}
	.cmnImg:last-child{
		margin: 0 auto;
	}
	.cmnImg img{
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	/*
		タイトル
	-----------------------------------------------------------------------------------------------*/
	/* スラッシュタイトル
	============================== */
	.cmnTitSlashArea{
		gap: 15px;
	}
	/* タイトル */
	.cmnTitSlashArea .tit .en{
		font-size: 4.2rem;
	}
	.cmnTitSlashArea .tit .en::before{
		width: 32px;
		height: 30px;
	}
	.cmnTitSlashArea .tit .jp{
		font-size: 1.2rem;
	}
	/* リード */
	.cmnTitSlashArea .lead{
		font-size: 1.4rem;
	}
	/* テキスト */
	.cmnTitSlashArea .txt{
		font-size: 1.4rem;
	}

	/* 下線センタータイトル
	============================== */
	.cmnTitBtmLineCenter{
		gap: 10px;
		margin-bottom: 20px;
	}
	/* タイトル */
	.cmnTitBtmLineCenter .tit{
		gap: 15px;
		font-size: 1.8rem;
	}
	.cmnTitBtmLineCenter .tit::after{
		width: 30px;
		height: 3px;
	}
	/* リード */
	.cmnTitBtmLineCenter .lead{
		font-size: 1.4rem;
	}
	/* テキスト */
	.cmnTitBtmLineCenter .txt{
		font-size: 1.3rem;
	}

	/* 記事タイトル
	============================== */
	.cmnTitArticle{
		margin-bottom: 25px;
		padding-bottom: 15px;
	}
	/* タイトル */
	.cmnTitArticle .tit{
		font-size: 2.2rem;
	}
	/* サブタイトル */
	.cmnTitArticle .sub{
		min-height: 20px;
		padding: 5px 15px;
		font-size: 1.0rem;
	}

	/* 下線レフトタイトル
	============================== */
	.cmnTitBtmLineLeft{
		gap: 10px;
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.cmnTitBtmLineLeft::after{
		width: 30px;
	}

	/* 下線タイトル
	============================== */
	.cmnTitBtmLine{
		margin-bottom: 15px;
		font-size: 1.6rem;
	}

	/* 左線タイトル
	============================== */
	[class^="cmnTitLeftLine"]{
		margin-bottom: 15px;
	}
	.cmnTitLeftLineL{
		font-size: 1.6rem;
	}
	.cmnTitLeftLineM{
		font-size: 1.4rem;
	}

	/* ノーマルタイトル
	============================== */
	[class^="cmnTitNormal"]{
		margin-bottom: 5px;
	}
	.cmnTitNormalS{
		font-size: 1.4rem;
	}


	/*
		テキスト
	-----------------------------------------------------------------------------------------------*/
	/* テキストリンクリスト
	============================== */
	.listTxtLink{
		gap: 15px;
	}
	/* ボタン */
	.listTxtLink > li .btn{
		width: 20px;
	}
	/* テキスト */
	.listTxtLink > li .txt{
		width: calc(100% - 20px);
		font-size: 1.3rem;
	}


	/*
		テーブル
	-----------------------------------------------------------------------------------------------*/
	.cmnTbl{
		display: block;
		border: none;
	}
	.cmnTbl tbody,
	.cmnTbl tr{
		display: block;
	}
	.cmnTblThead,
	.cmnTblTh,
	.cmnTblTd{
		display: block;
		padding: 15px 0;
		border: none;
		border-top: 1px solid var(--color-natural-grey-200);
	}
	.cmnTblTh{
		padding: 10px;
		width: 100%;
	}
	.cmnTblTd{
		padding: 15px 15px 20px;
	}
	.cmnTbl tr:last-of-type .cmnTblTd{
		border-bottom: 1px solid var(--color-natural-grey-200);
	}

	/* theadがある場合、通常テーブル表示にする */
	.cmnTbl:has(thead) {
		display: block;
		overflow-x: auto;
	}
	.cmnTbl:has(thead) table {
		width: 100%;
	}
	.cmnTbl:has(thead) thead,
	.cmnTbl:has(thead) tbody {
		display: table-row-group;
	}
	.cmnTbl:has(thead) tr {
		display: table-row;
	}
	.cmnTbl:has(thead) th,
	.cmnTbl:has(thead) td {
		display: table-cell;
		padding: 10px;
		border: 1px solid var(--color-natural-grey-200);
		white-space: nowrap;
	}


	/*
		投稿ページ用フッター
	-----------------------------------------------------------------------------------------------*/
	.cmnPostFooterWrapper{
		padding-block: 50px;
	}
	.cmnPostFooterWrapper .ctsArea{
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	.cmnPostFooterWrapper .btnArea,
	.cmnPostFooterWrapper + .btnArea{
		margin-top: 30px;
	}

	/* おすすめの製品はこちら
	============================== */
	.cmnRecommendBtnArea{
		flex-direction: column;
		align-items: center;
	}
	.cmnRecommendBtnArea > a{
		width: clamp(250px, 100%, 300px);
	}
}