@charset "UTF-8";



.article{
	margin-bottom:50px;
}
.article.btnarea{
	margin-top:30px;
}
article .btn{
	border:1px solid #ccc;
	padding:15px;
}
.form-check label{
	padding-right:20px;
}
.form-check input[type="checkbox"]{
    margin-right: 5px;
}
fieldset{
	margin-bottom:30px;
}

.Search-Regist{
	position:relative;
	background-color: #000;
	border:1px solid #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 15px 5px 35px;
    border-radius: 10px;
    margin-left: 8px;
    margin-right: 16px;
    text-align: center;
    max-width: 400px;
	width:100%;
}
.Search-Regist img {
    width: 16px;
}
.Search-Regist:before{
	content: url(/assets/images/common/registicon.svg);
	display: inline-block;
	width: 17px;
 	height: 14px;
	 position:absolute;
	 top: 38%;
    left: 13px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);	
	-ms-transform: translateY(-50%);
}
.Search-Regist:hover{
	background-color: unset;
	border:1px solid #000;
	color:#000;
}
.Search-Regist:hover:before{
	content: url(/assets/images/common/registicon-on.svg);
}
/*アコーディオンボタン*/
.schtitle{
	padding:15px;
	position:relative;
	border-radius:16px;
	background-color:#F6F5FC;
	text-align:center;
	color:#0067CD;
	font-size:1.5em;
	font-weight:700;
	cursor:pointer;
}
.schtitle.accbtn_on{
	border-radius:16px 16px 0 0;
}

.schtitle .toggle{
	position: absolute;
	right: 20px;
	top: 11px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: #0067cd;
}
.schtitle .toggle span:before {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -1px;
	width: 14px;
	height: 2px;
	background: #fff;
}
.schtitle .toggle span:after {
	content: '';
	position: absolute;
	right: 21px;
	top: 50%;
	margin-top: -7px;
	width: 2px;
	height: 14px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background: #fff;
}
.accbtn_on .toggle span:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

/*フォーム*/
form{
	padding: 20px 30px 70px;
	background-color:#F6F5FC;
}
form fieldset{
	display:flex;
	border:0;
	padding-bottom:20px;
}
form fieldset.bottombd{
	border-bottom: 1px solid #969696;
}
legend{
	width: 175px;
	color:#0067CD;
}
.form-label{
	color:#0067CD;
}
.selectArea {
  position: relative;
  width: fit-content;
}
.selectArea select{
	 /* ブラウザ標準のデザインをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  border: 1px solid #0067cd;
    padding: 10px;
    border-radius: 20px;
}
.selectArea:before{
	content: "";
    position: absolute;
    top: 6px;
    right: 45px;
    width: 1px;
    height: 24px;
    background-color: #0167cd;
    display: block;
}
.selectArea:after{
	content: url(/assets/images/common/formselect.svg);
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 29%;
    right: 29px;
    transform: translateY(-29%);
    -webkit-transform: translateY(-29%);
    -ms-transform: translateY(-29%);
}
.address2title{
	margin-left:50px;
}
.address2input input{
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #0067cd;
    padding: 10px;
    border-radius: 20px;
	width:300px;
}
form fieldset div{
	display:flex;
	align-items:center;
}
.formbtnarea{
	display:flex;
	gap:50px;
	justify-content:center;
}
.formbtnarea .btn1{
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:0;
	background-color:#0067CD;
	color:#fff;
	width:254px;
	padding:15px 0px;
	font-size:1.1em;
	font-weight:bold;
	border-radius:30px;
	cursor:pointer;
}
.formbtnarea .btn1:hover{
	background-color: unset;
	color:#0067CD;
	border:1px solid #0067CD;
	transition: all 0.3s ease;
}
.formbtnarea .btn2{
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:0;
	border:1px solid #0067CD;
	color:#0067CD;
	width:254px;
	padding:15px 0px;
	font-size:1.1em;
	font-weight:bold;
	border-radius:30px;
	background-color: unset;
	cursor:pointer;
}
.formbtnarea .btn2:hover{
	background-color:#0067CD;
	color:#fff;
	border:1px solid #0067CD;
	transition: all 0.3s ease;
}
.form-group{
	width:100%;
}
.form-group .nowrap{
	white-space:nowrap;
}
.form-group .row{
	display: flex;
    flex-wrap: wrap;
	width:100%;
}
.form-group .row .col-xl-2{
	width:50%;
}
.form-group .row .col-xl-3{
	width:33%;
}
.form-group .row .col-xl-4{
	width:25%;
}
.form-group .row .col-xl-5{
	width:20%;
}
.form-group .row .col-xl-6{
	width:16%;
}



/*新規登録ボタン*/
.newregist{
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
    margin-left: 8px;
    margin-right: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.newregist img{
	width:20px;
}

/*リスト件数*/
.countno{
	font-weight:500;
	font-size:1.2em;
	position: sticky;
    top: 169px;
    z-index: 13;
    background-color: #efefef;
    padding: 10px;
}
.countno span{
	color:#0067CD;
}

/*APIエラーメッセージ*/
.search-error{
	color:#c00;
	font-weight:500;
	padding:10px;
}

/*リスト*/
.listtable{
	width:100%;
	border-collapse:  collapse;
}

.listtable th{
   border: solid 1px; 
   padding:5px;り上に表示させる */
  background-color: #fff;
}
.listtable th{
	background-color:#0067CD;
	color:#fff;
	font-size: 0.875em;
    padding: 10px;
	position: -webkit-sticky;
    position: sticky;
    top: 221px;
    z-index: 10;
}
.listtable th.Address{
	width:140px;
}
.listtable tr{
	position: relative;
}
.listtable th.Task{
	min-width:120px;
}
.listtable th.Address{
	width:128px;
}
.listtable th.ExpIndustry{
	width:320px;
}
.listtable:not(.com) tr:not(.bd3) td{
	padding-top:15px !important;
}
.listtable td.Age{
	white-space:nowrap;
}

.listtable td{
	text-align:center;
	background-color:#F6F5FC;
	position: relative;
	vertical-align:middle;
	padding: 4px 10px 18px;
	font-size:0.875em;
}
.listtable td.special{
	text-align:left;
}
.listtable .bd3 td{
	padding-bottom: 15px;
}
.listtable.com td{
	padding: 10px 5px 5px;
}
.listtable td.listlogin{
	vertical-align:bottom;
}
.listtable td.bd:after{
	content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 90%;
    top: 10px;
    background-color: #969696;
}
.listtable td.bd2:after{
	content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 88%;
    top: 10px;
    background-color: #969696;
}
.listtable tr.bd3:after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 98%;
    height: 2px;
    background-color: #0067CD;	
}
.listtable td.bd4:after{
	content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 95%;
    background-color: #969696;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.listtable tr.bd3:last-child:after{
	background-color: #fff;	
}
.listtable td .work{
	text-align:left;
	padding: 10px;
}
.listtable td .listlogin{
	background-color: #0067CD;
    color: #fff;
	line-height: 1.2em;
    padding: 13px 24px !important;;
    display: block;
    width: fit-content;
    margin: 0 auto;
    border-radius: 10px;
	white-space: nowrap;
    padding: 5px 15px;
	margin:0 15px;
	border:1px solid #0067CD;
}
.listtable td.listlogin .login span{
	padding-left: 30px;
}
.listtable td .listlogin:hover{
	background-color: #FFF;
	border:1px solid #0067CD;
	color:#0067CD;
}
.listtable td.detail{
	padding-top:0 !important;
}
.listtable td.detail .flx{
	display: flex;
	align-items: center;
    gap: 20px;
}


.listtable td .pr{
	display: flex;
    background-color: #e2eaf8;
    margin: 5px;
    gap: 13px;
    padding: 10px;
    align-items: center;
}
.listtable.com td .pr{
	flex-direction: column;
	align-items:flex-start;
	gap: 0px;
}
.listtable td .task{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px;
    gap: 0px;
    padding: 10px;
}
.listtable.com td .pr{
	width:100%;
}
.listtable.com td.detail{
	padding-bottom: 15px;
}
.listtable td .pr .prtl{
	white-space:nowrap;
	color:#0067CD;
}
.listtable td .task .tasktl{
	white-space:nowrap;
	color: #DF582F;
}
.listtable td .pr .prtx,
.listtable td .task .tasktx{
	text-align:left;
}

.listtable td .pr .text-multiline-limit{
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 最大表示行数を2行に制限 */
  overflow: hidden;
  text-overflow: ellipsis;
}


.listtable td.detail img{
	width:200px;
}
.loginbtn{
	display:block;
	border:1px solid #ddd;
	border-radius:5px;
	background-color:#ccc;
	text-align:center;
}
.loginarea{
	text-align:center;
}
.loginarea .lincomment{
	font-size:0.8em;
}
.listtable.com td.details{
	padding-bottom:0;
}
.listtable.com td.support{
	padding-top: 12px;
	min-width:105px;
}


.listtable.com td .Industry{
	padding: 0px 10px 0;
}
.listtable.com .cname{
	white-space:pre;
}
.listtable.com .cname img{
	width:175px;
	margin: 0 auto;
}
.listtable.com td.details{
	text-align:left !important;
}
.listtable .Industry{
	display:flex;
	flex-flow: row wrap;
	gap:5px;
}
.listtable .Industry span{
	border:1px solid #0067CD;
	border-radius:15px;
	padding:0 10px;
	color:#0067CD;
	font-size: 0.875em;
	white-space: nowrap;
}
.listtable.com td .pr .text-multiline-limit2,
.listtable.com td .task .text-multiline-limit2 {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.listtable.com td .pr .text-multiline-limit3,
.listtable.com td .task .text-multiline-limit3 {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.listtable.com td.support{
	color:#0067CD;
}
.listtable.com td.support .support1:before{
	content: url(/assets/images/search/support-icon1.svg);
    margin: 10px;
    position: relative;
    top: 3px;
}
.listtable.com td.support .support2:before{
	content: url(/assets/images/search/support-icon2.svg);
    margin: 10px;
    position: relative;
    top: 3px;
}
.listtable.com td.listlogin .login{
	padding: 20px 5px;
}
.listtable.com td.listlogin .login:hover{
	border:1px solid #0067cd;
	color:#0067cd;
	background-color:unset;
}


/*企業詳細*/
.cinfo{
	position:relative;
}
.cinfo .splide{
	margin-bottom:70px;
}
.cinfo .splide__track img{
	width:640px;
	margin:0 auto;
}

.cinfo .pr,
.cinfo .task{
	display:flex;
	align-items:center;
	gap:30px;
	background-color:#F6F5FC;
	border-radius:10px;
	padding:30px;
	margin-bottom:30px;
}
.cinfo .pr .toplabel,
.cinfo .task .toplabel{
	margin-left:20px;
}
.cinfo .pr .toplabel p{
	width:107px;
	height:107px;
	background-color:#0067CD;
	border-radius:50%;
	padding:10px;
	white-space:nowrap;
	display:flex;
	justify-content:center;
	align-items:center;
	color:#fff;
}
.cinfo .task .toplabel p{
	width:107px;
	height:107px;
	background-color:#EDCB76;
	border-radius:50%;
	padding:10px;
	white-space:nowrap;
	display:flex;
	justify-content:center;
	align-items:center;
	color:#000;
	font-weight:500;
}
.cinfo .task .taskitem{
	display:flex;
	flex-flow: row wrap;
	gap:5px;
}
.cinfo .task .taskitem span{
	border: 1px solid #0067CD;
    border-radius: 15px;
    padding: 0 10px;
    color: #0067CD;
    white-space: nowrap;
}

.listlogin2 .login2{
	position: relative;
    background-color: #0067cd;
    border: 1px solid #0067cd;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px 20px;
    border-radius: 10px;
    text-align: center;
    width: 140px;
    margin: 0 auto;
    display: block;
    margin-bottom: 5px;
    margin-right: 10px;
}
.listlogin2 .login2:hover{
	background-color: #fff;
	color:#0067cd;
	border:1px solid #0067cd;
}

.details table{
	border-collapse:  collapse;  
	width:100%;
}
.details table th,
.details table td{  
	padding:10px 20px;; 
	text-align:left;
}
.details table tr{
	position:relative;
}
.details table th{
	color:#0067CD;
	background-color:#DCE4EC;
	width:200px;
}

.details table tr:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #0067CD;

}
.details table tr:last-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #0067CD;
}

/*企業詳細ページング*/
.gootbtnarea button.movebtn1:disabled,
.gootbtnarea button.movebtn2:disabled {
  visibility: hidden;
}

/*企業詳細ポップアップ*/
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.5);
      z-index: 1000;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      overflow-y: auto;
      padding: 2rem 1rem;
    }
    .modal-overlay[hidden] { display: none; }
    .modal-inner {
      background: #fff;
      width: 100%;
      position: relative;
      padding: 2.5rem 2rem 2rem;
      margin: auto;
    }
    .modaltop {
      position: absolute;
      top: 1rem; right: 1rem;
      z-index: 1;
      background: none; border: none;
      cursor: pointer; line-height: 1;
	  font-size:1.2em;
    }
	.modalbtm {
		position: absolute;
		background-color:#fff;
		cursor: pointer;
	}
    img[src=""] { display: none; }
	.modal-inner .gootbtnarea .movebtn1:after,
	.modal-inner .gootbtnarea .movebtn2:after {
		top: 11px;
	}
	.modal-inner .gootbtnarea .movebtn2:before {
		top: 20%;
	}

.gootbtnarea{
	display:flex;
	flex-flow: row wrap;
	justify-content: center;
    gap: 20px 50px;
}
.gootbtnarea .caption{
	width:100%;
	text-align:center;
}
.gootbtnarea .movebtn1,
.gootbtnarea .movebtn2{
	position: relative;
    font-weight: bold;
    border: 1px solid #0067cd;
    border-radius: 30px;
    width: 254px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.gootbtnarea .movebtn1{
	padding-left:100px;
    color: #0067cd;
    padding: 12px 8px 12px 49px;
}
.gootbtnarea .movebtn2{
	padding-left:20px;
    color: #fff;
	background-color:#0067cd;
    padding: 12px 50px 12px 14px;
}
.gootbtnarea .movebtn1:before{
	content: url(/assets/images/common/arrow.svg);
    display: inline-block;
    transform: rotate(180deg);
    width: 10px;
    height: 10px;
    position: absolute;
    left: 20px;
    top: 46%;
}
.gootbtnarea .movebtn1:hover:before{
	content: url(/assets/images/common/arrow-w.svg);
}
.gootbtnarea .movebtn1:after{
    content: "";
    position: absolute;
    top: 6px;
    left: 45px;
    width: 1px;
    height: 30px;
    background-color: #0167cd;
    display: block;
}
.gootbtnarea .movebtn1:hover{
	color: #fff;
	background-color:#0067cd;
}
.gootbtnarea .movebtn1:hover:after{
    background-color: #fff;
}
.gootbtnarea .movebtn2:before{
	content: url(/assets/images/common/arrow-w.svg);
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 33%;
}
.gootbtnarea .movebtn2:after {
    content: "";
    position: absolute;
    top: 6px;
    right: 45px;
    width: 1px;
    height: 30px;
    background-color: #fff;
    display: block;
}
.gootbtnarea .movebtn2:hover{
	background-color: unset;
	color: #0067cd;
}
.gootbtnarea .movebtn2:hover:after{
    background-color: #0067cd;
}
.gootbtnarea .movebtn2:hover:before{
	content: url(/assets/images/common/arrow.svg);
}

/* スライダーカスタム */
.splide__arrow--prev {
  background-image: url('/assets/images/common/sliderarrow-l.svg');
  background-size: contain;
  background-color: transparent; /* 背景色を消す */
}
.splide__arrow--prev svg,
.splide__arrow--next svg {
  display: none; /* 元の矢印アイコンを消す */
}

@media (max-width: 1287px) {
	/*リスト件数*/
	.countno{
		top: 200px;
	}
	.listtable th{
		top: 253px;
	}
}/*media

/* タブレット・PC向けの上書き (例: 1089px以上) */
@media (max-width: 1028px) {
	.listtable td{padding:5px 15px;}
	.listtable td .pr {
		margin: 0px;
	}
	.listtable td .task {
		margin: 0px;
		margin-top:10px;
	}
	.listtable td .listlogin {
		padding: 10px 60px;
		margin: 0 auto;
		margin-top: 10px;
        margin-bottom: 30px;
	}
	.listtable td.info p{
		padding-left:1em;
		text-indent:-1em;
	}
	.listtable td.info p:before{
		content:"・";
	}
	.listtable td .pr,
	.listtable td .task {
		flex-flow: row wrap;
		gap: 5px;
	}
	.listtable td .pr .text-multiline-limit {
		-webkit-line-clamp: 3;
	}
	.listtable td .pr{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		background-color: #e2eaf8;
		margin: 5px;
		gap: 0px;
		padding: 10px;
	}
	
	/*リスト*/
	
	/*リスト件数*/
	.countno{
		top: 86px;
	}
	.listtable.com td{
		padding: 10px 20px;
	}
	.listtable th{
		top: 136px;
	}
	.listlabelarea{
		display:flex;
		gap:20px;
	}
	.listlabel{
		color:#0067CD;
		width: 90px;
	}
	.listtable td .detail{
		padding:20px;
	}
	.listtable td .detail .photo span{
		font-size:1.2em;
	}
	.listtable td .detail .photo img{
		margin: 0 auto;
		margin-top:10px;
	}
	.listtable td .detail .Industry{
		margin-top:30px;
	}
	.listtable td .detail .Industry,
	.listtable td .detail .work{
		text-align:left;
		margin-bottom:6px;
	}
	.listtable td .support1,
	.listtable td .support2{
		color: #0067CD;
	}
	.listtable td .support1:before {
		content: url(/assets/images/search/support-icon1.svg);
		margin: 0px;
		margin-right:10px;
		position: relative;
		top: 3px;
	}
	.listtable td .support2:before {
		content: url(/assets/images/search/support-icon2.svg);
		margin: 0px;
		margin-right:10px;
		position: relative;
		top: 3px;
	}
	
	.listtable td .detail .pr{
		margin-top:15px;
	}
	.listtable td .detail .pr,
	.listtable td .detail .task{
		width:100%;
	}
	.listtable.com td .pr .text-multiline-limit2, 
	.listtable.com td .task .text-multiline-limit2 {
		-webkit-line-clamp: 3;
	}
	.listlogin{
		text-align:center;
	}
	.listlogin .login2{
		position: relative;
		background-color: #0067cd;
		border: 1px solid #0067cd;
		color: #fff;
		font-weight: bold;
		font-size: 1.1rem;
		padding: 10px 40px;
		border-radius: 10px;
		text-align: center;
		width: 350px;
		margin: 0 auto;
		display: block;
		margin-bottom: 30px;
	}

}/*@media */


@media screen and (max-width: 769px) {
	.cinfo .pr, .cinfo .task {
		flex-direction: column;
	}
	.details table th,
	.details table td {
		display:block;
		width:100%;
		position: relative;
	}
	.details table tr:before {
		content: unset;
	}
	.details table th:before{
		content: "";
		position: absolute;
		top: 0;
		left: 0px;
		width: 100%;
		height: 1px;
		background-color: #0067CD;
	}
	.details table td:before{
		content: "";
		position: absolute;
		top: 0;
		left: 0px;
		width: 100%;
		height: 1px;
		background-color: #0067CD;
	}
	
	/*@フォーム */
	form fieldset {
		flex-flow: row wrap;
		gap:15px;
	}
	form fieldset div {
		width:100%;
	}
	.form-group .row .col-xl-2,
	.form-group .row .col-xl-3 {
		width: 1000%;
	}
	
	.listtable tr.bd3:after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 98%;
		height: 2px;
		background-color: #0067CD;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	
	
	.gootbtnarea {
		flex-direction: column;
		align-items: center;
	}

}/*@media */


@media screen and (max-width: 510px) {
		/*リスト件数*/
	.countno{
		top: 67px;
	}
	.listtable th{
		top: 116px;
	}
	
	.Search-Regist{
		font-size:0.875em;
		display: block;
	}
	
}/*@media */

