/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Base Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

html, body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust:none;
  min-width: 1000px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size:16px;
  color:#333;
}
/* sPhone */
@media screen and (max-width: 767px) {
  html, body {
    min-width:0;
  }
}


*.over {
  transition:all 100ms ease-out;
}
*:hover.over {
	filter:alpha(opacity=70) !important;
	-moz-opacity:0.7 !important;
	opacity:0.7 !important;
}

.pc_disp { display:block;}
.sp_disp { display:none;}

.center { text-align:center;}


/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Font

/////////////////////////////////////////////////////////////////////////////////////////////////*/

.font_ym {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.font_yg {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.color_w { color:#fff;}

.text_glow_w {
  text-shadow: rgb(255, 255, 255) 0px 0px 10px,rgb(255, 255, 255) 0px 0px 10px,rgb(255, 255, 255) 0px 0px 10px,rgb(255, 255, 255) 0px 0px 10px;
}

.font_r {
  color: #B20000;
}

.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.b {font-weight: bold;}

/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Header Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

header {
  width:100%;
  height:70px;
  background-color:rgba(34,34,34,0.85);
  color:#fff;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}
header h1 {
  float:left;
  padding:23px 0 0 20px;
}
header h1 span {
  display:inline-block;
  vertical-align:top;
  border-left:#fff 1px solid;
  padding-left:10px;
  margin-left:10px;
  margin-top:5px;
  font-size:17px;
  font-weight:bold;
  letter-spacing: 0.04em;
}
header h1 img {
  width:150px;
  height:auto;
}

header nav {
  float:right;
}
header nav div {
  float:left;
  display:table;
  width:140px;
  height:70px;
  position:relative;
}
header nav div > a {
  display:table-cell;
  vertical-align:middle;
  font-size:14px;
  font-weight:bold;
  text-align:center;
  letter-spacing: 0.04em;
}
header nav div.act > a,
header nav div.select > a,
header nav div > a:hover {
  color:#AF9574;
}
header nav div > a span {
  display:block;
  margin-top:8px;
  font-size:12px;
  font-weight:normal;
  letter-spacing:normal;
}

header nav div.act > a:after,
header nav div.select > a:after,
header nav div > a:hover:after {
  content:"";
  display:block;
  width:130px;
  border-bottom:#BAA286 1px solid;
  position:absolute;
  bottom:2px;
  left:0;
  right:0;
  margin:0 auto;
}

/* ENTRY */
header nav div:last-child {
  background-color:#E25F50;
}
header nav div:last-child > a {
  font-size:16px;
}
header nav div:last-child > a:hover {
  color:#fff;
  background-color:#222;
}
header nav div:last-child > a:after,
header nav div:last-child > a:hover:after {
  content:"";
  display:inline-block;
  width:14px;
  height:10px;
  margin-left:6px;
  background:url(../img/header_double_arrow.png) no-repeat;
  background-size:14px auto;
  position:static;
  border:none;
}


/* Sub Nav */
header nav ul {
  display:none;
  width:200%;
  padding:20px 30px;
  margin-top:1px;
  background-color:#BAA286;
  position:absolute;
  top:70px;
  left:0;
}
header nav li a {
  display:inline-block;
  padding:10px 0;
  font-size:14px;
  font-weight:bold;
  line-height:140%;
  color:#333;
}
header nav li a:hover {
  color:#fff;
}

header nav li a:before {
  content:"";
  display:inline-block;
  width:7px;
  height:11px;
  margin-right:10px;
  background:url(../img/header_arrow.png) no-repeat;
  background-size:7px auto;
}

/* font */
header nav div > a span,
header nav li a {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


@media screen and (max-width: 1020px) {
  
  header h1 {
    padding:26px 0 0 10px;
  }
  header h1 img {
    width:100px;
    height:auto;
  }
  header h1 span {
    padding-left:5px;
    margin-left:5px;
    margin-top:3px;
    font-size:12px;
    letter-spacing:normal;
  }
  
  header nav div {
    width:110px;
  }
  header nav div > a {
    font-size:12px;
    letter-spacing:normal;
  }
  header nav div > a span {
    font-size:10px;
  }
  header nav div:last-child > a {
    font-size:14px;
  }
  
  header nav div.act > a:after,
  header nav div.select > a:after,
  header nav div > a:hover:after {
    width:100px;
  }
  
  /* Sub Nav */
  header nav ul {
    padding:20px 30px;
  }
  header nav li a {
    display:inline-block;
    padding:10px 0;
    font-size:12px;
  }
  
}

/* sPhone */
@media screen and (max-width: 767px) {

  *:hover.over {
    filter:alpha(opacity=100) !important;
    -moz-opacity:1 !important;
    opacity:1 !important;
  }

  .pc_disp { display:none;}
  .sp_disp { display:block;}
  
  header {
    height:50px;
  }
  header h1 {
    padding:17px 0 0 10px;
  }
  header nav {
    float:none;
    width:100%;
    position:absolute;
    top:50px;
    left:0;
  }
  header nav div {
    width:100%;
    height:auto;
    border-top:#fff 1px solid;
    background-color:rgba(0,0,0,0.85);
  }
  header nav div > a {
    display:block;
    padding:10px;
    text-align:left;
    font-size:16px;
    position:relative;
  }
  header nav div > a span {
    margin-top:6px;
  }
  
  header nav div > a,
  header nav div > a:hover {
    color:#FFF;
  }
  header nav div.select > a {
    color:#AF9574;
  }

  header nav div.act > a:after,
  header nav div.select > a:after,
  header nav div > a:hover:after,
  header nav div > a:after {
    content:"";
    display:block;
    width:7px;
    height:11px;
    border:none;
    background:url(../img/header_arrow.png) no-repeat;
    background-size:7px auto;
    position:absolute;
    top:0;
    bottom:0;
    right:10px;
    left:auto;
    margin:auto;
  }
  
  header nav div.submenu.act > a:after,
  header nav div.submenu > a:hover:after,
  header nav div.submenu > a:after {
    content:"";
    display:block;
    width:11px;
    height:7px;
    border:none;
    background:url(../img/header_down_arrow.png) no-repeat;
    background-size:11px auto;
    position:absolute;
    top:0;
    bottom:0;
    right:10px;
    left:auto;
    margin:auto;
  }
  header nav div.submenu.select > a:after {
    content:"";
    display:block;
    width:11px;
    height:7px;
    border:none;
    background:url(../img/header_up_arrow.png) no-repeat;
    background-size:11px auto;
    position:absolute;
    top:0;
    bottom:0;
    right:10px;
    left:auto;
    margin:auto;
  }
  
  header nav div:last-child > a {
    padding:16px 10px;
    text-align:center;
    font-size:20px;
  }
  header nav div:last-child > a:hover {
    background-color:#AF9574;
  }
  header nav div:last-child > a:after,
  header nav div:last-child > a:hover:after {
    content:"";
    display:block;
    margin-left:0;
    position:absolute;
    top:0;
    bottom:0;
    right:10px;
    margin:auto;
  }

  header nav ul {
    padding:0;
    position:static;
    width:100%;
  }
  header nav li a {
    display:block;
    padding:10px;
    font-size:13px;
  }
  header nav li a:hover {
    color:#333 !important;
  }

  header .sp_menu {
    float:right;
    width:50px;
    height:50px;
    background:#000 url(../img/sp_menu.gif) no-repeat center center;
    background-size:22px auto;
  }
  header .sp_menu.open {
    background:#000 url(../img/sp_menu_close.gif) no-repeat center center;
    background-size:22px auto;
  }
  
  
  
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Contents Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

section {
  position:relative;
  background-color:#fff;
}

section .ttl {
  display:table;
  width:100%;
  height:100px;
  position:relative;
}
section .ttl:after {
  content:"";
  width:32px;
  height:24px;
  position:absolute;
  bottom:-15px;
  left:0;
  right:0;
  z-index:100;
  margin:0 auto;
}
section .ttl h2 {
  display:table-cell;
  vertical-align:middle;
  text-align:center;
  font-size:32px;
  font-weight:bold;
  color:#fff;
}
section .ttl h2 span {
  display:block;
  padding-top:12px;
  font-size:15px;
  font-weight:normal;
}


/* 詳細ボタン */
section .detail_btn {
  display:block;
  padding:20px;
  background-color:#222222;
  border-radius:4px;
  text-align:center;
  letter-spacing: -0.05em;
  font-size:20px;
  color:#fff;
  box-shadow: rgba(0,0,0,0.5) 1px 1px 6px;
}
section .detail_btn:after {
  content:"";
  display:inline-block;
  width:9px;
  height:14px;
  margin-left:10px;
  background:url(../img/detail_arrow.png) no-repeat;
  background-size:9px 14px;
}
section .detail_btn:hover {
  background-color:#AF9574;
}


/* 戻るボタン */
section .back_btn {
  display:block;
  padding:20px;
  background-color:#AAAAAA;
  border-radius:4px;
  text-align:center;
  letter-spacing: -0.05em;
  font-size:20px;
  color:#fff;
  box-shadow: rgba(0,0,0,0.5) 1px 1px 6px;
}
section .back_btn:before {
  content:"";
  display:inline-block;
  width:9px;
  height:14px;
  margin-right:10px;
  background:url(../img/detail_arrow.png) no-repeat;
  background-size:9px 14px;
  transform: rotate(180deg);
}
section .back_btn:hover {
  background-color:#777777;
}


/* エントリーボタン */
section .entry_btn {
  display:block;
  padding:30px;
  background-color:#E25F50;
  border-radius:4px;
  text-align:center;
  letter-spacing: -0.05em;
  font-size:26px;
  color:#fff;
  box-shadow: rgba(0,0,0,0.5) 1px 1px 6px;
}
section .entry_btn:after {
  content:"";
  display:inline-block;
  width:12px;
  height:18px;
  margin-left:15px;
  background:url(../img/detail_arrow.png) no-repeat;
  background-size:12px 18px;
}
section .entry_btn:hover {
  background-color:#222222;
}


/* セクションタイトル */

.ttl_area {
  width:100%;
  height:400px;
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
}
.ttl_area .inner {
  display:table;
  width:540px;
  height:100%;
  padding-left:50px;
  background-repeat:no-repeat;
}
.ttl_area .inner h2 {
  display:table-cell;
  vertical-align:middle;
  font-size:64px;
  color:#fff;
  line-height:120%;
}
.ttl_area .inner h2 span {
  display:inline-block;
  padding:5px 10px 3px;
  margin-bottom:15px;
  background-color:#fff;
  border-radius:4px;
  font-size:16px;
  font-weight:bold;
  line-height:1;
  letter-spacing:normal;
}

/* 職種紹介を見る */

.job_info .ttl {
	position: relative !important;
	background-color:#BAA286;
}
.job_info .ttl:after {
  background: url(../../img/section_ttl_arrow.png) no-repeat;
}
.job_info .ttl h2 {
	font-size: 15px;
}
.job_info .ttl h2 span {
	font-size: 36px;
}
.job_info .inner {
	width: 100%;
	max-width: 1000px;
	margin: auto;padding: 60px 0;
}
.job_info .joblayout li { 
	width: 320px;
	float: left;
}
.job_info .joblayout .job_area {
	position: relative;
}
.job_info .joblayout li {
	width: 33.3333%;
	float: left;
	padding-left: 20px;
}
.job_info .joblayout li img {
	display: block;
	max-width: 100%;
}
.job_info .joblayout li:first-child {
	margin-left: -10px;
}
.job_info .joblayout li:nth-child(2) {
	margin: 0;
}
.job_info .joblayout li h3 {
	width: 100%;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	bottom: 0;
	background-color: rgba(255,255,255,0.5);
	padding: 15px 0;
	margin-top: -1px;
	text-shadow: rgb(255, 255, 255) 0px 0px 10px,
			 rgb(255, 255, 255) 0px 0px 10px,
			 rgb(255, 255, 255) 0px 0px 10px,
			 rgb(255, 255, 255) 0px 0px 10px;
}
.job_info .joblayout li p {
	font-size: 22px;
	margin-top: 15px;
	line-height: 180%;
	text-align: center;
}
.job_info .joblayout li:nth-child(1) h3 { color: #E47679; }
.job_info .joblayout li:nth-child(2) h3 { color: #728EC4; }
.job_info .joblayout li:nth-child(3) h3 { color: #D98546; }
.job_info .joblayout li h3:after{
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-left: 15px;
	background-repeat: no-repeat;
	background-size: 22px auto;
	border-radius: 22px;
	box-shadow: rgb(255, 255, 255) 0px 0px 10px,
			rgb(255, 255, 255) 0px 0px 10px,
			rgb(255, 255, 255) 0px 0px 10px;
}
.job_info .joblayout li:nth-child(1) h3:after {
  background-image:url(../../img/sec04_sp_arrow01.png);
}
.job_info .joblayout li:nth-child(2) h3:after {
  background-image:url(../../img/sec04_sp_arrow02.png);
}
.job_info .joblayout li:nth-child(3) h3:after {
  background-image:url(../../img/sec04_sp_arrow03.png);
}
.job_info .inner li .box_img {
  display:block;
  width:100%;
  height:100%;
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  transition:all 500ms ease-out;
}
.job_info .inner li.act .box_img {
  opacity:1;
  background:url(../../common/img/over_w.png);
}
.job_info .box_over {
  display:none;
  width:100%;
  height:100%;
  background:url(../../common/img/over_b.png);
  position:absolute;
  top:0;
  left:0;
}

/* pagination */

.pagination {
	width: 100%;
	background: #222;
}
.pagination ul {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 70px;
	margin: auto;
}
.pagination li {
	position: absolute;
	color: #fff;
	top: 50%;
	-webkit-transform : translate(0,-50%);
	-ms-transform : translate(0,-50%);
	transform : translate(0,-50%);
}
.pagination li.prev {
	left: 10px;
}
.pagination li.next {
	right: 10px;
}
.pagination li a {
	font-size: 20px;
}
.pagination li.prev a:before {
	content:"";
	display:inline-block;
	width:9px;
	height:15px;
	margin-right: 10px;
	background:url(../../common/img/prev_arrow.png) no-repeat;
	background-size:9px 30px;
	background-position: 0 0;
}
.pagination li.next a:after {
	content:"";
	display:inline-block;
	width:9px;
	height:15px;
	margin-left: 10px;
	background:url(../../common/img/next_arrow.png) no-repeat;
	background-size:9px 30px;
	background-position: 0 0;
}
.pagination li a:hover { color: #AF9574; }
.pagination li.prev:hover a:before {
	background-position: 0 -15px;
}
.pagination li.next:hover a:after { 
	background-position: 0 -15px;
}



/* sPhone */
@media screen and (max-width: 767px) {

section .ttl {
  height:60px;
}
section .ttl:after {
  content:"";
  width:16px;
  height:12px;
  bottom:-12px;
  background-size:16px auto !important;
}
section .ttl h2 {
  font-size:16px;
}
section .ttl h2 span {
  padding-top:5px !important;
  font-size:10px;
}

/* 詳細ボタン */
section .detail_btn {
  padding:15px;
  font-size:18px;
}
section .detail_btn:after {
  width:7px;
  height:11px;
  background-size:7px 11px;
}

/* 詳細ボタン */
section .back_btn {
  padding:15px;
  font-size:18px;
}
section .back_btn:after {
  width:7px;
  height:11px;
  background-size:7px 11px;
}


/* エントリーボタン */
section .entry_btn {
  padding:17px;
  font-size:20px;
}
section .entry_btn:after {
  width:8px;
  height:13px;
  margin-left:10px;
  background-size:8px 13px;
}


/* セクションタイトル */
.ttl_area {
  height:170px;
}
.ttl_area .inner {
  width:auto;
  padding:0 50px 0 10px;
  background-position:top right;
  background-size: auto 100%;
}
.ttl_area .inner h2 {
  padding-top:40px;
  font-size:26px;
}
.ttl_area .inner h2 span {
  padding:4px 5px 2px;
  margin-bottom:8px;
  font-size:9px;
}

/* 職種紹介を見る */

.job_info .inner {
	background: #FCFCFA;
	padding: 30px 0;
}
.job_info .joblayout .job_area {
	position: static;
}
.job_info .joblayout li .job_area_sp {
	position: relative;
}
.job_info .ttl h2 {
	font-size: 10px;
}
.job_info .ttl h2 span {
	font-size: 16px;
}
.job_info .joblayout li h3 {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	line-height: 140%;
	position: relative;
	background-color: initial;
	padding: 5px 25px 5px 0;
}
.job_info .joblayout li .job_icon_area h3:after {
	content:"";
	width:16px;
	height:16px;
	background-size:16px auto;
	background-repeat:no-repeat;
	position:absolute;
	top: 50%;
	right: 0;
	margin-left: 0;
	-webkit-transform : translate(0,-50%);
	-ms-transform : translate(0,-50%);
	transform : translate(0,-50%);
}
.job_info .joblayout li p {
	font-size: 12px;
	text-align: left;
	margin-top: 0;
}

/* pagination */

.pagination ul {
  height: 40px;
}
.pagination li a {
  font-size: 14px;
}
.pagination li.prev a:before {
  width:7px;
  height:11px;
  margin-right: 5px;
  background-size:7px 23px;
}
.pagination li.next a:after {
  width:7px;
  height:11px;
  margin-right: 5px;
  background-size:7px 23px;
	
}
.pagination li.prev:hover a:before {
	background-position: 0 -12px;
}
.pagination li.next:hover a:after {
	background-position: 0 -12px;
}
  


}

/* 職種紹介を見る */
@media screen and (max-width: 640px) {
  .job_info .joblayout li:nth-child(1) h3 {margin-top: 11px;}
  .job_info .joblayout li:nth-child(1) p {padding-top: 11px;}
  .job_info .joblayout li:nth-child(2) h3 {margin-top: 11px;}
  .job_info .joblayout li:nth-child(2) p {padding-top: 11px;}
}
@media screen and (max-width: 440px) {
  .job_info .joblayout li:nth-child(2) h3 {margin-top: 0;}
  .job_info .joblayout li:nth-child(2) p {padding-top: 0;}
}
@media screen and (max-width: 390px) {
  .job_info .joblayout li:nth-child(1) h3 {margin-top: 11px;}
  .job_info .joblayout li:nth-child(2) h3 {margin-top: 11px;}
  .job_info .joblayout li:nth-child(1) p {padding-top: 11px;}
  .job_info .joblayout li:nth-child(2) p {padding-top: 11px;}
}
@media screen and (max-width: 375px) {
  .job_info .joblayout li:nth-child(1) h3 {margin-top: 7px;}
  .job_info .joblayout li:nth-child(2) h3 {margin-top: 7px;}
  .job_info .joblayout li:nth-child(1) p {padding-top: 7px;}
  .job_info .joblayout li:nth-child(2) p {padding-top: 7px;}
  .job_info .joblayout li h3 {font-size: 11px;}
  .job_info .joblayout li p {font-size: 11px;}
  .job_info .joblayout li .job_icon_area h3:after {width:12px;height:12px;background-size: 12px auto;}
}
@media screen and (max-width: 340px) {
  .job_info .joblayout li h3 {padding: 5px 15px 5px 0;}
  .job_info .joblayout li:nth-child(1) h3 {margin-top: 7px;}
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Footer Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

footer {
  width:100%;
  padding:40px 20px;
  background-color:#fff;
  position:relative;
  text-align:center;
}
footer h2 {
  padding-bottom:20px;
  font-size:20px;
  font-weight:bold;
}

footer .pageTop {
  display:none;
  position:fixed;
  bottom:120px;
  right:20px;
  z-index:1000;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #BAA286;
}
footer .pageTop:hover {
  background-color:#222;
}

footer .pageTop span {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
	line-height: 140%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
	margin-top: -2px;
}
footer .pageTop span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 9px;
  background: url("../../common/img/pagetop_arrow.png") no-repeat;
  background-size: 14px 9px;
}

footer .box {
  display:inline-block;
  padding:8px 12px;
  margin-bottom:30px;
  background-color:#222;
  border-radius:4px;
  font-size:14px;
  font-weight:bold;
  color:#fff;
  line-height:100%;
}
footer .box:after {
  content:"";
  display:inline-block;
  width:7px;
  height:11px;
  margin-left:5px;
  background:url(../img/header_arrow.png) no-repeat;
  background-size:7px auto;
}
footer .box:hover {
  background-color:#AF9574;
}

/*
footer .name {
  padding-bottom:10px;
  font-size:12px;
  font-weight:bold;
}
footer .tel {
  padding-bottom:10px;
  font-size:22px;
  font-weight:bold;
}
footer .tel:before {
  content:"";
  display:inline-block;
  width:24px;
  height:16px;
  margin-right:10px;
  background:url(../img/icon_tel.gif) no-repeat;
  background-size:24px auto;
}
footer .time {
  padding-bottom:20px;
  font-size:14px;
}

footer .copy_area {
  position:absolute;
  bottom:30px;
  right:20px;
  text-align:left;
}
*/

footer .exp {
  display: inherit;
  font-size:10px;
}

footer .copy_area p {
  padding-bottom:10px;
  font-size:12px;
}


@media screen and (max-width: 1080px) {
  
  footer .copy_area {
    position:static;
    text-align:center;
    padding-top:30px;
    margin-top:30px;
    border-top:#eee 1px solid;
  }
  
}

/* sPhone */
@media screen and (max-width: 767px) {

  footer {
    padding:25px 0;
  }
  footer h2 {
    padding-bottom:15px;
    font-size:18px;
  }
  footer .box {
    padding:10px 15px;
    margin-bottom:0;
  }
  footer .tel {
    font-size:20px;
  }
  footer .copy_area {
    padding-top:20px;
    margin-top:25px;
  }
  footer .copy_area p {
    padding-bottom:5px;
    font-size:9px;
  }
  footer .copy_area .exp {
    font-size:8px;
  }
  /* pageTop */
  footer .pageTop {
		display: block !important;
		opacity: 1 !important;
		position: static;
		width: 100%;
		height: auto;
		border-radius: 0px;
		background: #BAA286;
		padding: 10px 0;
		margin-top: -25px;
		margin-bottom: 25px;
	}
  footer .pageTop span {
		position: relative;
		color: #fff;
		font-size: 16px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 140%;
		top: 1px;
		left: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		margin-top: 0;
  }
  footer .pageTop span:before {
		content: none;
  }
  footer .pageTop span:after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 8px;
		margin-left: 10px;
		margin-bottom: 0;
		background: url("../../common/img/pagetop_arrow.png") no-repeat;
		background-size: 12px 8px;
  }
	footer .pageTop:hover {
		background: #222;
	}

}


/* IE9 */
body .ttl_area .inner h2 span:not(:target) { padding:5px 10px 0px\9; }
body .job_info .ttl h2:not(:target) {position: relative\9; top: 4px\9; }
body footer .box { padding: 5px 10px 2px\9; }
/* IE10 */
@media all and (-ms-high-contrast: none) {
	.ttl_area .inner h2 span:not(:target) { padding:5px 10px 0px; }
	.job_info .ttl h2:not(:target) { position: relative; top: 4px; }
	footer .box { padding: 5px 10px 2px; }
}
/* IE11 */
@media all and (-ms-high-contrast: none) {
	.ttl_area .inner h2 span { padding:5px 10px 0px; }
	footer .box { padding: 5px 10px 2px; }
}


	
	