@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
/*------------------------------------global*/
* {
	font-size: 14px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html{
	overflow: scroll;
}
body {
	background: #fff url(/wp-content/themes/fwstory/img/background.jpg) repeat center top;
	position: relative;
	min-width: 320px;
	color: #333;
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', Arial, sans-serif;
	text-align: center;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
img {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	border: none;
}
ol,ul,dl,dt,dd,li {
	list-style: none;
}
a {
	color: #005;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
iframe {
	border: none;
}
object {
	outline: none;
}
video {
	max-width: 100%;
}

form,fieldset {
	border: none;
}
button,
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}


table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,tr,td{
	border-width: 1px;
	border-style: solid;
}
table,th,tr,td {
	border-color: #dddddd;
}
.more {
	text-align: right;
}
.more a {
	background: #fff;
	border: 1px solid #005;
	color: #333;
	font-size: 0.9rem;
	padding: 0.2rem 1rem;
}
/*----------------------------------------------------form*/
fieldset {
	background: #f8f8f8;
	padding: 1rem;
	width: 100%;
}
form dd {
	margin-bottom: 1rem;
}
form dd > * {
	padding: 0.3rem;
}
form dd textarea {
	width: 80%;
	height: 200px;
}
form dd input[type=submit] {
	transition: 0.2s;
	display: block;
	border: 1px solid #ffffff;
	border-radius: 0;
	background: linear-gradient(#f99,#f69);
	padding: 0.5rem;
	text-align: center;
	color: #ffffff;
	width: 300px;
	cursor: pointer;
	margin: 1rem auto;
}
form dd input[type=submit]:hover {
	filter: brightness(1.2);
}
form dd input[type=submit].disabled {
	background: #eeeeee;
	color: #cccccc;
}

form dd.blank:after {
	content: '※必須入力です';
	display: block;
	font-weight: bold;
	color: #ee0000;
}

/*----------------------------------------------------header*/
header {
	width: 1100px;
	margin: 0 auto;
	padding: 0.5rem 0;
}

header h1 {
	text-align: left;
}
header h1 a {
	display: block;
}
/*----------------------------------------------------.breadcrumb*/
.breadcrumb ul {
	background: rgba(255,255,255,0.9);
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 0.3rem;
	line-height: 1.2;
	text-align: left;
}
.breadcrumb ul li {
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1.2;
}
.breadcrumb ul li * {
	font-size: 0.8rem;
	line-height: 1.2;
}
.breadcrumb ul li::after {
	content: '>';
	margin-left: 0.3rem;
}
.breadcrumb ul li:last-child::after {
	content: '';
}

/*----------------------------------------------------list*/
.list > li {
	background: #fff;
	border: 2px solid #ff9326;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}
.list > li figure {
	display: grid;
	grid-template-columns: minmax(100px,100px) 1fr;
	grid-auto-rows: 100%;
	align-items: center;
}
.list > li figure img {
	min-width: 100px;
	min-height: 100px;
}
.list > li figure figcaption {
	padding: 0 0.5rem;
}
.list > li figure figcaption a {
	display: inline-block;
	color: #333;
}
.list > li figure figcaption a:hover {
	color: #888;
}
.list > li figure figcaption a b {
	font-size: 1.3rem;
}
.write-data {
	text-align: right;
	color: #888;
}
.write-data span {
	margin: 0 0.5rem;
	font-size: 0.9rem;
}
.write-data .writer a {
	color: #888;
	font-size: 0.9rem;
}
.write-data .writer::after {
	display: inline-block;
	content: '';
	background-image: url(/wp-content/themes/fwstory/img/icon-write.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
}
/*----------------------------------------------------post*/
.post {
	background: #fff;
	border: 2px solid #ff9326;
	border-radius: 0.5rem;
	padding: 2rem;
	margin-bottom: 0.5rem;
}
.post > h3 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #005;
	margin-bottom: 1rem;
	border-bottom: 1px dashed #005;
	padding: 0.5rem;
	letter-spacing: unset;
}
.post > .comment {
	line-height: 1.6;
	font-size: 1rem;
}
/*----------------------------------------------------wp-pagenavi*/
.wp-pagenavi {
	text-align: center;
	margin: 2rem auto;
}
.wp-pagenavi .current,
.wp-pagenavi > a {
	display: inline-block;
	background: #fff;
	border: 1px solid #ff9326;
	padding: 0.5rem;
	margin: 0 0.1rem;
	font-weight: bold;
	color: #333;
}
.wp-pagenavi > a:hover {
	color: #888;
}
.wp-pagenavi .current {
	background: #ccc;
}
/*----------------------------------------------------archivelist*/
.archive-list {
	padding: 0 1rem;

}
.archive-list dt {
	margin-top: 1rem;
}
.archive-list dd {
	text-indent: 1rem;
}
/*----------------------------------------------------main*/
main {
	display: flex;
	padding: 0.5rem 0.5rem 3rem;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1100px;
	margin: 0 auto;
	text-align: left;
	min-height: 80vh;
	background: rgba(255,255,255,0.9);
}
main aside h4,
section > h2 {
	text-align: left;
	width: 100%;
	margin: 1rem auto;
	padding-bottom: 0.2rem;
	font-size: 1.3rem;
	letter-spacing: 0.3rem;
	background: #000;
	color: #fff;
	position: relative;
}
main aside h4::before,
section > h2::before {
	display: inline-block;
	content: '';
	background-image: url(/wp-content/themes/fwstory/img/h-decoration.png);
	background-size: contain;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	top: -50%;
}
main aside h4 span,
section > h2 span {
	padding-left: 70px;
	font-size: 1rem;
}
main aside ul {
	padding: 0.3rem 0;
}
main aside ul li {
	margin-bottom: 0.3rem;
}
main aside ul li p {
	text-align: right;
	font-weight: bold;
}
/*----------------------------------------------------section*/
section {
	width: 770px;
}
section article {
	margin: 1rem 0 2rem;
}
section article h3 {
	font-weight: bold;
	padding: 0.3rem;
	letter-spacing: 0.3rem;
}
/*----------------------------------------------------aside*/
main aside {
	width: 300px;
}
main aside .profile {
	padding: 0.5rem;
}
main aside .profile figure {
	width: 100%;
	max-width: 200px;
	margin: 1rem auto;
}
main aside .profile figure img {
	width: 100%;
}
main aside .profile-comment,
main aside .profile-author {
	font-size: 0.9rem;
}
main aside .profile-author::after {
	display: inline-block;
	content: '';
	background-image: url(/wp-content/themes/fwstory/img/icon-write.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
}
aside .widget {
	margin: 1rem auto;
}
aside #wp-calendar {
	width: 100%;
	text-align: center;
	background: #fff;
}
aside #wp-calendar caption,
aside #wp-calendar th {
	border: 1px solid #ddd;
	border-bottom: none;
	padding: 0.3rem;
	background: #fff;
}
aside #wp-calendar td {
	line-height: 2;
}
aside #wp-calendar tr td a {
	color: #005;
	font-weight: bold;
	text-decoration: underline;
}

/*----------------------------------------------------footer*/
/*----------------------------------------------------#nf404*/
#nf404 article {
	text-align: center;
}
#nf404 article figure {
	margin: 0 auto 2rem;
}
#nf404 article figure img {
	width: 40%;
	max-width: 200px;
}
footer {
	background: #000;
	color: #ffffff;
}
footer nav {
	text-align: center;
}
footer nav ol {

}
footer nav ol li {
	display: inline-block;
	padding: 0.5rem;
}
footer nav ol li a {
	color: #fff;
	font-size: 0.8rem;
}


footer address {
	text-align: center;
	padding: 0.5rem 0 1rem;
}

footer address *,
footer address {
	display: inline-block;
	font-style: normal;
	font-size: 0.9rem;
	color: #ffffff;
	letter-spacing: 0.05rem;
}
/*----------------------------------------------------for PC*/
@media (min-width: 769px) {
	section > h2 {
		padding-top: 0.5rem;
	}
	section > h2 span {
		font-size: 1.3rem;
	}
}
/*----------------------------------------------------for SP*/
@media (max-width: 768px) {
	* {
		font-size: 16px;
	}

	header,
	.breadcrumb ul,
	main,
	main aside,
	section,
	section article {
		width: 100%;
	}
	section article {
		padding: 0.3rem;
	}

	header {
		align-items: unset;
		margin: 0 auto;
	}
	header nav::before {
		content: '≡';
		cursor: pointer;
		display: block;
		font-size: 2rem;
		width: 40px;
		vertical-align: middle;
		margin: 0.8rem 0.5rem 0 0.3rem;
		padding: 0 0 0.2rem;
		border: 3px solid #005AA0;
		border-radius: 0.3rem;
		line-height: 1;
		color: #005AA0;
	}
	header nav::after {
		display: block;
		content: 'メニュー';
		color: #005AA0;
		font-size: 0.7rem;
		font-weight: bold;
	}

	header nav ol {
		display: none;
	}

	main h2 {
		text-align: left;
		width: 100%;
		margin: 0.3rem auto 0.5rem;
		padding: 0 0.5rem;
		letter-spacing: 0.3rem;
	}
	main aside h4::before,
	section > h2::before {
		background-image: url(/wp-content/themes/fwstory/img/h-decoration.png);
		background-size: contain;
		width: 40px;
		height: 40px;
		top: -4px;
	}
	main aside h4 span,
	section > h2 span {
		padding-left: 45px;
	}
/*----------------------------------------------------main aside*/
	main aside .release li a {
		font-size: 1.2rem;
		font-weight: bold;
	}

	main aside .info {
		text-align: center;
	}
	main aside .info h5 img {
		max-width: 320px;
	}
	main aside .info ul {
		display: inline-block;
		text-align: left;
	}
	main aside .link {
		margin: 0.5rem auto;
		padding: 0.3rem;
	}

	main aside .sns ul {
		justify-content: center;
	}
/*----------------------------------------------------.post*/
	.post {
		padding: 0.5rem;
	}
	.post .comment iframe {
		width: 89vw;
		height: 50vw;
		max-width: 640px;
		max-height: 360px;
	}


/*----------------------------------------------------list*/
	.list > li figure figcaption a b {
		font-size: 1.1rem;
		line-height: 1;
	}
	.write-data .writer a,
	.write-data span {
		font-size: 0.8rem;
	}
	.write-data span {
		margin: 0 0.2rem;
	}

/*----------------------------------------------------wp-pagenavi*/
	.wp-pagenavi {
	    margin: 1rem auto;
	}
	.wp-pagenavi .current,
	.wp-pagenavi > a {
		font-size: 0.9rem;
		margin: 0 0.1rem 0.5rem;
	}
/*----------------------------------------------------archivelist*/
	.archive-list {
		padding: 0;
	}
	.archive-list * {
		font-size: 0.9rem;
	}
	.archive-list dd {
		text-indent: 0.5rem;
	}
	.archive-list dd ul li {
		margin-bottom: 0.5rem;
	}
/*----------------------------------------------------footer nav*/
	footer nav {
		transition: 0.2s;
		z-index: 100;
		position: fixed;
		top: 0;
		right: -230px;
		background: rgba(0,90,160,0.9);
		width: 230px;
		height: 110vh;
		text-align: right;
	}
	footer nav.visible {
		right: 0;
	}
	footer nav::before {
		content: '×';
		cursor: pointer;
		display: inline-block;
		font-size: 1.8rem;
		margin-top: 0.8rem;
		margin-right: 0.3rem;
		padding: 0 0.5rem 0.2rem;
		border: 3px solid #fff;
		border-radius: 0.3rem;
		line-height: 1;
	}
	footer nav ol {
		display: block;
	}
	footer nav ol li {
		display: block;
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	footer nav ol li a {
		display: block;
		padding: 0.3rem;
		text-align: left;
		font-weight: bold;
		font-size: 1.2rem;
	}

	footer address *, footer address {
		letter-spacing: 0;
		font-size: 0.8rem;
	}
}
