@charset "utf-8";
/* ===================================================================

 file name  :common.css
 style info :共通cssファイル
 
=================================================================== */

/*PCサイズ
////////////////////////////////////////////////////*/

@media screen and (min-width:751px) {
	#recruit #wrap{
		width: 980px;
		margin: 0 auto;
		letter-spacing: 0.06em;
	}

	/* 共通ボタン - 1 デザイン */
	#recruit #wrap .btn{
		font-size: 13px;
		font-size: 1.3rem;
		font-weight: bold;
		text-align: center;
		padding: 22px 60px;
		box-sizing: border-box;
		border-radius: 50px;
		border: 1px solid #e0e0e0;
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
		position: relative;
		display: inline-block;
		transition: all .5s;
	}
	#recruit #wrap .btn:after{
		position: absolute;
		content: "";
		top: 26px;
		right: 30px;
		background: #EA0029;
		width: 8px;
		height: 8px;
		border-radius: 4px;
		transition: all .5s;
	}
	#recruit #wrap .btn:hover{
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
		border: 1px solid #eee;
		background: #fafafa;
	}
	#recruit #wrap .btn:hover::after{
		background: #eaeaea;
	}

	/* 共通ボタン - 2 デザイン */
	#recruit #wrap .btn02{
		font-size: 13px;
		font-size: 1.3rem;
		box-sizing: border-box;
		position: relative;
		transition: all .5s;
		margin-right: 2px;
		display: block;
		margin-bottom: 15px;
		float: right;
		letter-spacing: 0;
		border-bottom: 1px solid;
	}
	#recruit #wrap .btn02:hover{
		border-bottom: none;
	}

	/* 各セクション共通ヘッダーの対応（三角グレーと見出し） */
	.sections {
		position: relative;
		padding-top: 80px;
		margin-bottom: 80px;
	}
	.sections:before{
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 160px 190px 0 0;
		border-color: #fafafa transparent transparent transparent;
		z-index: -1;
	}
	.sections h2{
		font-size: 20px;
		margin-bottom: 30px;
		font-weight: bold;
		padding-left: 50px;
		line-height: 1.5;
	}
	.sections .sections-ttl-lead{
		margin-bottom: 30px;
		padding-left: 50px;
	}
	/** ページタイトルの対応 **/
	#recruit .page_info{
		margin-top: 80px;
		margin-bottom: 70px;
	}
	#recruit .page_ttl p{
		margin-bottom: 15px;
		text-align: center;
		line-height: 1.0;
	}
	#recruit .page_info h1{
		font-size: 16px;
		font-size: 1.6rem;
		text-align: center;
		margin-bottom: 50px;
	}
	#recruit .page_info .page_lead{
		font-size: 15px;
		font-size: 1.5rem;
		text-align: center;
		line-height: 2;
	}
	#recruit #wrap .btn.btn-entry{
		margin: 30px auto 0;
    display: table;
	}
	.sections.recruit_list p{
		padding-left: 50px;
		margin-bottom: 20px;
	}
	.sections.recruit_list a{
		float: right;
	}
	.recruit_lead{
		margin-left: 50px;
	}
	.recruit_lead p + p{
		margin-top: 10px;
	}
	section .contents02{
		margin: 30px 0 0 50px;
	}
	section .contents02 table {
		border: 1px solid #e0e0e0;
		margin-bottom: 10px;
	}
	section .contents02 table th{
		width: calc(100% - 20px);
		display: block;
		padding: 15px 0 15px 20px;
		background: #fafafa;
		border-right: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
		line-height: 1.7;
		font-weight: normal;
		text-align: left;
	}
	section .contents02 table td{
		width: calc(100% - 40px);
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid #e0e0e0;
		font-weight: normal;
		line-height: 1.7;
	}
	section .contents02 table td div dl + dl{
		margin-top: 10px;
	}
	section .contents02 table td div dl dt{
		font-weight: 600;
	}
	section .contents02 table td div dl dd div dl dt{
		position: relative;
		padding-left: 1.3em;
		font-weight: 500;
	}
	section .contents02 table td div dl dd div dl dt::before{
		content: "-";
		position: absolute;
		top: 0;
		left: 0;
	}
	section .contents02 table td div + div{
		margin-top: 20px;
	}
	section .contents02 .indent ul li{
		text-indent: -1em;
    	padding-left: 1em;
	}
}	



	/*SPサイズ
////////////////////////////////////////////////////*/
	@media screen and (max-width:750px) {
	#recruit #wrap{
		letter-spacing: 0.06em;
	}

	/* 共通ボタン - 1 デザイン */
	#recruit #wrap .btn{
		font-size: 13px;
		font-size: 1.3rem;
		font-weight: bold;
		text-align: center;
		padding: 18px 0;
		box-sizing: border-box;
		border-radius: 50px;
		border: 1px solid #e0e0e0;
		box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
		position: relative;
		display: block;
		transition: all .5s;
		margin: 0 auto;
		width: 80%;
	}
	#recruit #wrap .btn.btn.btn-entry{
		margin-top: 30px;
	}
	#recruit #wrap .btn:after{
		position: absolute;
		content: "";
		top: 28px;
		right: 33px;
		background: #EA0029;
		width: 6px;
		height: 6px;
		border-radius: 4px;
		transition: all .5s;
	}

	/* 共通ボタン - 2 デザイン */
	#recruit #wrap .btn02{
		font-size: 13px;
		font-size: 1.3rem;
		box-sizing: border-box;
		position: relative;
		transition: all .5s;
		display: block;
		margin-bottom: 30px;
		letter-spacing: 0;
		border-bottom: 1px solid;
		float: right;
    	display: block;
	}

	/* 各セクション共通ヘッダーの対応（三角グレーと見出し） */
	.sections {
		position: relative;
		padding-top: 8%;
		margin-bottom: 80px;
	}
	.sections:before{
		position: absolute;
		top: 0;
		left: -2.5%;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 80px 100px 0 0;
		border-color: #fafafa transparent transparent transparent;
		z-index: -1;
	}
	.sections h2{
		font-size: 16px;
		font-size: 1.6rem;
		margin-bottom: 20px;
		font-weight: bold;
		line-height: 1.6;
	}
	.sections .sections-ttl-lead{
		margin-bottom: 30px;
	}
	/** ページタイトルの対応 **/
	#recruit .page_info{
		margin-top: 50px;
   		margin-bottom: 30px;
	}
	#recruit .page_ttl p{
		margin-bottom: 15px;
		text-align: center;
		line-height: 1.0;
		width: 80px;
		margin: 0 auto;
	}
	#recruit .page_info h1{
		font-size: 16px;
		font-size: 1.6rem;
		text-align: center;
		margin-bottom: 20px;
	}
	#recruit .page_info .page_lead{
		font-size: 14px;
		font-size: 1.4rem;
		text-align: center;
		line-height: 2;
	}



	section .recruit_list p{
		margin-bottom: 30px;
	}
	.recruit_lead p + p{
		margin-top: 10px;
	}
	section .contents02{
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
	}
	section .contents02 table {
		border: 1px solid #e0e0e0;
		margin-bottom: 10px;
		font-size: 14px;
	}
	section .contents02 table th{
		display: block;
		width: 94%;
		padding: 3%;
		background: #fafafa;
		border-right: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
		line-height: 1.7;
		font-weight: normal;
		text-align: left;
	}
	section .contents02 table td{
		display: block;
		width: 94%;
		padding: 3%;
		border-bottom: 1px solid #e0e0e0;
		font-weight: normal;
		line-height: 1.7;
	}
	section .contents02 table td.last-box{
		border-bottom: none;
	}
	section .contents02 table td div dl + dl{
		margin-top: 10px;
	}
	section .contents02 table td div dl dt{
		font-weight: 600;
	}
	section .contents02 table td div dl dt{
		font-weight: 600;
	}
	section .contents02 table td div dl dd div dl dt{
		position: relative;
		padding-left: 1.3em;
		font-weight: 500;
	}
	section .contents02 table td div dl dd div dl dt::before{
		content: "-";
		position: absolute;
		top: 0;
		left: 0;
	}
	section .contents02 table td div + div{
		margin-top: 20px;
	}

	section .contents02 .indent ul li{
		text-indent: -1em;
    padding-left: 1em;
	}



}