@charset "utf-8";

/* ----------------------------------------------
 * パーツ
------------------------------------------------- */

/* clearfix
 ------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* フェードイン表示
 ------------------------- */
.fadein {
	opacity : 0;
	transform: translateY(20px);
	transition: all 0.5s;
}
.fadein2 {
	opacity : 0;
	transform: translateY(40px);
	transition: all 2s;
}
@media screen and (max-width:800px){
	.fadein {
		opacity : 100;
		transform:none;
		transition:none;
	}
	.fadein2 {
		opacity : 100;
		transform:none;
		transition:none;
	}
}


/* ----------------------------------------------
 * 基本設定
------------------------------------------------- */
body{
	font-family: "Kosugi Maru", sans-serif;
	line-height: 1.7;
	font-size:1.1em;
}
a{
	text-decoration:none;
}
p{
	text-align: justify;
	text-justify: inter-ideograph;
	color:#333;
}


/* ----------------------------------------------
 * レイアウト
------------------------------------------------- */
/* コンテナ
 ------------------------- */
.container{
	width:1200px;
	margin:0 auto;
}




/* ----------------------------------------------
 * ヘッダー
------------------------------------------------- */
.header{
	padding-top:80px;
}

.header-fixed-block{
	position: fixed;
	min-width:1200px;
	width:100%;
	height:80px;
	top: 0;
	left: 0;
	background:#fff;
	z-index: 9999;
	border-top:solid 3px #ffdd22;
	margin-bottom:10px;
	box-shadow: 0px 1px 2px -1px rgba(30,30,30,0.3);
}
.header-fixed-block .header-logo-block{
	padding:10px 10px 10px 20px;
	float:left;
}

@media screen and (max-width:800px){
	.header{
		padding-top:0;
	}
	.header-fixed-block{
		position: static;
		min-width:100%;
		height:60px;
		border-top:solid 5px #ffdd22;
		margin-bottom:0px;
	}
	.header-fixed-block .header-logo-block{
		padding:10px 10px 10px 10px;
		float:none;
	}
	.header-fixed-block .header-logo-block img{
		height:40px;
	}
}




/* -------------------------------------------
 * ナビゲーション
 --------------------------------------------- */
/* スマホ用
 ------------------------- */
#sp-nav{
	display:none;
}
#nav-toggle{
	display:none;
}

/* グローバルナビ
 ------------------------- */
.global-nav{
}
.global-nav ul{
}
.global-nav ul li{
	float:left;
	vertical-align:middile;
}
.global-nav ul li a{
	margin-top:20px;
	margin-left:5px;
}
.global-nav a.recruit-btn,
.global-nav a.entry-btn{
	display: inline-block;
	width:170px;
	text-align:center;
	background:#ffc100;
	color:#fff;
	height:80px;
	margin-top:0px;
	margin-left:15px;
}
.global-nav a.entry-btn{
	background:#8bd528;
	margin-left:0 !important;
}
.global-nav a.recruit-btn:hover{
	background:#ffdd22;
	transition: .3s;
}
.global-nav a.entry-btn:hover{
	background:#aaee33;
	transition: .3s;
}

.global-nav a.recruit-btn .btn-name,
.global-nav a.entry-btn .btn-name{
	/*font-family: "新ゴ U", "Shin Go Ultra", "Arial Black";*/
	text-align:center;
	font-size:25px;
	margin-top:5px;
	display:inline-block;
	padding-top:10px;
	padding-bottom:5px;
	border-bottom:solid 1px #fff;
	line-height:1;
}
.global-nav a.recruit-btn .btn-name2,
.global-nav a.entry-btn .btn-name2{
	font-size:14px;
	text-align:center;
}

.global-nav a.g-nav{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color:#333;
	font-size:16px;
	padding:3px 10px;
}

.global-nav a.g-nav::after {
	position: absolute;
	bottom: 2px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ffc100;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.global-nav a.g-nav:hover::after {
	bottom: -4px;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width:1240px){

	.global-nav a.g-nav{
		font-size:14px;
	}
	.global-nav ul li a {
	    margin-top: 26px;
	}

}


@media screen and (max-width:800px){

	.global-nav{
		/* 画面下に固定 */
		box-shadow:-2px -2px 5px 1px rgba(0,0,0,0.4);
		background:#fff;
		width:100%;
		position:fixed;
		z-index:800;
		bottom:0;
		left:0;
		margin:0;
		height:80px;
	}
	.global-nav ul li{
		width:50%;
	}
	.global-nav ul li a{
		margin-top:0px;
		margin-left:0px;
	}
	.global-nav a.recruit-btn{
		width:100%;
		margin-left:0px;
	}
	.global-nav a.entry-btn{
		width:100%;
	}
	.global-nav a.g-nav{
		display:none;
	}

}

/* -------------------------------------------
 * パンくずリンク
 --------------------------------------------- */
.breadcrumbs-wrapper {
	width:100%;
	background:#ffc100;
	padding:5px 0px;
	/*height:40px;*/
}
.breadcrumbs-wrapper-green {
	background:#669d1e;
}
.breadcrumbs {
	margin:auto;
	padding-left:20px;
/*	line-height:40px; */
}
.breadcrumbs ul {
	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.breadcrumbs li {
	padding-right:0px;
	font-size:14px;
}
.breadcrumbs li a{
	text-decoration: none;
	color:#fff;
}
.breadcrumbs li:not(:last-child) {
	position:relative;
	padding-right:40px;
}
.breadcrumbs li:not(:last-child)::after {
	content: "/";
	display: block;
	position: absolute;
	width: 9px;
	color:#fff;
	height: 15px;
	top: 0px;
	right: 15px;
}

@media screen and (max-width:800px) {
	.breadcrumbs-wrapper {
		padding: 0;
	}
	.breadcrumbs {
		padding:0 5px;
	}
	.breadcrumbs ul {
		display:block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		overflow: auto;
		white-space: nowrap;
		padding-bottom:5px;
	}
	.breadcrumbs li {
		display:inline;
		padding-right:20px;
		flex: 0 0 40%;
		font-size:12px;
	}

}






/* -------------------------------------------
 * フッター
 --------------------------------------------- */
.footer{
	background:#fff;
	box-shadow: 0px 1px 8px -4px rgba(30,30,30,0.6);
}
.footer .social-links{
	padding:15px 0 0 0;
}
.footer .social-links img{
	width:40px;
	margin:0 3px;
}
.footer .social-links i{
	font-size:40px;
	color:#333;
	margin:0 1px;
}
.footer .social-links i.fa-youtube{
	color:#f00;
}
.footer .social-links i.fa-facebook-square{
	color:#1877f2;
}
.footer .social-links i.fa-instagram{
	color:#CF2E92;
}


.footer .social-links i.fa-tiktok{
	color:#333;
	font-size:36px;
}

.footer .copyright{
	background:#91bf3e;
	text-align:center;
	color:#fff;
	padding:10px 0;
	font-size:14px;
}
.footer-logo-block{
	float:left;
	padding-top:30px;
	padding-bottom:30px;
	width:700px;
}
.footer-logo-block .footer-logo{
	
}
.footer-sitemap-block{
	float:left;
	width:200px;
	padding-top:25px;
}
.footer-sitemap-block ul li{
}
.footer-sitemap-block ul li a{
	color:#333;
}
.footer-sitemap-block ul li a i{
	font-size:0.8em;
}

.footer-entry-block{
	float:right;
	padding-top:20px;
	width:300px;
	text-align:right;
}

/* ---- */
.footer-hp-link {
	display: inline-block;
	margin:5px 0;
	background:#44af35;
	color:#fff;
	padding:5px 20px;
	border:solid 2px #44af35;
	text-align: center;
	text-decoration: none;
	outline: none;
}

.footer-hp-link::before,
.footer-hp-link::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.footer-hp-link,
.footer-hp-link::before,
.footer-hp-link::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.footer-hp-link:hover{
  background-color: #fff;
  border-color: #44af35;
  color: #44af35
}

/* ---- */
.footer-recruit-link {
	display: inline-block;
	margin:5px 0;
	background:#ffc100;
	color:#fff;
	padding:10px 20px;
	width:100%;
	font-size:24px;
	border:solid 2px #ffc100;
	text-align: center;
	text-decoration: none;
	outline: none;
}

.footer-recruit-link::before,
.footer-recruit-link::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.footer-recruit-link,
.footer-recruit-link::before,
.footer-recruit-link::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.footer-recruit-link:hover{
  background-color: #fff;
  border-color: #ffc100;
  color: #ffc100;
}

.footer-entry-link {
	display: inline-block;
	margin:5px 0;
	background:#44af35;
	color:#fff;
	padding:10px 20px;
	width:100%;
	font-size:24px;
	border:solid 2px #44af35;
	text-align: center;
	text-decoration: none;
	outline: none;
}

.footer-entry-link::before,
.footer-entry-link::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.footer-entry-link,
.footer-entry-link::before,
.footer-entry-link::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.footer-entry-link:hover{
  background-color: #fff;
  border-color: #44af35;
  color: #44af35;
}

@media screen and (max-width:800px){
	.footer{
		
	}
	.footer .copyright{
		padding-bottom:100px;
	}
	.footer-logo-block{
		float:none;
		width:100%;
		text-align:center;
	}
	.footer-logo-block .footer-logo{
		text-align:center;
	}
	.footer-sitemap-block{
		display:none;
	}
	.footer-entry-block{
		display:none;
	}

}



/* -------------------------------------------
 * タイトル
 --------------------------------------------- */
.box-title{
/*	font-family: "新ゴ U", "Shin Go Ultra", "Arial Black";*/
	font-size:50px;
	line-height:1;
	margin:0;
	padding:0;
}
.box-title-right{
	text-align:right;
}
.box-title-c-orange{
	color:#ffc100;
}
.box-title-c-white{
	color:#fff;
}



.box-title-interview{
	color:#fff;
	text-align:center;
	width:600px;
	margin:0 auto;
	border-bottom:solid 1px #fff;
	padding-bottom:15px;
	margin-bottom:15px;
}

.box-title-recruit{
	color:#ffc100;
	text-align:center;
	width:600px;
	margin:0 auto;
	border-bottom:solid 1px #ffc100;
	padding-bottom:15px;
	margin-bottom:15px;
}


@media screen and (max-width:800px){
	.box-title{
		text-align:center;
		font-size:32px;
		margin-bottom:10px;
	}

	.box-title-interview{
		width:100%;
	}

	.box-title-recruit{
		width:100%;
	}

}


h3.sub-title{
	font-size:25px;
	font-weight:bold;
	line-height:1;
	margin:0;
	padding:0;
	text-align:center;
	color:#fff;
}
h3.sub-title-c-recruit{
	font-size:25px;
	font-weight:bold;
	line-height:1;
	margin:0;
	padding:0;
	color:#ffc100;
	text-align:center;
}




/* ---- */
.more-detail-link {
	display: inline-block;
	margin:5px 0;
	background:#ffc100;
	color:#fff;
	padding:5px 40px;
	border:solid 2px #ffc100;
	text-align: center;
	text-decoration: none;
	outline: none;
}
.more-detail-link::before,
.more-detail-link::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.more-detail-link,
.more-detail-link::before,
.more-detail-link::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.more-detail-link:hover{
  background-color: #fff;
  border-color: #ffc100;
  color: #ffc100;
}


/* -------------------------------------------
 * トップページ[インタビュー]
 --------------------------------------------- */
.interview-block{
	background:#91bf3e;
	padding:50px 0;
}
.interview-head-text{
	text-align:center;
	color:#fff;
	padding:15px;
	margin-bottom:1em;
}

.interview-flex-block{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.interview-flex-block .interview-flex-item{
	width:600px;
	margin-bottom:80px;
}

.interview-flex-block .interview-flex-item .interview-box{
	position:relative;
}
.interview-block .interview-img img{
	box-shadow: 5px 5px #669d1e;
}
.interview-box:hover {
	transform: translateY(-5px);
	transition: all 0.5s;
}
.index-interview-box {
	color:#333;
}
.interview-box h3{
	font-size:1.1em;
	line-height:1.2;
	color:#00a9b8;

}
.interview-box > img{
	width:550px;
	z-index:100;
	box-shadow: 5px 5px #669d1e;
}
.interview-text-box{
	position:absolute;
	overflow:hidden;
	left:50px;
	top:220px;
	width:520px;
	height:100px;
	background:#fff;
	z-index:200;
	box-shadow: 5px 5px #669d1e;
}
.interview-box .interview-text-box-inner{
	padding:15px 20px;
}
.interview-box .interview-text-box-inner .attr{
	font-size:0.9em;
	color:#333;
}
.interview-box .interview-label{
	display:inline-block;
	position:absolute;
	background:#91bf3e;
	color:#fff;
	text-align:center;
	z-index:300;
	width:150px;
	left:70px;
	top:200px;
}
.interview-box:hover h3{
	color:#ffc100;
}
.interview-box:hover .interview-label{
	background:#ffc100;
}


@media screen and (max-width:800px){
	.interview-block{

	}
	.interview-head-text{
		text-align:left;
		font-size:0.8em;
	}
	.interview-head-text br{
		display:none;
	}
	.interview-flex-block{
	}
	.interview-flex-block .interview-flex-item{
		width:100%;
		margin-bottom:20px;
	}
	.interview-flex-block .interview-flex-item .interview-box{

	}
	.interview-flex-block .interview-img{
		max-height:130px;
		overflow:hidden;
	}
	.interview-flex-block .interview-img img{
		box-shadow:none;
		width:100%;
	}
	.interview-flex-block .interview-img a:hover img{
		box-shadow:none;
	}
	.interview-box:hover {
	}
	.interview-box {
		color:#333;
		padding:2px;
		margin:0 15px;
		background:#fff;
	}
	.interview-box h3{
	}
	.interview-box > img{
		width:100%;
		z-index:100;
		box-shadow:none;;
	}
	.interview-text-box{
		position:static;
		left:0px;
		top:0px;
		width:100%;
		height:100px;
		box-shadow:none;
	}
	.interview-box .interview-text-box-inner{
		padding:5px 5px;
	}

	.interview-box .interview-text-box-inner .attr{
		font-size:0.7em;
	}
	.interview-box .interview-label{
		position:static;
		width:100%;
		left:0px;
		top:0px;
	}


}

@media screen and (min-width: 481px) and (max-width: 800px) {
	.interview-flex-block .interview-img{
		max-height:200px;
		overflow:hidden;
	}
}


/* -------------------------------------------
 * トップページ[採用情報]
 --------------------------------------------- */
.index-recruit-block{
	background:#fbf7b0;
	padding:50px 0;
}


.recruit-area-title,
.recruit-area-title-02{
	color:#fff;
	background:#ffc100;
	padding:4px 5px;
	text-align:center;
	font-size:16px;
}
.recruit-area-title-02{
	background:#00a9b8;
}

.recruit-flex-block{
	display:flex;
	flex-wrap: wrap;
/*
	justify-content: space-around;
	align-content: stretch;
*/
}
.recruit-flex-block .recruit-flex-item{
	position:relative;
	background:#fff;
	width:270px;
	box-shadow: 5px 5px #c23571;
	margin-bottom:60px;
	margin-left:20px;
}

.recruit-flex-block .recruit-flex-item-kango{
	box-shadow: 5px 5px #264d9d;
}
.recruit-flex-block .recruit-flex-item-jimu{
	box-shadow: 5px 5px #1da73c;
}


.recruit-flex-block .recruit-flex-item:hover {
	transform: translateY(-5px);
	transition: all 0.5s;
	box-shadow: 5px 5px #ee5599;
}
.recruit-flex-block .recruit-flex-item-kango:hover{
	box-shadow: 5px 5px #2f5fc1;
}
.recruit-flex-block .recruit-flex-item-jimu:hover{
	box-shadow: 5px 5px #13d013;
}

.recruit-flex-block .recruit-flex-item:hover .recruit-job{
	transition: all 0.5s;
	background:#f48ea0;
}
.recruit-flex-block .recruit-flex-item:hover .recruit-job-kango{
	transition: all 0.5s;
	background:#009bf9;
}
.recruit-flex-block .recruit-flex-item:hover .recruit-job-jimu{
	transition: all 0.5s;
	background:#4ad028;
}

.index-recruit-box{
	position:relative;
	display:block;
	background:#fff;
	width:100%;
}

.recruit-flex-block .recruit-flex-item .recruit-type-01,
.recruit-flex-block .recruit-flex-item .recruit-type-02{
	display: table-cell;
	vertical-align: middle;
	text-align:center;
	background:#4395ff;
	border-radius:50%;
	height:70px;
	width:70px;
	overflow:hidden;
	position:absolute;
	right:-10px;
	bottom:-10px;
}
.recruit-flex-block .recruit-flex-item .recruit-type-02{
	background:#5ccb0e;
}
.recruit-flex-block .recruit-flex-item .recruit-type-01>div,
.recruit-flex-block .recruit-flex-item .recruit-type-02>div{
	font-size:20px;
	color:#fff;
	line-height:1.1;
	padding-top:10px;
/*	 font-family: "新ゴ M","Shin Go Medium";*/
}

.recruit-flex-block .recruit-flex-item .recruit-job{
	background:#f16980;
	color:#fff;
	padding:8px 8px;
	line-height:1.;
	font-size:20px;
	text-align:center;
/*	 font-family: "新ゴ M","Shin Go Medium";*/
}
.recruit-flex-block .recruit-flex-item .recruit-job-kango{
	background:#0089dc;
}
.recruit-flex-block .recruit-flex-item .recruit-job-jimu{
	background:#43b825;
}

.recruit-flex-block .recruit-flex-item .recruit-job span{
	background:#fff;
	font-size:14px;
	padding:1px 8px;
	border-radius:2px;
	color:#f16980;
}
.recruit-flex-block .recruit-flex-item .recruit-job-kango span{
	color:#1a1aff;
}
.recruit-flex-block .recruit-flex-item .recruit-job-jimu span{
	color:#1aca4a;
}

.recruit-flex-block .recruit-flex-item .recruit-img{
	height:120px;
	overflow:hidden;
}
.recruit-flex-block .recruit-flex-item .recruit-box-inner{
	padding:5px 10px;
}
.recruit-flex-block .recruit-flex-item .recruit-box-inner .facility-name{
	color:#333;
/*	 font-family: "新ゴ M","Shin Go Medium";*/
	font-size:16px;
}
.recruit-flex-block .recruit-flex-item .recruit-box-inner .facility-place{
	color:#87ba45;
	font-size:14px;
	line-height:1.1;
	margin:5px 0;
}
.recruit-flex-block .recruit-flex-item  .facility-type{
	border:solid 1px #f16980;
	color:#f16980;
	font-size:14px;
	padding:2px 10px;
	display:inline-block;
	line-height:1;
}



/* ---- */
.more-recruit-link {
	display: inline-block;
	font-size:20px;
	margin:5px 0;
	background:#ffc100;
	color:#fff;
	padding:10px 120px;
	border:solid 2px #ffc100;
	text-align: center;
	text-decoration: none;
	outline: none;
}
.more-recruit-link::before,
.more-recruit-link::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.more-recruit-link,
.more-recruit-link::before,
.more-recruit-link::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.more-recruit-link:hover{
  background-color: #fff;
  border-color: #ffc100;
  color: #ffc100;
}



/* 下層ページ見出し */
.page-header{
	height:300px;
/*	font-family: "新ゴ DB", "Shin Go DeBold", "Arial Black";
	 font-family: "新ゴ M","Shin Go Medium";*/
}
.page-header h1{
	display:inline-block;
	background:#ffc100;
	box-shadow: 5px 5px rgb(255,255,255,0.8);
	margin-top:120px;
	color:#fff;
	font-size:30px;
	padding:5px 15px;
}
.page-header-interview h1,
.page-header-entry h1{
	background:#669d1e;
}


.bg-about{
	background:url("../img/about/bg_about.jpg") no-repeat top center;
	background-size:cover;
}

.bg-environment{
	background:url("../img/environment/bg_environment.jpg?20190813") no-repeat;
	background-size:cover;
}

.bg-interview{
	background:url("../img/interview/bg_interview.jpg") no-repeat;
	background-size:cover;
}

.bg-voice01{
	background:url("../img/interview/bg_voice01.jpg") no-repeat;
	background-size:cover;
}
.bg-voice02{
	background:url("../img/interview/bg_voice02.jpg") no-repeat;
	background-size:cover;
}

.bg-voice03{
	background:url("../img/interview/bg_voice03.jpg") no-repeat;
	background-size:cover;
}

.bg-voice04{
	background:url("../img/interview/bg_voice04.jpg") no-repeat;
	background-size:cover;
}
.bg-voice05{
	background:url("../img/interview/bg_voice05.jpg") no-repeat;
	background-size:cover;
}
.bg-voice06{
	background:url("../img/interview/bg_voice06.jpg") no-repeat;
	background-size:cover;
}
.bg-voice07{
	background:url("../img/interview/bg_voice07.jpg") no-repeat;
	background-size:cover;
}
.bg-voice08{
	background:url("../img/interview/bg_voice08.jpg") no-repeat;
	background-size:cover;
}
.bg-voice09{
	background:url("../img/interview/bg_voice09.jpg") no-repeat;
	background-size:cover;
}
.bg-voice10{
	background:url("../img/interview/bg_voice10.jpg") no-repeat;
	background-size:cover;
}
.bg-voice11{
	background:url("../img/interview/bg_voice11.jpg") no-repeat;
	background-size:cover;
}
.bg-voice12{
	background:url("../img/interview/bg_voice12.jpg") no-repeat;
	background-size:cover;
}
.bg-recruit{
	background:url("../img/recruit/bg_recruit.jpg") no-repeat;
	background-size:cover;
}

.bg-entry{
	background:url("../img/entry/bg_entry.jpg") no-repeat;
	background-size:cover;
}



/* -------------------------------------------
 * 下層ページ基本
 --------------------------------------------- */
.page-block{
		padding:30px 0 60px 0;

}

.page-section{
	position:relative;
	margin-bottom:70px;
}
.page-section:after{
	position:static;
}

.page-section .right-img,
.page-section .left-img{
	position:absolute;
	z-index:200;
	top:0;
	right:0px;
	width:500px;
}
.page-section .right-img img,
.page-section .left-img img {
	width:100%;
	box-shadow: 8px 8px #ffc100;
}
.page-section-voice .right-img img,
.page-section-voice .left-img img {
	box-shadow: 8px 8px #669d1e;
}
.page-section .left-img{
	top:0;
	left:0;
}

.page-section .left-box,
.page-section .right-box {
	z-index:100;
	top:0;
	background:#fff;
	width:800px;
	box-shadow: 0px 3px 5px rgba(200, 200, 200, 0.3);
}
.page-section .right-box {
	margin-left:400px;
}

.page-section  .left-box-inner {
	padding:30px 140px 30px 30px;
}
.page-section  .right-box-inner {
	padding:30px 30px 30px 140px;
}
.page-section  .left-box-inner h3,
.page-section  .right-box-inner h3{
	font-size:1.4em;
	color:#00a9b8;
}
.page-section  .left-box-inner p,
.page-section  .right-box-inner p{
	margin-bottom:0.8em;
}
.page-section  .left-box-inner p i,
.page-section  .right-box-inner p i{
	color:#ffc100;
}
@media screen and (max-width:800px){

	.page-block{
	}
	.page-section{
		padding:0 15px;
		margin-bottom:30px;
	}
	.page-section:after{
	}
	.page-section .right-img,
	.page-section .left-img{
		position:static;
		background:#fff;
		overflow:hidden;
		max-height:150px;
		width:100%;
	}
	.page-section .right-img>img,
	.page-section .left-img>img {
		box-shadow:none;
	}
	.page-section-voice .right-img>img,
	.page-section-voice .left-img>img {
		box-shadow:none;
		width:100%;
	}
	.page-section .left-img{
		top:0;
		left:0;
	}

	.page-section .left-box,
	.page-section .right-box {
		width:100%;
	}
	.page-section .right-box {
		margin-left:0px;
	}
	.page-section  .left-box-inner {
		padding:20px 20px 20px 20px;
	}
	.page-section  .right-box-inner {
		padding:20px 20px 20px 20px;
	}
	.page-section  .left-box-inner h3,
	.page-section  .right-box-inner h3{

	}
	.page-section  .left-box-inner p,
	.page-section  .right-box-inner p{
		font-size:0.9em;
	}
	.page-section  .left-box-inner p i,
	.page-section  .right-box-inner p i{

	}


}


/* -------------------------------------------
 * コンテンツ
 --------------------------------------------- */
.content{
}

.content-about,
.content-recruit,
.content-error
{
	background:#fbf7b0;
}
.content-interview,
.content-entry{
	background:#91bf3e;
}




