@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */
.bdr-gray {
	padding: .5em 1em;
	border: solid 1px #ddd;
}

.no-pt {
	padding-top: 0 !important;
}

/* キャプション付きイメージ */
.fig-caption-bottom figcaption {
	margin-top: .5em;
	font-weight: 500;
	text-align: center;
}

/* メインタイトル */
.main-title {
	font-weight: 500;
	text-align: center;
}

/* ページ内リンクナビ */
ul.list-category-navi {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
	font-size: 1.3rem;
	line-height: 1.7;
	color: #535353;
}

ul.list-category-navi li {
	padding-left: 1.2em;
}

ul.list-category-navi li:not(:last-of-type) {
	margin-right: 2rem;
}

ul.list-category-navi a {
	position: relative;
}

ul.list-category-navi a::before {
	content: '';
	position: absolute;
	left: -1.1em;
	top: .5em;
	width: 0;
	height: 0;
	margin: auto;
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	border-top: 6px solid #535353;
}

/* 帯見出し */
.category-title-outer {
	background-color: #E6E6E6;
	margin-top: 6rem;
}

.category-title {
	font-weight: 500;
	font-size: 2rem;
	padding: .9em 0;
}

/* サブセクション */
.sub-title {
	font-weight: 700;
}

.sub-bdr-bottom {
	border-bottom: solid 1px #D9D9D9;
}

hr.sub-bdr-bottom {
	border-top: none;
}

/* サブサブセクション */
.sub-sub-title {
	padding-left: 13px;
	position: relative;
}

.sub-sub-title::before {
	content: '';
	display: block;
	width: 4px;
	height: 85%;
	background: #000;
	position: absolute;
	top: 8%;
	left: 0;
}

.sub-item-container .sub-sub-title {
	margin-top: 0;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {

	article {
		font-size: 1.5rem;
		line-height: 1.6;
	}

	/* フレックスコンテナ */
	.flex-item-text,
	.flex-item-img {
		width: 100%;
	}

	/* メインビジュアル */
	.main-visual {
		margin-top: 2rem;
	}

	/* メインタイトル */
	.main-title {
		margin: 5rem 0 0;
		font-size: 2.2rem;
		line-height: 1.4;
	}

	/* サブセクション */
	.sub-section {
		padding-top: 5rem;
	}

	.sub-bdr-bottom {
		padding-bottom: 5rem;
	}

	.sub-section .sub-title {
		font-size: 1.8rem;
	}

	.text-container {
		margin-top: 2rem;
	}

	.img-container {
		margin-top: 3rem;
	}

	.flex-container>.flex-item:nth-of-type(n+2)>.text-container:first-child,
	.flex-container>.flex-item:nth-of-type(n+2)>.img-container:first-child {
		margin-top: 0;
	}

	/* サブアイテム・2列 */
	.sub-item-container>.sub-item {
		padding-top: 5rem;
	}

	.sub-title+.sub-item-container>.sub-item:nth-of-type(-n+2) {
		padding-top: 2rem;
	}

	/* 注釈セクション */
	.caption-section {
		padding-top: 5rem;
	}

	/* サブサブセクション */
	.sub-sub-title {
		margin-top: 6rem;
		font-size: 1.6rem;
	}

	.sub-title+.sub-sub-item>.sub-sub-title,
	.sub-title+.sub-sub-title {
		margin-top: 3rem;
	}

}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {

	/* 最大幅 */
	.maxw750 {
		max-width: 750px;
	}

	.maxw860 {
		max-width: 860px;
	}

	/* フレックスコンテナ：カスタム幅 */
	.flex-container.r40p {
		justify-content: space-between;
	}

	.flex-container.r40p>.flex-item.r40p-l {
		padding-right: 4%;
		flex: 1;
	}

	.flex-container.r40p>.flex-item.r40p-r {
		width: 40%;
	}

	/* メインビジュアル */
	.main-visual {
		margin-top: 8rem;
	}

	#categoryNavi+.main-visual {
		margin-top: 2.4rem;
	}

	/* メインタイトル */
	.main-title {
		margin: 8rem 0 0;
		font-size: 3.2rem;
		line-height: 1.4;
	}

	/* ページ内リンクナビ */
	ul.list-category-navi {
		justify-content: center;
		margin-top: 3rem;
		font-size: 1.4rem;
	}

	/* 帯見出し */
	.category-title-outer {
		margin-top: 10rem;
	}

	.category-title {
		font-size: 3rem;
	}

	/* サブセクション */
	.sub-section {
		padding-top: 8rem;
	}

	.sub-bdr-bottom {
		padding-bottom: 8rem;
	}

	.sub-title {
		font-size: 2.2rem;
	}

	.text-container,
	.img-container {
		margin-top: 4rem;
	}

	.text-container.pc-slim,
	.img-container.pc-slim {
		margin-top: 2rem;
	}

	/* サブアイテム・2列 */
	.sub-item-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.sub-title+.sub-item-container>.sub-item:nth-of-type(-n+2) {
		padding-top: 4rem;
	}

	.sub-item-container>.sub-item {
		display: flex;
		flex-direction: column;
		width: 47%;
		padding-top: 8rem;
	}

	.sub-item-container>.sub-item.sub-bdr-bottom {
		padding-bottom: 8rem;
	}

	.sub-item-container .sub-item .img-container {
		min-height: 0%;
		/* IE対応 */
		width: 100%;
		margin-top: auto;
		padding-top: 2rem;
	}

	/* 画像下揃え */
	.fix-bottom-img .flex-item {
		display: flex;
		flex-direction: column;
	}

	.fix-bottom-img .img-container {
		min-height: 0%;
		/* IE対応 */
		width: 100%;
		margin-top: auto;
		padding-top: 2rem;
	}

	/* 注釈セクション */
	.caption-section {
		padding-top: 8rem;
	}

	/* サブサブアイテム */
	.sub-sub-item {
		padding-top: 8rem;
	}

	.sub-title+.sub-sub-item {
		padding-top: 4rem;
	}

	.sub-sub-title {
		font-size: 1.8rem;
	}

	.sub-sub-title+.text-container {
		margin-top: 2rem;
	}

}