@charset "utf-8";
/*------------------------------------------------------------
	トープページ
------------------------------------------------------------*/
.mainVisOk #gHeader h1,
.mainVisOk #gNavi .glyph,
.mainVisOk .tabs,
.mainVisOk .sideTabs,
.mainVisOk .pageDown {
	opacity: 1;
	visibility: visible;
}

#gHeader h1 {
	width: 114px;
	top: 30px;
	left: 30px;
	opacity: 0;
	transition: opacity 1.25s ease;
}

#gHeader h1 a:before {
	width: 100%;
	height: 100%;
	background: url(../img/top/img_logo_white.png) no-repeat left top;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	opacity: 0;
	transition: opacity 0.8s ease;
}

#gHeader h1 a img {
	transition: opacity 0.8s ease;
}

#gHeader h1.white a img {
	opacity: 0;
}

#gHeader h1.white a:before {
	opacity: 1;
}

#gHeader.scrollHeader h1.white a img {
	opacity: 1;
}

#gHeader.scrollHeader h1.white a:before {
	opacity: 0;
}

#gNavi .glyph {
	opacity: 0;
	transition: opacity 1.25s ease;
}

.mainVisOk #gNavi .glyph:hover {
	opacity: 0.7;
}

.pageDown {
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.25s ease, transform .8s ease;
}

.pageDown.pageTop {
	transform: rotate(180deg);
}

#main {
	margin-top: 100vh;
	background-color: #fff;
	position: relative;
}

.mainvis {
	width: calc(100% - 70px);
	position: fixed;
	top: 0;
	left: 0;
}

.mainvis .titleList {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mainvis .titleList li {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.5s ease, visibility 1.5s ease;
}

.mainvis .titleList li.active {
	opacity: 1;
	visibility: visible;
}

.mainvis .titleList a {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.mainvis .titleList li img {
	width: 620px;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

.mainvis .titleList li.load img {
	margin: 15px 0 0 104px;
	width: 764px;
}

.mainvis .lList,
.mainvis .rList {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
}

.mainvis .rList {
	left: auto;
	right: 0;
}

.mainvis .bgBox li {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	clip-path: inset(0 0 0 0);
}

.mainvis .bgBox .load {
	z-index: 1;
}
.mainvis .bgBox .active {
	z-index: 2;
}

.mainvis .bgBox .cur {
	z-index: 3;
}

.mainvis .bgBox li span {
	position: absolute;
	left: 0;
	top: -6%;
	display: block;
	width: 100%;
	height: 110%;
}

.mainvis .bgBox .rList li span {
	top: auto;
	bottom: 0;
}

.mainvis .bgBox li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mainvis .bgBox .lList .cliping {
	animation: clipBottom 1.1s cubic-bezier(.46, .03, .52, .96) forwards;
}

.mainvis .bgBox .rList .cliping {
	animation: clipTop 1.1s cubic-bezier(.46, .03, .52, .96) forwards;
}

.mainvis .bgBox .lList .active span {
	animation: toBottom 6s linear forwards;
}

.mainvis .bgBox .rList .active span {
	animation: toTop 6s linear forwards;
}

@keyframes clipBottom {
	0% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(100% 0 0 0);
	}
}
@keyframes clipTop {
	0% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(0 0 100% 0);
	}
}
@keyframes clipLeft {
	0% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(0 100% 0 0);
	}
}
@keyframes clipRight {
	0% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(0 0 0 100%);
	}
}

@keyframes toBottom {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(5vh);
	}
}
@keyframes toTop {
	0% {
		transform: translateY(5vh);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes toLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-8vw);
	}
}
@keyframes toRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(8vw);
	}
}

.sideTabs {
	position: fixed;
	width: 70px;
	height: calc(100% - 75px);
	right: 0;
	top: 75px;
	z-index: 5;
	opacity: 0;
	transition: opacity 1.25s ease;
}

.sideTabs li {
	width: 100%;
	height: 25%;
	text-align: center;
	font-size: 14px;
	writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	direction: ltr;
	letter-spacing: 1px;
	line-height: 1.4;
}

.sideTabs li span {
	display: inline-block;
	text-align: left;
}

.sideTabs li a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	transition: background 1.6s ease, color 1.6s ease;
}

.sideTabs li.active a,
.sideTabs li a:hover {
	background-color: #EAEAEA;
	color: #000;
}

.sideTabs li:nth-child(2) {
	box-sizing: border-box;
	border-top: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
}
.sideTabs li:nth-child(3) {
	height: calc(25% - 1px);
	border-bottom: 1px solid #E5E5E5;
	box-sizing: border-box;
}

.tabs {
	position: relative;
	opacity: 0;
	transition: opacity 1.25s ease;
}

.tabs li {
	float: left;
	width: 25%;
	text-align: center;
	font-size: 15px;
	letter-spacing: 2px;
}

.tabs li a {
	padding: 9px 0 6px;
	display: block;
	transition: background 1.6s ease, color 1.6s ease;
}

.tabs li.active a,
.tabs li a:hover {
	background-color: #EAEAEA;
}
.tabs li em {
	font-style: normal;
}
.tabs li:nth-child(2) {
	width: 25%;
	box-sizing: border-box;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.tabs li:nth-child(3) {
	width: calc(25% - 1px);
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}
.tabs a span {
	margin-right: 12px;
	font-size: 20px;
	vertical-align: middle;
	font-weight: normal;
}

.tabs dl {
	padding: 18px 0 0 30px;
	color: #000;
}

.tabs dt {
	display: none;
	float: left;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
}

.tabs dd {
	float: left;
	font-size: 12px;
	line-height: 2;
	letter-spacing: 1px;
}

.tabs dl dd.info_list a {
	padding-left: 1em;
	text-decoration: underline;
	font-family: 'Marcellus', serif;
}

.business {
	margin: 96px 0 124px 0;
}

.business .infors {
	width: 100%;
	display: table;
}

.business .pic {
	width: 42.8%;
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}

.business .pic .pc {
	width: 38.35%;
	float: left;
}

.business .pic img:last-child {
	width: 61.6%;
	float: right;
}

.business .words {
	padding-left: 109px;
	width: 57.2%;
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}

.business .words h2 {
	margin-bottom: 73px;
	position: relative;
	font-size: 20px;
	line-height: 2.4;
	letter-spacing: 3.5px;
	font-weight: normal;
}

.business .words h2:before {
	width: 170px;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	bottom: -30px;
	content: "";
	background-color: #e5e5e5;
}

.business .words h2:after {
	width: 40px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -30px;
	content: "";
	background-color: #9b9b9b;
}

.business .words p {
	font-size: 14px;
	line-height: 3.2;
	letter-spacing: 1px;
}

.galleryBox .inner {
	margin: 0 auto;
	width: 1100px;
	position: relative;
}

#galleryListPc img,
#galleryListSp img {
	opacity: 0;
}

#galleryListPc img.loaded,
#galleryListSp img.loaded {
	opacity: 1;
}

.serviceList .img {
	overflow: hidden;
}

.serviceList .detail img {
	opacity: 1;
	transition: opacity .5s ease;
}

.serviceList .detail:hover img {
	opacity: .7;
}

.galleryBox .inner .prev,
.galleryBox .inner .next {
	margin-top: -6px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.galleryBox a svg {
	width: 20px;
	height: 37px;
	fill: #000;
	transition: fill .8s ease;
}

.galleryBox .inner .prev {
	left: 48px;
}

.galleryBox .inner .next {
	right: 47px;
}

.galleryBox a:hover svg {
	fill: #999;
}

.slick-slide div {
	display: block !important;
}

.aboutList {
	margin: 60px 0 127px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.aboutList li {
	width: 33.333333%;
	box-sizing: border-box;
	position: relative;
	float: left;
	border-right: 1px solid #e5e5e5;
}

.aboutList li a {
	padding: 60px 26px 62px;
	display: block;
	transition: background 1.6s ease, color 1.6s ease;
}

.aboutList li:last-child {
	border: none;
}

.aboutList .pic {
	width: 100%;
	overflow: hidden
}

.aboutList .pic img {
	width: 100%;
	transition: transform 1.6s ease;
}

.aboutList li a:hover {
	background-color: #f1f4f7;
}

.aboutList li a:hover img {
	transform: scale(1.2);
}

.aboutList h4 {
	margin: 37px 0 21px 0;
	font-size: 24px;
	color: #000;
	letter-spacing: 2px;
	font-family: 'Marcellus', serif;
	font-weight: 400;
	text-align: center;
	word-break: break-all;
}

.aboutList h4 span {
	margin-top: 9px;
	display: block;
	font-size: 13px;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
}

.aboutList p {
	text-align: center;
	font-size: 13px;
	line-height: 2;
	letter-spacing: 1px;
}

.aboutList p span {
	display: inline-block;
	text-align: left;
}

.staff,
.information {
	text-align: center;
}

.staffIndexHeadLine .bottomText {
	margin-top: 50px;
	font-size: 22px;
	letter-spacing: 2px;
}

.staff .staffRepresent:hover .desc {
	color: #000;
}

.staff .peopleList {
	margin-top: 80px;
	width: 100%;
	overflow: hidden;
}

.staff .peopleList li {
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

.staff li img {
	width: 270px;
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}

.staff li img.loaded {
	opacity: 1;
}

.staff .sectionMore {
	margin: 60px 0 140px;
}

.infoHeadLine {
	margin-bottom: 50px;
}

.information .infoList {
	padding: 107px 0 130px 0;
	background-color: #f1f4f7;
}

.information h2 .en {
	margin-bottom: 3px;
}

.information .list {
	max-width: 900px;
	display: inline-block;
}

.information dl {
	margin: 0 0 29px -15px;
	letter-spacing: 1px;
}

.information dd:last-child {
	padding-bottom: 0;
}

.information dt {
	min-width: 55px;
	float: left;
}

.information dd {
	padding: 0 0 30px 7.5em;
	text-align: left;
}

.information .sectionMore {
	margin: 30px 0 0 0;
}

.information .sectionMore:before,
.information .sectionMore:after {
	background-color: #f1f4f7;
	transition: 1.6s ease;
}

.information .sectionMore:hover:before,
.information .sectionMore:hover:after {
	background-color: #000;
}

.information .fullImage,
.information .fullImage img {
	width: 100%;
}


.contact {
	padding: 118px 0 130px 0;
}

.contact .inner {
	margin: 0 auto;
	width: 620px;
	display: table;
}

.contact h2,
.contact .details {
	display: table-cell;
	vertical-align: top;
	text-align: left;
}

.contact h2 {
	width: 220px;
}

.contact h2 .jp {
	letter-spacing: 5px;
}

.contact .details {
	padding-left: 26px;
	width: 380px;
	box-sizing: border-box;
}

.contact p {
	margin-top: 6px;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 1px;
}

.contact .sectionMore {
	margin: 35px 0 0 4px;
}

@media all and (min-width: 0) and (max-width: 767px) {
	#gHeader h1 {
		top: 20px;
		left: 20px;
		width: 85px;
	}

	.mainVisOk .pageDown {
		opacity: 0;
		visibility: hidden;
	}

	.pageDown.pageTop {
		transform: rotate(0deg);
	}

	.mainvis {
		width: 100%;
	}

	.mainvis > * {
		opacity: 0;
		transition: opacity 1.25s ease;
	}

	.mainVisOk .mainvis > * {
		opacity: 1;
	}

	.mainvis .titleList li img {
		width: 300px;
	}

	.mainvis .titleList li.load img {
		margin: -12px 0 0 29px;
		width: 616px;
	}

	.mainvis .lList,
	.mainvis .rList {
		width: 100%;
		height: 50%;
	}

	.mainvis .rList {
		top: auto;
		bottom: 0;
	}

	.mainvis .bgBox li span {
		top: 0;
		width: 108%;
		height: 100%;
	}

	.mainvis .bgBox .rList li span {
		left: -8%;
	}

	.mainvis .bgBox .lList .cliping {
		animation: clipLeft 1.1s cubic-bezier(.46, .03, .52, .96) forwards;
	}

	.mainvis .bgBox .rList .cliping {
		animation: clipRight 1.1s cubic-bezier(.46, .03, .52, .96) forwards;
	}

	.mainvis .bgBox .lList .active span {
		animation: toLeft 6s linear forwards;
	}

	.mainvis .bgBox .rList .active span {
		animation: toRight 6s linear forwards;
	}

	.tabs li {
		padding: 0;
		line-height: normal;
		font-size: 12px;
		font-weight: normal;
		letter-spacing: 1px;
	}

	.tabs li a {
		padding: 10px 0;
		line-height: 1.3;
	}

	.tabs a span {
		margin-right: 0;
		display: block;
		font-size: 20px;
		line-height: 1.6;
	}

	.tabs li a:hover {
		background-color: #FFF;
	}

	a:hover {
		background-color: #fff;
		color: #000;
	}
	.tabs li em {
		display: none;
	}
	.tabs dl {
		padding: 20px;
		font-weight: normal;
	}

	.tabs dt {
		float: none;
		font-size: 15px;
		letter-spacing: 1px;
	}

	.tabs dd {
		padding-left: 0;
		float: none;
		line-height: normal;
		letter-spacing: 0;
	}

	.tabs dl dd.info_list a {
		padding-left: 0;
		line-height: 2.2;
	}

	.business {
		margin: 27px 0 67px 0;
	}

	.business h2 {
		padding: 0 0 27px 20px;
		font-size: 15px;
		letter-spacing: 2px;
		line-height: 2;
		font-feature-settings: 'palt';
		font-weight: normal;
	}

	.business .pic {
		width: 180px;
		vertical-align: top;
	}

	.business .pic img:last-child {
		width: 100%;
	}

	.business .words {
		padding: 0 20px;
		width: auto;
		vertical-align: top;
	}

	.business .words p {
		margin-top: -8px;
		font-size: 12px;
		line-height: 2.4;
		letter-spacing: 0;
	}

	.galleryBox .inner .prev,
	.galleryBox .inner .next {
		margin-top: 6px;
	}

	.galleryBox .inner .prev {
		left: 13px;
	}

	.galleryBox .inner .next {
		right: 13px;
	}

	.galleryBox a svg {
		transform: scale(.55);
	}

	.galleryBox a:hover svg {
		fill: #000;
	}

	.galleryBox .sectionMore {
		margin: 35px 0 73px;
	}

	.aboutList {
		margin: 30px 0 65px;
	}

	.aboutList li {
		width: 100%;
		float: none;
		border-bottom: 1px solid #e5e5e5;
		border-right: none;
	}

	.aboutList li a {
		padding: 30px 37px 23px;
	}

	.aboutList li a:hover {
		background-color: #fff;
	}

	.aboutList li a:hover img {
		transform: scale(1);
	}

	.aboutList h4 {
		margin: 16px 0 12px 0;
		font-size: 21px;
		font-weight: normal
	}

	.aboutList h4 span {
		margin-top: 2px;
		font-size: 12px;
	}

	.aboutList p {
		font-size: 12px;
		line-height: 1.8;
	}

	.staffIndexHeadLine .bottomText {
		margin-top: 27px;
		font-size: 18px;
		letter-spacing: 2px;
	}

	.staff .headLine01 .jp {
		padding-top: 0;
	}

	.staff .peopleList {
		margin-top: 33px;
	}

	.staff .sectionMore {
		margin: 38px 0 81px 0;
	}

	.infoHeadLine {
		margin-bottom: 22px;
	}

	.information .infoList {
		padding: 63px 0 75px 0;
	}

	.information .list {
		padding: 0 37px;
	}

	.information dl {
		margin: 0 0 17px;
		text-align: left;
		letter-spacing: 0;
	}

	.information dt,
	.information dd {
		padding-left: 0;
		display: block;
		font-size: 12px;
	}

	.information dt {
		padding: 0 0 5px 0;
		float: none;
	}

	.information dd {
		padding: 0 0 18px 0;
	}

	.information .sectionMore {
		margin: 15px 0 0 0;
	}

	.information .sectionMore:hover {
		background-color: #f1f4f7;
	}

	.information .sectionMore:hover:before,
	.information .sectionMore:hover:after {
		background-color: #f1f4f7;
	}

	.contact {
		padding: 63px 0 74px;
	}

	.contact .inner {
		width: auto;
	}

	.contact h2,
	.contact .details {
		width: auto;
		display: block;
		text-align: center;
	}

	.contact h2 .jp {
		padding-top: 0;
	}

	.contact .details {
		padding: 10px 37px 0;
	}

	.contact .details p {
		text-align: left;
		font-size: 12px;
		line-height: 1.7;
	}

	.serviceList .detail:hover img {
		opacity: 1;
	}
}

@media all and (min-width: 0) and (max-width: 365px) {
	.mainvis li img {
		width: 280px;
	}

	.mainvis .titleList li.load img {
		width: 540px;
	}

	.business h2 {
		padding-right: 0;
		letter-spacing: 0;
	}

	.aboutList h4 {
		letter-spacing: 0;
		font-size: 20px;
	}
}

/* ie */
@media all and (-ms-high-contrast: none) {
	#gHeader {
		height: 1px;
	}
}


/*------------------------------------------------------------
	サービス紹介
------------------------------------------------------------*/
.service {
	/*padding: 98px 0 11px 0;*/
	padding: 0 0 138px 0;
	position: relative;
}

.service .headLine {
	margin-bottom: 58px;
}

.serviceList {
	margin: 0 auto;
}

.serviceList .detail {
	width: 50%;
	/*float: left;*/
	box-sizing: border-box;
	/*padding: 0 50px;*/
	text-align: center;
	position: relative;
	margin: 0 auto;
}

.serviceList .detail:nth-child(1) {
	padding-left: 0;
}

.serviceList .detail:nth-child(2) {
	padding-right: 0;
}

/*.serviceList .mansinList:after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 5px;
	width: 1px;
	background: #e5e5e5;
	content: "";
}*/

.serviceList img {
	display: block;
	width: 100%;
}

.serviceList .img {
	margin-bottom: 33px;
}

.serviceList .headLine {
	margin-bottom: 24px;
}

.serviceList .headLine01 {
	font-size: 24px;
	letter-spacing: 1px;
	position: relative;
}

.serviceList .coie .headLine01 {
	font-size: 26px;
}

.serviceList .headLine01::after {
	content: "";
	height: 1px;
	width: 29px;
	background: #000;
	position: absolute;
	top: 47px;
	left: 50%;
	transform: translateX(-50%);
}

.serviceList .headLine .jp {
	font-size: 16px;
	letter-spacing: 2px;
	padding-top: 27px;
}

.serviceList .coie .headLine .jp {
	padding-top: 24px;
}

.serviceList p {
	font-size: 13px;
	line-height: 2;
	letter-spacing: 1.1px;
}

.spIp5 {
	display: none;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.service {
		padding: 15px 0 42px 0;
	}

	.service .headLine {
		margin-bottom: 37px;
	}

	.serviceList {
		width: auto;
		margin: 0;
	}

	.serviceList .detail {
		width: auto;
		float: none;
		padding: 0;
	}

	.serviceList .mansinList {
		margin-bottom: 46px;
	}

	.serviceList .img {
		margin: 0 25px 21px 25px;
	}

	.serviceList .headLine {
		margin-bottom: 22px;
	}

	.serviceList .headLine01 {
		font-size: 22px;
	}

	.serviceList .headLine .jp {
		font-size: 15px;
		padding-top: 18px;
	}

	.serviceList .headLine01::after {
		top: 39px;
	}

	.serviceList .coie .headLine01 {
		font-size: 24px;
	}

	.serviceList .coie .headLine .jp {
		padding-top: 17px;
		letter-spacing: 1.4px;
	}

	.serviceList .coie .headLine01::after {
		top: 42px;
	}

	.serviceList p {
		line-height: 1.7;
		letter-spacing: 0px;
	}

	.serviceList .mansinList::after {
		display: none;
	}
}

@media all and (min-width: 0) and (max-width: 374px) {
	.serviceList p {
		letter-spacing: -1px;
	}

	.serviceList .coie p {
		letter-spacing: -1px;
	}
}


@media all and (min-width: 0) and (max-width: 320px) {
	.spIp5 {
		display: block;
	}
}

/*add*/
.serviceList .mansinList {
	width: 950px;
}

.serviceList .mansinList a {
	display: flex;
	align-items: center;
}

.mansinList .mansinText {
	flex: 0 0 47.5%;
	position: relative;
	left: -48px;
}

.serviceList .mansinList .headLine {
	margin-bottom: 28px;
}

.serviceList .mansinList .headLine p {
	font-size: 11px;
	margin-bottom: -6px;
}

.serviceList .mansinList .headLine01 {
	font-size: 28px;
	letter-spacing: 1.8px;
}

.serviceList .mansinList .headLine01:after {
	top: 53px;
}

.serviceList .mansinText > p {
	margin-bottom: 27px;
}

.serviceList .mansinList .img {
	flex: 0 0 52.5%;
	margin-bottom: 0;
}

.serviceList .inMore span {
	letter-spacing: 1px;
	text-indent: -23px;
	background-image: url(/img/2nd/img_icon_1.png);
	background-size: 13px 10px;
	background-repeat: no-repeat;
	background-position: 146px center;
	display: inline-block;
}

.mansinList a:hover .inMore span {
	background-color: #000000;
	color: #ffffff;
	background-image: url(/img/2nd/img_icon_2.png);
}

.sectionMore:hover::before,
.sectionMore:hover::after {
	background-color: #000;
}

.serviceInfo {
	margin: -31px 66px 60px;
}

.serviceList .serviceTex {
	text-align: center;
	font-size: 14px;
	letter-spacing: .4px;
	margin-bottom: 32px;
	font-weight: 500;
}

.serviceUl {
	margin-top: -35px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.serviceUl li {
	flex: 0 0 32%;
	text-align: center;
	border-top: 1px solid #000000;
	margin-right: 2%;
	margin: 35px 2% 0 0;
	position: relative;
}

.serviceUl li:nth-child(3n) {
	margin-right: 0;
}

.serviceUl li a {
	padding: 43px 0 42px;
	display: block;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 100%;
}

.serviceUl li:hover a {
	opacity: 0.5;
	transition: 0.3s linear;
	-ms-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
	-webkit-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	background: #f6f8fa;
}

.serviceBg1 {
	background: url(/img/2nd/bg_place_pc_01.jpg) repeat-y;
}

.serviceBg2 {
	background: url(/img/2nd/bg_place_pc_02.jpg) repeat-y;
}

.serviceBg3 {
	background: url(/img/2nd/bg_place_pc_03.jpg) repeat-y;
}
.serviceBg4 {
	min-height: 300px;
	box-sizing: border-box;
	background: url(/img/top/img_service_3.jpg) no-repeat center center / cover;
}
.serviceBg4 .txtBox {
	margin: 27px 45px 20px 0;
	padding: 0 10px;
	width: 300px;
	text-align: center;
	box-sizing: border-box;
}
.serviceBg4 .txtBox p,
.serviceBg4 .txtBox h2 {
	color: #fff;
}
.serviceUl .serviceBg4 .txtBox h2 span {
	font-size: 28px;
	letter-spacing: 0.2em;
}
.serviceUl .serviceBg4 .txtBox span:last-of-type {
	font-size: 15px;
	letter-spacing: 0.14em;
}
.serviceBg1,
.serviceBg2,
.serviceBg3 {
	background-size: 100%;
}

.serviceBg4 {
	margin-right: 0 !important;
	flex: 0 0 100% !important;
}
.serviceBg4 a {
	padding: 0 !important;
	justify-content: flex-end !important;
}
.serviceUl li.serviceBg4:hover a {
	background: #999;
}
.serviceIcon {
	display: inline-block;
	width: 8px;
}

.serviceIcon img {
	width: 100%;
}

.serviceUl p {
	margin-bottom: 15px;
	font-size: 24px;
	letter-spacing: .4px;
	font-weight: normal;
	flex: 0 0 100%;
	line-height: 1.5;
}

.serviceUl h2 {
	font-weight: normal;
	letter-spacing: 3px;
	margin-bottom: 26px;
	flex: 0 0 100%;
}

.serviceUl h2 span {
	font-size: 21px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 1.1px;
}

.serviceUl h2 span:last-child {
	margin-top: 4px;
	display: block;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1.9;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.serviceInfo {
		margin: -22px 25px 50px;
	}

	.serviceList .serviceTex {
		font-size: 12px;
		letter-spacing: .2px;
		margin-bottom: 45px;
	}

	.serviceUl {
		margin-top: -20px;
		display: block;
	}

	.serviceUl li {
		margin-right: 0;
		margin-top: 20px;
	}

	.serviceUl li:last-child {
		margin-bottom: 0;
	}

	.serviceUl li a {
		padding: 22px 0 22px;
	}
	.serviceUl .serviceBg4 {
		min-height: 406px;
		background-image: url(/img/top/img_sp_service_3.jpg);
	}
	.serviceUl .serviceBg4 a {
		padding: 0;
		justify-content: center !important;
	}
	.serviceBg4 .txtBox {
		margin: 250px 0 20px;
		width: auto;
	}
	.serviceUl .serviceBg4 .txtBox p {
		color: #fff;
	}
	.serviceUl .serviceBg4 .txtBox h2 {
		color: #fff;
	}
	.serviceUl .serviceBg4 .txtBox h2 span {
		font-size: 24px;
	}
	.serviceUl .serviceBg4 .txtBox span:last-of-type {
		font-size: 14px;
	}
	.serviceUl p {
		margin-bottom: 8px;
		font-size: 21px;
	}

	.serviceUl h2 {
		margin-bottom: 15px;
	}

	.serviceUl h2 span {
		font-size: 18px;
		letter-spacing: 1.2px;
	}

	.serviceUl h2 span:last-child {
		margin-top: 2px;
		letter-spacing: 1.1px;
	}

	.serviceList .mansinList {
		width: auto;
	}

	.serviceList .mansinList a {
		display: block;
	}

	.mansinList .mansinText {
		position: static;
		margin-bottom: 34px;
	}

	.serviceList .mansinList .headLine p {
		font-size: 10px;
		margin-bottom: -3px;
		letter-spacing: .6px;
	}

	.serviceList .mansinList .headLine01 {
		font-size: 24px;
		letter-spacing: 1.5px;
	}

	.serviceList .mansinList .headLine01::after {
		top: 47px;
	}

	.serviceList .mansinText > p {
		margin-bottom: 24px;
		font-size: 12px;
		line-height: 1.85;
		letter-spacing: .2px;
	}

	.serviceList .inMore span {
		padding: 9px 10px;
		text-indent: -20px;
		background: url(/img/2nd/img_icon_1.png) no-repeat right 14% center;
		background-size: 13px 10px;
	}

	.mansinList a:hover .inMore span {
		background-color: #ffffff;
		color: #000000;
		background-image: url(/img/2nd/img_icon_1.png);
	}

	.sectionMore:hover::before,
	.sectionMore:hover::after {
		background-color: #fff;
	}

}
@media all and (max-width: 374px) {
	.tabs li {
		font-size: 10px;
	}
}
@media all and (min-width: 0) and (max-width: 320px) {
	.serviceList .serviceTex {
		margin-left: -15px;
		margin-right: -22px;
	}
}
.mainvis {
	z-index: 5;
	overflow: hidden;
}
.mainvis .titleList {
	z-index: 4;
}

#main {
	z-index: 5;
}

#main .bnrBox {
	margin: 100px 0 100px;
	text-align: center;
}
#main .bnrBox a {
	display: block;
}
#main .bnrBox .bnr {
	margin-bottom: 60px;
	position: relative;
}
#main .bnrBox .bnr::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	content: '';
	opacity: 0;
	transition: 0.6s ease;
}
#main .bnrBox .bnr img {
	width: 100%;
}
#main .bnrBox .bnr .txt {
	margin: 7px 0 0 35px;
	width: 64.2%;
	max-width: 878px;
	left: 50%;
	top: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 1;
}
@media all and (min-width: 768px) {
	#main .bnrBox a:hover .bnr::before {
		opacity: 0.5;
	}
	#main .bnrBox a:hover .sectionMore {
		color: #fff;
		background-color: #000;
	}
	#main .bnrBox a:hover .sectionMore:before,
	#main .bnrBox a:hover .sectionMore:after {
		background-color: #000;
	}
}
@media all and (min-width: 0) and (max-width: 767px) {
	#main .bnrBox {
		margin: 70px 0 67px;
	}
	#main .bnrBox .bnr {
		margin-bottom: 40px;
	}
	#main .bnrBox .bnr::before {
		display: none;
	}
	#main .bnrBox .bnr .txt {
		margin: 3px 0 0;
		width: 61.6%;
		max-width: initial;
	}
}

#main .faqBox {
	--lw-val: 33.8%;
	margin: 0 66px;
	padding: 68px 110px 34px 100px;
	display: flex;
	align-items: flex-start;
	background: rgba(227,233,239,0.5);
	box-sizing: border-box;
}
#main .faqBox .lBox {
	padding: 20px 20px 0 0;
	width: calc(var(--lw-val));
	box-sizing: border-box;
}
#main .faqBox .rBox {
	width: calc(100% - var(--lw-val));
	box-sizing: border-box;
}
#main .faqBox .lBox .ttl {
	margin-bottom: 20px;
	font-family: 'Marcellus', serif;
	font-size: 50px;
	font-weight: 400;
	color: #436274;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
#main .faqBox .lBox .txt {
	font-size: 15px;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	line-height: 1.8;
	color: #436274;
	letter-spacing: 0.14em;
}
#main .faqBox .rBox .qaList {
	margin-bottom: 14px;
}
#main .faqBox .rBox .qaList li {
	margin-top: 22px;
    padding-top: 28px;
	border-top: 1px solid rgba(88, 124, 145, 0.3);
}
#main .faqBox .rBox .qaList li:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
#main .faqBox .rBox .qaList li a {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
#main .faqBox .rBox .qaList .q {
	margin: -5px 17px 0 0;
	font-family: 'Marcellus', serif;
	font-size: 18px;
	font-weight: 400;
	color: #587C91;
}
#main .faqBox .rBox .qaList .catList {
	margin-right: 5px;
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;
}
#main .faqBox .rBox .qaList .catList .cat {
	margin: 0 5px;
	padding: 0 15px;
	color: #fff;
	background: rgba(88, 124, 145, 0.6);
	border-radius: 2px;
	font-family: "Noto Serif JP", serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	flex-shrink: 0;
}
#main .faqBox .rBox .qaList .ttl {
	margin-top: -4px;
	font-family: "Noto Serif JP", serif;
	font-size: 15px;
	line-height: 1.466;
	font-weight: 500;
	letter-spacing: 0.1em;
}
#main .faqBox .rBox .moreLink {
	display: flex;
	justify-content: flex-end;
}
#main .faqBox .rBox .moreLink a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Marcellus', serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	text-decoration: underline;
	letter-spacing: 0.1em;
}
@media all and (min-width: 0) and (max-width: 767px) {
	#main .faqBox {
		margin: 0 25px;
		padding: 43px 20px;
		display: flex;
		flex-wrap: wrap;
	}
	#main .faqBox .lBox {
		padding: 0 10px 39px;
		width: 100%;
		text-align: center;
	}
	#main .faqBox .rBox {
		width: 100%;
	}
	#main .faqBox .lBox .ttl {
		margin-bottom: 8px;
		font-size: 38px;
		letter-spacing: 0.1em;
	}
	#main .faqBox .lBox .txt {
		font-size: 13px;
		line-height: 1.538;
		letter-spacing: 0.1em;
		font-weight: 700;
	}
	#main .faqBox .rBox .qaList {
		margin-bottom: 30px;
	}
	#main .faqBox .rBox .qaList li {
		margin-top: 18px;
		padding-top: 25px;
	}
	#main .faqBox .rBox .qaList li:first-of-type {
		margin-top: 0;
		padding-top: 0;
	}
	#main .faqBox .rBox .qaList li a:hover {
		color: inherit;
		background: inherit;
	}
	#main .faqBox .rBox .qaList .q {
		margin: -6px 6px 0 0;
		font-size: 16px;
	}
	#main .faqBox .rBox .qaList .catList .cat {
		padding: 0 10px;
		font-size: 10px;
		line-height: 14px;
	}
	#main .faqBox .rBox .qaList .ttl {
		font-size: 13px;
		letter-spacing: 0.1em;
	}
	#main .faqBox .rBox .moreLink {
		justify-content: center;
	}
	#main .faqBox .rBox .moreLink a:hover {
		color: inherit;
		background: inherit;
	}
}