@charset "UTF-8";
/* CSS Document */

/* Browser reset to zero out margins, padding, and sizing */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {

	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
display: block;
}

body {
	margin: 0;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	
}

.post * {
	margin: 0;
}

.post img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*            contents
--------------------------------------------------------------*/

* {
	box-sizing: border-box;
		background: #f1dfcb;
}


/*             grid
----------------------------------------------------------------*/
body {
/*	color: #404040;*/
}

.post {
	width: 100vw;
	height: 100vh;
	display: grid;
/*	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;*/
	grid-template-columns: repeat(11 , 1fr);
	grid-template-rows: repeat(7 , 1fr);
	grid-column-gap: 40px;
	margin: 0 0 0 40px;
	font-family: "Kalnia", serif;
	color: #404040;
	font-size: 16px;
}

.post-logo {
	grid-column: 1;
	grid-row: 1;
	width: 85px;
	height: 80px;
	align-self: center;
}

.post-title {
	align-self: center;
	font-size: 3.8125rem;
	font-weight: 900;
	line-height: 1.2;
	grid-column: 2 / 7;
	grid-row: 1;
}

.post-author {
	grid-column: 6 / 8;
	grid-row: 1;
	 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	align-self: center;
	justify-self: end;
}

.post-date {
	grid-column: 9 / 11;
	grid-row: 1;
	 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	font-size: 0.875rem;
	align-self: center;
	justify-self: end;
}

.post-lead {
/*
	font-size: 19px;
	font-weight: 700;
	line-height: 2.25;
*/
	grid-column: 1 / 6;
	grid-row: 2;
	font-size: 0.975rem;
	font-weight: 700;
	line-height: 1.5;
	align-self: center;
}

.post-text01 {
	grid-column: 1 / 6;
	grid-row: 3;
	font-size: 0.75rem;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}

.post-fig01 {
	height: 450px;
	grid-column: 6 / 11;;
	grid-row: 2 / 5;
}

figcaption {
	 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.875;
	text-align: end;
}

.post-text02 {
	grid-column: 6 / 11;
	grid-row: 6;
	font-size: 0.75rem;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}

.post-fig02 {
	grid-column: 1 / 6;
	grid-row: 4 / 7;
	
}

.post-catch {
	grid-column: 3 / 6;
	grid-row: 4;
	jutify-self: center;
	align-self: center;
	font-size: 1.25rem;
	line-height: 1.5;
	text-align: center;
	quotes: '“' '”';
	display: grid;
	grid-auto-flow: column;
/*	grid-column-gap: 10px;*/
	background-color: rgb(241,223,203, .5)
}

.post-catch::before {
	content: open-quote;
}

.post-catch::after {
	content: close-quote;
}

.post-catch::before, .post-catch::after {
	color: #666;
	font-size: 2rem;
	font-weight: 900;
}

/*
.post-sns {
	grid-column: 10;
	grid-row: 7;
}
*/

