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

html{
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}

body{
	margin: 0 auto;
	padding: 0;
	font-size: 1.4em;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	font-weight: 400;
	font-feature-settings: 'palt';
	letter-spacing: 0.1em;
	color: #000000;
	word-break: break-all;
}
h1, h2, h3, h4, h5, h6, p,figure,ul,ol,li,dl,dt,dd{
	margin: 0;
	padding: 0;
	line-height: 145%;
}
p{
	font-size: 100%;
	line-height: 180%;
}

*,*::before,*::after{
	box-sizing: border-box;
}
header,footer,section,aside,nav,article,main{
	display: block;
}
ul li,ol li{
	list-style: none;
}
img {
	border: none;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
a{
	line-height: 125%;
	color: #000000;
	text-decoration: none;
	transition: color 0.25s;
}
a:link,a:visited{
	color: #000000;
}
a:hover{
	color: #000000;
	text-decoration: none;
}

/* button初期化 */
button{
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
}
button:hover{
	cursor: pointer;
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}

	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}


/*
	base
-----------------------------------------------------------------------------------------------*/
/* 変数 */
:root{
	/* color */
	--mainBlue:#009FFF;
	--mainRed:#FF0012;
	--mainYellow:#FFFF00;
	--mainPurple:#AA00BE;
	--mainGreen:#00DC44;

	--bgGray: #F5F5F5;
	--bgSubGray: #EBEBEE;
	--hoverSubGray: #DFE0E8;
	--tagGray: #999999;
	--linkGray: #888888;
	--tblGray: #E8E9ED;
	--darkGray: #222222;
	--otherGray: #CCCCCC;

	--a40Blue:rgb(0 159 255 / .4);
	--a40Red:rgb(255 0 18 / .4);
	--a40Purple:rgb(170 0 190 / .4);
	--a40Green: rgb(0 220 68 / .4);
	--a30Black: rgb(0 0 0 / .3);
	--a20Blue:rgb(0 159 255 / .2);
	--a8Blue: rgb(0 159 255 / .08);

	/* width */
	--col1Width: 1200px;
	--col2Width: 540px;
	--col3Width: 340px;
	--ctsWidth960: 960px;

	/* font */
	--ffNoto: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	--ffEn: 'Poppins', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
}

/* wrapper */
#wrapper{
	position:relative;
	overflow:hidden;
}

/* ctsArea */
.ctsArea{
	width: var(--col1Width);
	padding: 0 30px 80px 30px;
	margin: 0 auto;
}
.ctsArea.w960{
	width: var(--ctsWidth960);
}

/* 背景色 */
.bgGray{
	background-color: var(--bgGray);
}
.bgSubGray{
	background-color: var(--bgSubGray);
}
.bgDarkGray{
	background-color: var(--darkGray);
}


/*
	カラムレイアウト
-----------------------------------------------------------------------------------------------*/
[class*="layoutCol"]{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}

/* 2カラム
--------------------------------------*/
.layoutCol2 > *{
	flex: 0 0 var(--col2Width);
}
@media screen and (min-width:813px){
	.layoutCol2 > *:nth-of-type(2),
	.layoutCol2 > *:nth-of-type(4){
		animation-delay: 0.5s;
	}
}

/* 3カラム
--------------------------------------*/
.layoutCol3 > *{
	flex: 0 0 var(--col3Width);
}


/*
	文字
-----------------------------------------------------------------------------------------------*/
/* 書体 */
.ffEn{
	font-family: var(--ffEn);
}

/* サイズ */
.fsS{
	font-size:1.2rem;
}
.fwB{
	font-weight:bold;
}

/* 色 */
.clBlue{
	color: var(--mainBlue);
}
.clRed{
	color: var(--mainRed);
}
.clYellow{
	color: var(--mainYellow);
}
.clPurple{
	color: var(--mainPurple);
}
.clGreen{
	color: var(--mainGreen);
}

/* 長体 */
[class^="aspectratio"]{
	display:inline-block;
	white-space:nowrap;
	transform-origin:left center;
}
.aspectratio90{
	transform:scaleX(0.9);
}
.aspectratio85{
	transform:scaleX(0.85);
}
.aspectratio80{
	transform:scaleX(0.8);
}
.aspectratio75{
	transform:scaleX(0.75);
}
[class^="aspectratio"].originCenter{
	transform-origin: center center;
}

/* 文字詰 */
.lsKana{
	letter-spacing:-0.1em;
}
@media screen and (min-width:813px){
	.lsKanaPC{
		letter-spacing:-0.1em;
	}
}
.ls01{
	letter-spacing: 0.1em;
}

/* 左飾り文字あり */
.txtIndent{
	padding-left: 1em;
	text-indent: -1em;
}

/* txtLink */
.txtLink{
	text-decoration: underline;
}


/*
	見出し
-----------------------------------------------------------------------------------------------*/
/* 左右ライン */
.titLineSide{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
}
.titLineSide::before,.titLineSide::after{
	content: ' ';
	flex-grow: 1;
	height: 1px;
	background-color: var(--a30Black);
}
.titLineSide::before{
	margin-right: 10px;
}
.titLineSide::after{
	margin-left: 10px;
}

/* 左ライン */
.titLineL{
	display: flex;
	align-items: center;
	gap: 0 20px;
	margin: 60px 0 15px 0;
	font-size: 2rem;
	font-weight: 700;
}
.titLineL:first-of-type{
	margin-top: 0;
}
.titLineL::before{
	content: ' ';
	flex: 0 0 3px;
	width: 3px;
	height: 60px;
	background: linear-gradient(to bottom, var(--mainBlue) 50%, #000000 50%);
}
.titLineSide + .titLineL{
	margin-top: -10px;
}
.titLineL .fsS{
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

/* 下線_1色 */
.titLineBtm{
	width: fit-content;
	padding-bottom: 4px;
	margin-bottom: 10px;;
	font-size: 1.6rem;
	font-weight: 700;
	border-bottom: 2px solid var(--mainBlue);
}

/* 下線_2色 */
.titLineSub{
	width: fit-content;
	padding-bottom: 7px;
	margin: 0 auto 15px auto;
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(to right, var(--mainBlue) 50%, #000000 50%) left bottom / 100% 1px no-repeat;
}

/* 装飾なし */
.titSimple{
	margin: 40px 0 10px 0;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.titSimple:first-of-type{
	margin-top: 0;
}

/*
	ボタン
-----------------------------------------------------------------------------------------------*/
/* VIEW MORE */
.linkViewMore,a.linkViewMore{
	display: flex;
	align-items: center;
	width: 110px;
	height: 26px;
	padding-left: 10px;
	font-family: var(--ffEn);
	font-size: 1.1rem;
	font-weight: 600;
	color: #FFFFFF;
	background-color: #000000;
	position: absolute;
	transition: color 0.25s, background-color 0.25s, right 0.25s;
}

.linkViewMore::after,a.linkViewMore::after{
	content: ' ';
	display: block;
	width: 8px;
	height: 1px;
	background-color: #FFFFFF;
	position: absolute;
	top: 12px;
	right: 10px;
	transition: background-color 0.25s, right 0.25s;
}
a:hover .linkViewMore::after,a.linkViewMore:hover::after{
	right: 0;
}
@media screen and (min-width:813px){
	a:hover .linkViewMore,a.linkViewMore:hover{
		color: #000000;
		background-color: #FFFFFF;
	}
	a:hover .linkViewMore::after,a.linkViewMore:hover::after{
		background-color: #000000;
	}
}

/* DOWNLOAD */
.linkViewMore.download,a.linkViewMore.download{
	width: 115px;
	background: url(../images/ico_dl_s_bk.svg) right 10px bottom 10px / 11px 9px no-repeat #000000;
}
.linkViewMore.download::after,a.linkViewMore.download::after{
	width: 11px;
	height: 9px;
	background: url(../images/ico_dl_s.svg) left top / 11px 9px no-repeat transparent;
	top: auto;
	bottom: 10px;
	transition: opacity 0.25s, bottom 0.25s;
}
a:hover .linkViewMore.download::after,a.linkViewMore.download:hover::after{
	background-color: transparent;
	bottom: 0;
	right: 10px;
}
@media screen and (min-width:813px){
	a:hover .linkViewMore.download::after,a.linkViewMore.download:hover::after{
		opacity: 0;
	}
}

/* btnBasic_罫線ボタン */
.btnBasic,a.btnBasic{
	display: block;
	width: 260px;
	padding: 26px 30px;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.15em;
	color: #000000;
	border: 1px solid #000000;
	position: relative;
	transition: background-color 0.25s;
}
.btnBasic.ls01,a.btnBasic.ls01{
	letter-spacing: 0.1em;
}
.btnBasic.ls005,a.btnBasic.ls005{
	letter-spacing: 0.05em;
}

.btnBasic::after,a.btnBasic::after{
	content: ' ';
	display: block;
	width: 12px;
	height: 1px;
	background-color: #000000;
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	transition: background-color 0.25s, right 0.25s;
}
.btnBasic:hover::after,a.btnBasic:hover::after{
	right: -1px;
}

/* back */
.btnBasic.back::after,a.btnBasic.back::after{
	left: 20px;
	right: auto;
	transition: background-color 0.25s, left 0.25s;
}
.btnBasic.back:hover::after,a.btnBasic.back:hover::after{
	left: -1px;
	right: auto;
}
@media screen and (min-width:813px){
	.btnBasic:hover,a.btnBasic:hover{
		color: #FFFFFF;
		background-color: #000000;
	}
	.btnBasic:hover::after,a.btnBasic:hover::after{
		background-color: #FFFFFF;
	}
}

/* 別窓 */
.btnBasic.window,a.btnBasic.window{
	color: #FFFFFF;
	background-color: #000000;
	position: relative;
	transition: color 0.25s, background-color 0.25s;
}
.btnBasic.window::before,a.btnBasic.window::before,
.btnBasic.window::after,a.btnBasic.window::after{
	content: ' ';
	display: block;
	width: 9px;
	height: 9px;
	background: url(../images/ico_window_bk.svg) left top / 9px 9px no-repeat;
	position: absolute;
	top: calc(50% - 4px);
	right: 15px;
}
.btnBasic.window::after,a.btnBasic.window::after{
	background: url(../images/ico_window.svg) left top / 9px 9px no-repeat;
	transition: opacity 0.25s, right 0.25s;
}
@media screen and (min-width: 813px){
	.btnBasic.window:hover,a.btnBasic.window:hover{
		color: #000000;
		background-color: #FFFFFF;
	}
	.btnBasic.window:hover::after,a.btnBasic.window:hover::after{
		right: 0;
		opacity: 0;
	}
}

/* ファイル */
.btnBasic.file,a.btnBasic.file{
	width: auto;
	min-width: 290px;
	height: 100%;
	padding: 15px 40px 15px 10px;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: left;
	letter-spacing: 0.05em;
}
.btnBasic.file::before,a.btnBasic.file::before{
	content: ' ';
	display: block;
	width: 16px;
	height: 20px;
	background: url(../images/ico_file.svg) left top / 16px 20px no-repeat transparent;
	position: absolute;
	top: calc(50% - 10px);
	right: 10px;
}
.btnBasic.file::after,a.btnBasic.file::after{
	width: 16px;
	height: 20px;
	background: url(../images/ico_file_bk.svg) left top / 16px 20px no-repeat transparent;
	top: calc(50% - 10px);
	right: 10px;
	transition: opacity 0.25s, right 0.25s;
}
.btnBasic.file:hover::after,a.btnBasic.file:hover::after{
	right: 0;
	opacity: 0;
}

/* btnBasic_罫線ボタン_白 */
.btnBasic.white,a.btnBasic.white{
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.btnBasic.white::after,a.btnBasic.white::after{
	background-color: #FFFFFF;
}
@media screen and (min-width:813px){
	.btnBasic.white:hover,a.btnBasic.white:hover{
		color: #000000;
		background-color: #FFFFFF;
	}
	.btnBasic.white:hover::after,a.btnBasic.white:hover::after{
		background-color: #000000;
	}
}

/* ボタン配置 */
.btnArea{
	display: flex;
	justify-content: center;
	gap: 0 30px;
	margin-top: 70px;
}
.btnArea.mt0{
	margin-top: 0;
}


/*
	ページャー
-----------------------------------------------------------------------------------------------*/
.listPager{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	padding-top: 60px;
	font-family: var(--ffEn);
	font-weight: 400;
	letter-spacing: 0;
}
.listPager li,.listPager li a{
	line-height: 100%;
}
.listPager li a:not([class]){
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 17px;
	transition: background-color 0.25s;
}
.listPager li a:not([class]):hover{
	background-color: #FFFFFF;
}
.listPager li a[aria-current="page"]{
	background-color: var(--hoverSubGray);
}
.listPager li a.prev,.listPager li a.next{
	display: block;
	padding: 0 0 5px 13px;
	margin-top: 4px;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	position: relative;
}
.listPager li a.next{
	padding: 0 13px 5px 0;
}
.listPager li a.prev::before,.listPager li a.next::before{
	content: ' ';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
	position: absolute;
	top: 3px;
	left: 3px;
	transform: rotate(-45deg);
}
.listPager li a.next::before{
	left: auto;
	right: 3px;
	transform: rotate(135deg);
}
.listPager li a.prev::after,.listPager li a.next::after{
	content: ' ';
	display: block;
	width: calc(100% - 11px);
	height: 1px;
	background-color: #000000;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: width 0.25s;
}
.listPager li a.next::after{
	right: auto;
	left: 0;
}
@media screen and (min-width:813px){
	.listPager li a.prev:hover::after,.listPager li a.next:hover::after{
		width: 100%;
	}
}


/*
	table
-----------------------------------------------------------------------------------------------*/
/* 基本 */
.tblBasic{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.tblBasic th,.tblBasic td{
	padding: 15px 20px;
}
.tblBasic th{
	font-weight: 400;
	line-height: 145%;
	white-space: nowrap;
	background-color: var(--tblGray);
}
.tblBasic td{
	line-height: 160%;
	background-color: #FFFFFF;
}
.tblBasic tr:nth-of-type(n+2) th{
	border-top: 1px solid #CFD0D4;
}
.tblBasic tr:nth-last-of-type(n+2) td{
	border-bottom: 1px solid #E3E4E8;
}

/* theadあり */
.theadTbl th:nth-of-type(n+2){
	border-left: 1px solid #CFD0D4;
}
.theadTbl td{
	text-align: center;
}
.theadTbl td:nth-of-type(n+2){
	border-left: 1px solid #E3E4E8;
}
.theadTbl th.bgNone{
	background-color: transparent;
}
.theadTbl th.bdLNone{
	border-left: none;
}

/* 注釈 */
.noteTbl{
	padding-top: 5px;
	font-size: 1.2rem;
	text-align: right;
	letter-spacing: 0.05em;;
}


/*
	list
-----------------------------------------------------------------------------------------------*/
/* ●リスト */
.listCircle  li{
	padding-left: 16px;
	letter-spacing: 0.05em;
	position: relative;
}
.listCircle li::before{
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background-color: var(--a40Blue);
	position: absolute;
	top: 4px;
	left: 0;
}
.listCircle > li:nth-of-type(n+2){
	margin-top: 6px;
}

/* 子リスト */
.listCircleIn li::before{
	width: 4px;
	height: 4px;
	background-color: var(--darkGray);
	border-radius: 2px;
	top: 8px;
	left: 5px;
}

/* 左飾り文字あり */
.listNum li{
	padding-left: 1em;
	text-indent: -1em;
}
.listNum li:nth-of-type(n+2){
	margin-top: 6px;
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#companyName{
	padding:0 0 0 23px;
	font-size: 1.0rem;
	writing-mode: vertical-rl;
	line-height: 100%;
	letter-spacing: 0.2em;
	position: absolute;
	top: 50svh;
	transform: translateY(calc(-50% - 20px));
	z-index: 10;
}
#headArea{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#headLogo{
	margin: 20px 0 0 20px;
}
#headLogo img{
	width: 130px;
	transition: opacity 0.25s;
}
@media screen and (min-width:813px){
	#headLogo:hover img{
		opacity: 0.7;
	}
}

/* Gnav
--------------------------------------*/
#gNav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#listGnav{
	display: flex;
	align-items: center;
	gap: 0 32px;
	margin-right: 16px;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.15em;
}
#listGnav li{
	letter-spacing: 0.1em;
	position: relative;
}
#listGnav li:nth-of-type(n+2)::before{
	content: ' ';
	display: block;
	width: 1px;
	height: 15px;
	background-color: var(--otherGray);
	transform: rotate(30deg);
	position: absolute;
	top: 2px;
	left: -16px;
}
#listGnav li a{
	padding: 0 8px;
	position: relative;
}
#listGnav li a::before{
	content: ' ';
	display: block;
	width: 0;
	height: 2px;
	background-color: #EEEEEE;
	position: absolute;
	top: 10px;
	right: 0;
	z-index: -1;
	transition: width 0.25s;
}
#listGnav li a:hover::before{
	width: 100%;
	right: auto;
}
#listGnav li.business a::before{
	background-color: var(--mainBlue);
}
#listGnav li.case a::before{
	background-color: var(--mainRed);
}
#listGnav li.aboutUs a::before{
	background-color: var(--mainPurple);
}
#listGnav li.news a::before{
	background-color: var(--mainGreen);
}

/* ボタン */
#gNav a[class^="btn"]{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 84px;
	height: 84px;
	padding-bottom: 8px;
	font-size: 1rem;
	text-align: center;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	transition: background-color 0.25s;
}
#gNav a.btnGnavDL{
	background: url(../images/ico_dl.svg) center 20px / 19px 18px no-repeat #000000;
}
#gNav a.btnGnavMail{
	width: 85px;
	border-left: 1px solid #444444;
	background: url(../images/ico_mail.svg) center 25px / 18px 14px no-repeat #000000;
}
@media screen and (min-width:813px){
	#gNav a[class^="btn"]:hover{
		background-color: #2C2C2C;
	}
}

/* ハンバーガー */
#btnHmbg{
	display: none;
}

/* オーバーレイ */
#gNavOverlay{
	display: none;
}


/*
	下層_ヘッダ
-----------------------------------------------------------------------------------------------*/
#pageHeadArea{
	padding: 0 20px 13px 20px;
}
#pageTitArea{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 40px;
	width: var(--col1Width);
	padding: 90px 30px;
	margin: 0 auto;
	opacity: 0;
	animation: fadeInRtoL 0.7s 1 normal 0.25s ease forwards;
}
#pageTitArea .tit{
	flex-shrink: 0;
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 125%;
	letter-spacing: 0.15em;
}
#pageTitArea .tit.ls01{
	letter-spacing: 0.1em;
}
#pageTitArea .tit.long{
	font-size: 3.6rem;
	letter-spacing: 0.05em;
}
#pageTitArea .titSub{
	padding-top: 10px;
	font-family: var(--ffEn);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0.4em;
	color: var(--mainBlue);
}
#pageTitArea .lead{
	padding-bottom: 5px;
	margin-bottom: 12px;
	letter-spacing: 0.2em;
	border-bottom: 1px solid #000000;
}

/* 第3階層
--------------------------------------*/
@media screen and (min-width:813px){
	#pageHeadArea.underlayer #pageTitArea{
		padding: 90px 30px 20px 30px;
	}
}

/* num */
#pageTitArea .titSub .num,#pageTitArea .titSub .tag{
	display: inline-block;
	padding-left: 17px;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--tagGray);
	position: relative;
}
#pageTitArea .titSub .num::before,#pageTitArea .titSub .tag::after{
	content: ' ';
	display: block;
	width: 8px;
	height: 1px;
	background-color: var(--otherGray);
	position: absolute;
	top: 7px;
	left: 2px;
}

/* タグ */
#pageTitArea .titSub .tag,#pageTitArea .titSub .category{
	font-size: 1.2rem;
}
#pageTitArea .titSub .tag::before{
	content: '＃';
}

/* カテゴリ */
#pageTitArea .titSub .category{
	display: inline-block;
	padding: 0 0 2px 5px;
	vertical-align: middle;
}

/* 日付 */
#pageTitArea .titSub .date{
	display: inline-block;
	padding-left: 10px;
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: 0.05em;
}


/* パンクズ
--------------------------------------*/
#olistPan{
	display:flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#olistPan li{
	padding:0 16px 0 0;
	font-size:1rem;
	letter-spacing:0.05em;
	line-height:160%;
	color: var(--otherGray);
	position:relative;
}
#olistPan li:nth-last-of-type(n+2)::after{
	content:' ';
	display:block;
	width:6px;
	height:6px;
	border-top:1px solid var(--otherGray);
	border-right:1px solid var(--otherGray);
	position:absolute;
	top:8px;
	right:7px;
	transform:translateY(-50%) rotate(45deg);
}
#olistPan li:last-of-type{
	padding:0;
}
#olistPan li a{
	color: var(--tagGray);
}
#olistPan li a:hover{
	color: #000000;
}

#olistPan li:last-of-type a,#olistPan li a.linkNone{
	text-decoration:none;
	pointer-events:none;
}


/*
	下層_共通
-----------------------------------------------------------------------------------------------*/
#pageHeadArea + .bgGray {
	padding-top: 70px;
}

/*
	下層_インデックス
-----------------------------------------------------------------------------------------------*/
/* listTopBusiness
--------------------------------------*/
.listIdx{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.listIdx li{
	flex: 0 0 var(--col3Width);
}

.listIdx li a{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 35px 60px 35px;
	background-color: #FFFFFF;
	box-shadow: 10px 18px 22px -22px rgb(0 0 0 / 50%);
	position: relative;
	transition: background-color 0.25s;
}

@media screen and (min-width:813px){
	.listIdx li a:hover{
		background-color: var(--mainBlue);
	}
	.listIdx li:nth-of-type(3n - 1){
		animation-delay: 0.35s;
	}
	.listIdx li:nth-of-type(3n){
		animation-delay: 0.45s;
	}
}

/* num */
.listIdx li a .num{
	font-family: var(--ffEn);
	font-size: 5.0rem;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	position: absolute;
	top: -25px;
	left: 5px;
	z-index: 1;
	transition: color 0.25s;
}
@media screen and (min-width:813px){
	.listIdx li a:hover .num{
		color: var(--mainBlue);

	}
}
/* tit */
.listIdx li a .tit{
	padding: 28px 0 12px 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 140%;
}

/* txt */
.listIdx li a .txt{
	font-size: 1.3rem;
	text-align: justify;
	font-feature-settings: 'pkna';
	letter-spacing: 0;
	line-height: 170%;
}

/* ph */
.listIdx li a .ph{
	order: -1;
	margin: 0 -35px;
}

/* linkViewMore */
.listIdx li a .linkViewMore{
	bottom: 25px;
	right: -15px;
}
@media screen and (min-width:813px){
	.listIdx li a:hover .linkViewMore{
		right: -20px;
	}
}


/*
	実績リスト
-----------------------------------------------------------------------------------------------*/
.listCaseIdx{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.listCaseIdx li{
	flex: 0 0 var(--col3Width);
}
.listCaseIdx li a{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 30px 25px;
	background-color: var(--bgSubGray);
	transition: background-color 0.25s;
}
@media screen and (min-width:813px){
	.listCaseIdx li a:hover{
		background-color: var(--hoverSubGray);
	}
}
.listCaseIdx li .ph{
	order: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
}
.listCaseIdx li .ph img{
	max-width: 270px;
	max-height: 180px;
	object-fit: contain;
}
.listCaseIdx li .tit{
	margin: 15px -5px 5px -5px;
	font-size: 1.8rem;
	font-weight: 700;
}
.listCaseIdx li .tag{
	padding-left: 1em;
	margin: 0 -5px 20px -5px;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 145%;
	color: var(--tagGray);
	text-indent: -1em;
}
.listCaseIdx li .tag::before{
	content:'＃';
}
.listCaseIdx li .linkViewMore{
	margin: auto auto 0 auto;
	position: relative;
}


/*
	お知らせ
-----------------------------------------------------------------------------------------------*/
.dlistNews dt{
	padding-bottom: 6px;
	line-height: 100%;
	letter-spacing: 0;
}
.dlistNews dt .date{
	font-family: var(--ffEn);
	font-size: 1.3rem;
	font-weight: 500;
}
.dlistNews dt .tag{
	display: inline-block;
	padding-left: 20px;
	font-size: 1.1rem;
	font-weight: 700;
}
.dlistNews dd:nth-last-of-type(n+2){
	margin-bottom: 55px;
}
.dlistNews dd a{
	transition: color 0.25s;
}
.dlistNews dd a:hover{
	color: var(--mainGreen);
}


/*
	aside / footer
-----------------------------------------------------------------------------------------------*/
#footWrapper{
	background-color: #000000;
	color: #FFFFFF;
	position: relative;
}

/* aside
--------------------------------------*/
#footInquiryArea{
	display: flex;
	padding: 40px 30px;
	border-bottom: 1px solid #222222;
}
.footInquiryBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 570px;
	text-align: center;
}
.footInquiryBox:first-of-type{
	border-right: 1px solid #222222;
}
.footInquiryBox .tit{
	padding-bottom: 5px;
	margin-bottom: 15px;
	font-size: 2.0rem;
	font-weight: 700;
	border-bottom: 1px solid #FFFFFF;
}
.footInquiryBox .txt{
	font-size: 1.3rem;
}
.footInquiryBox a.tel{
	padding: 0 0 0 25px;
	margin: 15px 0;
	font-family: var(--ffEn);
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #FFFFFF;
	background: url(../images/ico_tel.svg) left top / 16px 20px no-repeat;
}
.footInquiryBox .btnBasic{
	padding: 20px 30px;
	margin: auto auto 0 auto;
	font-family: var(--ffEn);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.2em;
}

/* footer
--------------------------------------*/
/* 内部リンク */
#footNavArea,#footNavArea a{
	color: var(--linkGray);
}
#footNavArea{
	padding-bottom: 20px;
}
@media screen and (min-width:813px){
	#footNavArea a:hover{
		color: #FFFFFF;
	}
}
.footNavBox{
	display: flex;
	justify-content: space-around;
	padding: 40px 0;
}
.listFoot li{
	font-size: 1.3rem;;
}
.listFoot li:nth-last-of-type(n+2){
	margin-bottom: 20px;
}
.footBusinessBox{
	display: flex;
	gap: 0 40px;
}
.listFootIn{
	padding-top: 8px;
}
.listFootIn li{
	padding-left: 3px;
	font-size: 1.2rem;
}
.listFootIn li:nth-last-of-type(n+2){
	margin-bottom: 8px;
}
.listFootIn li::before{
	content: '- ';
}

/* 第3階層 */
.listFootIn3rd{
	margin-top: 8px;
}
.listFootIn3rd li{
	padding-left: 10px;
}
.listFootIn3rd li::before{
	display: none;
}


/* フッター外部リンク linkWindow */
.listFoot li.linkWindow:not(:last-of-type){
	margin-bottom:14px;
}
.listFoot li.linkWindow:nth-of-type(3){
	border-top: 1px solid #222222;
	padding-top: 22px;
}
.listFoot li.linkWindow a{
	margin: 20px auto 0 auto;
	padding-right: 15px;
	position: relative;
}
.listFoot li.linkWindow a::after{
	content: ' ';
	display: block;
	width: 9px;
	height: 9px;
	background: url(../images/ico_window.svg) right top / 9px 9px no-repeat;
	position: absolute;
	top: 6px;
	right: 0;
	opacity: 0.5;
	transition: opacity 0.25s;
}
@media screen and (min-width:813px){
	.listFoot li.linkWindow a:hover::after{
		opacity: 1;
	}
}


/* ロゴ */
#logoFoot{
	display: block;
	width: fit-content;
	margin: 40px auto 0 auto;
}
#logoFoot img{
	width: 90px;
	transition: opacity 0.25s;
}
#logoFoot:hover img{
	opacity: 0.7;
}


/* copyright */
#copyright{
	padding-top: 16px;
	font-family: var(--ffEn);
	font-size: 1.1rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	text-align: center;
}

/* SNS */
#icoX,#icoYT{
	display: block;
	position: absolute;
	bottom: 55px;
	right: 22px;
	opacity: 0.7;
	transition: opacity 0.25s;
}
#icoYT{
	right: 17px;
	bottom: 20px;
}
#icoX img,#icoYT img{
	display: block;
	height: 20px;
}
#icoX:hover,#icoYT:hover{
	opacity: 1;
}


/* PAGE TOP */
a#pageTop{
	padding-left: 50px;
	font-family: var(--ffEn);
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--linkGray);
	position: absolute;
	bottom: 150px;
	right: -29px;
	transform: rotate(90deg);
	transition: color 0.25s;
}
#pageTop::before,#pageTop::after{
	content: ' ';
	display: block;
	width: 40px;
	height: 1px;
	background-color: var(--linkGray);
	position: absolute;
	top: 7px;
	left: 0;
	transition: transform 0.25s;
}
#pageTop::after{
	background-color: #FFFFFF;
	transform: scaleX(0);
	transform-origin: right center;
}
@media screen and (min-width:813px){
	a#pageTop:hover{
		color: #FFFFFF;
	}
	#pageTop:hover::before{
		transform: scaleX(0);
	}
	#pageTop:hover::after{
		transform: scaleX(1);
	}
}


/*
	404 / 500
-----------------------------------------------------------------------------------------------*/
/* 404 */
.txtHttpError{
	margin-bottom: 40px;
}
@media screen and (min-width:813px){
	/* 500 / 503 */
	.pageHttpError .ctsArea{
		padding-bottom: 200px;
	}
}

@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
	}
	img{
		width:100%;
	}
	p{
		line-height: 150%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}

	/*
		base
	-----------------------------------------------------------------------------------------------*/
	/* 変数 */
	:root{
		/* width */
		--col1Width: 100%;
		--col2Width: 100%;
		--col3Width: calc((100% - 10px)/2);
		--ctsWidth960: 100%;
	}

	/* ctsArea */
	.ctsArea{
		max-width: 500px;
		padding: 0 25px 60px 25px;
	}

	/*
		カラムレイアウト
	-----------------------------------------------------------------------------------------------*/
	[class*="layoutCol"]{
		gap: 40px;
	}

	/*
		見出し
	-----------------------------------------------------------------------------------------------*/
	/* 左右ライン */
	.titLineSide{
		margin-bottom: 20px;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
	}

	/* 左ライン */
	.titLineL{
		gap: 0 15px;
		margin: 40px 0 15px 0;
		font-size: 1.6rem;
	}
	.titLineL:first-of-type{
		margin-top: 0;
	}
	.titLineL::before{
		height: 50px;
	}
	.titLineL .fsS{
		font-size: 1.2rem;
	}

	/* 下線_2色 */
	.titLineSub{
		font-size: 1.6rem;
	}

	/* 装飾なし */
	.titSimple{
		margin: 40px 0 8px 0;
		font-size: 1.6rem;
	}
	.titSimple:first-of-type{
		margin-top: 0;
	}


	/*
		ボタン
	-----------------------------------------------------------------------------------------------*/
	/* VIEW MORE */
	.linkViewMore,a.linkViewMore{
		display: flex;
		align-items: center;
		width: 100px;
		height: 24px;
		padding-left: 8px;
		font-size: 1.0rem;
	}

	.linkViewMore::after,a.linkViewMore::after{
		width: 6px;
		top: 11px;
		right: 9px;
	}

	/* DOWNLOAD */
	.linkViewMore.download,a.linkViewMore.download{
		width: 105px;
	}
	.linkViewMore.download::after,a.linkViewMore.download::after{
		bottom: 8px;
	}

	/* btnBasic_罫線ボタン */
	.btnBasic,a.btnBasic{
		width: 240px;
		padding: 20px 15px;
		font-size: 1.5rem;
	}
	.btnBasic::after,a.btnBasic::after{
		right: 15px;
	}

	/* back */
	.btnBasic.back::after,a.btnBasic.back::after{
		left: 15px;
	}

	/* ファイル */
	.btnBasic.file,a.btnBasic.file{
		min-width: 100%;
		padding: 15px 40px 15px 10px;
	}


	/* ボタン配置 */
	.btnArea{
		gap: 0 15px;
		margin-top: 60px;
	}


	/*
		ページャー
	-----------------------------------------------------------------------------------------------*/
	.listPager{
		gap: 0 8px;
		padding-top: 60px;
	}
	.listPager li a:not([class]){
		width: 30px;
		height: 30px;
		border-radius: 15px;
	}
	.listPager li a.prev,.listPager li a.next{
		padding: 0 0 4px 9px;
		font-size: 1.1rem;
	}
	.listPager li a.next{
		padding: 0 9px 4px 0;
	}
	.listPager li a.prev::before{
		left: 0;
	}
	.listPager li a.next::before{
		right: 0;
	}
	.listPager li a.prev::after,.listPager li a.next::after{
		width: calc(100% - 8px);
	}



	/*
		table
	-----------------------------------------------------------------------------------------------*/
	.tblBasic th,.tblBasic td{
		padding: 15px 10px;
		font-size: 1.3rem;
		letter-spacing: 0.05em;
	}
	.theadTbl th{
		padding: 10px;
	}

	/* 注釈 */
	.noteTbl{
		font-size: 1rem;
	}


	/*
		header
	-----------------------------------------------------------------------------------------------*/
	#headLogo{
		margin: 15px 0 0 15px;
	}
	#headLogo img{
		width: 105px;
	}
	#companyName{
		display: none;
	}


	/* Gnav
	--------------------------------------*/
	body.panelActive{
		overflow: hidden;
	}
	#gNav{
		position: relative;
		z-index: 1000;
	}
	#listGnav{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 50px 0;
		width: 100vw;
		margin-right: 0;
		font-size: 1.5rem;
		text-align: center;
		opacity: 0;
		position: absolute;
		top: 50svh;
		right: 0;
		transform: translateY(-50%);
		transition: opacity 0.25s;
		visibility: hidden;
		pointer-events: none;
	}
	#gNav.panelActive #listGnav{
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	#listGnav li{
		padding: 0;
		letter-spacing: 0.3em;
		text-indent: 0.3em;
	}
	#listGnav li:nth-of-type(n+2)::before{
		display: none;
	}
	#listGnav li a{
		padding: 0;
	}
	#listGnav li a::before{
		display: none;
	}

	/* ボタン */
	#gNav a[class^="btn"]{
		padding-bottom: 0;
		position: absolute;
	}
	#gNav a.btnGnavDL{
		width: 19px;
		height: 18px;
		background: url(../images/ico_dl_bk.svg) center center / 16px 14px no-repeat;
		top: 15px;
		right: 93px;
	}
	#gNav a.btnGnavMail{
		width: 18px;
		height: 14px;
		background: url(../images/ico_mail_bk.svg) center center / 15px 12px no-repeat;
		border-left: none;
		top: 19px;
		right: 57px;
	}
	#gNav a[class^="btn"] span{
		display: none;
	}

	/* ハンバーガー展開内_ロゴ */
	#logoNavSp{
		position: absolute;
		top: 15px;
		left: 15px;
		z-index: 1000;
		opacity: 0;
		transition: opacity 0.25s;
		pointer-events: none;
	}
	#logoNavSp img{
		width: 105px;
	}
	#logoNavSp.panelActive{
		opacity: 1;
		pointer-events: all;
	}

	/* ハンバーガー */
	#btnHmbg{
		display: block;
		width: 16px;
		height: 11px;
		position: absolute;
		top: 21px;
		right: 15px;
		z-index: 1000;
	}
	#btnHmbg span{
		display: block;
		width: 16px;
		height: 1px;
		background-color: #000000;
		position: absolute;
		left: 0;
	}
	#btnHmbg span:nth-of-type(1){
		top: 0;
		transition: transform 0.35s;
	}
	#btnHmbg span:nth-of-type(2){
		top: 5px;
	}
	#btnHmbg span:nth-of-type(3){
		top: 10px;
		transition: transform 0.35s;
	}
	#btnHmbg.active span:nth-of-type(1){
		width:16px;
		top: 5px;
		transform:translate(0px,0px) rotate(-45deg);
	}
	#btnHmbg.active span:nth-of-type(2){
		opacity: 0;
	}
	#btnHmbg.active span:nth-of-type(3){
		width:16px;
		top: 5px;
		transform:translate(0px,0px) rotate(45deg);
	}

	/* オーバーレイ */
	#gNavOverlay {
		display: block;
		width: 100%;
		height: 100vh;
		background-color: transparent;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		transition: background-color 0.25s;
		pointer-events: none;
	}
	#gNavOverlay.panelActive{
		background-color: var(--mainYellow);
		pointer-events: all;
	}
	#gNavOverlay.panelActive.blue{
		background-color: var(--mainBlue);
	}
	#gNavOverlay.panelActive.red{
		background-color: var(--mainRed);
	}
	#gNavOverlay.panelActive.yellow{
		background-color: var(--mainYellow);
	}
	#gNavOverlay.panelActive.purple{
		background-color: var(--mainPurple);
	}
	#gNavOverlay.panelActive.green{
		background-color: var(--mainGreen);
	}

	/*
		下層_ヘッダ
	-----------------------------------------------------------------------------------------------*/
	#pageHeadArea{
		padding: 0 10px 10px 10px;
	}
	#pageTitArea{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px 0;
		padding: 50px 20px 20px 20px;
	}
	#pageTitArea .tit{
		font-size: 2.6rem;
	}
	#pageTitArea .titSub{
		padding-top: 8px;
		font-size: 1rem;
	}
	#pageTitArea .tit.long{
		font-size: 2.2rem;
	}
	#pageTitArea .lead{
		padding-bottom: 0;
		margin-bottom: 0;
		letter-spacing: 0.1em;
		line-height: 160%;
		border-bottom: none;
	}

	/* 第3階層
	--------------------------------------*/
	/* num */
	#pageTitArea .titSub .num{
		padding-left: 12px;
		font-size: 1rem;
	}
	#pageTitArea .titSub .num::before,#pageTitArea .titSub .tag::after{
		width: 5px;
		top: 4px;
	}

	/* タグ */
	#pageTitArea .titSub .tag{
		padding-left: 11px;
		font-size: 1rem;
	}

	/* カテゴリ */
	#pageTitArea .titSub .category{
		padding-bottom: 1px;
		font-size: 1rem;
	}

	/* 日付 */
	#pageTitArea .titSub .date{
		padding-left: 5px;
		font-size: 1rem;
	}


	/*
		下層_共通
	-----------------------------------------------------------------------------------------------*/
	#pageHeadArea + .bgGray {
		padding-top: 40px;
	}

	/*
		下層_インデックス
	-----------------------------------------------------------------------------------------------*/
	/* listTopBusiness
	--------------------------------------*/
	.listIdx{
		flex-direction: column;
		gap: 50px;
	}
	.listIdx li{
		flex: 0 0 100%;
	}
	.listIdx li a{
		padding: 0 25px 63px 25px;
		pointer-events: none;
	}

	/* num */
	.listIdx li a .num{
		font-size: 3rem;
		top: -15px;
	}

	/* tit */
	.listIdx li a .tit{
		padding: 22px 0 9px 0;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 140%;
	}

	/* txt */
	.listIdx li a .txt{
		font-size: 1.3rem;
	}

	/* ph */
	.listIdx li a .ph{
		margin: 0 -25px;
	}

	/* linkViewMore */
	.listIdx li a .linkViewMore{
		bottom: 25px;
		right: -10px;
		pointer-events: all;
	}
	@media screen and (min-width:813px){
		.listIdx li a:hover .linkViewMore{
			right: -20px;
		}
	}


	/*
		実績リスト
	-----------------------------------------------------------------------------------------------*/
	.listCaseIdx{
		gap: 10px;
	}
	.listCaseIdx li a{
		padding: 20px 20px;
		pointer-events: none;
	}
	.listCaseIdx li .ph{
		height: 90px;
	}
	.listCaseIdx li .ph img{
		max-width: 135px;
		max-height: 90px;
	}
	.listCaseIdx li .tit{
		margin: 15px -5px 5px -5px;
		font-size: 1.4rem;
		line-height: 125%;
		letter-spacing: 0.05em;
	}
	.listCaseIdx li .tag{
		margin: 0 -5px 15px -5px;
		font-size: 1rem;
		line-height: 125%;
	}
	.listCaseIdx li .linkViewMore{
		pointer-events: all;
	}


	/*
		お知らせ
	-----------------------------------------------------------------------------------------------*/
	.dlistNews dt .date{
		font-size: 1.2rem;
	}
	.dlistNews dt .tag{
		padding-left: 15px;
		font-size: 1.0rem;
	}
	.dlistNews dd:nth-last-of-type(n+2){
		margin-bottom: 40px;
	}


	/*
		aside / footer
	-----------------------------------------------------------------------------------------------*/
	/* aside
	--------------------------------------*/
	#footInquiryArea{
		flex-direction: column;
		gap: 25px 0;
		padding: 25px;
		border-bottom: 1px solid #222222;
	}
	.footInquiryBox{
		width: 100%;
	}
	.footInquiryBox:first-of-type{
		padding-bottom: 25px;
		border-right: none;
		border-bottom: 1px solid #222222;
	}
	.footInquiryBox .tit{
		padding-bottom: 5px;
		margin-bottom: 15px;
		font-size: 1.6rem;
	}
	.footInquiryBox .txt{
		font-size: 1.2rem;
	}
	.footInquiryBox:first-of-type .txt{
		margin-bottom: 16px;
	}

	/* footer
	--------------------------------------*/
	/* 内部リンク */
	#footNavArea{
		padding-bottom: 20px;
	}
	.footNavBox{
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 13px 15px;
		padding: 25px 0;
	}
	.listFoot{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: flex-start;
		gap: 15px 15px;
		width: calc(100% - 15px)
	}
	.listFoot li{
		font-size: 1.1rem;;
		white-space: nowrap;
	}
	.listFoot li:nth-last-of-type(n+2){
		margin-bottom: 0;
	}
	.listFootIn{
		display: none;
	}
	.footBusinessBox{
		flex-direction: column;
	}
	.footBusinessBox .listFootIn{
		display: block;
		padding-top: 0;
		margin-top: 5px;
	}
	.footBusinessBox .listFootIn li:nth-last-of-type(n+2){
		margin-bottom: 5px;
	}
	.listFootIn3rd{
		display: none;
	}

	/* フッター外部リンク linkWindow */
	.listFoot li.linkWindow:not(:last-of-type){
		width: 100%;
		margin:0;
	}
	.listFoot li.linkWindow:nth-of-type(3){
		padding-top: 15px;
	}

	/* ロゴ */
	#logoFoot{
		display: block;
		width: fit-content;
		margin: 40px auto 0 auto;
	}
	#logoFoot img{
		width: 80px;
	}


	/* copyright */
	#copyright{
		padding-top: 14px;
		font-size: 1rem;
	}

	/* SNS */
	#icoX{
		right: 14px;
	bottom: 53px;
	}
	#icoYT {
		right: 10px;
		bottom: 20px;
	}

	/* PAGE TOP */
	a#pageTop{
		font-size: 1rem;
		bottom: 135px;
		right: -30px;
	}
	#pageTop::before,#pageTop::after{
		top: 5px;
	}

	/*
		404 / 500
	-----------------------------------------------------------------------------------------------*/
	/* 500 / 503 */
	.pageHttpError  #pageTitArea .tit.ls01{
		letter-spacing: 0.05em;
	}

}