@charset "utf-8";
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color:#333;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}

p {
	margin-bottom:1em;
	line-height: 1.8;
}

.center {
	text-align: center;
}
.right {
	text-align: right;
}
p.small {
	font-size: 0.9em;
}

/* header */
header {
	width: 100vw;
	position: fixed;
	z-index: 999;
	background: #fff;
}
#navToggle {
	display:none; /*通常時は非表示にしておきます*/
	position:absolute; /*bodyに対しての絶対位置指定です*/
	right:13px;
	top:13px;
	width:30px;
	height:25px;
	cursor:pointer;
	z-index: 1000;
}
	#navToggle div {
		position:relative;
	}
	#navToggle span {
		display:block;
		position:absolute; /*#navToggle div に対して*/
		width:100%;
		border-bottom:solid 3px #999;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out}
	#navToggle span:nth-child(1) {top:0}
	#navToggle span:nth-child(2) {top:11px}
	#navToggle span:nth-child(3) {top:22px}
.sp_logo {
	display: none;
}

header nav ul {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
	display: flex;
	align-items: center;
	font-size: 14px;
}
	header nav ul.main_nav li {
		display: block;
	}
	header nav ul li.head_right {
		margin-left: auto;
		margin-right: 20px;
		max-width: 250px;
		text-align: center;
		font-size: 12px;
	}
	header nav ul.main_nav li.head_logo {
		margin-right: 10px;
		max-width: 200px;
	}
	header nav ul.main_nav li a {
		display: inline-block;
		position :relative;
		padding: 20px;
		color: #333;
		text-decoration: none;
	}
		header nav ul.main_nav li a:hover {
			color: #e7364a;
		}
		header nav ul.main_nav li a:hover:after {
			content: '';
			position: absolute;
			bottom: 5px;
			left: calc(50% - 20px);
			width: 40px;
			height: 2px;
			background-color: #e7364a;
		}
		header nav ul.main_nav li.head_logo a:hover:after,
		header nav ul.main_nav li a.head_contact:hover:after {
			width: 0;
			height: 0;
		}
	header nav ul.main_nav li a.head_contact {
		display: block;
		background-color: #e7364a;
		color: #fff;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 55px;
		padding-right: 30px;
		border-radius: 30px;
	}
		header nav ul.main_nav li a.head_contact:before {
			content: '';
			position: absolute;
			top: calc(50% - 10px);
			left: 20px;
			width: 25px;
			height: 20px;
			background: url('../images/icon_mail.png') no-repeat center center;
			background-size: cover;
		}
		header nav ul.main_nav li a.head_contact:hover {
			background-color: #e28f9b;
		}



@media screen and (max-width: 768px) { /* nav for mobile */
.sp_logo {
	display: block;
	height: 51px;
	color: #FFF;
	padding-left: 10px;
	padding-top: 5px;
	width: 70%;
}
.sp_logo img {
	height: 30px;
	margin-top: 10px;
}
header nav .widetel {
	display: none;
}
header nav .thintel {
	display: block;
	font-family: 'century';
	font-weight: bold;
	font-size: 1.5rem;
}
header nav ul.main_nav {
	flex-direction: column;
	position: absolute; /*bodyに対しての絶対位置*/
	right:0;
	top: -700px; /*通常時はビュー外*/
	background:#00609d;
	width:100%;
	max-width: 300px;
	min-height: 160px;
	-webkit-transition:.5s ease-in-out; /*transitionで動きを*/
	-moz-transition:.5s ease-in-out;
	transition:.5s ease-in-out;
	text-align:left;
	justify-content: inherit;
}
header nav ul.main_nav>li:first-child {
	display: none;
}
header nav ul.main_nav li {
	width: 100%;
	border-bottom: 1px solid #fff;
	border-collapse: collapse;
	margin-bottom: 0;
}
	header nav ul.main_nav li.head_right {
		margin-right: 0;
		margin-left: 0;
		padding-top: 10px;
		padding-bottom: 10px;
		border-bottom: none;
		color: #fff;
	}
	header nav ul.main_nav li:last-child {
		border-bottom: none;
	}
header nav ul.main_nav li a {
	color: #fff;
	display: block;
	padding: 15px;
	text-decoration: none;
	text-align:center;
	line-height: 20px;
	margin-right: 0;
	height: auto;
}

/* Toggle(Button) */
#navToggle {
	display:block;
}
	.openNav #navToggle span:nth-child(1) {
		top: 11px;
		-webkit-transform:rotate(-45deg);
		-moz-transform:rotate(-45deg);
		transform:rotate(-45deg);
	}
	.openNav #navToggle span:nth-child(2),
	.openNav #navToggle span:nth-child(3) {
		top: 11px;
		-webkit-transform:rotate(45deg);
		-moz-transform:rotate(45deg);
		transform:rotate(45deg);
	}

/*header menu*/
header.openNav .main_nav {
/*	-moz-transform: translateY(756px);
	-webkit-transform: translateY(756px);
	transform: translateY(756px);*/
	top: 50px;
	z-index: 1000;
}

}


/* COMMON */
a {
	transition: all .3s;
}
img {
	max-width: 100%;
}
h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}
h3 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1em;
}
h4 {
	font-size: 1.5rem;
	font-weight: bold;
}
h5 {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1em;
}

.container {
	max-width: 1200px;
	margin: 0px auto;
	padding: 1rem;
}

ul {
	list-style-type: disc;
	margin-left: 2em;
	margin-bottom: 1em;
}
	ul li {
		margin-bottom: 0.5em;
	}
.mb_space {
	margin-bottom: 50px;
}

.btn_detail a,
#page .work_box a {
	display: inline-block;
	border: 2px solid #c1272d;
	border-radius: 2em;
	padding: 1em 2em;
	padding-right: 5em;
	color: #c1272d;
	text-decoration: none;
	position: relative;
}
	.btn_detail a:after,
	#page .work_box a:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: 30px;
		width: 20px;
		height: 5px;
		border: none;
		border-right: 2px solid #c1272d;
		border-bottom: 1.5px solid #c1272d;
		transform: skew(45deg);
		transition: .3s;
	}
	.btn_detail a:hover:after,
	#page .work_box a:hover:after {
		right: 20px;
		width: 30px;
	}

.btn_detail2 a {
	display: inline-block;
	border: 2px solid #1281ff;
	border-radius: 2em;
	padding: 1em 2em;
	padding-right: 5em;
	color: #1281ff;
	text-decoration: none;
	position: relative;
}
	.btn_detail2 a:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: 30px;
		width: 20px;
		height: 5px;
		border: none;
		border-right: 2px solid #1281ff;
		border-bottom: 1.5px solid #1281ff;
		transform: skew(45deg);
		transition: .3s;
	}
	.btn_detail2 a:hover:after {
		right: 20px;
		width: 30px;
	}

.btn_detail3 a {
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 2em;
	padding: 1em 2em;
	padding-right: 5em;
	color: #fff;
	text-decoration: none;
	position: relative;
}
	.btn_detail3 a:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		right: 30px;
		width: 20px;
		height: 5px;
		border: none;
		border-right: 2px solid #fff;
		border-bottom: 1.5px solid #fff;
		transform: skew(45deg);
		transition: .3s;
	}
	.btn_detail3 a:hover:after {
		right: 20px;
		width: 30px;
	}


@media screen and (max-width: 1200px) {
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
.container {
	max-width: 1000px;
}
}

@media screen and (max-width: 768px) {
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.2rem;
}
}

section {
	padding: 50px 0;
	overflow: hidden;
}

/* top */
#top_mv { /* mv */
	width: calc(100vw - ((100vw - 1200px) / 2));
	height: 90vh;
	overflow: hidden;
	position: relative;
	background: url('../images/mv.png') no-repeat right center;
	background-size: contain;
	margin-left: auto;
	margin-right: 0;
	display: flex;
	align-items: flex-end;
	padding-bottom: 10vh;
}
	#top_mv .mv_copy {
		width: 50%;
		background: rgba(255,255,255,0.5);
		padding: 30px;
	}
	#top_mv .mv_copy h3 {
		font-size: 1.2rem;
		font-weight: normal;
	}

@media screen and (min-width:768px) and (max-width:1200px) {
#top_mv {
	width: 100%;
	height: 55vw;
	padding-bottom: 10px;
}
	#top_mv .mv_copy {
		width: 80%;
		padding: 10px;
	}
	#top_mv .mv_copy h3 {
		font-size: 1.1rem;
	}


}

@media screen and (max-width:768px) {
#top_mv {
	width: 100%;
	height: 55vw;
	padding-bottom: 0px;
}
	.mv_copy h3 {
		font-size: 1rem;
	}


}



/* section common */
section h2 {
	margin-bottom: 3em;
}
section h2 span {
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
}

/* section WORKS */
.works {
	background-image: url('../images/img01.png'),url('../images/img02.png'),url('../images/img03.png'),linear-gradient(0deg, #e2f4fc, 20%, #fff);
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: left top, right 50px, left bottom;
	padding-bottom: 300px;
	margin-top: 100px;
}
.works_headline {
	width: 60vw;
	margin-left: auto;
	margin-right: 0;
}
	.works_headline h2 {
		background: url('../images/h_works.png') no-repeat right bottom;
		background-size: 50%;
		padding-bottom: 30px;
		position: relative;
	}
	.works_headline h2:after {
		content: '';
		width: 1.5em;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #1281ff;
	}
	.works_headline h2 span.h2_ruby {
		font-size: 1rem;
		color: #1281ff;
		margin-bottom: 10px;
	}
	.works_headline p {
		max-width: 500px;
		background: rgba(255,255,255,0.5);
	}

.works_panels {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
	.works_panels .panel {
		width: calc(30% - 40px);
		background: #fff;
		padding: 20px;
		box-shadow: 0px 0px 20px #3eb6ea;
	}
	.works_panels .panel01 {
	}
	.works_panels .panel02 {
		margin-top: 50px;
	}
	.works_panels .panel03 {
		margin-top: 100px;
	}
	.works_panels .panel h3 {
		font-size: 1.5rem;
	}
	.works_panels .panel .number {
		font-size: 50px;
		text-align: right;
		color: #1281ff;
		font-family: 'century';
		font-weight: bold;
	}
	.works_panels .panel .icon {
		text-align: center;
		margin: 20px 0;
	}

@media screen and (min-width:768px) and (max-width:1200px) {
.works {
	background-image: url('../images/img01.png'),url('../images/img02.png'),url('../images/img03.png'),linear-gradient(0deg, #e2f4fc, 20%, #fff);
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: left top, right 50px, left bottom;
	background-size: 30vw, 20vw, 20vw;
	padding-bottom: 300px;
	margin-top: 100px;
}
.works_headline {
	width: 68vw;
	margin-left: auto;
	margin-right: 0;
}
	.works_panels .panel02 {
		margin-top: 0px;
	}
	.works_panels .panel03 {
		margin-top: 0px;
	}

}
@media screen and (max-width: 768px) {
.works {
	background-image: linear-gradient(0deg, #e2f4fc, 20%, #fff);
	padding-bottom: 300px;
	margin-top: 0;
}
.works_headline {
	width: 90vw;
	margin-left: auto;
	margin-right: auto;
}

.works_panels {
	flex-direction: column;
}
	.works_panels .panel {
		width: calc(90% - 40px);
		margin: 20px auto;
	}

}


/* section COMPANY */
.company {
	margin-top: -200px;
	padding-top: 0;
	padding-bottom: 0;
	background-image: url('../images/img04.png'), url('../images/img05.png');
	background-repeat: no-repeat, no-repeat;
	background-position: top 0px right 100px, right bottom;
}
.company .company_bg {
	width: 80%;
	margin-right: auto;
	padding: 100px 0;
	background-color: rgba(100,100,100,0.1);
}
.company .about_box {
	width: 40vw;
	background-color: rgba(255,255,255,0.5);
	background-image: url('../images/h_about.png');
	background-repeat: no-repeat;
	background-position: right top;
	display: flex;
	align-items: center;
}
	.company .about_box .about_box_inner {
		width: 60%;
		margin: 50px auto;
	}
.company .about_box h2 {
		padding-bottom: 1em;
		position: relative;
	}
	.company .about_box h2:after {
		content: '';
		width: 1.5em;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #1281ff;
	}
	.company .about_box h2 span.h2_ruby {
		font-size: 1rem;
		color: #1281ff;
		margin-bottom: 10px;
	}

.bg_img06 {
	position: relative;
}
	.bg_img06 .recruit_img06 {
		position: absolute;
		top: 40%;
		left: 40%;
	}


@media screen and (min-width:768px) and (max-width:1200px) {
.company .about_box {
	width: 100%;
}
	.bg_img06 .recruit_img06 {
		display: none;
	}
}
@media screen and (max-width: 768px) {
.company .company_bg {
	width: 95%;
}
.company .about_box {
	width: 90%;
	margin: 0 auto;
}
	.company .about_box .about_box_inner {
		width: 90%;
		margin: 50px auto;
	}
	.bg_img06 .recruit_img06 {
		display: none;
	}
}


/* section RECRUIT */
.recruit {
	padding-bottom: 100px;
	padding-top: 0;
	position: relative;
}
.recruit .recruit_img {
	padding: 100px 0;
	background-image: url('../images/img07.png'),linear-gradient(.25turn, #c1272d, 50%, #e7364a);
	background-repeat: no-repeat, no-repeat;
	background-position: top 100px left 100px, top left;
}
	.recruit .recruit_img08 {
		position: absolute;
		bottom: 0;
		left: 0;
	}
.recruit .recruit_h {
	background-image: url('../images/h_recruit.png');
	background-repeat: no-repeat;
	background-position: 30% center;
}
.recruit .recruit_box {
	width: 40%;
	margin-left: auto;
	margin-right: 0;
	color: #fff;
	z-index: 100;
}
.recruit .recruit_box h2 {
		padding-bottom: 1em;
		position: relative;
	}
	.recruit .recruit_box h2:after {
		content: '';
		width: 1.5em;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #fff;
	}
	.recruit .recruit_box h2 span.h2_ruby {
		font-size: 1rem;
		color: #fff;
		margin-bottom: 10px;
	}
	.recruit .recruit_box .recruit_box_inner {
		width: 60%;
	}

@media screen and (min-width:768px) and (max-width:1200px) {
}
@media screen and (max-width: 768px) {
.recruit {
	padding-bottom: 50px;
}
.recruit .recruit_box {
	width: 80%;
}
	.recruit .recruit_box .recruit_box_inner {
		width: 100%;
	}
.recruit .recruit_img {
	background-image: url('../images/img07.png'),linear-gradient(.25turn, #c1272d, 50%, #e7364a);
	background-repeat: no-repeat, no-repeat;
	background-position: top 100px right, top left;
}
	.recruit .recruit_img08 {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 60vw;
		max-width: 300px;
	}
}



/**********************************
 下層ページ
**********************************/
.page_title {
	height: 300px;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
	.page_title h2 {
		text-align: center;
		font-weight: normal;
	}
		.page_title h2 span {
			font-size: 1rem;
			color: #1281ff;
		}
		#page.maintenance .page_title h2 span {
			color: #e7364a;
		}
	.page_title p {
		max-width: 800px;
		margin: 0 auto;
		padding: 0.5em 1em;
		background: #fff;
	}
#page .page_title {
	background: url('../images/bg_pagetitle1.png') no-repeat;
	background-size: cover;
}
	#page.maintenance .page_title {
		background: url('../images/bg_pagetitle2.png') no-repeat;
		background-size: cover;
	}

#page main {
	background: linear-gradient(#fff, 50%, #e2f4fc);
}
	#page.maintenance main {
		background: linear-gradient(#f39aa4, 50%, #fff);
	}

#page .column_container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
	#page .column_container .contents {
		width: 70%;
	}
	#page .column_container aside {
		width: 25%;
	}

#page .contents h2 {
	font-size: 1.5rem;
}
#page .contents h3 {
	font-size: 1.2rem;
}


.wp-block-columns.is-layout-flex {
	gap: 1em;
}
#page .work_box {
	padding: 2em;
	margin: 1em;
	background: #fff;
	box-shadow: 2px 2px 15px #e2f4fc,-2px 2px 15px #e2f4fc;
	margin-bottom: 2em;
	position: relative;
	font-family: 'century';
}
	#page .work_box:after {
		content: 'Works Group';
		position: absolute;
		left: 3px;
		bottom: 10px;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		color: #e7364a;
	}
	#page .work_box .wp-block-column:first-child {
		width: 40%;
		flex-basis: auto;
	}
	#page .work_box .wp-block-column:last-child {
		width: 55%;
		flex-basis: auto;
	}
	#page .work_box h2 {
		padding-bottom: 10px;
		position: relative;
		display: inline-block;
	}
		#page .work_box h2:before {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 50px;
			height: 3px;
			background: #3a96ff;
		}
		#page .work_box h2:after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50px;
			width: calc(100% - 50px);
			height: 3px;
			background: #9ddaf4;
		}
/* sidebar */
#page aside {
	padding: 1em;
	background: #fff;
}
	#page.maintenance aside {
		background: #e7364a;
	}

	#page aside h3 {
		width: calc(100% - 4em);
		padding: 1em 2em;
		font-size: 1rem;
		color: #fff;
		border-radius: 2em;
		background: linear-gradient(.25turn, #3eb6ea, 50%, #1281ff);
	}
		#page.maintenance aside h3 {
			background: #fff;
			color: #e7364a;
		}
	#page aside p {
		padding: 1em 2em;
		margin-bottom: 0;
		border-bottom: 1px solid #ccc;
	}
	#page aside p a {
		color: #1281ff;
		text-decoration: none;
	}
		#page aside p a:hover {
			text-decoration: underline;
		}
	#page.maintenance aside p a {
			color: #ff0;
			text-decoration: none;
		}
			#page.maintenance aside p a:hover {
				text-decoration: underline;
			}

/* maintenance page */

#page.maintenance .lead_text {
	position: relative;
}
#page.maintenance .lead_text p {
	width: 70%;
}
#page.maintenance .lead_text .hoan_img {
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 20%;
	height: auto;
}

#page.maintenance .hoan_box {
	background: #fff;
	box-shadow: 2px 2px 15px #f39aa4,-2px 2px 15px #f39aa4;
	margin-bottom: 2em;
	position: relative;
	text-align: center;
}
	#page.maintenance .hoan_box img {
		height: 100px;
		width: auto;
	}
	#page.maintenance .hoan_box .number {
		font-size: 2rem;
		text-align: right;
		margin-bottom: 1rem;
		padding-right: 1rem;
		font-family: 'century';
		color: #e7364a;
	}
	#page.maintenance .hoan_box .left_text {
		font-family: 'century';
		color: #e7364a;
		position: absolute;
		left: 3px;
		top: 10px;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}

#page.maintenance .hoan_box_l {
		background: #fff;
		box-shadow: 2px 2px 15px #f39aa4,-2px 2px 15px #f39aa4;
		padding: 2em;
		margin: 1em;
		margin-bottom: 2em;
		position: relative;
	}
	#page.maintenance .hoan_box_l h2 {
		padding-bottom: 10px;
		position: relative;
		display: inline-block;
	}
	#page.maintenance .hoan_box_l h2:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 50px;
		height: 3px;
		background: #e7364a;
	}
	#page.maintenance .hoan_box_l h2:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50px;
		width: calc(100% - 50px);
		height: 3px;
		background: #f39aa4;
	}

@media screen and (max-width: 768px) {
#page .column_container {
	flex-direction: column;
}
	#page .column_container .contents {
		width: 100%;
	}
	#page .column_container aside {
		width: calc(100% - 2em);
	}


}


/* pageTop */
.btn_mail {
	position: fixed;
	bottom: 20px;
	left: 50px;
	width: 50px;
	height: 50px;
	z-index: 999;
}


/* footer */
footer {
	position: relative;
}
footer .f_info {
	width: 80%;
	margin-right: auto;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
	footer .f_info .f_tel {
		font-size: 0.9rem;
		text-align: center;
	}
footer .f_img {
	position: absolute;
	bottom: 20px;
	right: 30px;
}
footer .copyright {
	background: #00609d;
	color: #fff;
	font-size: 12px;
	padding: 20px 0;
	text-align: center;
}
	footer .f_contact a {
		display: block;
		color: #fff;
		background: linear-gradient(.25turn, #1281ff, 50%, #3eb6ea);
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 55px;
		padding-right: 30px;
		border-radius: 30px;
		text-decoration: none;
		position: relative;
		z-index: 999;
	}
		footer .f_contact a:before {
			content: '';
			position: absolute;
			top: calc(50% - 10px);
			left: 20px;
			width: 25px;
			height: 20px;
			background: url('../images/icon_mail.png') no-repeat center center;
			background-size: cover;
		}
		footer .f_contact a:hover {
			background: linear-gradient(.25turn, #3eb6ea, 50%, #1281ff);
		}
@media screen and (min-width:768px) and (max-width:1200px) {
footer .f_info {
	width: 90vw;
}
}
@media screen and (max-width: 768px) {
footer .f_info {
	width: 100%;
	flex-direction: column;
	align-items: center;
}
	footer .f_info .f_tel {
		margin-bottom: 1em;
	}

footer .f_img {
	width: 40vw
}
}

.sp {
	display: none;
}
.pc {
	display: block;
}

@media screen and (max-width: 1000px) {
.sp {
	display: block;
}
.pc {
	display: none;
}

}



