@charset "UTF-8";

/*　Noto font */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

body {
  background: #fff;
　font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

.cfx::after{
  content: "";
  display: block;
  clear: both;
}

html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
}


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

	Base

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

body {
　color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
	-webkit-text-size-adjust: none;
}

body .text-def {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro";
}

body a {
	color: #222;
	text-decoration: none;
}

body img {
  width: 100%;
  vertical-align: bottom;
}

.blk-pc {display: block;}
.blk-sp {display: none;}

.cfx::after{
  content: "";
  display: block;
  clear: both;
}

a img.img-hover {
-webkit-transition: opacity .5s ease;
transition: opacity .5s ease;
}

a:hover img.img-hover {
opacity: 0.7;
filter: alpha(opacity=70);
}


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

	Module

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


/* 
	Job Color
------------------------------------------- */

.mod-color-newgraduate {
 background: rgba(47,149,220,.5);
 background: -webkit-linear-gradient(left, rgba(47,149,220,.5) 1%,rgba(28,202,234,.5) 100%);
 background: linear-gradient(to right, rgba(47,149,220,.5) 1%,rgba(28,202,234,.5) 100%);
}

.mod-color-newgraduate-opa100 {
 background: rgba(47,149,220,1);
 background: -webkit-linear-gradient(left, rgba(47,149,220,1) 1%,rgba(28,202,234,1) 100%);
 background: linear-gradient(to right, rgba(47,149,220,1) 1%,rgba(28,202,234,1) 100%);
}

.mod-color-midcareer {
 background: rgba(255,107,8,.5);
 background: -webkit-linear-gradient(left, rgba(255,107,8,.5) 0%,rgba(255,192,0,.5) 100%);
 background: linear-gradient(to right, rgba(255,107,8,.5) 0%,rgba(255,192,0,.5) 100%);
}

.mod-color-midcareer-opa100 {
 background: rgba(255,107,8,1);
 background: -webkit-linear-gradient(left, rgba(255,107,8,1) 0%,rgba(255,192,0,1) 100%);
 background: linear-gradient(to right, rgba(255,107,8,1) 0%,rgba(255,192,0,1) 100%);
}

.mod-color-disabilities {
 background: rgba(7,181,3,.5);
 background: -webkit-linear-gradient(left, rgba(7,181,3,.5) 0%,rgba(126,206,54,.5) 100%);
 background: linear-gradient(to right, rgba(7,181,3,.5) 0%,rgba(126,206,54,.5) 100%);
}

.mod-color-disabilities-opa100 {
 background: rgba(7,181,3,1);
 background: -webkit-linear-gradient(left, rgba(7,181,3,1) 0%,rgba(126,206,54,1) 100%);
 background: linear-gradient(to right, rgba(7,181,3,1) 0%,rgba(126,206,54,1) 100%);
}

.mod-color-parttimejob {
 background: rgba(253,87,87,.5);
 background: -webkit-linear-gradient(left, rgba(253,87,87,.5) 0%,rgba(255,127,202,.5) 100%);
 background: linear-gradient(to right, rgba(253,87,87,.5) 0%,rgba(255,127,202,.5) 100%);
}

.mod-color-parttimejob-opa100 {
 background: rgba(253,87,87,1);
 background: -webkit-linear-gradient(left, rgba(253,87,87,1) 0%,rgba(255,127,202,1) 100%);
 background: linear-gradient(to right, rgba(253,87,87,1) 0%,rgba(255,127,202,1) 100%);
}


/* 
	Fade Animation
------------------------------------------- */

.js-fadein,
.js-fadein-static {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all .5s;
}
 
/* 画面内に入った状態 */
.js-fadein.js-animated,
.js-fadein-static.js-animated {
  opacity: 1;
  transform: translate(0, 0);
 }

/* 複数を順位出す場合　親要素に「.js-fadegroup」をつける */ 
.js-fadegroup .js-fadein:nth-of-type(2),
.js-fadegroup .js-fadein-static:nth-of-type(2){
  -webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.js-fadegroup .js-fadein:nth-of-type(3),
.js-fadegroup .js-fadein-static:nth-of-type(3){
  -webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.js-fadegroup .js-fadein:nth-of-type(4),
.js-fadegroup .js-fadein-static:nth-of-type(4){
  -webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

/* 
	title
------------------------------------------- */

.mod-maintitle {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}
.mod-subtitle {	
	font-size: 1.8rem;
	font-weight: 400;
}
.mod-categorytitle {
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
}

/* 
	text
------------------------------------------- */

.mod_fontw_100 {font-weight:100;}
.mod_fontw_300 {font-weight:300;}
.mod_fontw_400 {font-weight:400;}
.mod_fontw_500 {font-weight:500;}
.mod_fontw_700 {font-weight:700;}
.mod_fontw_900 {font-weight:900;}

.mod-ta-center { text-align: center;}
.mod-ta-left { text-align: left;}
.mod-ta-right { text-align: right;}

/* 
	btn
------------------------------------------- */

.mod-btn {
	display: table;
	position: relative;
	width: 100%;
	height: 40px;
}

.mod-btn a {
	display: table;
	position: relative;
	width: 100%;
	height: 40px;
	background-color: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	border-radius: 21px;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;	
}

.mod-btn span {
	display: table-cell;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 1.5rem;
	vertical-align: middle;
}

.mod-btn a:hover {
	background-color: #eee;
}

.mod-btn a::after {
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
}

.mod-btn a::after {
	top: 50%;
	right: 15px;
 	-webkit-transform: translateY(-50%);
 	transform: translateY(-50%);	
	background: url(/benesseinfo/saiyou/common/img/ico_arw_right.png) no-repeat 0 0;
	background-size: 12px 11px;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.mod-btn a:hover::after {
	right: 10px;
}

.mod-btn.ico-left {
	text-align: center;
}

.mod-btn.ico-left a::after {
	left: 15px;
	top: 50%;
	background: url(/benesseinfo/saiyou/common/img/ico_arw_left.png) no-repeat 0 0;
	background-size: 12px 11px;
 	-webkit-transform: translateY(-50%);
 	transform: translateY(-50%);
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.mod-btn.ico-left a:hover::after {
	left: 10px;
}

.mod-btn.ico-blank a::after {
	right: 15px;
	top: 50%;
	background: url(/benesseinfo/saiyou/common/img/ico_blank.png) no-repeat 0 0;
	background-size: 11px 11px;
 	-webkit-transform: translateY(-50%);
 	transform: translateY(-50%);
	text-align: center;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.mod-btn.ico-blank a:hover::after {
	right: 10px;
}

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

	include

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

/* 
	wrp-header
------------------------------------------- */
.wrp-header {
  border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}
.wrp-header .header-inner {
  position: relative;
  width: 960px;
  height: 70px;
  margin: 0 auto;
}

.header-contents {
 position: relative;
}
  
.wrp-header .sitelogo {
  width: 102px;
	padding: 25px 0 0;
	line-height: 1;
}
.wrp-header .pagetitle {
  position: absolute;
  top: 15px;
  right: 0;
  width: 150px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
}
.wrp-header .pagetitle a {
  display: block;
  line-height: 38px;
  font-size: 1.8rem;
  font-weight: 500;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
}

.wrp-header .pagetitle a:hover {
	background-color: #eee;
}

/* 
	wrp-footer
------------------------------------------- */
.wrp-footer {
 	border-top: 1px solid #ddd;
}

.wrp-footer .footer-inner {
	position: relative;
	width: 960px;
	height: 70px;
	margin: 0 auto;
	padding-top: 25px;
	box-sizing: border-box;
}

.wrp-footer .sitelogo {
	float: left;
	width: 102px;
	margin-right: 28px;
	line-height: 1;
}

.wrp-footer .copyright {
	float: left;
	padding-top: 9px;
	color: #222;
	font-size: 1rem;
	line-height: 1;
}

.wrp-footer .footerlink {
	position: absolute;
	top: 28px;
	right: 0;
}

.wrp-footer .footerlink li {
	float: left;
	padding-right: 10px;
	padding-left: 10px;
	border-left: 1px solid #222;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro";
	font-size: 1.3rem;
}

.wrp-footer .footerlink li:first-child {
	padding-left: 0;
	border-left: none;
}

.wrp-footer .footerlink li a:hover {
  text-decoration: underline;
}


/* 
	box-interview
------------------------------------------- */

.wrp-contents .box-interview {
	background-color: #f5f5f5;
}

.wrp-contents .interview-inner {
	width: 960px;
	margin: 0 auto;
	text-align: center;
}

.wrp-contents .box-interview .mod-categorytitle {
	padding: 26px 0 27px;
}

.wrp-contents .box-interview .blk-interview {
	display: inline-block;
	padding-bottom: 70px;
}

.wrp-contents .box-interview .interview {
  float: left;
  width: 300px;
	height: 320px;
  margin-right: 30px;
	background-color: #fff;
}

.wrp-contents .blk-interview .interview:last-child {
	margin-right: 0;
}

.wrp-contents .blk-interview .interview a {
	position: relative;
	display: block;
	height: 320px;
}

.wrp-contents .blk-interview .interview a::before {
	content: "";
	display: block;
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 12px;
	height: 11px;
	background: url(/benesseinfo/saiyou/common/img/ico_arw_right.png) no-repeat 0 0;
	background-size: 12px 11px;
	z-index: 4;
}

.wrp-contents .blk-interview .interview a::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 290px;
	height: 310px;
  border: 2px solid #f39800;
	box-sizing: border-box;
	pointer-events:none;
	z-index: 2;
}

.wrp-contents .blk-interview .interview a:hover::after {
	display: none;
}

.wrp-contents .blk-interview .interview .name-roma {
	position: absolute;
	top: 25px;
	left: 35px;
	color: #f96300;
	font-size: 1.5rem;
	line-height: 1.2;
	text-align: left;
	z-index: 3;
}

.wrp-contents .blk-interview .interview .img {
	position: relative;
	max-height: 150px;
	font-size: 0;
	overflow: hidden;
	z-index: 1;
}

.wrp-contents .box-interview .blk-interview .img > img {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.wrp-contents .blk-interview .interview .text {
  padding: 13px 34px 20px;
	text-align: left;
}

.wrp-contents .blk-interview .interview .articletitle {
	font-size: 1.5rem;
	line-height: 1.7;
}

.wrp-contents .blk-interview .interview .name-jp {
	padding: 8px 0 2px;
	font-size: 1.8rem;
	font-weight: 500;
}

.wrp-contents .blk-interview .interview .job {
	font-size: 1.2rem;
	line-height: 1.7;
}

.wrp-contents .blk-interview .interview a:hover .img > img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.wrp-contents .blk-interview .interview .bdr-anime div {
	position:absolute;
	background: #f39800; 
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	z-index: 3;
}

.wrp-contents .blk-interview .interview .bdr-anime .bdr-top {
	width: 0;
	height: 2px;
	top: 5px;
	left: 5px;
}

.wrp-contents .blk-interview .interview .bdr-anime .bdr-bottom {
	width: 0;
	height: 2px;
	right: 5px;
	bottom: 5px;
}

.wrp-contents .blk-interview .interview .bdr-anime .bdr-right {
	width: 2px;
	height:0;
	top: 5px;
	right: 5px;
}

.wrp-contents .blk-interview .interview .bdr-anime .bdr-left {
	height:0;
	width: 2px;
	left: 5px;
	bottom: 5px;
}

.wrp-contents .blk-interview .interview a:hover .bdr-anime .bdr-top,
.wrp-contents .blk-interview .interview a:hover .bdr-anime .bdr-bottom {
	width: 290px;
}

.wrp-contents .blk-interview .interview a:hover .bdr-anime .bdr-right,
.wrp-contents .blk-interview .interview a:hover .bdr-anime .bdr-left {
	height: 310px;
}


/* 
	box-news
------------------------------------------- */

.wrp-contents .news-inner {
	width: 960px; 
	margin: 0 auto;
	text-align: center;
}

.wrp-contents .box-news .list-news li {
	display: table;
	width: 100%;
	height: 70px; 
	border-top: 1px solid #ddd;
}

.wrp-contents .box-news .list-news li:last-child {
	border-bottom: 1px solid #ddd;
}

.wrp-contents .box-news .list-news .job,
.wrp-contents .box-news .list-news .day,
.wrp-contents .box-news .list-news .text {
	display: table-cell;
	box-sizing: border-box;
	text-align: left;
	vertical-align: middle;
}

.wrp-contents .box-news .list-news .job {
	width: 170px;
	padding: 0 25px 0 5px;
}

.wrp-contents .box-news .list-news .text {
	width: 705px;
	padding: 0 25px;
}

.wrp-contents .box-news .list-news .text-def a:hover {
	text-decoration: underline;
}

.wrp-contents .box-news .list-news .icn {
	width: 100%;
	height: 26px;
	border-radius: 13px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
	line-height: 26px;
}
/* 採用アイコン */

/* 新卒 */
.wrp-contents .box-news .list-news .icn-newgraduate {
  background: rgba(47, 149, 220, 1);
  background: -webkit-linear-gradient(left, rgba(47, 149, 220, 1) 1%, rgba(28, 202, 234, 1) 100%);
  background: linear-gradient(to right, rgba(47, 149, 220, 1) 1%, rgba(28, 202, 234, 1) 100%);
}
/* 中途　*/
.wrp-contents .box-news .list-news .icn-midcareer {
  background: rgba(255, 107, 8, 1);
  background: -webkit-linear-gradient(left, rgba(255, 107, 8, 1) 0%, rgba(255, 192, 0, 1) 100%);
  background: linear-gradient(to right, rgba(255, 107, 8, 1) 0%, rgba(255, 192, 0, 1) 100%);
}
/* 障がい者　*/
.wrp-contents .box-news .list-news .icn-disabilities {	
  background: rgba(7, 181, 3, 1);
  background: -webkit-linear-gradient(left, rgba(7, 181, 3, 1) 0%, rgba(126, 206, 54, 1) 100%);
  background: linear-gradient(to right, rgba(7, 181, 3, 1) 0%, rgba(126, 206, 54, 1) 100%);
}
/* パート・アルバイト*/
.wrp-contents .box-news .list-news .icn-parttimejob {	
  background: rgba(253, 87, 87, 1);
  background: -webkit-linear-gradient(left, rgba(253, 87, 87, 1) 0%, rgba(255, 127, 202, 1) 100%);
  background: linear-gradient(to right, rgba(253, 87, 87, 1) 0%, rgba(255, 127, 202, 1) 100%);
  letter-spacing: -1px;
}
/*　　その他　*/
.wrp-contents .box-news .list-news .icn-other {	
  background: rgba(155, 155, 155, 1);
  background: -webkit-linear-gradient(left, rgba(155, 155, 155, 1) 0%, rgba(187, 187, 187, 1) 100%);
  background: linear-gradient(to right, rgba(155, 155, 155, 1) 0%, rgba(187, 187, 187, 1) 100%);
  letter-spacing: -1px;
}


@media only screen and (max-width: 749px) {

	 body .text-def {
		font-size: 1.4rem;
	 }
	 
	 .blk-pc {display: none;}
	 .blk-sp {display: block;}

	/* ------------------------------------------------------------
	
		Module
	
	--------------------------------------------------------------- */


	/* 
		title
	------------------------------------------- */
	
	.mod-maintitle {
		font-size: 2.5rem;
		font-weight: 400;
		line-height: 1;
	}
	.mod-subtitle {	
		font-size: 1.6rem;
		font-weight: 400;
	}
	.mod-categorytitle {
		font-size: 2.5rem;
		font-weight: 400;
		letter-spacing: 2px;
		line-height: 1;
	}
	
	
	/* 
		btn
	------------------------------------------- */
	
	.mod-btn {
		height: 35px;
	}
	
	.mod-btn a {
		height: 35px;
		border-radius: 21px;
		transition: none;	
	}
	
	.mod-btn span {
		padding-left: 16px;
		font-size: 1.2rem;
	}
	
	.mod-btn a:hover {
		background-color: #fff;
	}
	
	.mod-btn a::after {
		display: block;
		content: '';
		position: absolute;
		width: 12px;
		height: 12px;
	}
	
	.mod-btn a::after {
		right: 12px;
		transition: none;
	}
	
	.mod-btn a:hover::after {
		right: 12px;
	}
	
	.mod-btn.ico-left a::after {
		left: 12px;
		transition: none;
	}
	
	.mod-btn.ico-left a:hover::after {
		left: 12px;
	}
	
	.mod-btn.ico-blank a::after {
		right: 12px;
		transition: none;
	}
	
	.mod-btn.ico-blank a:hover::after {
		right: 12px;
	}	
	

	/* ------------------------------------------------------------
	
		include
	
	--------------------------------------------------------------- */
  

	/* 
		wrp-header
	------------------------------------------- */
  
  .wrp-header {
    position: relative;
    height: 56px;
  }
  
  .header-contents {
    position: absolute;
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    z-index: 10000;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
 
  .wrp-header .header-inner {
	  position: relative;
	  width: 100%;
	  padding: 0 15px;
	  box-sizing: border-box;
	  overflow-x: hidden; /* spgnav */
	}
	.wrp-header .sitelogo {
	  padding: 18px 0 0 15px;
	  width: 92px;
	}
	.wrp-header .pagetitle {
	  position: absolute;
	  top: 15px;
	  right: 55px;
	  width: 85px;
	}
	.wrp-header .pagetitle a {
	  display: block;
	  font-size: 1rem;
	  line-height: 24px;
		-webkit-transition: none;
		transition: none;
	}
	
	.wrp-header .pagetitle a:hover {
		background-color: #fff;
	}
	
	.wrp-header .btn-gnav {
	  position: absolute;
	  top: 15px;		
	  right: 15px;
		width: 27px;
		height: 27px;
		background: url(/benesseinfo/saiyou/common/img/btn_gnav_sp.png) no-repeat 0 0;
		background-size: 27px 27px;
		text-indent: -9999px;
		cursor: pointer;
	}
	.wrp-header .btn-gnav.js-btn-open {
		background: url(/benesseinfo/saiyou/common/img/btn_gnav_close_sp.png) no-repeat 0 0;
    background-size: 27px 27px;
	}
  	
	.wrp-header .gnav-sp {
    position: fixed;
    top: 56px;
    right: 0;
    height: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition:ease .5s;
    transition:ease .5s;
    z-index: 9999;
 }
	
  .wrp-header .gnav-sp.js-gnav-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: red;
  }
  
	.wrp-header .gnav-sp .box-gnav {
	height: 100%;
    background: -webkit-linear-gradient(left, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%); 
    background: linear-gradient(to left, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;  
  }

	.wrp-header .gnav-sp .list-gnav li {
		display: table;
		width: 100%;
		height: 60px;
		padding-left: 20px;
		box-sizing: border-box;
	}
	
	.wrp-header .gnav-sp .list-gnav .submenu {
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
	
	.wrp-header .gnav-sp .list-gnav li a {
		display: table-cell;
		width: 100%;
		font-size: 1.5rem;
		vertical-align: middle;
	}
	
	.wrp-header .gnav-sp .list-gnav .submenu a {
		border-bottom: 1px solid #ddd;
		font-size: 1.2rem;
	}

	.wrp-header .gnav-sp .list-gnav .ico-blank span {
		padding-right: 15px;
		background: url(/benesseinfo/saiyou/common/img/ico_blank.png) no-repeat right center;
		background-size: 11px 11px;		
	}

	.wrp-header .gnav-sp .list-gnav .submenu span {
		padding-left: 7px;
		padding-right: 15px;
		background: url(/benesseinfo/saiyou/common/img/ico_blank.png) no-repeat right center;
		background-size: 11px 11px;		
	}

  .js-cover {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background-color: rgba(238,238,238,.5);
    z-index: 9998;
  }
  
  .js-cover.js-gnav-open {
    display: block;
  }


	/* 
		wrp-footer
	------------------------------------------- */
	.wrp-footer {
		border-top: 1px solid #ddd;
	}
	
	.wrp-footer .footer-inner {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 25px 0 38px;
		box-sizing: border-box;
	}
	
	.wrp-footer .footerlogo {
		display: block;
	}
	
	.wrp-footer .sitelogo {
		display: block;
		float: none;
		width: 92px;
		margin: 0 auto 13px;
	}
	
	.wrp-footer .copyright {
		display: block;
		float: none;
		position: absolute;
		width: 100%;
		left: 0;
		bottom: 12px;
		padding-top: 0;
		font-size: 1rem;
    text-align: center;
	}
	
	.wrp-footer {
		text-align: center;
	}
	
	.wrp-footer .footerlink {
		display: inline-block;
		float: none;
		position: static;
	}
	
	.wrp-footer .footerlink li {
		float: left;
		padding-right: 5px;
		padding-left: 5px;
		border-left: 1px solid #222;
		font-size: 1.2rem;
    line-height: 1;
	}
	
	.wrp-footer .footerlink li:first-child {
		padding-left: 0;
		border-left: none;
	}
  
  .wrp-footer .footerlink li a:hover {
    text-decoration: none;
  }
	

	/* 
		box-interview
	------------------------------------------- */
	
	.wrp-contents .interview-inner {
		width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}
	
	.wrp-contents .box-interview .blk-interview {
		padding-bottom: 50px;
	}
	
	.wrp-contents .box-interview .interview {
		display: none;
		float: none;
		width: 100%;
		height: auto;
		margin-right: 0;
	}
	
	.wrp-contents .blk-interview .interview:first-child {
		display: block;
	}
	
	.wrp-contents .blk-interview .interview a {
		position: relative;
		display: block;
		height: auto;
	}
	
	.wrp-contents .blk-interview .interview a::after {
		top: 50%;
		left: 50%;
		width: 98%;
		height: 98%;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	
	.wrp-contents .blk-interview .interview a:hover::after {
		display: block;
	}
	
	.wrp-contents .blk-interview .interview .name-roma {
		top: 20px;
		left: 20px;
		font-size: 1.4rem;
	}
	
	.wrp-contents .box-interview .blk-interview .img {
		max-height: 300px;
	}
	
	.wrp-contents .box-interview .blk-interview .img > img {
		-webkit-transition: none;
		transition: none;
	}
	
	.wrp-contents .blk-interview .interview .text {
		padding: 15px 30px 38px;
	}
	
	.wrp-contents .blk-interview .interview .articletitle {
		font-size: 1.4rem;
	}
	
	.wrp-contents .blk-interview .interview .name-jp {
		padding: 8px 0 2px;
		font-size: 1.6rem;
		font-weight: 500;
	}
	
	.wrp-contents .blk-interview .interview .job {
		font-size: 1.1rem;
	}
	
	.wrp-contents .blk-interview .interview a:hover .img > img {
		-webkit-transform: none;
		transform: none;
	}
	
	
	/* 
		box-news
	------------------------------------------- */
	
	.wrp-contents .news-inner {
		width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}
	
	.wrp-contents .box-news .list-news li {
		display: block;
		width: 100%;
		height: auto;
		padding: 15px 0;
		border-top: 1px solid #ddd;
		text-align: left;
	}
	
	.wrp-contents .box-news .list-news li:last-child {
		border-bottom: 1px solid #ddd;
	}
	
	.wrp-contents .box-news .list-news .job,
	.wrp-contents .box-news .list-news .day {
		display: inline-block;
	}
	
	.wrp-contents .box-news .list-news .job {
		width: 43%;
		padding: 0 10px 0 0;
	}
	
	.wrp-contents .box-news .list-news .text {
		display: block;
		width: 100%;
		padding: 10px 0 0;
	}
	
	.wrp-contents .box-news .list-news .icn {
		width: 100%;
		height: 26px;
		border-radius: 13px;
		color: #fff;
		text-align: center;
		line-height: 26px;
		font-size: 1.1rem;
	}
	
	.wrp-contents .box-news .list-news .text-def a:hover {
		text-decoration: none;
	}	
}

