@charset "utf-8";

/*--------------------------------------------------*/
/* block -------------------------------------------*/
/*--------------------------------------------------*/
section {
	margin-top: -50px;
	padding-top: 50px;
}

section#main,
section#title {
	margin-top: 0;
	padding-top: 0;
}

.header_area {
	position: fixed;
	top: 0;
	width: 100%;
  min-height: 50px;
	background-color: #36c;
	z-index: 1000;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.title_area,
.intro_area {
	position: relative;
	background-size: cover;
	background-position: center;
}

.title_area {
	position: relative;
	height: 200px;
}

.no_title {
	height: 50px;
}

.intro_area {
	position: relative;
	height: 300px;
}

.content_area {
	position: relative;
	margin-top: -1px;
	padding-top: 1px;
	min-height: 100%;
}

.content_inner {
	margin: auto;
	padding: 30px 15px;
}

.photo_area {
	position: relative;
}

.text_area {
	position: relative;
}

.footer_area {
	position: relative;
	color: #fff;
	background-color: #36c;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/
	
	section {
		margin-top: -100px;
		padding-top: 100px;
	}
	
	.header_area {
		background: none;
	}
	
	.title_area {
		height: 350px;
	}
	
	.no_title {
		height: 80px;
	}
	
	.intro_area {
		height: 600px;
	}
	
	.content_inner {
		width: 1100px;
		padding: 30px 50px;
	}
}

/*--------------------------------------------------*/
/*-- pageTop ---------------------------------------*/
/*--------------------------------------------------*/

.pageTop a {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99999;
	width: 30px;
	height: 30px;
	margin-left: -21px;
	border-right: 3px solid #39f;
	border-top: 3px solid #39f;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*--------------------------------------------------*/
/* header ------------------------------------------*/
/*--------------------------------------------------*/

.header_area .content_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
	width: 100%;
	min-width: 1100px;
	/*max-width: 1600px;*/
	padding: 0;
}

.header_area nav {
  width: 100%;
}

#hd_logo {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 85%;
  max-width: 500px;
  padding: 0 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 999;
}

#hd_logo img {
	width: 100%;
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

	#hd_logo {
    position: relative;
    bottom: 0;
    transform: translateY(0);
    width: 50%;
    height: auto;
		padding: 0 20px;
	}
	
	#globalNav {
		display: table;
		margin: 0;
		margin-left: auto;
	}
	
	#globalNav dl {
		display: table-cell;
	}
	
	#globalNav dt a {
		display: table-cell;
		width: 130px;
		height: 80px;
		padding: 0 12px;
		vertical-align: middle;
		text-align: center;
		text-decoration: none;
		background: url(../images/common/gnv_div.png) left 0 no-repeat;
		color: #fff;
		font-weight: bold;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	
	#globalNav dt a:hover {
		background-color: rgba(153, 255, 255, 0.2);
	}
	
	#globalNav dd {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		background-color: #000;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	
	#globalNav .localNav {
		display: table;
		margin: auto;
	}
	
	#globalNav .localNav li {
		display: table-cell;
	}
	
	#globalNav .localNav a {
		display: table-cell;
		height: 50px;
		padding: 5px 2em 0;
		vertical-align: middle;
		border-bottom: 5px solid transparent;
		text-decoration: none;
		color: #fff;
	}
	
	#globalNav .localNav a:hover,
		#globalNav .localNav a.active {
		border-bottom: 5px solid #39f;
	}
	
	.header_area {
		background-color: rgba(0, 51, 153, 0.8);
	}

	.reduce .header_area,
	#home.reduce .header_area {
		background-color: rgba(0, 51, 153, 1);
	}
	
	.reduce #hd_logo {
		height: 50px;
		padding: 10px 25px;
	}
	
	.reduce #globalNav dt a {
		height: 50px;
	}
	
	.reduce #globalNav dd {
		top: 50px;
	}
	
	/* アクティブページ ------------------*/
	
	body#home #globalNav #g00 dt a,
	body#info #globalNav #g00 dt a,
	body#company #globalNav #g01 dt a,
	body#service #globalNav #g02 dt a,
	body#training #globalNav #g03 dt a,
	body#voice #globalNav #g03 dt a,
	body#recruit #globalNav #g04 dt a,
	body#contact #globalNav #g05 dt a {
		background-color: rgba(153, 255, 255, 0.2);
	}

	body#info #globalNav #g00 dd,
	body#company #globalNav #g01 dd,
	body#service #globalNav #g02 dd,
	body#training #globalNav #g03 dd,
	body#voice #globalNav #g03 dd,
	body#recruit #globalNav #g04 dd,
	body#contact #globalNav #g05 dd {
		display: block;
	}
	
/* HOME ------------------*/

	body#home #globalNav #g00 dd {
		display: block;
		top: -50px;
		opacity: 0;
	}
	
	body#home.reduce #globalNav #g00 dd {
		top: 50px;
		opacity: 1;
	}
	
	#home .header_area {
		background: none;
	}
}

/*--------------------------------------------------*/
/* トグルナビ(1099pxまで)------------------------------*/
@media screen and (max-width: 1099px) {
/*--------------------------------------------------*/
	
	.toggle {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999999;
		width: 50px;
		height: 50px;
		background: url(../images/common/icon_menu.png) no-repeat;
		background-size: 50px 50px;
		cursor: pointer;
	}
	
	.toggle.active {
		background: url(../images/common/icon_close.png) no-repeat;
		background-size: 50px 50px;
	}
	
	.header_area nav {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 100;
		overflow-y: scroll;
		background-color: #000;
	}
	
	.header_area nav::-webkit-scrollbar {
		display: none;
	}
	
	#globalNav {
		left: 0;
		width: 100%;
		padding: 20px;
		margin: 50px 0 0 0;
		overflow: hidden;
		position: relative;
	}
	
	#globalNav dl {
		display: block;
		margin: 0;
		border-left: none;
		border-bottom: 1px solid #333;
		line-height: 1;
		vertical-align: middle;
		font-size: 1.4rem;
		box-sizing: border-box;
		width: 100%;
	}
	
	#globalNav dt a {
		display: block;
		height: auto;
		margin: 0;
		padding: 15px 0;
		background: none;
		color: #fff;
		font-weight: bold;
		text-decoration: none;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
		/*pointer-events: none;*/
	}
	
	#globalNav ul {
		margin-top: 0;
	}
	
	#globalNav li a {
		display: block;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1.5em;
		text-decoration: none;
		padding: 15px 0;
	}
	
}

/*--------------------------------------------------*/
/* footer ------------------------------------------*/
/*--------------------------------------------------*/

.footer_area .content_inner {
	display: none;
}

#ft_logo {
	width: 300px;
}

#ft_logo img {
	height: 100%;
}

#copyright {
	display: block;
	color: #abc;
	text-align: center;
	font-size: 1.2rem;
	line-height: 80px;
	background-color: #039;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	.footer_area .content_inner {
		display: block;
	}
	
	#quickNav {
		width: 100%;
		display: table;
		/*table-layout: fixed;*/
	}
	
	#quickNav dl {
		display: table-cell;
		padding: 1em;
	}
	
	#quickNav dt {
		font-size: 1.5rem;
		font-weight: bold;
	}
	
	#quickNav dt a {
		color: #fff;
		text-decoration: none;
	}
	
	#quickNav dd {
		margin-bottom: 2em;
	}
	
	#quickNav dd ul {
		margin: 0.5em 0;
	}
	
	#quickNav dd a {
		text-decoration: none;
		border-bottom: 1px solid rgba(0, 255, 255, 0);
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
		color: #fff;
	}
	
	#quickNav dd a:hover {
		border-bottom: 1px solid rgba(0, 255, 255, 1);
		color: #0ff;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}


/*--------------------------------------------------*/
/* title・heading -----------------------------------*/
/*--------------------------------------------------*/

/*中頁ページタイトル-------------------*/
h2.title {
	position: absolute;
	bottom: 20%;
	margin: 0;
	width: 100%;
	padding: 0;
	font-size: 1.8rem;
	line-height: 1.3;
	text-align: center;
	color: #000;
}

h2.title span {
	display: block;
	font-family: 'Archivo Black', sans-serif;
	letter-spacing: -1px;
	font-size: 4rem;
	color: #000;
}

/*大見出し-------------------*/
h2.heading {
	margin: 10vh 0;
	font-size: 1.8rem;
	line-height: 1.3;
	text-align: center;
	color: #000;
}

h2.heading span {
	display: block;
	font-family: 'Archivo Black', sans-serif;
	letter-spacing: -1px;
	font-size: 9vw;
	color: #036;
}

/*中頁セッション見出し-------------------*/

h3.heading {
	font-size: 4vw;
	text-align: center;
}

h3.heading.icon1b,
h3.heading.icon1w {
	margin: 2em 0 2em 50px;
	text-indent: -70px;
}

h3.heading.icon1b:before,
h3.heading.icon1w:before {
	content: "";
	display: inline-block;
	width: 70px;
	height: 42px;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: bottom;
}

h3.heading.icon1b:before {
	background-image: url(../images/common/icon1b.png);
}

h3.heading.icon1w:before {
	background-image: url(../images/common/icon1w.png);
}

h3.heading.icon2a,
h3.heading.icon2b {
	margin: 2em 0;
}

h3.heading.icon2a:before,
h3.heading.icon2b:before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	margin: 0 auto 1em;
	background-size: contain;
	background-repeat: no-repeat;
}

h3.heading.icon2a:before {
	background-image: url(../images/training/icon2a.png);
}

h3.heading.icon2b:before {
	background-image: url(../images/training/icon2b.png);
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	h3.heading {
		font-size: 2.6rem;
	}
	
	h3.heading.icon1b:before,
	h3.heading.icon1w:before {
		width: 100px;
		height: 60px;
	}
	
	h3.heading.icon2a,
	h3.heading.icon2b {
		display: table;
		margin: 2em auto;
		text-align: left;
		white-space: nowrap;
	}
	
	h3.heading.icon2a span,
	h3.heading.icon2b span {
		display: table-cell;
		vertical-align: middle;
		padding: 0 10px;
	}
	
	h3.heading.icon2a:before,
	h3.heading.icon2b:before {
		display: table-cell;
		width: 140px;
		height: 140px;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/
	
	h2.heading span {
		font-size: 9rem;
	}
}

/*--------------------------------------------------*/
/* HOME:TOPイメージ ----------------------------------*/
/*--------------------------------------------------*/

#main {
	height: 100%;
}

.main_area {
	padding-top: 0;
	height: 100%;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

#topImg {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url(../images/home/topimg_m.jpg);
	background-position: center;
	background-size: cover;
}

#topImg .photo {
display: none;
}

#topImg .catch {
	display: block;
	position: absolute;
	top: 100px;
	margin: 0;
	width: 100%;
	padding: 20px;
	text-align: center;
	z-index: 1;
}

#topImg a.top_scroll {
	position: absolute;
	bottom: 100px;
	right: 50%;
	z-index: 10;
	display: inline-block;
	-webkit-transform: translate(50%, 0);
	transform: translate(50%, 0);
	z-index: 1;
}

#topImg a.top_scroll span {
	position: absolute;
	bottom: -20px;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	border-left: 4px solid #fff;
	border-bottom: 4px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 1.5s infinite;
	animation: sdb 1.5s infinite;
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}

.reduce .main_area {
	position: relative;
	opacity: 0.4;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	.main_area {
		padding-top: 0;
		background: none;
	}
  
  #topImg {
    background-image: none;
  }
  
	#topImg .photo {
		display: block;
		position: absolute;
		top: 0;
		right: 50%;
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		-webkit-transform: translate(50%, 0);
		transform: translate(50%, 0);
		z-index: 0;
	}
	
	#topImg .catch {
		top: 200px;
		left: 5%;
		min-width: 750px;
		width: 50%;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}


/*--------------------------------------------------*/
/* HOME:仕事を知る -----------------------------------*/
/*--------------------------------------------------*/

#top_service .content_area {
	background-color: #fff;
}

#top_service .content_inner {
	padding-top: 0;
}

#top_service figure {
	position: relative;
	height: 300px;
}

#top_service figcaption {
	position: absolute;
	width: 100%;
	bottom: 0;
}

#top_service figcaption a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

#top_service #top_service1 figcaption {
	background-color: #234;
}

#top_service #top_service2 figcaption {
	background-color: #368;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#top_service .content_inner {
		display: table;
		width: 100%;
		padding: 0 0 50px;
	}
	
	#top_service figure {
		display: table-cell;
		position: relative;
		width: 50%;
		overflow: hidden;
		vertical-align: middle;
	}
	
	#top_service figcaption a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 15px;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
	}
	
	#top_service #top_service1 figcaption {
		float: right;
	}
	
	#top_service #top_service2 figcaption {
		float: left;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/
	
	#top_service .content_inner {
		width: 1100px;
	}
	
	#top_service figure {
		height: 400px;
	}
}

/*--------------------------------------------------*/
/* HOME:人材を育てる ---------------------------------*/
/*--------------------------------------------------*/

#top_training .content_area {
	background-color: #eaf4ff;
}

#top_training .content_inner {
	padding-top: 0;
}

#top_training ul {
	margin: 0;
	background-color: #fff;
}

#top_training li .photo_area {
	text-align: center;
}

#top_training li .text_area {
	position: relative;
	margin: 0;
	padding-bottom: 1em;
}

#top_training li .text_area:after {
	content: "";
	position: absolute;
	top: -15px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	width: 0;
	height: 0;
	margin-top: -20px;
	border-style: solid;
	border-width: 0 20px 20px 20px;
	border-color: transparent transparent #fff transparent;
}

#top_training li .body_text {
	text-align: center;
}

#top_training li .heading {
	font-size: 1.6rem;
	font-weight: bold;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#top_training .content_area {
		background: #eaf4ff url(../images/home/bg_training.png) bottom center no-repeat;
		background-size: contain;
	}

	#top_training li:after {/* clearfix */
		content: "";
		display: block;
		clear: both;
	}

	#top_training li > div {
		float: left;
		width: 50%;
	}

	#top_training #top_training2 .photo_area {
		float: right;
	}
	
	#top_training li .text_area {
		padding-bottom: 0;
	}
	
	#top_training #top_training1 .text_area:after,
	#top_training #top_training3 .text_area:after {
		content: "";
		position: absolute;
		top: auto;
		bottom: 50%;
		left: -20px;
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 20px 20px 0;
		border-color: transparent #fff transparent transparent;
	}
	
	#top_training #top_training2 .text_area:after {
		content: "";
		position: absolute;
		top: auto;
		bottom: 50%;
		right: -20px;
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 0 20px 20px;
		border-color: transparent transparent transparent #fff;
	}
	
	#top_training li .body_text {
		display: table-cell;
		width: 500px;
		height: 220px;
		vertical-align: middle;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}

/*--------------------------------------------------*/
/* HOME:お知らせ -------------------------------------*/
/*--------------------------------------------------*/

#top_info .content_area {
	min-height: 0;
	background-color: #025;
}

#top_info .content_inner {}

.tabMenu {
	width: 100%;
	background: #fff;
}

.tabMenu #tabBtn {
	position: relative;
	margin: 0;
	width: 100%;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.tabMenu #tabBtn li {
	display: block;
	position: relative;
	background-color: #abc;
	width: 50%;
	height: 60px;
	color: #000;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.tabMenu #tabBtn li img {
	vertical-align: middle;
	margin: 0 0.5em;
}

.tabMenu #tabBtn li.active {
	color: #000;
	background-color: #fff;
}

.tabMenu #tabBox {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 25px 30px;
}

.tabMenu #tab2 {
	display: none;
}

#tabBox ul li {
		padding: 1em 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#tabBox ul li > span a {
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 102, 0, 0);
}

#tabBox ul li > span a:hover {
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 102, 0, 1);
}

#tabBox ul li .toppage_title {
	width: 80%;
}

#tabBox ul li .toppage_new_img {
	width: 10%;
}

#tabBox .pastlog {
	text-align: center;
}

.toppage_new_img img {
	vertical-align: middle;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#tabBox ul {
	display: table;
	table-layout: auto;
	width: 100%;
}
	
	#tabBox ul li {
		display: table-row;
		border: none;
	}
	
	#tabBox ul li > span {
		display: table-cell;
		padding: 1em;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	
	#tabBox .pastlog {
		float: right;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}

/*--------------------------------------------------*/
/* 会社を知る ----------------------------------------*/
/*--------------------------------------------------*/
/*
#company1 .content_area {
	background-image: url(../images/company/president.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	padding-bottom: 50%;
}

#company1 .catch {
	width: 90%;
}
*/
#company1 .catch {
	height: 50px;
	margin: 10px;
	margin-left: 0;
}

#company1 .sign {
	font-size: 2rem;
}

#company2 .content_area {
	background-repeat: no-repeat;
		background-size: cover;
	background-position: 80% 0;
	color: #fff;
}

#company2 .text_area {
	margin: 2em 0;
}

#company2 .text_area table th {
	padding-right: 1em;
	text-align: left;
	white-space: nowrap;
}

#company2 .list > li:before,
#company2 .list > dt:before {
	background-color: #fff;
}

#company3 .content_area {
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	padding-bottom: 30%;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	/*
	#company1 .content_area {
		background-position: top;
		background-size: cover;
		padding-bottom: 10px;
	}
	
	#company1 h2,
	#company1 .text_area {
		width: 60%;
	}
	*/
	#company1 .catch {
		height: 70px;
	}
	
	#company2 .text_area.multi {
		float:left;
		width: 50%;
	}
	
	#company3 .text_area.multi {
		float:left;
		width: 33%;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}

/*--------------------------------------------------*/
/* 仕事を知る ----------------------------------------*/
/*--------------------------------------------------*/

#service1 .content_area,
#service2 .content_area {
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	padding-bottom: 38%;
}

#service1 dt {
	font-size: 1.5rem;
	font-weight: bold;
}

#service1 dd {
	margin: 1em 0;
}

#service1 img,
#service2 img {
	width: 100%;
}

#service1 .photo,
#service2 .photo {
	border: 1px solid #fff;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#service1,
	#service2 {
		min-height: 100%;
	}
	
	#service1 .photo_area {
		float: left;
		width: 50%;
	}
	
	#service1 #photo1b {
		width: 50%;
		margin-top: -30px;
	}
	
	#service1 .text_area {
		float: right;
		width: 50%;
		padding-left: 40px;
	}
	
	#service2 .photo_area {
		float: right;
		width: 50%;
	}
	
	#service2 .text_area {
		float: left;
		width: 50%;
		padding-right: 40px;
	}
	
	#service2 #photo2b {
		width: 60%;
		margin-top: -80px;
		margin-left: -180px;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

}

/*--------------------------------------------------*/
/* 人材を育てる --------------------------------------*/
/*--------------------------------------------------*/

#training1 .content_area,
#training2 .content_area {
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	padding-bottom: 38%;
}

#training1 img,
#training2 img,
#training3 img {
	width: 100%;
}

#training1 .photo,
#training2 .photo {
	border: 1px solid #fff;
}

#training .catch {
	margin: 0 -10px;
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

#training3 .photo_area dl {
	position: relative;
}

#training3 .photo_area dt {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 1;
}

#training3 .photo_area dt:before {
	display: block;
	counter-increment: number;
	content: "0" counter(number);
	position: absolute;
	top: 25px;
	left: 15px;
	z-index: 1;
	text-align: center;
	vertical-align: middle;
	font: 4rem/1.6em 'Teko', sans-serif;
	color: #fff;
}

#training3 .photo_area dt a {
	display: block;
	margin: 20px 0 20px 20px;
	padding: 1em;
	background-color: #000;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

#training3 .photo_area dt .dep {
	display: block;
	font-size: 1.2rem;
}

/*--------------------------------------------------*/
@media screen and (min-width: 568px) {
/*--------------------------------------------------*/
	
	#training3 .photo_area dl {
		float: left;
		width: 50%;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#training1,
	#training2 {
		min-height: 100%;
	}
	
	#training1 .content_area,
	#training2 .content_area {
		padding-bottom: 15%;
	}
	
	#training1 .photo_area {
		float: left;
		width: 50%;
	}
	
	#training1 #photo1b {
		width: 60%;
		margin-top: -50px;
		margin-left: -30px;
	}
	
	#training1 .text_area {
		float: right;
		width: 50%;
		padding-left: 40px;
	}
	
	#training2 .photo_area {
		float: right;
		width: 50%;
	}
	
	#training2 .text_area {
		float: left;
		width: 50%;
		padding-right: 40px;
	}
	
	#training2 #photo2b {
		width: 60%;
		margin-top: -50px;
		margin-left: -30px;
	}
	
	#training3 .photo_area dl {
		width: 25%;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/

	#training .catch {
	margin: 0 -40px;
	}
}

/*--------------------------------------------------*/
/* 先輩の声 -----------------------------------------*/
/*--------------------------------------------------*/

#intro .person {
	position: absolute;
	top: 50px;
	display: table;
	height: 10vh;
}

#intro .person > * {
	display: block;
}

#intro .number {
	width: 130px;
	padding-right: 30px;
	background-color: #000;
	font: 2rem/2.8em 'Teko', sans-serif;
	color: #fff;
}

#intro .number span {
	display: block;
	font-size: 10rem;
}


#intro .name {
	font-size: 1.8rem;
	line-height: 1.4;
}

#intro .name span {
	display: block;
	font-size: 10vw;
}

#interview img {
	width: 100%;
}

#interview .text_area,
#message .text_area {
	margin-bottom: 4em;
}

#interview .text_area p,
#message .text_area p {
	margin: 0;
}

#message .content_area {
	background-color: #cde;
}


/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#intro .person {
		height: 50%;
	}
	
	#intro .person > * {
		display: table-cell;
		vertical-align: bottom;
	}
	
	#intro .name {
		padding-left: 20px;
	}
	
	#intro .name span {
	font-size: 5rem;
	}
	
	#interview .photo_area .photo {
		float: left;
		width: 50%;
	}
	
	#interview .text_area.multi,
	#message .text_area.multi {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
	}
}

/*--------------------------------------------------*/
@media screen and (min-width: 1100px) {
/*--------------------------------------------------*/
	
	#intro .person {
		top: 100px;
	}
	#intro .name span {
		font-size: 7rem;
	}
}

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

.access .heading {
	margin: 1em 0;
	background-color: #369;
	font-size: 2rem;
	text-align: center;
	color: #fff;
}

.access > * {
	padding: 5px;
}

.access .gmap {
	margin: 1em 0;
	padding: 0;
	width: 100%;
	height: 450px;
}

.access .gmap iframe {
	width: 100%;
	height: 450px;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#contact1 dl {
		float :left;
		width: 50%;
		padding: 20px;
	}
}

/*--------------------------------------------------*/
/* 最新情報／募集要項----------------------------------*/
/*--------------------------------------------------*/

#info {
	min-height: 100%;
}

#recruit1 .content_area {
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	padding-bottom: 38%;
}

#recruit1 li {
	position: relative;
	margin: 20px auto;
	padding: 1em 50px;
	background-color: #f93;
	border-radius: 10px;
	text-align: center;
}

#recruit1 li:before {
	display: block;
	counter-increment: number;
	content: counter(number);
	position: absolute;
	bottom: 50%;
	left: 20px;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	z-index: 1;
	text-align: center;
	vertical-align: middle;
	font: 4rem/1em 'Teko', sans-serif;
	color: #fff;
}

#recruit1 li:after {
	content: "";
	position: absolute;
	bottom: -20px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #f93 transparent transparent transparent;
}

#recruit1 li:last-child:after {
	display: none;
}

#recruit1 li span {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
}

#recruit2 li {
	margin: 1em 0;
	padding: 1em;
	background-color: #cde;
}

#recruit2 li span {
	padding-right: 15px;
}

#recruit .toppage_title a {
	font-size: 1.8rem;
	text-decoration: none;
}

#recruit .pg_main a[title] {
	display: block;
	width: 240px;
	margin: 3em auto;
	padding: 1em;
	background-color: #f60;
	border-radius: 10px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
}

#recruit .pg_main a[title]:hover {
	background-color: #f93;
}

/*--------------------------------------------------*/
@media screen and (min-width: 768px) {
/*--------------------------------------------------*/
	
	#recruit1 li {
		padding: 30px;
		width: 70%;
	}
}