@charset "UTF-8";
#tblLayout{
	width: 100%;
}
.message {
    width: auto;
    margin: 0;
    padding: 70px 0 40px 0;
    text-align: left;
    max-width: 1088px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
}
.message_lead {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 60px !important;
}
.message_block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 60px !important;
}
.message_img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.message_txt {
	font-size: 14px;
	line-height: 2;
}
.color {
	font-weight: bold;
}
.ceo{
	display: block;
	text-align: right;
	line-height: 1.4;
}
.message_history {
    display: block;
    background-color: #f5f7f7;
    padding: 4em 3.5em;
	
}
.message_history_ttl {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 1em;
	text-align: center;
	color: #787878;
}
.message .table {
	width: 100%;
	border-collapse: collapse;
}
.message .tr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.message_year{
	width: fit-content;
	font-size: 26px;
	font-weight: bold;
	color: #787878;
}
.message_empty{
	width: 15%;
	padding: 50px 0;
	position: relative;
}
.message_empty::before{
	position: absolute;
	content: "";
	width: 4px;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #fff;
}
.message_empty::after{
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #9facb3;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.last::before{
	content: unset;
}
.message_text{
	width: 60%;
	font-size: 16px;
	line-height: 1.8;
	color: #888888;
	a {
		color: #888888;
	    word-break: break-all;
		text-decoration: underline !important;
	}
}

@media screen and (max-width: 1400px) {
	.message{
		width: 100%;
        box-sizing: border-box;
        padding: 3em 25px ;
	}
	.message_history{
		padding: 3em 8% 0;
	}
	.message_history_ttl{
		margin-bottom: 1em;
	}
	.message_lead{
		margin-bottom: 40px !important;
	}
	.message_txt{
		margin-bottom: 40px !important;
	}
	.message_block{
		grid-template-columns: 100%;
	}
	.message .tr{
		display: grid;
    	grid-template-columns: 20px 80%;
		gap: 0 10%;
	}
	.message_year{
		grid-column: 2/3;
		line-height: 1;
		align-self: flex-start;
		font-size: 18px;
	}
	.message_text{
		grid-column: 2/3;
		padding: 10px 0 50px;
		width: 100%;
		font-size: 12px;
	}
	.message_empty{
		grid-column: 1/2;
		grid-row: 1/3;
		width: 100%;
		height: 100%;
        padding: 0;
	}
	.message_empty::after{
		bottom: unset;
		top: 3px;
        width: 15px;
        height: 15px;
	}
	.message_empty::before{
		top: 3px;
	}
}