@charset "UTF-8";

/* 基本色 */
:root {
	--main-color: #B18904;
	--accent-color: #000000;
	--dark-main-color: #000000;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	/*--large-width: 1000px;*/
	--large-width: 1200px;
	--middle-width: 1000px;
}


/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;}



/* 基本設定： ページ全体 */
body {
	margin: 0;
	/*font-family: 'メイリオ','Hiragino Kaku Gothic Pro',sans-serif;*/
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}


/* コンテンツB： 概要（アイコン＋テキスト） */
.conB .container {
	padding-top: 80px;
	padding-bottom: 20px;
}

.conB .text {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 60px;
	text-align: center;
}

.conB h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conB p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conB a {
	color: #5D9AB2;
	color: var(--main-color);
	text-decoration: none;
}

.conB a:hover	{
	text-decoration: underline;
}

.conB .icon	{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 40px;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #ddd;
	background-color: var(--icon-bk-color);
	color: #fff;
	color: var(--icon-color);
}

@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conB .text	{
		flex: 1;
	}
}



/* コンテンツC： 概要（画像＋テキスト） */
.conC {
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}

.conC .text {
	padding: 20px;
}

.conC h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conC p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conC a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #000000;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.conC a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

.conC .photo {
	min-height: 200px;
	background-image: url(common/img/note.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conC .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conC .photo {
		flex: 3;
	}

	.conC .text {
		flex: 2;
		padding: 50px;
	}
}



/* コンテンツD： 概要（画像＋テキスト：逆配置） */
.conD .container {
	padding-top: 2px;
}

.conD .text {
	padding: 20px;
}

.conD h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conD p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conD a {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	box-shadow: 0 0 0 1px #888;
	border: solid 3px currentColor;
	border-radius: 6px;
	background-color: #000000;
	background-color: var(--accent-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 14px;
	text-decoration: none;
}

.conD a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}

.conD .photo {
	min-height: 200px;
	background-image: url(common/img/life.jpg);
	background-position: center;
	background-size: cover;
}

@media (min-width: 768px) {
	.conD .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.conD .photo {
		flex: 0 0 400px;
	}

	.conD .text {
		flex: 1;
		padding: 50px;
	}
}



/* フッター */
footer {
	color: #fff;
	color: var(--text-bright-color);
	background-color: #2B5566;
	background-color: var(--dark-main-color);
}

footer .container {
	padding: 40px 20px;
}


@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.footA {
		flex: 0 0 40%;
	}

	.footB {
		flex: 0 0 60%;
	}

	.footC {
		flex: 0 0 100%;
	}
}


/* フッターA： サイト情報 */
.footA {
	margin-bottom: 30px;
}

.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 30px;
	letter-spacing: 0.2em;
}

.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.footA a {
	color: inherit;
	text-decoration: none;
}


/* フッターB： フッターメニュー */
.footB div {
	margin-bottom: 20px;
}

.footB h3 {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px currentColor;
	font-size: 14px;
}

.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footB a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.footB a:hover {
	background-color: rgba(0,0,0,0.3);
}


@media (min-width: 768px) {
	.footB {
		display: flex;
	}

	.footB div {
		flex: 1;
	}

	.footB div:not(:first-child) {
		margin-left: 40px;
	}
}


/* フッターC： コピーライト */
.footC {
	font-size: 12px;
	text-align: center;
}


/* フッターD： SNSメニュー */
.footD {
	margin-top: 20px;
}

.footD ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footD a {
	display: block;
	margin-right: 8px;
	padding: 0;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	border: solid 1px currentColor;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
}

.footD a:hover {
	background-color: rgba(0,0,0,0.3);
}


/* ヘッダー */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1003;
	width: 100%;
	background-color: rgb(255,255,255);
}

.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

/* ヘッダーA: サイト名 */
.headA {
	display: inline-block;
	width: 150px;
	padding: 15px 0;
}

.headA img{
	width: 140px;
}


/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.headB a {
	display: block;
	padding: 15px;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
}

.headB a:hover {
	background-color: #ffa500;
}

@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display: flex;
	}
}


/* ヘッダーC： トグルボタン */

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
	}

	.headA{
		width: 35%;
		padding: 15px 0 10px 2%;
	}
	.headB a {
		text-align: center;
	}
}

@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}



/* コンテンツページ: 記事 */
.post .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 30px 10px;
}

.post h1 {
	font-size: 2rem;
	font-size: 35px;
}

.post p {
	font-size: 0.9rem;
	font-size: 15px;
	line-height: 2;
	text-align: justify;
}

.post img {
	max-width: 100%;
	width: 1000px;
}

@media (max-width: 768px) {
	.post img{
		width: 100%;
	}

	.post h1 {
		font-size: 1.7rem;
		font-size: 23px;
	}
}


.close_word{
	padding: 20px;
	border: solid 1px currentColor;
}


/* コンテンツページ: パンくずリスト */
.bread{
	margin: 0 auto 30px;
}
.bread ol {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bread a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 0.875rem;
	text-decoration: none;
}

.bread a::after {
	margin-left: 10px;
	content: '\f054';
	font-family: 'FontAwesome';
	opacity: 0.3;
}

.bread a:hover {
	background-color: rgba(0,0,0,0.3);
}



/* アバウトページ： 画像と沿革 */
.history {
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
}

.history .text {
	padding: 20px;
}

.history h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.history .photo {
	min-height: 300px;
	background-image: url(common/img/plant.jpg);
	background-position: center;
	background-size: cover;
}

.history table {
	border-collapse: collapse;
	border-top: solid 1px #ddd;
	border-top: solid 1px var(--gray-color);
	font-size: 0.875rem;
}

.history th,
.history td {
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

.history th {
	padding-right: 1rem;
	text-align: left;
	word-break: keep-all;
}


@media (min-width: 768px) {
	.history .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.history .photo {
		flex: 3;
	}

	.history .text {
		flex: 2;
		padding: 50px;
	}
}


/* お問い合わせページ: 問い合わせ先 */
.contact {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	text-align: center;
}

.contact span	{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 2.2rem;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--icon-color);
}

.contact h2 {
	margin-top: 0;
	font-size: 1.2rem;
}

.contact a {
	font-size: 1.4rem;
	color: inherit;
	text-decoration: none;
}


@media (min-width: 768px) {
	.contact-wrap {
		display: flex;
	}

	.contact {
		flex: 1;
	}

	.contact:first-child {
		margin-right: 20px;
	}
}


/* お問い合わせページ： 地図 */
.location iframe {
	width:100%;
	height: 400px;
	vertical-align: bottom;
}

.location h2 {
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 1.5rem;
	text-align: center;
}



/* 記事一覧A */
.listA h1 {
	text-align: center;
	margin : 30px auto 50px;
}

.listA .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin : 0 auto 80px;
}

.listA article {
	flex: 1 1 300px;
	display: flex;
	max-width: 1005px;
	margin: 0 auto;
}

.listA a {
	flex: 1;
	margin: 5px;
	display: block;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	color: inherit;
	text-decoration: none;
}

.listA a:hover {
	opacity: 0.8;
}

.listA .photo {
	min-height: 240px;
	background-position: center;
	background-size: cover;
}

.listA .text {
	margin: 10px;
}

.listA h2 {
	font-size: 18px;
}

.listA p {
	font-size: 15px;
	opacity: 0.8;
}


/* 記事一覧B */
.listB h1 {
	text-align: center;
}

.listB .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
}

.listB article {
	flex: 1 1 384px;
	display: flex;

}

.listB a {
	flex: 1;
	margin: 10px;
	display: flex;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	color: inherit;
	text-decoration: none;
}

.listB a:hover {
	opacity: 0.8;
}

.listB .photo {
	flex: 2;
	min-height: 0;
	background-position: center;
	background-size: cover;
}

.listB .text {
	flex: 3;
	margin: 10px;
	text-align: center;
}

.listB h2 {
	font-size: 18px;
}

.listB p {
	font-size: 14px;
	opacity: 0.8;
}

.listB .text_button {
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 384px) {
	.listB .photo {
		flex: 1;
	}

	.listB p {
		display: none;
	}
}


/* 記事一覧C */
.listC{
	margin: 80px 0;
}
.listC h1 {
	text-align: center;
}

.listC .container {
	display: flex;
	flex-wrap: wrap;
	max-width: none;
	margin: 2px auto;
}

.listC article {
	flex: 1 1 250px;
	display: flex;
}

.listC a {
	position: relative;
	flex: 1;
	margin: 2px;
	display: block;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	background-color: currentColor;
	color: inherit;
	text-decoration: none;
}

.listC a:hover {
	opacity: 0.8;
}

.listC .photo {
	min-height: 250px;
	background-position: center;
	background-size: cover;
	opacity: 0.6;
}

.listC .text {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 10px;
	color: #fff;
	color: var(--text-bright-color);
}

.listC h2 {
	margin: 0;
	font-size: 18px;
}

.listC p {
	margin: 0;
	font-size: 14px;
	opacity: 0.8;
}

@media (min-width: 1000px) {
	.listC article {
		flex: 1 1 25%;
	}
}

/********************************************************
	以下、2021版 css
/********************************************************/
.disp_pc{ display: block; }
.disp_sp{ display: none; }

.mt0{ margin-top: 0!important; }
.mt20{ margin-top: 20px!important; }
.mt30{ margin-top: 30px!important; }
.mt40{ margin-top: 40px!important; }
.mt50{ margin-top: 50px!important; }
.mt60{ margin-top: 60px!important; }
.mt70{ margin-top: 70px!important; }
.mt80{ margin-top: 80px!important; }
.mt90{ margin-top: 90px!important; }

.mb0{ margin-bottom: 0!important; }
.mb20{ margin-bottom: 20px!important; }
.mb30{ margin-bottom: 30px!important; }
.mb40{ margin-bottom: 40px!important; }
.mb50{ margin-bottom: 50px!important; }
.mb60{ margin-bottom: 60px!important; }
.mb70{ margin-bottom: 70px!important; }
.mb80{ margin-bottom: 80px!important; }
.mb90{ margin-bottom: 90px!important; }
.mb100{ margin-bottom: 100px!important; }
.mb150{ margin-bottom: 150px!important; }

.txt_r{ text-align: right!important; }

@media screen and (max-width: 768px) {
	.mb0_sp{ margin-bottom: 0!important; }
	.disp_pc{ display: none; }
	.disp_sp{ display: block; }
}

h1,h2,h3,h4,p{ margin: 0; padding: 0; }

/********************************************************
	MV （トップ）PC
/********************************************************/
body {
	width: 100%;
}

.opening {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100vh;
	background-color: #fff;
	z-index: 1004;
}

.opening .effect_box {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background-color: rgb(255, 165, 0);
	z-index: 1005;
}

.wrap {
	position: relative;
	width: 100%;
	/*z-index: 100;*/
	overflow: hidden;
}

.mv_area {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1002;
}

.mv_area video {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.mv_area .left_box {
	position: relative;
	width: 20%;
	height: 100vh;
	background-color: rgb(255, 165, 0);
}

.mv_area .main_title{
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 30%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
}

.mv_area h1 {
	letter-spacing: 2px;
	font-size: 5vw;
}

.mv_area .sub_title{
	font-size: 3vw;
}


/********************************************************
	MV （トップ）TB
/********************************************************/
@media screen and (max-width: 1024px) {
	.mv_area .main_title{
		width: 90%;
		bottom: 50%;
		left: 50%;
	}

	.mv_area h1{
		font-size: 6vw;
	}
	.mv_area .sub_title{
		font-size: 3vw;
	}

}


/********************************************************
	MV （トップ）SP
/********************************************************/
@media screen and (max-width: 768px) {
	.mv_area img{
		position: absolute;
		top: 0;
		left: -730px;
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
		z-index: -1;
	}
	.mv_area .left_box{
		width: 20%;
	}

	.mv_area .main_title{
		width: 90%;
		bottom: 50%;
		left: 50%;
	}

	.mv_area h1{
		font-size: 8vw;
	}
	.mv_area .sub_title{
		font-size: 6vw;
	}
}


/********************************************************
	西暦カウント （トップ）PC
/********************************************************/
.count_wrap{
	background-color: rgb(255, 165, 0);
	position: absolute;
	bottom: 15%;
	right: 2%;
	padding: 20px;
	height: 48px;
}

#count {
	line-height: 0;
	margin: 0;
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 10vw;
	letter-spacing: 20px;
}

@media screen and (max-width: 1024px) {
	.count_wrap{
		bottom: 11%;
	}
	#count{
		font-size: 8vw;
	}
}

@media screen and (max-width: 768px) {
	.count_wrap{
		height: auto;
		padding: 5% 0;
	}
	#count{
		font-size: 15vw;
	}
}


/********************************************************
	西暦カウント （トップ）SP
/********************************************************/
@media screen and (max-width: 768px) {
	#count{
		font-size: 50px;
		color: #fff;
	}

}


/********************************************************
    コンテンツ内表示のアニメーション
/********************************************************/
.elem{
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: 1000ms;
}

.isAnimate{
  visibility: visible;
  opacity: 1;
}


/*******************************************************
    見出しエフェクト PC/SP
/********************************************************/
h1.effect,
h2.effect{
  display: flex;
}

.title2_block_inner{
	width: 100%;
}

/* 見出し下線と下からフェードイン */
.home-lead01-h {
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  padding-bottom: 16px;
  margin: 0 auto;
}

.home-lead01-h div {
  position: relative;
}

.home-lead01-h div:after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 5px;
  background: #1a1a1a;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.home-lead01-h.wh div:after{
  background: #fff;
}

.home-lead01-h span {
  font-size: 30px;
  display: inline-block;
  -webkit-transition: 0.5s 0.3s;
  -o-transition: 0.5s 0.3s;
  transition: 0.5s 0.3s;
  -webkit-transform: translateY(0.5em);
  -ms-transform: translateY(0.5em);
  transform: translateY(0.5em);
  opacity: 0;
}

.home-lead01-h_voice span{
	opacity: 1;
}

.home-lead01-h.on div:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.home-lead01-h.on span {
  font-size: 30px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@media (max-width:767px){
	.home-lead01-h{
		padding-left: 3%;
	}
	.home-lead01-h.sp_black div:after{
		background: #000;
	}
	.home-lead01-h span{
		font-size: 20px;

	}
	.home-lead01-h.on span{
		font-size: 20px;
	}
}


/*******************************************************
    先輩の声 （トップ）PC
/********************************************************/
.employee_inner{
	background-color: rgb(255, 165, 0);
	overflow: hidden;
}

.employee_inner a{
	outline: 0;
	margin: 0;
	border: 0;
}

.employee_inner a:hover{
	opacity: 1!important;
}

.employee_inner .employee_box{
	position: relative;
	/*width: 370px;*/
	/*height: 350px;*/
}

.employee_inner .employee_box .caption{
	/*padding: 15px 17px 0 10px;*/
	padding: 20px;
	text-align: left;
}

.employee_inner .employee_box .caption p{
	font-weight: bold;
	opacity: 1!important;
	font-size: 21px!important;
	color: #fff;
}


.employee_inner .employee_box .caption p.sub_txt{
	position: absolute;
	left: 18px;
	bottom: 40px;
	font-size: 16px!important;
}


.employee_inner .employee_box .mask{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	/*left: 0;*/
	left: 15px;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(255, 165, 0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
	color: #fff;
}

.employee_inner .employee_box:hover .mask{
	opacity: 1;	/* マスクを表示する */
	padding-top: 15px;	/* ホバーで下にずらす */
}

.slick-slide{
	padding: 15px 0;
	outline: none;
}

.slick-slide img{
	width: 95%;
}

@media (max-width:1024px){
	.employee_inner .employee_box .caption p{
		font-size: 18px!important;
	}

	.employee_inner .employee_box .caption p.sub_txt{
		font-size: 16px!important;

	}

}

/*******************************************************
    先輩の声 （トップ）SP
/********************************************************/
@media (max-width:767px){
	.employee_inner .employee_box .mask{
		opacity: 1;
		background: none;
		left: 0;
	}

	.employee_inner .employee_box .caption p{
		color: #ffa500;
	}

	.employee_inner .employee_box .caption p.sub_txt{
		bottom: 30px;
	}

	.slick-slide img{
		margin: 0 auto;
	}

}


/*******************************************************
    先輩の声 （下層）PC
/********************************************************/
.clearfix:after{
	clear: both;
	display: block;
	content: "";
}

.low_voice_img{
	width: 35%;
	margin: 0 auto;
	display: inline-block;
}

.low_voice_img img{
	width: 100%;
}

.low_voice_title{
	width: 55%;
	margin-left: 8%;
	display: inline-block;
}

.low_post h1{
	text-align: left;
}

.low_post h2{
	font-size: 20px;
}

@media (max-width:767px){
	.low_post h2{
		font-size: 18px;
	}
}


/*******************************************************
    先輩の声 （下層）SP
/********************************************************/
@media (max-width:767px){
	.low_post .home-lead01-h{
		padding-left: 0;
	}

	.low_post .home-lead01-h span{
		font-size: 20px;

	}

	.low_post .home-lead01-h.on span{
		font-size: 20px;
	}

	.low_voice_img,
	.low_voice_title{
		width: 100%;
		display: block;
		margin: 0 auto;
	}
}


.slick-slider div{
	-webkit-transition: none;
	   -moz-transition: none;
	    -ms-transition: none;
	     -o-transition: none;
	        transition: none;
}







