/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
.first-column table.top-list-table td:nth-child(1){
	    width: 65%;
}
.btn-internal a.top-companylist-btn{
	max-width: 100%;
    font-size: 1.3rem;
}
.table-normal h4{
	margin: 4rem 0 0;
    padding: 0.5rem;
    font-size: 1.6rem;
    background: #fff;
}

.kyocho{
	font-weight:bold;
	color:#f90000 !important;
	font-size:20px!important;
}

.btn-table {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #E04A4A;
    color: #FFF;
    border-bottom: solid 4px #b54747;
    border-radius: 3px;
}

.capin {
    color: #4c4c4c;
    font-size: 1rem;
}

.box20 {
    position: relative;
    padding: 0.25em 1em;
    margin: 2em 0;
    top: 0;
    background: #f4f9ff;
}
.box20:before, .box20:after{ 
    position: absolute;
    top: 0;
    content:'';
    width: 10px;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}
.box20:before{
    border-left: dotted 2px #4772b2;
    border-top: dotted 2px#4772b2;
    border-bottom: dotted 2px #4772b2;
    left: 0;
}
.box20:after{
    border-top: dotted 2px #4772b2;
    border-right: dotted 2px #4772b2;
    border-bottom: dotted 2px #4772b2;
    right: 0;
}
.box20 p {
    margin: 0; 
    padding: 0;
}

.top-th {
    vertical-align: middle;
}

.top-td {
    vertical-align: middle;
}

 .top-td2 {
    vertical-align: middle;
    font-weight: bold;
 }

.top-catch {
    font-size: 2.0rem;
}
.list4 {
    width: 100%;
    margin: 15rem auto 3rem;
    padding: 3.5rem 2.5rem 2.5rem;
    font-size: 2.8rem;
    line-height: 140%;
    text-align: center;
    position: relative;
    color: #4772b2;
    border: 1px solid;
    border-radius: 5px;
	font-family: "HG明朝E", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.list4 span {
    font-size: 2.0rem;
}
.list4:before {
    content: "";
    width: 145px;
    height: 36px;
    display: block;
    position: absolute;
    top: -18px;
    left: calc((100% - 145px)/2);
    background: url(https://www.rentalasset-mgmt.net/wp/wp-content/themes/va176/img/h1.png) no-repeat;
}
/*2023.08.29*/
.l-header__sitename:before{
    content: "PR";
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    width: fit-content;
    margin-bottom: .5rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    line-height: 1.4;	
}

/*2023.11.06*/
.btn-internal a.company-btn{
	max-width:70%;
}



/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 480px) {

	.first-column table.top-list-table td:nth-child(1){
	    width: 100%;
}

	.btn-link a.company-btn{
		font-size:1.3rem;
	}	
	
}

/* oki_20220704 */

.kanren {
    border: 1px solid #c1d5f3;
    padding: 20px 30px 0;
    margin: 80px 0;
    position: relative;
    box-sizing: border-box;
}
.midasi {
    border-bottom: 1px solid #c1d5f3;
    padding-bottom:10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.kanren br {
    display: none;
}

/* アコーディオンのときに下記追加 */
.readmore-content {
    position: relative;
    overflow: hidden;
    height: 160px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 5px auto;
    z-index: 2;
    padding: 3px 10px;
    background-color: #4772b2;
    border-radius: 10px;
    color: #FFF;
}
.readmore-label:before{
    content: "\7D9A\304D\3092\8AAD\3080";
}

.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
    /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
    content: "\9589\3058\308B";
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}
.list4 {
    font-size: 2.2rem;
    margin-top: 10rem;
	padding: 2rem 1.5rem 1.5rem;
}
.list4:before {
    width: 100px;
    height: 25px;
    background-size: contain;
    left: calc((100% - 100px)/2);
    top: -13px;
}