/* 役員紹介ショートコード [boc_executives] 用スタイル */

.boc-executives {
	line-height: 1.8;
	/* コンテンツ幅が狭いセクション（会社概要=780px）内でも広く表示するためのはみ出し配置 */
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw - 40px);
	max-width: 1140px;
	/* 直後に続く会社概要の表との間隔 */
	margin-bottom: 80px;
}

/* 代表メッセージ（常に写真・プロフィールより上に表示） */
.boc-exec-message {
	margin-bottom: 50px;
}
.boc-exec-message-h {
	position: relative;
	margin: 0 0 30px;
	padding-bottom: 15px;
	font-size: 27px;
	line-height: 1.5;
	font-weight: bold;
}
.boc-exec-message-h::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 3px;
	background: #FF9146;
}
.boc-exec-message-txt {
	margin: 0 0 22px;
}
.boc-exec-message-sign {
	margin: 0;
	text-align: right;
}

/* 写真
   ※テーマ/Elementor側の p・img へのマージン指定に負けるため、
     セレクタを重ねたうえで余白は !important で確定させている */
.boc-executives .boc-exec-photo {
	margin: 0 0 40px !important;
}
.boc-executives .boc-exec-photo img {
	display: block;
	width: 100%;
	max-width: 340px;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin: 0 !important;
}

/* プロフィール */
.boc-executives .boc-exec-profile {
	border-left: 4px solid #FF9146;
	padding-left: 20px;
}
.boc-executives .boc-exec-profile-h {
	margin: 0 0 20px !important;
	font-size: 20px;
	font-weight: bold;
}
.boc-executives .boc-exec-profile-sub {
	margin: 26px 0 4px !important;
	font-size: 15px;
	font-weight: bold;
	color: #FF9146;
}
.boc-executives .boc-exec-profile-txt {
	margin: 0 !important;
	font-size: 15px;
}
/* 保有資格：カラム幅に1行で収まるよう本文より少し小さく詰める */
.boc-executives .boc-exec-licenses {
	font-size: 14px;
	letter-spacing: -0.02em;
}

/* スマホ：メッセージ → 1人ずつ（写真+プロフィール）の順で縦積み */
@media screen and (max-width: 767px) {
	.boc-exec-person {
		margin-bottom: 50px;
	}
	.boc-exec-person:last-child {
		margin-bottom: 0;
	}
}

/* PC：役員を2カラムで横並び（3人目は下段左に配置される） */
@media screen and (min-width: 768px) {
	.boc-exec-message {
		max-width: 640px;
		/* ブロック自体は中央配置（文字は左揃えのまま） */
		margin: 0 auto 70px;
	}
	.boc-exec-people {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.boc-exec-person {
		width: 47%;
		/* 上段と下段の間隔 */
		margin-bottom: 60px;
	}
	.boc-exec-person:last-child {
		margin-bottom: 0;
	}
}
