@charset "utf-8";
@import url('vendor.css');





/* init
------------------------------------------------*/
html {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans Japanese', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
	font-size: 62.5%;
	font-weight: 500;
	line-height: 2.0;
	letter-spacing: 0.1rem;
	color: #000;
	overflow-y: scroll;
}
body {
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
}
html.scFix, body.scFix {
	overflow: hidden;
}

section {
	padding: 100px 0;
}
section.pb {
	padding-bottom: 0;
}
section .wrap,
footer .wrap {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
section .wrap .innerWrap {
	position: relative;
	padding: 0 10%;
}

a {
	color: #000;
	text-decoration: none;
}

img, svg {
	width: 100%;
	vertical-align: middle;
	line-height: 0;
}

.hideaway {
	opacity: 0;
}

.-pc-content{ display: block !important; }
.-sp-content{ display: none !important; }


@media screen and (max-width: 768px) {
	body {
		font-size: 3.75vw;
	}
	section {
		padding: 13.333vw 0;
	}
	section .wrap {
		width: 100%;
		max-width: 100%;
	}
	section .wrap .innerWrap {
		position: relative;
		padding: 0 10vw;
	}

	.-pc-content{ display: none !important; }
	.-sp-content{ display: block !important; }
}



/* header
------------------------------------------------*/
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	margin: 0 auto;
	z-index: 999;
}
header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	height: 130px;
	margin: 0 auto;
	padding: 0 50px;
	background-color: #fff;
}

header h1 {
	width: 180px;
	/**margin-right: auto;*/
	flex-shrink: 0;
}
header #headerNav {
	width: calc(100% - 180px);
}
header #headerNav nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	column-gap: min(2.5vw, 4.6rem);
}
header #headerNav nav ul li a {
	display: block;
	position: relative;
	padding: 1rem 0;
	font-size: 1.4rem;
	/*font-size: min(1.10vw, 15px);*/
	font-weight: bold;
	line-height: 1;
	color: #000;
}
header #headerNav nav ul li:not(:last-child) a:after {
	position: absolute;
	left: 50%;
	bottom: 0.5rem;
	width: 0;
	height: 1px;
	content: '';
	background: #000;
	transition: all 0.3s ease-out;
}
header #headerNav nav ul li:not(:last-child).on a::after {
	left: 0;
	width: 100%;
}

header #headerNav nav ul li:last-child {
	position: relative;
	padding: 0.4em 0;
	background: #000;
}
header #headerNav nav ul li:last-child a {
	padding: 0.4rem 3.5rem 0.4rem 2.3rem;
	color: #fff;
}
header #headerNav nav ul li:last-child.on a {
	color: #000;
}
header #headerNav nav ul li:last-child::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	content: '';
	background: #fff;
	border: 1px solid #000;
	transition: all 0.3s ease-out;
}
header #headerNav nav ul li:last-child.on::before {
	width: 100%;
}
header #headerNav nav ul li:last-child a::after {
	position: absolute;
	right: 1.2rem;
	top: calc(50% - 11px * 0.5);
	width: 16px;
	height: 11px;
	content: '';
	background: url(/assets/images/ico_mailwhite.svg) no-repeat center center;
	transition: all 0.3s ease-out;
}
header #headerNav nav ul li:last-child.on a::after {
	background: url(/assets/images/ico_mailblack.svg) no-repeat center center;
}


@media screen and (max-width: 768px) {
	header .wrap {
		width: 100%;
		max-width: auto;
		height: 18.666vw;
		padding: 0 5.066vw;
	}

	header h1 {
		width: 28vw;
	}
	header #headerNav {
		width: 8vw;
	}
	header #headerSPbtn {
		position: relative;
		width: 100%;
		z-index: 10;
	}
	header #headerSPbtn #icomenu_c1 { transform: translateX(0); transition: all 0.30s ease-out;}
	header #headerSPbtn #icomenu_c2 { transform: translateX(0); transition: all 0.30s ease-out;}
	header #headerSPbtn #icomenu_c3 { transform: translateX(0); transition: all 0.30s ease-out;}
	header #headerSPbtn #icomenu_c4 { transform: translateX(0); transition: all 0.30s ease-out;}
	header #headerSPbtn #icomenu_cross { transform: scale(0); transition: all 0.30s ease-out;}
	header.navOpen #headerSPbtn .icomenu_char { opacity: 0;	}
	header.navOpen #headerSPbtn #icomenu_c1 { transform: translateX(1.8rem); }
	header.navOpen #headerSPbtn #icomenu_c2 { transform: translateX(0.9rem); }
	header.navOpen #headerSPbtn #icomenu_c3 { transform: translateX(-0.9rem); }
	header.navOpen #headerSPbtn #icomenu_c4 { transform: translateX(-1.8rem); }
	header.navOpen #headerSPbtn #icomenu_cross { transform: scale(1); }

	header #headerNav nav {
		position: fixed;
		width: 100%;
		height: 100vh;
		padding: 20vw 5vw 0;
		left: 0;
		top: -100vh;
		background: #f5f5f5;
		z-index: 1;
		opacity: 0;
		transition: all 0.30s ease-out;
	}
	header.navOpen #headerNav nav {
		top: 0;
		opacity: 1;
	}

	header #headerNav nav ul {
		display: block;
	}
	header #headerNav nav ul li {
		margin: 2rem 0;
	}
	header #headerNav nav ul li a {
		display: inline-block;
		padding: 0.4rem 1.5rem;
	}

	header #headerNav nav ul li:last-child {
		display: inline-block;
	}
	header #headerNav nav ul li:last-child a {
		padding: 0.4rem 3.5rem 0.4rem 1.5rem;
	}

	header #headerNav nav ul li:not(:last-child) a:after {
		bottom: -0.5rem;
	}
	header #headerNav nav ul li:not(:last-child).on a::after {
		left: 1.5rem;
		width: calc(100% - 3rem);
	}
}



/* heading
------------------------------------------------*/
section h2 {
	margin: 0 0 4rem;
	font-size: 6.4rem;
	font-weight: bold;
	line-height: 1;
	overflow: hidden;
}
section h2 > strong > span {
	display: inline-block;
	opacity: 0;
}
section h2 > span {
	display: inline-block;
	margin-left: 2em;
	font-size: 1.7rem;
	opacity: 0;
}


@media screen and (max-width: 768px) {
	section h2 {
		font-size: 8.533vw;
	}
	section h2 > span {
		margin-left: 1em;
		font-size: 3.0vw;
	}
}



/* kv
------------------------------------------------*/
section#kv {
	padding: 0;
}
section#kv .wrap {
	height: 60vh;
}
section#kv .innerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
section#kv .innerWrap p {
	width: 50%;
	margin: 0;
	flex-shrink: 0;
}
section#kv .innerWrap div {
	width: 42%;
	flex-shrink: 0;
}

section#kv #kvConcept {
	position: relative;
	padding: 1rem 0;
	text-align: center;
	opacity: 0;
}
section#kv #kvConcept::before,
section#kv #kvConcept::after {
	position: absolute;
	left: 50%;
	width: 0;
	height: 1px;
	content: '';
	background: #000;
	transition: all 0.5s ease-out;
}
section#kv #kvConcept::before {
	top: 0;
}
section#kv #kvConcept::after {
	bottom: 0;
}
section#kv #kvConcept.show::before,
section#kv #kvConcept.show::after {
	left: 0;
	width: 100%;
}

section#kv #kvConcept a {
	font-size: 1.7rem;
	opacity: 0;
	transition: all 1s ease-out;
}
section#kv #kvConcept.show a {
	opacity: 1;
}

section#kv #kvSCicon {
	position: relative;
	width: 3em;
	height: 3em;
	line-height: 1;
	margin: 0 auto 4em;
	font-size: 1.4rem;
	text-align: center;
	opacity: 0;
}
section#kv #kvSCicon::after {
	position: absolute;
	left: calc(50% - 30% * 0.5);
	top: calc(50% - 30% * 0.5);
	width: 30%;
	height: 30%;
	content: '';
	border: solid #000;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
	animation: kvscicon 1.0s infinite;
}
@keyframes kvscicon {
	0% { top: calc(50% - 30% * 0.5); }
	50% { top: calc(50% - 30% * 0.5 + 5px); }
	100% { top: calc(50% - 30% * 0.5); }
}


@media screen and (max-width: 768px) {
	section#kv .wrap {
		height: 60vh;
	}
	section#kv .innerWrap {
		justify-content: center;
		flex-wrap: wrap;
		/*flex-direction: column;*/
	}
	section#kv .innerWrap p {
		width: 70vw;
		margin: 0 auto;
	}
	section#kv .innerWrap div {
		width: 58vw;
		margin: 5vw auto 0;
	}
	section#kv #kvConcept a {
		font-size: 3.75vw;
		font-weight: bold;
	}

	section#kv #kvSCicon {
		margin: -2em auto 3em;
		font-size: 3.0vw;
	}
}



/* statement
------------------------------------------------*/
section#statement .innerWrap {
	display: flex;
	justify-content: space-between;
	padding: 0 6.4%;
}

section#statement #movieThm {
	position: relative;
	width: 46.845%;
	min-width: 350px;
	margin-right: 10%;
}
section#statement #movieThm > div {
	position: relative;
}
section#statement #movieThm > div:first-child {
	margin-bottom: 10%;
}
section#statement #movieThm #movieIcon {
	position: absolute;
	right: -15%;
	bottom: -28%;
	width: 30%;
	padding-bottom: 30%;
	cursor: pointer;
}
section#statement #movieThm #movieIcon svg {
	position: absolute;
	left: 0;
	top: 0;
}
section#statement #movieThm #movieIcon::after {
	position: absolute;
	left: calc(50% - 33%);
	top: calc(50% - 33%);
	width: 66%;
	height: 66%;
	content: '';
	background: url(/assets/images/ico_movie_on.svg) no-repeat center;
	opacity: 0;
	transform: scale(1.4);
	transition: all 0.2s ease-out;
}
section#statement #movieThm #movieIcon.on::after {
	opacity: 1;
	transform: scale(1);
}

section#statement #movieThm #movieIcon #movieIcoTxt {
	transform-origin: 50%;
	animation: moviCircle 10.0s linear infinite;
}
@keyframes moviCircle {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg);}
}

section#statement #statementTxt p {
	margin: 0 0 1em;
	letter-spacing: -0.001em;
}
section .pragraphRow p span {
	display: block;
	opacity: 0;
}


@media screen and (max-width: 768px) {
	section#statement .innerWrap {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		padding: 0 10vw;
	}
	section#statement #movieThm {
		width: 100%;
		min-width: auto;
		margin-top: 10vw;
		margin-right: 0;
	}

	section#statement #movieThm #movieIcon {
		right: -5vw;
		bottom: -12.5vw;
		width: 22vw;
		height: 22vw;
	}
	section#statement #movieThm #movieIcon::after {
		left: calc((22vw - 22vw * 0.66) * 0.5);
		top: calc((22vw - 22vw * 0.66) * 0.5);
		width: calc(22vw * 0.66);
		height: calc(22vw * 0.66);
	}
}


/* news
------------------------------------------------*/
section#news ul li {
	padding: 2.0rem 0;
	border-bottom: 1px solid #000;
}
section#news dl {
	display: flex;
}
section#news dl dt {
	padding: 0.4rem 0;
	flex-shrink: 0;
}
section#news dl dt > span {
	display: inline-block;
	width: 15rem;
	margin: 0 2rem;
	padding: 0.4rem 1rem;
	text-align: center;
	background: #f5f5f5;
}
section#news dl dd > p {
	margin: 0;
	padding: 0.8rem 0 0.4rem 1rem;
	font-weight: bold;
}

section#news ol {
	display: flex;
	justify-content: center;
	margin: 1em 0 0;
}
section#news ol li {
	width: 2em;
	height: 2em;
	margin: 0 0.1em;
	text-align: center;
	border: 1px solid #000;
	cursor: pointer;
	transition: all 0.2s ease-out;
}
section#news ol li.pagerEmp,
section#news ol li.pagerNext,
section#news ol li.pagerPrev {
	border: none;
}
section#news ol li.pagerEmp {
	cursor: default;
}
section#news ol li.on,
section#news ol li.active {
	color: #fff;
	background: #000;
}


@media screen and (max-width: 768px) {
	section#news dl {
		display: block;
	}
	section#news dl dt {
		font-size: 3.0vw;
	}
	section#news dl dd > p {
		padding: 0.4rem 0;
	}
}



/* project
------------------------------------------------*/
section#project {
	background: #f5f5f5;
}

section#project #projectList ul {
	display: flex;
	flex-wrap: wrap;
}
section#project #projectList ul li {
	position: relative;
	width: calc(50% - 2px);
	margin: 0.5px;
}
section#project #projectList ul li .bg {
	position: relative;
	overflow: hidden;
}
section#project #projectList ul li .bg::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, .5);
	transition: all 0.3s ease-out;
}
section#project #projectList ul li.on .bg::after {
	width: 0;
	left: 100%;
	opacity: 0;
}
section#project #projectList ul li .bg img {
	transition: all 0.3s ease-out;
}
section#project #projectList ul li.on .bg img {
	transform: scale(1.01);
}

section#project #projectList ul li .txt {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
}
section#project #projectList ul li .txt > a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

	width: 100%;
	height: 100%;
	color: #fff;

	text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}
section#project #projectList ul li .txt > a > div {
	padding: 0 2em;
}
section#project #projectList ul li .txt > a > div > strong {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: 6.0rem;
	line-height: 1;
}
section#project #projectList ul li .txt > a > div > div {
	text-align: center;
}
section#project #projectList ul li .txt > a > div > div > p {
	text-align: center;
	margin: 1em 0 0;
}


@media screen and (max-width: 768px) {
	section#project #projectList ul {
		display: block;
	}
	section#project #projectList ul li {
		width: 100%;
		margin: 0 0 1px 0;
	}

	section#project #projectList ul li .txt > a > div > strong {
		font-size: 9.0vw;
	}
}



/* solution
------------------------------------------------*/
section#solution .wrap > .innerWrap {
	margin: 0 0 4em;
}

section#solution .solutionList {
	position: relative;
	z-index: 10;
	background: #fff;
}
section#solution .solutionList h3 {
	margin-top: -1px;
	padding: 0.5rem 0;
	color: #fff;
	font-size: 2.2rem;
	text-align: center;
	background: #000;
}

section#solution .solutionList ul {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 1px);
	margin-left: 1px;
}
section#solution .solutionList ul li {
	flex-grow: 1;
	width: calc(100% / 3);
	margin-top: -1px;
	margin-left: -1px;
	border: 1px solid #000;
}
section#solution .solutionList ul li > a {
	display: block;
}
section#solution .solutionList ul li > a div {
	display: flex;
}
section#solution .solutionList ul li a div > div {
	width: 50%;
	flex-shrink: 0;
}

section#solution .solutionList ul li > a div > div.img {
	position: relative;
	width: 50%;
	padding-top: 50%;
	background: #fff;
	overflow: hidden;
}
section#solution .solutionList ul li > a div > div.img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section#solution .solutionList ul li > a div > div.img.w80p img {
	object-fit: contain;
}

section#solution .solutionList ul li > a div > div.ttl {
	display: flex;
	align-items: center;
	position: relative;
	padding: 1em;
	font-weight: bold;
	line-height: 1.3;
}
section#solution .solutionList ul li > a div > div.ttl::before,
section#solution .solutionList ul li > a div > div.ttl::after {
	position: absolute;
	width: 21px;
	height: 21px;
	right: 10px;
	bottom: 10px;
	content: '';
	transition: all 0.3s ease-out;
}
section#solution .solutionList ul li > a div > div.ttl::before {
	right: calc(10px + 21px * 0.5 - 1px * 0.5);
	border-right: 1px solid #000;
	transform-origin: 100% 50%;
}
section#solution .solutionList ul li > a div > div.ttl::after {
	bottom: calc(10px + 21px * 0.5 - 1px * 0.5);
	border-bottom: 1px solid #000;
	transform-origin: 50% 100%;
}
section#solution .solutionList ul li > a.on div > div.ttl::before {
	width: calc(21px * 0.5);
	height: calc(21px * 0.5);
	transform: rotate(-405deg);
	right: calc(10px + 21px * 0.5 - 1px * 0.5);
	bottom: calc(10px + 21px * 0.5 - 1px * 0.5 - 2px);
	border-bottom: 1px solid #000;
}
section#solution .solutionList ul li > a.on div > div.ttl::after {
	width: calc(21px * 0.5);
	height: calc(21px * 0.5);
	transform: rotate(225deg);
	opacity: 0;
}
section#solution .solutionList ul li > a div > div.ttl p {
	margin: 0;
}
section#solution .solutionList ul li > a div > div.imgL,
section#solution .solutionList ul li > a div > div.detail {
	display: none;
}

section#solution #solutionContact {
	position: relative;
	top: -3.5em;
	margin-top: -1px;
	padding: 1rem 0;
	text-align: center;
	border: 1px solid #000;
	opacity: 0;
	z-index: 1;
}
section#solution #solutionContact a {
	font-size: 1.7rem;
}


@media screen and (max-width: 768px) {
	section#solution .solutionList h3 {
		font-size: 4.0vw;
	}

	section#solution .solutionList ul li {
		width: calc(100% / 2 + 0.5px);
		width: calc(100% / 2);
	}
	section#solution .solutionList ul li > a div > div.ttl {
		padding: 0.5em;
	}
	section#solution .solutionList ul li > a div > div.ttl p {
		font-size: 2.75vw;
		letter-spacing: 0.01em;
	}
	section#solution .solutionList ul li > a div > div.ttl.fntSml p {
		font-size: 2.5vw;
	}

	section#solution .solutionList ul li > a div > div.ttl::before,
	section#solution .solutionList ul li > a div > div.ttl::after {
		width: 2.8vw;
		height: 2.8vw;
		right: 1.4vw;
		bottom: 1.4vw;
	}
	section#solution .solutionList ul li > a div > div.ttl::before {
		right: calc(1.4vw + 2.8vw * 0.5 - 1px * 0.5);
	}
	section#solution .solutionList ul li > a div > div.ttl::after {
		bottom: calc(1.4vw + 2.8vw * 0.5 - 1px * 0.5);
	}
	section#solution .solutionList ul li > a.on div > div.ttl::before {
		width: calc(2.8vw * 0.5);
		height: calc(2.8vw * 0.5);
		right: calc(1.4vw + 2.8vw * 0.5 - 1px * 0.5);
		bottom: calc(1.4vw + 2.8vw * 0.5 - 1px * 0.5);
	}
	section#solution .solutionList ul li > a.on div > div.ttl::after {
		width: calc(2.8vw * 0.5);
		height: calc(2.8vw * 0.5);
	}
}



/* service
------------------------------------------------*/
section#service #serviceContent {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section#service #serviceContent #serviceImg {
	width: 35%;
}
section#service #serviceContent #serviceList {
	width: 60%;
}
section#service #serviceContent #serviceList ul li {
	padding: 2em 1em;
	border-top: 1px solid #000;
}
section#service #serviceContent #serviceList ul li dl dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	line-height: 1;
}
section#service #serviceContent #serviceList ul li dl dt span {
	display: inline-block;
	width: 10%;
	font-size: 1.8rem;
	color: #c5c5c5;
}
section#service #serviceContent #serviceList ul li dl dt strong {
	display: inline-block;
	width: calc(100% - 10% - 25%);
	font-size: 3.2rem;
	font-size: min(2.75vw, 3.2rem);
}
section#service #serviceContent #serviceList ul li dl dt p {
	display: inline-block;
	width: 25%;
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.5;
}
section#service #serviceContent #serviceList ul li dl dd {
	margin: 1em 0 0;
	padding-left: 10%;
	line-height: 1.4;
}


@media screen and (max-width: 768px) {
	section#service #serviceContent {
		display: flex;
		flex-wrap: wrap;
	}
	section#service #serviceContent #serviceImg {
		width: 100%;
		order: 2;
	}
	section#service #serviceContent #serviceList {
		width: 100%;
		order: 1;
		margin: 2em 0;
	}

	section#service #serviceContent #serviceList ul li {
		padding: 1.5em 0;
	}
	section#service #serviceContent #serviceList ul li dl dt span {
		font-size: 3.5vw;
		letter-spacing: 0.01em;
	}
	section#service #serviceContent #serviceList ul li dl dt strong {
		font-size: 4.5vw;
	}
	section#service #serviceContent #serviceList ul li dl dt p {
		font-size: 2.5vw;
		letter-spacing: 0.01em;
	}
	section#service #serviceContent #serviceList ul li dl dd {
		margin: 1em 0 0;
	}
}





/* message
------------------------------------------------*/
section#message {
	background: #f5f5f5;
}
section#message .innerWrap #messageContent {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-top: -1em;
}
section#message .innerWrap #messageContent #messageName {
	display: flex;
	justify-content: flex-end;
	width: calc(100% - 232px - 1em);
}
section#message .innerWrap #messageContent #messageName p {
	margin-top: 0;
	padding: 0 1em;
	font-size: 1.4rem;
	border-left: 1px solid #000;
}
section#message .innerWrap #messageContent #messageName p span {
	font-size: 2.0rem;
	font-weight: bold;
}
section#message .innerWrap #messageContent #messageTxt {
	width: calc(100% - 232px - 1em);
}
section#message .innerWrap #messageContent #messageImg {
	position: absolute;
	right: 0;
	top: 0;
	width: 232px;
}


@media screen and (max-width: 768px) {
	section#message .innerWrap #messageContent #messageName {
		display: flex;
		justify-content: flex-end;
		width: calc(100% - 35vw - 1em);
		margin-top: 30vw;
		order: 2;
	}
	section#message .innerWrap #messageContent #messageName p {
		font-size: 3.25vw;
	}
	section#message .innerWrap #messageContent #messageName p span {
		font-size: 4.0vw;
	}
	section#message .innerWrap #messageContent #messageTxt {
		width: 100%;
		order: 1;
	}
	section#message .innerWrap #messageContent #messageTxt p {
		margin: 2em 0 0;
	}
	section#message .innerWrap #messageContent #messageImg {
		position: absolute;
		right: 0;
		top: auto;
		bottom: 0;
		width: 35vw;
	}
}



/* company
------------------------------------------------*/
section#company {
	color: #fff;
	background-color: #000;
	background-image: url(/assets/images/company_bg.png);
	background-repeat: repeat-x;
	background-size: auto 100%;
}

section#company table {
	width: 100%;
}
section#company table tr {
	vertical-align: top;
	border-bottom: 1px solid #fff;
}
section#company table tr:last-child {
	border: none;
}
section#company table th,
section#company table td {
	padding: 2rem;
	text-align: left;
}
section#company table th {
	width: 30%;
}

section#company table td > dl {
	display: flex;
	flex-wrap: wrap;
}
section#company table td > dl > dt {
	width: 8.5em;
}
section#company table td > dl > dd {
	width: calc(100% - 8.5em);
}


@media screen and (max-width: 768px) {
	section#company table th,
	section#company table td {
		padding: 1rem 0;
		font-size: 3.25vw;
		letter-spacing: 0.01em;
	}
	section#company table th {
		width: 30%;
	}
}



/* links
------------------------------------------------*/
section#links {
	padding: 0;
}
section#links ul {
	display: flex;
	justify-content: space-around;
}
section#links ul li {
	width: 50%;
	border: 1px solid #c2c2c2;
}
section#links ul li:last-child {
	border-left: none;
}
section#links ul li a {
	display: block;
	padding: 3em;
}
section#links ul li a > div {
	width: 60%;
	margin: 0 auto;
}


@media screen and (max-width: 768px) {
	section#links ul li a {
		display: block;
		padding: 2em 1em;
	}
	section#links ul li a > div {
		width: 80%;
	}
}



/* contact
------------------------------------------------*/
section#contact #contactLink {
	display: flex;
	justify-content: flex-end;
}
section#contact #contactLink p {
	position: relative;
	padding-left: 40px;
}
section#contact #contactLink p::before {
	position: absolute;
	left: 0;
	top: calc(50% - 11px);
	width: 30px;
	height: 20px;
	content: '';
	background: url(/assets/images/ico_mailblack.svg) no-repeat center center;
}


/* 202211 add */
section#contact .selectWrap {
	display: inline-block;
	position: relative;
	border: 1px solid #000;
}
section#contact .selectWrap::before {
  position: absolute;
  right: 16px;
	top: calc(50% - 5px);
  width: 0;
  height: 0;
  border-width: 10px 5px 0 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  content: "";
  pointer-events: none;
}


section#contact select#contactDetail,
section#contact button#contactDetailButton {
	font-family: 'Noto Sans Japanese', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
	font-size: 1.6rem;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
}
section#contact select#contactDetail {
	padding: 1.0em 2.0em 1.0em 0.5em;
	color: #000;
	font-weight: bold;
	background: none;
	background-image: none;
	border: none;
	outline: none;
	text-overflow: ellipsis;
	font-feature-settings: "palt";
}
section#contact button#contactDetailButton {
	display: block;
	position: relative;
	margin: 1em 0 0;
	padding: 1.0em 1.0em 1.0em 3.0em;
	line-height: 1;
	background: #000;
	border: 1px solid #000;
	cursor: pointer;
}
section#contact button#contactDetailButton:disabled {
	opacity: 0.2;
	cursor: default;
}
section#contact button#contactDetailButton span {
	display: block;
	position: relative;
	color: #fff;
	transition: all 0.2s ease-out;
}
section#contact button#contactDetailButton::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	content: '';
	background: #fff;
	transition: all 0.3s ease-out;
}
section#contact button#contactDetailButton:not(:disabled).on span {
	color: #000;
}
section#contact button#contactDetailButton:not(:disabled).on::before {
	width: 100%;
}

section#contact button#contactDetailButton::after {
	position: absolute;
	left: 1.0em;
	top: calc(50% - 13.2px * 0.5);
	width: 19.2px;
	height: 13.2px;
	content: '';
	background: url(/assets/images/ico_mailwhite.svg) no-repeat center center;
	transition: all 0.2s ease-out;
}
section#contact button#contactDetailButton:not(:disabled).on::after {
	background: url(/assets/images/ico_mailblack.svg) no-repeat center center;
}
/* 202211 add */



@media screen and (max-width: 768px) {
	section#contact #contactLink p {
		padding-left: 7.5vw;
	}
	section#contact #contactLink p::before {
		top: calc(50% - 2vw);
		width: 6vw;
		height: 4vw;
	}

	section#contact .selectWrap {
		width: 100%;
	}

	section#contact select#contactDetail,
	section#contact button#contactDetailButton {
		font-size: 3.5vw;
	}
	section#contact select#contactDetail {
		width: 100%;
	}
}



/* footer
------------------------------------------------*/
footer {
	padding: 2rem 1em;
	font-size: 1.4rem;
	background: #f5f5f5;
}
footer .wrap,
footer .wrap ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer p {
	margin: 0;
}
footer .wrap ul li {
	padding-left: 1.5em;
}
footer .wrap ul li a {
	position: relative;
}
footer .wrap ul li a::after {
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 1px;
	content: '';
	background: #000;
	transition: all 0.3s ease-out;
}
footer .wrap ul li a.on::after {
	left: 0;
	width: 100%;
}


@media screen and (max-width: 768px) {
	footer {
		font-size: 2.5vw;
		letter-spacing: 0.01em;
		background: #f5f5f5;
	}
	footer .wrap {
		align-items: flex-start;
	}
	footer .wrap ul {
		display: block;
	}
	footer .wrap ul li {
		margin: 0.5em 0 0;
		padding-left: 0;
	}
	footer .wrap ul li:first-child {
		margin: 0;
	}
}




/* back btn
------------------------------------------------*/
#backBtn {
	display: none;
	position: fixed;
	right: 10px;
	bottom: 20px;
	z-index: 10000;

	width: 60px;
	height: 60px;
	background: #000;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}
#backBtn span {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
#backBtn span::before,
#backBtn span::after {
	position: absolute;
	content: '';
}
#backBtn span::before {
	left: calc(50% - 20%);
	top: 35%;
	width: 40%;
	height: 1px;
	background: #fff;
}
#backBtn span::after {
	left: calc(50% - 12.5%);
	top: 57.5%;
	width: 25%;
	height: 25%;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: rotate(45deg);
}
#backBtn span.on::after {
	top: 50%;
	animation: backBtnOn 1s linear infinite;
}
@keyframes backBtnOn {
	0% { top: 57.5%; }
	50% { top: 50%; }
	100% { top: 57.5%; }
}


@media screen and (max-width: 768px) {
	#backBtn {
		position: fixed;
		bottom: 10vw;
		right: 2.5vw;
		z-index: 10000;
	
		width: 8.0vw;
		height: 8.0vw;
		background: #000;
		border-radius: 50%;
		cursor: pointer;
	}
}




/* list indent
------------------------------------------------*/
ul.tiBraNum > li {
	padding-left: 2.0em;
	text-indent: -2.0em;
}
ul.tiBraNum > li > span {
	display: inline-block;
	width: 2.0em;
	text-indent: 0;
}

ul.tiBra > li,
ul.tiNumDot > li {
	padding-left: 1.5em;
	text-indent: -1.5em;
}
ul.tiBra > li > span,
ul.tiNumDot > li > span {
	display: inline-block;
	width: 1.5em;
	text-indent: 0;
}

ul.tiDot > li {
	padding-left: 1.0em;
	text-indent: -1.0em;
}
ul.tiDot > li > span {
	display: inline-block;
	width: 1.0em;
	text-indent: 0;
}

ul.tiCNum > li {
	padding-left: 1.2em;
	text-indent: -1.2em;
}
ul.tiCNum > li > span {
	display: inline-block;
	width: 1.2em;
	text-indent: 0;
}

ul.tiBraNum > li > div, ul.tiDot > li > div, ul.tiCNum > li > div {
	padding-left: 0;
	text-indent: 0;
}

ul.listAnimation li {
	opacity: 0;
}



/* content
------------------------------------------------*/
section.content {
	padding: 50px 0 100px;
}
section.content a {
	color: revert;
	text-decoration: underline;
}
section.content h2 {
	padding: 0 0 1rem;
	border-bottom: 1px solid #000;
}
section.content h2 span {
	display: block;
	margin: 1em 0;
	opacity: 1;
}
section.content h3, section.content h4, section.content h5, section.content h6 {
	margin: 1em 0;
	font-size: inherit;
}
section.content h3 + *, section.content h4 + *, section.content h5 + *, section.content h6 + * {
	margin-top: 1em;
}
section.content h3 {
	font-size: 2.0rem;
	margin: 4em 0 0;
}

section.content p {
	margin: 1em 0;
}

section.content table {
	width: 100%;
	margin-top: 4em;
	font-size: 80%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}
section.content table th, 
section.content table td {
	padding: 0.5em;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}
section.content table th {
	min-width: 14em;
}



@media screen and (max-width: 768px) {
	section.content h3 {
		font-size: 3.75vw;
	}
	section.content table th {
		min-width: 30vw;
	}
}



/* privacy
------------------------------------------------*/
section#privacy {
	font-size: 1.6rem;
}

section#privacy h3 {
	padding-left: 1.2em;
	text-indent: -1.2em;
	line-height: 1.5;
}
section#privacy h3 span {
	display: inline-block;
	width: 1.2em;
	text-indent: 0;
}
section#privacy .innerWrap > h3:nth-of-type(n + 10) {
	padding-left: 1.8em;
	text-indent: -1.8em;
}
section#privacy .innerWrap > h3:nth-of-type(n + 10) span {
	width: 1.8em;
}

section#privacy ul.tglList > li {
	margin: 0 0 2em;
}
section#privacy ul.tglList > li > p:first-child {
	position: relative;
	padding-left: 5.5em;
	text-indent: -5.5em;
	padding-right: 2em;
	padding-bottom: 0.5em;
	font-size: inherit;
	font-weight: bold;
	border-bottom: 1px solid #000;
	cursor: pointer;
}
section#privacy ul.tglList > li > p:first-child::before,
section#privacy ul.tglList > li > p:first-child::after {
	position: absolute;
	right: 0;
	top: calc(50% - 0.5px);
	width: 1em;
	height: 1px;
	content: '';
	background: #000;
	transition: 0.25s all;
}
section#privacy ul.tglList > li > p:first-child::after {
	transform: rotate(90deg);
}
section#privacy ul.tglList > li > p.open:first-child::before {
	transform: rotate(45deg);
}
section#privacy ul.tglList > li > p.open:first-child::after {
	transform: rotate(135deg);
}
section#privacy ul.tglList > li > p:first-child > span {
	display: inline-block;
	width: 5.5em;
	text-indent: 0;
}
section#privacy ul.tglList > li > div {
	display: none;
}
section#privacy ul.tglList > li > div p {
	margin: 0 0 1em;
}


@media screen and (max-width: 768px) {
	section#privacy {
		font-size: 3.25vw;
		line-height: 1.5;
	}
	section#privacy .innerWrap {
		padding: 0 5vw;
	}

	section#privacy h3 {
		padding-left: 1.3em;
		text-indent: -1.3em;
	}
	section#privacy h3 span {
		width: 1.3em;
	}
	section#privacy .innerWrap > h3:nth-of-type(n + 10) {
		padding-left: 2.1em;
		text-indent: -2.1em;
	}
	section#privacy .innerWrap > h3:nth-of-type(n + 10) span {
		width: 2.1em;
	}
}





/* modal
------------------------------------------------*/
#modal {display: none;}

.modalContent {
	display: none;
	padding: 5% 8%;
	padding: 50px;
	box-sizing: border-box;
	word-break: break-all;
	background: #fff;
}
.modalContent * {
	box-sizing: border-box;
}



/* modal - concept
------------------------------------------------*/
#conceptModal {
	font-size: 1.8rem;
	line-height: 1.5;
}
#conceptModal p {
	margin: 0;
}
#conceptModal > p:first-of-type {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

#conceptModal > div:first-of-type {
	width: 60%;
	margin: 2em auto;
}

#conceptModal > ul {
	width: 75%;
	margin: 0 auto 2em;
	font-weight: bold;
}
#conceptModal > ul li {
	margin: 0 0 1em;
	border-width: 0 0 4px 0;
	border-style: solid;
}
#conceptModal > ul li:nth-child(1) {
	border-color: #0072bc;
}
#conceptModal > ul li:nth-child(2) {
	border-color: #000;
}
#conceptModal > ul li:nth-child(3) {
	border-color: #c03;
}


@media screen and (max-width: 768px) {
	#conceptModal {
		font-size: 3.75vw;
	}
	#conceptModal > p:first-of-type {
		font-size: 4.0vw;
	}

	#conceptModal > div:first-of-type {
		width: 80%;
	}

	#conceptModal > ul {
		width: 100%;
	}
}



/* modal - movie
------------------------------------------------*/
#movieModal {
	padding: 0;
	background: none;
}
#movieModal #movieWrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
#movieModal #movieWrap iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


@media screen and (max-width: 768px) {
	#movieModal {
		padding: 7.5vw 0;
	}
}




/* modal - solution
------------------------------------------------*/
#solutionModal > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*padding: 5% 8%;*/
}
#solutionModal > div .img {
	order: 2;
	width: 44%;
}
#solutionModal > div .ttl {
	order: 1;
	width: 100%;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.25;
}
#solutionModal > div .ttl p {
	margin: 0 0 1em;
}
#solutionModal > div .detail {
	order: 3;
	width: 50%;
	line-height: 1.1;
}
#solutionModal > div .detail p {
	margin-bottom: 0;
	line-height: 1.5;
}


@media screen and (max-width: 768px) {
	.modalContent {
		width: 90vw;
		padding: 5% 10%;
	}
	#solutionModal > div .img {
		order: 2;
		width: 48vw;
		margin: 0 auto;
	}
	#solutionModal > div .ttl {
		order: 1;
		width: 100%;
		font-size: 4.0vw;
	}
	#solutionModal > div .detail {
		order: 3;
		width: 100%;
		margin-top: 2em;
	}
}










/* Link Circle Icon
------------------------------------------------*/
a.linkCircle,
a.linkBlock p.linkCircle {
	display: inline-block;
	position: relative;
	padding-right: 90px;
	font-weight: bold;
}
a.linkCircle.colBlack,
a.linkBlock p.linkCircle.colBlack {
	color: #000;
}
a.linkCircle.colWhite,
a.linkBlock p.linkCircle.colWhite {
	color: #fff;
}
a.linkCircle::before,
a.linkCircle::after,
a.linkBlock p.linkCircle::before,
a.linkBlock p.linkCircle::after {
	position: absolute;
	right: 0;
	top: calc(50% - 14px);
	width: 28px;
	height: 28px;
	content: '';
}
a.linkCircle::before,
a.linkBlock p.linkCircle::before {
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
}
a.linkCircle.colBlack::before,
a.linkBlock p.linkCircle.colBlack::before {
	border-color: #000;
}
a.linkCircle.colWhite::before,
a.linkBlock p.linkCircle.colWhite::before {
	border-color: #fff;
}

a.linkCircle::after,
a.linkBlock p.linkCircle::after {
	transform: scale(1.4);
	transition: all 0.2s ease-out;
	opacity: 0;
}
a.linkCircle.on::after,
a.linkBlock.on p.linkCircle::after {
	transform: scale(1);
	opacity: 1;
}
a.linkCircle.colBlack::after,
a.linkBlock p.linkCircle.colBlack::after {
	background: url(/assets/images/ico_linkarrowblack.svg) no-repeat center;
}
a.linkCircle.colWhite::after,
a.linkBlock p.linkCircle.colWhite::after {
	background: url(/assets/images/ico_linkarrowwhite.svg) no-repeat center;
}

a.linkCircle > span,
a.linkBlock p.linkCircle > span {
	display: inline-block;
	position: relative;
}
a.linkCircle > span::before,
a.linkBlock p.linkCircle > span::before {
	position: absolute;
	right: -70px;
	top: calc(50% - 0.5px);
	width: 60px;
	height: 1px;
	content: '';
	animation: linkCircleLine 1.5s infinite;
}
@keyframes linkCircleLine {
	0% { width: 60px; opacity: 0; }
	50% { opacity: 1; }
	100% { width: 0px; opacity: 0; }
}
a.linkCircle.colBlack > span::before,
a.linkBlock p.linkCircle.colBlack > span::before {
	background: #000;
}
a.linkCircle.colWhite > span::before,
a.linkBlock p.linkCircle.colWhite > span::before {
	background: #fff;
}

a.linkCircle > span::after,
a.linkBlock p.linkCircle > span::after {
	position: absolute;
	right: -78px;
	top: calc(50% - 2px);
	width: 4px;
	height: 4px;
	content: '';
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
}
a.linkCircle.colBlack > span::after,
a.linkBlock p.linkCircle.colBlack > span::after {
	border-color: #000;
	background: #000;
}
a.linkCircle.colWhite > span::after,
a.linkBlock p.linkCircle.colWhite > span::after {
	border-color: #fff;
	background: #fff;
}


@media screen and (max-width: 768px) {
	a.linkCircle,
	a.linkBlock p.linkCircle {
		padding-right: 13.5vw;
	}

	a.linkCircle::before,
	a.linkCircle::after,
	a.linkBlock p.linkCircle::before,
	a.linkBlock p.linkCircle::after {
		top: calc(50% - 1.9vw);
		width: 3.8vw;
		height: 3.8vw;
}

	a.linkCircle > span::before,
	a.linkBlock p.linkCircle > span::before {
		right: -10.8vw;
		width: 8.0vw;
		animation: linkCircleLineSP 1.5s infinite;
	}
	@keyframes linkCircleLineSP {
		0% { width: 8.0vw; opacity: 0;}
		50% { opacity: 1; }
		100% { width: 0px; opacity: 0; }
	}

	a.linkCircle > span::after,
	a.linkBlock p.linkCircle > span::after {
		right: -11.9vw;
		top: calc(50% - 0.3vw);
		width: 0.6vw;
		height: 0.6vw;
	}
}



/* loader
------------------------------------------------*/
#loader {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	overflow: hidden;
	z-index: 10;
}
#loader div {
	width: 5%;
}
html {
	height: 100vh;
	overflow-y: hidden;
}
main {
	position: relative;
	opacity: 0;
	z-index: 1;
}


@media screen and (max-width: 768px) {
	#loader div {
		width: 10vw;
	}
}