@charset "utf-8";

/* IMPORT RESET */
@import url("reset.css");

/* IMPORT 12 COLUMN RESPONSIVE GS */
@import url("base.css");

/***********************************************************************

サイト名：パブリックデザイン採用ページ

/***********************************************************************

【目次】
01. 共通要素
02. ヘッダー
03. フッター
04. コンテンツ

*********************************************************************** /


/* ==========================================
 01. 共通要素
============================================ */

html {
	font-size:62.5%;
	/*font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight:500;
	text-shadow:0px 0px 0px #000;
	color:#444;*/
}

body
{
	font-family: 'Meiryo', 'Hiragino Gothic Pro', 'ヒラギノ丸ゴ Pro',  'メイリオ', 'MS PGothic', 'MS Pゴシック', sans-serif;
	background:#ffffff;
	font-size:1.4rem;
}

/* 掲載終了用 */

.closed-box {
	border:1px solid #e70011;
	margin-bottom:2.5rem;
	padding:2rem 0;
}

.closed-box p {
	text-align:center;
	font-size:2rem;
	color:#e70011;
}


/* ==========================================
 02. ヘッダー
============================================ */

header {
	width:100%;
}

.border-top {
	background:#333;
	padding:3px 2rem;
}

.border-top span {
	color:#fff;
	font-size:1rem;
	font-weight:700;
}

.border-bottom {
	background:#fff;
	padding:0 2rem;
	border-bottom:1px solid #d5d5d5;
	border-top:1px solid #d5d5d5;
}

.border-bottom .header-left-wrapper {
	height:70px;
	line-height:72px;
	position:relative;
}

.border-bottom .header-left-wrapper:after {
	content: " ";
	display: table;
	clear: both;
}

.border-bottom .header-left-wrapper div.logo{
	float:left;
	height:45px;
	position:absolute;
	bottom:1.5rem;
	left:-20px;
}

@media print, screen and ( min-width : 851px ) {
	.border-bottom .header-left-wrapper div.logo{
		float:left;
		height:45px;
		position:absolute;
		bottom:1.5rem;
		left:0;
	}
}

.border-bottom .header-left-wrapper div.logo a {
	color:#9dbd02;
	font-size:3.5rem;
	font-weight:550;
	height:45px;
}

/* 応募フォームボタン */

.border-bottom .header-left-wrapper div.form-btn {
	float:right;
}

.border-bottom .header-left-wrapper div.form-btn a {
	display:inline-block;
	width:170px;
	height:45px;
	line-height:45px;
	border:1px solid #fa7701;
	color:#fa7701;
	background:#fff;
	text-align:center;
	font-weight:600;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.border-bottom .header-left-wrapper div.form-btn a .arrow{
	position: relative;
	display: inline-block;
	padding-left:1.5rem;
}

.border-bottom .header-left-wrapper div.form-btn a .arrow::before{
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 1px #fa7701;
	border-right: solid 1px #fa7701;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top:0;
	bottom:0;
	margin-top:-9px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.border-bottom .header-left-wrapper div.form-btn a::after,
.border-bottom .header-left-wrapper div.form-btn a::before {
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* hoverアクション */

.border-bottom .header-left-wrapper div.form-btn a:hover {
	background:#fa7701;
	color:#fff;
}

.border-bottom .header-left-wrapper div.form-btn a:hover .arrow::before {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
}

/* パンくずリスト */

.breadlist-box {
	padding:2px 2rem;
	background:#f9f9fb;
	font-size:1.1rem;
	color:#8b929d;
}

.breadlist-box a {
	font-size:1.1rem;
	color:#8b929d;
	display:inline-block;
	margin:0 2rem;	
}

.breadlist-box a:first-child {
	margin-left:0;
}

.breadlist-box a:hover {
	text-decoration:underline;
}


/* ==========================================
 03. フッダー 
============================================ */

footer {
	border-top:1px solid #d5d5d5;
	background:#f8f8f8;
	padding:1rem;
	color:#aaaaaa;
	font-size:1.1rem;
	width:100%;
	margin-top:5rem;
}

.footer-wrapper:after {
	content: " ";
	display: table;
	clear: both;
}

.footer-wrapper p.f-logo {
	float:left;
	margin-right:3rem;
}

.footer-box p {
	margin-bottom:0.5rem;
}

footer p.f-middle a {
	color:#aaa;
}

footer p.f-middle a:hover {
	text-decoration:underline;
}

footer p.f-middle span:after {
	content: " | ";
}

footer p.f-middle span:last-child:after {
	content: " ";
}

/* ==========================================
 04. コンテンツ
============================================ */

/* コンテンツのヘッダー部分 */

.content-header-wrapper {
	width:100%;
	border-bottom:1px solid #cccccc;
	box-shadow: 0px 1px #f6f6f6;
}

.content-header-wrapper .content-header-box {
	position:relative;
	height:60px;
	line-height:60px;
}

/* 左のボタン2つ */

.content-header-wrapper .content-header-box ul.content-header-left {
	display:table;
	background:none;
	position:absolute;
	bottom:0;
}

.content-header-wrapper .content-header-box ul.content-header-left li {
	display:table-cell;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child {
	background:#9dbd02;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child {
	background:#f4f9d9;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child a {
	display:block;
	width:120px;
	height:40px;
	line-height:40px;
	background:#9dbd02;
	color:#fff;
	text-align:center;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child a {
	display:block;
	width:120px;
	height:40px;
	line-height:40px;
	background:#f4f9d9;
	color:#555;
	text-align:center;
}

.content-header-wrapper .content-header-box ul.content-header-left li a,
.content-header-wrapper .content-header-box ul.content-header-left li a::after,
.content-header-wrapper .content-header-box ul.content-header-left li a::before {
	-webkit-transition: all .3s;
	transition: all .3s;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child a:hover {
	position:relative;
	top:-5px;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child a:hover {
	position:relative;
	top:-5px;
}

@media print, screen and ( min-width : 851px ) {

.content-header-wrapper .content-header-box ul.content-header-left {
	display:table;
	background:none;
	float:left;
	position:absolute;
	bottom:0;
}

.content-header-wrapper .content-header-box ul.content-header-left li {
	display:table-cell;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child {
	background:#9dbd02;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child {
	background:#f4f9d9;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child a {
	display:block;
	width:120px;
	height:40px;
	line-height:40px;
	background:#9dbd02;
	color:#fff;
	text-align:center;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child a {
	display:block;
	width:120px;
	height:40px;
	line-height:40px;
	background:#f4f9d9;
	color:#555;
	text-align:center;
}

.content-header-wrapper .content-header-box ul.content-header-left li a,
.content-header-wrapper .content-header-box ul.content-header-left li a::after,
.content-header-wrapper .content-header-box ul.content-header-left li a::before {
	-webkit-transition: all .3s;
	transition: all .3s;
}

.content-header-wrapper .content-header-box ul.content-header-left li:first-child a:hover {
	position:relative;
	top:-5px;
}

.content-header-wrapper .content-header-box ul.content-header-left li:last-child a:hover {
	position:relative;
	top:-5px;
}
}


/* 右のmenu */

.content-header-wrapper .content-header-box ul.content-header-right {
	float:right;
	display:table;
	position:absolute;
	right:0;
	bottom:0;
}

.content-header-wrapper .content-header-box ul.content-header-right li {
	display:table-cell;
	color:#bbb;
	padding:0 1rem;
	vertical-align:bottom;
	line-height:normal;
	padding-bottom:1rem;
}

.content-header-wrapper .content-header-box ul.content-header-right li a {
	color:#333;
	position:relative;
	font-weight:600;
}

.content-header-wrapper .content-header-box ul.content-header-right li a:hover {
	color:#fa5a04;
}

/* 矢印をCSSで書き出す */

.content-header-wrapper .content-header-box ul.content-header-right li:first-child span {
	font-size:1.2rem;
	position: relative;
	padding: 0 10px;
	width: auto;
	color: #fff;
	text-align: center;
	background: #9dbd02;
	border: 3px solid #9dbd02;
	z-index: 0;
}

.content-header-wrapper .content-header-box ul.content-header-right li:first-child span:before {
	content: "";
	position: absolute;
	top: 50%; 
	right: -8px;
	margin-top: -9px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 9px 0 9px 9px;
	border-color: transparent transparent transparent #9dbd02;
	z-index: 0;
}

.content-header-wrapper .content-header-box ul.content-header-right li:first-child span:before {
	content: "";
	position: absolute;
	top: 50%; 
	right: -8px;
	margin-top: -5px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #9dbd02;
	z-index: -1;
}

/* Newアイコン */

.content-header-wrapper .content-header-box ul.content-header-right li:nth-child(2) span.icon,
.content-header-wrapper .content-header-box ul.content-header-right li:nth-child(3) span.icon {
	color:#fff;
	background:#fa5a04;
	font-size:1.2rem;
	padding:0 7px;
}

/* 共通要素 */

.main-content {
	padding:3rem 0;
}

span.yellow-green {
	color:#c0da41;
	font-size:1.4rem;
}

/* 画像らへんのところ */

span.recruit-number {
	display:block;
	border-top:1px solid #9dbd02;
	box-shadow:0 1px 0 1px #fff inset;
	color:#799300;
	font-weight:600;
	padding:4px 15px;
	background:url(../images/number_bg.gif) repeat;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

section h1 {
	font-size:2.2rem;
	font-weight:bold;
	margin:2rem 0 1rem 0;
	padding-bottom:1rem;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-bottom:1px dotted #555;
}

.sub-title {
	color:#676767;
}

.main-content section section {
	margin:4rem 0;
}

@media print, screen and ( min-width : 851px ) {

	.main-content section .border-box {
		border:1px solid #e5e5e5;
	}

}

/* ここ画像 */

.main-content section .border-box h2 {
	margin-bottom:2rem;
}

/* 画像下のアイコン */

.main-content section .border-box .status-text-box {
	color:#66a644;
	font-size:1.6rem;
	padding:0 2rem;
	margin-bottom:3rem;
}

.main-content section .border-box .status-text-box:after {
	content: " ";
	display: table;
	clear: both;
}

.main-content section .border-box .status-text-box .status-text {
	margin-right:3rem;
	display:block;
	float:left;
}

/* アイコンをcss3で書き出す */

.status-icon {
	float:left;
	height:20px;
	width:20px;
	display:block;
	position:relative;
	border-radius:50px;
	-webkit-border-radius:50px;
	-moz-border-radius:50px;
	background:#66a644;
	margin-right:0.5rem;
}

.status-icon:after,
.status-icon:before {
	content:'';
	height:14px;
	width:3px;
	display:block;
	background:#fff;
	position:absolute;
	top:3px;
	left:10px;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
}

.status-icon:before {
	height:6px;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	top:9px;
	left:4px;
}

/* ここからコンテンツ */

@media print, screen and ( min-width : 851px ) {

.content-box-padding {
	padding:0 2rem;
}

}

/* h3タイトルボーダー付き */

.title-box-h3 {
	font-size: 1.7rem;
	color:#799300;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:bold;
	margin-left:-2rem;
	margin-bottom:2rem;
}

.title-box-h3 .heading {
	color: #799300;
	overflow: hidden;
}
.title-box-h3 .heading span {
	display: inline-block;
	position: relative;
	padding-left:40px;
}
.title-box-h3 .heading span:before {
	content: "";
	border-bottom: 1px solid #799300;
	width: 30px;
	position: absolute;
	bottom: 13px;
	left:0;
}



.content-box-padding p {
	margin-bottom:2rem;
	font-size:1.4rem;
	line-height:1.7;
}



/* 気になる！ってボタンのとこ */

.content-btn-box {
	margin-right: auto;
	margin-left: auto ;
	float: none;
}

.content-btn-box li:first-child a {
	display:block;
	background:#fff;
	border:1px solid #c1da41;
	color:#799300;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
	margin-bottom:1rem;
}

.content-btn-box li:last-child a {
	display:inline-block;
	background:#fff;
	border:1px solid #fa7701;
	color:#fa7701;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
}

.content-btn-box li:first-child a .arrow {
	position: relative;
	display: inline-block;
	padding-left:1.5rem;
}

.content-btn-box li:first-child a .arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 1px #799300;
	border-right: solid 1px #799300;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top:0;
	bottom:0;
	right:-30px;
	margin-top:-11px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.content-btn-box li:last-child a .arrow {
	position: relative;
	display: inline-block;
	padding-left:1.5rem;
}

.content-btn-box li:last-child a .arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 1px #fa7701;
	border-right: solid 1px #fa7701;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top:0;
	bottom:0;
	right:-15px;
	margin-top:-11px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

@media print, screen and ( min-width : 851px ) {

	.content-btn-box {
		display:table;
		margin-right: auto;
		margin-left: auto ;
		float: none;
		background:url(../images/number_bg.gif) repeat;
		padding:5px 7rem;
	}
	
	.content-btn-box li {
		display:table-cell;
		padding:1rem 0.5rem;
	}
	
	.content-btn-box li:last-child {
		padding:1rem 0 1rem 0.5rem;
	}
	
	.content-btn-box li:first-child a {
		display:inline-block;
		background:#fff;
		border:1px solid #c1da41;
		color:#799300;
		width:170px;
		height:45px;
		line-height:45px;
		text-align:center;
		font-size:1.6rem;
		font-weight:600;
		box-shadow: 0px 2px #e6e6e6;
		margin-bottom:0;
	}
	
	.content-btn-box li:first-child a,
	.content-btn-box li:first-child a::after,
	.content-btn-box li:first-child a::before {
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.content-btn-box li:first-child a:hover {
		background:#c1da41;
		color:#fff;
	}
	
	.content-btn-box li:first-child a:hover .arrow::before{
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}
	
	.content-btn-box li:last-child a {
		display:inline-block;
		background:#fff;
		border:1px solid #fa7701;
		color:#fa7701;
		width:170px;
		height:45px;
		line-height:45px;
		text-align:center;
		font-size:1.6rem;
		font-weight:600;
		box-shadow: 0px 2px #e6e6e6;
	}
	
	.content-btn-box li:last-child a,
	.content-btn-box li:last-child a::after,
	.content-btn-box li:last-child a::before {
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.content-btn-box li:last-child a:hover {
		background:#fa7701;
		color:#fff;
	}
	
	.content-btn-box li:last-child a:hover .arrow::before{
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}

}

/* テーブルで表組になってる箇所 */

section.table-content h3 {
	color:#799300;
	font-size:1.6rem;
	font-weight:bold;
	margin-bottom:1rem;
}

section.table-content .data-table {
	border:1px solid #e5e5e5;
	width:100%;
	color:#555;
}

section.table-content .data-table th,
section.table-content .data-table td {
	border:1px solid #e5e5e5;
	padding:1rem;
	display:block;
	width:100%;
}

section.table-content .data-table th {
	background:#f8f8f8;
	font-weight:bold;
	font-size:1.3rem;
}

section.table-content .data-table td {
	font-size:1.3rem;
}

@media print, screen and ( min-width : 641px ) {

	section.table-content .data-table th,
	section.table-content .data-table td {
		border:1px solid #e5e5e5;
		padding:1rem 2rem;
		display:table-cell;
		width:auto;
	}
	
	section.table-content .data-table th {
		width:20%;
		background:#f8f8f8;
		font-weight:bold;
		font-size:1.3rem;
	}
	
	section.table-content .data-table td {
		width:80%;
		font-size:1.3rem;
		line-height:1.7;
	}

}

/* パブリックデザインとは！？ */

.about-corporation h2 {
	margin-bottom:1.5rem;
}

.about-corporation h3 {
	font-size:2rem;
	font-weight:bold;
	color:#555;
}

.about-corporation h3 span {
	font-size:1.2rem;
	color:#8b8b8b;
	font-weight:normal;
}

@media print, screen and ( min-width : 851px ) {

	.about-corporation {
		border:1px solid #e5e5e5;
	}
	
	.about-corporation h2 {
		margin-bottom:2rem;
	}
	
	.about-corporation h3 {
		font-size:2.2rem;
		font-weight:bold;
		color:#555;
		padding:0.8rem 2rem 0.6rem 2rem;
		margin-bottom:2rem;
		border-top:1px solid #e5e5e5;
		border-bottom:1px solid #e5e5e5;
	}
	
	.about-corporation h3 span {
		font-size:1.4rem;
		margin-left:2rem;
		color:#8b8b8b;
		font-weight:normal;
	}
	
	.about-corporation .content-box-padding p {
		color:#555;
		line-height:1.7;
	}

}

/* 他の募集人材 */

section.other-content h3 {
	color:#799300;
	font-size:1.6rem;
	font-weight:bold;
	margin-bottom:1rem;
}

section.other-content .content-box-padding {
	border:1px solid #e5e5e5;
	padding:1rem;
}

@media print, screen and ( min-width : 851px ) {

	section.other-content .content-box-padding {
		border:1px solid #e5e5e5;
		padding:2rem;
	}

}

section.other-content .content-box-padding h3 {
	font-size:1.4rem;
	color:#799300;
	margin-bottom:1rem;
}

@media print, screen and ( min-width : 851px ) {

	section.other-content .content-box-padding h3 {
		font-size:1.8rem;
		color:#799300;
		margin:0 0 5px 0;
		padding-bottom:5px;
		border-bottom:1px solid #e5e5e5;
	}

}

section.other-content .content-box-padding p {
	margin:0;
	line-height:1.7;
}

section.other-content a {
	display:block;
}

section.other-content a:hover h3 {
	color:#ff791a;
}

section.other-content a .content-box-padding .recruit-text {
	color:#999999;
	font-weight:700;
	margin-bottom:2rem;
}

section.other-content a .content-box-padding .recruit-introduction {
	color:#333;
}



/* スクロールボタン */

.gotop a {
	display:block;
	width:50px;
	height:50px;
	background:url(../images/scroll_btn.webp) repeat;
	-moz-border-radius: 0.2em;
	-webkit-border-radius: 0.2em;
	border-radius: 0.2em;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.gotop a:hover {
	background:url(../images/scroll_btn_hover.webp) repeat;
}

.gotop span {
	height:40px;
	width:40px;
	display:block;
	position:relative;
} 

.demoSpan1 {
	width:30px;
}

.demoSpan1:before {
	content:'';
	height:0;
	width:0;
	display:block;
	border:15px transparent solid;
	border-top-width:0;
	border-bottom-color:#fff;
	position:absolute;
	top:7px;
	left:25%;
}

.demoSpan1:after {
	content:'';
	height:25px;
	width:10px;
	display:block;
	background:#fff;
	position:absolute;
	top:17px;
	left:50%;
}

@media print, screen and ( min-width : 851px ) {

	.gotop a {
		display:block;
		width:70px;
		height:70px;
		background:url(../images/scroll_btn.webp) repeat;
		-moz-border-radius: 0.2em;
		-webkit-border-radius: 0.2em;
		border-radius: 0.2em;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.gotop a:hover {
		background:url(../images/scroll_btn_hover.webp) repeat;
	}
	
	.gotop span {
		height:40px;
		width:40px;
		display:block;
		position:relative;
	} 
	
	.demoSpan1 {
		width:30px;
	}
	
	.demoSpan1:before {
		content:'';
		height:0;
		width:0;
		display:block;
		border:15px transparent solid;
		border-top-width:0;
		border-bottom-color:#fff;
		position:absolute;
		top:15px;
		left:48%;
	}
	
	.demoSpan1:after {
		content:'';
		height:25px;
		width:10px;
		display:block;
		background:#fff;
		position:absolute;
		top:30px;
		left:72%;
	}

}

/* フォーム */

.table-form .data-table input.text,input.password,textarea,select {
	border:0;
	padding:5px;
	font-family:Arial, sans-serif;
	border:solid 1px #ffd5d5;
	width:300px;
	background:#fff0f0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
	box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
}

.table-form select {
	width:auto;
}

.table-form .data-table {
	margin-bottom:3rem;
}

.content-btn-box .submit {
	display:inline-block;
	background:#fff;
	border:1px solid #fa7701;
	color:#fa7701;
	width:100%;
	height:45px;
	line-height:45px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
}

.content-btn-box .submit,
.content-btn-box .submit::after,
.content-btn-box .submit::before {
	-webkit-transition: all .3s;
	transition: all .3s;
}

.content-btn-box .submit:hover {
	background:#fa7701;
	color:#fff;
}

.table-form .data-table span.required:after {
	content:"※";
	color:#ff0000;
}

@media print, screen and ( min-width : 851px ) {

	.content-btn-box .submit {
		display:inline-block;
		background:#fff;
		border:1px solid #fa7701;
		color:#fa7701;
		width:170px;
		height:45px;
		line-height:45px;
		text-align:center;
		font-size:1.6rem;
		font-weight:600;
		box-shadow: 0px 2px #e6e6e6;
	}
	
	.content-btn-box .submit,
	.content-btn-box .submit::after,
	.content-btn-box .submit::before {
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.content-btn-box .submit:hover {
		background:#fa7701;
		color:#fff;
	}
	
	.table-form .data-table span.required:after {
		content:"※";
		color:#ff0000;
	}

}

.content-box-padding .indent-span {
	text-indent:-1em;
	padding-left:1em;
}

.content-form-btn-box {
	margin-right: auto;
	margin-left: auto ;
	float: none;
}

@media print, screen and ( min-width : 851px ) {

	.content-form-btn-box {
		margin-right: auto;
		margin-left: auto ;
		float: none;
		background:url(../images/number_bg.gif) repeat;
		padding:1.5rem 7rem 0.5rem 7rem;
	}
}

input[type="submit"], 
input[type="button"]{
	-webkit-appearance: button;
	cursor: pointer;
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
}

.content-form-btn-box li.btn-submit input {
	display:block;
	background:#fff;
	border:1px solid #fa7701;
	color:#fa7701;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
}

.content-form-btn-box li.btn-submit input:hover {
	background:#fa7701;
	color:#fff;
	cursor:pointer;
}

.content-form-btn-box li.btn-clear a {
	display:block;
	background:#fff;
	border:1px solid #c1da41;
	color:#799300;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
	margin-bottom:1rem;
}

.content-form-btn-box li.btn-clear a:hover {
	background:#c1da41;
	color:#fff;
}
.content-form-btn-box li.btn-send input {
	display:block;
	background:#fff;
	border:1px solid #fa7701;
	color:#fa7701;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
}

.content-form-btn-box li.btn-send input:hover {
	background:#fa7701;
	color:#fff;
	cursor:pointer;
}

.content-form-btn-box li.btn-back input {
	display:block;
	background:#fff;
	border:1px solid #c1da41;
	color:#799300;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:1.6rem;
	font-weight:600;
	box-shadow: 0px 2px #e6e6e6;
	margin-bottom:1rem;
}

.content-form-btn-box li.btn-back input:hover {
	background:#c1da41;
	color:#fff;
}

@media screen and (max-width: 640px) {
	
	.content-form-btn-box li a {
		margin-bottom:0;
	}
}




