@charset "utf8";



.rec-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #FFFFFF;
}


.recruit-one {
    width: 100%;
	font-size: 14px;
}

.into-rec-one {
	width: 100%;
	max-width: 1160px;
	background-color: #fcebcb;
	margin: 46px auto;
	border-radius: 34px;
	padding: 60px;
}

.into-rec-one .inner {
	position: relative;
    z-index: 1;
	width: 100%;
	max-width: 740px;
	background-color: #FFFFFF;
	border-radius: 30px;
	margin: auto;
	padding: 30px;
}

.headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0; /* 下のパディングをなくして重なりを調整しやすくする */
    font-size: 18px;    /* font-size: 0 を打ち消し */
    font-weight: bold;
    
    /* 下の .inner に20px重ねる設定 */
    position: relative;
    z-index: 10;        /* .inner より上に表示させる */
    margin-bottom: -20px; 
}

.side-img {
    width: 89px;
    height: 90px;
    display: block;
}
.headline span {
	font-size: 18px;
	font-weight: bold;
	color: #ff801e;
	margin-bottom: 30px;
}


.sub-ab-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0 10px; /* 0が左右、10pxが上下の隙間 */
}

.sub-ab-table td {
    font-size: 16px;
    line-height: 175%;
    color: #000;
    padding: 20px 10px !important;
    border: 1px solid #f3ab26;
}

.sub-ab-table td:first-child {
    width: 180px;
    font-weight: bold;
    background: #fcebcb;
    color: #ff801e;
    text-align: center;
    padding: 20px !important; /* ご指定の余白 */

    /* 枠線を消して滑らかにする */
    border: none; 

    /* 左側だけの丸み */
    border-radius: 50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
	font-size: 18px;
}

.sub-ab-table td:last-child {
    border-left: 14px solid #fff;
    padding-left: 0 !important;
    border-right: none;
	border-top: none;
}

.sub-ab-table tr:first-child td:last-child {
    border-top: 1px solid #f3ab26;
}


.rec_txt01 {
	margin-left: 10px;
	line-height: 1.6;
}

.rec_txt01 span {
	color: #ff801e;
}

.rec_txt02 {
    /* ブロック自体の左右マージンをautoにして中央寄せ */
    margin: 30px auto; 
    
    /* 中身のテキスト量に合わせた幅にする、
       または 80% など任意の幅を指定 */
    width: fit-content; 
    
    /* テキスト自体は左寄せ */
    text-align: left;
    
    /* 以下、読みやすさのための調整 */
    line-height: 1.8;
}




@media screen and (max-width: 767px) {

	
.headline {

    font-size: 14px;    /* font-size: 0 を打ち消し */
    gap: 10px;
}

.side-img {
    width: 60px;
    height: 60px;

}
.headline span {
	font-size: 16px;
	font-weight: bold;
	color: #ff801e;
	margin-bottom: 30px;
}
	
	
    .table-responsive {
        border: none;
        overflow:inherit;      
    }

	.sub-ab-table td {
		border: none;
	}
    .sub-ab-table td:first-child {
        width: 100%;
        float: left;
        white-space:inherit!important; 
        border: 0px solid #fff;
        /* border-top: 1px solid #faad16; */
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        /* margin-bottom: 1px; */
		padding: 14px 20px !important; /* ご指定の余白 */
		border-radius: 30px;
    }
    
    .sub-ab-table td:last-child {
        width: 100%;
        float: left;
        white-space:inherit!important; 
		padding-left: 30px!important;
        /* margin-bottom: 15px */
    }

    .sub-ab-table tr:first-child td:first-child {
        border-top: 0px solid #fff;
    }


    .sub-ab-table td:last-child {
        border-left: none;
        border-right: none;
        border-top: none;
		border-bottom: none;
        /* border-top: none; */
		
    }
.sub-ab-table tr:first-child td:last-child {
    border-top: none;
}

.rec_txt02 {
        width: 90%; /* スマホでは少し幅を広げるとバランスが良いです */
        margin: 20px auto;
        font-size: 14px;
    }	
	

}