@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/* View Switch */
.sp_only {
	display: none !important;
}
/* Universal Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
}
body p, body span, body dl, h1, h2, h3, h4, h5, h6 {}

/***********************************
Base Settings
************************************/
html {
	background: #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;

	font-size: 15px;
    color: #000;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}
body {
	height: 100%;
	min-height: 100%;
	margin: 0;
}

.bold {
	font-weight: bold;
}
.f_red {
	color: #f00;
}

.inner {
	width: 100%;
	min-width: 320px;
	max-width: 640px;

	margin: 0 auto;
}
a.navi {
	position: relative;
	display: block;
	background: #E0DEDE;
    background: -moz-linear-gradient(top, #E0DEDE 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E0DEDE), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top, #E0DEDE 0%,#ffffff 100%);
    background: -o-linear-gradient(top, #E0DEDE 0%,#ffffff 100%);
    background: -ms-linear-gradient(top, #E0DEDE 0%,#ffffff 100%);
    background: linear-gradient(to bottom, #E0DEDE 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E0DEDE', endColorstr='#ffffff',GradientType=0 );

	color: #000;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;

	padding: 10px 10px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;

	padding-right: 30px;
}
.inner a.navi::before { /* 背景の表示設定 */
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 18px; /* 横幅 */
	height: 18px; /* 高さ */
	background: rgba( 0, 0, 0, .3 );
 }
 .inner a.navi::after { /* くの字の表示設定 */
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 17px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.error {
	color: #f00;
}
/***********************************
header
************************************/
#header {
	background: #f4f4f2;
	padding: 10px 0;

	border-bottom: 1px solid #ccc;
}
#header .inner {}
#header .inner #h_logo_box {
	display: table;
	width: 100%;
}
#header .inner #h_logo_box h1,
#header .inner #h_logo_box p {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding: 0 5px;
}
#header .inner #h_logo_box img,
#header .inner #h_logo_box p img {
	width: 100%;
	vertical-align: bottom;
}
/***********************************
main
************************************/
#main {
	line-height: 180%;
	margin-bottom: 30px;
}

#main .inner h2 {
	background: #1560c1;
    background: -moz-linear-gradient(top, #1560c1 0%, #0b2a3c 12%, #1560c1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1560c1), color-stop(12%,#0b2a3c), color-stop(100%,#1560c1));
    background: -webkit-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: -o-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: -ms-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: linear-gradient(to bottom, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1560c1', endColorstr='#1560c1',GradientType=0 );
    -webkit-box-shadow: 1px 2px 3px #CCC;
    -moz-box-shadow: 1px 2px 3px #CCC;

	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 );
	letter-spacing: .2em;

	margin-top: 20px;

	padding: 10px;

	
	border-top: 1px solid rgba( 255, 255, 255, .5 );
	border-bottom: 1px solid rgba( 255, 255, 255, .5 );
}

#main .inner .textbox {
	padding: 10px;
}
#main .inner .f_search_box {}
#main .inner .f_search_box dt {
	background: rgba( 0, 0, 0, .05 );
	padding: 5px 10px;
}
/* 基本のセレクトボックスのカスタマイズ */
#main .inner .f_search_box dd {
	background: #fff;
	height: 40px;
	width: calc( 100% - 20px );
	margin: 5px 10px 0;
	border-radius: 5px;
	position: relative;
	z-index: 1;

	border: 1px solid rgba( 0, 0, 0, .5 );
}

#main .inner .f_search_box dd::after {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	z-index: -1;
}
  
#main .inner .f_search_box dd select {
	/* 初期化 */
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;
	color: #333;
	font-size: 16px;
	width: 100%;
	height: 100%;
	padding: 0 10px;
}
#main .inner .f_search_submit {
	padding: 0 10px 15px;
}
#main .inner .f_search_submit input[type="submit"] {
	background: #c30000;
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-shadow: -1px -1px 0 rgba( 0, 0, 0, .3 );
    letter-spacing: .3em;
    padding: 10px;
    margin-top: 5px;
    border: 0;
    border-radius: 4px;
    border-bottom: 3px solid rgba( 0, 0, 0, .3 );
    cursor: pointer;
}
#main .inner .job_box {
	border-bottom: 1px solid #ccc;
}
#main .inner .job_box a {
	display: block;

	color: #222;
	text-decoration: none;
}
#main .inner .job_box a dl {
	display: table;
	width: 100%;

	background: #cc3333;
    background: -moz-linear-gradient(top, #cc3333 0%, #990000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc3333), color-stop(100%, #990000));
    background: -webkit-linear-gradient(top, #cc3333 0%, #990000 100%);
    background: -o-linear-gradient(top, #cc3333 0%, #990000 100%);
    background: -ms-linear-gradient(top, #cc3333 0%, #990000 100%);
    background: linear-gradient(to bottom, #cc3333 0%, #990000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc3333', endColorstr='#990000', GradientType=0 );

	color: #fff;

	border-bottom: 1px solid rgba( 0, 0, 0, .5 );

}
#main .inner .job_box a dl dt {
	display: table-cell;

	font-weight: bold;
	padding: 5px 10px;
}
#main .inner .job_box a dl dd {
	display: table-cell;

	width: 70px;

	font-size: 12px;
	text-align: center;
	vertical-align: middle;

	padding: 5px 10px;
}
#main .inner .job_box .job_info {
	font-size: 12px;
	padding: 5px 10px;
}


/***********************************
footer
************************************/
#footer .inner h2 {
	background: #1560c1;
    background: -moz-linear-gradient(top, #1560c1 0%, #0b2a3c 12%, #1560c1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1560c1), color-stop(12%,#0b2a3c), color-stop(100%,#1560c1));
    background: -webkit-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: -o-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: -ms-linear-gradient(top, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    background: linear-gradient(to bottom, #1560c1 0%,#0b2a3c 12%,#1560c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1560c1', endColorstr='#1560c1',GradientType=0 );
    -webkit-box-shadow: 1px 2px 3px #CCC;
    -moz-box-shadow: 1px 2px 3px #CCC;

	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 );
	letter-spacing: .2em;

	margin-top: 20px;

	padding: 10px;

	
	border-top: 1px solid rgba( 255, 255, 255, .5 );
	border-bottom: 1px solid rgba( 255, 255, 255, .5 );
}
#footer .inner #f_ad {
	margin-top: 20px;
}
#footer .inner #f_ad img {
	width: 100%;
	vertical-align: bottom;
}
#footer #op {
	background: rgba( 0, 0, 0, .05 );
	margin-top: 20px;
}
#footer #op a {
	display: block;

	color: #06f;
	text-align: center;
	text-decoration: none;

	padding: 10px;
	border-top: 1px solid rgba( 0, 0, 0, .1 );
}
#footer #copy {
	background: #E7E7E7;

	font-size: 12px;
	text-align: center;

	padding: 15px 10px;
	border-top: 1px solid rgba( 0, 0, 0, .1 );
}
#footer #copy a {
	color: #06f;
	text-decoration: none;
}
/***********************************
subpage
************************************/
.subpage {
	padding: 5px 10px;
}
.subpage h3 {
	background: #DFEFB6;

	font-size: 13px;
	font-weight: bold;
	text-align: center;

	margin-top: 10px;
	padding: 5px 10px;
}
.subpage .attention {
	background: #FF9;
	padding: 10px;
}
.subpage .textbox {
	font-size: 14px;
}
.subpage .textbox img {
	vertical-align: middle;
	margin: 0 5px;
}
.subpage .textbox a {
	color: #06f;
}
.subpage dl {
	padding: 0 10px;
	margin-top: 10px;
}
.subpage dl dt {
	font-weight: bold;
}
.subpage dl dd {
	margin-left: 15px;
}
.subpage ul {
	padding: 0 10px;
	list-style: none;
}
.subpage ul li {
	margin-bottom: 10px;
}
.subpage ul.attention_list li {
	background: url( ./../../img/common/ico_attension.gif) no-repeat left top 2px;
	padding-left: 25px;
	margin-bottom: 10px;
}
.subpage .flow_img {
	text-align: center;
}
.subpage .flow_img img {
	width: 100%;
	max-width: 300px;

	vertical-align: bottom;
}
.subpage .flow_finish {
	background: url(./../../img/top/finish_bg.jpg) no-repeat center center;
	padding: 10px 0;
	margin-top: 10px;
}
.subpage .flow_finish h3 {
	background: none;
}
.subpage .category_list {
	margin-top: 10px;
}
.subpage .category_list li {
	display: table;
	width: 100%;

	border-bottom: 1px dashed #ccc;
}
.subpage .category_list li p {
	display: table-cell;
	font-size: 14px;
	vertical-align: middle;

	padding: 5px 0;
}
.subpage .category_list li p.category {}
.subpage .category_list li p.category a {
	display: block;
	color: #06f;
}
.subpage .category_list li p.add {
	width: 50px;
}
.subpage .category_list li p.add a {
	display: block;
	background: #06f;

	font-size: 12px;
	font-weight: bold;
	letter-spacing: .1em;
	color: #fff;
	text-align: center;
	text-decoration: none;

	border-radius: 4px;
	border-bottom: 2px solid rgba( 0, 0, 0, .5 );
}

.article_head {
	padding: 10px;
}
.article_head .h_info {
	font-size: 13px;
}
.article_head .category {
	font-size: 13px;
}
.send_app {
	padding: 0 10px;
}
.send_app a {
	position: relative;
	display: block;

	color: #06f;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;

	padding: 10px;
	border: 1px solid #06f;
}
.send_app a::before { /* 背景の表示設定 */
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 18px; /* 横幅 */
	height: 18px; /* 高さ */
 }
 .send_app a::after { /* くの字の表示設定 */
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 17px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #06f;
	border-right: 2px solid #06f;
	transform: rotate(45deg);
}
.article_info {
	margin: 10px 0 40px;
}
.article_info h3 {
	font-size: 15px;
	font-weight: bold;
	text-align: center;

	letter-spacing: .1em;

	border-top: 1px dashed #ccc;
	border-bottom: 1px dashed #ccc;

	padding: 5px 10px;
}
.article_info dl {
	margin-bottom: 10px;
}
.article_info dl dt {
	background: rgba( 0, 0, 0, .05 );
	padding: 5px 10px;
}
.article_info dl dd {
	padding: 5px 10px;
	line-height: 180%;
}
.article_info dl dd a {
	color: #06f;
	text-decoration: none;
}
.form_box {}
.form_box dl {}
.form_box dl dt {
	background: rgba( 0, 0, 0, .05 );
	padding: 5px 10px;

	font-size: 14px;
}
.form_box dl dt span {
	background: #900;
	color: #fff;
	font-size: 11px;
	font-weight: bold;

	padding: 2px 5px;
	margin-left: 10px;

	border-radius: 4px;
}
.form_box dl dd {
	padding: 5px 10px;
}
.form_box dl dd input[type="text"],
.form_box dl dd select,
.form_box dl dd textarea {
	width: 100%;
	padding: 5px;
	resize: none;

	vertical-align: bottom;
}
.form_box dl dd p {
	font-size: 12px;
}
.form_box .check {
	margin-top: 20px;
	text-align: center;
	vertical-align: middle;
}
.form_box .check span {
	background: #900;
	color: #fff;
	font-size: 11px;
	font-weight: bold;

	padding: 2px 5px;
	margin-left: 10px;

	border-radius: 4px;
}
.form_box .btn_box {
	text-align: center;
	margin-top: 20px;
}
.form_box .btn_box input[type="submit"] {
	background: #36f;
    color: #fff;
    width: 150px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .3em;
    text-align: center;
    text-decoration: none;
    text-shadow: -1px -1px 0 rgba( 0, 0, 0, .3 );
    border: 0;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
}
.step_title {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .2em;

	margin: 20px 0 0;
	padding: 0 10px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #ccc;
}
.step_message {
	font-size: 14px;
	padding: 10px 0;
	margin: 0 10px 20px;
}
.step_publish_btn {
	margin-top: 50px;
	text-align: center;
}
.step_publish_btn input[type="submit"] {
	background: #36f;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .3em;
    text-align: center;
    text-decoration: none;
    text-shadow: -1px -1px 0 rgba( 0, 0, 0, .3 );
    border: 0;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
}