@charset "utf-8";

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

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

body {
	font-family: Avenir, Helvetica, Arial, Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro", "游ゴシック", Yu Gothic, YuGothic, sans-serif;
	font-size: 14px;
	line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

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

input, select {
	vertical-align: middle;
}

img {
	font-size: 0;
	line-height: 0;
	vertical-align: top;
}

em {
	font-style: normal;
	font-weight: bold;
}

.f_right {
	float: right;
}

.f_left {
	float: left;
}

.w100 {
	width: 100%;
}

.clearfix:after {
	content: '';
	clear: both;
	display: block;
}

a {
	background: transparent;
	font-size: 100%;
	margin: 0;
	padding: 0;
	text-decoration: none;
	vertical-align: baseline;
}

@media screen and (max-width:768px) {
	.sp_none {
		display: none;
	}

	.sp_w100 {
		width: 100%;
	}

	.under_wrap {
		margin: 0 0 40px;
	}

}

@media screen and (min-width:769px) {
	.pc_none {
		display: none;
	}

	.f_left_pc {
		float: left;
	}

	.f_right_pc {
		float: right;
	}

	.under_wrap {
		margin: 0 0 100px;
	}

}

/* ===================================
	header
------------------------------------*/
body {
	position: relative;
}

header.common_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
}

.top_logo {
	color: #fff;
	font-weight: normal;
}

.gray_header .top_logo {
	color: #666;
}

.logo {
	margin: 18px 10px;
	width: 133px;
}

.entry_btn {
	display: block;
	background: #fff;
	color: #666;
}

@media screen and (max-width:768px) {
	header {
		padding: 10px 12px 5px;
	}

	.top_logo img {
		width: 70px;
	}

	.top_logo span {
		display: inline-block;
		padding: 10px;
		font-size: 11px;
	}

	.entry_btn {
		margin: 10px 15px;
		padding: 15px;
		text-align: center;
		font-weight: bold;
		font-size: 21px;
	}

	/* ドロワーメニュー */
	#menu_overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.6);
		display: none;
		overflow: hidden;
		z-index: 97;
	}

	#switch_btn {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 46px;
		height: 46px;
		background: #fff;
		z-index: 100;
	}

	#switch_btn div {
		position: relative;
		margin: 3px;
		width: 40px;
		height: 40px;
	}

	#switch_btn span {
		position: absolute;
		left: 5px;
		width: 30px;
		height: 2px;
		background: #000;
		transition: all 0.3s ease;
	}

	#switch_btn span:nth-of-type(1) {
		top: 11px;
	}

	#switch_btn span:nth-of-type(2) {
		top: 19px;
	}

	#switch_btn span:nth-of-type(3) {
		bottom: 11px;
	}

	.gray_header #switch_btn {
		background: #666;
	}

	.gray_header #switch_btn span {
		background: #fff;
	}

	#switch_btn.btn_close,
	.gray_header #switch_btn.btn_close {
		background:  #000;
	}

	#switch_btn.btn_close span {
		background: #fff;
	}

	#switch_btn.btn_close span:nth-of-type(1) {
		-webkit-transform: translate(0,8px) rotate(-315deg);
		transform: translate(0,8px) rotate(-315deg);
	}

	#switch_btn.btn_close span:nth-of-type(2) {
		opacity: 0;
	}

	#switch_btn.btn_close span:nth-of-type(3) {
		-webkit-transform: translate(0,-8px) rotate(315deg);
		transform: translate(0,-8px) rotate(315deg);
	}

	#menu_wrap {
		position: fixed;
		top: 0;
		right: -200px;
		width: 200px;
		height: 100%;
		background: #000;
		overflow: auto;
		z-index: 99;
	}

	.nav_logo {
		padding: 50px 20px 20px;
		font-size: 11px;
		line-height: 1.2;
	}

	.nav_logo a {
		color: #fff;
	}

	.nav_logo img {
		display: block;
		width: 70px;
		margin: 10px 0;
	}

	#menu_wrap h2 {
		padding: 38px 20px 12px;
		color: #fff;
		font-size: 20px;
		cursor: pointer;
	}

	#menu_wrap nav {
		padding: 0 0 30px;
	}

	#menu_wrap nav > ul {
		width: 100%;
	}

	.menu_ac_inr li {
		width: 100%;
		border-top: #555 1px solid;
	}

	.menu_ac_inr li:last-child {
		border-bottom: #555 1px solid;
	}

	.menu_ac_inr .not_yet  {
		padding: 15px 30px;
		display: block;
		color: #777;
		font-size: 13px;
		line-height: 1.4;
	}

	.menu_ac_inr a {
		padding: 15px 30px;
		display: block;
		color: #fff;
		font-size: 13px;
		line-height: 1.4;
	}

	.menu_ac_inr a.outside {
		background: url(../img/out.png) 90% center no-repeat;
	}
}

@media screen and (min-width:769px) {
	header.common_header {
		position: fixed;
		min-width: 1050px;
		padding: 20px 25px 34px;
	}

	header.gray_header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		min-width: 1050px;
		padding: 20px 25px 20px;
		background: #fff;
		z-index: 100;
	}

	.top_logo img {
		width: 94px;
	}

	.top_logo span {
		display: inline-block;
		padding: 14px 10px;
		font-size: 12px;
	}

	.g_nav {
		margin-top: -36px;
		font-size: 12px;
	}

	.g_nav > ul {
		float: right;
	}

	.g_nav ul > li {
		float: left;
		position: relative;
	}

	.g_nav ul > li h2 {
		display: block;
		width: 116px;
		padding: 10px 0;
		text-align: center;
		color: #fff;
		font-weight: normal;
		cursor: default;
	}

	.g_nav_sub .not_yet {
		display: block;
		width: 116px;
		margin: 0 0 1px;
		padding: 10px 0;
		background: #000;
		color: #bbb;
		text-align: center;
		line-height: 1.4;
		transition:all 0.3s linear;
	}

	.g_nav_sub a {
		display: block;
		width: 116px;
		margin: 0 0 1px;
		padding: 10px 0;
		background: #000;
		color: #fff;
		text-align: center;
		line-height: 1.4;
		transition:all 0.3s linear;
	}

	.g_nav_sub a span {
		font-size: 11px;
	}

	.g_nav_sub a.outside {
		background: #000 url(../img/out.png) 95% center no-repeat;
	}

	.g_nav_sub a:hover {
		background: #666;
	}

	.g_nav_sub a.outside:hover {
		background: #666 url(../img/out.png) 95% center no-repeat;
	}

	.gray_header .g_nav ul > li h2 {
		color: #666;
	}

	.gray_header .g_nav ul > li h2.not_yet {
		color: #bbb;
	}

	.g_nav_sub {
		display: none;
		position: absolute;
		top: 32px;
		z-index: 100;
	}

	.g_nav .entry_btn {
		display: block;
		width: 116px;
		padding: 10px 0;
		text-align: center;
		margin-left: 10px;
		color: #666;
	}

	.gray_header .g_nav .entry_btn {
		background: #666;
		color: #fff;
	}
}

/* ===================================
	main
------------------------------------*/

/* スライダー */
#top-image {
	width:100%;
	text-align:center;
	background:url(../img/slide/s-back.png);
	overflow:hidden;
}

#top-image img{
	width:100%;
	margin:0 auto;
}

#top-image {
	display: none;
}


@media screen and (min-width:769px) {
	main {
		min-width: 1050px;
	}

	.alph {
		transition: all 0.3s linear;
	}

	.alph:hover {
		opacity: 0.7;
	}

	#top-image {
		min-width: 1050px;
	}
}

/* NEWSエリア */
.news_inner {
	background: #000;
	color: #fff;
}

.news_inner dl {
	font-size: 11px;
}

.news_inner dt {
	float: left;
	clear: left ;
	padding: 0 0 15px;
	line-height: 1.4;
}

.news_inner dd {
	float: left ;
	padding: 0 0 15px;
	line-height: 1.4;
}

.news_inner dd a {
	color: #aad4e4;
	text-decoration: underline;
}

@media screen and (max-width:768px) {
	.news_inner {
    padding: 15px 30px;
	}

	.news_inner h2 {
		width: 40%;
		margin: 0 0 20px;
		font-size: 21px;
		border-bottom: 1px solid #666;
	}
	.news_inner dt {
		width: 28% ;
	}

	.news_inner dd {
		width: 72% ;
	}

  .bnr_area {
    padding: 8px 4px;
  }

  .bnr_area a {
    float: left;
    width: 50%;
    display: block;
    padding: 0 4px;
  }
}

@media screen and (min-width:769px) {
	.news_area {
    width: 1000px;
    margin: auto;
    padding: 30px 0;
		background: #fff;
	}

	.news_inner {
    float: left;
		width: 741px;
		margin: auto;
		padding: 28px 72px 8px;
		border: 1px solid #666;
		background: #000;
	}

	.news_inner h2 {
		float: left;
		margin-bottom: 15px;
		padding: 0 0 10px;
		width: 133px;
		font-size: 24px;
		border-bottom: 1px solid #666;
	}

	.news_inner dl {
		float: left;
		margin-top: 6px;
		margin-left: 36px;
		width: 420px;
	}

	.news_inner dt {
		width: 87px;
	}

	.news_inner dd {
		width: 320px;
	}

  .bnr_area {
    float: right;
    width: 250px;
  }

  .bnr_area .m8 {
    margin-bottom: 8px;
  }
}

/* アコーディオン */
.ac_title {
	transition: all 0.3s linear;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ac_title_inner {
	position: relative;
	height: 100%;
	color: #fff;
	text-align: center;
}

.ac_detali {
  display: none;
}

.ac_title_txt {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.open {
	transition: all 0.3s linear;
}

/* テキスト色変更 */
.color_change {
    position: relative;
}

.color_change:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #99d7b9;
    clip: rect(0, 0, 100px, 0);
    transition: clip 0.5s ease-out;
}

.ac_close {
	background: #d1ccc9;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	transition: all 0.3s linear;
}

.ac_detali li.ph_gray {
	opacity: 0.4;
}

@media screen and (max-width:768px) {
	.ac_title {
		height: 100px;
	}

	.open {
		height: 140px;
	}

	.ac_title h2 {
		padding-bottom: 3px;
		font-size: 21px;
	}

	.ac_title_txt p {
		font-size: 11px;
	}

	.ac_title_inner {
		background: rgba(0,0,0,0.6) url(../img/open.png) 20px center no-repeat;
		background-size: 25px 25px;
		transition: all 0.3s linear;
	}

	.open .ac_title_inner {
		background: rgba(0,0,0,0) url(../img/close.png) 20px center no-repeat;
		background-size: 25px 25px;
	}

	.ac_detali ul {
		margin: 20px;
	}

	.ac_detali li {
		margin: 12px 0;
	}

	.ac_detali li img {
		width: 100%;
	}
	.ac_close {
		padding: 16px 0;
	}

	.company_titile {
		background: url(../img/company_back_sp.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.work_titile {
		background: url(../img/work_back_sp.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.recruit_titile {
		background: url(../img/recruit_back_sp.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.interview_titile {
		background: url(../img/interview_back_sp.jpg) center top no-repeat;
		background-size: 100% auto;
	}
	.message_titile {
		background: url(../img/message_back_sp.jpg) center top no-repeat;
		background-size: 100% auto;
	}
}

@media screen and (min-width:769px) {
	.ac_title {
		height: 300px;
	}

	.open {
		height: 380px;
	}

	.ac_title h2 {
		padding-bottom: 5px;
		font-size: 33px;
	}

	.ac_title_txt p {
		font-size: 14px;
	}

	.ac_title_inner:hover .color_change:after {
	    clip: rect(0,500px,40px,0);
	}

	.ac_title_inner {
		background: rgba(0,0,0,0.6) url(../img/open.png) 30% center no-repeat;
		transition: all 0.3s linear;
	}

	.ac_title_inner:hover {
		background: rgba(0,0,0,0) url(../img/open.png) 30% center no-repeat;
	}

	.open .ac_title_inner {
		background: rgba(0,0,0,0) url(../img/close.png) 30% center no-repeat;
	}

	.ac_detali ul {
		width: 1000px;
		margin: 67px auto;
	}

	.ac_detali li {
		float: left;
		margin: 0 20px 20px 0;
	}

	.ac_detali li:nth-child(3n) {
		margin: 0 0 20px 0;
	}

	.ac_detali li img {
		width: 320px;
	}

	.ac_close {
		padding: 19px 0;
		cursor: default;
	}

	.ac_close:hover {
		background: #b9b3b0;
	}

	.company_titile {
		background: url(../img/company_back.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.work_titile {
		background: url(../img/work_back.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.recruit_titile {
		background: url(../img/recruit_back.jpg) center top no-repeat;
		background-size: 100% auto;
	}

	.interview_titile {
		background: url(../img/interview_back.jpg) center top no-repeat;
		background-size: 100% auto;
	}
	.message_titile {
		background: url(../img/message_back.jpg) center top no-repeat;
		background-size: 100% auto;
	}
}

/* ===================================
	共通
------------------------------------*/
.title_area {
	position: relative;
}

.title_area h2 {
	position: absolute;
  top: 50%;
  left: 50%;
	width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	color: #fff;
	text-shadow: 0 0 7px rgba(0,0,0,0.6);
	text-align: center;
	line-height: 1.2;
}

.common_title {
	position: relative;
	text-align: center;
	font-weight: normal;
	line-height: 1.3;
}
.common_title:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	height: 1px;
	background: #000;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media screen and (max-width:768px) {
	.title_area h2 {
		font-size: 25px;
	}

	.common_title {
		margin: 70px 20px 60px;
		padding: 0 0 18px;
		font-size: 18px;
	}

	.common_title:after {
		width: 28px;
	}
}

@media screen and (min-width:769px) {
	.title_area h2 {
		font-size: 50px;
	}

	.common_title {
		margin: 130px 0 90px;
		padding: 0 0 25px;
		font-size: 22px;
	}

	.common_title:after {
		width: 56px;
	}
}

/* ===================================
	work
------------------------------------*/
.work_color_back {
	background: #f9f9fb;
	border-top: 1px solid #99d7b9;
	border-bottom: 1px solid #99d7b9;
}

.work_wrap h4 span {
	color: #99d7b9;
}

.work_right img,
.work_left2 img {
	margin-bottom: 15px;
}

.topback_work {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background: #000;
	color: #fff;
	text-align: center;
	line-height: 1.2;
	cursor: default;
}

@media screen and (max-width:768px) {
	.work_title {
		height: 274px;
		background: url(../img/business/title_back_sp.jpg) center bottom no-repeat;
		background-size: cover;
	}

	.work_wrap section {
		padding: 40px 20px;
	}

	.work_wrap section.work_toparea {
		padding: 0 20px 40px;
	}

	.work_subtitle {
		font-size: 14px;
		border-left: 5px solid #99d7b9;
		padding-left: 10px;
		margin-bottom: 25px;
	}

	.worklist {
		padding: 0 20px;
	}

	.worklist li {
		padding-bottom: 20px;
		background-size: 20px auto;
		margin-bottom: 10px;
	}

	.worklist li:nth-child(5) {
		background: #fff;
	}

	.worklist li:last-child {
		background: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.work_wrap h4 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.work_wrap p {
		line-height: 1.8;
		margin-bottom: 20px;
	}

	.topback_work {
		padding: 10px;
		font-size: 11px;
	}
}

@media screen and (min-width:769px) {
	.work_title {
		height: 550px;
		background: url(../img/business/title_back.jpg) center bottom no-repeat;
		background-size: cover;
	}

	.work_wrap section {
		padding: 60px 0;
	}

	.pc_page_link:before {
		content: "";
    margin-top: -80px;
    height: 80px;
    display: block;
    visibility: hidden;
	}

	.work_wrap section.work_toparea {
		padding: 0 0 60px;
	}

	.work_inner {
		width: 962px;
		margin: auto;
		position: relative;
		overflow: hidden;
	}

	.work_subtitle {
		font-size: 22px;
		border-left: 10px solid #99d7b9;
		padding-left: 15px;
		margin-bottom: 45px;
	}

	.worklist {
		float: left;
		position: relative;
		left: 50%;
	}

	.worklist li {
		float: left;
		padding-right: 22px;
		margin-right: 10px;
		left: -50%;
		position: relative;
	}

	.worklist li:nth-child(5) {
		background: #fff;
	}

	.worklist li:last-child {
		background: none;
		padding-right: 0;
		margin-right: 0;
	}

	.work_left {
		float: left;
		width: 590px;
	}

	.work_right {
		float: right;
		width: 335px;
	}

	.work_left2 {
		float: left;
		width: 450px;
	}

	.work_right2 {
		float: right;
		width: 450px;
	}

	.work_wrap h4 {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.work_wrap p {
		line-height: 1.6;
		margin-bottom: 40px;
	}

	.topback_work {
		padding: 20px;
	}

	.topback_work:hover {
		opacity: 0.7;
	}
}

/* ===================================
	recruit
------------------------------------*/
.step_list {
	text-align: center;
}

.recruit_table tr {
	border-top: 1px solid #ccc;
}

.recruit_table th {
	color: #1f9b9b;
	font-weight: normal;
	text-align: left;
}

.recruit_ph_area h4 {
	font-weight: normal;
}

.recruit_ph_area p {
	line-height: 1.8;
}

@media screen and (max-width:768px) {
	.recruit_title {
		height: 274px;
		background: url(../img/recruit/title_back_sp.jpg) center center no-repeat;
		background-size: cover;
	}

	.step_list li:not(:last-child) {
		margin-bottom: 13px;
		padding-bottom: 22px;
		background: url(../img/recruit/arrow.jpg) center bottom no-repeat;
		background-size: 18px auto;
	}

	.step_list img {
		width: 86%;
	}

	.step_list {
		padding: 0 0 20px;
	}

	.recruit_table {
		margin: 0 10px;
	}

	.recruit_table th,
	.recruit_table td {
		padding: 15px 10px;
		line-height: 1.8;
	}

	.recruit_table th {
		width: 95px;
	}

	.recruit_ph_area {
		margin: 26px 10px;
		padding: 0 15px;
	}

	.recruit_ph_area img {
		width: 100%;
		margin: 13px 0;
	}

	.recruit_ph_area_last {
		border-bottom: 1px solid #ccc;
		padding: 0 15px 30px;
		margin: 26px 10px 50px;
	}
}

@media screen and (min-width:769px) {
	.recruit_title {
		height: 550px;
		background: url(../img/recruit/title_back.jpg) center center no-repeat;
		background-size: cover;
	}

	.step_list {
		padding: 0 0 60px;
	}

	.step_list li:not(:last-child) {
		margin-bottom: 24px;
		padding-bottom: 44px;
		background: url(../img/recruit/arrow.jpg) center bottom no-repeat;
	}

	.recruit_table {
		margin: auto;
		width: 874px;
	}

	.recruit_table th,
	.recruit_table td {
		padding: 33px;
		line-height: 1.8;
	}

	.recruit_table th {
		width: 160px;
	}

	.recruit_ph_area {
		width: 874px;
		margin: 70px auto;
		padding: 0 58px;
	}

	.recruit_ph_area img {
		width: 351px;
		margin: 16px 0;
	}

	.recruit_ph_area_last {
		border-bottom: 1px solid #ccc;
		padding: 0 58px 80px;
		margin: 70px auto 105px;
	}
}

/* ===================================
	faq
------------------------------------*/
.faq_menu li {
	position: relative;
	background: #000;
}

.faq_menu li a {
	display: block;
	color: #fff;
}

.faq_subtitle {
	margin-bottom: 20px;
	padding: 20px 5px 5px;
	border-bottom: 1px solid #dadada;
	font-size: 16px;
}

.faq_area {
	margin: 0 0 10px;
	padding: 8px;
	border: 1px solid #c6c4c4;
	border-radius: 5px;
	line-height: 1.6;
}

.faq_area dt {
	background: url(../img/faq/q.jpg) left center no-repeat, url(../img/faq/open.jpg) right center no-repeat;
}

.faq_area dt.active {
	background: url(../img/faq/q.jpg) left center no-repeat, url(../img/faq/close.jpg) right center no-repeat;
}

@media screen and (max-width:768px) {
	.faq_wrap {
		margin: 20px 20px 50px;
	}

	.faq_menu {
		margin: 0 0 26px;
	}

	.faq_menu li a {
		padding: 12px 10px;
		border-bottom: 1px solid #888;
	}

	.faq_menu li:after {
		position: absolute;
	  top: 50%;
	  right: 10px;
	  width: 8px;
	  height: 8px;
	  content: '';
	  margin-top: -4px;
	  border-bottom: solid 1px #fff;
	  border-right: solid 1px #fff;
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}

	.faq_area dt {
		width: 100%;
		padding: 5px 28px;
		background-size: 20px auto;
	}

	.faq_area dt.active {
		background-size: 20px auto;
	}
	.faq_area dd {
		padding: 10px 5px 10px 28px;
		border-top: 1px dotted #999;
		background: url(../img/faq/a.jpg) left 10px no-repeat;
		background-size: 20px auto;
	}
}

@media screen and (min-width:769px) {
	.faq_wrap {
		width: 962px;
		margin: 0 auto 80px;
	}

	.faq_wrap section:before {
		content: "";
    margin-top: -30px;
    height: 30px;
    display: block;
    visibility: hidden;
	}

	.faq_menu {
		margin: 50px 0 20px;
		background: #000;
		text-align: center;
	}

	.faq_menu li {
		display: inline-block;
		padding: 15px;
	}

	.faq_menu li a {
		font-size: 16px;
		font-weight: bold;
	}

	.faq_subtitle {
		margin-top: 50px;
		font-size: 18px;
	}

	.faq_area dt {
		padding: 12px 40px;
		font-size: 16px;
	}

	.faq_area dd {
		padding: 20px 20px 20px 40px;
		font-size: 16px;
		border-top: 1px dotted #999;
		background: url(../img/faq/a.jpg) left 20px no-repeat;
	}
}

/* ===================================
	interview
------------------------------------*/

@media screen and (max-width:768px) {
	.interview_title {
		height: 274px;
		background: url(../img/interview/title_back_sp.jpg) center bottom no-repeat;
		background-size: cover;
	}
}

@media screen and (min-width:769px) {
	.interview_title {
		height: 550px;
		background: url(../img/interview/title_back.jpg) center bottom no-repeat;
		background-size: cover;
	}
}

/* ===================================
	talk
------------------------------------*/
.talk_wrap p {
	padding: 8px 0;
	line-height: 1.8;
}

.talk_wrap p span {
	font-weight: bold;
}

.talk_q {
	margin: 0 0 12px;
	color: #f16101;
	font-weight: normal;
	line-height: 1.5;
}

.talk_member li {
	line-height: 1.2;
}

@media screen and (max-width:768px) {
	.talk_title h2 {
		padding: 10px 20px;
		text-align: right;
		font-size: 20px;
		line-height: 1.2;
	}

	.talk_title h2 span {
		display: block;
		font-size: 13px;
		margin-bottom: 5px;
		font-weight: normal;
	}

	.talk_member {
		margin: 0 20px 20px;
		text-align: center;
	}

	.talk_member li {
		float: left;
		margin: 0 2% 4% 0;
		width: 32%;
		font-size: 13px;
	}

	.talk_member li:nth-child(3n) {
		margin: 0
	}

	.talk_member li span {
		display: block;
		margin-bottom: 2px;
		line-height: 1.2;
		font-size: 11px;
	}

	.talk_member li img {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	.talk_wrap {
		margin: 20px 0;
	}

	.talk_q {
		margin: 0 20px 15px;
	}

	.talk_wrap p {
		margin: 0 20px;
	}

	.talk_wrap p.talk_intro {
		margin: 20px 20px 0;
		font-size: 18px;
	}

	.talk_wrap img,
	.talk_ph_last {
		width: 100%;
	}

	.talk_ph {
		padding: 10px 20px;
	}
}

@media screen and (min-width:769px) {
	.talk_title {
		position: relative;
		width: 1076px;
		margin: 76px auto 0;
	}

	.talk_title h2.black {
		position: absolute;
		bottom: 20px;
		left: 0;
		width: 100%;
		padding: 15px;
		text-align: right;
		font-size: 40px;
		background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 100%);
		background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 100%);
	}

	.talk_title h2 span {
		display: block;
		margin-bottom: 10px;
		font-size: 26px;
	}

	.talk_member {
		margin: 0 0 80px;
		text-align: center;
	}

	.talk_member li {
		display: inline-block;
		margin: 0 30px;
		font-size: 15px;
	}

	.talk_member li span {
		display: block;
		margin-bottom: 2px;
		font-size: 12px;
		line-height: 1.2;
	}

	.talk_member li img {
		display: block;
		margin-bottom: 10px;
	}

	.talk_wrap {
		width: 962px;
		margin: 24px auto;
	}

	.talk_txt {
		width: 590px;
	}

	.talk_ph {
		padding: 8px 0;
	}

	.talk_q {
		font-size: 16px;
	}

	.talk_intro {
		font-size: 24px;
		margin: 36px 0;
		line-height: 1.6;
	}

	.talk_ph_last {
		display: block;
		margin: auto;
	}
}

/* ===================================
	message
------------------------------------*/
.nisshingeppo_wrap h2 {
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.5em;
}

.message_wrap p {
	line-height: 2;
}

.message_ph {
	position: relative;
}

.message_ph div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
	line-height: 1.4;
	text-shadow: #fff 1px 1px 0, #fff -1px -1px 0, #fff -1px 1px 0, #fff 1px -1px 0, #fff 0 1px 0, #fff 0 -1px 0, #fff -1px 0 0, #fff 1px 0 0;
}

.message_wrap:before {
    content: "";
    margin-top: -70px;
    height: 70px;
    display: block;
    visibility: hidden;
}

@media screen and (max-width:768px) {
	.message_title {
		height: 274px;
		background: url(../img/message/title_back_sp.jpg) center center no-repeat;
		background-size: cover;
	}

	.nisshingeppo_wrap {
		padding: 40px 25px;
		background: url(../img/message/message_back_sp.jpg) center center no-repeat;
		background-size: cover;
		line-height: 2;
	}

	.nisshingeppo_wrap h2 {
		margin-bottom: 25px;
		font-size: 20px;
	}

	.nisshingeppo_wrap img {
		display: block;
		margin: 20px auto;
		width: 130px;
	}

	.message_wrap {
		margin: 0 0 40px;
		padding: 20px;
	}

	.message_wrap img {
		width: 100%;
	}

	.message_wrap p {
		margin: 33px 0 54px;
	}
}

@media screen and (min-width:769px) {
	.message_title {
		height: 550px;
		background: url(../img/message/title_back.jpg) center center no-repeat;
		background-size: cover;
	}

	.nisshingeppo_wrap {
		padding: 86px 0;
		background: url(../img/message/message_back_pc.jpg) center center no-repeat;
		background-size: cover;
		text-align: center;
		line-height: 2;
		font-size: 19px;
	}

	.nisshingeppo_wrap h2 {
		margin-bottom: 50px;
		font-size: 30px;
	}

	.nisshingeppo_wrap img {
		margin: 40px 0;
	}

	.message_wrap {
		width: 915px;
		margin: 0 auto 100px;
	}

	.message01 {
		padding-bottom: 40px;
		border-bottom: 1px solid #ccc;
	}

	.message_inner {
		float: left;
		width: 440px;
		margin: 50px 35px 0 0;
	}

	.message_inner:nth-child(2n) {
		margin: 50px 0 0 0;
	}

	.message_ph {
		width: 440px;
		margin-bottom: 26px;
	}

	.message_txt_pc {
		width: 440px;
	}

}

/* ===================================
	interview
------------------------------------*/


.back_blue {
	background: rgba(71,102,134,0.8);
	color: #fff;
}

.color_blue dt {
	color: #476686;
}

.back_green {
	background: rgba(83,131,113,0.8);
	color: #fff;
}

.color_green dt {
	color: #538371;
}

.interview_detail_faq dd {
	line-height: 2;
}

.interview_list {
	position: relative;
	overflow: hidden;
	width: 960px;
	margin: auto;
}

.interview_list_s li,
.interview_list_sp li {
	background: rgba(71,102,134,0.8);
}

.interview_list_s li:nth-child(even),
.interview_list_sp li:nth-child(even) {
	background: rgba(83,131,113,0.8);
}

.interview_list_s li a,
.interview_list_sp li a {
	display: block;
}

.interview_list_s img,
.interview_list_sp img {
	float: left;
}

.interview_list_s div,
.interview_list_sp div {
	float: left;
	color: #fff;
	line-height: 1.4;
}

.interview_list_s_title {
	border: 1px solid #ccc;
	text-align: center;
	font-weight: normal;
}

@media screen and (max-width:768px) {
	.interview_detail_wrap {
		padding: 0 20px;
	}

	.interview_detail_name {
		padding: 20px;
		line-height: 1.4;
	}

	.interview_detail_name span {
		display: block;
		font-size: 20px;
		margin-top: 6px;
	}

	.interview_detail_faq {
		padding: 0 10px;
	}

	.interview_detail_faq dt {
		margin: 50px 0 10px;
		font-size: 18px;
		font-style: italic;
	}

	.interview_list_s {
		margin: 0 0 40px;
		padding: 0 30px;
		font-size: 13px;
	}

	.interview_list_sp {
		padding: 10px 15px 10px;
		font-size: 13px;
	}

	.interview_list_s img,
	.interview_list_sp img {
		width: 25%;
	}

	.interview_list_s div,
	.interview_list_sp div {
		width: 75%;
		padding: 13px 15px 0;
	}

	.interview_list_s li,
	.interview_list_sp li {
		margin-bottom: 5px;
	}

	.interview_list_s_title {
		width: 260px;
		margin: 90px auto 40px;
		padding: 14px 0;
		font-size: 15px;
	}

	.interview_subtitle {
		margin-bottom: 20px;
		padding: 10px 5px 5px;
		border-bottom: 5px solid #99d7b9;
		font-size: 16px;
	}
}

@media screen and (min-width:769px) {
	.interview_list_odd {
		background: rgba(102,153,204,0.6);
	}

	.interview_list_even {
		background: rgba(115,194,156,0.6);
	}

	.interview_list_area li {
		float: left;
		position: relative;
		left: -50%;
		width: 200px;
	}

	.interview_list_area li a {
		position: relative;
		display: block;
	}

	.interview_list_area li div {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		color: #fff;
		line-height: 1.4;
	}

	.interview_list_area {
		margin: 0px auto 60px auto;
		position: relative;
		float: left;
		left: 50%;
	}

	.interview_list_area li a {
		transition: all 0.3s linear;
	}

	.interview_list_area li a:hover {
		opacity: 0.7;
	}

	.interview_list_area li div {
		padding: 17px 22px;
	}

    .interview_list_subtitle {
		margin: 0px auto;
		position: relative;
		float: left;
		left: 50%;
	}
	
	.interview_list_subtitle1 {
		margin: 60px auto 0px auto;
		position: relative;
		float: left;
		left: 50%;
	}
	
	.interview_detail_wrap {
		padding: 108px 0;
		min-height: 1400px;
	}

	.interview_detail_txtarea {
		position: relative;
		width: 1100px;
		margin: auto;
		padding: 114px 40px;
	}

	.interview_detail_name {
		position: absolute;
		top: 0;
		left: 0;
		width: 394px;
		padding: 26px 40px;
		font-size: 16px;
		line-height: 1.6;
		z-index: 2;
	}

	.interview_detail_name span {
		display: block;
		margin-top: 8px;
		font-size: 30px;
	}

	.interview_detail_faq {
		width: 642px;
		padding: 76px 50px 90px;
		background: rgba(255,255,255,0.5);
	}

    .interview_subtitle {
		margin-bottom: 20px;
		padding: 10px 5px 5px;
		border-bottom: 5px solid #99d7b9;
		font-size: 16px;
		width: 800px;
		position: relative;
		float: left;
		left: -50%;
	}

	.interview_detail_faq dt {
		margin: 56px 0 16px;
		font-size: 20px;
		font-style: italic;
	}

	.interviewer01 {
		background: url(../img/interview_detail/back_ph_01.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer02 {
		background: url(../img/interview_detail/back_ph_02.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer03 {
		background: url(../img/interview_detail/back_ph_03.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer04 {
		background: url(../img/interview_detail/back_ph_04.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer05 {
		background: url(../img/interview_detail/back_ph_05.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer06 {
		background: url(../img/interview_detail/back_ph_06.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer07 {
		background: url(../img/interview_detail/back_ph_07.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer08 {
		background: url(../img/interview_detail/back_ph_08.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer09 {
		background: url(../img/interview_detail/back_ph_09.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer10 {
		background: url(../img/interview_detail/back_ph_10.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer11 {
		background: url(../img/interview_detail/back_ph_11.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer12 {
		background: url(../img/interview_detail/back_ph_12.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer13 {
		background: url(../img/interview_detail/back_ph_13.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer14 {
		background: url(../img/interview_detail/back_ph_14.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer15 {
		background: url(../img/interview_detail/back_ph_15.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer16 {
		background: url(../img/interview_detail/back_ph_16.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer17 {
		background: url(../img/interview_detail/back_ph_17.jpg) center top no-repeat;
		background-size: cover;
	}

	.interviewer18 {
		background: url(../img/interview_detail/back_ph_18.jpg) center top no-repeat;
		background-size: cover;
	}
	.interviewer19 {
		background: url(../img/interview_detail/back_ph_19.jpg) center top no-repeat;
		background-size: cover;
	}
	.interviewer20 {
		background: url(../img/interview_detail/back_ph_20.jpg) center top no-repeat;
		background-size: cover;
	}
	.interviewer21 {
		background: url(../img/interview_detail/back_ph_21.jpg) center top no-repeat;
		background-size: cover;
	}
	.interviewer22 {
		background: url(../img/interview_detail/back_ph_22.jpg) center top no-repeat;
		background-size: cover;
	}



	.interview_list_s {
		width: 988px;
		margin: 0 auto 100px;
	}

	.interview_list_s li {
		float: left;
		width: 324px;
		margin: 0 8px 8px 0;
		transition: all 0.3s linear;
	}

	.interview_list_s li:nth-child(3n) {
		margin: 0 0 8px 0;
	}

	.interview_list_s li:hover {
		opacity: 0.7;
	}

	.interview_list_s img {
		width: 98px;
	}

	.interview_list_s div {
		width: 226px;
		height: 98px;
		padding: 20px;
	}

	.interview_list_s_title {
		width: 375px;
		margin: 126px auto 104px;
		padding: 25px 0;
	}
}



/* ===================================
	footer
------------------------------------*/
/* エントリー */
.entry_wrap {
	text-align: center;
}

.topback_footer {
	background: #000;
	color: #fff;
	text-align: center;
}

.footer_nav,
.footer_nav a {
	color: #999;
}

.footer_nav .not_yet {
	color: #cacaca;
}

small {
	display: block;
	padding: 20px 0;
	font-size: 10px;
	color: #999;
}

.entry_wrap p {
	font-size: 16px;
	line-height: 1.6;
}

@media screen and (max-width:768px) {
	.entry_wrap {
		padding: 27px 20px;
		background: url(../img/footer/entry_back_sp.jpg) center center no-repeat;
		background-size: cover;
	}

	.entry_wrap h2 {
		font-size: 20px;
		margin-bottom: 26px;
	}

	.entry_wrap h3 {
		width: 200px;
		margin: 28px auto;
		padding: 0 0 14px;
		border-bottom: 1px solid #000;
		font-size: 16px;
		line-height: 1.2;
	}

	.entry_wrap li img {
		display: block;
		width: 70%;
		margin: 14px auto;
	}

	.topback_footer {
		padding: 15px 0;
	}

	.footer_nav {
		padding: 20px;
		font-size: 12px;
	}

	.footer_nav li {
		padding: 0 0 10px;
	}

	small {
		text-align: center;
	}
}

@media screen and (min-width:769px) {
	footer {
		min-width: 1050px;
	}

	.entry_wrap {
		padding: 113px 0;
		background: url(../img/footer/entry_back.jpg) center center no-repeat;
		background-size: cover;
	}

	.entry_wrap h2 {
		font-size: 33px;
		margin-bottom: 50px;
	}

	.entry_wrap h3 {
		width: 230px;
		margin: 53px auto;
		padding: 0 0 14px;
		border-bottom: 1px solid #000;
		font-size: 18px;
		line-height: 1.6em;
	}

	.entry_wrap li {
		display: inline-block;
		margin: 0 10px;
		/*background: #fff;*/
	}

	.entry_wrap li img {
		width: 300px;
	}

	.topback_footer {
		padding: 32px 0;
		cursor: default;
	}

	.footer_nav {
		width: 1000px;
		margin: 60px auto 130px;
		font-size: 11px;
	}

	.footer_nav li {
		padding: 0 0 20px;
	}

	.footer_nav li a {
		transition: all 0.3s linear;
	}

	.footer_nav li a:hover {
		opacity: 0.7;
	}

	.footer_nav > li {
		float: left;
		margin: 0 32px;
	}

	small {
		width: 1000px;
		margin: auto;
		text-align: right;
	}
}
