/****************************
  nav-angle-down
*****************************/

#nav-angle-down {
	position: absolute;
	z-index: 10;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
}
#nav-angle-down a {
	display: inline-block;
	margin:  0;
	padding: 0;
	font-size: 70px;
	transition: all 0.3s;
}
#nav-angle-down a:link, 
#nav-angle-down a:visited, 
#nav-angle-down a:active {
	color: #fff;
}
#nav-angle-down a:hover {
	color: rgba(255, 255, 255, .7);
}
#nav-angle-down a:active {
	transform: translateY(1px);
}

@keyframes small-bounce {
	  0% {transform: translateY(0px)}
	 25% {transform: translateY(3px)}
	 50% {transform: translateY(0px)}
	 75% {transform: translateY(-1px)}
	100% {transform: translateY(0px)}
}

.animation-small-bounce {
	animation: small-bounce 850ms linear infinite;
}

/****************************
  link_recruitsite
*****************************/

a#link_recruitsite_sp {
	display: block;
	position: fixed;
	z-index: 1;
	left:   0;
	bottom: 0;
	width: 100%;
	height: 70px;
	margin:  0;
	padding: 25px 0 0;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
	background-color: rgba(255, 201, 0, 1);
	color: #fff;
	text-decoration: none;
}

#link_recruitsite_pc {
	display: none;
}

@media (min-width: 768px) {
	a#link_recruitsite_sp {
		display: none;
	}

	#link_recruitsite_pc {
		display: block;
		position: absolute;
		z-index: 11;
		bottom: 80px;
		right: 60px;
		width:  120px;
		height: 120px;
		border: 1px solid #fff;
		border-radius: 100px;
		background-color: rgba(255, 201, 0, 1);
		text-align: center;
		animation: link_recruitsite-bounce 2s linear infinite;
	}
	
	#link_recruitsite_pc:hover {
		background-color: rgba(255, 201, 0, 0.8);
	}
	
	#link_recruitsite_pc > a {
		display: block;
		width:  100%;
		height: 100%;
	}
	
	#link_recruitsite_pc > a > img {
		width:  92px;
		height: 66px;
		margin: 25px 0;
		vertical-align: bottom;
	}
	
	@keyframes link_recruitsite-bounce {
		0% {transform: translateY(0px)}
	   25% {transform: translateY(15px)}
	   50% {transform: translateY(0px)}
	   75% {transform: translateY(-8px)}
	  100% {transform: translateY(0px)}
	}
}

/****************************
  common
*****************************/

h2.h2_home, 
h2.h2_home_b {
	margin:  0;
	padding: 0;
	text-align: center;
	color: #fff;
	font-family: Raleway, arial, sans-serif;
	font-size: 34px;
	line-height: 1;
}
h2.h2_home {
	font-weight: normal;
}
h2.h2_home_b {
	font-weight: bold;
}

/****************************
  home_summary
*****************************/

#home_summary {
	width: 100%;
	margin: 0;
	padding: 70px 0;
	position: relative;
}

#home_summary > div {
	margin: 0;
	padding: 0;
}

figure.home_summary_figure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(450px, -50%);
	width: 300px;
	margin: 0;
	padding: 0;
}

figure.home_summary_figure img {
	width: 100%;
	height: initial;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

figure.home_summary_figure a:link,
figure.home_summary_figure a:visited, 
figure.home_summary_figure a:hover, 
figure.home_summary_figure a:active {
	color: #000;
	text-decoration: none;
}

figure.home_summary_figure figcaption {
	margin: 0;
	padding: 8px 0 0;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 1;
}

h1.h1_home_summary {
	margin:  0;
	padding: 0;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 30px;
	line-height: 1.3;
}

p.p_home_summary {
	margin: 0;
	padding: 2em 0 0;
	text-align: center;
	font-style: normal;
	font-weight: normal;
}

p.p_home_summary, 
p.p_home_summary > span {
	font-size: 18px;
	line-height: 1.7;
}

p.p_home_summary > span {
	display: block;
}

@media (max-width: 1500px) {
	#home_summary {
		position: static;
	}

	figure.home_summary_figure {
		position: static;
		transform: translate(0, 0);
		margin: 0 auto;
		padding: 30px 0 0;
	}
}

/****************************
  home_products
*****************************/

#home_products_pc {
	width: 100%;
	margin:  0;
	padding: 40px 0;
	background-image: url(../../files/home/products.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

#home_products_pc:before {
	position: absolute;
	z-index: 0;
	top:  0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, .25);
	background: transparent url(../images/pat1.png) repeat;
}
#home_products_pc > div {
	display: table;

	z-index: 1;
	width: 100%;
	height: 100%;
}
#home_products_pc > div > div {
	display: table-cell;
	margin:  0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
}

a.btn_home_products {
	display: inline-block;
	margin:  0 auto;
	padding: 40px 60px;
	border: none;
	background-color: rgba(0, 0, 0, 0.09);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.4s;
	position: relative;
}
a.btn_home_products::before, 
a.btn_home_products::after {
	position: absolute;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: all 0.4s linear;
	content: '';
}
a.btn_home_products::before {
	top: 0;
	right: 0;
}
a.btn_home_products::after {
	bottom: 0;
	left: 0;
}

a.btn_home_products span {
	display: block;
	padding: 25px 80px;
}
a.btn_home_products span::before, 
a.btn_home_products span::after {
	position: absolute;
	width: 1px;
	height: 0;
	background-color: #fff;
	transition: all 0.4s linear;
	content: '';
}
a.btn_home_products span::after {
	top: 0;
	right:0;
}
a.btn_home_products span::before {
	bottom: 0;
	left: 0;
}

a.btn_home_products:hover::before, 
a.btn_home_products:hover::after {
	width: 100%;
}
a.btn_home_products:hover span::before, 
a.btn_home_products:hover span::after {
	height: 100%;
}

/**/

a.btn_home_products h3.h3_home_products {
	opacity: 1;
	margin:  0;
	padding: 10px 0 0;
	text-align: center;
	transition: all 0.3s;
}

h3.h3_home_products {
	color: #fff;
	font-weight: normal;
	font-size: 16px;
	line-height: 1;
}

a.btn_home_products p.p_home_products {
	opacity: 1;
	margin:  0;
	padding: 10px 0 0;
	text-align: center;
	color: #fff;
	font-weight: normal;
	font-size: 16px;
	line-height: 1;
	transition: all 0.3s;
}

a.btn_home_products p.p_home_products:hover {
	color: #f33;
}

a.btn_home_products:link, 
a.btn_home_products:visited, 
a.btn_home_products:hover, 
a.btn_home_products:active {
	text-decoration: none;
}
a.btn_home_products:hover {
	background-color: rgba(0, 0, 0, 0.4);
}

#home_products_pc {
	display: block;
}
#home_products_sp {
	display: none;
}

/****************************
  home_products_nav
*****************************/

#home_products_nav {
	width: 100%;
	margin:  0;
	padding: 40px 0 0;
	display: flex;
	justify-content: center;
}
#home_products_nav > span {
	overflow: hidden;
	width:  280px;
	height: 280px;
	margin:  0 25px;
	padding: 20px;
	border: 4px solid #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	box-shadow: 0 0 15px gray;
	text-align: left;
	color: #fff;
	transition: all 0.3s; 
	position: relative;
}
#home_products_nav > span:hover {
	background-size: 110% 110%;
}
#home_products_nav > span:nth-of-type(1) {
	background-image: url(../../files/home/home_products_nav1.jpg);
}
#home_products_nav > span:nth-of-type(2) {
	background-image: url(../../files/home/home_products_nav2.jpg);
}

#home_products_nav > span:hover:before {
	position: absolute;
	z-index: 0;
	top:  0px;
	left: 0px;
	width:  100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, .6);
}

#home_products_nav > span h2.h2_home_products_nav {
	transform: translate(0, 190px);
	transition: all 0.3s;
}
#home_products_nav > span:hover h2.h2_home_products_nav {
	transform: translate(0, 0);
}
#home_products_nav > span h3.h3_home_products_nav {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 0.3s;
}
#home_products_nav > span:hover h3.h3_home_products_nav {
	opacity: 1;
	transform: translate(0, 40px);
}
#home_products_nav > span a.link_home_products_nav {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 0.3s;
}
#home_products_nav > span:hover a.link_home_products_nav {
	opacity: 1;
	transform: translate(0, 80px);
}

h2.h2_home_products_nav {
	margin:  0;
	padding: 0;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.2;
}
h3.h3_home_products_nav {
	margin:  0;
	padding: 0;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.2;
}

a.link_home_products_nav {
	display: block;
	margin:  0;
	padding: 2em 0 0;
	font-weight: normal;
	font-size: 18px;
	line-height: 1;
	white-space: nowrap;
	transition: all 0.3s;
}
a.link_home_products_nav:link, 
a.link_home_products_nav:visited {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}
a.link_home_products_nav:hover, 
a.link_home_products_nav:active {
	color: #f33;
	text-decoration: none;
}
a.link_home_products_nav::after {
	padding-left: .4em;
	font-family: 'fontawesome';
	content: '\f105';
}

/****************************
  home_recruit
  home_entry
*****************************/

#home_recruit, 
#home_entry {
	display: table;
	width:  100%;
	height: 500px;
	margin:  0;
	padding: 0;
}
#home_recruit {
	background-color: #68848f;
	background-color: #33687a;
	background-color: #184a7e;
}
#home_entry {
	background-color: #688f80;
	background-color: #009a9a;
}

#home_recruit > div, 
#home_entry   > div {
	display: table-cell;
	width: 50%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}

#home_recruit > div.home_recruit_left, 
#home_entry > div.home_entry_right {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#home_recruit > div.home_recruit_left {
	background-image: url(../../files/home/recruit.jpg);
}
#home_entry > div.home_entry_right {
	background-image: url(../../files/home/entry.jpg);
}

/* #home_recruit > div.home_recruit_right {

}
#home_entry > div.home_entry_left {

} */

/**/

p.p_home_recruit {
	margin:  0;
	padding: 2em 0 0;
	color: #fff;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.7;
}

.link_home_recruit {
	margin:  0;
	padding: 2em 0 0;
}
.link_home_recruit a {
	display: block;
	margin:  0;
	padding: 0;
	font-weight: normal;
	font-size: 18px;
	line-height: 1;
	transition: all 0.3s;
}
.link_home_recruit a:link, 
.link_home_recruit a:visited {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}
.link_home_recruit a:hover, 
.link_home_recruit a:active {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}
.link_home_recruit a::after {
	padding-left: .4em;
	font-family: 'fontawesome';
	content: '\f105';
}

/****************************
  home_profile
*****************************/

#home_profile {
	width: 100%;
	margin:  0;
	padding: 0;
	background-image: url(../../files/home/profile.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

ul.ul_home_profile {
	display: table;
	width: 100%;
	margin:  0;
	padding: 0;
}
ul.ul_home_profile > li {
	display: table-cell;
	width: 50%;
	height: 500px;
	margin:  0;
	padding: 50px 40px;
	vertical-align: middle;
	text-align: left;
}
ul.ul_home_profile > li:nth-of-type(1) {
/* 	background-color: rgba(0, 51, 102, .6); */
	background-color: rgba(51, 104, 122, .6);
}
ul.ul_home_profile > li:nth-of-type(2) {
/* 	background-color: rgba(255, 0, 0, .6); */
	background-color: rgba(212, 0, 0, .6);
}

h2.h2_home.home_profile {
	font-size: 60px;
}

p.p_home_profile {
	margin:  0;
	padding: 0;
	text-align: left;
	color: #fff;
	font-weight: normal;
	font-size: 20px;
	line-height: 1.7;
}

.link_home_profile {
	margin:  0;
	padding: 2em 0 0;
}
.link_home_profile a {
	display: block;
	margin:  0;
	padding: 0;
	font-weight: normal;
	font-size: 18px;
	line-height: 1;
	transition: all 0.3s;
}
.link_home_profile a:link, 
.link_home_profile a:visited {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}
.link_home_profile a:hover, 
.link_home_profile a:active {
	color: rgba(255, 255, 255, .6);
	text-decoration: none;
}
.link_home_profile a::after {
	padding-left: .4em;
	font-family: 'fontawesome';
	content: '\f105';
}

/****************************
  home_news
*****************************/

#home_news {
	width:  100%;
	margin:  0;
	padding: 110px 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(../../files/home/news.jpg);
	position: relative;
}
#home_news:before {
	position: absolute;
	width:  100%;
	height: 100%;
	top:  0px;
	left: 0px;
	z-index: 0;
	content: '';
	background-color: rgba(0, 0, 0, .25);
	background: transparent url(../images/pat1.png) repeat;
}

dl.dl_home_news {
	display: table;
	margin: 0 auto;
	text-align: center;
}
dl.dl_home_news > dt, 
dl.dl_home_news > dd {
	display: table-cell;
	padding: 1em .5em 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
}
dl.dl_home_news > dt b {
	display: inline-block;
	margin:  0 0 0 8px;
	padding: 2px 4px;
	border: none;
	background-color: #fff;
	vertical-align: 2px;
	text-align: center;
	color: #000;
	font-weight: normal;
	font-size: 12px;
	line-height: 1;
}

#home_map iframe {
	width: 100%;
	height: 500px;
	margin:  0;
	padding: 0;
	vertical-align: bottom;
}
