/**
 * GPTXT Article Pattern 02
 *
 * Pattern02: ミニマル
 * - 装飾を極力減らす
 * - 余白とタイポグラフィで見せる
 * - 白黒ベースの洗練された印象
 */

/* =========================
   Wrapper
========================= */
.gptxt-pattern-02 {
	background: #ffffff;
}

/* =========================
   Title
========================= */
.gptxt-pattern-02 .gptxt-title {
	font-size: 32px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #111111;
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e5e7eb;
}

/* =========================
   Link / Image
========================= */
.gptxt-pattern-02 .gptxt-link {
	margin-bottom: 22px;
}

.gptxt-pattern-02 .gptxt-img {
	border-radius: 0;
	box-shadow: none;
}

/* =========================
   Button
========================= */
.gptxt-pattern-02 .gptxt-btn {
	background: #111111;
	color: #ffffff;
	border: 1px solid #111111;
	border-radius: 0;
	box-shadow: none;
	padding: 15px 18px;
	letter-spacing: 0.02em;
}

.gptxt-pattern-02 .gptxt-btn:hover {
	background: #ffffff;
	color: #111111;
	text-decoration: none;
}

.gptxt-pattern-02 .gptxt-btn:visited,
.gptxt-pattern-02 .gptxt-btn:focus,
.gptxt-pattern-02 .gptxt-btn:active {
	text-decoration: none;
}

/* =========================
   Headings
========================= */
.gptxt-pattern-02 .gptxt-headding {
	font-size: 24px;
	line-height: 1.45;
	font-weight: 700;
	color: #111111;
	margin-top: 40px;
	margin-bottom: 18px;
	padding: 0;
	border: none;
	box-shadow: none;
	position: relative;
}

.gptxt-pattern-02 .gptxt-headding::after {
	content: "";
	display: block;
	width: 56px;
	height: 2px;
	background: #111111;
	margin-top: 12px;
}

/* =========================
   Text blocks
========================= */
.gptxt-pattern-02 .gptxt-txt {
	margin-bottom: 18px;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	color: #2b2b2b;
	font-size: 16px;
	line-height: 1.95;
}

/* =========================
   Summary
========================= */
.gptxt-pattern-02 .gptxt-headding03 {
	margin-top: 48px;
}

.gptxt-pattern-02 .gptxt-txt07 {
	font-size: 17px;
	color: #1a1a1a;
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 640px) {
	.gptxt-pattern-02 .gptxt-title {
		font-size: 24px;
		margin-bottom: 22px;
		padding-bottom: 14px;
	}

	.gptxt-pattern-02 .gptxt-headding {
		font-size: 20px;
		margin-top: 32px;
		margin-bottom: 14px;
	}

	.gptxt-pattern-02 .gptxt-headding::after {
		width: 42px;
		margin-top: 10px;
	}

	.gptxt-pattern-02 .gptxt-txt,
	.gptxt-pattern-02 .gptxt-txt07 {
		font-size: 15px;
		line-height: 1.9;
	}

	.gptxt-pattern-02 .gptxt-btn {
		padding: 14px 16px;
	}
}