/* ページタイトル */
.cmn_title {
	background: url("../../common/page/img/title/company.webp") no-repeat center bottom;
	background-size: cover;
}

.company_box {
	width: 100%;
	padding: var(--padding-50);
	background: #fff;
	margin-bottom: 30px;
	&:last-child {
		margin-bottom: 0;
	}
}

/* 社長あいさつ */
.company_greeting--txt {
	margin-bottom: 1.5em;
}
.company_greeting--list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 50px;
	margin: 50px auto 0;
}
.company_greeting--person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-align: center;
	
	figure {
		margin-bottom: 10px;
	}
  p.bold_txt {
    font-size: 120%;
    font-weight: bold;
    margin-top: -6px;
  }
}

/* 経営理念 */
.philosophy_txt {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1.5em;
	&:first-line {
		font-size: 2.8rem;
	}
}

/* 行動基準 */
.company_action {
	--subheadline: 1.8rem;	
	width: 100%;
	border: 1px solid var(--main-color);
	margin-bottom: 30px;
	&:last-child {
		margin-bottom: 0;
	}
}
.cmn_itemTitle {
	font-weight: normal;
	margin-bottom: 25px;
}
.ompany_action--txt {
	padding: 0 5% 25px;
}

@media screen and (max-width: 767px) {
	/* 経営理念 */
	.philosophy_txt {
		font-size: 1.7rem;
		&:first-line {
			font-size: 2rem;
		}
	}
	
	/* 行動基準 */
	.cmn_itemTitle {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	.ompany_action--txt {
		padding: 0 5% 20px;
	}
}