﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=Quicksand:wght@300..700&display=swap');

body {
	font-family: "M PLUS 2", "Quicksand", "Helvetica", sans-serif;
	background-color: #f0f0f0;
	color: #333;
	margin: 0;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	box-sizing: border-box;
}

header {
	color: #7a7a7a;
	margin: 5px;
	text-align: center;
}

#onecomment {
	margin-bottom: 8px;
}

#links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#links li {
	padding: 0 10px;
	line-height: 1;
}

#links li:not(:last-child) {
	border-right: 1px solid currentColor;
}

h1 a {
	color: #535353;
	text-decoration: none;
}

h2 {
	border-left: 5px solid #007acc;
	padding-left: 10px;
}

main,
article {
	flex: 1;
}

.hidden-pc {
	display: none;
}

/* スマホ */
@media (max-width: 768px) {

	main,
	article {
		margin-left: 10px;
		margin-right: 10px;
	}

	.hidden-pc {
		display: block;
	}

	.hidden-sp {
		display: none;
	}
}

/* タブレット */
@media (min-width: 769px) and (max-width: 1200px) {

	main,
	article {
		margin-left: 100px;
		margin-right: 100px;
	}
}

/* PC */
@media (min-width: 1201px) {

	main,
	article {
		margin-left: 300px;
		margin-right: 300px;
	}
}

.title {
	margin-bottom: 0;
}

.tags {
	font-size: 13px;
	color: #7a7a7a;
	margin-top: 0;
}

blockquote {
	position: relative;
	background-color: #dfdfdf;
	border-left: 3px solid #808080;
	padding-left: 7px;
	margin-left: 0px;
	margin-right: 0px;
}

blockquote p {
	position: relative;
	padding-left: 10px;
	padding-top: 10px;
}

blockquote cite {
	display: block;
	font-size: 0.8rem;
	color: #b0b0b0;
	text-align: right;
	padding-bottom: 15px;
	padding-right: 20px;
}
