@charset "utf-8";

#okc div.clearfix::after {
  content: "";
  display: inline-block;
  clear: both;
}

/* メニュー・フッタ非表示 */
@media screen and (max-width: 639px){
	#main {
		margin: -66px auto -115px auto !important;
		padding: 66px 0 115px 0 !important;
	}
	#main > div.menu {
		display: none;
	}
	footer .footerGray,
	footer .footerGray.footer_line section {
		display: none;
	}
	footer .footerGray.footer_line {
		display: block;
	}
}

/* フォームステップによる 表示・非表示 切り換え */
#okc.form  .confirmation,
#okc.form  .thanks,
#okc.error .confirmation,
#okc.error .thanks {
	display: none;
}
#okc.confirmation .form,
#okc.confirmation .thanks {
	display: none;
}
#okc.thanks form,
#okc.thanks .form,
#okc.thanks .confirmation {
	display: none;
}
#okc.form         div.error,
#okc.confirmation div.error,
#okc.thanks       div.error {
	display: none;
}
#okc.error div.error {
	color: #a94442;
}
#okc.thanks.shopserve .thanks.usually,
#okc.thanks.usually .thanks.shopserve {
	display: none;
}

/* テーブルレイアウト */
#okc table {
	margin-top: 30px;
	width: 100%;
}
#okc th,
#okc td {
	padding-bottom: 25px;
	line-height: 130%;
}
#okc td span i {
	display: none;
}
#okc td span.form {
	font-size: 15px;
	color: #555;
}
#okc .th th {
	padding-bottom: 12px;
}
#okc th {
	padding-top: 5px;
	text-align: left;
	vertical-align: top;
	width: 200px;
	line-height: 22px;
}
#okc th::after {
	content: "";
	margin-left: 6px;
	padding: 0 10px;
	font-size: 75%;
	font-weight: normal;
	color: #FFF;
	border-radius: 3px;
	white-space: nowrap;
}
#okc .req th::after {
	content: "必須";
	background-color: #a00;
}
#okc .notag th::after {
	content: "";
	background-color: transparent;
}
#okc .nomargin td {
	padding-bottom: 5px;
}
#okc .submit td {
	text-align: center;
}
#okc.confirmation table {
	border-top: 1px solid #CCC;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 35px;
}
#okc.confirmation table th,
#okc.confirmation table td {
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	padding: 10px;
	min-height: 49px;
}
#okc.confirmation table .nomargin th {
	border-bottom: none;
}
#okc.confirmation table .nomargin td {
	border-bottom: 1px dotted #CCC;
}
#okc.confirmation .th th {
	border-right: 1px solid #CCC;
}
#okc.confirmation table th {
	background: #EEE;
}
#okc.confirmation table td {
	border-right: 1px solid #CCC;
}
#okc.confirmation table .submit th,
#okc.confirmation table .submit td {
	border: none;
}
@media screen and (max-width: 639px){
	#okc th,
	#okc td {
		display: block;
		width: 100%;
	}
	#okc th {
		padding-bottom: 0px;
	}
	#okc td {
		padding-bottom: 20px;
	}
	#okc.confirmation table th {
		border-right: 1px solid #CCC;
	}
}

/* フォームパーツ input[type="text"], textarea, select */
#okc input[type="text"],
#okc textarea,
#okc select {
	width: 100%;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#okc input[type="text"],
#okc textarea,
#okc select {
	padding: 10px 12px;
}
#okc input[type="text"]:focus,
#okc textarea:focus,
#okc select:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
#okc input[type="text"].success,
#okc textarea.success,
#okc select.success {
	border: 1px solid #3c763d;
	border: 1px solid #ccc;
	background-image: url("../img/form/success.png");
	background-repeat: no-repeat;
	background-position: 98% 11px;
}
#okc .readonly input[type="text"].success,
#okc .readonly textarea.success {
	background-image: none;
}
#okc input[type="text"].error,
#okc textarea.error,
#okc select.error {
	border: 1px solid #a94442;
	background-color: #ffefee;
}
#okc .readonly input[type="text"],
#okc .readonly textarea {
	background-color: #f8f8f8;
}

/* フォームパーツ input[type="text"], textarea */
#okc input[type="text"],
#okc textarea {
	font-size: 18px;
}
#okc input[type="text"]::-webkit-input-placeholder,
#okc textarea::-webkit-input-placeholder {
	color: #aaa;
}
#okc input[type="text"]:-ms-input-placeholder,
#okc textarea:-ms-input-placeholder {
	color: #aaa;
}
#okc input[type="text"]::-moz-placeholder,
#okc textarea::-moz-placeholder {
	color: #aaa;
}
#okc input[type="text"].error {
/*	margin: -1px;	*/
}
#okc textarea {
	height: 100px;
}

/* フォームパーツ select */
#okc select {
	font-size: 16px;
	height: 3em;
	padding: 10px 2px 10px 12px;
}
#okc select.success {
	background-position: right 21px top 13px;
}

/* フォームパーツ label, input[type="radio"], input[type="checkbox"] */
#okc input[type="radio"],
#okc input[type="checkbox"] {
	display: none;
}
#okc label span {
	display: inline-block;
	position: relative;
	margin-right: 12px;
	margin-bottom: 8px;
	padding: 6px 10px 6px 27px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 7px;
	line-height: 20px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
#okc label span::before,
#okc label span::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
#okc label span::before {
	left: 5px;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
#okc label span::after {
	opacity: 0;
	margin-top: -4px;
}
#okc label span:hover::before {
	background: #fff;
}
#okc label.checked span{
	font-weight: bold;
	border: 1px solid #bbb;
}
#okc label.checked span::before {
	background: #fff;
	border: 1px solid #666;
}
#okc label.req.checked span{
	color: #3c763d;
	color: #000;
	border: 1px solid #58ad1e;
	background-color: #eee;
}
#okc label.req.checked span::before {
	border: 1px solid #58ad1e;
}
#okc label.req.error span {
	border: 1px solid #a94442;
	background-color: #ffefee;
}
#okc .break label::before{
	content: "\a";
	white-space: pre;
}
#okc .break label:first-of-type::before{
	content: "";
	white-space: normal;
}
@media screen and (max-width: 639px){
	#okc label span {
		display: block;
		width: 100%;
		margin-bottom: 8px;
		padding-top: 15px;
		padding-bottom: 15px;
		box-sizing: border-box;
	}
	#okc .break label::before{
		content: "";
	}
}

/* フォームパーツ input[type="radio"] */
#okc .radio {
	margin-bottom: -8px;
}
#okc .radio label span::before,
#okc .radio label span::after {
	top: 50%;
	border-radius: 50%;
}
#okc .radio label span::after {
	left: 9px;
	width: 8px;
	height: 8px;
	background: #666;
	-webkit-transform: scale(2);
	transform: scale(2);
}
#okc .radio label.checked span::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#okc .radio label.req span::after {
	background: #58ad1e;
}

/* フォームパーツ input[type="checkbox"] */
#okc .checkbox {
	margin-bottom: -8px;
}
#okc .checkbox label span::before {
	top: 50%;
	border-radius: 3px;
}
#okc .checkbox label span::after {
	top: 43%;
	left: 8px;
	width: 7px;
	height: 5px;
	border-left: 3px solid #666;
	border-bottom: 3px solid #666;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
#okc .checkbox label.checked span::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}
#okc .checkbox label.req span::after {
	border-left: 3px solid #58ad1e;
	border-bottom: 3px solid #58ad1e;
}
@media screen and (max-width: 639px){
	#okc .checkbox label span::after {
		top: 47%;
	}
}

/* フォームパーツ input[type="submit"] */
#okc input[type="submit"] {
	display: inline-block;
	margin: 50px auto 0 auto;
	padding: 10px 40px;
	width: 70%;
	background: #008a1d;
	font-size: 180%;
	color: #FFF;
	border-radius: 12px;
	border: 5px solid #ccc;
	box-shadow: 1px 1px 2px 2px #eee;
	cursor: pointer;
	-moz-box-shadow:
		0px 1px 3px rgba(333,333,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.3),
		0px 1px 0px rgba(255,255,255,0.3);
}
#okc input[type="submit"].confirmation.back {
	width: 35%;
	margin-right: 2.5%;
	background-color: #aaa;
}
#okc input[type="submit"].confirmation.forward {
	width: 55%;
}
@media screen and (max-width: 639px){
	#okc input[type="submit"],
	#okc input[type="submit"].confirmation.back,
	#okc input[type="submit"].confirmation.forward {
	font-size: 160%;
	padding: 10px;
	width: 100%;
	margin-top: 15px
	}
	#okc input[type="submit"].confirmation.back {
	margin-top: 45px;
	margin-right: 0;
	}
	#okc input[type="submit"].confirmation.forward {
	padding-top: 25px;
	padding-bottom: 25px;
	}
}


/* コンテンツの前に書き出すコンテンツ */
#okc .precontent {
	margin: 0 30px 30px 30px;
	padding: 30px;
	background-color: #eee;
	border: 1px solid #ddd;
	font-size: 13px;
	line-height: 15px;
	line-height: 160%;
}
#okc .precontent h2 {
	line-height: 24px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #ccc;
}
#okc .precontent ul.numnum {
	margin-left: 25px;
}
#okc .precontent ul.numnum li {
	list-style-type: decimal;
	margin-bottom: 8px;
}
#okc .precontent table {
	margin: 0 3%;
	width: 94%;
}
#okc .precontent table td {
	padding: 3px !important;
	border-bottom: 1px dotted #ccc;
	background-color: transparent !important;
}
#okc .precontent table td i {
	font-style: normal;
}
#okc .precontent h2 {
	margin-top: 30px;
}
#okc .precontent h2:first-of-type {
	margin-top: 0;
}
#okc .precontent h4.b3 {
	font-size: 17px;
}
#okc .precontent h4.b3 b {
	color: #a00;
}
#okc .precontent .bigButton {
	margin-top: 20px;
	margin-bottom: 0;
	min-height: 60px;
	height: auto;
}
#okc .precontent .bigButton .button {
	padding: 0;
	height: 60px;
	line-height: 50px;
	font-size: 16px;
}
@media screen and (max-width: 639px){
	#okc .precontent {
		margin: 0 0 30px 0;
		padding: 20px 10px;
	}
	#okc .precontent table {
		margin: 0;
		width: 100%;
	}
	#okc .precontent table tr.title {
		display: none;
	}
	#okc .precontent table td {
		border-bottom: 0;
	}
	#okc .precontent table td:last-of-type {
		border-bottom: 1px solid #ccc;
	}
	#okc .precontent table.tableGray.tableMagazine td.specMagazine-half::before,
	#okc .precontent table.tableGray.tableMagazine td.specMagazine-price::before,
	#okc .precontent table.tableGray.tableMagazine td.specMagazine-issue::before {
		display: inline-block;
	}
	#okc .precontent table td i {
		display: none;
	}
	#okc .precontent h4.b3 {
		line-height: 20px;
	}
	#okc .precontent .bigButton .button {
		float: none;
	}
}
.query-magazine-chinginjijo	#okc .precontent table tr.chinginjijo,
.query-magazine-romujijo	#okc .precontent table tr.romujijo,
.query-magazine-jinjijitsumu	#okc .precontent table tr.jinjijitsumu,
.query-magazine-hrmap		#okc .precontent table tr.hrmap,
.query-magazine-kigyotojinzai	#okc .precontent table tr.kigyotojinzai,
.query-magazine-rodohanrei	#okc .precontent table tr.rodohanrei,
.query-magazine-rashinban	#okc .precontent table tr.rashinban,
.query-magazine-kangonochikara	#okc .precontent table tr.kangonochikara,
.query-magazine-iji		#okc .precontent table tr.iji {
	color: #a00;
}


/* 参加費の注意書き */
#okc .sankahi {
	margin-top: 10px;
	padding: 8px 16px;
	font-size: 12px;
	background-color: #eee;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#okc .sankahi .extension strong,
#okc .sankahi .extension strong a {
	color: #f00;
}


#okc .form.explanation {
    text-align: left;
    padding: 16px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 14px;
    line-height: 20px;
    color: #333;
}
#okc .form.explanation span {
    display: inline-block;
    margin: 8px 0 0 27px;
}
#okc .form.explanation span b {
    display: inline-block;
    margin-left: -27px;
    width: 27px;
}



/* 採用エントリーフォーム */
.careers_form-html #okc tr.birth input[type="text"],
#okc tr.recruitForm input[type="text"] {
	width: 150px;
	margin-right: 3px;
}

.careers_form-html #okc tr.birth select,
#okc tr.recruitForm select {
	width: 80px;
	margin-left: 10px;
	margin-right: 7px;
}



#okc span.notice {
    font-weight: normal;
    font-size: 11px;
    line-height: 16px;
    display: inline-block;
    padding-right: 5px;
}


/* 購読申し込みに価格改定おしらせ */
.kakakukaitei {
	text-align: right;
	margin-top: 1em;
}