.article-detail-container {
	max-width: 1000px;
	margin: 0px auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	padding: 32px 24px 40px 24px;
	font-family: 'Segoe UI', 'Hiragino Sans', 'Meiryo', sans-serif;
}

.article-title {
	font-size: 2rem;
	font-weight: bold;
	color: #222;
	margin-bottom: 28px;
	border-left: 6px solid #1976d2;
	padding-left: 12px;
}

.article-meta {
	color: #888;
	font-size: 0.98rem;
	margin-bottom: 32px;
}

.article-image {
	display: block;
	width: 100%;
	max-width: 800px;
	height: 300px;
	object-fit: cover;
	margin: 36px auto 40px auto;
	border-radius: 8px;
	box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.article-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 100px;
  word-break: break-word;
}

/* Markdownコンテンツのスタイリング */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #222;
}

.article-content h1 {
  font-size: 2rem;
  border-bottom: 2px solid #1976d2;
  padding-bottom: 8px;
}

.article-content h2 {
  font-size: 1.7rem;
  border-left: 4px solid #1976d2;
  padding-left: 12px;
  margin-top: 64px;
}

.article-content h3 {
  font-size: 1.4rem;
  color: #1976d2;
}

.article-content p {
  margin-bottom: 24px;
  margin-left: 16px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content blockquote {
  border-left: 4px solid #e0e0e0;
  padding: 16px 20px;
  margin: 32px 0;
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}

.article-content code {
  background: #f5f5f5;
  color: #d73a49;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
}

.article-content pre {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px;
  margin: 32px 0;
  overflow-x: auto;
}

.article-content pre code {
  background: none;
  color: #333;
  padding: 0;
  border-radius: 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.article-content th,
.article-content td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.article-content th {
  background: #f5f5f5;
  font-weight: 600;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-content a {
  color: #1976d2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s;
}

.article-content a:hover {
  border-bottom-color: #1976d2;
}

.article-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px auto;
  max-width: 95%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.article-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #64748b;
  border-radius: 2px 0 0 2px;
}

.article-summary p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}.article-tags {
	margin-top: 36px;
	margin-bottom: 20px;
}
.article-tag {
	display: inline-block;
	background: #e3f2fd;
	color: #1976d2;
	font-size: 0.95rem;
	border-radius: 4px;
	padding: 3px 10px;
	margin-right: 7px;
	margin-bottom: 4px;
}

.back-link {
	display: inline-block;
	margin-top: 40px;
	color: #1976d2;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.back-link:hover {
	color: #0d47a1;
	text-decoration: underline;
}

.corporation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}
.corporation-card-link:hover {
  text-decoration: none !important;
}