@charset "UTF-8";
/* CSS Document */

/* 各段落の制御 */
.outline .read-paragraph {
	display: block; /* 縦に並べる（spanタグなどのインライン対策） */
}

/* 2つ目以降の段落の頭に、可変する空行（マージン）をつくる */
.outline .read-paragraph + .read-paragraph {
	margin-top: clamp(14px, 2.1vw, 30px); 
}

.page-header-outline {
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;   /* 中のh1をハコに対して完全に上下中央揃えにする */
}

.page-header-outline h1 {
	font-size: clamp(28px, 1vw, 35px);
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
}

.page-header-outline h1 span {
	font-family: 'Noto Serif JP', serif, "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", sans-serif;
	font-size: clamp(12px, 1vw, 15px);
	color: #fff;
	letter-spacing: 0.5em;
	font-weight: 400;
	margin-top: clamp(10px, 1.2vw, 14px); /*英語「OUTLINE」との間の距離の調整*/
}

.outline-content {
	padding: 100px 0;
	color: #000;
}

.outline-title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #231815;
	margin-bottom: 30px;
	padding-left: 12px;
	border-left: 2px solid #231815;
}

/* セクション同士の間隔 */
.outline-section {
	margin-bottom: 60px;
}
.outline-section:last-child {
	margin-bottom: 0;
}

/* テーブル共通 */
.outline-table {
	width: 100%;
	border-collapse: collapse; /* セルの隙間をなくし、線を1本に重ねる */
	border-top: 1px solid #666;
}

/* 各行の指定 */
.outline-table tr {
	border-bottom: 1px solid #c2c2c2; 
}

.outline-table tr:last-child {
	border-bottom: 1px solid #666;
}

/* 左右のセルの中身の基本設定 */
.outline-table th,
.outline-table td {
	font-size: 15px;
	padding: 15px 25px;
	vertical-align: middle;
	box-sizing: border-box;
}

/* 左側（TH）の背景 */
.outline-table th {
	width: 31%;
	background-color: #f5f3f2;
	font-weight: 400;
	text-align: left;
}

/* 右側（TD）の行間 */
.outline-table td {
	width: 69%;
	line-height: 2;
	text-align: left;
}


/* ─── 予告広告のテキストなど、特殊な要素の微調整 ─── */
.outline-table td .notice-label {
	display: block;
	font-size: 25px;  /*// pcもspもここのサイズは変更不可！！ //*/
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}

.outline-table td .notice-text {
	font-size: 13px;
	line-height: 1.7;
}

.outline-caution p {
	font-size: 10px;
	line-height: 1.2;
}


/* sp */
@media (max-width: 768px) {
/* 文章の行間（スマホ用に少し詰める） */
.outline .read-paragraph + .read-paragraph {
	margin-top: 20px; 
}

.outline-content {
	padding: 60px 20px;
	box-sizing: border-box;
}

/* 左右のセルの中身の基本設定 */
.outline-table th,
.outline-table td {
	font-size: 14px;
}

.outline-table tr {
	display: flex;
	flex-direction: column;
}

.outline-table th {
	width: 100%;
}

.outline-table td {
	width: 100%;
}
}


/* 調整 */
@media (max-width: 430px) {
.page-header-outline {
	height: 90px;
}

}