@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: 'Noto Sans Japanese', serif;
  font-size: 16px;
  font-weight: 400;
	line-height: 1.8em;
  letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
	font-weight: 600;
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

iframe {
	width: 100%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #89cefd;
}

::-moz-selection {
	background: #89cefd;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 14px;
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	color: #fff !important;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3em;
	padding: 0 2em;
	display: block;
	position: relative;
}

.btn_forward:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover:after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 1.5em;
}

.btn_back:hover:after {
	left: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
	.btn {
		height: 60px;
		line-height: 60px;
	}
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 6em;
	position: relative;
	overflow: hidden;
}

.background_wrap {
  padding: 5em 0;
}

.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 3em;
  }
  
  .background_wrap {
    padding: 3em 0;
  }
  
  .wrapper {
    padding: 0 4%;
  }
}

/*---------------------------------
  Header
---------------------------------*/
header {
	padding: 1em 4%;
}

.header_content,
header nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 500;
}

.header_content h1 {
	font-family: 'Kosugi Maru', sans-serif;
	font-size: 36px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-right: auto;
}

.header_content h1 img {
	width: 60px;
	height: 60px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

nav li {
  position: relative;
}

header nav li a {
	margin: 0 1em;
  padding: 1.5em 0;
}

heade nav li a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

header nav > li:last-of-type a {
	color: #fff !important;
	border-radius: 3em;
	background: #036eb7;
	display: block;
	padding: 0.5em 2em;
}

nav li .dropdown {
	display: none;
	position: absolute;
	top: 150%;
	left: 0;
	background: #036eb7;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	padding: 0.5em 0;
	min-width: 200px;
	z-index: 1000;
}

nav li .dropdown::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 20px;
	border-width: 0 10px 10px 10px;
	border-style: solid;
	border-color: transparent transparent #036eb7 transparent;
}

nav li:hover .dropdown {
	display: block;
}

nav li .dropdown li a {
	display: block;
	padding: 0.5em 1em;
	color: #fff;
  font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.3s;
}

nav li .dropdown li a:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media print, screen and (max-width: 1100px) {
	header nav {
		display: none;
	}
}

@media print, screen and (max-width: 896px) {
	.header_content h1 {
		font-size: 16px;
	}
	
	.header_content h1 img {
		width: 40px;
		height: 40px;
	}
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_area {
	position: absolute;
	top: 5px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 26px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #036eb7;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  background: rgba(3, 110, 183, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 1em;
}

.burger_menu li a {
  color: #fff !important;
}

@media print, screen and (min-width: 1101px) {
	.burger_area {
		display: none;
	}
}

/*---------------------------------
  Slider
---------------------------------*/
.slider_wrap {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 3em;
}

.slider_wrap:before {
	content: '';
	width: 80%;
	height: 80%;
	background-color: #036eb7;
	background-image: repeating-linear-gradient(-45deg, #0378c8, #0378c8 20px, transparent 0, transparent 40px);
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}

.slider_inner {
	position: absolute;
	top: 50%;
	left: 10%;
}

.slider_inner h2 {
	color: #036eb7;
	font-size: 38px;
	background: #fff;
	padding: 0.5em 1em;
	display: block;
}

.slider_inner h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #fff;
	font-family: 'Barlow', sans-serif;
	font-size: 24px;
	letter-spacing: 0.2em;
	margin-bottom: 1em;
}

.slider_inner h3:after {
	content: '';
	width: 100px;
	height: 3px;
	background: #fff;
	display: inline-block;
	vertical-align: super;
	margin-left: 0.5em;
}

.slider_inner ul {
	margin-top: 0.5em;
}

.slider_inner ul li {
	color: #036eb7;
	font-size: 21px;
	font-weight: 700;
	background: #fff;
	display: inline-block;
	margin: 0.5em 0.5em 0 0;
	padding: 0.5em 1em;
}

.slider_thumb {
	width: 70%;
	margin-left: auto;
}

.slider_thumb img {
	height: 80vh;
	object-fit: cover;
}

.slick-dots {
	bottom: -40px !important;
}

.slick-dots li button:before {
  content: '\f111' !important;
  font-family: "Font Awesome 5 Free" !important;
  font-size: 10px !important;
  line-height: 20px;
  color: #9ad5fd !important;
	font-weight: 600;
  opacity: 1 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
  color: #46b2fc !important;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #46b2fc !important;
}

/* scrolldown */
.scrolldown {
  position: absolute;
	bottom: 4em;
	left: 4%;
  padding: 3em 0;
}

.scrolldown span {
  position: absolute;
  left: 10px;
  top: 0;
  color: #9ad5fd;
	font-family: 'Barlow', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #46b2fc;
  animation:
  circlemove 2s ease-in-out infinite,
  cirlemovehide 2s ease-out infinite;
	z-index: 1;
}

@keyframes circlemove {
      0%{bottom:95px;}
     100%{bottom:-5px;}
}

@keyframes cirlemovehide {
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
}

.scrolldown:after {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100px;
  background: #9ad5fd;
}

@media print, screen and (max-width: 896px) {
	.slider_inner {
		top: 35%;
		left: 4%;
	}
	
	.slider_inner h2 {
		font-size: 21px;
		padding: 0.5em;
	}
	
	.slider_inner h3 {
		font-size: 14px;
	}
	
	.slider_inner ul li {
		font-size: 14px;
	}
	
	.slider_thumb {
		width: 80%;
	}
	
	.slider_thumb img {
		height: 60vh;
	}
	
	.scrolldown span {
		font-size: 12px;
		top: 1em;
	}
}

/*---------------------------------
  Common
---------------------------------*/
.title_wrap {
	padding-top: 6em;
	position: relative;
}

.menu_title {
	font-size: 42px;
	text-align: center;
	margin-bottom: 2em;
	position: relative;
}

.menu_title span {
	color: #036eb7;
	font-family: 'Barlow', sans-serif;
	font-size: 18px;
	font-weight: 700;
	display: block;
	margin-bottom: 2em;
}

.menu_title:after {
	content: '';
	width: 100px;
	height: 5px;
	border-radius: 2.5px;
	background: #036eb7;
	display: block;
	margin: 1em auto 0 auto;
}

.title_bg_wrap:before {
	content: '';
	width: 100%;
	height: 550px;
	background-color: #ddf1fe;
	background-image:
	 repeating-linear-gradient(-45deg,
	 #edf8ff, #edf8ff 20px,
	 transparent 0, transparent 40px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.service_content_bg {
	background: #edf8ff;
	padding: 5em 0;
	position: relative;
	margin-top: 6em;
}

.service_number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 3em;
}

.service_number p {
	width: 100px;
	height: 100px;
	font-family: 'Barlow', sans-serif;
	font-size: 36px;
	font-weight: 700;
	background: #ffd100;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 0.6em;
}

.service_number p span {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: normal;
	display: block;
	margin-top: -1em;
	margin-bottom: 0.3em;
}

.service_number h3 {
	font-size: 36px;
}

.curtain {
	height: 100%;
  overflow: hidden;
  position: relative;
}

.curtain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #036eb7;
  transition: 1.3s;
  transform: translateX(0%);
}

.curtain.show::before {
  transform: translateX(101%);
}

@media print, screen and (max-width: 896px) {
	.title_wrap {
		padding-top: 4em;
	}
	
	.menu_title {
		font-size: 24px;
	}
	
	.menu_title span {
		font-size: 14px;
		margin-bottom: 1.5em;
	}
	
	.menu_title:after {
		width: 70px;
		height: 4px;
	}
	
	.service_number {
		margin-bottom: 0;
	}
	
	.title_bg_wrap:before {
		height: 350px;
	}
	
	.service_number p {
		width: 65px;
		height: 65px;
		font-size: 28px;
	}
	
	.service_number p span {
		font-size: 11px;
		margin-top: -0.5em;
	}
	
	.service_number h3 {
		font-size: 21px;
	}
	
	.service_content_bg {
		padding: 4em 0;
		margin-top: 2em;
	}
}

@media print, screen and (max-width: 480px) {
	.service_number p {
		width: 50px;
		height: 50px;
		font-size: 21px;
	}
	
	.service_number p span {
		display: none;
	}
	
	.service_number h3 {
		font-size: 18px;
	}
}

/*---------------------------------

  Index

---------------------------------*/
/*---------------------------------
  社員・提携企業様募集
---------------------------------*/
.index_recruit_wrap .wrapper {
	position: relative;
	padding-top: 3em;
	padding-bottom: 6em;
}

.index_recruit_bg {
	border-radius: 50%;
	background-color: #ffd100;
	background-image:
	 repeating-linear-gradient(-45deg,
	 #ffd722, #ffd722 10px,
	 transparent 0, transparent 20px);
	position: absolute;
	display: block;
	opacity: 0.9;
	z-index: 1;
}

.index_recruit_bg_left {
	width: 100px;
	height: 100px;
	top: 0;
	left: -50px;
}

.index_recruit_bg_right {
	width: 250px;
	height: 250px;
	bottom: 0;
	right: -145px;
}

.index_recruit_content {
	border-radius: 1em;
	background: url("images/top/recruit.jpg") no-repeat;
	background-position: right bottom;
	background-size: cover;
	position: relative;
	overflow: hidden;
	padding: 4em;
}

.index_recruit_content:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(3, 110, 183, 0.3);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.index_recruit_box {
	color: #fff;
	position: relative;
	z-index: 1;
}

.index_recruit_box h2 {
	font-size: 42px;
	line-height: 2em;
	text-shadow: 0 1px 8px rgba(0,0,0,0.3);
	margin-bottom: 1em;
}

.index_recruit_box h2 span {
	border-bottom: solid 5px #ffd100;
	margin-right: 0.5em;
}

.index_recruit_box .text_box p {
	font-weight: 600;
	text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.index_recruit_wrap .btn {
	background: #036eb7;
	margin-top: 3em;
}

@media print, screen and (max-width: 896px) {
	.index_recruit_wrap .wrapper {
		padding-bottom: 3em;
	}
	
	.index_recruit_bg_left {
		width: 80px;
		height: 80px;
		left: -40px;
	}
	
	.index_recruit_bg_right {
		width: 200px;
		height: 200px;
		right: -100px;
	}

	.index_recruit_content {
		background-position: center center;
		padding: 3em;
	}
	
	.index_recruit_box h2 {
		font-size: 21px;
	}
}

/*---------------------------------
  セキュリティ機器設置･施工
---------------------------------*/
.service_content {
	position: relative;
	padding: 3em 0;
}

.service_content:nth-of-type(n+2) {
	margin-top: 6em;
}

.service_content .wrapper {
	z-index: 1;
	position: relative;
}

.service_content + .wrapper {
	margin-top: 3em;
}

.service_thumb {
	width: 50%;
	height: 100%;
	margin-left: auto;
	position: absolute;
	top: 0;
	right: 5%;
}

.service_thumb_left {
	margin-left: inherit;
	left: 5%;
}

.service_thumb img {
	height: 100%;
	object-fit: cover;
}

.service_box {
	width: 55%;
	font-weight: 500;
	background: #fff;
	padding: 3em;
}

.service_box_right {
	margin-left: auto;
}

.connect_bg_wrap:after {
	content: '';
	width: 100%;
	height: 100px;
	background: #036eb7;
	background-image:
	 radial-gradient(#048ce9 1px, transparent 1px);
	background-size: 20px 20px;
	display: block;
	position: absolute;
	bottom: 0;
	z-index: -1;
}

.sub_bg_content {
	background: #036eb7;
	background-image:
	 radial-gradient(#048ce9 1px, transparent 1px);
	background-size: 20px 20px;
	padding: 5em 0;
}

.sub_bg_content h4 {
	width: 550px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	background: #ffd100;
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 0.5em 1em;
	z-index: 1;
}

.sub_bg_content h4:after {
	content: "";
	position: absolute;
	bottom: -10px;
  left: 50%;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #ffd100 transparent transparent transparent;
	margin-left: -10px;
	display: block;
	z-index: 1;
}

.sub_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 0.5em;
	background: #fff;
	margin-top: -25px;
	padding: 5em 1em 2em 1em;
	position: relative;
}

.sub_box:after {
	display: block;
	position: absolute;
	bottom: -29px;
	left: 50%;
	border-top: 45px solid #fff;
	border-right: 128.5px solid transparent;
	border-bottom: 0 solid transparent;
	border-left: 128.5px solid transparent;
	content: '';
	-webkit-transform: translate3d(-50%,0,0);
	transform: translate3d(-50%,0,0);
}

.sub_inner {
	border-radius: 0.5em;
	background: #edf8ff;
	margin: 0.8em;
	padding: 3em 1.5em 1.5em 1.5em;
	position: relative;
}

.sub_inner:before {
	color: #f43e43;
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
}

.sub_inner h5 {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	border-bottom: solid 2px #036eb7;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
}

.sub_inner .text_box {
	font-size: 14px;
	line-height: 1.8em;
}

.sub_box + p {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #ffd100;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
	margin-top: 3em;
}

.sub_box + p:before,
.sub_box + p:after {
	content: '';
	width: 50px;
	height: 3px;
	background: #ffd100;
	display: block;
}

.sub_box + p:before {
	transform:rotate(70deg);
}

.sub_box + p:after {
	transform:rotate(-70deg);
}

.camera_sub_content .sub_inner {
	width: calc(100% / 4 - 1.6em);
}

.camera_sub_content .sub_inner:before {
	content: "\f057";
	font-family: 'Font Awesome 5 Free';
}

.signage_sub_content .sub_box:after {
	content: '';
	display: none;
}

.signage_sub_content .sub_inner {
	width: calc(100% / 3 - 1.6em);
}

.signage_sub_content .sub_inner:before {
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
}

.sub_title {
	font-size: 21px;
	margin-bottom: 2em;
}

@media print, screen and (min-width: 896px) {
	.sub_box + p br {
		display: none;
	}
}

@media print, screen and (max-width: 896px) {
	.service_content {
		padding: 0;
	}

	.service_thumb {
		width: 100%;
		margin-left: inherit;
		position: inherit;
		right: 0;
		margin-bottom: 1em;
		padding: 0 4%;
	}
	
	.service_thumb_left {
		left: 0;
	}
	
	.service_box {
		width: 100%;
		padding: 2em 4%;
	}
	
	.service_box_right {
		margin-left: inherit;
	}
	
	.sub_bg_content h4 {
		width: 90%;
		font-size: 16px;
	}
	
	.sub_box {
		flex-direction: column;
	}
	
	.camera_sub_content .sub_inner,
	.signage_sub_content .sub_inner {
		width: calc(100% - 1.6em);
	}
	
	.sub_inner {
		padding: 2em 4%;
	}
	
	.camera_sub_content .sub_inner:nth-of-type(n+2),
	.signage_sub_content .sub_inner:nth-of-type(n+2){
		margin-top: 2em;
	}
	
	.sub_inner:before {
		font-size: 28px;
	}
	
	.sub_inner h5 {
		font-size: 16px;
	}
	
	.sub_box + p {
		font-size: 18px;
	}
	
	.sub_bg_content {
		padding-top: 3em;
	}
}

@media print, screen and (max-width: 480px) {
	.sub_bg_content h4 span {
		display: none;
	}
	
	.sub_box + p {
		font-size: 16px;
	}
}

/*---------------------------------
  About
---------------------------------*/
.about_wrap {
	background: linear-gradient(180deg, #fff 0%, #fff 60%, #edf8ff 60%, #edf8ff 100%);
	padding-bottom: 3em;
}

.about_content,
.about_box_address,
.about_box_nember {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about_content {
	justify-content: space-between;
}

.about_box {
	width: 47%;
	padding: 1em;
}

.about_box h3 {
	font-size: 18px;
	margin-bottom: 0.5em;
}

.about_box iframe {
	height: 350px;
	border-radius: 0.5em;
	margin-top: 1em;
	overflow: hidden;
}

.about_box dl dt {
	width: 40px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	border-radius: 3px;
	background: #036eb7;
	margin-right: 0.5em;
}

.about_box_nember {
	margin-top: 0.5em;
}

.about_box_nember dd:first-of-type {
	margin-right: 1em;
}

@media print, screen and (max-width: 896px) {
	.about_content {
		flex-direction: column;
	}
	
	.about_box {
		width: 100%;
	}
}

/*---------------------------------

  Recruit

---------------------------------*/
.recruit_wrap .recruit_content:nth-of-type(n+2) {
	margin-top: 4em;
}

.recruit_wrap .recruit_content {
	border: solid 5px #333;
	box-shadow: none;
}

.recruit_content {
	border-radius: 2em;
	background: #fff;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
	padding: 3em 4%;
}

.recruit_detail_box {
	display: flex;
	flex-wrap: wrap;
}

.recruit_detail_box dt {
	width: 20%;
	font-weight: 500;
	border-bottom:  solid 2px #036eb7;
	padding: 1.5em 1em;
}

.recruit_detail_box dd {
	width: 80%;
	border-bottom:  solid 1px #dfe1e5;
	padding: 1.5em 2em;
}

.recruit_content .btn {
	max-width: 300px;
	background: #036eb7;
	margin: 3em auto 0 auto;
}

.recruit_content .btn:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
	.recruit_detail_box {
		flex-direction: column;
	}
	
	.recruit_detail_box dt,
	.recruit_detail_box dd {
		width: 100%;
	}
	
	.recruit_detail_box dt {
		color: #036eb7;
		border: none;
		padding-bottom: 0;
	}
	
	.recruit_detail_box dd {
		padding: 0.3em 1em 1.5em 1em;
	}
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_content .text_box p:nth-last-child(2)	{
	font-size: 21px;
	font-weight: 600;
  letter-spacing: 0.1em;
}

.thanks_content .text_box p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 21px;
  font-weight: 600;
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

.thanks_content .btn {
	background: #036eb7;
	margin: 5em auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .thanks_content .text_box p:nth-last-child(2)	{
    font-size: 18px;
  }
  
  .thanks_content .text_box p:nth-last-child(2):before {
    font-size: 16px;
  }
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
	background: #036eb7;
	margin-top: 6em;
	padding: 2em 0;
}

.about_wrap + footer {
	margin-top: 0;
}

footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

footer ul li a {
	color: #fff !important;
	font-size: 14px;
	padding: 0.8em;
}

footer ul li a:before {
  content: "\f138";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	margin-right: 5px;
}

footer ul li a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	margin-top: 2em;
}

@media print, screen and (max-width: 896px) {
	footer ul li a {
		font-size: 12px;
	}
}

@media print, screen and (max-width: 480px) {
	footer ul {
		justify-content: flex-start;
	}
	
	footer ul li {
		width: calc(100% / 2);
	}
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 18px;
	text-align: center;
	background: rgba(255, 209, 0, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 45px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
  .pagetop {
    display: none !important;
  }
}

/*---------------------------------
  2025.08.27 アスベスト追加
---------------------------------*/
.sub_box_nomal h3 {
  color: #f43e43;
  font-size: 24px;
  line-height: 1.8em;
  text-align: center;
  margin: 2em 0 1em 0;
}

.sub_box_nomal {
	border-radius: 0.5em;
	background: #fff;
	padding: 3em;
	position: relative;
}

.sub_box_nomal_dl dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  margin-top: 1.5em;
}

.sub_box_nomal_dl dl dt {
  width: 160px;
  color: #fff;
  border-radius: 0.5em 0 0 0.5em;
  background: #036eb7;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em;
  position: relative;
}

.sub_box_nomal_dl dl dt:after {
	content: "";
	position: absolute;
	top: 50%;
  right: -10px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #036eb7;
	margin-top: -10px;
	display: block;
}

.sub_box_nomal_dl dl dd {
  width: calc(100% - 160px);
  border-radius: 0 0.5em 0.5em 0;
  background: #edf8ff;
  padding: 1em 1em 1em 2em;
}

@media print, screen and (max-width: 896px) {
  .sub_box_nomal h3 {
    font-size: 16px;
    text-align: left;
  }
  
  .sub_box_nomal h3 br {
    display: none;
  }
  
  .sub_box_nomal_dl dl {
    margin-top: 2em;
  }
  
  .sub_box_nomal_dl dl dt,
  .sub_box_nomal_dl dl dd {
    width: 100%;
  }
  
  .sub_box_nomal_dl dl dt {
    border-radius: 0.5em 0.5em 0 0;
  }
  
  .sub_box_nomal_dl dl dd {
    border-radius: 0 0 0.5em 0.5em;
    padding: 2em 1.5em 1.5em 1.5em;
  }
  
  .sub_box_nomal_dl dl dt:after {
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: -10px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #036eb7 transparent transparent transparent;
    margin-top: 0;
    margin-left: -10px;
  }
}