@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	各固定ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	body直下にid名「wrapper」のdivがあります。
	こちらには、固定ページごとに異なるclass名(post-〇)が付与されますので、
	ご活用ください。
	
	【例】
	<body>
	<div id="wrapper" class="post-2 page type-page status-publish has-post-thumbnail hentry">

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ================================================================================

	レイアウト

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper{
	}

	main.outer_wrap {
		position: relative;
		max-width: none;
		/* max-width: 1920px; 固定幅レイアウト時 */
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 80px 0;
		margin: 0 auto;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wrapper {
	}

	main.outer_wrap {
		position: relative;
		width: 100%;
		min-height: 50vh;
		padding: 12vw 0;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		padding: 0 4vw;
	}
}





/* ================================================================================

	メイン画像

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.main_cate {
		position: relative;
		background: url(../img/main_cate.jpg) center top / cover no-repeat;
		width: 100%;
		height: 18.8vw;
	}
	.main_cate_in {
		position: relative;
		display: table;
		width: 100%;
		height: 100%;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 2.6vw;
		font-weight: 900;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
		padding-top: 1.5em;
		color: #69a62b;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		background: url(../img/main_cate_sp.jpg) center top / cover no-repeat;
		width: 100%;
		height: 78vw;
	}
	.main_cate_in {
		position: relative;
		display: table;
		width: 100%;
		height: 100%;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 6vw;
		font-weight: 900;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
		padding-top: 1.5em;
		color: #69a62b;
	}
}





/* ================================================================================

	マージンボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 120px;
	}
	.top_middle {
		margin-top: 80px;
	}
	.top_short {
		margin-top: 40px;
	}
	.top_vshort {
		margin-top: 20px;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 120px;
	}
	.bottom_middle {
		margin-bottom: 80px;
	}
	.bottom_short {
		margin-bottom: 40px;
	}
	.bottom_vshort {
		margin-bottom: 20px;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 120px;
		margin-bottom: 120px;
	}
	.both_middle {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.both_short {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.both_vshort {
		margin-top: 20px;
		margin-bottom: 20px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 16vw;
	}
	.top_middle {
		margin-top: 12vw;
	}
	.top_short {
		margin-top: 8vw;
	}
	.top_vshort {
		margin-top: 4vw;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 16vw;
	}
	.bottom_middle {
		margin-bottom: 12vw;
	}
	.bottom_short {
		margin-bottom: 8vw;
	}
	.bottom_vshort {
		margin-bottom: 4vw;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 16vw;
		margin-bottom: 16vw;
	}
	.both_middle {
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
	.both_short {
		margin-top: 8vw;
		margin-bottom: 8vw;
	}
	.both_vshort {
		margin-top: 4vw;
		margin-bottom: 4vw;
	}

}




/* ================================================================================

	パディングボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 120px;
	}
	.p_top_middle {
		padding-top: 80px;
	}
	.p_top_short {
		padding-top: 40px;
	}
	.p_top_vshort {
		padding-top: 20px;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 120px;
	}
	.p_bottom_middle {
		padding-bottom: 80px;
	}
	.p_bottom_short {
		padding-bottom: 40px;
	}
	.p_bottom_vshort {
		padding-bottom: 20px;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.row_middle {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.row_short {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.row_vshort {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 16vw;
	}
	.p_top_middle {
		padding-top: 12vw;
	}
	.p_top_short {
		padding-top: 8vw;
	}
	.p_top_vshort {
		padding-top: 4vw;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 16vw;
	}
	.p_bottom_middle {
		padding-bottom: 12vw;
	}
	.p_bottom_short {
		padding-bottom: 8vw;
	}
	.p_bottom_vshort {
		padding-bottom: 4vw;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 16vw;
		padding-bottom: 16vw;
	}
	.row_middle {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}
	.row_short {
		padding-top: 8vw;
		padding-bottom: 8vw;
	}
	.row_vshort {
		padding-top: 4vw;
		padding-bottom: 4vw;
	}


	/* 背景色を伸ばす
	----------------------------------------------- */
	.row_sp {
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




/* ================================================================================

	カラーボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* カラー01 */
	.row_c01 {
		background: #d5ecbf;
	}

	/* カラー02 */
	.row_c02 {
		background: #fbf6d8;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border: 4px solid #85ba4e;
		border-radius: 6px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* カラー01 */
	.row_c01 {
		background: #d5ecbf;
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		background: #fbf6d8;
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		border: 1vw solid #85ba4e;
		border-radius: 2vw;
	}
}




/* ================================================================================

	見出し

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		color: #69a62b;
		background: #fff4b5;
		border-left: solid 5px #85ba4e;
		border-bottom: solid 3px #e1d733;
		border-radius: 0.2em;
		padding: 0.7em 24px 0.9em !important;
	}
	.h2_cate h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.4 !important;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		color: #69a62b;
		border: 1px solid #84ba4e;
		padding: 0.4em 29px 0.6em !important;
		border-radius: 0.2em;
		background: #fff;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4 !important;
	}

}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		color: #69a62b;
		background: #fff4b5;
		border-left: solid 5px #85ba4e;
		border-bottom: solid 3px #e1d733;
		border-radius: 0.2em;
		padding: 0.7em 3vw 0.9em !important;
	}
	.h2_cate h2 {
		font-size: 5.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		color: #69a62b;
		border: 1px solid #84ba4e;
		padding: 0.4em 4vw 0.6em !important;
		border-radius: 0.2em;
		background: #fff;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
	}

}




/* ================================================================================

	共通ボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 40px;
	}
	.link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.link_common ul li {
		display: inline-block;
		font-size: 22px;
		letter-spacing: 0;
		margin-left: 20px;
	}
	.link_common ul li:first-of-type {
		margin-left: 0;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		background-color: #84bb4e;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
		border-radius: 0.2em;
		transition: 0.3s ease-in-out;
		box-shadow: 0px 6px #6aa72c;
		margin-top: 0px;
		margin-bottom: 6px;
	}
	.link_common ul li a:hover {
		opacity: 1;
		box-shadow: 0px 0px #6aa72c;
		margin-top: 6px;
		margin-bottom: 0px;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow03.png) center top / contain no-repeat;
		width: 12px;
		height: 12px;
		top: 50%;
		margin-top: -6px;
		right: 12px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 6vw;
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
	}
	.link_common ul li {
		padding-top: 6vw;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		background-color: #84bb4e;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
		border-radius: 0.2em;
		transition: 0.3s ease-in-out;
		box-shadow: 0vw 1.5vw #6aa72c;
		margin-top: 0vw;
		margin-bottom: 1.5vw;
	}
	.link_common ul li a:hover {
		opacity: 1;
		box-shadow: 0vw 0vw #6aa72c;
		margin-top: 1.5vw;
		margin-bottom: 0vw;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow03.png) center top / contain no-repeat;
		width: 4vw;
		height: 4vw;
		top: 50%;
		margin-top: -2vw;
		right: 3vw;
	}
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここから各固定ページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ================================================================================

	実績紹介部分

================================================================================ */


/* カテゴリアイコン色 */
.works_icon span {
	background-color: #222222;
	color: #ffffff;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.works_wrap {
		position: relative;
		width: 1000px;
		margin:0 auto;
	}
	.works_wrap ul {
		font-size: 0;
		text-align: center;
	}
	.works_wrap > ul > li {
		display: inline-block;
		vertical-align: top;
		text-align: left;
		width: 320px;
		margin-left: 20px;
		font-size: 16px;
	}
	.works_wrap > ul > li:nth-of-type(3n+1) {
		margin-left: 0;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(16px);
		-webkit-transform: translateY(16px);
		-ms-transform: translateY(16px);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		width: 100%;
		height: 213px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 18px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.works_wrap {
		position: relative;
		margin: 0 auto;
	}
	.works_wrap > ul {
	}
	.works_wrap > ul > li {
		position: relative;
		padding: 0;
		margin-top: 6vw;
	}
	.works_wrap > ul > li:first-of-type {
		margin-top: 0;
	}

	.works_wrap > ul > li > a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		
		border: 1px solid #cccccc;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(4vw);
		-webkit-transform: translateY(4vw);
		-ms-transform: translateY(4vw);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		max-width: 100%;
		width: 100%;
		height: 62vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 4vw;
	}

}





/* ================================================================================

	数字でわかるページ

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* 共通枠 */
	.numbers_border,
	.numbers_border_2{
		border: #69a62b solid 2px;
		border-radius: 15px;
		text-align: center;
		color: #69a62b;
		position: relative;
		padding-top: 35px;
	}
	/* タイトル */
	.row01_about_in_1 p.title_name{
		background: #fff;
		padding: 0 14px;
		position: absolute;
		left: 13px;
		top: -15px;
	}

	/* 数字部分 */
	.row01_about_in_1 p.numbers{
		font-size: 66px;
		font-weight: bold;
		margin: -27px 0 0 7px;
		padding-bottom: 10px;
	}
	.row01_about_in_1 p.numbers span{
		font-size: 25px;
		font-weight: normal;
		padding-left: 4px;
	}

	/* 中枠タイトル */
	.row02_about h3{
		background: #fff;
		display: ruby-text;
		font-size: 23px;
		padding: 0 11px 0;
		position: absolute;
		top: -51px;
		left: 12px;
	}
	/* ランキング */
	.about_ranking{
		text-align: left;
		font-weight: 100;
		padding: 15px 50px;
	}
	.about_ranking ul li{
		text-indent: -3em;
		margin-bottom: 15px;
		padding: 5px 5px 23px 2.9em;
		line-height: 1.2;
	}
	.about_ranking ul li:nth-of-type(1){
		color: #e9d35a;
		border-bottom: dashed 1px;
		font-weight: bold;
		font-size: 37px;
	}
	.about_ranking ul li:nth-of-type(2){
		color: #6bbed9;
		border-bottom: dashed 1px ;
		font-size: 30px;
		font-weight: bold;
	}
	.about_ranking ul li:nth-of-type(3){
		color: #d88cdf;
		border-bottom: dashed 1px ;
		font-size: 26px;
		font-weight: bold;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		/* 共通枠 */
		.numbers_border,
		.numbers_border_2{
			border: #69a62b solid 2px;
			border-radius: 15px;
			text-align: center;
			color: #69a62b;
			padding-top: 2em;
		}

		.row02_about .numbers_border_2{
			margin-bottom:3em;
			position: relative;
		}
		/* タイトル */
		.row01_about_in_1 p.title_name{
			background: #fff;
			margin-top: -3vw;
			padding: 0 3vw;
			display: inline-block;
			position: absolute;
			left: 6vw;
			top: 0vw;
		}
	
		/* 数字部分 */
		.row01_about_in_1 p.numbers{
			font-size: 14vw;
			font-weight: bold;
			margin: -5vw 0 0 5vw;
			padding-bottom: 8px;
		}
		.row01_about_in_1 p.numbers span{
			font-size: 6vw;
			font-weight: normal;
			padding-left: 1vw;
		}
	
		/* 中枠タイトル */
		.row02_about h3{
			background: #fff;
			font-size: 4vw;
			padding: 0 2vw 0;
			position: absolute;
			top: -10vw;
			left: 3vw;
		}
		/* ランキング */
		.about_ranking{
			text-align: left;
			font-size: 6vw;
			font-weight: 100;
			padding: 0 8vw 0;
		}
		.about_ranking ul li{
			text-indent: -3em;
			margin-bottom: 2vw;
			padding: 2vw 2vw 3vw 17.6vw;
			line-height: 1.2;
			font-weight: bold;
		}
		.about_ranking ul li:nth-of-type(1){
			color: #e9d35a;
			border-bottom: dashed 1px ;
		}
		.about_ranking ul li:nth-of-type(2){
			color: #6bbed9;
			border-bottom: dashed 1px ;
		}
		.about_ranking ul li:nth-of-type(3){
			color: #d88cdf;
			border-bottom: dashed 1px ;
		}
}





/* ================================================================================

	募集要項ページ

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.recruit_box h4{
		color: #ffffff;
		background: #85ba4e;
	}
	.recruit_box h4 a:hover {
		color: #fff4b5;
		opacity: 0.6;
	}

	/* テーブル設定 */
	.recruit_box 

	.recruit_box table , .recruit_box td, .recruit_box th {
		border: 1px solid #84bb4e;
		border-collapse: collapse;
	}
	.recruit_box table {
		width: 100%;
	}
	.recruit_box td {
		padding:10px;
	}
	.recruit_box th {
		background: #d5ecbf;
		padding:10px;
		text-align:center;
	}
}



/* SP設定
----------------------------------------------- */
	@media (max-width: 767px) {
		.recruit_box h4{
			color: #ffffff;
			background: #85ba4e;
		}
		.recruit_box h4 a:hover {
			color: #fff4b5;
			opacity: 0.6;
		}
		/* テーブル設定 */
		.recruit_box 
	
		.recruit_box table , .recruit_box td, .recruit_box th {
			border: 1px solid #84bb4e;
			border-collapse: collapse;
		}
		.recruit_box table {
			width: 100%;
		}
		.recruit_box td {
			padding:10px;
		}
		.recruit_box th {
			background: #d5ecbf;
			padding:10px;
			text-align:center;
		}
	
}





/* ================================================================================

	キャリアページ

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.career_h3 h3{
		font-size:35px;
		font-weight: bold;
		color: #69a62b;
	}
	.career_h3 h3 span{
		font-size: 22px;
		font-weight: normal;
		border-top: 1px solid #69a62b;
		padding: 15px 0 0;
		display: inline-block;
		margin-top: 15px;
	} 
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.career_h3 h3{
		font-size: 7vw;
		font-weight: bold;
		color: #69a62b;
	}
	.career_h3 h3 span{
		font-size: 5vw;
		font-weight: normal;
		border-top: 1px solid #69a62b;
		padding: 3vw 0 0;
		display: inline-block;
		margin-top: 3vw;
	} 
}





/* ================================================================================

	先輩インタビュー　ページ

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* キャッチコピー */
	.interview_title h2{
		color: #69a62b;
		font-weight: bold;
		font-size: 50px;
		line-height: 1.3;
		-moz-text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
-webkit-text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
-ms-text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
	}
	/* 名前 */
	.interview_name{
		position: relative;
	}
	.y_bg_pc{
		position: relative;
	}
	.y_bg_pc::before{
		position: absolute;
		content: "";
		background: #e1d733;
		width: 1000px;
		height: 130px;
		top: -6px;
		left: -86px;
		border-radius: 10px;
		z-index: -1;
	}
	.interview_name li:first-of-type{
		font-size: 30px;
	}
	
	/* インタビュータイトル */
	.interview_q,.interview_q_nomal{
		position: relative;
		color: #69a62b;
		font-size: 25px;
		border-bottom: 1px dashed;
		padding: 15px 0;
	}
	.interview_q::before{
		position: absolute;
		content: "Q";
		left: -37px;
		top: -217px;
		font-size: 344px;
		opacity: 0.2;
		z-index: -1;		
	}

	.interview_q h3,.interview_q_nomal h3{
		line-height: 1.2;
	}
	/* スケジュールテーブル */
	.interview_sk_table table,.interview_sk_table td{
		border: 1px solid #d5ecbf;
		border-collapse: collapse;
	}
	.interview_sk_table table{
		width: 100%;
	}
	.interview_sk_table td{
		padding: 10px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* キャッチコピー */
	.interview_title h2{
		color: #69a62b;
		font-weight: bold;
		font-size: 7vw;
		line-height: 1.2;
		-moz-text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
-webkit-text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
-ms-text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
	}
	/* 名前 */
	/* .interview_name{
		color:#69a62b
	} */

	.y_bg_sp{
		position: relative;
	}
	.y_bg_sp::before{
		position: absolute;
		content: "";
		background: #e1d733;
		width: 96%;
		height: 65vw;
		top: 36vw;
		left: -86px;
		border-radius: 10px;
		z-index: -1;
	}


	.interview_name li:first-of-type{
		font-size: 6vw;
	}
	
	/* インタビュータイトル */
	.interview_q,.interview_q_nomal{
		position: relative;
		color: #69a62b;
		font-size: 5vw;
		border-bottom: 1px dashed;
		padding: 4vw 0;
		text-align: left !important;
	}
	.interview_q::before{
		position: absolute;
		content: "Q";
		left: -27vw;
		top: -44vw;
		font-size: 70vw;
		opacity: 0.2;
		z-index: -1;		
	}

	.interview_q h3,.interview_q_nomal h3{
		line-height: 1.2;
	}
	/* スケジュールテーブル */
	.interview_sk_table table,.interview_sk_table td{
		border: 1px solid #d5ecbf;
		border-collapse: collapse;
	}
	.interview_sk_table table{
		width: 100%;
	}
	.interview_sk_table td{
		padding: 10px;

	}

}





/* ================================================================================

	アクセスページ

================================================================================ */

.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}