@charset "utf-8";

.pc {
	display: none !important;
}

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



@media screen and (max-height:620px) {
	#side {
		padding-bottom: 10px;
	}
	#side .logo {
		width: 24px;
	}
	#side .copyright {
		font-size: 9px;
	}
}
@media screen and (max-height:560px) {
	#side .copyright {
		padding-top: 15px;
		font-size: 9px;
		line-height: 1.3;
	}
}






#wrap {
	padding-top: 50px;
}


#menu-button {
	position: fixed;
	width: 50px;
	height: 50px;
	right: 0;
	top: 0;
	z-index: 1010;
}
#menu-button button {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border: none;
	background: #f2f2f2;
}
#menu-button button i {
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	left: calc(50% - 10px);
	top: calc(50% - 1px);
	background: #000;
	transition: all 200ms ease-out;
}
#menu-button button i:nth-child(1) {
	margin-top: -6px;
}
#menu-button button i:nth-child(3) {
	margin-top: 6px;
}


body.opened-menu #menu-button i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
body.opened-menu #menu-button i:nth-child(2) {
	transform: scaleX(0);
}
body.opened-menu #menu-button i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}



#wrap > header {
	position: fixed;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 50px;
	background: #fff;
}
#wrap > header .logo {
	position: absolute;
	width: 180px;
	height: 26px;
	left: 14px;
	top: 12px;
}
#wrap > header .logo img {
	width: 100%;
	height: auto;
}
#wrap > header .contact {
	position: relative;
	width: 50px;
	height: 50px;
	margin-right: 50px;
	z-index: 1050;
}
#wrap > header .contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
	background: #dc1414 url(../img/icon_contact.png) 50% 50% no-repeat;
	background-size: 34px auto;
	font-size: 0;
}

#wrap > header nav {
	position: fixed;
	width: 190px;
	max-height: calc(100dvh - 50px);
	right: 0;
	top: 50px;
	z-index: 1050;
	background: #f2f2f2;
	overflow: auto;
	
	transform: translateX(101%);
	transition: all 400ms ease-out;
}

body.opened-menu #wrap > header nav {
	transform: translateX(0px);
}



#wrap > header .main {
}
#wrap > header .main ul {
	padding: 28px 0 40px;
}
#wrap > header .main li + li {
	margin-top: 18px;
}
#wrap > header .main a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	font-size: 18px;
	line-height: 1;
	font-feature-settings: "palt";
}


#wrap > header .sns {
	margin-right: 14px;
}
#wrap > header .sns ul {
	display: flex;
}
#wrap > header .sns li {
	width: 22px;
	height: 22px;
	font-size: 10px;
	line-height: 1;
}
#wrap > header .sns li + li {
	margin-left: 12px;
}
#wrap > header .sns a {
	display: block;
	height: 24px;
}
#wrap > header .sns img {
	width: 100%;
	height: auto;
}




@media screen and (max-width:374px) {
	#wrap > header .sns {
		display: none;
	}
}






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




.footer-contact {
	padding: 65px 22px 85px;
	background: #dc1414;
}
.footer-contact .content-inner {
}
.footer-contact .text {
	box-sizing: border-box;
	margin: 20px 0 0;
	color: #fff;
}
.footer-contact .image {
	box-sizing: border-box;
	text-align: center;
}
.footer-contact .image img {
	width: 100%;
	max-width: 196px;
	height: auto;
}
.footer-contact .text h2 {
	font-size: 24px;
	line-height: 1.667;
	text-align: center;
}
.footer-contact .text p {
	margin: 20px 0 0;
	font-size: 13px;
	line-height: 1.65;
}
.footer-contact .button {
	margin: 35px 0 0;
}
.footer-contact .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	color: #dc1414;
	border: 1px solid #fff;
	background: #fff;
}


footer {
	padding: 46px 26px 32px;
	background: #d0d0d1;
	font-feature-settings: "palt";
}
footer nav {
	font-size: 13px;
	line-height: 1.924;
}
footer .sns {
	margin: 15px 0 0;
}
footer .sns ul {
	display: flex;
}
footer .sns li {
	width: 32px;
}
footer .sns li + li {
	margin-left: 21px;
}
footer .sns a {
	display: block;
	height: 32px;
}
footer .sns img {
	width: 100%;
	height: auto;
}

footer nav address {
	padding-top: 45px;
}

footer .extra {
	margin: 40px 0 0;
}
footer .extra .logo {
	display: none;
}
footer .extra .copyright {
	font-size: 10px;
	line-height: 1.8;
}






.content-header {
	position: relative;
	height: 90vw;
	overflow: hidden;
}
.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: 36px;
	line-height: 1.334;
	text-align: center;
	color: #fff;
}




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




a.button-red {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	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: 240px;
	height: 40px;
	font-size: 17px;
	color: #fff;
	border: 1px solid #192850;
	background: #192850;
}








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

body.error .footer-contact {
	display: none;
}
#error-content {
	box-sizing: border-box;
	padding: 50px 22px 80px;
}
#error-content h1 {
	font-size: 24px;
}
#error-content h2 {
	margin: 10px 0 0;
	font-size: 18px;
}
#error-content p {
	margin: 25px 0 0;
	font-size: 14px;
	line-height: 2;
}
#error-content .button {
	display: flex;
	justify-content: center;
	margin: 50px 0 0;
}





input[type="text"],
input[type="email"],
textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	border: 1px solid #000;
	background: #fff;
	vertical-align: bottom;
}
select {
	box-sizing: border-box;
	appearance: none;
	padding: 12px 16px;
	font-size: 16px;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	
	min-width: 150px;
}
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;
}








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

#kv {
	margin: 70px 0 0;
}
#kv h1 {
	margin: 0 17px;
	font-size: 30px;
	line-height: 1.434;
}
#kv .lead {
	margin: 5px 20px 0;
	font-size: 16px;
	line-height: 1.625;
}






#partner-slide {
	position: relative;
	width: 100%;
	margin: 70px 0 0;
	overflow: hidden;
}
#partner-slide .slide-inner {
	position: relative;
	min-height: calc(166px * 3 + 2px);
}
#partner-slide .image-list {
	display: flex;
}
#partner-slide .image-list + .image-list {
	margin-top: 1px;
}
#partner-slide .image-list:nth-child(4) {
	margin-left: -93px;
}
#partner-slide ul {
	display: flex;
	width: 100%;
}
#partner-slide ul + ul {
	margin-left: 20px;
}
#partner-slide li {
	position: relative;
	width: 166px;
	height: 166px;
	background: #ccc;
	border-radius: 83px;
	overflow: hidden;
}
#partner-slide li + li {
	margin-left: 20px;
}
#partner-slide .caption {
	box-sizing: border-box;
	margin: 22px 22px 0;
	font-size: 12px;
	line-height: 1.583;
}







#partner-slide .image-list:nth-child(3) {
	width: calc(186px * var(--sp-slide-length1) * 2 - 20px);
}
#partner-slide .image-list:nth-child(4) {
	width: calc(186px * var(--sp-slide-length2) * 2 - 20px);
}
#partner-slide .image-list:nth-child(5) {
	width: calc(186px * var(--sp-slide-length3) * 2 - 20px);
}

#partner-slide .image-list:nth-child(3) li {
	animation: slide_loop1 calc(186s * var(--sp-slide-length1) / 40) infinite linear;
}
#partner-slide .image-list:nth-child(4) li {
	animation: slide_loop2 calc(186s * var(--sp-slide-length2) / 40) infinite linear;
}
#partner-slide .image-list:nth-child(5) li {
	animation: slide_loop3 calc(186s * var(--sp-slide-length3) / 40) infinite linear;
}

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





#partner-slide li img {
	width: 100%;
	height: auto
}

/*
#partner-slide li img {
	display: none;
}

#partner-slide .image-list:nth-child(3) ul {
	counter-reset: order1 -2;
}
#partner-slide .image-list:nth-child(4) ul {
	counter-reset: order2 -1;
}
#partner-slide .image-list:nth-child(5) ul {
	counter-reset: order3 0;
}
#partner-slide .image-list:nth-child(3) li {
	counter-increment: order1 3;
}
#partner-slide .image-list:nth-child(4) li {
	counter-increment: order2 3;
}
#partner-slide .image-list:nth-child(5) li {
	counter-increment: order3 3;
}
#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(3) li::before {
	content: counter(order1);
}
#partner-slide .image-list:nth-child(4) li::before {
	content: counter(order2);
}
#partner-slide .image-list:nth-child(5) li::before {
	content: counter(order3);
}
*/













#top-intro {
	margin: 62px 0 0;
	background: #dc1414;
}
#top-intro .inner {
}
#top-intro .image {
}
#top-intro .text {
	color: #fff;
}
#top-intro .image img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 362;
	object-fit: cover;
	object-position: 60% 0%;
}

#top-intro .text-inner {
	box-sizing: border-box;
	position: relative;
	padding: 64px 22px 76px;
}
#top-intro h2 {
	font-size: 24px;
	line-height: 1.667;
}
#top-intro p {
	margin: 6px 0 0;
	font-size: 15px;
	line-height: 1,4;
}
#top-intro .button {
	margin: 22px 0 0;
}
#top-intro .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	color: #dc1414;
	border: 1px solid #fff;
	background: #fff;
}










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


body.index .company {
	margin-top: 70px;
}




#top-recruit {
	padding: 65px 0 0;
	text-align: center;
	color: #fff;
	background: #192850;
}
#top-recruit .logo img {
	width: 44px;
	height: auto;
}
#top-recruit h2 {
	margin: 24px 22px 0;
	font-size: 24px;
	line-height: 1.583;
}
#top-recruit .button {
	margin: 30px 0 0;
}
#top-recruit .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	color: #fff;
	border: 1px solid #fff;
	background: #192850;
}
#top-recruit .caption {
	margin: 15px 22px 0;
	font-size: 13px;
	line-height: 1.7;
	text-align: left;
}
#top-recruit .gallery {
	display: flex;
	margin: 55px 0 0;
}
#top-recruit .gallery img {
	width: 50%;
	height: auto;
	aspect-ratio: 170 / 300;
	object-fit: cover;
}
#top-recruit .gallery img:nth-child(n + 3) {
	display: none;
}





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

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

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

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











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

.structure h2 {
	font-size: 23px;
	text-align: center;
}
.structure .inner {
	margin: 20px 12px 0;
	border: 3px solid #dc1414;
}
.structure .inner > * {
	box-sizing: border-box;
}
.structure .text {
	padding: 50px 28px;
	color: #fff;
	background: #dc1414;
}
.structure .image {
	display: flex;
	align-items: center;
	padding: 40px 22px;
	text-align: center;
}
.structure .image img {
	max-width: 480px;
	width: 100%;
	height: auto;
}
.structure .text p {
	font-size: 18px;
	line-height: 1.6;
}
.structure .text p + p {
	margin-top: 12px;
}

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







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

.activity-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 12px;
}
.activity-list li {
	width: calc((100% - 8px) / 2);
	margin-left: 8px;
}
.activity-list li:nth-child(2n + 1) {
	margin-left: 0;
}
.activity-list li:nth-child(n + 3) {
	margin-top: 20px;
}

.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: 6px 0 0;
	font-size: 13px;
	line-height: 1.6;
}
.activity-list dt {
	display: flex;
}
.activity-list dt .subtitle {
	position: relative;
	margin-left: 7px;
	padding-left: 8px;
}
.activity-list dt .subtitle::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 14px;
	left: 0;
	top: calc(50% - 7px);
	background: #000;
}
.activity-list dd {
}











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

.company .inner {
}
.company .image {
}
.company .text {
	padding: 36px 22px 80px;
}

.company .image img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 213;
	object-fit: cover;
}
.company .text h2 {
	font-size: 24px;
	line-height: 1.667;
	text-align: center;
}
.company .button {
	margin: 22px 0 0;
}
.company .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}
.company .sns {
	margin: 38px 0 0;
}
.company .sns ul {
	display: flex;
	justify-content: center;
}
.company .sns li {
	width: 32px;
}
.company .sns li + li {
	margin-left: 32px;
}
.company .sns a {
	display: block;
	height: 32px;
}
.company .sns img {
	width: 100%;
	height: auto;
}











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

#syoukasen-intro .gallery {
}
#syoukasen-intro .gallery img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 432;
	object-fit: cover;
}
#syoukasen-intro .gallery img:nth-child(1),
#syoukasen-intro .gallery img:nth-child(3) {
	display: none;
}

#syoukasen-intro h1 {
	margin: 60px 17px 0;
	font-size: 30px;
	line-height: 1.433;
}
#syoukasen-intro .text {
	margin: 28px 19px 0;
}
#syoukasen-intro .text p {
	font-size: 15px;
	line-height: 1.933;
}
#syoukasen-intro .image {
	margin: 84px 0 0;
}
#syoukasen-intro .image img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 362;
	object-fit: cover;
	object-position: 60% 0%;
}



#feature {
	margin: 75px 0 0;
}
#feature .feature {
	display: flex;
	flex-direction: column-reverse;
}
#feature .feature + .feature {
	margin-top: 48px;
}
#feature .image {
	margin-top: 25px;
}
#feature .text {
	box-sizing: border-box;
	margin: 0 18px;
}
#feature .image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 340 / 220;
	object-fit: cover;
	object-position: center top;
}
#feature h2 {
	font-size: 24px;
	line-height: 1.583;
}
#feature p {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.78;
}
#feature .button {
	display: none;
}











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







#partner {
	margin: 80px 0 0;
}
#partner h2 {
	margin: 0 18px;
	font-size: 24px;
	line-height: 1.583;
}
#partner .lead {
	margin: 15px 18px 0;
}
#partner .lead p {
	font-size: 15px;
	line-height: 1.933;
}

#partner #partner-slide {
	margin-top: 48px;
}
#partner #partner-slide .caption {
	margin-top: 22px;
}





#necessity {
	margin: 85px 0 0;
	padding: 80px 26px 75px; 
	color: #fff;
	background: url(/syoukasen/img/necessity_bg.jpg) 35% 0 no-repeat;
	background-size: cover;
}
#necessity h2 {
	font-size: 23px;
	text-align: center;
}
#necessity .list {
	margin: 58px 0 0;
}
#necessity .box {
}
#necessity .box + .box {
	margin-top: 52px;
}
#necessity .image {
	margin: 18px 0 0;
}
#necessity .text {
	box-sizing: border-box;
}
#necessity .image img {
	width: 100%;
	height: auto;
}
#necessity h3 {
	font-size: 24px;
	line-height: 1.583;
}
#necessity p {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.75;
}


#necessity .caption {
	margin: 52px 0 0;
	font-size: 20px;
	line-height: 1.55;
}











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

#about-intro {
	margin: 120px 0 0;
}
#about-intro h1 {
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
}
#about-intro h1 img {
	width: 100%;
	height: auto;
}


#about-company {
	margin: 115px 0 0;
}
#about-company h2 {
	font-size: 23px;
	text-align: center;
}
#about-company .access {
	box-sizing: border-box;
	margin: 22px 0 0;
	background: #dc1414;
}
#about-company .text {
	padding: 42px 22px;
	font-size: 15px;
	line-height: 1.867;
	color: #fff;
}
#about-company .text a {
	color: #fff;
}
#about-company .map {
	position: relative;
	aspect-ratio: 340 / 310;
}
#about-company .text address {
}
#about-company .map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

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









#about-company .company-list {
	margin: 0 30px;
}
#about-company .company-list dl {
	box-sizing: border-box;
	padding: 0 10px 0 20px;
	font-size: 14px;
	line-height: 1.571;
	border-left: 1px solid #000;
}
#about-company .company-list dl + dl {
	padding-top: 1.4rem;
}
#about-company .company-list .button {
	margin-top: 40px;
}
#about-company .company-list .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	border: 1px solid #000;
	background: #fff;
}













#message {
	margin: 100px 0 0;
}
#message .image {
}
#message .image img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 356;
	object-fit: cover;
	object-position: 50% 5px;
}
#message h2 {
	margin: 50px 0 0;
	font-size: 15px;
	line-height: 1.467;
	text-align: center;
}
#message .name {
	margin: 8px 0 0;
	font-size: 23px;
	text-align: center;
}
#message .text {
	margin: 40px 18px 0;
}
#message .text p {
	font-size: 16px;
	line-height: 1.8125;
}
#message .text p br {
	display: none;
}

#message .box {
	margin: 70px 18px 0;
}
#message .box .subtitle {
	position: relative;
	margin-right: -18px;
}
#message .box .subtitle::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	background: #dc1414;
}
#message .box .subtitle h3 {
	position: relative;
	width: 98px;
	z-index: 10;
	font-size: 20px;
	background: #fff;
}
#message .box h4 {
	margin: 28px 0 0;
	font-size: 24px;
	line-height: 1.583;
}
#message .box p {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.8;
}

#message .box.value h4 {
	margin-top: 35px;
	font-size: 40px;
}
#message .box.value .content {
}
#message .box.value p {
}

#message .box.guideline .content {
	margin: 25px 0 0;
}
#message .box.guideline br {
	display: none;
}
#message .box.guideline span {
	display: block;
}
#message .box.guideline span + br + span {
	margin-top: 1.4em;
}











#symbol {
	margin: 55px 0 0;
	padding: 0 0 28px;
	color: #fff;
	background: #192850;
}
#symbol .gallery {
}
#symbol .gallery img {
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 432;
	object-fit: cover;
}
#symbol .gallery img:nth-child(1),
#symbol .gallery img:nth-child(3) {
	display: none;
}
#symbol .logo {
	width: 100%;
	max-width: 280px;
	margin: 90px auto 0;
}
#symbol .logo img {
	width: 100%;
	height: auto;
}
#symbol .text {
	margin: 65px 26px 0;
	font-size: 13px;
	line-height: 1.8;
}








#for-partner {
	margin: 65px 0 30px;
}
#for-partner h2 {
	font-size: 23px;
	text-align: center;
}
#for-partner .text {
	margin: 24px 28px 0;
}
#for-partner .text p {
	font-size: 13px;
	line-height: 1.8;
}
#for-partner .image {
	margin: 28px 0 0;
}
#for-partner .image img {
	width: 100%;
	height: auto;
	aspect-ratio: 896 / 474;
	object-fit: cover;
}
#for-partner .caption {
	margin: 25px 28px 0;
	font-size: 15px;
	line-height: 1.667;
}







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

body.activity .content-header .bg img {
	position: relative;
	height: 114%;
	top: -5%;
	object-position: 65% 50%;
}

#activity {
	padding: 60px 0 80px;
}
#activity h2 {
	font-size: 23px;
	text-align: center;
}

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

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








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

body.price .content-header .bg img {
	position: relative;
	object-position: 46% 50%;
}

#price-intro .content-inner {
	padding: 60px 18px 70px;
}

#price-intro .column {
}
#price-intro .column + .column {
	margin-top: 60px;
}

#price-intro .column h3 {
	margin: 0 0 14px;
	font-size: 22px;
}
#price-intro .column .box {
}

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

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







#price-flow {
	background: #f2f2f2
}
#price-flow .content-inner {
	padding-top: 60px;
	padding-bottom: 100px;
}
#price-flow .content-inner .box {
	margin: 0 24px;
}
#price-flow .content-inner .box + .box {
	margin-top: 40px;
}

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

#price-flow .content-inner .box dl {
	margin: 16px 0 0;
	font-feature-settings: "palt";
	letter-spacing: 0.04em;
}
#price-flow .content-inner .box dt {
	font-size: 22px;
	text-align: center;
}
#price-flow .content-inner .box dd {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.75;
}
#price-flow .content-inner .box .button {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 15px;
}

#price-flow .note {
	margin: 45px 24px 0;
	font-size: 14px;
	line-height: 1.75;
}












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

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

#recruit-intro .gallery {
	display: flex;
}
#recruit-intro .gallery img {
	width: 50%;
	height: auto;
	aspect-ratio: 170 / 300;
	object-fit: cover;
}
#recruit-intro .gallery img:nth-child(n + 3) {
	display: none;
}

#recruit-intro .content-inner {
	padding: 42px 0 60px;
}
#recruit-intro .logo img {
	width: 44px;
	height: auto;
}
#recruit-intro h2 {
	margin: 24px 22px 0;
	font-size: 24px;
	line-height: 1.583;
}
#recruit-intro .caption {
	margin: 22px 22px 0;
	font-size: 13px;
	line-height: 1.7;
	text-align: center;
}




#recruit-list {
	padding: 70px 0 100px;
}
#recruit-list h2 {
	font-size: 23px;
	text-align: center;
}
#recruit-list .lead {
	margin: 18px 22px 90px;
	font-size: 14px;
	line-height: 1.75;
}

#recruit-list .recruit-entry {
	margin: 0 22px;
}
#recruit-list .recruit-entry + .recruit-entry {
	margin-top: 80px;
}
#recruit-list .recruit-entry .column + .column {
	margin-top: 50px;
}

#recruit-list .recruit-entry h3 {
	margin: 0 0 30px;
	padding-bottom: 8px;
	font-size: 23px;
	border-bottom: 1px solid #000;
}
#recruit-list .recruit-entry dl {
}
#recruit-list .recruit-entry dt {
	font-size: 19px;
	font-feature-settings: "palt";
}
#recruit-list .recruit-entry dd {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.8;
	font-feature-settings: "palt";
}












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

#area-intro {
	margin: 50px 30px 0;
}
#area-intro p {
	font-size: 14px;
	line-height: 1.75;
}


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

#area-list .box {
}
#area-list .box h3 {
	font-size: 22px;
}
#area-list .box:has(.list.small) h3 {
	font-size: 20px;
}

#area-list .box .text {
}


#area-list .box .text .large {
	margin-top: 14px;
}
#area-list .box .text .small {
	margin-top: 16px;
}

#area-list .box .text .large ul {
	font-size: 18px;
	line-height: 1.75;
}
#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;
}
#area-list .box .contact {
	margin-top: 2em;
}



#area-list .box .contact dl {
	font-size: 15px;
	line-height: 1.5;
	font-feature-settings: "palt";
}
#area-list .box .contact dd {
}
#area-list .box .contact dl + dl {
	margin-top: 1em;
}



#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 .column.all {
	margin-bottom: 20px;
	padding-bottom: 85px;
	border-bottom: 1px solid #000;
}
#area-list .column.all .map {
	margin: 2px auto 0;
}
#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 6em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.tokyo .map {
	margin: 20px auto 0;
}


#area-list .column.saitama .list {
	display: grid;
	grid-template-columns: 5em 5em 6em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.saitama .map {
	margin: 28px auto 0;
}


#area-list .column.chiba .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.chiba .map {
	margin: 28px auto 0;
	padding: 0 15px;
}


#area-list .column.kanagawa .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.kanagawa .map {
	margin: 32px auto 0;
}


#area-list .column.tochigi .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
}
#area-list .column.tochigi .list ul:last-child {
	grid-column: 4 / 5;
}
#area-list .column.tochigi .contact {
	margin-top: 1em;
}
#area-list .column.tochigi .map {
	margin: 28px auto 0;
}


#area-list .column.gunma .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
}
#area-list .column.gunma .list ul:last-child {
	grid-column: 4 / 5;
}
#area-list .column.gunma .contact {
	margin-top: 1em;
}
#area-list .column.gunma .map {
	margin: 28px auto 0;
	padding: 0 5px;
}


#area-list .column.shizuoka .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.shizuoka .map {
	margin: 22px auto 0;
	padding: 0 2px;
}


#area-list .column.aichi .list {
	display: grid;
	grid-template-columns: 5em 5em 5em 5em;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
}
#area-list .column.aichi .map {
	margin: 24px auto 0;
	padding: 0 5px;
}


#area-list .column.miyagi .list ul {
	display: grid;
	grid-template-columns: 4em 4em 4em 4em;
}
#area-list .column.miyagi .map {
	margin: 32px auto 0;
}


#area-list .column.yamagata .list ul {
	display: grid;
	grid-template-columns: 4em 4em 4em;
}
#area-list .column.yamagata .map {
	margin: 32px auto 0;
}








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

body.size .content-header .bg img {
	position: relative;
	height: 110%;
	top: -2%;
	object-position: 44.5% 10%;
}

#size-intro {
	margin: 50px 30px 0;
}
#size-intro p {
	font-size: 14px;
	line-height: 1.75;
	font-feature-settings: "palt";
}




#size-figure {
	margin: 60px 30px 0;
}
#size-figure h2 {
	font-size: 23px;
	text-align: center;
}
#size-figure .figure {
	margin: 25px 0 0;
	padding: 0 0 0 5px;
}
#size-figure .figure img {
	width: 100%;
	height: auto;
}



#size-case {
	margin: 85px 30px 110px;
}
#size-case h2 {
	font-size: 23px;
	text-align: center;
}
#size-case p {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.75;
	font-feature-settings: "palt";
}

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














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

.contact-header {
	position: relative;
	height: 90vw;
	background: #dc1414;
	overflow: hidden;
}
.contact-header .header-inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	z-index: 10;
	padding-bottom: 10vw;
}
.contact-header .header-inner h1 {
	font-size: 32px;
	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 30px 0;
}
#contact-intro p {
	font-size: 14px;
	line-height: 1.75;
}
#contact-intro .notice {
	color: #dc1414;
}

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



.contact-form {
	margin: 90px 0 100px;
}
.contact-form h2 {
	font-size: 23px;
	text-align: center;
}

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

.contact-form .form-note {
	margin: 8px 0 0;
	font-size: 14px;
	text-align: center;
}




.contact-form {
}

.contact-form form {
	margin: 24px 38px 0;
}
.contact-form dl {
	position: relative;
}
.contact-form dt {
	font-size: 14px;
}
.contact-form dd {
	margin: 8px 0 0;
}

.contact-form dl + dl {
	margin-top: 30px;
}
.contact-form dd .note {
	display: block;
	margin: 8px 0 0;
	font-size: 13px;
	font-feature-settings: "palt";
}

.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: 150px;
	padding-left: 36px;
}
.contact-form dd .zip .example {
	display: block;
	margin-left: 12px;
	font-size: 13px;
}
.contact-form dd .zip .icon {
	position: absolute;
	left: 12px;
	top: 9px;
	font-size: 20px;
}

.contact-form .publication .city .example {
	display: block;
	margin: 8px 0 0;
	font-size: 13px;
}

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


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


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 dl + dl {
	margin-top: 40px;
}



.contact-form .mw_wp_form_complete {
	min-height: 100px;
	margin: 20px 30px 0;
}
.contact-form .mw_wp_form_complete p {
	font-size: 14px;
	line-height: 1.75;
}

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



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





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

#contact-recruit {
	padding: 65px 22px;
	background: #192850;
}
#contact-recruit .content-inner {
}
#contact-recruit .text {
	box-sizing: border-box;
	margin: 25px 0 0;
	color: #fff;
}
#contact-recruit .image {
	box-sizing: border-box;
	width: 136px;
	margin: 0 auto;
}
#contact-recruit .image img {
	width: 100%;
	height: auto;
}
#contact-recruit .text h2 {
	font-size: 22px;
	line-height: 1.667;
	text-align: center;
}
#contact-recruit .text p {
	margin: 12px 10px 0;
	font-size: 14px;
	line-height: 1.8;
}
#contact-recruit .button {
	margin: 35px 0 0;
}
#contact-recruit .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 17px;
	color: #fff;
	border: 1px solid #dc1414;
	background: #dc1414;
}




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

body:not(:has(#contact-faq)) #contact-recruit {
	margin-bottom: 100px;
}





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

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

.contact-form .entry-note {
	margin: 60px 30px 0;
}
.contact-form .entry-note p {
	font-size: 14px;
	line-height: 1.75;
}

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










/* ---------------------------------------------------------------------------------------------------- */
/* 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;
}



































































































