#message{
	max-width: 900px;
	margin: 0 auto;
	padding: 0 0 clamp(40px, 5vw, 80px);
}

#message h2{
	margin-bottom: 1em;
	color: var(--color-point2);
}

#message p{
	text-align: left;
	margin: .8em auto 0;
	max-width: 800px;
}

@media screen and (max-width: 767px) {
	#message h2 br{display: none}
}	

@media print, screen and (min-width: 768px) {
	#message{
		text-align: center
	}
}	



.tochigi_photo{
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.5vw, 30px);
	padding: 0 0 clamp(40px, 5vw, 80px);
}

.tochigi_photo figure img{
	border-radius: 5px;
	position: relative;
	
}

#gaiyo{
	padding: var(--main-padding-bottom);
}

#gaiyo h2{
	text-align: center;
	margin-bottom: 1em;
	font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
	color: var(--color-main-shade);
}



/* テーブル全体のスタイル */
.custom-profile-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #dcd7c0;
    border-bottom: 1px solid #dcd7c0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 2em auto;
    max-width: 900px;
}

/* 各セルの基本設定 */
.custom-profile-table th,
.custom-profile-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #dcd7c0; /* 行間の区切り線 */
    text-align: left;
}

/* 最後の行の線は二重にならないように調整 */
.custom-profile-table tr:last-child th,
.custom-profile-table tr:last-child td {
    border-bottom: none;
}

/* 左側（項目名）のスタイル */
.custom-profile-table th {
    background-color: #fdfaf0; /* 非常に薄いベージュ */
    width: 30%; /* 項目の幅（お好みで調整してください） */
    font-weight: normal;
    color: #6d6d4e; /* 少し暗めのベージュ/オリーブ */
}

/* 右側（内容）のスタイル */
.custom-profile-table td {
    background-color: #fffef9; /* 白に近いベージュ */
}

/* リスト形式（主な事業内容など）の調整 */
.custom-profile-table td ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-profile-table td ul li {
    position: relative;
    padding-left: 1em;
}

.custom-profile-table td ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* スマホ向けの調整 */
@media screen and (max-width: 600px) {
    .custom-profile-table th,
    .custom-profile-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .custom-profile-table th {
        border-bottom: none;
        padding-bottom: 5px;
        background-color: #fdfaf0;
    }
    .custom-profile-table td {
        padding-top: 5px;
    }
}