.company-detail,.gallery,.gallery-list{
	margin: 0 auto;
}

/* カード枠（既存と合わせて微調整OK） */
.card {
	background: #eaf4ff;
	border-radius: 5px;
	padding: 16px;
}

/* 上段：ロゴ + 見出し群 */
.company-hero {
	display: flex;
	flex-direction: column;
	margin: 20px 5px;
	padding: 10px;
	gap: 12px;
}

.hero-top {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.company-hero .hero-top img {
	width: 140px;
	height: 140px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d0d7de;
	object-fit: contain;
	display: grid;
	place-items: center;
	text-align: center;
	font-size: 12px;
	color: #6b7280;
}

.logo {
	width: 84px;
	height: 84px;
	border-radius: 8px;
	object-fit: contain;
	background: #fff;
	border: 1px solid #d0d7de;
}

.headings .title {
	margin: 0;
	font-size: 24px;
	color: #263a7a;
}

.meta {
	color: #333;
	line-height: 1.5;
}

/* PR */
.pr-block {
	margin-top: 4px;
}

.pr-label {
	font-size: 12px;
	color: #6b7280;
}

.pr-text {
	margin: 6px 0 0;
	white-space: pre-line;
}

/* CTA + SNS */
.cta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 10px;
	margin:0px 10px;
	background: #1565c0;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.sns-links {
	display: flex;
	gap: 15px;
	margin-top: 8px;
}

.sns-icon {
	width: 32px;
	height: 32px;
}

/* 代表者 */
.rep {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
}

.rep-photo {
	width: 140px;
	height: 140px;
	border-radius: 8px;
	object-fit: cover;
	background: #fff;
	border: 1px solid #d0d7de;
}

.rep-info {
	line-height: 1.25;
}

.rep-label {
	font-size: 12px;
	color: #6b7280;
}

.rep-name {
	font-weight: 700;
}

.rep-title {
	color: #374151;
}

.rep-comment {
	color: #374151;
}

/* ギャラリー内の画像は親幅にフィットさせる */
.gallery-list img {
  display: block;
  width: 100%;      /* ← 親の幅に合わせる */
  max-width: 100%;  /* 念のための上限 */
  height: auto;     /* アスペクト比維持 */
  border-radius: 8px;
}

/* 余白のはみ出し防止（figureのデフォルトmarginをリセット） */
.gallery-list figure {
  margin: 0;
}

/* レイアウト（任意：1列→広い画面は2～3列） */
.gallery-list {
  display: grid;
  gap: 12px;
}

/* 万一、他のスタイルが強い場合の保険 */
.company-detail .gallery img { max-width: 100% !important; }

.pagination {
  margin: 24px 0;
  text-align: center;
}

.page-link {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  font-size: 14px;
  color: #374151;
}

.page-link.current {
  background-color: #2563eb;
  color: #fff;
  border-color: #2563eb;
  font-weight: bold;
  cursor: default;
}

.page-link:hover:not(.current) {
  background-color: #f3f4f6;
}

/* スマホもPCも縦並びでOK。必要なら微調整 */
@media (max-width: 480px) {
	.logo {
		width: 72px;
		height: 72px;
	}

	.sns-icon {
		width: 28px;
		height: 28px;
	}
}

.overview-long {
	white-space: pre-line;
	/* 改行コードを反映 */
}
