@charset "utf-8";

.sp {
	display: none !important;
}

#side {
	box-sizing: border-box;
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 80px;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 1010;
	padding: 23px 0 30px;
	background: #fff;
}
#side .logo {
	width: 37px;
	margin: 0 auto;
}
#side .logo img {
	width: 100%;
	height: auto;
}
#side .copyright {
	position: relative;
	writing-mode: vertical-rl;
	left: 0;
	font-size: 14px;
	line-height: 1;
}


@media screen and (max-height:800px) {
	#side .logo {
		width: 32px;
	}
	#side .copyright {
		font-size: 12px;
	}
}
@media screen and (max-height:700px) {
	#side {
		padding: 20px 0;
	}
	#side .logo {
		width: 26px;
	}
	#side .copyright {
		font-size: 11px;
	}
}
@media screen and (max-height:600px) {
	#side {
		padding: 16px 0;
	}
	#side .logo {
		width: 24px;
	}
	#side .copyright {
		padding-top: 15px;
		font-size: 10px;
		line-height: 1.3;
	}
}


#wrap {
	padding-top: 75px;
	overflow: hidden;
}


#menu-button {
	display: none;
}

#wrap > header {
	box-sizing: border-box;
	position: fixed;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 75px;
	left: 0;
	top: 0;
	z-index: 1000;
	background: #fff;
}

#wrap > header .logo {
	position: absolute;
	width: 266px;
	height: 38px;
	left: 34px;
	top: 19px;
}
#wrap > header .logo img {
	width: 100%;
	height: auto;
}

#wrap > header .contact {
	position: relative;
	width: 214px;
	height: 75px;
}
#wrap > header .contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
	background: #dc1414;
}

#wrap > header nav,
#wrap > header ul {
	position: relative;
	display: flex;
	align-items: center;
}


#wrap > header .main {
	margin-right: 32px;
}
#wrap > header .main li + li {
	margin-left: 26px;
}
#wrap > header .main a {
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-feature-settings: "palt";
}


#wrap > header .main ul ul {
	position: absolute;
	display: block;
	margin: 0 -10px;
	padding: 20px 15px 15px;
	text-align: center;
	background: #fff;
}
#wrap > header .main ul ul li + li {
	margin-left: 0;
	margin-top: 12px;
}
#wrap > header .main ul ul a {
	font-size: 15px;
}


#wrap > header .sns {
	margin-right: 29px;
}
#wrap > header .sns li {
	width: 33px;
	height: 33px;
}
#wrap > header .sns li + li {
	margin-left: 25px;
}
#wrap > header .sns a {
	display: block;
	height: 32px;
}
#wrap > header .sns img {
	width: 100%;
	height: auto;
}


#wrap > header .main > ul > .area,
#wrap > header .main > ul > .size {
	display: none;
}


#wrap > header .main li a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -4px;
	z-index: 10;
	background: #000;
	
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
#wrap > header .main li a:hover::after {
	transform: scaleX(1);
}
body.syoukasen #wrap > header .syoukasen > a::after,
body.activity #wrap > header .activity > a::after,
body.price #wrap > header .price > a::after,
body.area #wrap > header .area > a::after,
body.size #wrap > header .size > a::after,
body.about #wrap > header .about > a::after,
body.recruit #wrap > header .recruit > a::after
{
	height: 2px;
	transform: scaleX(1);
}

#wrap > header .main ul ul a::after {
	bottom: -1px;
}


#wrap > header .main ul ul {
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-out;
}
#wrap > header .main li:hover a + ul {
	opacity: 1;
	visibility: visible;
}


@media screen and (max-width:1280px) {
	#wrap > header .main li + li {
		margin-left: 20px;
	}
	#wrap > header .main {
		margin-right: 26px;
	}
}

@media screen and (max-width:1200px) {
	#wrap > header .logo {
		width: 240px;
		left: 24px;
		top: 20px;
	}
	#wrap > header .contact {
		width: 160px;
	}
	
	#wrap > header .main {
		margin-right: 26px;
	}
	#wrap > header .main li + li {
		margin-left: 18px;
	}
	
	#wrap > header .sns {
		margin-right: 20px;
	}
	#wrap > header .sns li {
		width: 24px;
		height: 24px;
	}
	#wrap > header .sns li + li {
		margin-left: 16px;
	}
}

@media screen and (max-width:1080px) {
	#wrap > header .contact {
		width: 120px;
	}
	
	#wrap > header .main {
		margin-right: 20px;
	}
	#wrap > header .main li + li {
		margin-left: 16px;
	}
	#wrap > header .sns {
		margin-right: 16px;
	}
}






.content-inner {
	box-sizing: border-box;
	max-width: calc(1200px + 80px);
	margin: 0 auto;
	padding: 0 40px;
}
.content-inner.compact {
	max-width: calc(900px + 80px);
}



.footer-contact {
	padding: 54px 0 60px;
	background: #dc1414;
}
.footer-contact .content-inner {
	display: flex;
	align-items: center;
}
.footer-contact .text {
	box-sizing: border-box;
	width: 60%;
	color: #fff;
}
.footer-contact .image {
	box-sizing: border-box;
	width: 40%;
	padding: 0 90px;
}
.footer-contact .image img {
	width: 100%;
	height: auto;
}
.footer-contact .text h2 {
	font-size: 36px;
}
.footer-contact .text p {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.8;
}
.footer-contact .button {
	margin: 18px 0 0;
}
.footer-contact .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	color: #dc1414;
	border: 1px solid #fff;
	background: #fff;
}


footer {
	padding: 50px 0 58px;
	background: #d0d0d1;
}
footer .content-inner {
	position: relative;
}

footer nav {
	display: flex;
	font-size: 15px;
	line-height: 1.934;
}
footer nav > * + * {
	margin-left: 45px;
}

footer .sns {
	position: absolute;
	left: 40px;
	bottom: 28px;
	margin: 0;
}
footer .sns ul {
	display: flex;
}
footer .sns li {
	width: 33px;
}
footer .sns li + li {
	margin-left: 25px;
}
footer .sns a {
	display: block;
	height: 33px;
}
footer .sns img {
	width: 100%;
	height: auto;
}

footer .extra {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	margin: 25px 0 0;
}
footer .logo {
	width: 267px;
}
footer .logo img {
	width: 100%;
	height: auto;
}
footer .copyright {
	margin: 12px 0 0;
	font-size: 11px;
}


footer nav > ul a {
	position: relative;
}
footer nav > ul a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background: #000;
	
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
footer nav > ul a:hover::after {
	transform: scaleX(1);
}



@media screen and (max-width:1280px) {
	.footer-contact .text h2 {
		font-size: 32px;
	}
}




.content-header {
	position: relative;
	height: 350px;
}
.content-header .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.content-header .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content-header .header-inner {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.content-header .header-inner h1 {
	font-size: 40px;
	line-height: 1;
	color: #fff;
}




.wide-header {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 46px;
	color: #fff;
	background: #dc1414;
}
.wide-header h2 {
	font-size: 24px;
	font-weight: 400;
}



a.button-red {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	color: #fff;
	border: 1px solid #dc1414;
	background: #dc1414;
}


a.button-navy {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	color: #fff;
	border: 1px solid #192850;
	background: #192850;
}





input[type="text"],
input[type="email"],
textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 14px 20px;
	font-size: 20px;
	border: 1px solid #000;
	background: #fff;
	vertical-align: bottom;
}
select {
	box-sizing: border-box;
	appearance: none;
	padding: 14px 20px;
	font-size: 20px;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
	outline: 1px solid #000;
}





input[type="submit"] {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	padding: 0;
	font-size: 17px;
	color: #fff;
	border: 1px solid #dc1414;
	background: #dc1414;
	transition: all 300ms ease-out;
	cursor: pointer;
}
input[type="submit"]:hover {
	color: #dc1414;
	background: #fff;
}








/* ---------------------------------------------------------------------------------------------------- */
/* Not Found */

body.error .footer-contact {
	display: none;
}
#error-content {
	box-sizing: border-box;
	min-height: calc(100vh - 75px - 373px);
	padding: 100px 0;
}
#error-content h1 {
	font-size: 30px;
}
#error-content h2 {
	margin: 15px 0 0;
	font-size: 20px;
}
#error-content p {
	margin: 30px 0 0;
	font-size: 15px;
	line-height: 2;
}
#error-content .button {
	margin: 50px 0 0;
}






/* ---------------------------------------------------------------------------------------------------- */
/* KV */

#kv {
	margin: 75px 0 0;
}
#kv h1 {
	font-size: 75px;
	line-height: 1.267;
}
#kv .lead {
	margin: 18px 0 0;
	font-size: 26px;
	line-height: 1;
	white-space: nowrap;
}






#partner-slide {
	position: relative;
	width: 100%;
	margin: 68px 0 0;
	overflow: hidden;
}
#partner-slide .slide-inner {
	position: relative;
	min-height: calc(240px * 2 + 1px);
}
#partner-slide .image-list {
	display: flex;
}
#partner-slide .image-list + .image-list {
	margin-top: 1px;
	margin-left: -135px;
}
#partner-slide ul {
	display: flex;
	width: 100%;
}
#partner-slide li {
	position: relative;
	width: 240px;
	height: 240px;
	background: #ccc;
	border-radius: 120px;
	overflow: hidden;
}
#partner-slide li + li {
	margin-left: 30px;
}
#partner-slide .caption {
	box-sizing: border-box;
	max-width: calc(1200px + 120px + 40px);
	margin: 28px auto 0;
	padding: 0 40px 0 120px;
	text-align: right;
	font-size: 15px;
	line-height: 1;
}






#partner-slide .image-list:nth-child(1) {
	width: calc(270px * var(--pc-slide-length1) * 2 - 30px);
}
#partner-slide .image-list:nth-child(2) {
	width: calc(270px * var(--pc-slide-length2) * 2 - 30px);
}

#partner-slide .image-list:nth-child(1) li {
	animation: slide_loop1 calc(270s * var(--pc-slide-length1) / 60) infinite linear;
}
#partner-slide .image-list:nth-child(2) li {
	animation: slide_loop2 calc(270s * var(--pc-slide-length2) / 60) infinite linear;
}

@keyframes slide_loop1 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc((270px * var(--pc-slide-length1)) * -1));
	}
}
@keyframes slide_loop2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc((270px * var(--pc-slide-length2)) * -1));
	}
}




#partner-slide li img {
	width: 100%;
	height: auto;
}
/*
#partner-slide li img {
	display: none;
}

#partner-slide .image-list:nth-child(1) ul {
	counter-reset: order1 -1;
}
#partner-slide .image-list:nth-child(2) ul {
	counter-reset: order2 0;
}
#partner-slide .image-list:nth-child(1) li {
	counter-increment: order1 2;
}
#partner-slide .image-list:nth-child(2) li {
	counter-increment: order2 2;
}
#partner-slide li::before {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 50px;
	color: #fff;
}
#partner-slide .image-list:nth-child(1) li::before {
	content: counter(order1);
}
#partner-slide .image-list:nth-child(2) li::before {
	content: counter(order2);
}
*/










#top-intro {
	margin: 100px 0 0;
	background: #dc1414;
}
#top-intro .inner {
	display: flex;
	align-items: center;
}
#top-intro .image {
	width: 50%;
}
#top-intro .text {
	width: 50%;
	color: #fff;
}
#top-intro .image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	object-position: center top;
}

#top-intro .text-inner {
	box-sizing: border-box;
	position: relative;
	max-width: 600px;
	padding: 50px 20px 50px 60px;
}
#top-intro h2 {
	font-size: 40px;
	line-height: 1.5;
}
#top-intro p {
	margin: 14px 0 0;
	font-size: 18px;
	line-height: 1;
}
#top-intro .button {
	margin: 32px 0 0;
}
#top-intro .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	color: #dc1414;
	border: 1px solid #fff;
	background: #fff;
}


@media screen and (max-width:1280px) {
	#top-intro h2 {
		font-size: 32px;
	}
}
@media screen and (max-width:1280px) {
	#top-intro .text-inner {
		padding: 50px 20px 50px 40px;
	}
}








body.index .structure {
	margin-top: 65px;
}




#top-recruit {
	padding: 50px 0 0;
	text-align: center;
	color: #fff;
	background: #192850;
}
#top-recruit .logo img {
	width: 54px;
	height: auto;
}
#top-recruit h2 {
	margin: 20px 0 0;
	font-size: 36px;
	line-height: 1.5;
}
#top-recruit .button {
	margin: 30px 0 0;
}
#top-recruit .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	color: #fff;
	border: 1px solid #fff;
	background: #192850;
}
#top-recruit .caption {
	margin: 15px 0 0;
	font-size: 16px;
}
#top-recruit .gallery {
	display: flex;
	margin: 80px 0 0;
}
#top-recruit .gallery img {
	width: 25%;
	height: 328px;
	object-fit: cover;
}


@media screen and (max-width:1280px) {
	#top-recruit h2 {
		font-size: 32px;
	}
}






#top-activity {
	margin: 60px 0 0;
	padding: 60px 0;
	background: #f2f2f2;
}
#top-activity h2 {
	font-size: 30px;
	line-height: 1.5;
	text-align: center;
}

#top-activity .sns {
	margin: 28px 0 0;
}
#top-activity .sns ul {
	display: flex;
	justify-content: center;
}
#top-activity .sns li {
	width: 40px;
}
#top-activity .sns li + li {
	margin-left: 40px;
}
#top-activity .sns a {
	display: block;
	height: 40px;
}
#top-activity .sns img {
	width: 100%;
	height: auto;
}

#top-activity .activity-list {
	margin: 36px 0 0;
}

#top-activity .activity-list .button {
	display: flex;
	justify-content: center;
	margin: 45px 0 0;
}
#top-activity .activity-list .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}













/* ---------------------------------------------------------------------------------------------------- */
/* モジュール - 消火栓標識の仕組み */

.structure h2 {
	font-size: 30px;
	text-align: center;
}
.structure .inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	margin: 32px 0 0;
	border: 4px solid #dc1414;
}
.structure .inner > * {
	box-sizing: border-box;
	width: 50%;
}
.structure .text {
	padding: 60px 50px 60px 64px;
	color: #fff;
	background: #dc1414;
}
.structure .image {
	display: flex;
	align-items: center;
	padding: 60px 40px;
	text-align: center;
}
.structure .image img {
	max-width: 482px;
	width: 100%;
	height: auto;
}
.structure .text p {
	font-size: 22px;
	line-height: 1.8;
}
.structure .text p + p {
	margin-top: 15px;
}

.structure .button {
	margin: 40px 0 0;
}
.structure .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}


@media screen and (max-width:1280px) {
	.structure .text p {
		font-size: 18px;
	}
}
@media screen and (max-width:1080px) {
	.structure .text {
		padding: 50px 40px;
	}
}



/* ---------------------------------------------------------------------------------------------------- */
/* モジュール - 会社概要 */

.company .inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	padding: 65px 0;
}
.company .image {
	width: 50%;
}
.company .text {
	width: 50%;
}

.company .image img {
	width: 100%;
	height: auto;
}
.company .text h2 {
	font-size: 40px;
	line-height: 1.5;
}
.company .button {
	margin: 16px 0 0;
}
.company .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}
.company .sns {
	margin: 38px 0 0;
}
.company .sns ul {
	display: flex;
}
.company .sns li {
	width: 40px;
}
.company .sns li + li {
	margin-left: 45px;
}
.company .sns a {
	display: block;
	height: 40px;
}
.company .sns img {
	width: 100%;
	height: auto;
}


@media screen and (max-width:1280px) {
	.company .text h2 {
		font-size: 32px;
	}
}




/* ---------------------------------------------------------------------------------------------------- */
/* モジュール - 取り組み */

.activity-list ul {
	display: flex;
	flex-wrap: wrap;
}
.activity-list li {
	width: calc((100% - 36px * 3) / 4);
	margin-left: 36px;
}
.activity-list li:nth-child(4n + 1) {
	margin-left: 0;
}
.activity-list li:nth-child(n + 5) {
	margin-top: 32px;
}

.activity-list li .image {
	aspect-ratio: 544 / 340;
	background: #f7f7f7;
}
.activity-list li img {
	width: 100%;
	height: auto;
}
.activity-list li a {
	display: block;
}

.activity-list dl {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.6;
}
.activity-list dt {
	display: flex;
}
.activity-list dt .subtitle {
	position: relative;
	margin-left: 10px;
	padding-left: 11px;
}
.activity-list dt .subtitle::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 16px;
	left: 0;
	top: calc(50% - 8px);
	background: #000;
}
.activity-list dd {
}









/* ---------------------------------------------------------------------------------------------------- */
/* 消火栓標識とは */

#syoukasen-intro .gallery {
	display: flex;
}
#syoukasen-intro .gallery img {
	width: calc(100% / 3);
	height: 500px;
	object-fit: cover;
}
#syoukasen-intro h1 {
	margin: 65px 0 0;
	font-size: 70px;
	text-align: center;
	line-height: 1.285;
}
#syoukasen-intro .text {
	margin: 12px 0 0;
	text-align: center;
}
#syoukasen-intro .text p {
	font-size: 16px;
	line-height: 2.0625;
}
#syoukasen-intro .image {
	margin: 92px 0 0;
}
#syoukasen-intro .image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	object-position: center top;
}


@media screen and (min-width:1720px) {
	#syoukasen-intro .image img {
		height: 28vw;
	}
}





#feature {
	margin: 128px 0 0;
}
#feature .feature {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#feature .feature + .feature {
	margin-top: 65px;
}
#feature .feature:nth-child(2n) {
	flex-direction: row-reverse;
}
#feature .image {
	width: 50%;
}
#feature .text {
	box-sizing: border-box;
	width: 50%;
}
#feature .image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1200 / 760;
	object-fit: cover;
	object-position: center top;
}
#feature h2 {
	font-size: 40px;
	line-height: 1.5;
}
#feature p {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.8;
}
#feature .button {
	margin: 25px 0 0;
}
#feature .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}


#feature .feature:nth-child(2n + 1) .text {
	padding-left: 54px;
}
#feature .feature:nth-child(2n) .text {
	padding-right: 54px;
}


@media screen and (max-width:1280px) {
	#feature h2 {
		font-size: 32px;
	}
}








body.syoukasen .structure {
	margin-top: 100px;
}







#partner {
	margin: 100px 0 0;
}
#partner h2 {
	font-size: 45px;
	line-height: 1.445;
	text-align: center;
}
#partner .lead {
	margin: 14px 0 0;
}
#partner .lead p {
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

#partner #partner-slide {
	margin-top: 48px;
}
#partner #partner-slide .caption {
	margin-top: 32px;
	text-align: center;
}





#necessity {
	margin: 120px 0 0;
	padding: 100px 0 115px; 
	color: #fff;
	background: url(/syoukasen/img/necessity_bg.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#necessity h2 {
	font-size: 30px;
	text-align: center;
}
#necessity .list {
	margin: 58px 0 0;
}
#necessity .box {
	display: flex;
	align-items: center;
}
#necessity .box + .box {
	margin-top: 82px;
}
#necessity .box:nth-child(2n + 1) {
	flex-direction: row-reverse;
}
#necessity .image {
	width: 50%;
}
#necessity .text {
	box-sizing: border-box;
	width: 50%;
}
#necessity .image img {
	width: 100%;
	height: auto;
}
#necessity h3 {
	font-size: 40px;
	line-height: 1.5;
}
#necessity p {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.8;
}


#necessity .box:nth-child(2n + 1) .text {
	padding-left: 54px;
}
#necessity .box:nth-child(2n) .text {
	padding-right: 54px;
}


#necessity .caption {
	margin: 75px 0 0;
	font-size: 36px;
	line-height: 1.556;
	text-align: center;
}


@media screen and (max-width:1280px) {
	#necessity h3 {
		font-size: 32px;
	}
	#necessity .caption {
		font-size: 28px;
	}
}









/* ---------------------------------------------------------------------------------------------------- */
/* 会社概要 */

#about-intro {
	margin: 125px 0 0;
}
#about-intro h1 {
	width: 750px;
	margin: 0 auto;
}
#about-intro h1 img {
	width: 100%;
	height: auto;
}


#about-company {
	margin: 115px 0 0;
}
#about-company h2 {
	font-size: 30px;
	text-align: center;
}
#about-company .access {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	margin: 40px 0 0;
	background: #dc1414;
}
#about-company .text {
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	width: 50%;
	padding-left: 40px;
	font-size: 20px;
	line-height: 1.9;
	color: #fff;
}
#about-company .text a {
	color: #fff;
}
#about-company .map {
	position: relative;
	width: 50%;
	height: 310px;
}
#about-company .text address {
	box-sizing: border-box;
	width: 100%;
	max-width: 600px;
	padding-right: 40px;
}
#about-company .map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

#about-company .content-inner {
	margin-top: 82px;
}

@media screen and (max-width:1280px) {
	#about-company .text {
		font-size: 18px;
	}
}
@media screen and (max-width:1120px) {
	#about-company .text {
		font-size: 16px;
	}
	#about-company .text address {
		padding-right: 20px;
	}
}




#about-company .company-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: [Y1] 9.8rem [Y2] 9.8rem [Y3] 9.8rem [Y4] 8rem [Y5];
	grid-auto-flow: column;
	grid-gap: 0;
	padding-bottom: 1.4rem;
}
#about-company .company-list dl {
	box-sizing: border-box;
	padding: 0 10px 0 20px;
	font-size: 14px;
	line-height: 1.6;
	border-left: 1px solid #000;
}
#about-company .company-list dl:nth-child(4n + 1) {
	margin-top: 0;
}
#about-company .company-list dl.long + dl {
	height: 9.8rem;
	padding-top: 1.4rem;
}
#about-company .company-list .button {
	margin-top: 38px;
}
#about-company .company-list .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}

/*
#about-company .company-list dl:nth-child(4) {
	margin-top: -1.4em;
	margin-bottom: 1em;
}
*/


@media screen and (max-width:1280px) {
	#about-company .company-list dl {
		font-size: 13px;
	}
}
@media screen and (max-width:1080px) {
	#about-company .company-list {
		grid-template-rows: repeat(4, auto);
	}
	#about-company .company-list dl.long + dl {
		height: auto;
		padding-top: 0;
	}
	#about-company .company-list dl + dl {
		padding-top: 1.4rem !important;
	}
}










#message {
	margin: 100px 0 0;
	text-align: center;
}
#message .image {
}
#message .image img {
	width: 100%;
	height: 454px;
	object-fit: cover;
	object-position: center 10px;
}
#message h2 {
	margin: 65px 0 0;
	font-size: 20px;
}
#message .name {
	margin: 16px 0 0;
	font-size: 30px;
}
#message .text {
	margin: 30px 0 0;
}
#message .text p {
	font-size: 16px;
	line-height: 2;
}

#message .box {
	margin: 95px 90px 0;
}
#message .box .subtitle {
	position: relative;
}
#message .box .subtitle::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	background: #dc1414;
}
#message .box .subtitle h3 {
	position: relative;
	width: 160px;
	z-index: 10;
	margin: 0 auto;
	font-size: 20px;
	background: #fff;
}
#message .box h4 {
	margin: 25px 0 0;
	font-size: 45px;
}
#message .box p {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 1.85;
}

#message .box.value h4 {
	margin-top: 40px;
	font-size: 66px;
}
#message .box.value .content {
	margin: 20px 0 0;
}
#message .box.value p {
	display: inline-block;
	text-align: left;
}

#message .box.guideline .content {
	margin: 35px 0 0;
}
#message .box.guideline p {
	display: inline-block;
	text-align: left;
}


@media screen and (max-width:1080px) {
	#message .text p {
	}
}






#symbol {
	margin: 125px 0 0;
	padding: 0 0 92px;
	text-align: center;
	color: #fff;
	background: #192850;
}
#symbol .gallery {
	display: flex;
}
#symbol .gallery img {
	width: calc(100% / 3);
	height: 500px;
	object-fit: cover;
}
#symbol .logo {
	width: 750px;
	margin: 105px auto 0;
}
#symbol .logo img {
	width: 100%;
	height: auto;
}
#symbol .text {
	margin: 60px 0 0;
	font-size: 16px;
	line-height: 2;
}








#for-partner {
	margin: 100px 0;
}
#for-partner h2 {
	font-size: 30px;
	text-align: center;
}
#for-partner .text {
	max-width: 900px;
	margin: 25px auto 0;
}
#for-partner .text p {
	font-size: 16px;
	line-height: 2;
}
#for-partner .image {
	max-width: 900px;
	margin: 25px auto 0;
}
#for-partner .image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 896 / 474;
	object-fit: cover;
}
#for-partner .caption {
	max-width: 900px;
	margin: 22px auto 0;
	font-size: 20px;
	text-align: center;
}







/* ---------------------------------------------------------------------------------------------------- */
/* 取り組み */

#activity {
	padding: 85px 0 110px;
}
#activity h2 {
	font-size: 30px;
	text-align: center;
}

#activity .sns {
	margin: 50px 0 0;
}
#activity .sns ul {
	display: flex;
	justify-content: center;
}
#activity .sns li {
	width: 40px;
}
#activity .sns li + li {
	margin-left: 40px;
}
#activity .sns a {
	display: block;
	height: 40px;
}
#activity .sns img {
	width: 100%;
	height: auto;
}

#activity .activity-list {
	margin: 50px 0 0;
}








/* ---------------------------------------------------------------------------------------------------- */
/* 料金 */

#price-intro .content-inner {
	padding-top: 85px;
	padding-bottom: 100px;
}

#price-intro .column {
	display: flex;
	justify-content: space-between;
}
#price-intro .column + .column {
	margin-top: 80px;
}

#price-intro .column h3 {
	width: 170px;
	font-size: 24px;
}
#price-intro .column .box {
	box-sizing: border-box;
	width: calc(100% - 170px);
	padding-left: 25px;
	border-left: 1px solid #000;
}

#price-intro .column p {
	font-size: 15px;
	line-height: 1.8;
}
#price-intro .column ol {
	counter-reset: order;
}
#price-intro .column ol li {
	position: relative;
	counter-increment: order;
	padding-left: 2.2em;
	text-indent: -2.2em;
	font-size: 15px;
	line-height: 1.8;
	font-feature-settings: "palt";
}
#price-intro .column ol li::before {
	display: inline-block;
	content: counter(order);
	width: 2.2em;
	text-indent: 0;
}
#price-intro .column ol li + li {
	margin-top: 4px;
}

#price-intro .button {
	margin: 25px 0 0;
}




#price-flow {
	background: #f2f2f2
}
#price-flow .content-inner {
	padding-top: 90px;
	padding-bottom: 90px;
}
#price-flow .content-inner .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 55px;
}
#price-flow .content-inner .box + .box {
	margin-top: 38px;
}

#price-flow .content-inner .image {
	width: 180px;
	height: 180px;
	border-radius: 90px;
	overflow: hidden;
}
#price-flow .content-inner .image img {
	width: 100%;
	height: auto;
}

#price-flow .content-inner .box dl {
	width: calc(100% - 180px - 50px);
	font-feature-settings: "palt";
	letter-spacing: 0.04em;
}
#price-flow .content-inner .box dt {
	font-size: 24px;
}
#price-flow .content-inner .box dd {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.6875;
}
#price-flow .content-inner .box .button {
	margin-top: 15px;
}

#price-flow .note {
	margin: 45px 0 0;
	font-size: 16px;
	line-height: 1.6875;
	text-align: center;
}






/* ---------------------------------------------------------------------------------------------------- */
/* 採用情報 */

#recruit-intro {
	text-align: center;
	color: #fff;
	background: #192850;
}

#recruit-intro .gallery {
	display: flex;
}
#recruit-intro .gallery img {
	width: 25%;
	height: 350px;
	object-fit: cover;
}

#recruit-intro .content-inner {
	padding: 50px 0 65px;
}
#recruit-intro .logo img {
	width: 54px;
	height: auto;
}
#recruit-intro h2 {
	margin: 20px 0 0;
	font-size: 36px;
	line-height: 1.5;
}
#recruit-intro .caption {
	margin: 20px 0 0;
	font-size: 16px;
}



#recruit-list {
	padding: 100px 0 120px;
}
#recruit-list h2 {
	font-size: 30px;
	text-align: center;
}
#recruit-list .lead {
	margin: 35px 0 140px;
	font-size: 18px;
	line-height: 1.945;
}

#recruit-list .recruit-entry {
}
#recruit-list .recruit-entry + .recruit-entry {
	margin-top: 120px;
}
#recruit-list .recruit-entry .column + .column {
	margin-top: 30px;
}

#recruit-list .recruit-entry h3 {
	margin: 0 0 30px;
	padding-bottom: 10px;
	font-size: 24px;
	border-bottom: 1px solid #000;
}
#recruit-list .recruit-entry dl {
	display: flex;
	justify-content: space-between;
}
#recruit-list .recruit-entry dt {
	width: 170px;
	font-size: 20px;
	font-feature-settings: "palt";
}
#recruit-list .recruit-entry dd {
	box-sizing: border-box;
	width: calc(100% - 170px);
	padding-left: 25px;
	font-size: 15px;
	line-height: 1.8;
	border-left: 1px solid #000;
	font-feature-settings: "palt";
}








/* ---------------------------------------------------------------------------------------------------- */
/* 管轄エリア */

#area-intro {
	margin: 50px 0 0;
}
#area-intro p {
	font-size: 18px;
	line-height: 1.9;
}


#area-list {
	margin: 120px 0 80px;
}
#area-list .column {
	position: relative;
}
#area-list .column:nth-of-type(n + 3) {
	margin-top: 80px;
}

#area-list .box {
	display: flex;
	justify-content: space-between;
}
#area-list .box h3 {
	width: 170px;
	font-size: 22px;
}
#area-list .box:has(.list.small) h3 {
	font-size: 20px;
}

#area-list .box .text {
	width: calc(100% - 170px);
}


#area-list .box .text .large ul {
	font-size: 22px;
	line-height: 1.7;
}
#area-list .box .text .small ul {
	font-size: 15px;
	line-height: 1.5;
}
#area-list .box .list,
#area-list .box .contact {
	box-sizing: border-box;
	position: relative;
	padding-left: 25px;
}
#area-list .box .contact {
	margin-top: 16px;
}
#area-list .box .list.large {
	padding-left: 20px;
}

#area-list .box .list::after,
#area-list .box .contact::after {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 6px);
	left: 0;
	top: 3px;
	background: #000;
}

#area-list .box .list.large {
	top: -2px;
}
#area-list .box .list.large::after {
	height: calc(100% - 12px);
	top: 6px;
}

#area-list .box .contact dl {
	display: flex;
	font-size: 15px;
	line-height: 1.5;
	font-feature-settings: "palt";
	white-space: nowrap;
}
#area-list .box .contact dd::before {
	content: "/";
	margin: 0 0.75em;
}



#area-list .map {
	position: relative;
	z-index: 1;
}
#area-list .map img {
	width: 100%;
	height: auto;
}


#area-list .box .text .large ul {
	display: grid;
	grid-template-columns: repeat(4, 4em);
}

#area-list .box .text .single ul {
	display: flex;
}
#area-list .box .text .single li + li {
	margin-left: 1em;
}



#area-list .column.all {
	margin-bottom: 40px;
	padding-bottom: 100px;
	border-bottom: 1px solid #000;
}
#area-list .column.all .box {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
#area-list .column.all .map {
	width: 670px;
	margin: 0 auto -12px;
	left: 8px;
	top: -12px;
}
#area-list .column.all li:nth-child(3n) {
	grid-column: 3 / span 4;
}
#area-list .column.all li:nth-child(9) {
	grid-column: 3 / 4;
}



#area-list .column.tokyo .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 6em 6em 6em 4em;
}
#area-list .column.tokyo .map {
	width: 680px;
	margin: 44px auto 0;
	left: 5px;
}


#area-list .column.saitama .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em 6em 5em 4em;
}
#area-list .column.saitama .map {
	width: 634px;
	margin: 56px auto 0;
	left: 9px;
}


#area-list .column.chiba .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em 5em 5em 5em;
}
#area-list .column.chiba .map {
	width: 462px;
	margin: 37px auto 0;
	left: 54px;
}


#area-list .column.kanagawa .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em 5em 5em;
}
#area-list .column.kanagawa .map {
	width: 494px;
	margin: 36px auto 0;
	left: 7px;
}


#area-list .column.tochigi .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 6em 5em;
}
#area-list .column.tochigi .map {
	width: 389px;
	margin: 41px auto 0;
	left: 0;
}


#area-list .column.gunma .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em;
}
#area-list .column.gunma .map {
	width: 492px;
	margin: 32px auto 0;
	left: 8px;
}


#area-list .column.shizuoka .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em 5em 5em 5em;
}
#area-list .column.shizuoka .map {
	width: 593px;
	margin: 36px auto 0;
	left: 8px;
}


#area-list .column.aichi .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em 5em 5em 5em 5em;
}
#area-list .column.aichi .map {
	width: 606px;
	margin: 24px auto 0;
	left: 14px;
}


#area-list .column.miyagi .map {
	width: 517px;
	margin: 40px auto 0;
	left: -18px;
}


#area-list .column.yamagata .map {
	width: 430px;
	margin: 40px auto 0;
	left: -37px;
}








/* ---------------------------------------------------------------------------------------------------- */
/* 仕様・サイズ */

body.size .content-header .bg img {
	object-position: 50% 10%;
}

#size-intro {
	margin: 50px 0 0;
}
#size-intro p {
	font-size: 18px;
	line-height: 1.9;
}



#size-figure {
	margin: 95px 0 0;
}
#size-figure h2 {
	font-size: 30px;
	text-align: center;
}
#size-figure .figure {
	width: 560px;
	margin: 45px auto 0;
}
#size-figure .figure img {
	position: relative;
	width: 100%;
	height: auto;
	left: 5px;
}



#size-case {
	margin: 120px 0 100px;
}
#size-case h2 {
	font-size: 30px;
	text-align: center;
}
#size-case p {
	margin: 25px 0 0;
	font-size: 18px;
	text-align: center;
}

#size-case .list {
	margin: 80px 0 0;
	padding: 0 40px;
}
#size-case .list ul {
	display: flex;
	flex-wrap: wrap;
}
#size-case .list li {
	width: calc((100% - 60px) / 4);
	margin-left: 20px;
}
#size-case .list li:nth-child(4n + 1) {
	margin-left: 0;
}
#size-case .list li:nth-child(n + 5) {
	margin-top: 32px;
}
#size-case .list li img {
	width: 100%;
	height: auto;
}






/* ---------------------------------------------------------------------------------------------------- */
/* お問い合わせ */

.contact-header {
	position: relative;
	height: 350px;
	background: #dc1414;
}
.contact-header .header-inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.contact-header .header-inner h1 {
	font-size: 40px;
	line-height: 1;
	color: #fff;
}
.contact-header .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	text-align: center;
}
.contact-header .bg img {
	width: auto;
	height: 100%;
}


#contact-intro {
	margin: 50px 0 0;
}
#contact-intro p {
	font-size: 18px;
	line-height: 1.95;
}
#contact-intro .notice {
	color: #dc1414;
}

#contact-intro .button {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 35px 0 0;
}



.contact-form {
	margin: 110px 0 120px;
}
.contact-form h2 {
	font-size: 30px;
	text-align: center;
}

.contact-form .required {
	position: relative;
	font-size: 13px;
	color: #dc1414;
}

.contact-form .form-note {
	margin: 8px 0 0;
	font-size: 18px;
	text-align: center;
}
.contact-form .form-note .required {
	top: -1px;
	margin-right: 1px;
}





.contact-form form {
	margin: 30px 0 0;
}
.contact-form dl {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.contact-form dt {
	width: 220px;
	padding-top: 8px;
	font-size: 20px;
}
.contact-form dd {
	width: calc(100% - 220px);
}

.contact-form dl + dl {
	margin-top: 28px;
}
.contact-form dt .required {
	top: -2px;
	margin-left: 2px;
}
.contact-form dd .note {
	margin: 10px 0 0;
	font-size: 20px;
}

.contact-form dd .zip + .pref,
.contact-form dd .city {
	margin-top: 10px;
}
.contact-form dd .zip {
	position: relative;
	display: flex;
	align-items: center;
}
.contact-form dd .zip input {
	width: 375px;
	padding-left: 44px;
}
.contact-form dd .zip .example {
	margin-left: 24px;
	font-size: 20px;
}
.contact-form dd .zip .icon {
	position: absolute;
	left: 16px;
	top: 14px;
	font-size: 20px;
}

.contact-form .publication .city {
	display: flex;
	align-items: center;
}
.contact-form .publication .city input {
	width: 375px;
}
.contact-form .publication .city .example {
	margin-left: 24px;
	font-size: 20px;
}

.contact-form .message textarea {
	height: 230px;
}


.contact-form .func {
	display: flex;
	justify-content: center;
	margin: 45px 0 0;
}
.contact-form .func * + input {
	margin-left: 24px;
}



body:has(dd .error) #contact-intro,
body:has(.mw_wp_form_confirm) #contact-intro,
body:has(.mw_wp_form_confirm) .contact-form .form-note,
body:has(.mw_wp_form_confirm) .contact-form dt .required,
body:has(.mw_wp_form_confirm) .contact-form dd .note,
body:has(.mw_wp_form_confirm) .contact-form dd .example,
body:has(.mw_wp_form_confirm) .contact-form dd .icon,

body:has(.mw_wp_form_complete) #contact-intro,
body:has(.mw_wp_form_complete) .contact-form .form-note
{
	display: none;
}
body:has(.mw_wp_form_confirm) .contact-form dt {
	padding-top: 0;
}
body:has(.mw_wp_form_confirm) .contact-form dd {
	padding-top: 5px;
}


.contact-form .mw_wp_form_complete {
	min-height: 200px;
	margin: 50px 0 0;
}
.contact-form .mw_wp_form_complete p {
	font-size: 18px;
	line-height: 1.95;
}



.contact-form dd .error {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 2.6rem;
	padding: 5px 8px 4px;
	font-size: 14px;
	line-height: 1;
	color: #fff !important;
	background: #dc1414;
}
.contact-form dl.address:has(.pref .error):has(.city .error) .city .error {
	display: none;
}

.contact-form .pref.hidden {
	display: none;
}
.contact-form .pref.hidden + .city {
	margin-top: 0;
}





body.contact .footer-contact {
	display: none;
}

#contact-recruit {
	padding: 54px 0 60px;
	background: #192850;
}
#contact-recruit .content-inner {
	display: flex;
	align-items: center;
}
#contact-recruit .text {
	box-sizing: border-box;
	width: 60%;
	color: #fff;
}
#contact-recruit .image {
	box-sizing: border-box;
	width: 40%;
	padding: 0 90px;
	text-align: right;
}
#contact-recruit .image img {
	width: 100%;
	height: auto;
	max-width: 196px;
}
#contact-recruit .text h2 {
	font-size: 36px;
}
#contact-recruit .text p {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.8;
}
#contact-recruit .button {
	margin: 25px 0 0;
}
#contact-recruit .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 270px;
	height: 40px;
	font-size: 17px;
	color: #fff;
	border: 1px solid #dc1414;
	background: #dc1414;
}





#contact-faq {
	padding: 110px 0;
	background: #f2f2f2;
}
#contact-faq h2 {
	font-size: 30px;
	text-align: center;
}







/* ---------------------------------------------------------------------------------------------------- */
/* 採用のご応募 */

body.recruit-form .contact-header {
	background: #192850;
}

.contact-form .entry-note {
	margin: 60px 0 0;
}
.contact-form .entry-note p {
	font-size: 18px;
	line-height: 1.95;
}

.contact-form .resume textarea,
.contact-form .pr textarea {
	height: 230px;
}






/* ---------------------------------------------------------------------------------------------------- */
/* Hover */

#wrap > header .contact a {
	transition: all 300ms ease-out;
}
#wrap > header .contact a:hover {
	opacity: 0.75;
}


#top-intro .button a,
.footer-contact .button a,
#contact-recruit .button a
{
	transition: all 300ms ease-out;
}
#top-intro .button a:hover,
.footer-contact .button a:hover
{
	color: #fff;
	background: #dc1414;
}


#contact-recruit .button a:hover
{
	color: #dc1414;
	background: #fff;
}



.structure .button a,
.company .button a,
#feature .button a,
#about-company .company-list .button a,
#top-activity .activity-list .button a
{
	transition: all 300ms ease-out;
}
.structure .button a:hover,
.company .button a:hover,
#feature .button a:hover,
#about-company .company-list .button a:hover,
#top-activity .activity-list .button a:hover
{
	color: #fff;
	background: #000;
}

a.button-red {
	transition: all 300ms ease-out;
}
a.button-red:hover {
	color: #dc1414;
	background: #fff;
}

a.button-navy {
	transition: all 300ms ease-out;
}
a.button-navy:hover {
	color: #192850;
	background: #fff;
}


#top-recruit .button a
{
	transition: all 300ms ease-out;
}
#top-recruit .button a:hover
{
	color: #192850;
	background: #fff;
}

.activity-list a img {
	transition: all 300ms ease-out;
}
.activity-list a:hover img {
	opacity: 0.75;
}
.activity-list a:hover .title {
	text-decoration: underline;
}








/* ---------------------------------------------------------------------------------------------------- */
/* Opening */

#kv h1 {
	opacity: 0;
	transition: all 1000ms ease-out;
}
#kv .lead {
	opacity: 0;
	transition: all 1000ms ease-out 800ms;
}
body.index #partner-slide {
	opacity: 0;
	transition: all 1000ms ease-out 1800ms;
}

body.start #kv h1,
body.start #kv .lead,
body.start.index #partner-slide {
	opacity: 1;
}




























































































































