@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;800&display=swap");
@import url("/common/css/var.css");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
}
input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
	cursor: pointer;
	background: none;
	padding: 0;
}


html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	font-size: 1.4em;
	/* font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo", YuGothic, "游ゴシック","ＭＳ Ｐゴシック","sans-serif"; */
	font-family: var(--font-noto-sans);
	line-height: 1;
	color: #333;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}


/*clearfix*/
.cf:before,
.cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}



a {
	color: #333;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

a img {
	transition: opacity 0.3s ease-in-out;
}
a:hover img {
	opacity: 0.5;
}
img.nofade {
	opacity: 1 !important;
}


#wrap {
	min-width: 1000px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#wrap {
		min-width: 0;
	}
}


#responseFlagTab {
	display: none !important;
}

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	#responseFlagPc {
		display: block !important;
	}
	#responseFlagSp {
		display: none !important;
	}
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#responseFlagPc {
		display: none !important;
	}
	#responseFlagSp {
		display: block !important;
	}
}



/*===========================================================================
 #header
===========================================================================*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 110;
}
#header .headerInr {
	width: 100%;
	max-width: 1280px;
	min-width: 1000px;
	margin: 0 auto;
	height: 90px;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding-left: 40px;
	padding-right: 40px;
	justify-content: space-between;
}
#header .headerInr::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 310px;
	height: 2px;
	background-color: var(--key-color);
}
#header .logo img {
	width: 260px;
}
#header .pcHeader {
	display: flex;
	align-items: center;
}
#header .pcHeader .navCol {
	padding-right: 20px;
}
#header .pcHeader .subNav {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	justify-content: flex-end;
	padding-right: 10px;
}
#header .pcHeader .subNav li {
	position: relative;
	padding-left: 20px;
	margin-left: 20px;
}
#header .pcHeader .subNav li a {
	text-decoration: none;
}
#header .pcHeader .subNav li a:hover,
#header .pcHeader .subNav li a.js-childShow {
	color: var(--key-color);
}
#header .pcHeader .subNav li a[data-child-nav] {
	position: relative;
	z-index: 2;
}
#header .pcHeader .subNav li a[data-child-nav]:hover::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -20px;
	width: calc(100% + 40px);
	height: 67px;
}
#header .pcHeader .subNav li::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	height: 14px;
	width: 1px;
	background: #ccc;
}
#header .pcHeader .subNav li:first-child {
	margin-left: 0;
	padding-left: 0;
}
#header .pcHeader .subNav li:first-child::before {
	content: none;
}
#header .pcHeader .gNav {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	margin-top: 10px;
}
#header .pcHeader .gNav a {
	display: block;
	padding: 0 10px;
	text-decoration: none;
	position: relative;
}
#header .pcHeader .gNav a::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 44px;
}
#header .pcHeader .gNav a .inr {
	position: relative;
}
#header .pcHeader .gNav a .inr::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	transition: transform 0.3s ease-out;
	transform-origin: center;
	background: var(--key-color);
	transform: scaleX(0);
}
#header .pcHeader .gNav a:hover .inr::after,
#header .pcHeader .gNav a.js-stay .inr::after,
#header .pcHeader .gNav a.js-childShow .inr::after {
	transform: scaleX(1);
}
body.cat-news #header .pcHeader .cat-news,
body.cat-company #header .pcHeader .cat-company {
	color: var(--key-color);
}
body.cat-feature #header .pcHeader .cat-feature .inr::after,
body.cat-solution #header .pcHeader .cat-solution .inr::after,
body.cat-partner #header .pcHeader .cat-partner .inr::after,
body.cat-recruit #header .pcHeader .cat-recruit .inr::after {
	transform: scaleX(1);
}
#header .pcHeader .btnCol {
	width: 174px;
}
#header .pcHeader .btnCol .btnMail {
	height: 44px;
}
#header .pcHeader .btnCol .btnMail .btnTxt {
	font-size: 1.6rem;
	font-weight: bold;
	padding-left: 10px;
}
#header .pcHeader .btnCol .btnMail .btnTxt::before {
	background: var(--bg-mail-wt);
	left: 16px;
	width: 18px;
	height: 12px;
}
#header .pcHeader .btnCol .btnMail:hover .btnTxt::before {
	background: var(--bg-mail-rd);
}
#header .pcHeader .btnCol .btnMail .btnTxt::after {
	width: 7px;
	height: 11px;
	right: 16px;
}

#header .pcChildNavi {
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	height: 0;
}
#header .pcChildNavi .navCts {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	padding: 40px 40px 50px;
	display: flex;
}
#header .pcChildNavi .navCts .ttlCol {
	width: 240px;
}
#header .pcChildNavi .navCts .ttlCol .ttl {
	font-size: 2.6rem;
	font-weight: bold;
}
#header .pcChildNavi .navCts .ttlCol .link {
	margin-top: 35px;
}
#header .pcChildNavi .navCts .ttlCol .link.-space {
	margin-top: 75px;
}
#header .pcChildNavi .navCts .ttlCol .link > * + * {
	margin-top: 30px;
}
#header .pcChildNavi .navCts .navCol {
	flex: 1;
}
#header .pcChildNavi .navList {
	display: flex;
	flex-wrap: wrap;
	margin-top: -35px;
}
#header .pcChildNavi .navList .item {
	box-sizing: border-box;
	margin-top: 35px;
	width: 25%;
	padding-left: 20px;
}
#header .pcChildNavi .navList .item a {
	text-decoration: none;
}
#header .pcChildNavi .navList .item .thum img,
#header .pcChildNavi .navList .item .thum--icn canvas {
	width: 100%;
	height: auto;
}
#header .pcChildNavi .navList .item .thum--icn {
	background: var(--bg-color-pink);
	text-align: center;
	position: relative;
}
#header .pcChildNavi .navList .item .thum--icn canvas {
	width: 100%;
	height: auto;
}
#header .pcChildNavi .navList .item .thum--icn img {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
}
#header .pcChildNavi .navList .item .txt {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.429;
	margin-top: 5px;
}

/* PC for 1024px
-------------------------------------*/
@media screen and (max-width: 1030px) {
	#header .pcHeader .gNav a {
		padding: 0 5px;
	}
}

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	#header .spMenuBtn {
		display: none !important;
	}
	#spHeaderNavi {
		display: none;
	}
	#contentsWrap {
		position: static !important;
		width: auto !important;
		top: 0 !important;
	}
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	#header .pcHeader {
		display: none !important;
	}
	#header .pcChildNavi {
		display: none !important;
	}
	#header .headerInr {
		height: 60px;
		min-width: auto;
		padding: 0 20px;
	}
	#header .headerInr::before {
		width: 210px;
		height: 2px;
	}
	#header .logo img {
		width: 190px;
	}
	#header .spMenuBtn {
		width: 37px;
		height: 37px;
		position: absolute;
		top: 12px;
		right: 16px;
		cursor: pointer;
	}
	#header .spMenuBtn .btnTxt {
		font-size: 10px;
		font-weight: bold;
		font-family: var(--font-source-sans);
		color: var(--key-color);
		position: absolute;
		line-height: 1;
		bottom: 8px;
		left: 0;
		width: 100%;
		text-align: center;
		transition: opacity 0.3s linear;
	}
	#header .spMenuBtn::before,
	#header .spMenuBtn::after {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		width: 30px;
		margin-left: -15px;
		height: 1px;
		background: var(--key-color);
		transition: transform 0.2s ease-out, margin-top 0.2s ease-out;
	}
	#header .spMenuBtn::before {
		margin-top: -7.5px;
	}
	#header .spMenuBtn::after {
		margin-top: -3.5px;
	}
	.js-spNavOpen #header .spMenuBtn .btnTxt {
		opacity: 0;
	}
	.js-spNavOpen #header .spMenuBtn::before,
	.js-spNavOpen #header .spMenuBtn::after {
		margin-top: 0;
	}
	.js-spNavOpen #header .spMenuBtn::before {
		transform: rotate(20deg);
	}
	.js-spNavOpen #header .spMenuBtn::after {
		transform: rotate(-20deg);
	}
	#spHeaderNavi {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		overflow-y: auto;
		padding-top: 60px;
		z-index: 100;
		background: #fff;
		display: none;
	}
	#spHeaderNavi .navInr {
		border-top: 1px solid var(--bg-color);
		padding: 10px 20px 55px;
	}
	#spHeaderNavi .naviList .item {
		border-top: 1px solid var(--bg-color);
	}
	#spHeaderNavi .naviList .item:first-child {
		border-top: none;
	}
	#spHeaderNavi .naviList .item .parent {
		display: block;
		padding: 20px 20px 20px 0;
		font-size: 1.6rem;
		line-height: 1.3;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
	}
	body.cat-top #spHeaderNavi .naviList .item .parent.cat-top,
	body.cat-feature #spHeaderNavi .naviList .item .parent.cat-feature,
	body.cat-solution #spHeaderNavi .naviList .item .parent.cat-solution,
	body.cat-partner #spHeaderNavi .naviList .item .parent.cat-partner,
	body.cat-recruit #spHeaderNavi .naviList .item .parent.cat-recruit,
	body.cat-company #spHeaderNavi .naviList .item .parent.cat-company,
	body.cat-news #spHeaderNavi .naviList .item .parent.cat-news {
		color: var(--key-color);
	}
	#spHeaderNavi .naviList .item p.parent {
		position: relative;
	}
	#spHeaderNavi .naviList .item p.parent::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -4.5px;
		width: 15px;
		height: 9px;
		background: var(--bg-arw-bottom-bk);
		transition: transform 0.3s ease-out;
	}
	#spHeaderNavi .naviList .item.js-open p.parent::after {
		transform: rotate(-180deg);
	}
	#spHeaderNavi .naviList .item .childList {
		font-size: 1.5rem;
		line-height: 1.6;
		height: 0;
		overflow: hidden;
	}
	#spHeaderNavi .naviList .item .childList ul {
		padding-top: 8px;
		padding-bottom: 20px;
	}
	#spHeaderNavi .naviList .item .childList li {
		margin-top: 13px;
	}
	#spHeaderNavi .naviList .item .childList li:first-child {
		margin-top: 0;
	}
	#spHeaderNavi .naviList .item .childList li a {
		text-decoration: none;
	}
	#spHeaderNavi .naviList .item .childList .link {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding-top: 14px;
		padding-bottom: 16px;
	}
	#spHeaderNavi .naviList .item .childList .linkTxt {
		display: block;
		padding: 5px;
		border: 1px solid var(--key-color);
		border-radius: 4px;
		box-sizing: border-box;
		color: var(--key-color);
		font-weight: bold;
		font-size: 1.4rem;
		line-height: 1.42;
		text-align: center;
		text-decoration: none;
	}
	#spHeaderNavi .btnLine {
		margin-top: 33px;
	}
	#spHeaderNavi .btnLine .btnMail {
		height: 58px;
		max-width: 260px;
		margin: 0 auto;
	}
	#spHeaderNavi .btnLine .btnMail .btnTxt {
		font-size: 1.6rem;
		font-weight: bold;
	}
	#spHeaderNavi .btnLine .btnMail .btnTxt::before {
		background: var(--bg-mail-wt);
		left: 50%;
		width: 18px;
		height: 12px;
		padding-left: 10px;
		margin-left: -5em;
	}
	#spHeaderNavi .btnLine .btnMail:hover .btnTxt::before {
		background: var(--bg-mail-rd);
	}
	#spHeaderNavi .btnLine .btnMail .btnTxt::after {
		width: 7px;
		height: 11px;
		right: 16px;
	}
}



#contentsWrap {
	padding-top: 90px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#contentsWrap {
		padding-top: 60px;
	}
}


/*===========================================================================
 #footer
===========================================================================*/
#footer {
}
#ctsFooter .infoCts {
	background: var(--bg-color);
	padding: 85px 0 54px;
}
#ctsFooter .infoCts .ctsInr {
	width: 100%;
	max-width: 1280px;
	min-width: 1000px;
	box-sizing: border-box;
	padding: 0 40px;
	margin: 0 auto;
}
#ctsFooter .infoCts .ctsTtl {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#ctsFooter .infoCts {
		padding: 40px 0;
	}
	#ctsFooter .infoCts .ctsInr {
		min-width: auto;
		padding: 0 20px;
	}
	#ctsFooter .infoCts .ctsTtl {
		font-size: 2rem;
		line-height: 1.5;
		margin: 0 -10px;
	}
}


#footer .navCts {
	background: #8d2a52;
	padding: 45px 0 18px;
	color: #fff;
}
#footer .navCts a {
	color: #fff;
	text-decoration: none;
}
#footer .navCts a:hover {
	text-decoration: underline;
}
#footer .navCts .ctsInr {
	width: 100%;
	max-width: 1280px;
	min-width: 1000px;
	box-sizing: border-box;
	padding: 0 40px;
	margin: 0 auto;
}
#footer .navCts .logo img {
	width: 320px;
	height: auto;
}
#footer .navCts .naviWrap {
	display: flex;
	align-items: flex-start;
	margin-right: -20px;
}
#footer .navCts .navCol {
	max-width: 220px;
	margin-top: 30px;
	padding-right: 40px;
}
#footer .navCts .navColFloat {
	display: flex;
	flex-wrap: wrap;
}
#footer .navCts .navColFloat:last-child .navCol:last-child {
	padding-right: 0;
}
#footer .navCts .navCol .parent {
	white-space: nowrap;
}
#footer .navCts .navCol .parent a {
	font-size: 1.6rem;
	font-weight: bold;
}
#footer .navCts .navCol .childNavi {
	margin-top: 20px;
}
#footer .navCts .navCol .childNavi > li {
	line-height: 1.5;
	font-size: 1.4rem;
	margin-top: 12px;
}
#footer .navCts .navCol .childNavi > li .gChildNavi {
	padding-left: 13px;
}
#footer .navCts .navCol .childNavi > li .gChildNavi li {
	margin-top: 6px;
}
#footer .navCts .subNav ul {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
#footer .navCts .subNav ul li {
	font-size: 1.2rem;
	padding: 0 10px;
}
#footer .copyCol {
	background: #7b314e;
	padding: 17px 40px 25px;
}
#footer .copyCol .copyright {
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#footer .navCts {
		padding: 35px 0;
	}
	#footer .navCts a {
	}
	#footer .navCts a:hover {
		text-decoration: none;
	}
	#footer .navCts .ctsInr {
		min-width: auto;
		padding: 0 20px;
		margin: 0 auto;
	}
	#footer .navCts .logo img {
		width: 243px;
	}
	#footer .navCts .naviWrap {
		display: block;
		margin-right: 0;
		margin-top: 13px;
	}
	#footer .navCts .navCol {
		max-width: none;
		margin-top: 0;
		padding: 0;
		border-top: 1px solid #efeeef;
	}
	#footer .navCts .navColFloat {
		display: block;
	}
	#footer .navCts .navColFloat:first-child .navCol:first-child {
		border-top: none;
	}
	#footer .navCts .navColFloat:last-child .navCol:last-child {
		padding-right: 0;
	}
	#footer .navCts .navCol .parent {
		white-space: nowrap;
	}
	#footer .navCts .navCol .parent a {
		font-size: 1.6rem;
		font-weight: bold;
		display: block;
		padding: 15px 0;
	}
	#footer .navCts .navCol .childNavi {
		margin-top: 0;
		padding-bottom: 15px;
	}
	#footer .navCts .navCol .childNavi > li {
		font-size: 1.2rem;
		margin-top: 8px;
	}
	#footer .navCts .navCol .childNavi > li:first-child {
		margin-top: 0;
	}
	#footer .navCts .navCol .childNavi > li .gChildNavi {
		padding-left: 20px;
		display: flex;
		flex-wrap: wrap;
	}
	#footer .navCts .navCol .childNavi > li .gChildNavi li {
		margin-top: 10px;
		padding-right: 20px;
	}
	#footer .navCts .subNav ul {
		margin-top: 20px;
		flex-wrap: wrap;
	}
	#footer .navCts .subNav ul li {
		font-size: 1rem;
		padding: 0 10px;
		margin-top: 10px;
	}
	#footer .copyCol {
		background: #7b314e;
		padding: 13px 10px;
	}
	#footer .copyCol .copyright {
		font-size: 1rem;
		text-align: center;
	}
}


/*===========================================================================
 #main
===========================================================================*/
#main {
	position: relative;
}



