@charset "UTF-8";

/*---------------1st---------------*/
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.8;
	height: auto !important; /*IE6対策*/
	height: 100%; /*IE6対策*/
	-webkit-print-color-adjust: exact;
}

/*PC・SP表示*/
.d-onlyPC-block{
	display: block;
}
@media (max-width:767.98px){
	.d-onlyPC-block{
		display: none;
	}
}
.d-onlySP-block{
	display: none;
}
@media (max-width:767.98px){
	.d-onlySP-block{
		display: block;
	}
}

/*フォント*/
.din{
	font-family: din-2014,sans-serif;
	font-weight: 600;
	font-style: normal;
}

/*見出し*/
.h2-ttl{
	font-size: 1.75rem;
	letter-spacing: 2px;
	position: relative;
	line-height: 26px;
	margin: 0;
	font-weight: 700;
}
.h2-ttl span:first-child{
	font-size: 0.9375rem;
}
.h2-ttl span:nth-child(2){
	position: relative;
}
.h2-ttl .line{
	position: absolute;
    left: 50%;
    top: 49%;
    transform: translateX(-50%);
	border-bottom: 3px solid #000;
	width: 30px;
}
@media (max-width:575.98px){
	.h2-ttl{
		font-size: 1.5rem;
	}
	.h2-ttl span:first-child{
		font-size: 0.8125rem;
	}
}

/*グリッドシステム*/
@media (min-width: 992px) {
  .col-lg-3-new {
    flex: 0 0 auto;
    width: 22%;
  }
}
@media (max-width:767.98px) {
  .col-sm-6-new {
    flex: 0 0 auto;
    width: 47.5%;
  }
}

/*マージン・パディング*/
.m-0auto{
	margin: 0 auto;
}
.pr-3{
	padding-right: 1rem;
}
.mr-2{
	margin-right: .5rem;
}

.justify-content-evenly {
}

/*矢印装飾*/
.btn.arrow{
	position: relative;
}
.btn.arrow::before {
	content: '';
	position: absolute;
    bottom: 17px;
    right: -20px;
    width: 17%;
    height: 1px;
}
.btn.arrow::after {
	content: '';
	position: absolute;
	bottom: 22px;
    right: -21px;
    width: 16px;
    height: 1px;
    transform: rotate(35deg);
}
.btn.arrow:hover::before {
    right: -28px;
	transition: .15s;
}
.btn.arrow:hover::after {
    right: -29px;
	transition: .15s;
}
.btn-primary.arrow::before,
.btn-outline-primary.arrow::before,
.btn-primary.arrow::after,
.btn-outline-primary.arrow::after{
	background: #44BBAA;
}
.btn-light.arrow::before,
.btn-outline-light.arrow::before,
.btn-light.arrow::after,
.btn-outline-light.arrow::after{
	background: #fff;
}

/*フェードアップ*/
/* .fadeup-trigger{
	opacity: 0;
} */
.fadeup {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*バッヂ*/
.badge-twitter{
	display: inline-block;
	background: url("/img/common/twitter-white.png") 54% / 60% no-repeat;
	background-color: #B4B4B4;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	padding: 10px;
}
.badge-instagram{
	display: inline-block;
	background: url("/img/common/instagram.svg") 50% / 60% no-repeat;
	background-color: #B4B4B4;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	padding: 10px;
}
.badge-youtube{
	display: inline-block;
	background: url("/img/common/youtube.svg") 55% / 60% no-repeat;
	background-color: #B4B4B4;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	padding: 10px;
}
.badge-tiktok {
    display: table-caption;
    align-items: center;
    justify-content: center;
    background-color: #B4B4B4;
    width: 32px;
    height: 32px;
    border-radius: 50%;
	padding: 10px 10px 10px 8px;
    line-height: 0;
}

/*登録受付バナー*/
.bg-ph{
	padding: 5rem 0;
	position: relative;
	background: url("/img/common/bg-ph.jpg") center  0% / 100% no-repeat;
	width: 100%;
    height: 350px;
}

.registration-bnr{
	max-width: 1000px;
	margin: 0 auto;
	background-color: #fff;
}
.registration-bnr .d-flex span{
	font-size: 1.25rem;
	display: inline-block;
	padding-bottom: 10px;
	font-weight: 700;
}
.registration-bnr .txt{
	flex-basis: 30%;
	font-size: 1.25rem;
	color: #fff;
	padding: 20px 0 20px 50px;
	position: relative;
	z-index: 1;
	font-weight: 700;
}
.registration-bnr .txt::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-top: 157px solid #44bbaa;
	border-left: 220px solid #44bbaa;
    border-right: 200px solid transparent;
	z-index: -1;
}
.registration-btn{
	flex-basis: 70%;
	margin: 20px auto;
	padding: 0 50px 0 70px;
	text-align: center;
}
.registration-btn ul li{
	list-style: none;
}
.registration-btn ul li a{
	font-size: 1.125rem;
	display: flex;
	position: relative;
	width: 260px;
	text-decoration: none;
	font-weight: 700;
	padding: 0 5px;
}
.registration-btn ul li a img{
	flex-basis: 15%;
}
.registration-btn ul li a p{
	flex-basis: 85%;
	padding-top: 10px;
}
.registration-btn ul .client a::before {
	content: '';
	position: absolute;
    bottom: 13px;
    left: 57%;
    width: 14%;
    height: 1px;
	background:#424242;
}
.registration-btn ul .client a::after {
	content: '';
	position: absolute;
	bottom: 18px;
    left: 65%;
    width: 7%;
    height: 1px;
    transform: rotate(35deg);
	background: #424242;
}
.registration-btn ul .talent a::before {
	content: '';
	position: absolute;
    bottom: 13px;
    left: 57%;
    width: 14%;
    height: 1px;
	background:#fff;
}
.registration-btn ul .talent a::after {
	content: '';
	position: absolute;
	bottom: 18px;
    left: 65%;
    width: 7%;
    height: 1px;
    transform: rotate(35deg);
	background: #fff;
}
.registration-btn ul .client a:hover::before,
.registration-btn ul .talent a:hover::before {
    left: 61%;
	transition: .15s;
}
.registration-btn ul .client a:hover::after,
.registration-btn ul .talent a:hover::after {
    left: 69%;
	transition: .15s;
}

@media (max-width:991.98px){
	.registration-bnr{
		width: 92%;
	}
	.registration-bnr .d-flex span{
		font-size: 0.9375rem;
	}
	.registration-bnr .txt{
		font-size: 0.9375rem;
		padding: 20px;
	}
	.registration-bnr .txt::before{
		border-top: 149px solid #44bbaa;
		border-left: 133px solid #44bbaa;
    	border-right: 113px solid transparent;
	}
	.registration-btn{
		padding: 0;
	}
	.registration-btn ul li a{
		width: 210px;
		font-size: 0.875rem;
	}
}
@media (max-width:767.98px){
	.bg-ph{
		background-size: cover;
		height: 500px;
	}
	.registration-bnr .txt{
		flex-basis: 100%;
		width: 100%;
		text-align: center;
		margin: 0 auto;
	}
	.registration-btn{
		padding: 0;
	}
	.registration-btn .client{
		margin-bottom: 15px;
	}
	.registration-bnr .txt::before{
		top: 0;
		left: 0;
		width: 100%;
		border-top: 101px solid #44bbaa;
		border-bottom: 47px solid transparent;
		border-right: 92vw solid #44bbaa;
		border-left: none;
	}
		.registration-btn ul li a{
		width: 240px;
	}

}

/*ヘッダー*/
.header-logo img{
	width: 90px;
	height: 90px;
	
}
.header-logo{
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 10;
}
.header-logo a:hover{
	opacity: 1;
}
.nav-item a:hover{
	text-decoration: underline;
}
.login .nav-link{
	color: #44BBAA !important;
	border: #44BBAA solid 1px;
	padding: 0;
	margin-left: .8rem;
	margin-right: .8rem;
}
.login .nav-link:hover{
	color: #44BBAA !important;
	border: #44BBAA solid 1px;
	opacity: .8;
}
.registration .nav-link{
	color: #fff !important;
	background-color: #44BBAA;
	border: #44BBAA solid 1px;
	margin-left: .8rem;
}
.registration .nav-link:hover{
	color: #fff !important;
	background-color: #44BBAA;
	border: #44BBAA solid 1px;
	opacity: .8;
}
.sp-head-toggler, .sp-head-nav{
	display: none;
}
@media (max-width:575.98px){
	.header-logo img{
		width: 58px;
		height: 58px;
	
	}
}
.bg{
	width: 100%;
	position: relative;
}
.bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 27vw solid #44bbaa;
    border-right: 50vw solid transparent;
	z-index: -1;
}
.bg::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 27vw solid #eedd0f;
    border-left: 50vw solid transparent;
	z-index: -1;
}

/* pdf印刷レイアウト表示時にボタンを非表示にする */
@media print {
	.no-print {
		display: none;
	}
	.pdf-header {
		margin-top: 100px;
	}
	.pdf-col-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	#header {
		margin-left: 60px;
	}
}

@page {
    size: auto;
    margin: 0;
}

@media (max-width:575.98px){
	.bg::before{
		border-top: 180px solid #44bbaa;
		border-right: 320px solid transparent;
	}
	.bg::after{
		border-bottom: 180px solid #eedd0f;
		border-left: 320px solid transparent;
	}
}

/*SPヘッダー*/
@media (max-width:991.98px){
	.sp-head-toggler{
		display: block;
		position: fixed;
		z-index: 999999999999999;
		top: 29px;
		right: 20px;
		width: 26px;
		height: 26px;
	}
	.sp-head-toggler span{
		display: block;
		width: 26px;
		height: 1px;
		background-color: #44BBAA;
	}
	.sp-head-toggler span:before {
		display: block;
		width: 26px;
		height: 1px;
		content: '';
		-webkit-transition: all .6s;
		transition: all .6s;
		-webkit-transform: translateY(9px);
		-ms-transform: translateY(9px);
		transform: translateY(9px);
		background: #44BBAA;
	}
	.sp-head-toggler span:after {
		display: block;
		width: 26px;
		height: 1px;
		content: '';
		-webkit-transition: all .6s;
		transition: all .6s;
		-webkit-transform: translateY(-9px);
		-ms-transform: translateY(-9px);
		transform: translateY(-9px);
		background: #44BBAA;
	}
	.sp-head-toggler span.on {
		background: #fff;
	}
	.sp-head-toggler span.on:before {
		-webkit-transform: rotate(45deg) translateY(0);
		-ms-transform: rotate(45deg) translateY(0);
		transform: rotate(45deg) translateY(0);
	}
	.sp-head-toggler span.on:after {
		-webkit-transform: rotate(-45deg) translateY(0);
		-ms-transform: rotate(-45deg) translateY(0);
		transform: rotate(-45deg) translateY(0);
	}
	.sp-head-nav{
		display: block;
		position: fixed;
		z-index: 99999999;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100%;
		-webkit-transition: all .6s;
		transition: all .6s;
		vertical-align: middle;
		opacity: 0;
		background: #fff;
		overflow-y: scroll !important;
		-webkit-overflow-scrolling:touch;		
	}
	.sp-head-nav.on {
		left: 0;
		display: block;
		-webkit-transition: all .6s;
		transition: all .6s;
		opacity: 1;
	}
	.sp-head-nav .margin{
		margin-top: 3.5rem;
	}
	.sp-head-nav .home{
		background-color: #44BBAA;
		text-align: center;
		padding: 10px 0;
    	margin-bottom: 10px;
	}
	.sp-head-nav .home a{
		color: #fff;
		display: block;
	}
	.sp-head-nav .menu{
		border-bottom: 1px #44BBAA solid;
		padding-bottom: 10px;
	}
	.sp-head-nav ul li{
		list-style: none;
		padding: 10px 20px;
	}
	.sp-head-nav .home a i,
	.sp-head-nav ul li a i{
		padding-right: 10px;
	}
}

/*フッター*/
.footer-logo img{
	width: 100px;
	height: 100px;
}
.footer-logo li a:hover{
	opacity: 1!important;
}
footer ul.list3 li:not(:first-child) a,
footer ul.list4 li:not(:first-child) a{
	font-weight: 100;
}

@media (max-width:991.98px){
	footer ul.list1{
		text-align: center;
		margin: 0 auto 30px;
		flex-basis: 100%;
	}
	footer ul.list2{
		text-align: center;
		margin: 0 auto;
		flex-basis: 100%;
	}
	footer ul.list3{
		display: none;
	}
	footer ul.list4{
		display: none;
	}
}



/*---------------2nd---------------*/

/*修正*/
.main-content{
	padding: 6.5rem 0 13.5rem;
}


/*追加*/
.header-logo{
	z-index: 10;
}


/*マージン・パディング*/

@media (min-width:992px){
	.p-lg-0{
		padding: 0;
	}
}
@media (max-width:991.98px){
	.main-content{
		padding: 3rem 0 8rem;
	}
}


/*幅*/
.card-area{
	max-width: 1230px;
}
.w-45{
	width: 45%!important;
}
@media (max-width:767.98px){
	.w-100-md{
		width: 100%!important;
	}
}
@media (max-width:767.98px){
	.card-area{
		width: 94%;
		margin: 0 auto;
	}

}


/*見出し*/
.main-content h2.ttl{
	position: relative;
	padding-left: 150px;
	font-weight: 700;
}
.main-content h2.ttl::before{
	content: '';
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	height: 3px;
	width: 130px;
	background: #eedd0f;
}
@media (max-width:575.98px){
	.main-content h2.ttl{
		padding-left: 60px;
	}
	.main-content h2.ttl::before{
		width: 50px;
	}
}


/*背景装飾*/
.page-bg{
	width: 100%;
	position: relative;
}
.page-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 21vw solid #44bbaa;
    border-right: 44vw solid transparent;
    z-index: -1;
}
.page-bg::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 21vw solid #eedd0f;
    border-left: 44vw solid transparent;
	z-index: -1;
}
@media (max-width:1199.98px){
	.page-bg::before{
		border-top: 26vw solid #44bbaa;
		border-right: 49vw solid transparent;
	}
	.page-bg::after{
		border-bottom: 26vw solid #eedd0f;
		border-left: 49vw solid transparent;
	}
}
@media (max-width:575.98px){
	.page-bg::before{
		border-top: 140px solid #44bbaa;
		border-right: 280px solid transparent;
	}
	.page-bg::after{
		border-bottom: 140px solid #eedd0f;
		border-left: 280px solid transparent;
	}
}
.upper-bg{
	width: 100%;
	position: relative;
}
.upper-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 21vw solid #44bbaa;
    border-right: 44vw solid transparent;
	z-index: 0;
}
@media (max-width:575.98px){
	.upper-bg::after{
		border-top: 140px solid #44bbaa;
		border-right: 280px solid transparent;
	}
}


/*リストスタイル*/
.list-style dl{
	display: flex;
	font-size: 0.9375rem;
	padding: 15px 0;
	border-top: 1px solid #eef4f4;
}
.list-style dl:last-child{
	border-bottom: 1px solid #eef4f4;
}
.list-style dt{
	flex: 0 0 40%;
	width: 40%;
}
.list-style dd{
	flex: 0 0 60%;
	width: 60%;
}


/*フォームセレクト*/
.form-select{
	width: 100%;
	height: 38px;
	background-color: #fff;
	font-size: 0.75rem;
	color: #333333;
	padding: 10px 0 10px 20px;
	border: 1px solid #d0d0d0;
	border-radius: .25rem;
}


/*カード*/
.talent .card-body {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	/* 納品時CSS */
    /* padding: 1.25rem 1.25rem 0 1.25rem; */
    /* height: 200px; */
}

@media (max-width:575.98px){
	.talent .card-body{
		padding: 0.75rem 0.75rem 0.75rem 0.75rem;
		/* 納品時CSS */
		/* padding: 1rem 1rem 0 1rem;
		height: 220px; */
}
}
@media (max-width:575.98px){
	.case .card-body{
		padding: 1rem;
}
}




/*---------------3rd---------------*/

/*フォント*/
.tsukushi{
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
}


/*背景色*/
.bg-light-green{background-color: #ecf8f6;}


/*ヘッダー*/
.nav-item{
	position: relative;
}
.nav-item .badge{
	position: absolute;
	left: 25px;
    top: 3px;
	font-size: 50%;
}
.nav-icon{
	font-size: 1.25rem;
}
@media (max-width:991.98px){
	.d-md-block-none{
		display: none;
	}
	
}


/*マイページナビゲーション*/
/* サイドメニューを固定し、スクロールできるようにするCSS */
.mypage-side-nav {
	position: sticky;
	top: 10px;
	height: 100vh;
	overflow-y:scroll;
}
.mypage-side-nav > ul > li{
	list-style: none;
	border-top: 1px solid #44BBAA;
}
.mypage-side-nav > ul > li:last-child{
	border-bottom: 1px solid #44BBAA;
}
.mypage-side-nav > ul > li > a{
	color: #B4B4B4;
	font-size: 0.875rem;
	font-weight: 700;
	display: block;
	padding: 8px 20px;
}
.mypage-side-nav > ul > li.active > a{
	color: #424242;
}
.mypage-side-nav > ul > li > a:hover{
	text-decoration: none;
}
.mypage-side-nav > ul > li > a > i{
	font-size: 1.125rem;
	padding-right: 10px;
}
.menu-setting-trigger a{
	position: relative;
	display: block;
}
.menu-setting-trigger a[aria-expanded=false]::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 40%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 12px;
    height: 12px;
    border-top: solid 3px #d0d0d0;
    border-right: solid 3px #d0d0d0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.menu-setting-trigger a[aria-expanded=true]{
	background-color: #ecf8f6;
	color: #424242;
}
.menu-setting-trigger a[aria-expanded=true]::after{
    content: "";
    position: absolute;
    right: 10%;
    top: 45%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 12px;
    height: 12px;
    border-top: solid 3px #d0d0d0;
    border-right: solid 3px #d0d0d0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mypage-side-nav > ul > ul > li{ 
	list-style: none;
}
.mypage-side-nav > ul > ul > li > a{
	color: #B4B4B4;
	padding: 8px 20px 8px 48px;
	display: block;
}


/*---------------4th---------------*/
/*修正*/
.mypage-side-nav > ul > li > a,
.mypage-side-nav > ul > ul > li > a{
	color: #424242;
	font-size: 0.875rem;
}


/*お気に入り、オファー※talent.cssから移転*/
.select{
	border-top: 1px solid #44bbaa;
	width: 100%;
	font-size: 0.75rem;
	position: absolute;
	bottom: 0;
}
.select ul{
	margin: 11px 20px 13px 35px;
}
.select ul li{
	list-style: none;
}
.select ul li a{
	color: #369688;
}
.favorite, .offer{
	position: relative;
    display: inline-block;

}
.favorite::before{
	content: url("/img/talent/favorite.svg");
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	left: -15px;
	top: 2px;
}
.offer::before{
	content: url("/img/talent/offer.svg");
	width: 1em;
	height: 1em;
	position: absolute;
	left: -15px;
	top: 1px;
}
@media (max-width:575.98px){
	.select ul{
		margin: 6px 5px 9px 18px;
	}
}



/*テキスト装飾*/
.text-underline{
	text-decoration: underline;
}


/*新着ラベル*/
.new-badge{
}
.new-badge.position-absolute{
	top: 0;
	left: 10px;
}
.new-badge span{
	background-color: #e9d911;
	display: inline-block;
	padding: 5px 12px;
	font-size: 0.9375rem;
	font-weight: 700;
}
.new-badge .position-relative::before{
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 1;
	bottom: -10px;
	left: 0;
	border-width: 0px 27px 10px 27px;
	border-color: transparent #e9d911;
	border-style: solid;
}
@media (max-width:767.98px){
	.new-badge{
		left: 30px;
	}
	.new-badge span{
		padding: 12px 18px;
	}
	.new-badge .position-relative::before {
		border-width: 0px 33px 10px 33px;
	}

}


/*公募案件カード*/
.job-card-area .card-img{
	flex: 0 0 30%;
	width: 30%;
}
.job-card-area > .card > .card-wrapper > a:hover{
	opacity: 1;
}
.job-card-area .card-img img{
	width: 210px;
	height: 158px;
	object-fit: contain;
}
.job-card-area .card-body{
	flex: 0 0 70%;
	width: 70%;
	padding: 0 1.25rem 1.25rem 1.25rem;
	height: auto;
}
.job-card-area .card-title{
	font-size: 1.125rem;
	text-decoration: underline;
}
.job-card-area .card-body table{
	font-size: 0.9375rem;
}
.job-card-area .card-body table th{
	padding-right: 10px;
}
.card-wrapper{
	padding: 1.5rem;
}
@media (max-width:1199.98px){
	.job-card-area .card-img img{
		width: 190px;
	}
}
@media (max-width:767.98px){
	.job-card-area .card-img img{
		width: 100%;
	}
	.job-card-area .card-img,
	.job-card-area .card-body{
		flex: 0 0 100%;
		width: 100%;
	}
	.job-card-area .card-body{
		margin-top: 1.5rem;
	}
	.job-card-area .card-body table{
		font-size: 0.8125rem;
	}
	.card-wrapper{
		padding: 3rem 1rem 1rem 1rem;
	}
}
/*お気に入り*/
.job-card-area .favorite-area{
	position: absolute;
	top: 0;
	right: 0;
	background-color: #daf1ee;
	
}
.job-card-area .favorite-area .position-relative{
	font-size: 0.75rem;
	padding: .45rem .45rem .45rem 2rem;
	text-align: center;
	width: 200px;
}
.job-card-area .favorite-area .position-relative::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-right: 30px solid transparent;
	border-bottom: 36px solid #fff;
	
}
.job-card-area .favorite-area .favorite a{
	color: #369688;
}
@media (max-width:767.98px){
	.job-card-area .favorite-area .position-relative{
		width: 150px;
	}
}

/*card-footer*/
.job-card-area .card-footer .btn{
	width: auto;
	padding: 0 1rem!important;
}
.job-card-area .card-footer .btn a{
	font-size: .75rem;
	color: #369688;
}

/* レーティング */
.rating p{font-weight: 700;
}
.rating span{font-weight: 400;}
.star5-rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC;
	font-size: 1rem;
}
.star5-rating:before, .star5-rating:after{
    content: '★ ★ ★ ★ ★';
}
.star5-rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #eedd0f;
}
.star5-rating[data-rate="5.0"]:after{ width: 100%; } /* 星5 */
.star5-rating[data-rate="4.9"]:after{ width: 98%; } /* 星4.5 */
.star5-rating[data-rate="4.8"]:after{ width: 96%; } /* 星4.5 */
.star5-rating[data-rate="4.7"]:after{ width: 94%; } /* 星4.5 */
.star5-rating[data-rate="4.6"]:after{ width: 92%; } /* 星4.5 */
.star5-rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5-rating[data-rate="4.4"]:after{ width: 88%; } /* 星4.5 */
.star5-rating[data-rate="4.3"]:after{ width: 86%; } /* 星4.5 */
.star5-rating[data-rate="4.2"]:after{ width: 84%; } /* 星4.5 */
.star5-rating[data-rate="4.1"]:after{ width: 82%; } /* 星4.5 */
.star5-rating[data-rate="4.0"]:after{ width: 80%; } /* 星4 */
.star5-rating[data-rate="3.9"]:after{ width: 78%; } /* 星3.5 */
.star5-rating[data-rate="3.8"]:after{ width: 76%; } /* 星3.5 */
.star5-rating[data-rate="3.7"]:after{ width: 74%; } /* 星3.5 */
.star5-rating[data-rate="3.6"]:after{ width: 72%; } /* 星3.5 */
.star5-rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5-rating[data-rate="3.4"]:after{ width: 68%; } /* 星3.5 */
.star5-rating[data-rate="3.3"]:after{ width: 66%; } /* 星3.5 */
.star5-rating[data-rate="3.2"]:after{ width: 64%; } /* 星3.5 */
.star5-rating[data-rate="3.1"]:after{ width: 62%; } /* 星3.5 */
.star5-rating[data-rate="3.0"]:after{ width: 60%; } /* 星3 */
.star5-rating[data-rate="2.9"]:after{ width: 58%; } /* 星2.5 */
.star5-rating[data-rate="2.8"]:after{ width: 56%; } /* 星2.5 */
.star5-rating[data-rate="2.7"]:after{ width: 54%; } /* 星2.5 */
.star5-rating[data-rate="2.6"]:after{ width: 52%; } /* 星2.5 */
.star5-rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5-rating[data-rate="2.4"]:after{ width: 48%; } /* 星2.5 */
.star5-rating[data-rate="2.3"]:after{ width: 46%; } /* 星2.5 */
.star5-rating[data-rate="2.2"]:after{ width: 44%; } /* 星2.5 */
.star5-rating[data-rate="2.1"]:after{ width: 42%; } /* 星2.5 */
.star5-rating[data-rate="2.0"]:after{ width: 40%; } /* 星2 */
.star5-rating[data-rate="1.9"]:after{ width: 38%; } /* 星1.5 */
.star5-rating[data-rate="1.8"]:after{ width: 36%; } /* 星1.5 */
.star5-rating[data-rate="1.7"]:after{ width: 34%; } /* 星1.5 */
.star5-rating[data-rate="1.6"]:after{ width: 32%; } /* 星1.5 */
.star5-rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5-rating[data-rate="1.4"]:after{ width: 28%; } /* 星1.5 */
.star5-rating[data-rate="1.3"]:after{ width: 26%; } /* 星1.5 */
.star5-rating[data-rate="1.2"]:after{ width: 24%; } /* 星1.5 */
.star5-rating[data-rate="1.1"]:after{ width: 22%; } /* 星1.5 */
.star5-rating[data-rate="1.0"]:after{ width: 20%; } /* 星1 */
.star5-rating[data-rate="0.9"]:after{ width: 18%; } /* 星0.5 */
.star5-rating[data-rate="0.8"]:after{ width: 16%; } /* 星0.5 */
.star5-rating[data-rate="0.7"]:after{ width: 14%; } /* 星0.5 */
.star5-rating[data-rate="0.6"]:after{ width: 12%; } /* 星0.5 */
.star5-rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5-rating[data-rate="0.4"]:after{ width: 8%; } /* 星0.5 */
.star5-rating[data-rate="0.3"]:after{ width: 6%; } /* 星0.5 */
.star5-rating[data-rate="0.2"]:after{ width: 4%; } /* 星0.5 */
.star5-rating[data-rate="0.1"]:after{ width: 2%; } /* 星0.5 */
.star5-rating[data-rate="0.0"]:after{ width: 0%; } /* 星0 */

.rating-num{
	position: relative;
	display: inline-block;
	margin-left: 15px;
	font-size: .75rem;
}
.rating-num::before{
	content: '';
	position: absolute;
	top: -6px;
    left: -7px;
    width: 30px;
    height: 30px;
	background-color: #f2f2f2;
	border-radius: 50%;
	z-index: -1;
}


/*メッセージ*/
.message {
    list-style: none;
    margin: 0;
}
.message .left .message-body{
   background-color: #eef4f4;
}
.message .right .message-body{
   background-color: #c7ebe5;
}
.message li img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}
.message-body {
  padding-bottom: 20px;
}
.message li.left .message-body {
  margin-left: 70px;
}
.message li .message-body {
  position: relative;
  font-size: 11px;
  padding: 10px;
}
.message li .message-body .header {
  padding-bottom: 5px;
	font-size: 0.875rem;
}
.message li .message-body p {
  margin: 0;
	font-size: 0.75rem;
}
.message li.left .message-body:before {
  position: absolute;
  top: 16px;
  left: -5px;
  display: inline-block;
  background: #eef4f4;
  width: 12px;
  height: 12px;
  content: '';
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.message li.right .message-body:before {
  position: absolute;
  top: 16px;
  right: -5px;
  display: inline-block;
  background: #c7ebe5;
  width: 12px;
  height: 12px;
  content: '';
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.message li {
  margin: 15px 0;
}
.message li.right .message-body {
  margin-right: 70px;
}
.message-box {
  padding: 15px;
  border-top: 1px solid #eee;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}


/*フォーム*/
.message-area .form-control {
    font-size: 0.75rem;
}
.message-area .form-group{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.message-area .form-group label{
    font-size: 0.75rem;
    flex: 0 0 16%;
	width: 16%;
	margin-bottom: 0;
}
.message-area .form-group input{
    font-size: 0.75rem;
    flex: 0 0 84%;
	width: 84%;
}
@media (max-width:767.98px){
	.message-area .form-group label{
		margin-bottom: 5px;
	}
	
	.message-area .form-group label,
	.message-area .form-group input{
		flex: 0 0 100%;
		width: 100%;
	}
	
}


/*---------------4th(0711修正)---------------*/

/*付加情報*/
.addinfo-area{
	display: inline-block;
	padding: 5px 15px 5px 15px;
	border-radius: 4px 4px 0px 0px;
}
.addinfo-area p{
	font-size: 0.75rem;
}


/*---------------5th---------------*/

/*追加*/
.job-card-area .card-footer .btn a:hover{
	opacity: .8;
}

/*背景色*/
.bg-light-yellow{background-color: #FCF8CF;}

/*ボタン*/
.btn a{
	opacity: 1;
}
/*btn-white*/
.btn-white {
  color: #369688;
  background-color: #fff;
  border-color: #fff;
}
.btn-white a{
  color: #369688;
}

.btn-white:hover {
  background-color: #e3f5f2;
  border-color: #e3f5f2;
}

.btn-white:focus, .btn-white.focus {
  color: #369688;
  background-color: #e3f5f2;
  border-color: #e3f5f2;
  box-shadow: 0 0 0 0.2rem rgba(68, 187, 170, 0.5);
}

.btn-white.disabled, .btn-white:disabled {
  color: #369688;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
  color: #369688;
  background-color: #e3f5f2;
  border-color: #e3f5f2;
}

.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 187, 170, 0.5);
}
/*btn-gray*/
.btn-gray {
  color: #fff;
  background-color: #D0D0D0;
  border-color: #D0D0D0;
}
.btn-gray a{
  color: #fff;
}

.btn-gray:hover {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  opacity: .8;
}

.btn-gray:focus, .btn-gray.focus {
  color: #fff;
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  box-shadow: 0 0 0 0.2rem rgba(208, 208, 208, 0.5);
}

.btn-gray.disabled, .btn-gray:disabled {
  color: #fff;
  background-color: #D0D0D0;
  border-color: #D0D0D0;
}

.btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
.show > .btn-gray.dropdown-toggle {
  color: #fff;
  background-color: #D0D0D0;
  border-color: #D0D0D0;
}

.btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-gray.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(208, 208, 208, 0.5);
}


/*---------------6th---------------*/
/*修正*/
@media (max-width:575.98px){
	.h2-ttl{
		font-size: 1.25rem;
	}
}
@media (max-width:767.98px){
	.h2-ttl .multirow.line{
		top: 37%;
	}
}

/*お問い合わせバナー*/
.contact-bnr{
	max-width: 1000px;
	margin: 0 auto;
	background-color: #EEF4F4;
	padding: 30px;
}
.contact-bnr .ttl{
	font-size: 1.25rem;
	font-weight: 700;
	color: #369688;
}
@media (max-width:991.98px){
	.contact-bnr{
		width: 92%;
	}
	.contact-bnr .ttl{
		font-size: 1.125rem;
	}
}

/*テキスト省略*/
.text-truncate-2{
display: -webkit-box;
    -webkit-line-clamp: 2;/*2行*/
    -webkit-box-orient: vertical;
    overflow: hidden;
	white-space: normal;
}
.text-truncate-3{
display: -webkit-box;
    -webkit-line-clamp: 3;/*3行*/
    -webkit-box-orient: vertical;
    overflow: hidden;
	white-space: normal;
}

/*カード*/
.job-card-area .card-title{
	/* width: 70%; */
}
@media (max-width:767.98px){
	.job-card-area  .card-title{
	width: 100%;
}
}


/*---------------7th---------------*/
.border-bottom-primary{
	border-bottom: 1px solid #44BBAA;
}
.border-bottom-white{
	border-bottom: 1px solid #fff;
}
.border-bottom-dark{
	border-bottom: 1px solid #424242;
}
	

/*リストスタイル*/
.check-list li{
	list-style: none;
	padding-left: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
	font-size: 0.9375rem;
	margin: 0!important;
}
.check-list li::before{
    content: url(/img/mypage/check.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0.4rem;
    top: 2px;
}
.w-85{
	width: 85%!important;
}
html{
	scroll-behavior: smooth;
}


/*---------------8th---------------*/

.sp-head-icon{
	display: none;
}
@media (max-width:991.98px){
	.sp-head-icon{
		display: block;
		padding-right: 50px;
		padding-top: 5px;
	}
	.sp-head-icon .navbar-nav {
    	-ms-flex-direction: row;
    	flex-direction: row;
	}
}

/* 管理画面：案件サンプル画像 */
.height-250 {
    height: 250px;
}
.height-250 img {
    object-fit: cover;
}