@charset "UTF-8";
/* blog_one.css */

section {
	padding-top: 40px;
}

/* ----- h1 ----- */
h1 {
	line-height: 1;
}
h1 > * {
	width: 100%;
	line-height: 1.5;
	display: inline-block;
}
h1 .blog_date {
	font-size: 16px;
	font-family: din-2014, "Barlow", sans-serif !important;
	font-weight: 600 !important;
	line-height: 1;
	margin-bottom: 1em;
	padding-top: 20px;
	color: #808080;
}
h1 .blog_title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: .75em;
}
h1 + img {
	margin-top: clamp(40px,6vw,60px);
}
h1 + .blog_cont {
	margin-top: 20px;
}

/* ----- タグ ----- */
.blog_taglist {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}
.blog_taglist li {
	margin-right: 1em;
}
.blog_taglist li a {
	font-weight: bold;
	color: #ff5d00
}

/* ----- 本文 ----- */
.blog_cont p {
	text-align: justify;
	line-height: 2;
}
.blog_cont a {
	text-decoration: underline;
}
.blog_cont img {
	width: calc(50% - 1%);
}
/* 動画 */
.youtube {
  width: calc(50% - 1%);
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/* 横 */
.flex_box {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.flex_box > * {
	width: calc(50% - 1%);
}
.flex_box + .flex_box,
.flex_box > *:nth-of-type(n+3) {
	margin-top: 2%;
}
.flex_box > img {
	height: auto;
	display: block;
	object-fit: contain;
}

@media screen and (max-width:768px) {
	h1 .blog_date {
		padding-top: 0;
	}
	h1 + img {
		margin-top: 30px;
	}
	.blog_cont {
		padding-bottom: 0;
	}
	.blog_cont img {
		width: 100%;
		max-width: 500px;
	}
	/* 動画 */
	.youtube {
		width: 100%;
		max-width: 500px;
	}
	/* 横 */
	.flex_box {
		flex-wrap: wrap;
	}
	.flex_box > * {
		width: 100% !important;
	}
	.flex_box > * + * {
		margin-top: 20px !important;
	}
}