/* コラム記事
=========================================================================*/
body {
	font-weight: 400;
}

main {
	margin-top: 150px;
}

article {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 0 100px;
	width: 1100px;
}

@media screen and (max-width:1130px) {
	article {
		padding: 0 15px;
		width: 100%;
	}
}

strong {
	color: #000;
}

article .title {
	width: 100%;
}

.inner {
	margin: 0;
	width: calc(850 / 1200 * 100%);
}

.side {
	width: calc(320 / 1200 * 100%);
}

h2.list_title {
	position: relative;
	margin-bottom: 1em;
	padding-left: 20px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5em;
}

h2.list_title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 26px;
	background-color: #004A9D;
}

ul.list_article {
	margin-bottom: 50px;
}

ul.list_article li a {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
	padding: 10px 0;
}

@media(hover: hover) {
	ul.list_article li a:hover {
		background-color: #EEE;
	}
}

ul.list_article li a figure {
	width: calc(120 / 320 * 100%);
}


ul.list_article li a h3 {
	width: calc(190 / 320 * 100%);
	font-size: 18px;
	line-height: 1.4em;
}

.side ul.list_article li a h3 {
	font-size: 13px;
}

/* Entry
-----------------------------------------------------------*/
article .entry {
	padding: 50px 0 0;
}

article .entry p.post_date {
	margin-bottom: 0;
}

article .entry h1 {
	position: relative;
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.5em;
}

article .entry p {
	margin-bottom: 1em;
}

article .entry p.small {
	font-size: 14px;
}

article .entry a {
	text-decoration: underline;
	color: #1EC6AD;
}

article .entry ul {
	margin-bottom: 1em;
	padding: 20px 2.5em;
	list-style-type: disc;
	background-color: #EEE;
}

article .entry figure {
	margin-bottom: 30px;
}

article .entry figure img {
	max-width: 100%;
}

article .entry figure figcaption {
	margin-top: 10px;
	font-size: 14px;
}

/* Index
-----------------------------------------------------------*/
#toc_container {
	margin: 2em 0 !important;
	width: 100% !important;
}
#toc_container a {
	color: #000;
}


/* 記事
-----------------------------------------------------------*/
article .text h2 {
	position: relative;
	margin: 2em 0 1em;
	padding: .25em 0 .25em .75em;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.5em;
	background-color: #E5F5FF;
}

article .text h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background-color: #004A9D;
}

article .text h3 {
	padding-top: 100px;
	margin-top: -100px;
	margin-bottom: 1em;
	padding-bottom: .25em;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.5em;
	border-bottom: 2px solid #004A9D;
}

article .text h4 {
	padding-top: 100px;
	margin-top: -100px;
	margin-bottom: .5em;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5em;
}

article .text h5 {
	margin-bottom: .5em;
	font-size: 18px;
	font-weight: 700;
}

article .text h2 span,
article .text h3 span,
article .text h4 span,
article .text h5 span {
	padding-top: 20px;
}

article .text a {
	text-decoration: underline;
	color: #1EC6AD;
}

article .text p {
	margin-bottom: 1em;
	line-height: 2em;
	letter-spacing: normal;
}

article .text p strong {
	padding: 0;
	background: none;
}

article .text figure {
	margin-bottom: 30px;
}

article .text figure img {
	max-width: 100%;
	/*width: auto;
	height: auto;*/
}

article .text figure figcaption {
	margin-top: 10px;
	/*font-size: 14px;*/
}

article .text ul {
	margin-bottom: 1em;
	padding: 20px 2.5em;
	list-style-type: disc;
	background-color: #EEE;
}

article .text ul:has(+ h3) {
	margin-bottom: 3em;
}

article .text ol {
	margin-bottom: 1em;
	padding: 20px 2.5em 20px 1em;
	list-style-type: none;
	background-color: #EEE;
}

article .text ol li {
	list-style: none;
	padding-left: 1.3em;
	text-indent: -1.3em;
}

article .text ol.number {}

article .text ol.number li {
	position: relative;
	padding-left: 2em;
	text-indent: 0;
}

article .text ol.number li span {
	position: absolute;
	left: .65em;
	margin: 0
}


article .text blockquote,
article .text .point {
	margin-bottom: 1em;
	padding: 1em 1.5em;
	background-color: #EEE;
}


article .text p.small {
	font-size: 14px;
}

article .text blockquote p:last-of-type {
	margin-bottom: 0;
}

article .text blockquote ul,
article .text .point ul {
	padding: 0 2.5em;
}

article .text blockquote ol,
article .text .point ol {
	padding: 0 2.5em 0 1em;
}

article .text table {
	margin-bottom: 1em;
	width: 100%;
}

article .text tr th,
article .text tr td {
	padding: .75em .5em;
}

article .text tr:nth-child(odd) th,
article .text tr:nth-child(odd) td {
	background-color: #EEE;
}

article .text p:has(+ h3),
article .text ul:has(+ h3),
article .text ol:has(+ h3),
article .text .point:has(+ h3),
article .text blockquote:has(+ h3),
article .text table:has(+ h3) {
	margin-bottom: 3em;
}

article .text p:has(+ h4),
article .text ul:has(+ h4),
article .text ol:has(+ h4),
article .text .point:has(+ h4),
article .text blockquote:has(+ h4),
article .text table:has(+ h4) {
	margin-bottom: 3em;
}

article .text p:has(+ h5),
article .text ul:has(+ h5),
article .text ol:has(+ h5),
article .text .point:has(+ h5),
article .text blockquote:has(+ h5),
article .text table:has(+ h5) {
	margin-bottom: 2em;
}

article hr {
	margin: 40px 0;
	border-top: 1px solid #C2C2C2;
}

article a.button_list {
	overflow: hidden;
	position: relative;
	display: block;
	margin: 0 auto 80px;
	width: 305px;
	height: 64px;
	font-weight: 600;
	font-size: 18px;
	line-height: 64px;
	letter-spacing: .05em;
	text-align: center;
	color: #FFF;
	border-radius: 32px;
	background: #004A9D;
	box-shadow: 0 6px 0 rgba(0, 0, 0, .16);
	z-index: 2;
}

/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
	main {
		margin-top: 100px;
	}

	article {
		flex-wrap: wrap;
	}

	article .title {
		padding: 10px;
	}

	.inner {
		padding-bottom: 0;
		width: 100%;
	}

	.side {
		width: 100%;
	}

	ul.list_article li a h3 {
		font-size: 13px;
	}

	/* Entry
	-----------------------------------------------------------*/
	article .entry {
		padding: 40px 0;
	}

	article .entry h1 {
		font-size: 20px;
	}

	/* Index
	-----------------------------------------------------------*/
	article .index {
		margin-bottom: 50px;
		padding: 20px;
	}

	article .index p {
		font-size: 16px;
	}

	/* 記事
	-----------------------------------------------------------*/
	article .text {
		padding-top: 70px;
		margin-top: -70px;
		margin-bottom: 50px;
	}

	article .text h2 {
		font-size: 20px;
	}

	article .text h3 {
		padding-top: 70px;
		margin-top: -70px;
		font-size: 18px;
	}

	article .text h4 {
		padding-top: 70px;
		margin-top: -70px;
		font-size: 16px;
	}

	article .text h5 {
		font-size: 15px;
	}

		article .text h2 span,
		article .text h3 span,
		article .text h4 span,
		article .text h5 span {
			padding-top: 0;
		}

	article .text figure {
		margin-bottom: 30px;
	}

	article .text figure figcaption {
		margin-top: 5px;
		/*font-size: 12px;*/
	}

	article .text blockquote p.small {
		font-size: 12px;
	}

}

/*  480px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {}

/*  375px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:375px) {}
