@charset "UTF-8";
[data-animation] {
	transition-duration: 1s;
	transition-delay: .3s;
	transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}
[data-animation="after"] {
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}
.gHeaderWrap {
	height: 130px;
	position: relative;
	z-index: 1000;
}
.gHeader {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	transition-duration: 0.5s;
	transition-property: box-shadow, background-color;
}
.isFixed .gHeader {
	box-shadow: 0 2px 15px rgba(34, 34, 34, 0.2);
}
.gHeader_inner {
	max-width: none;
	padding: 0;
	padding-right: 33px;
}
.gHeader_cols {
	display: flex;
	justify-content: space-between;
}
.gHeader_col {}
.gHeader_col-no1 {
	padding-left: 110px;
	width: 500px;
	/* width: 582px; */
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: flex;

	overflow: hidden;
}

.isLoaded .gHeader_col-no1{
    transition-duration: 0.5s;
	transition-property: padding-left, width;

}
.gHeader_col-no1::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1346af;
	transition-duration: .5s;
	transition-property: width;
}
.isFixed .gHeader_col-no1 {
	padding-left: 0;
	width: 200px;
}
.isFixed .gHeader_col-no1::before {
	width: 200px;
}
.gHeader_title {
	position: relative;
	z-index: 2;
}
.isFixed .gHeader_title {}
.gHeader_title > a {
	display: flex;
	text-decoration: none;
	color: inherit;
	position: relative;
	z-index: 1;
	height: 130px;
	align-items: center;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.gHeader_title > a::before {
	content: "";
}
.gHeader_title > a::after {
	content: "";
}
.gHeader_title_logo {
	display: block;
	width: 328px;
	height: 44px;
	fill: #fff;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	z-index: 2;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	transition-duration: 0.5s;
	transition-property: left, opacity, -webkit-transform;
	transition-property: transform, left, opacity;
	transition-property: transform, left, opacity, -webkit-transform;
	left: 0;
}
.isFixed .gHeader_title_logo {
	-webkit-transform: translateY(-50%) scale(1.47);
	transform: translateY(-50%) scale(1.47);
	left: 50px;
	opacity: 1;
}
.gHeader_title_logo > use {}
.gHeader_title_text {
	display: block;
	width: 328px;
	height: 44px;
	fill: #fff;
	transition-duration: 0.5s;
	transition-property: opacity;
}
.isFixed .gHeader_title_text {
	opacity: 0;
}
.gHeader_title_text > title {}
.gHeader_title_text > use {}
.gHeader_col-no2 {
	width: calc(100% - 582px);
	max-width: 998px;
}
.gNav {}
.gNav_inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.gNav_list {
	list-style: none;
	display: flex;
	margin-right: 40px;
	flex-grow: 0;
}
.gNav_list > li {
	flex-grow: 1;
}
.gNav_list > li:first-child {}
.gNav_list > li:last-child {}
.gNav_list > li:nth-child(2n+1) {}
.gNav_list > li:nth-child(n+3) {}
.gNav_list > li > a {
	text-decoration: none;
	color: inherit;
	height: 130px;
	display: flex;
	align-items: center;
	padding: 0 17px;
	position: relative;
	z-index: 1;
	white-space: nowrap;
	justify-content: center;
}
.p-home .gNav_list > li > a.-home,
.p-news .gNav_list > li > a.-news,
.p-service .gNav_list > li > a.-service,
.p-product .gNav_list > li > a.-product,
.p-company .gNav_list > li > a.-company,
.p-works .gNav_list > li > a.-works,
.p-recruit .gNav_list > li > a.-recruit,
.p-privacy .gNav_list > li > a.-privacy,
.p-contact .gNav_list > li > a.-contact {
	color: #1346af;
}
.gNav_list > li > a > b {
	display: block;
	font-weight: 500;
	position: relative;
	z-index: 1;
}
.gNav_list > li > a::before {
	content: "";
}
.gNav_list > li > a::after {
	content: "";
}
.gNav_list > li > a > b::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	height: 1px;
	width: 100%;
	background-color: #1346af;
	margin-top: 18px;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transform: translate(-50%, -50%) scale(0, 1);
	transform: translate(-50%, -50%) scale(0, 1);
}
.p-home .gNav_list > li > a.-home > b::after,
.p-news .gNav_list > li > a.-news > b::after,
.p-service .gNav_list > li > a.-service > b::after,
.p-product .gNav_list > li > a.-product > b::after,
.p-company .gNav_list > li > a.-company > b::after,
.p-works .gNav_list > li > a.-works > b::after,
.p-recruit .gNav_list > li > a.-recruit > b::after,
.p-privacy .gNav_list > li > a.-privacy > b::after,
.p-contact .gNav_list > li > a.-contact > b::after {
	-webkit-transform: translate(-50%, -50%) scale(1, 1);
	transform: translate(-50%, -50%) scale(1, 1);
}
.gNav_snsList {
	list-style: none;
	display: flex;
	align-items: center;
}
.gNav_snsList > li {
	width: 60px;
	margin-left: 20px;
}
.gNav_snsList > li:first-child {
	margin-left: 0;
}
.gNav_snsList > li:last-child {}
.gNav_snsList > li:nth-child(2n+1) {}
.gNav_snsList > li:nth-child(n+3) {}
.gNav_snsList > li > a {
	display: flex;
	text-decoration: none;
	background-color: #55acef;
	height: 60px;
	border-radius: 14px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 36px;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.gNav_snsList > li > a[aria-label="Instagram"] {
	background-image: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%), linear-gradient(135deg, #653ae4 0%, #f13f79 70%);
}
.gNav_snsList > li > a::before {
	content: "";
}
.gNav_snsList > li > a::after {
	content: "";
}
.gNav_snsList > li > a > .icon {
	display: block;
}
.gNav_recruit {
	display: none;
}
.gNav_recruit_link {}
.gNav_recruit_link > a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.gNav_recruit_link > a::before {
	content: "";
}
.gNav_recruit_link > a::after {
	content: "";
}
.gNav_recruit_link > a > img {
	display: block;
}
.gBody {
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.gBody-hasPb {
	padding-bottom: 140px;
}
.gBody::before {
	content: "";
	width: 500px;
	/* width: 582px; */
	display: block;
	position: absolute;
	z-index: 0;
	height: 100%;
	background-color: #eff1f6;
	top: 0;
	left: 0;
}
.gVisual {
	padding-left: 110px;
	position: relative;
	z-index: 1;
	padding-bottom: 30px;
	margin-bottom: 80px;
}
.gVisual-home {
	padding-bottom: 0;
	padding-left: 0;
	margin-bottom: 87px;
	z-index: 3;
}
.gVisual-mbL {
	margin-bottom: 120px;
}
.gVisual::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 500px;
	/* width: 582px; */
	height: 100%;
	background-color: #1346af;
}
.gVisual-home::before {
	background-color: transparent;
	background-image: linear-gradient(0deg, transparent 90px, #1346af 90px);
}
.gVisual_image {
	background-image: url(../img/common/pt-main-works.jpg);
	height: 500px;
	position: relative;
	z-index: 1;
	background-position: center center;
	background-size: cover;
}
.gVisual_image-home {
	background-image: url(../img/common/pt-main-home.jpg);
}
.gVisual_image-news {
	background-image: url(../img/common/pt-main-news.jpg);
}
.gVisual_image-detail-detail {
	background-image: url(..//img/common/pt-main-detail-detail.jpg);
}
.gVisual_image-service {
	background-image: url(../img/common/pt-main-service.jpg);
}
.gVisual_image-company {
	background-image: url(../img/common/pt-main-company.jpg);
}
.gVisual_image-works {
	background-image: url(../img/common/pt-main-works.jpg);
}
.gVisual_image-recruit {
	background-image: url(..//img/common/pt-main-recruit.jpg);
}
.gVisual_image-privacy {
	background-image: url(../img/common/pt-main-privacy.jpg);
}
.gVisual_image-contact {
	background-image: url(../img/common/pt-main-contact.jpg);
}
.gVisual_image-service_highway {
	background-image: url(../img/common/pt-main-service_highway.jpg);
}
.gVisual_image-service_environment {
	background-image: url(../img/common/pt-main-service_environment.jpg);
}
.gVisual_title {
	position: relative;
	z-index: 2;
	width: 800px;
	background-color: #000;
	height: 160px;
	display: flex;
	align-items: center;
	color: #fff;
	margin-left: auto;
	box-sizing: border-box;
	padding-left: 66px;
	margin-top: -80px;
	line-height: 1;
}
.gVisual_title > b {
	font-size: 60px;
	font-weight: bold;
	letter-spacing: .1em;
}
.gVisual_title > small {
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin-left: 26px;
	letter-spacing: .05em;
}
.gMenuBtn {
	display: none;
}
.gMenuBtn::before {
	content: "";
}
.gMenuBtn::after {
	content: "";
}
.gMenuBtn_bar {}
.gMenuBtn_bar-no1 {}
.gMenuBtn_bar-no2 {}
.gFooter {
	overflow: hidden;
}
.gFooter_inner {}
.gFooter_top {
	background-color: #1346af;
	padding-top: 76px;
	padding-bottom: 67px;
	color: #fff;
}
.gFooter_title {
	width: 246px;
	margin: 0 auto 44px;
}
.gFooter_title > a {
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
	z-index: 1;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.gFooter_title > a::before {
	content: "";
}
.gFooter_title > a::after {
	content: "";
}
.gFooter_title_logo {
	display: block;
	width: 246px;
	height: 36px;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	fill: #fff;
}
.gFooter_title_logo > use {}
.gFooter_title_text {
	display: block;
	width: 246px;
	height: 36px;
	fill: #fff;
}
.gFooter_title_text > title {}
.gFooter_title_text > use {}
.gFooter_addrList {
	list-style: none;
	display: flex;
	justify-content: center;
}
.gFooter_addrList > li {
	margin-right: 1em;
}
.gFooter_addrList > li:first-child {}
.gFooter_addrList > li:last-child {
	margin-right: 0;
}
.gFooter_addrList > li:nth-child(2n+1) {}
.gFooter_addrList > li:nth-child(n+3) {}
.gFooter_telList {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.gFooter_telList > li {
	display: flex;
	align-items: center;
}
.gFooter_telList > li::after {
	content: "／";
}
.gFooter_telList > li:last-child::after {
	display: none;
}
.gFooter_telList > li:first-child {}
.gFooter_telList > li:last-child {}
.gFooter_telList > li:nth-child(2n+1) {}
.gFooter_telList > li:nth-child(n+3) {}
.gFooter_telList_anchor {
	display: flex;
	align-items: center;
}
.gFooter_telList_anchor > .icon {
	font-size: 21px;
	margin-right: 7px;
}
.gFooter_bottom {
	padding-top: 65px;
	padding-bottom: 50px;
}
.gFooter_link {
	max-width: 441px;
	margin: 0 auto 40px;
}
.gFooter_link > a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}
.gFooter_link > a::before {
	content: "";
}
.gFooter_link > a::after {
	content: "";
}
.gFooter_link > a > img {}
.gFooter_copyright {}
.gFooter_copyright > small {
	display: block;
	font-size: 13px;
	text-align: center;
	letter-spacing: .1em;
}
.gPageTop {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: calc(100vw - 60px);
}
.gPageTop_button {
	display: block;
	width: 80px;
	height: 80px;
	background-color: #000;
	color: #fff;
	font-size: 32px;
	margin-left: auto;
	border: 1px solid #000;
	position: absolute;
	z-index: 1;
	top: -40px;
	right: 0;
}
.gPageTop_button > .icon {
	display: block;
	position: relative;
	z-index: 1;
	top: 0;
	transition-duration: .3s;
	transition-property: top;
}
.gPageTop_button::before {
	content: "";
}
.gPageTop_button::after {
	content: "";
}
.gBody-hasMb {
	margin-bottom: 130px;
}
.gBody-hasMbS {
	margin-bottom: 90px;
}
.gPager {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.gPager > a,
.gPager > span {
	color: inherit;
	min-width: 60px;
	height: 60px;
	background-color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px;
	border: 1px solid #000;
	box-sizing: border-box;
	font-size: 20px;
	transition-duration: .3s;
	transition-property: color, background-color;
	padding: 0 10px;
}
.gPager > .previouspostslink {}
.gPager > .current {}
.gPager > .extend {
	border: none;
	background-color: transparent;
}
.gPager > .nextpostslink {}
.gNewsList {
	list-style: none;
}
.gNewsList > li {
	border-bottom: 1px solid #ddd;
}
.gNewsList > li:first-child {}
.gNewsList > li:last-child {}
.gNewsList > li:nth-child(2n+1) {}
.gNewsList > li:nth-child(n+3) {}
.gNewsList > li > a {
	display: flex;
	text-decoration: none;
	color: inherit;
	line-height: 1;
	align-items: center;
	padding: 40px 10px;
	transition-duration: .3s;
	transition-property: background-color, color;
	padding-left: 5px;
}
.gNewsList > li > a::before {}
.gNewsList > li > a::after {
	content: "";
}
.gNewsList_time {
	color: #1346af;
	font-size: 17px;
	width: 120px;
	min-width: 120px;
	margin-right: 20px;
	transition-duration: .3s;
	transition-property: color;
	letter-spacing: 0.1em;
}
.gNewsList_time > time {}
.gNewsList_tagList {
	list-style: none;
	font-size: 15px;
	color: #1346af;
	width: 120px;
	min-width: 120px;
	text-align: center;
	margin-right: 40px;
}
.gNewsList_tagList > li {
	padding: 9px 10px;
	border: 2px solid #1346af;
	border-radius: 18px;
	background-color: #fff;
	margin: 2px 0;
	transition-duration: .3s;
	transition-property: color, border-color;
}
.gNewsList_tagList > li:first-child {
	margin-top: 0;
}
.gNewsList_tagList > li:last-child {
	margin-bottom: 0;
}
.gNewsList_tagList > li:nth-child(2n+1) {}
.gNewsList_tagList > li:nth-child(n+3) {}
.gNewsList_text {
	line-height: 1.8;
	font-size: 15px;
	transition-duration: .3s;
	transition-property: color;
	flex-grow: 1;
}
@media screen and (max-width:1499px) {
	.gHeader_col-no1 {
		padding-left: 60px;
		width: 460px;
	}
	.gHeader_col-no2 {
		width: calc(100% - 460px);
	}
	.gBody::before {
		width: 460px;
	}
	.gVisual::before {
		width: 460px;
	}
	.gVisual {
		padding-left: 60px;
	}
	.gNav_list {
		margin-right: 20px;
	}
	.gHeader_inner {
		padding-right: 20px;
	}
	.gVisual_title {
		width: 700px;
	}
	.gVisual_title > b {
		font-size: 56px;
	}
	.gNav_list > li > a {
		padding-left: 14px;
		padding-right: 14px;
	}
}
@media screen and (max-width:1299px) {
	.gHeader_col-no1 {
		padding-left: 30px;
		width: 340px;
	}
	.gHeader_col-no2 {
		width: calc(100% - 340px);
	}
	.gBody::before {
		width: 340px;
	}
	.gVisual::before {
		width: 340px;
	}
	.gVisual {
		padding-left: 30px;
		margin-bottom: 40px;
	}
	.gNav_list {
		margin-right: 10px;
	}
	.gHeader_inner {
		padding-right: 15px;
	}
	.gVisual_title {
		width: 600px;
		padding-left: 50px;
		height: 130px;
		margin-top: -65px;
	}
	.gVisual_title > b {
		font-size: 50px;
	}
	.gNav_list > li > a {}
	.gHeader_title_logo {
		width: 262px;
		height: 35px;
	}
	.gVisual_image {
		height: 400px;
	}
	.gHeader_title_text {
		width: 262px;
		height: 35px;
	}
	.gNav_snsList > li {
		width: 40px;
		margin-left: 10px;
	}
	.gNav_snsList > li > a {
		height: 40px;
		border-radius: 7px;
		font-size: 25px;
	}
}
@media screen and (max-width:1099px) {
	.gNav_list > li > a {
		font-size: 14px;
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media screen and (min-width:1000px) {
	.gPager > a:hover {
		background-color: #000;
		color: #fff;
	}
	.gHeader_title > a:hover {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	.gNav_list > li > a:hover {
		color: #1346af;
	}
	.gNav_list > li > a:hover > b::after {
		-webkit-transform: translate(-50%, -50%) scale(1, 1);
		transform: translate(-50%, -50%) scale(1, 1);
	}
	.gNav_snsList > li > a:hover {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	.gNav_snsList > li > a:hover > .icon {}
	.gNav_recruit_link > a:hover {}
	.gMenuBtn:hover {}
	.gFooter_title > a:hover {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	.gFooter_link > a:hover {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	.gPageTop_button:hover {}
	.gPageTop_button:hover > .icon {
		top: -5px;
	}
	.gNewsList > li > a:hover {
		background-color: rgba(239, 241, 246, 1);
	}
	a:hover .gNewsList_time {
		color: #000;
	}
	a:hover .gNewsList_tagList > li {
		color: #000;
		border-color: #000;
	}
	a:hover .gNewsList_text {
		color: #1346af;
	}
}
@media screen and (max-width: 999px) {
	.gHeaderWrap {
		height: 70px;
	}
	.gHeader {}
	.isFixed .gHeader {}
	.gHeader_inner {
		padding-right: 0;
	}
	.gHeader_cols {
		display: block;
	}
	.gHeader_col {
		width: auto;
		padding: 0;
	}
	.gHeader_col-no1 {
		padding-left: 30px;
		width: 310px;
	}
	.gHeader_col-no1::before {}
	.isFixed .gHeader_col-no1 {}
	.isFixed .gHeader_col-no1::before {
		width: 170px;
	}
	.gHeader_title {}
	.isFixed .gHeader_title {}
	.gHeader_title > a {
		height: 70px;
	}
	.gHeader_title > a::before {}
	.gHeader_title > a::after {}
	.gHeader_title_logo {
		width: 230px;
		height: 31px;
	}
	.isFixed .gHeader_title_logo {}
	.gHeader_title_logo > use {}
	.gHeader_title_text {
		width: 230px;
		height: 31px;
	}
	.isFixed .gHeader_title_text {}
	.gHeader_title_text > title {}
	.gHeader_title_text > use {}
	.gHeader_col-no2 {
		position: relative;
		z-index: 1;
	}
	.gNav {
		background-color: #1346af;
		padding-bottom: 25px;
		box-shadow: 0 100vh 0 100vh #1346af;
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		width: 100%;
		-webkit-transform: scale(1, 0);
		transform: scale(1, 0);
		-webkit-transform-origin: center top;
		transform-origin: center top;
		opacity: 0;
		transition-property: opacity, transform, -webkit-transform;
		transition-duration: .5s, 0s, 0s;
		transition-delay: 0s, .5s, .5s;
	}
	.gNav.isShow {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
		transition-delay: 0s, 0s, 0s;
	}
	.gNav_inner {
		display: block;
	}
	.gNav_list {
		flex-wrap: wrap;
		margin-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.4);
	}
	.gNav_list > li {
		width: 50%;
		flex-grow: 0;
	}
	.gNav_list > li:first-child {}
	.gNav_list > li:last-child {}
	.gNav_list > li:nth-child(2n+1) {}
	.gNav_list > li:nth-child(n+3) {}
	.gNav_list > li > a {
		color: #fff;
		font-size: 15px;
		height: 90px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	}
	.p-home .gNav_list > li > a.-home,
	.p-news .gNav_list > li > a.-news,
	.p-service .gNav_list > li > a.-service,
	.p-product .gNav_list > li > a.-product,
	.p-company .gNav_list > li > a.-company,
	.p-works .gNav_list > li > a.-works,
	.p-recruit .gNav_list > li > a.-recruit,
	.p-privacy .gNav_list > li > a.-privacy,
	.p-contact .gNav_list > li > a.-contact {
		color: #fff;
	}
	.gNav_list > li:nth-child(2n+1) > a {
		border-right: 1px solid rgba(255, 255, 255, 0.4);
	}
	.gNav_list > li > a > b {}
	.gNav_list > li > a::before {}
	.gNav_list > li > a::after {}
	.gNav_list > li > a > b::after {
		display: none;
	}
	.gNav_snsList {
		justify-content: center;
		padding: 20px 0;
	}
	.gNav_snsList > li {}
	.gNav_snsList > li:first-child {}
	.gNav_snsList > li:last-child {}
	.gNav_snsList > li:nth-child(2n+1) {}
	.gNav_snsList > li:nth-child(n+3) {}
	.gNav_snsList > li > a {}
	.gNav_snsList > li > a[aria-label="Instagram"] {}
	.gNav_snsList > li > a::before {}
	.gNav_snsList > li > a::after {}
	.gNav_snsList > li > a > .icon {}
	.gNav_recruit {
		display: block;
	}
	.gNav_recruit_link {
		max-width: 220px;
		margin: 0 auto 0;
	}
	.gNav_recruit_link > a {}
	.gNav_recruit_link > a::before {}
	.gNav_recruit_link > a::after {}
	.gNav_recruit_link > a > img {}
	.gBody {}
	.gBody::before {
		width: 310px;
	}
	.gVisual {
		padding-bottom: 20px;
	}
	.gVisual-home {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.gVisual::before {
		width: 310px;
	}
	.gVisual_image {
		height: 300px;
	}
	.gVisual_title {
		width: 500px;
		padding-left: 40px;
		height: 100px;
		margin-top: -50px;
	}
	.gVisual_title > b {
		font-size: 40px;
	}
	.gVisual_title > small {
		font-size: 15px;
	}
	.gMenuBtn {
		display: block;
		position: fixed;
		z-index: 1001;
		top: 0;
		right: 0;
		width: 70px;
		height: 70px;
		background-color: #000;
	}
	.gMenuBtn::before {}
	.gMenuBtn::after {}
	.gMenuBtn_bar {
		display: block;
		width: 32px;
		height: 3px;
		background-color: #fff;
		margin: 0 auto;
		position: relative;
		z-index: 1;
		top: 0;
		transition-duration: .3s;
		transition-property: top, -webkit-transform;
		transition-property: transform, top;
		transition-property: transform, top, -webkit-transform;
	}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {
		margin-top: 8px;
	}
	.isShow .gMenuBtn_bar-no1 {
		top: 6px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.isShow .gMenuBtn_bar-no2 {
		top: -5px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.gFooter {}
	.gFooter_inner {}
	.gFooter_top {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.gFooter_title {
		margin-bottom: 25px;
	}
	.gFooter_title > a {}
	.gFooter_title > a::before {}
	.gFooter_title > a::after {}
	.gFooter_title_logo {}
	.gFooter_title_logo > use {}
	.gFooter_title_text {}
	.gFooter_title_text > title {}
	.gFooter_title_text > use {}
	.gFooter_addrList {}
	.gFooter_addrList > li {}
	.gFooter_addrList > li:first-child {}
	.gFooter_addrList > li:last-child {}
	.gFooter_addrList > li:nth-child(2n+1) {}
	.gFooter_addrList > li:nth-child(n+3) {}
	.gFooter_telList {}
	.gFooter_telList > li {}
	.gFooter_telList > li::after {}
	.gFooter_telList > li:last-child::after {}
	.gFooter_telList > li:first-child {}
	.gFooter_telList > li:last-child {}
	.gFooter_telList > li:nth-child(2n+1) {}
	.gFooter_telList > li:nth-child(n+3) {}
	.gFooter_telList_anchor {}
	.gFooter_telList_anchor > .icon {}
	.gFooter_bottom {
		padding-top: 45px;
		padding-bottom: 25px;
	}
	.gFooter_link {
		max-width: 300px;
		margin-bottom: 25px;
	}
	.gFooter_link > a {}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFooter_link > a > img {}
	.gFooter_copyright {}
	.gFooter_copyright > small {}
	.gPageTop {}
	.gPageTop_button {
		width: 60px;
		height: 60px;
		font-size: 22px;
		top: -30px;
	}
	.gPageTop_button > .icon {}
	.gPageTop_button::before {}
	.gPageTop_button::after {}
	.gBody-hasMb {
		margin-bottom: 80px;
	}
	.gVisual-mbL {
		margin-bottom: 80px;
	}
	.gPager {}
	.gPager > a,
	.gPager > span {}
	.gPager > .previouspostslink {}
	.gPager > .current {}
	.gPager > .extend {}
	.gPager > .nextpostslink {}
	.gBody-hasPb {
		padding-bottom: 90px;
	}
	.gNewsList {}
	.gNewsList > li {}
	.gNewsList > li:first-child {}
	.gNewsList > li:last-child {}
	.gNewsList > li:nth-child(2n+1) {}
	.gNewsList > li:nth-child(n+3) {}
	.gNewsList > li > a {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.gNewsList > li > a::before {}
	.gNewsList > li > a::after {}
	.gNewsList_time {
		font-size: 15px;
		width: 100px;
		min-width: 100px;
		margin-right: 10px;
	}
	.gNewsList_time > time {}
	.gNewsList_tagList {
		margin-right: 20px;
		font-size: inherit;
	}
	.gNewsList_tagList > li {
		padding: 6px 8px;
	}
	.gNewsList_tagList > li:first-child {}
	.gNewsList_tagList > li:last-child {}
	.gNewsList_tagList > li:nth-child(2n+1) {}
	.gNewsList_tagList > li:nth-child(n+3) {}
	.gNewsList_text {
		font-size: inherit;
	}
}
@media screen and (max-width:767px) {
	.gHeaderWrap {
		height: 50px;
	}
	.gHeader {
		background-color: transparent;
	}
	.isNavShow .gHeader {
		background-color: #fff;
	}
	.isFixed .gHeader {
		background-color: #fff;
	}
	.gHeader_inner {}
	.gHeader_cols {}
	.gHeader_col {}
	.gHeader_col-no1 {
		width: 155px;
		/* width: 165px; */
		padding-left: 14px;
	}
	.gHeader_col-no1::before {}
	.isFixed .gHeader_col-no1 {}
	.isFixed .gHeader_col-no1::before {
		width: 100px;
	}
	.gHeader_title {}
	.isFixed .gHeader_title {}
	.gHeader_title > a {
		height: 50px;
	}
	.gHeader_title > a::before {}
	.gHeader_title > a::after {}
	.gHeader_title_logo {
		width: 135px;
		height: 18px;
	}
	.isFixed .gHeader_title_logo {
		left: 28px;
	}
	.gHeader_title_logo > use {}
	.gHeader_title_text {
		width: 135px;
		height: 18px;
	}
	.isFixed .gHeader_title_text {}
	.gHeader_title_text > title {}
	.gHeader_title_text > use {}
	.gHeader_col-no2 {}
	.gNav {}
	.gNav_inner {}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li:first-child {}
	.gNav_list > li:last-child {}
	.gNav_list > li:nth-child(2n+1) {}
	.gNav_list > li:nth-child(n+3) {}
	.gNav_list > li > a {}
	.gNav_list > li > a > b {}
	.gNav_list > li > a::before {}
	.gNav_list > li > a::after {}
	.gNav_list > li > a > b::after {}
	.gNav_snsList {}
	.gNav_snsList > li {}
	.gNav_snsList > li:first-child {}
	.gNav_snsList > li:last-child {}
	.gNav_snsList > li:nth-child(2n+1) {}
	.gNav_snsList > li:nth-child(n+3) {}
	.gNav_snsList > li > a {}
	.gNav_snsList > li > a[aria-label="Instagram"] {}
	.gNav_snsList > li > a::before {}
	.gNav_snsList > li > a::after {}
	.gNav_snsList > li > a > .icon {}
	.gNav_recruit {}
	.gNav_recruit_link {}
	.gNav_recruit_link > a {}
	.gNav_recruit_link > a::before {}
	.gNav_recruit_link > a::after {}
	.gNav_recruit_link > a > img {}
	.gBody {}
	.gBody-home {
		padding-top: 50px;
	}
	.gBody-home::after {
		content: "";
		display: block;
		width: calc(100% - 80px);
		background-color: #eff1f6;
		height: 270px;
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
	}
	.gBody-hasMbS {
		margin-bottom: 56px;
	}
	.gBody::before {
		width: 155px;
		/* width: 165px; */
	}
	.gVisual {
		padding-bottom: 20px;
		margin-bottom: 35px;
		padding-left: 20px;
	}
	.gVisual-home {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.gVisual::before {
		width: 155px;
		/* width: 165px; */
	}
	.gVisual-home::before {
		background-color: #1346af;
	}
	.gVisual_image {
		height: 180px;
	}
	.gVisual_title {
		width: 280px;
		height: 60px;
		margin-top: -30px;
		padding-left: 20px;
	}
	.gVisual_title > b {
		font-size: 26px;
	}
	.gVisual_title > small {
		font-size: 13px;
		margin-left: 10px;
	}
	.gMenuBtn {
		width: 50px;
		height: 50px;
	}
	.gMenuBtn::before {}
	.gMenuBtn::after {}
	.gMenuBtn_bar {
		width: 16px;
		height: 2px;
	}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {
		margin-top: 5px;
	}
	.isShow .gMenuBtn_bar-no1 {
		top: 4px;
	}
	.isShow .gMenuBtn_bar-no2 {
		top: -3px;
	}
	.gFooter {}
	.gFooter_inner {}
	.gFooter_top {
		font-size: 13px;
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.gFooter_title {
		max-width: 123px;
	}
	.gFooter_title > a {}
	.gFooter_title > a::before {}
	.gFooter_title > a::after {}
	.gFooter_title_logo {
		width: 123px;
		height: 18px;
	}
	.gFooter_title_logo > use {}
	.gFooter_title_text {
		width: 123px;
		height: 18px;
	}
	.gFooter_title_text > title {}
	.gFooter_title_text > use {}
	.gFooter_addrList {}
	.gFooter_addrList > li {}
	.gFooter_addrList > li:first-child {}
	.gFooter_addrList > li:last-child {}
	.gFooter_addrList > li:nth-child(2n+1) {}
	.gFooter_addrList > li:nth-child(n+3) {}
	.gFooter_telList {}
	.gFooter_telList > li {}
	.gFooter_telList > li::after {}
	.gFooter_telList > li:last-child::after {}
	.gFooter_telList > li:first-child {}
	.gFooter_telList > li:last-child {}
	.gFooter_telList > li:nth-child(2n+1) {}
	.gFooter_telList > li:nth-child(n+3) {}
	.gFooter_telList_anchor {}
	.gFooter_telList_anchor > .icon {}
	.gFooter_bottom {
		padding-top: 25px;
	}
	.gFooter_link {
		max-width: 270px;
	}
	.gFooter_link > a {}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFooter_link > a > img {}
	.gFooter_copyright {}
	.gFooter_copyright > small {
		font-size: 10px;
	}
	.gPageTop {
		width: calc(100vw - 40px);
	}
	.gPageTop_button {
		width: 40px;
		height: 40px;
		font-size: 17px;
		top: -20px;
	}
	.gPageTop_button > .icon {}
	.gPageTop_button::before {}
	.gPageTop_button::after {}
	.gBody-hasMb {
		margin-bottom: 40px;
	}
	.gVisual-mbL {}
	.gPager {}
	.gPager > a,
	.gPager > span {
		min-width: 40px;
		height: 40px;
		font-size: 16px;
	}
	.gPager > .previouspostslink {}
	.gPager > .current {}
	.gPager > .extend {}
	.gPager > .nextpostslink {}
	.gBody-hasPb {
		padding-bottom: 50px;
	}
	.gNewsList {}
	.gNewsList > li {}
	.gNewsList > li:first-child {}
	.gNewsList > li:last-child {}
	.gNewsList > li:nth-child(2n+1) {}
	.gNewsList > li:nth-child(n+3) {}
	.gNewsList > li > a {
		flex-wrap: wrap;
		padding: 15px 5px;
	}
	.gNewsList > li > a::before {}
	.gNewsList > li > a::after {}
	.gNewsList_time {
		font-size: 12px;
		width: 80px;
		min-width: 80px;
		margin-right: 5px;
	}
	.gNewsList_time > time {}
	.gNewsList_tagList {
		font-size: 12px;
		margin-right: 0;
		display: flex;
		flex-wrap: wrap;
		width: auto;
		min-width: 0;
	}
	.gNewsList_tagList > li {
		border-width: 1px;
		margin: 2px 2px;
		padding: 4px 12px;
	}
	.gNewsList_tagList > li:first-child {
		margin-top: 2px;
	}
	.gNewsList_tagList > li:last-child {
		margin-bottom: 2px;
	}
	.gNewsList_tagList > li:nth-child(2n+1) {}
	.gNewsList_tagList > li:nth-child(n+3) {}
	.gNewsList_text {
		width: 100%;
		margin-top: 10px;
		font-size: 13px;
	}
}
@media screen and (max-width:374px) {
	.gPageTop {
		width: calc(100vw - 30px);
	}
	.gNav_list > li > a {
		height: 60px;
		font-size: 14px;
	}
}


/*プルダウンメニュー*/
.gNav_list > li {
	position: relative;
}

.gNav_list > li.pullDown {
	position: relative;
}

.gNav_list > li.pullDown::after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-bottom: solid 1px #363636;
	border-right: solid 1px #363636;
	position: absolute;
	top: 94px;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}

.gNav_listChild {
	position: absolute;
	top: 94px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #1346af;
	width: 170px;
	list-style: none;
	padding: 10px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	z-index: 1;
}

.gNav_list > li:hover .gNav_listChild {
	opacity: 1;
	pointer-events: auto;
}

.gNav_listChild_item a {
	display: block;
	text-align: left;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	text-decoration: none;
	padding-left: 20px;
	box-sizing: border-box;
	transition: .3s;
}

.gNav_listChild_item a:hover {
	background-color: #3360bd;
}

.gNav_listChild_item a::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 1px;
	background-color: #fff;
	vertical-align: middle;
	margin-right: 8px;
}

@media screen and (max-width:767px) {

.gNav_listChild {
	display: none;
}

.gNav_list > li.pullDown::after {
	content: none;
}

}