@charset "UTF-8";

/*--スタイル初期化-------------------------------------------------------------*/
body,div,dl,dt,dd,ul,li,ol,li,h1,h2,h3,h4,h5,form,p,table,th,td,address{
	margin:0;
	padding:0;
}

body{
	line-height:1.2;
	color:#333;
	font-family: Verdana,Arial,"メイリオ",Meiryo,"ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
}

a img,img{
	border:0;
}

ul,li,ol,li{
	list-style:none;
}

table{
    border-collapse:collapse; 
    border-spacing:0;
}

caption,
th {
    text-align:left;
}

a{
	text-decoration:underline;
	color:#0096d4;
}

a:hover{
	text-decoration:none;
}

textarea,
input[type="text"],
input[type="password"],
select{
	padding:5px;
	border:1px solid #CCC;
}

*	{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/*--clearfix------------------------------------------------------------------*/
.clearfix{
	/zoom:1;
}

.clearfix::after{
	content:'';
	display:block;
	clear:both;
	height:0;
}


/*--汎用スタイル---------------------------------------------------------------*/
body {
	font-size: 14px; 
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.center{ text-align:center !important; }
.left  { text-align:left !important; }
.right { text-align:right !important; }
.cancel{ text-decoration:line-through !important; }

input[type="button"], input[type="submit"] {
	display: inline-block;
	background: #FFF;
	border: 1px solid #999;
	border-radius: 2px;
	padding: 0 1.6em;
	margin: 10px 3px;
	cursor: pointer;
}

.button {
	border-radius: 2px;
	padding: 15px 40px 15px 40px;
	margin: 5px 15px 5px 15px;
	text-decoration: none;
	text-align:center;
	display:inline-block;
	color: #FFF;
	background-color: #555;
	border: 1px solid #555;
}

.button:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}

.button--firstMessage {
	margin: 25% 15px 0 15px;
}


/* ================================================================================ */
/*                                                                                  */
/*      レイアウト                                                                  */
/*                                                                                  */
/* ================================================================================ */

.l-main {
	margin: 0 0 60px;
	background: #FFF;
}

.l-article {
	padding: 10px 20px 10px 20px;
	margin: 0 auto;
}

.contents_m {
}


/* ================================================================================ */
/*                                                                                  */
/*      モジュール                                                                  */
/*                                                                                  */
/* ================================================================================ */

/* グリッド
----------------------------------------------- */
.cmslGrid {
	display: flex;
	flex-wrap: wrap;
}

.cmslGrid__col {
	width: 100%;
}

.cmslGrid__col--1 { width: 8.33333333333%; }
.cmslGrid__col--2 { width: 16.6666666667%; }
.cmslGrid__col--3 { width: 25%; }
.cmslGrid__col--4 { width: 33.3333333333%; }
.cmslGrid__col--5 { width: 41.6666666667%; }
.cmslGrid__col--6 { width: 50%; }
.cmslGrid__col--7 { width: 58.3333333333%; }
.cmslGrid__col--8 { width: 66.6666666667%; }
.cmslGrid__col--9 { width: 75%; }
.cmslGrid__col--10 { width: 83.3333333333%; }
.cmslGrid__col--11 { width: 91.6666666667%; }
.cmslGrid__col--12 { width: 100%; }

.cmslGrid--separate {
	margin-left: -10px;
	margin-right: -10px;
}

.cmslGrid--separate .cmslGrid__col {
	padding: 0 10px;
}

	/* smartphone横(landscape) */
	@media only screen and (max-width:640px) {

		.cmslGrid {
			display: flex;
			flex-wrap: wrap;
		}

		.cmslGrid__col {
			width: 100%;
		}

		.cmslGrid__col--1 { width: 100%; }
		.cmslGrid__col--2 { width: 100%; }
		.cmslGrid__col--3 { width: 100%; }
		.cmslGrid__col--4 { width: 100%; }
		.cmslGrid__col--5 { width: 100%; }
		.cmslGrid__col--6 { width: 100%; }
		.cmslGrid__col--7 { width: 100%; }
		.cmslGrid__col--8 { width: 100%; }
		.cmslGrid__col--9 { width: 100%; }
		.cmslGrid__col--10 { width: 100%; }
		.cmslGrid__col--11 { width: 100%; }
		.cmslGrid__col--12 { width: 100%; }

		.cmslGrid--separate {
			margin-left: -10px;
			margin-right: -10px;
		}

		.cmslGrid--separate .cmslGrid__col {
			padding: 0 10px;
		}

	}


/*--ヘッダー-------------------------------------------------------------------*/
.header {
	background: rgba(0,0,0,0.9);
}

.header__ {
	position: relative;
	height: 80px;
}

/* siteNAme
----------------------------------------------- */
.siteName  {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.siteName__logo {
	display: block;
}

.siteName__logo > img {
	display: block;
	height: 60px;
	width: auto;
}

.siteName__icon {
	display: block;
	text-decoration:none;
	color: #FFF;
	height: 60px;
	font-family: 'Gabriola','Zapfino','ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	font-size: 32px;
}

.siteName__icon > .fa {
	display: inline-block;
	margin: 0 10px 0 0;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	color: #FFF;
	background: #555;
	text-align: center;
	font-size: 32px;
}

.siteName__icon:hover,
.siteName__logo:hover {
	opacity: 0.7;
}


/* header menu
----------------------------------------------- */
.headerMenu {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-wrap: wrap;
}

.headerMenu li {
	margin: 0 5px;
	position:relative;
}

.headerMenu li a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	border: 1px solid #555;
	background: #FFF;
	color: #333;
}

.headerMenu li a:hover {
	color: #333;
	text-decoration: none;
	opacity: 0.7;
}


/* 子header menu
----------------------------------------------- */

.headerMenu li > ul{
	display:none;
	position:absolute;
	top:27px;
	left:-20px;
	z-index:1;
	padding:10px 15px 20px;
}

* html .headerMenu ul{
	line-height:0;
}
.headerMenu li > ul li {
	margin: 0 5px 0 5px;
	border: 1px solid #555;
	background-color: #555;
	position: initial;
}

.headerMenu li > ul li a {
	display:block;
	white-space:nowrap;
	color: #FFF;
	text-decoration: none;
}

.headerMenu li > ul li:hover a  {
	color: #555;
	text-decoration: none;
}


/* global navi
----------------------------------------------- */
.globalNav {
	background: rgba(0,0,0,0.8);
}

.globalNav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
}

.globalNav__list li {
}

.globalNav__list li a {
	font-size: 16px;
	flex-wrap: wrap;
	text-decoration: none;
	color: #000;
}

.globalNav__list a {
	display: block;
	padding: 10px 20px;
}

.globalNav__list li:hover {
	color: #000;
	opacity: 0.7;
}

.globalNav__list li a:hover {
	color: #000;
	opacity: 0.7;
}


/*--フッター-------------------------------------------------------------------*/
.footer {
	background: #252525;
	padding: 0 0 200px;
	text-align: center;
}

.footer__ {
	position: relative;
}

.footer__hr {
	height: 1px;
	border: none;
	border-top: 1px solid #333;
}

/* footer menu
----------------------------------------------- */
.footerMenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 10px;
}

.footerMenu li {
	font-size: 12px;
	margin: 10px;
}

.footerMenu li a {
	color: #CCC;
	text-decoration: none;
}

.footerMenu li a:hover {
	opacity: 0.7;
}

/* page link
----------------------------------------------- */
.embed-pageLink {
}

.embed-pageLink__body {}

.embed-pageLink__body ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 10px;
}

.embed-pageLink__body ul li {
	font-size: 12px;
	margin: 10px;
}

.embed-pageLink__body ul li a {
	color: #CCC;
	text-decoration: none;
}

.embed-pageLink__body ul li a:hover {
	opacity: 0.7;
}

/* page top
----------------------------------------------- */
.pageTop {
	position: absolute;
	right: 20px;
	top: -50px;
}

.pageTop a {
	display: block;
	color: #333;
	font-size: 12px;
	text-align: center;
	padding: 10px;
}



/*--メイン---------------------------------------------------------------------*/

/* title
----------------------------------------------- */
.contents_m h2,
.sectionTitle {
	display: block;
	width: 100%;
	font-size:18px;
	color: #333333;
}

.sectionTitle--lv1 {
	font-size:18px;
	padding: 15px 20px 15px 20px;
	border-bottom: 1px solid #555;
}

.sectionTitle--lv2 {
	font-size:16px;
	padding: 15px 0;
	margin: 0 0 1em;
	border-bottom: 1px solid #555;
}

.sectionTitle--lv3 {
	font-size:14px;
	padding: 15px 0;
	margin: 0 0 1em;
}

/* section
----------------------------------------------- */
.cmn-section {
	width: 100%;
	max-width: 1080px;
	margin: 10px auto;
	border: 1px solid #555;
	background: #FFF;
}

.cmn-section--aside {
	min-width: initial;
}

.cmn-section__body {
	border-top:none;
	padding: 20px;
}

.cmn-section__body p {
	line-height: 1.6;
	margin: 0 0 1em;
}

.cmn-section__body--login {
}

.cmn-section__body--firstMessage {
	text-align: center;
}

.cmn-section__body--nopadding {
	padding: 0;
}

.cmn-section__body p a {
	color: #333;
}

.cmn-list {
	margin: 1em 1em 1em 2em;
}

.cmn-list li {
	line-height: 1.6;
}

ul.cmn-list li {
	list-style: initial;
}

ol.cmn-list li {
	list-style: decimal;
}


/*--プログレストラッカー--------------------------------------------------------*/
.progress-tracker {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	counter-reset: step;
	z-index: 0;
	position: relative;
}

.progress-tracker li {
	width: 30%;
	font-size: 12px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: #AAA;
}

.progress-tracker li.active {
	color: #555;
}

.progress-tracker li.active::before {
	background-color: #555;
	color: #FFF;
}

.progress-tracker li::before {
	width: 30px;
	height: 30px;
	content: counter(step);
	counter-increment: step;
	line-height: 30px;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background-color: #eee;
}

.progress-tracker li::after {
	width: 100%;
	height: 2px;
	content: '';
	position: absolute;
	top: 15px;
	left: -50%;
	z-index: -1;
	background-color: #eee;
}

.progress-tracker li:first-child::after {
	content: none;
}

.progress-tracker li.active + li::after {
	background-color: #AAA;
}


/*--リンクパネル----------------------------------------------------------------*/
.link-panel {
	display: flex;
	flex-direction: column;
}

.link-panel li {
	color: #555;
	background-color: #FFF;
	border-top: 1px solid #555;
}

.link-panel li:first-child {
	border: none;
}

.link-panel li a {
	display: block;
	text-decoration: none;
	line-height: 2;
	vertical-align: middle;
	margin: 10px 10px 10px 10px;
	color: #555;
}

.link-panel li a span {
	float: right;
	width: 2em;
	height: 2em;
	border-radius: 50%; 
	text-align:center;
	color: #FFF;
	background-color: #555;
}

.link-panel li:hover {
	background-color: #555;
}

.link-panel li:hover a {
	color: #FFF;
	text-decoration: none;
}

.link-panel li:hover a span {
	color: #555;
	background-color: #FFF;
}


/*--サブメニュー-------------------------------------------------------------*/
.sub-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin: 0 0 15px;
}

.sub-menu ul li {
	margin: 5px;
}

.sub-menu ul li a {
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	border: 1px solid #555;
	background: #555;
	border-radius: 2px;
	color: #FFF;
}

.sub-menu ul span.fa {
	padding: 0 10px 0 0;
}

.sub-menu li:hover {
	color: #555;
}

.sub-menu li:hover a {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
	text-decoration: none;
}

/*--アイテムパネル-------------------------------------------------------------*/
.cmn_index_area {
	padding: 45px 20px;

}
.cmn_index_area__title {
	font-size: 36px;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
	margin: 0 0 40px;
}

.sc_list{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
}

.sc_list > .cmn-section {
	min-width: initial;
	width: calc( 50% - 20px );
	margin: 10px;
}

.sc_message {
	order:1;
}

.sc_form {
	order:2;
}

.sc_buttonList {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 200px;
}

.sc_buttonList__item {
	width: 100%;
}


/*--業種から探す----------------------------------------------------------------*/
.search_card_list {
	max-width: 1100px;
	margin: 0 auto;
}

.search_card_list ul {
	display: flex;
	flex-wrap: wrap;
}

.search_card_list li {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
	margin: 10px;
	width: calc( 33.3333% - 20px );
	font-weight: bold;
}

.search_card_list li a {
	display: block;
	text-decoration: none;
	color: #555;
	text-align: center;
	width: 100%;
	padding: 30px 10px;
}

.search_card_list li:hover {
	background-color: #555;
}

.search_card_list li:hover a {
	color: #FFF;
	text-decoration: none;
}

/* トップ：業種リンク */
.business_kind {
	background: #FFF;
}


/*--ログイン------------------------------------------------------------------*/
.loginForm {}

.loginForm__form {}

.loginForm__form dd{
	padding: 5px 5px 5px 5px;
}

.loginForm__auto {
	text-align: right;
}

.loginForm__button {
	display: flex;
	justify-content: center;
	padding: 20px 0 0 0;
}

.loginForm__reminder {
	text-align: right;
	padding: 15px 5px 5px 5px;
}

.loginForm__reminder a {
	color: #333;
}

.loginForm__button input[type="submit"]{
	border-radius: 2px;
	border: none;
	padding: 10px 40px 10px 40px;
	margin: 5px 15px 5px 15px;
	color: #FFF;
	background: #555;
	border: 1px solid #555;
}

.loginForm__form input[type="text"],
.loginForm__form input[type="password"],
.loginForm__form select,
.loginForm__form textarea{
	width: 100%;
	margin: 5px 0;
	padding: 5px;
}

.loginForm__button input[type="submit"]:hover{
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}


/*--フォームページ-------------------------------------------------------------------*/
.form-container {
	display: flex;
	flex-direction: column;
	justify-content:center;
	flex-wrap: wrap;
	max-width: 860px;
}

.contents_m,
.form-section {
	min-width: 300px;
	flex-wrap: wrap;
	align-items:center;
	justify-content:space-between;
	padding: 20px;
	margin: 15px 0;
	border: 1px solid;
	background: #FFF;
}

.contents_m .main,
.form-section__body {
	border-top: none;
	padding: 20px;
}

.form-section input[type="text"],
.form-section input[type="password"],
.form-section select,
.form-section textarea{
	width: 90%;
	margin: 5px 0 5px 0;
}

.form-section textarea {
	font-size: 14px;
}

.form-section .multi input,
.form-section .multi select{
	width: auto;
}

.form-section .hint{
	display: inline-block;
	font-size: 12px;
}

/* button set */
.form-action {
	display: flex;
	justify-content: center;
	padding: 20px 0 20px;
}

.form-action input[type="submit"],
.form-action input[type="button"]{
	border-radius: 2px;
	padding: 10px 40px 10px 40px;
	margin: 5px 15px 5px 15px;
	color: #FFF;
	background-color: #555;
	border: 1px solid #555;
}

.error_message p,
.form-message p{
	line-height: 1.5;
}

.contents_m .main ul,
.form-message__link {
	display: flex;
	justify-content: center;
	padding: 20px 0 20px;
}

.contents_m .main li,
.form-message__link li {
	margin: 5px 15px 5px 15px;
}

.contents_m .main li a,
.form-message__link li a{
	display: block;
	text-decoration:none;
	padding: 15px 40px 15px 40px;
	border-radius: 2px;
	color: #FFF;
	background-color: #555;
	border: 1px solid #555;
}

.contents_m .main li a:hover,
.form-message__link li a:hover,
.form-action input[type="submit"]:hover,
.form-action input[type="button"]:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}

/*--表-------------------------------------------------------------*/

/* form table */
.form-table {
	width: 100%;
}
.form-table caption {
	padding: 10px 0;
}

.form-table th{
	text-align: right;
	width: 30%;
	padding: 5px 10px;
	background: #EEE;
}
.form-table td{
	vertical-align: top;
	width: 70%;
	padding: 5px 10px;
}

.form-table td,
.form-table th {
	border-bottom: 10px solid #FFF;
}

.form-table label {
	display: inline-block;
	white-space: nowrap;
	margin: 5px 5px 5px 0;
}


.form-table div[class^="label"]{
	display:flex;
	flex-wrap:wrap;
	padding: 10px 0 0;
}

.form-table div[class^="label"] label{
	margin: 0 0 10px;
}

.form-table .label1 label{ /*label 2列*/
	width:100%;
}

.form-table .label2 label{ /*label 2列*/
	width:50%;
}

.form-table .label3 label{ /*label 3列*/
	width:33%;
}

.form-table .label4 label{ /*label 4列*/
	width:25%;
}

.form-table .label5 label{ /*label 5列*/
	width:20%;
}

.form-table .label6 label{ /*label 6列*/
	width:16%;
}

.form-table .label7 label{ /*label 7列*/
	width:14%;
}

.form-table .zip{
	width:80px!important;
}

.form-table select[name="adds"]{
	width:30%!important;
}

.form-table select[name="add_sub"]{
	width:40%!important;
}

.form-table select[name="fiscal_year"],
.form-table select[name="established_year"]{
	width: 6em !important;
	margin: 0 5px 0 0;
}

.form-table td.validate .error{ /*個別*/
	color:#FF0000;
	margin-top:5px;
	font-size: 12px;
}

.form-section__body > .error{ /*総括*/
	color:#F00;
	font-weight:bold;
	margin-bottom:10px;
}

/* info table */
.info-table {
	width: 100%;
}
.info-table caption{
	display: none;
}
.info-table th{
	text-align: right;
	width: 30%;
	line-height: 1.1;
	padding: 10px 10px 10px 10px;
	border: 1px solid #AAA;
	background-color: #EEE;
}
.info-table td{
	width: 70%;
	padding: 10px 10px 10px 10px;
	border: 1px solid #AAA;
	background-color: #FFF;
}

/* link set
----------------------------------------------- */
.cmn-linkset {
}

.cmn-linkset__list {
	display: flex;
	justify-content: center;
	padding: 20px 0 20px 0;
}

.cmn-linkset__list li {
	margin: 5px 15px 5px 15px;
	border: 1px solid #555;
	background-color: #555;
}

.cmn-linkset__list li a {
	display:block;
	text-decoration:none;
	border-radius: 2px;
	padding: 10px 20px;
	color: #FFF;
}

.cmn-linkset__list li:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}

.cmn-linkset__list li:hover a {
	color: #555;
	text-decoration: none;
}

/* button menu
----------------------------------------------- */
.button-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.button-menu li {
	margin: 2px 5px 2px 5px;
	border: 1px solid #555;
	background-color: #555;
}

.button-menu li a {
	display: block;
	padding: 10px 10px 10px 10px;
	color: #FFF;
	text-decoration: none;
}

.button-menu span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.button-menu li:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}

.button-menu li:hover a {
	color: #555;
	text-decoration: none;
}



/*--検索一覧------------------------------------------------------------------*/
.search-list-container {
	display: flex;
	flex-direction: column;
	justify-content:center;
	flex-wrap: wrap;
}

.search-arrangement {
	display: flex;
}

/*--検索フォーム-----------------------------------*/
.search-container {
	width: 300px;
	order: 1;
}

.search-form {
	border: 1px solid #555;
	background: #FFF;
	padding: 20px 15px;
}

.search-form__title {
	padding: 15px 20px 15px 20px;
	border-bottom: 1px solid #555;
	color: #333333;
}

.search-form table {
}

.search-form table th {
	padding: 5px 5px 10px;
	display: block;
	text-align: left;
	width: 100%;
	background: transparent;
}

.search-form table td {
	display: block;
	text-align: left;
	width: 100%;
	padding: 0 15px;
	margin: 0 0 10px;
}

.search-form table td,
.search-form table th {
	border: none;
}

.search-form input[type="submit"] {
	border-radius: 2px;
	border: none;
	padding: 10px 40px 10px 40px;
	margin: 5px 15px 5px 15px;
}

.search-form input[type="text"],
.search-form input[type="password"],
.search-form select {
	border-radius: 2px;
	width: 100%;
	margin: 5px 0;
}

.search-form-button {
	display: flex;
	justify-content: center;
	margin: 10px 0;
}
.search-form-button input[type="submit"],
.search-form-button input[type="button"] {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 2px;
	padding: 10px 0;
	margin: 5px 0;
	color: #FFF;
	background-color: #555;
	border: 1px solid #555;
}

.search-form-button input[type="submit"]:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}


/*--一覧------------------------------------------*/
.list-container {
	order: 2;
	width: calc( 100% - 300px );
	padding: 0 0 0 20px;
}

.list-container--full {
	width: 100%;
	padding: 0;
}

.list-container__title {
	font-size: 16px;
	line-height: 1.4;
	padding: 5px 10px;
	margin: 0 0 20px;
	border-left: 5px solid #555;
}

.list-container__none {
	padding: 15px;
	margin: 0 0 20px;
	background: #FFF;
}

.list-container .description {
	padding: 0 10px;
	margin: 0 0 20px;
}

/*--table-list-------------------------*/
.table-list {
	width: 100%;
}

.table-list th {
	text-align: left;
	line-height: 1.1;
	padding: 10px 10px 10px 10px;
	border: 1px solid #AAA;
	background-color: #FFF;
}

.table-list td {
	padding: 10px 10px 10px 10px;
	border: 1px solid #AAA;
	background-color: #FFF;
}


/*--column-list------------------------*/
.column-list {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.2;
}

.column-list__item {
	display: flex;
	flex-direction: column;
	width: calc( 33.3333% - 20px );
	padding: 20px;
	margin: 10px;
	box-sizing: border-box;
	border: 1px solid #555;
	background-color: #FFF;
}

.column-list__item__body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.column-list__item__body > a {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	color: #555;
	text-decoration: none;
}

.column-list__item__body__title {
	font-size: 18px;
	line-height: 1.2;
	padding: 0;
	margin: 0 0 10px 0;
	color: #333;
}
.column-list__item__body__text {
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 10px;
}
.column-list__item__body__data {
	margin: auto 0 10px;
}

.column-list__item__body__data ul {
	display: flex;
	flex-wrap: wrap;
}

.column-list__item__body__data li {
	width: 100%;
	font-size: 12px;
	padding: 10px 10px 0 0;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #333;
}

.column-list__item__body__data li span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 5px 0 0;
	background: #EEE;
	font-weight: normal;
}

.column-list__item__body__button {
}

.column-list__item__body__button a {
	display: block;
	margin: 10px 0 0;
	padding: 10px 5px;
	border-radius: 2px;
	text-decoration: none;
	text-align: center;
	border: 1px solid #555;
	background-color: #555;
	color: #FFF;
	text-decoration: none;
}

.column-list__item__body__button a:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}

/* トップ：新着案件 */
.job_new {
	background: #EEE;
}

.job_new_list {
	max-width: 1100px;
	margin: 0 auto;
}


/*--row-list---------------------------*/
.row-list {
	display: flex;
	flex-wrap: wrap;
}

.row-list__item {
	display: flex;
	width: 100%;
	padding: 20px;
	margin: 0 0 20px;
	box-sizing: border-box;
	border: 1px solid #555;
	background-color: #FFF;
}

.row-list__item a {
	text-decoration: none;
	color: #555;
}

.row-list__item__image {
	width: 250px;
	min-width: 250px;
}

.row-list__item__image img {
	width: 100%;
	height: auto;
}

.row-list__item__body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.row-list__item__body__title {
	font-size: 18px;
	line-height: 1.2;
	padding: 0;
	margin: 0 0 10px 0;
	color: #333;
}

.row-list__item__body__text {
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 10px;
}

.row-list__item__body__data {
	margin: 0 0 10px;
}

.row-list__item__body__data ul {
	display: flex;
	flex-wrap: wrap;
}

.row-list__item__body__data li {
	width: 33%;
	font-size: 12px;
	padding: 10px 10px 0 0;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #333;
}

.row-list__item__body__data li span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 5px 0 0;
	background: #EEE;
	font-weight: normal;
}

.row-list__item__body__data--state {}

.row-list__item__body__data--state ul li {
	font-size: 12px;
}

.row-list__item__body__data--state ul li span {
	background: #FFF;
	border: 1px solid #555;
}

.row-list__item__body__button {
	align-self: flex-end;
	display: flex;
}

.row-list__item__body__button a {
	display: block;
	margin: 10px 0 0 10px;
	padding: 10px 20px 10px 20px;
	border-radius: 2px;
	text-decoration: none;
	text-align: center;
	border: 1px solid #555;
	background-color: #555;
	color: #FFF;
	text-decoration: none;
	white-space: nowrap;
}

.row-list__item__body__button a:hover {
	color: #555;
	background-color: #FFF;
	border: 1px solid #555;
}


/*--パンくずリスト--------------------------------------------------------*/
.pankuzu {
	width: 100%;
	font-size: 12px;
	list-style: none;
	padding: 10px 20px 10px;
	margin: 10px 0 0;
}
.pankuzu li {
	display: inline-block;
}
.pankuzu li:last-child {
	font-weight: bold;
}
.pankuzu li::after {
	content: ">";
	display: inline-block;
	margin: 0 0.5em 0 0.5em;
}
.pankuzu li:last-child::after {
	content: "";
}

.pankuzu li a {
	color: #333;
}

.pankuzu li:hover a {
	color: #333333;
}


/*--詳細----------------------------------------------------------------------*/
.info-container {
	max-width: 860px;
	background: #FFF;
	padding: 45px 30px;
}

.info-container > .title {
	line-height: normal;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

.info-container > .title h1 {
	width: 100%;
	text-align: center;
	font-size: 28px;
	line-height: 1.2;
	order: 3;
}

.info-container > .title span {
	font-size: 12px;
}

.info-container > .title span.date {
	order: 2;
	text-align: right;
	width: 50%;
}

.info-container > .title span.id {
	order: 1;
	width: 50%;
}

.infoTitle {
	font-size: 16px;
	line-height: 1.2;
	padding: 5px 10px;
	margin: 0 0 20px;
	border-left: 5px solid #555;
}


/*--エラー表示-----------------------------------------------------------------*/
#contents .contents_inline {
	padding: 20px;
	display: flex;
	justify-content: center;
}


/*--仕切り--------------------------------------------------------------------*/
.head_ceparater {
}  
.head_ceparater::before {
}

.head_ceparater::after {
}

.foot_ceparater {
}  
.foot_ceparater::before {
}
.foot_ceparater::after {
}

.requisite{
	color:#F00;
}

/* ページ送り */
.l-main .search_page{
	margin:20px 0;
}

.l-main .search_page ul li a{
	background:#FFF;
	border-radius:2px;
}

.l-main .search_page ul li.focus{
	background:#555;
	border:1px solid #555;
	border-radius:2px;
}

/* ページャー
----------------------------------------------- */
.l-main .search_page{
	margin:20px 0;
	text-align:right;
}

.l-main .search_page p{
	float:left;
	margin-left:5px;
}
.l-main .search_page p span{
	font-size:14px;
	font-weight:bold;
}

.l-main .search_page ul{
	margin:10px auto 20px auto;
}

.l-main .search_page ul li{
	line-height:1;
	display:inline-block;
	margin-right:3px;
}

.l-main .search_page ul li.focus{
	padding:5px 8px 5px 8px;
	border:1px solid #CCC;
	background-color:#555;
	color:#FFF;
	font-weight:bold;
}

.l-main .search_page ul li a{
	padding:5px 8px 5px 8px;
	border:1px solid #CCC;
	text-decoration:none;
	display:inline-block;
}

.l-main .search_page ul li a:hover{
	background-color:#EEE;
}

.body .info-table,
.body .table-list {
	margin-bottom: 20px;
}


/* messageBox
----------------------------------------------- */
.messageThreadResult {
	margin: 0 0 20px;
}

.messageThreadResult__none {
	padding: 15px;
	margin: 0 0 20px;
	background: #FFF;
}

.threadList {
	background: #FFF;
	border: 1px solid #CCC;
}

.TL__part {}

.TL__part__body {
	display: flex;
	padding: 10px;
	border-bottom: 1px solid #EEE;
	position: relative;
}

.TL__part__body__more {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.TL__part__body__more:hover {
}

.TL__part__body__name {
	width: 180px;
	padding: 0 5px 0 0;
	line-height: 1.6;
}

.TL__part__body__name span {
	padding: 0 3px;
}

.TL__part__body__message {
	width: calc( 100% - 180px );
	line-height: 1.4;
}

.TL__part__body__message br {
	display: none;
}

.TL__part__body__message__data {
	margin: 0 0 3px;
	overflow: hidden;
}

.TL__part__body__message__data__mark {
	font-weight: normal;
	margin: 0 10px 0 0;
	padding: 2px 5px;
	border-radius: 3px;
	background: #ee6699;
	color: #FFF;
	font-size: 10px;
	float: left;
}

.TL__part__body__message__data__time {
	font-size: 10px;
	padding: 2px 0;
	float: right;
}

.TL__part__body__message__text {
	font-size: 12px;
}

.TL__part__body__message__text__sub {
	line-height: 1.6;
	height: 1.7em;
	overflow: hidden;
	word-break: break-all;
}

.TL__part__body__message__text__body {
	line-height: 1.4;
	max-height: 2.9em;
	overflow: hidden;
	word-break: break-all;
	font-weight: normal;
}

.TL__part__body__message__text__foot {
	font-weight: normal;
	font-size: 11px;
	color: #888;
	line-height: 1.6;
	height: 1.7em;
	overflow: hidden;
	word-break: break-all;
}

.TL__part--unread .TL__part__body__message__text,
.TL__part--unread .TL__part__body__name {
	font-weight: bold;
}

.TL__part--read .TL__part__body__more {
	background: rgba(0,0,0,0.05);
}

	/* smartphone横(landscape) */
	@media only screen and (max-width:640px) {

		.TL__part__body {
			flex-direction: column;
		}

		.TL__part__body__name {
			width: 100%;
			padding: 0;
		}

		.TL__part__body__message {
			width: 100%;
			margin: 5px 0;
		}

		.TL__part__body__message__text__body {
			font-size: 10px;
		}

	}

/* メッセージスレッド
----------------------------------------------- */
.threadDetail {
	background: #FFF;
	border: 1px solid #CCC;
	margin: 0 0 30px;
}

.TD__part:not(:first-child) {
	border-top: 1px solid #CCC;
}

.TD__part:last-child {
}

.TD__part:not(:last-child) > [id^=message_M] {
	display: none;
}

.TD__part__head {
	padding: 10px;
	cursor: pointer;
	background: #EEE;
}

.TD__part__head__ {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.TD__part__head__mark {
	flex-grow: 1;
}

.TD__part__head__mark > span {
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 2px 5px;
	border-radius: 3px;
	background: #ee6699;
	color: #FFF;
	font-size: 10px;
}

.TD__part__head__time {
	color: #000;
	font-size: 10px;
}

.TD__part__head__time > span {}

.TD__part__head__name {
	width: 100%;
	margin: 5px 0 0;
}

.TD__part__head__name > span {
	word-break: break-all;
	color: #000;
	font-size: 12px;
	font-weight: bold;
}

.TD__part__head__sub {
	width: 100%;
	color: #000;
	margin: 5px 0 0;
	font-size: 12px;
	word-break: break-all;
}

.TD__part__body {
	color: #000;
	padding: 10px 10px 20px;
	font-size: 12px;
}

.TD__part__body__action {
	text-align: right;
}

.TD__part__body__message {
	line-height: 1.4;
	padding: 10px;
	word-break: break-all;
}

.TD__part__foot {
	padding: 10px 10px 20px;
}

.TD__part__foot__ {
	border: 1px solid #DDD;
	padding: 10px;
}

.TD__part__foot__data {
}

	/* smartphone横(landscape) */
	@media only screen and (max-width:640px) {

		.TD__part__head__sub {
			font-size: 10px;
		}

		.TD__part__body__message {
			font-size: 10px;
		}

	}


/*----------------------------------------------------------------トップ最上部*/
.top-header {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 1000px;
}

.top-header__ {}

.top-header__title {}

.top-header + #wrapper {
	margin: -1000px 0 0;
}

.top-header + #wrapper .header {
	background: #fff;
}

.top-header + #wrapper .siteName__icon {
}

.top-header + #wrapper .globalNav {
	background: #fff;
}

.top-welcome {
	color: #000;
	background: #fff;
	/* height: 600px; */
}

.top-welcome__ {
	padding: 70px 10px 10px;
	margin: 0 auto;
	max-width: 1100px;
	overflow: hidden;
}

.top-welcome__title {
	font-size: 30px;
	margin: 0 0 30px;
}

.top-welcome__text {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 1em;
}

.top-welcome__text--strong {
	font-size: 18px;
	font-weight: bold;
}

.top-welcome__register {}

.top-welcome__register__ {
	display: flex;
	margin: 0 -10px;
}

.top-welcome__register__link {
	width: 50%;
	margin: 10px;
}

.top-welcome__register__link--n {}

.top-welcome__register__link--c {}

.top-welcome__register__link a {
	display: block;
	text-align: center;
	border-radius: 2px;
	padding: 20px 0;
	text-decoration: none;
	color: #FFF;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	font-size: 15px;
	font-weight: bold;
}

.top-welcome__register__link a:hover {
	opacity: 0.7;
}

.top-welcome__register__link--n a {
	background: #000;
}

.top-welcome__register__link--c a {
	background: #4FA8E0;
}

	/* iPad縦(portrait) */
	@media only screen and (max-width:768px) {

		.top-welcome {
			color: #000;
			background: #fff;
			height: auto;
		}

		.top-welcome__ {
			padding: 30px 15px;
		}

		.top-welcome__title {
			font-size: 16px;
			margin: 0 0 15px;
		}

		.top-welcome__text {
			font-size: 10px;
			line-height: 1.6;
			margin: 0 0 15px;
		}

		.top-welcome__text--strong {
			font-size: 12px;
			font-weight: bold;
		}

		.top-welcome__register__ {
			margin: 0 -5px;
		}

		.top-welcome__register__link {
			margin: 5px;
		}

		.top-welcome__register__link a {
			font-size: 12px;
			padding: 15px 0;
		}

	}

/* functionCard
----------------------------------------------- */

.functionCard {
	padding: 20px;
}

.functionCard__iconWrap {
	text-align: center;
}

.functionCard__iconWrap span {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	font-size: 36px;
	border: 1px solid #FFF;
}

.functionCard__iconWrap span .fa {
	color: #FFF;
}

.functionCard__body {}

.functionCard__body__title {
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	margin: 0 0 20px;
	color: #FFF;
	line-height: 1.4;
}

.functionCard__body__comments {
	margin: 20px 0;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

.functionCardList {
	display: flex;
}

.functionCardList .functionCard {
	width: 33%;
}


	/* iPad縦(portrait) */
	@media only screen and (max-width:768px) {

		.functionCard {
			padding: 0;
		}

		.functionCard__body__comments {
			font-size: 10px;
			margin: 10px 0;
		}

		.functionCard__body__title {
			font-size: 12px;
			margin: 0 0 10px;
		}

		.functionCardList {
			margin: 10px -10px;
			overflow: hidden;
		}

		.functionCardList .functionCard {
			width: 33%;
			margin: 0 10px;
		}

		.functionCard__iconWrap span {
			width: 60px;
			height: 60px;
			line-height: 60px;
			border-radius: 50%;
			font-size: 20px;
		}

	}


/*----------------------------------------------------------------簡単検索*/

/* 簡単検索(グリッド)
----------------------------------------------- */
.formGrid {
	display: flex;
	flex-wrap: wrap;
}

.formGrid__col {
	width: 100%;
	box-sizing: border-box;
}

.formGrid__col--05 { width: 4.16666666666%; }

.formGrid__col--1 { width: 8.33333333333%; }
.formGrid__col--2 { width: 16.6666666667%; }
.formGrid__col--3 { width: 25%; }
.formGrid__col--4 { width: 33.3333333333%; }
.formGrid__col--5 { width: 41.6666666667%; }
.formGrid__col--6 { width: 50%; }
.formGrid__col--7 { width: 58.3333333333%; }
.formGrid__col--8 { width: 66.6666666667%; }
.formGrid__col--9 { width: 75%; }
.formGrid__col--10 { width: 83.3333333333%; }
.formGrid__col--11 { width: 91.6666666667%; }
.formGrid__col--12 { width: 100%; }

.formGrid__col--free { width: auto; flex-grow: 1; }


.formGrid--separate {
	margin-left: -10px;
	margin-right: -10px;
}

.formGrid--separate .formGrid__col {
	padding: 0 10px;
}

.formGrid--mt {
	margin-top: 15px;
}

/* 簡単検索
----------------------------------------------- */
.easySearchForm {
	margin: 20px 0;
}

.easySearchForm__ {
	padding: 10px 0;
	margin: 0 auto;
	max-width: 1080px;
	box-sizing: border-box;
}

.easySearchForm__crossIcon {
	text-align: center;
}

.easySearchForm__crossIcon .fa {
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #FFF;
}

.easySearchForm__submit {
	margin: 0 0 0 20px;
}

/* stylishSelect */

.cmn-stylishSelect {
	position: relative;
	display: inline-block;
	min-width: 100px;
}

.cmn-stylishSelect .fa {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: #333;
}

.cmn-stylishSelect select {
	width: 100%;
	height: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: 0 10px;
	font-size: 14px;
	color: #333;
}

.cmn-stylishSelect--w100 {
	width: 100%;
}

/* stylishBtn */
.cmn-stylishBtn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	text-decoration: none;
	vertical-align: top;
	padding: 0 0.3em;
	width: 100%;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	height: 40px;
	background: #333;
	color: #FFF;
	border: 1px solid #333;
	border-radius: 2px;
	letter-spacing: 1px;
	transition: 0.2s;
	box-sizing: border-box;
}

input[type="submit"].cmn-stylishBtn {
	margin: 0;
	background: #000;
	color: #fff;
	border: 1px solid #000;
}

.cmn-stylishBtn:hover {
	opacity: 0.8;
}


	/* iPad縦(portrait) */
	@media only screen and (max-width:768px) {

		.easySearchForm {
			margin: 10px 0;
		}

		.formGrid__col--free {
			width: 100%;
		}

		.formGrid__col--4 { width: 45%; }
		.formGrid__col--05 { width: auto; flex-grow: 1; }

		.easySearchForm__submit {
			margin: 10px 0 0;
		}

		.cmn-stylishSelect select {
			font-size: 12px;
		}

		.cmn-stylishBtn {
			font-size: 12px;
		}

	}


/*--管理者ログイン-------------------------------------------------------------*/
#super_user{
	display: flex;
	justify-content: right;
}

#super_user a{
	width:100px;
	padding: 5px;
	margin:0 0 0 auto;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
	color:#FFF;
	background-color:#555;
	border: 1px solid #555;
}
#super_user a:hover{
	color:#555;
	background-color:#FFF;
}


/*--スライドメニュー-----------------------------------------------------------*/

.slideMenu{
	width: 100%;
	padding: 0;
	position: fixed;
	z-index: 9999;
}

#slideMenu-nav {
	position: absolute;
	z-index: 100;
	/* 開いてないときは画面外に配置 */
	top: -500px;
	width: 100%;
	text-align: center;
	transition: .5s ease-in-out;
	background: rgba(0,0,0,0.9);
	padding: 60px 20px;
}

#slideMenu-nav ul {
	list-style: none;
	font-size: 12px;
}

#slideMenu-nav ul li {
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

#slideMenu-nav .headline {
	background: #555;
	color: #CCC;
	padding: 5px;
	font-size: 10px;
}

#slideMenu-nav .headline span{
	color: #FFF;
}

#slideMenu-nav ul li a {
	width: 100%;
	display: block;
	color: #fff;
	padding: 15px 0;
	text-decoration: none;
	position: relative;
}

#slideMenu-nav ul li a::after {
	content: ">";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.6);
}

#slideMenu-input{
	display: none;
}

#slideMenu-toggle {
	position: absolute;
	top: 12px;
	right: 10px;
	width: 36px;
	height: 36px;
	padding: 10px;
	background: rgba(0,0,0,0.7);
	z-index: 101;
}

#slideMenu-toggle label {
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	position: relative;
}

#slideMenu-toggle label span {
	background: #FFF;
}

#slideMenu-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #555;
	left: 0;
	transition: .35s ease-in-out;
}

#slideMenu-toggle span:nth-child(1) {
	top: 0;
}

#slideMenu-toggle span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

#slideMenu-toggle span:nth-child(3) {
	top: 100%;
	transform: translateY(-100%);
}

/* #slideMenu-toggle 切り替えアニメーション */
#slideMenu-input:checked + #slideMenu-toggle span:nth-child(1) {
	top: 8px;
	transform: rotate(315deg);
}

#slideMenu-input:checked + #slideMenu-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}

#slideMenu-input:checked + #slideMenu-toggle span:nth-child(3) {
	top: 8px;
	transform: rotate(-315deg);
}

/* #slideMenu-nav スライドアニメーション */
#slideMenu-input:checked ~ #slideMenu-nav {
	display: block;
	transform: translateY(500px);
}

	@media screen and (min-width:768px) {
		#slideMenu-nav,
		#slideMenu-toggle,
		#slideMenu-input:checked ~ #slideMenu-nav{
			display: none;
		}
	}


/* ================================================================================ */
/*                                                                                  */
/*      レスポンシブ対応(PCファースト)                                              */
/*                                                                                  */
/* ================================================================================ */

@media only screen and (max-width:960px) {

	.column-list__item {
		width: calc( 50% - 20px );
	}

}

/* iPad縦(portrait) */
@media only screen and (max-width:768px) {

	body {
		font-size: 12px;
	}

	.headerMenu{
		display:none;
	}

	.header__ {
		height: 60px;
	}

	.siteName__logo > img {
		height: 40px;
	}

	.siteName__icon {
		height: 40px;
		font-size: 22px;
	}

	.siteName__icon > .fa {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 22px;
	}

	.globalNav {
		min-height: initial;
	}

	.globalNav__list li a {
		font-size: 12px;
		padding: 12px;
	}

	.pankuzu {
		padding: 10px;
		margin: 0;
		font-size: 10px;
	}

	.pankuzu li:last-child {
		font-weight: normal;
	}

	.l-article {
		padding: 10px 15px;
	}

	.form-section {
	}

	.form-section__body {
		padding: 10px 0;
	}

	.cmn-section {
		min-width: 100%;
	}

	.cmn-section__body {
		padding: 10px;
	}

	.cmn-section__body p {
		font-size: 10px;
	}

	.cmn-section__body--nopadding {
		padding: 0;
	}

	.sectionTitle--lv1 {
		font-size: 16px;
		padding: 10px;
	}

	.sectionTitle--lv2 {
		font-size: 14px;
		padding: 10px 0;
	}

	.sectionTitle--lv3 {
		font-size: 12px;
		padding: 5px 0;
	}

	.cmn-list {
		font-size: 10px;
	}

	.cmn_index_area {
		padding: 20px 10px;
	}

	.cmn_index_area__title {
		font-size: 20px;
		margin: 0 0 20px;
	}

	.info-container {
		padding: 20px 15px;
	}

	.info-container > .title {
		margin: 0 0 10px;
	}

	.info-container > .title h1 {
		text-align: left;
		font-size: 16px;
		padding: 10px 0;
	}

	.info-container > .title span.date,
	.info-container > .title span.id {
		font-size: 10px;
	}

	.infoTitle {
		font-size: 14px;
		padding: 0 10px;
		margin: 0 0 10px;
	}

	.list-container__title {
		font-size: 14px;
		padding: 0 10px;
		margin: 0 0 10px;
	}

	.cmn-linkset {
		margin: 0 0 10px;
	}

	.cmn-linkset__list {
		padding: 10px 0;
	}

	.cmn-linkset__list li a {
	}

	.search_card_list {
	}

	.search_card_list li {
		margin: 5px;
		width: calc( 50% - 10px );
	}

	.search_card_list li a {
		padding: 20px 10px;
	}

	.column-list__item {
		padding: 15px;
		margin: 5px;
		width: calc( 50% - 10px );
	}

	.column-list__item__body__title {
		font-size: 16px;
	}

	.column-list__item__body__text {
		font-size: 10px;
	}

	.column-list__item__body__data li {
		font-size: 10px;
		font-weight: normal;
		padding: 5px 0 0 0;
	}

	.row-list__item {
		padding: 15px;
	}

	.row-list__item__body__title {
		font-size: 16px;
	}

	.row-list__item__body__text {
		font-size: 10px;
	}

	.row-list__item__body__data li {
		font-size: 10px;
		font-weight: normal;
		padding: 5px 0 0 0;
		width: 100%;
	}

	.row-list__item__body__data--state ul li {
		font-size: 10px;
		font-weight: normal;
	}

	.row-list__item__body__button {
		align-self: initial;
		flex-wrap: wrap;
	}

	.row-list__item__body__button a {
		margin: 10px 0 0;
	}

	.search-arrangement {
		flex-direction: column;
	}

	.search-container,
	.list-container {
		order: 0;
	}

	.list-container {
		width: 100%;
		padding: 0;
	}

	.search-container {
		width: 100%;
	}

	.search-form {
		padding: 10px;
	}

	.search-form table th {
	}

	.search-form table td {
	}

	.search-form-button input[type="submit"],
	.search-form-button input[type="button"] {
		font-size: 1em;
	}

	.sc_list > .cmn-section {
		width: calc( 50% - 10px );
		margin: 5px;
	}


}

/* smartphone横(landscape) */
@media only screen and (max-width:640px) {

	.l-article {
		padding: 10px;
	}

	.progress-tracker {
	}

	.progress-tracker li {
		font-size: 10px;
	}

	.progress-tracker li::before {
		width: 20px;
		height: 20px;
		line-height: 20px;
		margin: 0 auto 5px;
	}

	.sectionTitle--lv1 {
		font-size: 14px;
		padding: 10px;
	}

	.form-section {
		padding: 15px;
	}

	.form-section input[type="text"],
	.form-section input[type="password"],
	.form-section select,
	.form-section textarea{
	}

	.form-table {
		width: 100%;
	}

	.form-table th,
	.form-table td {
		display: block;
		text-align: left;
		width: 100% !important;
		padding: 5px 0;
	}

	.form-table th {
		padding: 5px;
	}

	.form-table td {
		padding: 0;
		margin: 0 0 10px;
	}

	.form-action {
		display: flex;
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}

	.form-action input[type="submit"],
	.form-action input[type="button"]{
		margin: 5px 0;
	}

	.form-message__link {
		display: flex;
		flex-direction: column;
		text-align: center;
		justify-content: center;
		padding: 30px 0 0 0;
	}

	.info-table {
		width: 100%;
	}

	.info-table tr {
		display: block;
	}

	.info-table th,
	.info-table td {
		display: block;
		text-align: left;
		width: 100% !important;
		margin: -1px 0 0;
	}

	.info-table th {
		background: #EEE;
		font-size: 10px;
	}

	.info-table td {
		font-size: 12px;
	}

	.table-list tr {
		display: block;
	}

	.table-list th,
	.table-list td {
		display: block;
		text-align: left;
		width: 100% !important;
		margin: -1px 0 0;
	}

	.table-list th {
		background: #EEE;
		font-size: 10px;
	}

	.table-list td {
		font-size: 12px;
	}

	.cmn-linkset__list {
		display: flex;
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}

	.search-form {
		margin: 10px 0 10px 0;
	}

	.column-list__item {
		margin: 0 0 10px;
		width: 100%;
	}

	.row-list__item__body__button a {
		width: 100%;
	}

	.sc_list{
		flex-direction: column;
	}

	.sc_list > .cmn-section{
		width: 100%;
		margin: 0 0 15px;
	}

	.sc_message {
		order:2;
	}
	.sc_form {
		order:1;
	}

	.search_card_list {
		margin: 0 -5px;
	}

}


/* iPhone横(landscape) */
@media only screen and (max-width:480px) {

	.search_card_list {
		margin: 0;
	}

	.search_card_list li {
		margin: 0 0 10px;
		width: 100%;
	}

	.search_card_list li a {
		padding: 20px 10px;
	}

}

/* smartphone縦(portrait) */
@media only screen and (max-width:360px) {}

/* iPhone縦(portrait) */
@media only screen and (max-width:320px) {}

/* viewportの仕様上、指定可能な最小幅 */
@media only screen and (max-width:200px) {}


/* ================================================================================ */
/*                                                                                  */
/*      デザインテーマ                                                               */
/*                                                                                  */
/* ================================================================================ */
