@charset "UTF-8";
/* CSS Document */





.portal-section {
    width: 90%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 15px;
}

.section-heading {
    font-size: 1.8rem;
    color: #427BBF; 
    border-left: 6px solid #333; 
    padding: 5px 15px;
    margin-bottom: 25px;
    text-align: left;
}

.section-body {
    padding-left: 20px;
}

.text-content {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* PDFダウンロードボタン */
.pdf-link-area {
    margin: 20px 0;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pdf-button:hover {
    background-color: #e0e0e0;
    border-color: #999;
}

.pdf-button::before {
    content: "PDF";
    background-color: #ff4d4d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 3px;
    margin-right: 10px;
}

.file-info {
    font-size: 0.8rem;
    color: #666;
    margin-left: 10px;
}

/* 箇条書きリスト */
.info-list-simple {
    list-style: none;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-list-simple li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-list-simple li strong {
    color: #427BBF;
    display: inline-block;
    width: 100px;
}

.design04 {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.3rem;
}
.design04 tr:nth-child(2n+1) {
    background: #e9faf9;
}
.design04 th {
    padding: 10px 40px;
    background: #778ca3;
    border-right: solid 1px #778ca3;
    border-bottom: solid 1px #ffffff;
    color: #ffffff;
}
.design04 th:last-child {
    border-right: none;
}
.design04 td {
    padding: 10px;
    border-right: solid 1px #778ca3; 
    border-bottom: solid 1px #999999;
}
.design04 td:last-child {
    border-right: none;
}
.design04 th.last,
.design04 td.last{
    border-bottom: none;
}

/* 求人先一覧などのプライマリーボタン */
.btn-group {
    margin-top: 30px;
}

.btn-primary-yellow {
    display: inline-block;
    background-color: #DFFF4F;
    color: #333;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-primary-yellow:hover {
    transform: translateY(2px);
    background-color: #9eb636;
}

/* 画像グリッド */
.img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.img-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/*-----------------------------------
	6. 就職とキャリア
-----------------------------------*/
.career-section{
	width: 100%;
	margin: 200px 0;
}

.career-inner{
	width: 90%;
	margin: 0 auto;
	background-color: #71C7D1;
	color: #ffffff;
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: auto;
}

.career-img{
	width: 100%;
}

.career-img img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.career-set{
	width: 100%;
	padding: 40px 20px;
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
}

.career-title{
	margin-bottom: 10px;
}

.career-text{
	margin-bottom: 30px;
}






@media (min-width: 900px){

    /*-----------------------------------
			6. 就職とキャリア
	-----------------------------------*/
	.content-right, .career-inner{
		margin-right: 0;
		margin-left: auto;
		width: 85%;
	}
	
	.career-inner{
		flex-direction: row;
		min-height: 400px;
		width: 80%;
		border-radius: 30px 0 0 30px;
		display: flex;
	}
	
	.career-img, .career-set{
		width: 50%;
	}
	
	.career-img img{
		height: 100%;
	}
}