@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

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: "Noto Sans JP", sans-serif;
	/* font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo", YuGothic, "游ゴシック","ＭＳ Ｐゴシック","sans-serif"; */
	line-height: 1;
	color: #000;
	-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: #2d2d2d;
	text-decoration: underline;
}
a:hover {
	color: #1769b4;
}

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


#wrap {
	overflow: hidden;
	min-width: 1000px;
}

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




#svgSet {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}



#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 {
	width: 100%;
	box-sizing: border-box;
	padding-left: 40px;
	padding-right: 40px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
#header .hdInr {
	display: flex;
	align-items: center;
	max-width: 1200px;
	height: 85px;
	margin: 0 auto;
}
#header .hdInr .logo {
	width: 252px;
}
#header .hdInr .logo a {
	text-decoration: none;
	transition: all 0.3s ease-out;
}
#header .hdInr .logo img {
	width: 252px;
	height: auto;
}
#header .hdInr .logo a:hover {
	opacity: 0.7;
}
#header .hdInr .logo a:hover img {
	opacity: 1;
}
#header .hdInr .menuWrap {
	margin-left: auto;
}
#header .hdInr .menuWrap .pcMenu {
	display: flex;
	align-items: center;
	margin-left: auto;
}
#header .hdInr .menuWrap .pcMenu .item a {
	display: inline-block;
	box-sizing: border-box;
	padding: 10px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 1.6rem;
	transition: all 0.3s ease-out;
	letter-spacing: 0.05em;
}
#header .hdInr .contWrap {
	margin-left: 5px;
}
#header .hdInr .contWrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 40px;
	box-sizing: border-box;
	padding: 4px 8px;
	border-radius: 25px;
	background: #333;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease-out;
}
#header .hdInr .contWrap a .txt {
	padding-left: 25px;
	font-size: 1.6rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
	position: relative;
}
#header .hdInr .contWrap a .txt::before {
	content: " ";
	width: 17px;
	height: 10px;
	background: url(/common/images/icn_mail.svg) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
	#header .hdInr .menuWrap .pcMenu .item a {
		padding: 10px 6px;
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	#header .hdInr .contWrap a {
		width: 110px;
		height: 30px;
		padding: 4px 8px;
		border-radius: 25px;
	}
	#header .hdInr .contWrap a .txt {
		padding-left: 25px;
		font-size: 1.2rem;
		line-height: 1.3;
		letter-spacing: 0.05em;
	}
}

#header .hdInr .pcMenu .item a:hover,
#header .hdInr .contWrap a:hover {
	opacity: 0.7;
}

#header .hdInr .spMenuBtn {
	display: none;
	height: 0;
}

#header .spMenuWrap {
	display: none;
	width: 100%;
	height: 0;
	background: #fff;
	position: fixed;
	top: 55px;
	left: 0;
	overflow: auto;
}
#header .spMenuWrap .menuInr {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px 20px 130px;
}
#header .spMenuWrap .menuInr .menu .item {
	border-top: 1px solid #efeeef;
}
#header .spMenuWrap .menuInr .menu .item:first-child {
	border-top: none;
}
#header .spMenuWrap .menuInr .menu .item a {
	display: flex;
	align-items: center;
	margin-left: 40px;
	box-sizing: border-box;
	padding: 15px 0;
	text-decoration: none;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	transition: all 0.3s ease-out;
	opacity: 0;
}
#header .spMenuWrap .menuInr .menu .item a:hover {
	opacity: 0.7 !important;
}
#header .spMenuWrap .menuInr .contWrap {
	opacity: 0;
	width: 238px;
	margin: 30px auto 0;
}
#header .spMenuWrap .menuInr .contWrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	box-sizing: border-box;
	padding: 8px 10px;
	border-radius: 45px;
	background: #333;
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	line-height: 1.4;
	letter-spacing: 0.05em;
	transition: all 0.3s ease-out;
}
#header .spMenuWrap .menuInr .contWrap a:hover {
	opacity: 0.7;
}
#header .spMenuWrap .menuInr .contWrap a .txt {
	padding-left: 30px;
	position: relative;
}
#header .spMenuWrap .menuInr .contWrap a .txt::before {
	content: " ";
	width: 20px;
	height: 12px;
	background: url(/common/images/icn_mail.svg) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
/* SP
----------------------------------*/
@media screen and (max-width: 975px) {
	#header {
		padding-left: 20px;
		padding-right: 20px;
	}
	#header .hdInr {
		max-width: 100%;
		height: 55px;
	}
	#header .hdInr .logo {
		width: 160px;
		margin-left: -10px;
	}
	#header .hdInr .logo img {
		width: 100%;
	}
	#header .hdInr .menuWrap {
		display: none !important;
	}
	#header .hdInr .contWrap {
		margin-left: auto;
		transition: all 0.3s ease-out;
	}
	#header.js-open .hdInr .contWrap {
		opacity: 0;
		pointer-events: none;
	}
	#header .hdInr .contWrap a {
		width: 120px;
		height: 32px;
	}
	#header .hdInr .contWrap a .txt {
		padding-left: 22px;
		font-size: 1.4rem;
	}
	#header .hdInr .contWrap a .txt::before {
		width: 15px;
		height: 10px;
	}
	#header .hdInr .spMenuBtn {
		display: block;
		height: auto;
		margin-left: 10px;
		margin-right: -10px;
	}
	#header .hdInr .spMenuBtn .barWrap {
		width: 40px;
		height: 34px;
		box-sizing: border-box;
		padding: 6px 8px;
		position: relative;
		cursor: pointer;
	}
	#header .hdInr .spMenuBtn .barWrap::before,
	#header .hdInr .spMenuBtn .barWrap::after {
		content: " ";
	}
	#header .hdInr .spMenuBtn .barWrap::before,
	#header .hdInr .spMenuBtn .barWrap::after,
	#header .hdInr .spMenuBtn .barWrap .bar {
		width: 26px;
		height: 2px;
		background: #333;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(0);
		transition: all 0.3s ease-out;
	}
	#header .hdInr .spMenuBtn .barWrap::before {
		margin-top: -10px;
	}
	#header .hdInr .spMenuBtn .barWrap::after {
		margin-top: 10px;
	}

	#header.js-open .hdInr .spMenuBtn .barWrap::before,
	#header.js-open .hdInr .spMenuBtn .barWrap .bar {
		margin-top: 0;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	#header.js-open .hdInr .spMenuBtn .barWrap::after {
		margin-top: 0;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
}
/* SE
----------------------------------*/
@media screen and (max-width: 359px) {
	#header .hdInr .spMenuBtn {
		margin-left: 6px;
	}
	#header .hdInr .contWrap a {
		width: 88px;
		height: 30px;
		padding: 4px 4px;
	}
	#header .hdInr .contWrap a .txt {
		padding-left: 18px;
		font-size: 1.1rem;
	}
	#header .hdInr .contWrap a .txt::before {
		width: 13px;
		height: 8px;
	}
	#header .hdInr .spMenuBtn .barWrap {
		width: 36px;
		padding: 6px 4px;
	}
	#header .hdInr .spMenuBtn .barWrap::before,
	#header .hdInr .spMenuBtn .barWrap::after,
	#header .hdInr .spMenuBtn .barWrap .bar {
		width: 24px;
	}
}


/*===========================================================================
 #footer
===========================================================================*/
#footer {
	position: relative;
}
#footer .ftCts {
	padding: 60px 40px 120px;
	background: #333;
	color: #fff;
}
#footer .ftCts .ftCtsInr {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
#footer .ftCts .ftCtsInr .ftLogo {
	width: 252px;
}
#footer .ftCts .ftCtsInr .ftLogo a {
	text-decoration: none;
	transition: all 0.3s ease-out;
}
#footer .ftCts .ftCtsInr .ftLogo a img {
	width: 252px;
	height: auto;
}
#footer .ftCts .ftCtsInr .ftLogo a:hover {
	opacity: 0.7;
}
#footer .ftCts .ftCtsInr .ftLogo a:hover img {
	opacity: 1;
}
#footer .ftCts .ftCtsInr .ftCol {
	flex: 1 0 0%;
	box-sizing: border-box;
	padding-left: 20px;
}
#footer .ftCts .ftCtsInr .ftCol .colInr {
	max-width: 768px;
	margin-left: auto;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu {
	display: flex;
	justify-content: space-between;
	margin: 6px -8px 0;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu .menu a {
	box-sizing: border-box;
	padding: 4px 8px;
	text-decoration: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.08em;
	transition: all 0.3s ease-out;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu .menu a:hover {
	opacity: 0.7;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap {
	display: flex;
	margin: 50px -10px 0;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office {
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .location {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .txtCol {
	margin-top: 10px;
}
#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .txtCol .address {
	font-size: 1.6rem;
	line-height: 1.5;
}
#footer .copyLine {
	box-sizing: border-box;
	padding: 0 40px;
	background-color: #fff;
}
#footer .copyLine .lineInr {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	height: 80px;
	margin: 0 auto;
}
#footer .copyLine .copy {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	#footer {
		margin-top: 90px;
	}
	.ft_Service_contact + #footer {
		margin-top: 1px;
	}
	#footer .ftCts {
		padding: 30px 20px 60px;
	}
	#footer .ftCts .ftCtsInr {
		display: block;
		max-width: 100%;
	}
	#footer .ftCts .ftCtsInr .ftLogo {
		width: 150px;
	}
	#footer .ftCts .ftCtsInr .ftLogo a img {
		width: 100%;
	}
	#footer .ftCts .ftCtsInr .ftCol {
		flex: 0 1 auto;
		margin-top: 20px;
		padding-left: 0;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr {
		max-width: 100%;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		margin: 0;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu .menu {
		width: 50%;
		margin-top: 10px;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .ftMenu .menu a {
		padding: 4px 10px;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap {
		display: block;
		margin: 50px 0 0;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office {
		width: 100%;
		padding: 0;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office + .office {
		margin-top: 25px;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .location {
		font-size: 1.6rem;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .txtCol {
		margin-top: 10px;
	}
	#footer .ftCts .ftCtsInr .ftCol .colInr .officeWrap .office .txtCol .address {
		font-size: 1.4rem;
	}
	#footer .copyLine {
		padding: 0 20px;
	}
	#footer .copyLine .lineInr {
		max-width: 100%;
		height: 45px;
	}
}




/*===========================================================================
 #main
===========================================================================*/
#fadeOl {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: opacity 0.6s linear;
}
html.js-pageShow #fadeOl {
	opacity: 0;
}
html.js-pageHide #fadeOl {
	opacity: 1;
}

#mainWrap {
	background: #fff;
	padding-top: 70px;
}


/* ↓↓↓ マウスストーカー ↓↓↓ */
#cloneCursor {
	opacity: 0;
	width: 12px;
	height: 12px;
	background-color: #fff0e6;
	border-radius: 50%;
	mix-blend-mode: difference;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.2s;
	transition-timing-function: cubic-bezier(0.1,0.39,0.03,0.46);
	transform-origin: center center;
	z-index: 999;
}
#cloneCursor.js-noEase {
	transition: none !important;
}
#cloneCursor.js-active {
	transform: scale(3);
}
#cloneCursor.js-show {
	opacity: 1;
}
#cloneCursor.js-hide {
	opacity: 0 !important;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	#cloneCursor {
		display: none !important;
	}
}




.ft_Service_contact {
	border-top: 1px solid #ededed;
}
.ft_Service_contact .ctsWrap {
	display: flex;
	position: relative;
}
.ft_Service_contact .ctsWrap::before {
	content: " ";
	width: 2px;
	height: 100%;
	background-color: #ededed;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
.ft_Service_contact .ctsWrap .item {
	display: block;
	width: 50%;
	box-sizing: border-box;
	text-decoration: none;
	color: #343434;
	position: relative;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}
.ft_Service_contact .ctsWrap .item::before {
	content: " ";
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}
.ft_Service_contact .ctsWrap .item::after {
	content: " ";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
.ft_Service_contact .ctsWrap .item.service::after {
	background-image: url(/common/images/cts_service_bg.png);
}
.ft_Service_contact .ctsWrap .item.contact::after {
	background-image: url(/common/images/cts_contact_bg.png);
}
.ft_Service_contact .ctsWrap .item:first-child {
	border-left: none;
}
.ft_Service_contact .ctsWrap .item .itemInr {
	max-width: 600px;
	box-sizing: border-box;
	padding: 76px 60px;
	position: relative;
	z-index: 4;
}
.ft_Service_contact .ctsWrap .item:nth-child(odd) .itemInr {
	margin-left: auto;
}
.ft_Service_contact .ctsWrap .item .itemInr .ttl {
	display: table;
	padding-right: 48px;
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.06em;
	position: relative;
}
.ft_Service_contact .ctsWrap .item .itemInr .ttl::before {
	content: " ";
	width: 10px;
	height: 16px;
	background-image: url(/common/images/icn_arow_right_bk.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all 0.2s ease-in-out;
}
.ft_Service_contact .ctsWrap .item .itemInr .txtCol {
	margin-top: 22px;
}
.ft_Service_contact .ctsWrap .item .itemInr .txtCol .txt {
	font-size: 1.5rem;
	line-height: 1.8;
}
.ft_Service_contact .ctsWrap .item:hover {
	color: #fff;
}
.ft_Service_contact .ctsWrap .item:hover::before {
	opacity: 0;
}
.ft_Service_contact .ctsWrap .item:hover .itemInr .ttl::before {
	background-image: url(/common/images/icn_arow_right_wt.svg);
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.ft_Service_contact .ctsWrap {
		display: block;
	}
	.ft_Service_contact .ctsWrap::before {
		display: none;
	}
	.ft_Service_contact .ctsWrap .item {
		display: flex;
		align-items: center;
		width: 100%;
		height: 230px;
		box-sizing: border-box;
		padding: 15px 25px;
		border-top: 1px solid #ededed;
		border-left: none;
	}
	.ft_Service_contact .ctsWrap .item::before {
		content: none;
	}
	.ft_Service_contact .ctsWrap .item.service::after {
		background-image: url(/common/images/sp_cts_service_bg.png);
	}
	.ft_Service_contact .ctsWrap .item.contact::after {
		background-image: url(/common/images/sp_cts_contact_bg.png);
	}
	.ft_Service_contact .ctsWrap .item:first-child {
		border-left: none;
	}
	.ft_Service_contact .ctsWrap .item .itemInr {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	.ft_Service_contact .ctsWrap .item:nth-child(odd) .itemInr {
		margin-left: 0;
	}
	.ft_Service_contact .ctsWrap .item .itemInr .ttl {
		padding-right: 28px;
		color: #fff;
		font-size: 4rem;
		letter-spacing: 0.08em;
	}
	.ft_Service_contact .ctsWrap .item .itemInr .ttl::before {
		width: 7px;
		height: 15px;
		background-image: url(/common/images/icn_arow_right_wt.svg);
	}
	.ft_Service_contact .ctsWrap .item .itemInr .txtCol {
		margin-top: 10px;
	}
	.ft_Service_contact .ctsWrap .item .itemInr .txtCol .txt {
		color: #fff;
		font-size: 1.6rem;
	}
}






.recommendCasestudy {
	margin-top: 60px;
}
.recommendCasestudy .secInr .secTtl .ttl {
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
.recommendCasestudy .secInr .secCtsWrap {
	display: flex;
	margin: 40px -15px 0;
	padding-bottom: 30px;
}
.recommendCasestudy .secInr .secCtsWrap .item {
	width: 33.33333%;
	box-sizing: border-box;
	padding: 0 15px;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr {
	display: block;
	height: 100%;
	box-sizing: border-box;
	padding: 30px 20px 14px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease-out;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr:hover {
	opacity: 0.7;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .ttlWrap .sub {
	color: #666;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 2;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .ttlWrap .ttl {
	height: 66px;
	overflow: hidden;
	margin-top: 5px;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.2;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .catWrap {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	height: 28px;
	margin: 10px -2px 0;
	overflow: hidden;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .catWrap .cat {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 23px;
	margin: 4px 2px 0;
	box-sizing: border-box;
	padding: 2px 12px 3px;
	border-radius: 45px;
	background: #606060;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.2;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .img {
	width: 200px;
	margin: 20px auto 0;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .img img {
	width: 100%;
	height: auto;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap {
	display: flex;
	align-items: center;
	margin-top: 15px;
	box-sizing: border-box;
	padding: 8px 20px;
	background: #f8f8f8;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data {
	flex: 1 0 0%;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data .ttl {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}
.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data .txt {
	color: #666;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.6;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.recommendCasestudy {
		margin-top: 42px;
	}
	.recommendCasestudy .secInr .secTtl .ttl {
		font-size: 3rem;
	}
	.recommendCasestudy .secInr .secCtsWrap {
		margin: 40px 0 0;
		padding-bottom: 25px;
	}
	.recommendCasestudy .secInr .secCtsWrap .item {
		width: 100%;
		padding: 0;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr {
		padding: 20px 25px;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .ttlWrap .sub {
		font-size: 1.2rem;
		line-height: 1.7;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .ttlWrap .ttl {
		height: 55px;
		margin-top: 4px;
		font-size: 2.3rem;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .catWrap {
		height: 30px;
		margin: 5px -2px 0;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .catWrap .cat {
		height: 22px;
		padding: 2px 8px 3px;
		font-size: 1.1rem;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .img {
		width: 85.07937%;
		margin: 10px auto 0;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap {
		margin-top: 10px;
		padding: 5px 15px;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data {
		display: flex;
		flex-wrap: wrap;
		flex: 1 0 0%;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data .ttl {
		font-size: 1.1rem;
	}
	.recommendCasestudy .secInr .secCtsWrap .item .itemInr .dataWrap .data .txt {
		font-size: 1rem;
	}
}










.recommendKnowledge {
	background: #f5f5f5;
	padding-top: 100px;
	padding-bottom: 50px;
}
.recommendKnowledge + .recommendKnowledge {
	padding-top: 0;
	padding-bottom: 110px;
}
.recommendKnowledge .secInr .secTtl .ttl {
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
.recommendKnowledge .secInr .secCtsWrap {
	display: flex;
	margin: 30px -15px 0;
}
.recommendKnowledge .secInr .secCtsWrap .item {
	width: 33.33333%;
	box-sizing: border-box;
	padding: 0 15px;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr {
	display: block;
	height: 100%;
	box-sizing: border-box;
	padding: 32px 30px 35px;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.06);
	background: #fff;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease-out;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr:hover {
	opacity: 0.7;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colTtl .sub {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.8;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colTtl .ttl {
	margin-top: 6px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData {
	margin-top: 20px;
	color: #999;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine {
	display: flex;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date {
	display: flex;
	flex-wrap: wrap;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date + .date {
	margin-left: 20px;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .ttl,
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .txt {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .ttl {
	margin-right: 8px;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .author {
	margin-top: 5px;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .author .name {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .tagWrap {
	display: flex;
	flex-wrap: wrap;
	margin: 12px 0 0;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .tagWrap .tag {
	margin-top: 6px;
	margin-right: 12px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
}
.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .tagWrap .tag:last-child {
	margin-right: 0;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.recommendKnowledge {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.recommendKnowledge + .recommendKnowledge {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.recommendKnowledge .secInr .secTtl .ttl {
		font-size: 3rem;
	}
	.recommendKnowledge .secInr .secCtsWrap {
		margin: 15px 0 0;
	}
	.recommendKnowledge .secInr .secCtsWrap .item {
		width: 100%;
		padding: 0 10px;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr {
		padding: 22px 40px 28px;
		box-shadow: 2px 2px 3px rgba(0,0,0,0.06);
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colTtl .sub {
		font-size: 1.2rem;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colTtl .ttl {
		margin-top: 4px;
		font-size: 1.9rem;
		line-height: 1.5;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date + .date {
		margin-left: 10px;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .ttl,
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .txt {
		font-size: 1.1rem;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .dateLine .date .ttl {
		margin-right: 5px;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .author .name {
		font-size: 1.1rem;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .tagWrap {
		margin: 18px 0 0;
	}
	.recommendKnowledge .secInr .secCtsWrap .item .itemInr .colData .tagWrap .tag {
		margin-right: 6;
	}
	.js-spSlide .secInr .secCtsWrap .slide .btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		background: #333;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
	}
	.js-spSlide .secInr .secCtsWrap .slide .next {
		right: -10px;
	}
	.js-spSlide .secInr .secCtsWrap .slide .prev {
		left: -10px;
	}
}






.secPickUp {
	background: #f5f5f5;
	padding-top: 34px;
	padding-bottom: 110px;
}
.secPickUp .secInr .secTtl .ttl {
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
.secPickUp .secInr .secCtsWrap {
	display: flex;
	margin: 30px -8px 0;
}
.secPickUp .secInr .secCtsWrap .item {
	width: 25%;
	box-sizing: border-box;
	padding: 0 8px;
}
.secPickUp .secInr .secCtsWrap .item .itemInr {
	display: block;
	height: 100%;
	background: no-repeat center center;
	background-size: cover;
	color: #343434;
	text-decoration: none;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.06);
	transition: all 0.3s ease-out;
	position: relative;
}
.secPickUp .secInr .secCtsWrap .item .itemInr .thum {
	opacity: 0;
}
.secPickUp .secInr .secCtsWrap .item .itemInr .thum img {
	width: 100%;
	height: auto;
}
.secPickUp .secInr .secCtsWrap .item .itemInr:hover {
	opacity: 0.7;
}
.secPickUp .secInr .secCtsWrap .item .itemInr .txt {
	width: 100%;
	text-align: center;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.05em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.secPickUp {
		padding-top: 20px;
		padding-bottom: 60px;
	}
	.secPickUp .secInr .secTtl .ttl {
		font-size: 3rem;
	}
	.secPickUp .secInr .secCtsWrap {
		display: flex;
		flex-wrap: wrap;
		margin: 8px -4px 0;
	}
	.secPickUp .secInr .secCtsWrap .item {
		width: 50%;
		margin-top: 8px;
		padding: 0 4px;
	}
	.secPickUp .secInr .secCtsWrap .item .itemInr {
		height: auto;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
	}
	.secPickUp .secInr .secCtsWrap .item .itemInr .txt {
		font-size: 1.9rem;
	}
}




.comingSoon .inr {
	padding: 150px 0;
}
.comingSoon .inr .transWrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: url(/common/images/page_ttl_bg.png) no-repeat center center;
	background-size: cover;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	position: relative;
}
.comingSoon .inr .transWrap .txt {
	text-align: center;
	font-size: 10rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.08em;
}
.comingSoon .inr .btnWrap {
	width: 306px;
	margin: 60px auto 0;
}
.comingSoon .inr .btnWrap .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	box-sizing: border-box;
	padding: 10px;
	background: #333;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-out;
	position: relative;
}
.comingSoon .inr .btnWrap .btn::after {
	content: "";
	width: 8px;
	height: 16px;
	background: url(/common/images/icn_arow_right_wt.svg) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.comingSoon .inr .btnWrap .btn:hover {
	opacity: 0.7;
}
.comingSoon .inr .btnWrap .btn .txt {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.comingSoon .inr {
		padding: 46px 0;
	}
	.comingSoon .inr .transWrap .txt {
		font-size: 3.9rem;
		font-weight: bold;
		line-height: 1.2;
	}
	.comingSoon .inr .btnWrap {
		width: 100%;
		max-width: 240px;
		margin: 26px auto 0;
	}
	.comingSoon .inr .btnWrap .btn {
		height: 50px;
	}
	.comingSoon .inr .btnWrap .btn::after {
		width: 6px;
		height: 12px;
		right: 10px;
	}
}
/* SE
----------------------------------*/
@media screen and (max-width: 359px) {
	.comingSoon .inr .transWrap .txt {
		font-size: 3.4rem;
	}
}




.smokeBg {
	position: relative;
	background: url(/about/images/about_bg.png) repeat-y center top;
	background-size: 1200px 9133px;
}
/* .smokeBg::before {
	content: " ";
	width: 1200px;
	height: 100%;
	background: url(/about/images/about_bg.png) no-repeat center top;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 0;
	pointer-events: none;
} */
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.smokeBg {
		overflow: hidden;
		position: relative;
		background: url(/about/images/sp_about_bg.png) repeat-y center top;
		background-size: 920px 6079px;
	}
}

/*===========================================================================
 Common use （cm-）　parts （pt-） 　パターン別（st-）　個別での上書き（ow-）
===========================================================================*/


/*フォント*/


/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	.cm-spOnly {
		display: none !important;
	}
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.cm-pcOnly {
		display: none !important;
	}
}


.cm-imgW100 {
	width: 100%;
	height: auto;
}


/*------------------------------------- 
アイコン　　//ex//<svg class="pt-icnBlank icnBlank"><use xlink:href="#svg-icnBlank"/></svg>
-------------------------------------*/
/*ブランクアイコン*/
.pt-icnBlank {
	width: 13px;
	height: 14px;
}
.pt-icnBlank {
	fill: #2d2d2d;
}
a:hover .pt-icnBlank {
	fill: #1769b4;
}






/*view moreボタン*/
.pt-viewMore {
	margin-top: 58px;
}
.pt-viewMore .viewInr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 306px;
	height: 64px;
	margin: 0 auto;
	background: #333;
	text-decoration: none;
	color: #fff;
	box-sizing: border-box;
	padding: 6px 36px;
	position: relative;
	transition: all 0.3s ease-out;
}
.pt-viewMore .viewInr::before {
	content: " ";
	width: 8px;
	height: 16px;
	background: url(/common/images/icn_arow_right_wt.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
}
.pt-viewMore .viewInr:hover {
	opacity: 0.7;
}
.pt-viewMore .viewInr .txt {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.pt-viewMore {
		margin-top: 20px;
	}
	.pt-viewMore .viewInr {
		width: 100%;
		max-width: 248px;
		height: 50px;
		padding: 6px 26px;
	}
	.pt-viewMore .viewInr::before {
		width: 6px;
		height: 12px;
		right: 14px;
	}
}





.pt-pageTtlWrap {
	padding-left: 40px;
	padding-right: 40px;
}
.pt-pageTtlWrap .ttlInr {
	width: 100%;
	height: 300px;
	max-width: 1200px;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
}
.testWrap {
	background-clip: none;
}
.pt-pageTtlWrap .ttlInr .transWrap {
	display: flex;
	align-items: center;
	height: 100%;
}
.pt-pageTtlWrap .ttlInr .transWrap .ttlEn {
	background-image: url(/common/images/page_ttl_bg.png);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.pt-pageTtlWrap .ttlInr .transWrap .ttlEn .ttl {
	margin-right: 70px;
	font-size: 10rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.08em;
}
.pt-pageTtlWrap .ttlInr .transWrap .ttlJp .ttl {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.pt-pageTtlWrap {
		padding-left: 20px;
		padding-right: 20px;
	}
	.pt-pageTtlWrap .ttlInr {
		height: 200px;
		max-width: 100%;
	}
	.pt-pageTtlWrap .ttlInr .transWrap {
		display: block;
		height: auto;
		padding-top: 54px;
	}
	.pt-pageTtlWrap .ttlInr .transWrap .ttlEn .ttl {
		margin-right: 0;
		font-size: 4.7rem;
		line-height: 1.4;
	}
	.pt-pageTtlWrap .ttlInr .transWrap .ttlJp .ttl {
		font-size: 1.9rem;
	}
}
/* SE
----------------------------------*/
@media screen and (max-width: 767px) {
	.pt-pageTtlWrap .ttlInr .transWrap .ttlEn {
		font-size: 4.1rem;
	}
}





.breadcrumb {
	margin-top: 120px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 30px;
}
.breadcrumb .inr {
	max-width: 1200px;
	margin: 0 auto;
}
.breadcrumb .inr ul {
	display: flex;
}
.breadcrumb .inr ul li {
	font-size: 1rem;
	line-height: 1.5;
	position: relative;
}
.breadcrumb .inr ul li + li {
	padding-left: 15px;
}
.breadcrumb .inr ul li::before {
	content: " ";
	width: 4px;
	height: 8px;
	background: url(/common/images/icn_arow_right_gl.svg) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
}
.breadcrumb .inr ul li a {
	text-decoration: none;
	color: #000;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.breadcrumb {
		margin-top: 45px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
	}
	.breadcrumb .inr {
		max-width: 100%;
	}
	.breadcrumb .inr ul {
		flex-wrap: wrap;
	}
	.breadcrumb .inr ul li {
		font-size: 1.2rem;
	}
	.breadcrumb .inr ul li::before {
		top: 6px;
		transform: translateY(0);
	}
}




.lo-ctsIdt {
	padding-left: 40px;
	padding-right: 40px;
}
.lo-ctsWidth {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.lo-ctsIdt {
		padding-left: 20px;
		padding-right: 20px;
	}
	.lo-ctsWidth {
		max-width: 100%;
	}
}