@charset "UTF-8";

/* ======================================================
-----mainContents------------------------------------
=========================================================*/
html {
	margin : 0;
	padding : 0;
	font-size:62.5%;
}

body {
	margin : 0;
	padding : 0;
	width : 100%;
	height:100%;
	font-family: fot-tsukuaoldmin-pr6n, serif;
	font-size: 1.5rem;
	font-weight: 300;
	color:#000;
	line-height:1.8;
	z-index: 1;
	background-color:#fff;
	-webkit-font-smoothing: antialiased;
	/* font-feature-settings : "palt"; */
}

#nav,
.title h2 {
	font-family: "Times New Roman", serif;
	font-style: italic;	
}
.jp,
.title p {
	font-family: yu-gothic-pr6n, sans-serif;
	font-style: normal;
	font-weight: 400;
}


h1,h2,h3,h4 {
	font-weight: normal;
}
a {
	display: inline-block;
	color:#000;
	text-decoration: none;
	word-break: break-word;
}
img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: text-bottom;
}

li{
	list-style:none;
}
/* SVG */
.svg-block {
  display: block;
}
object {
	pointer-events: none;
}
.svg-link object {
	overflow:visible;
}
/* SVG */
svg {
	width: 100%;
	height: 100%;
}
::selection {
 background: #f5f5f5;
 color:#333;
}
::-moz-selection {
 background: #f5f5f5;
 color:#333;
}
form ::selection {
 background: #f5f5f5;
 color:#333;
}
form ::-moz-selection {
 background: #f5f5f5;
 color:#333;
}

:focus {
	outline: 0;
}

.nolink {
	cursor: none;
}
.br_sp {
	display: none;
}
.br_pc {
	display: inline-block;
}


/*---Flex box */
.flex {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items:center;
}
.bg_cover {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fix_img {
	width: 100%;
	position: relative;
	background-attachment: fixed;
}


/* ***** Common **************** */
.pc {
	display: inline;
}
.sp {
	display: none;
}


/* ***** Layout **************** */
html {visibility: hidden;}
html.wf-active,html.loading-delay {visibility: visible;}

body, a {
	cursor: none;
}
#cursor {
	position: fixed;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 1px #000 solid;
	border-radius:50%;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transition: width 0.1s, height 0.1s, margin 0.1s;
}
#cursor.active {
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	/* background: rgba(0,0,0,0.8); */
}
@media only screen and (max-width: 767px) {
	body {
		cursor: auto;
	}
	a {
		cursor: pointer;
	}
	#cursor {
		display: none;
	}
}

/* ***** Nav **************** */
#nav {
	padding: 5%;
	padding-bottom: 0;
}
#nav .inner {
	width: 100%;
	max-width: 1400px;
	position: relative;
	margin: 0 auto;
}
#nav #nav_logo {
	font-size: 2.6rem;
	text-align: center;
}
#nav #nav_about {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
	#nav {
		padding-top: 0;
	}
	#nav #nav_logo {
		font-size: 2.3rem;
		text-align: left;
	}
	#nav #nav_about {
		font-size: 1.5rem;
	}
}


/* ***** Column **************** */
.col1 {
	width: calc((100% - 42px) / 4);
}
.col2 {
	width: calc(50% - 7px);
}
.col3 {
	width: calc((100% - 42px) / 4 * 3 + 28px);
}
.col4 {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.col1,
	.col2,
	.col3,
	.col4 {
		width: 100%;
	}
}


#maincontents {
	padding: 5%;
}
section {
	max-width: 1400px;
	margin: 0 auto;
}
.blockwrap {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items:stretch;
	position: relative;
}
.title {
	position: relative;
	margin-bottom: 5px;
	padding: 10px 0;
	padding-top: 12px;
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
}
.title:after {
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 1px #000 solid;
}
.title p {
	padding-bottom: 5px;
	font-size: 1.2rem;
}
.page .title:after {
	border: 1px #000 solid;
}
@media only screen and (max-width: 1180px) {
	.title h2 {
		font-size: 1.65vw;
	}
	.title p {
		font-size: 1vw;
	}
}
@media only screen and (max-width: 767px) {
	#maincontents {
		padding: 5% 0;
		padding-top: 10%;
	}
	#top #maincontents {
		padding-bottom: 0;
	}
	.title {
		margin-bottom: 0;
		border-bottom: 1px #000 solid;
	}
	.title h2 {
		font-size: 1.6rem;
	}
	.title p {
		font-size: 1rem;
	}
	#top .title:after {
		content:'';
		display: block;
		width: 18px;
		height: 32px;
		top: 50%;
		left: auto;
		right: 5%;
		border: 0;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(../img/arrow.svg);
		transform: translate(0,-50%);
	}
	#top .title.active:after {
		transform: translate(0,-50%) rotate(180deg);
	}
	.page .title:after {
		display: none;
	}
}


.video {
	position: relative;
	height: 0;
	margin-bottom: 10px;
	padding-top: 56.25%;
	overflow: hidden;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.txt {
	padding-top: 10px;
	padding-bottom: 30px;
}
.txt:last-of-type {
	padding-bottom: 0;
}
.txt h1 {
	padding-bottom: 20px;
}
.txt a {
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	.txt {
		padding-left: 5%;
		padding-right: 5%;
	}
}


/* ***** Archive **************** */
.archive_list li {
	margin-bottom: 10px;
}
.archive_list li:last-of-type {
	margin-bottom: 0;
}
.archive_list a {
	display: block;
	position: relative;
	filter:grayscale(100%);
	opacity: 0.7;
}
.archive_list a:after {
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px #000 solid;
	opacity: 0;
}
.archive_list a:hover {
	filter:grayscale(0%);
	opacity: 1;
}
.archive_list a:hover:after {
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	.archive_list li {
		margin-bottom: 0;
	}
	.archive_list li:nth-of-type(n + 2) {
		display: none;
	}
	.archive_list a:after {
		display: none;
	}
	.archive_list a:hover {
		filter:grayscale(100%);
	}

	.archive_list .active + ul li {
		margin-bottom: 10px;
	}
	.archive_list .active + ul li:nth-of-type(n + 2) {
		display: block;
	}
}

/* ***** Single **************** */
.page .genre_title {
	opacity: 0;
	pointer-events: none;
}
.nature-health .taxA,
.traditional-culture-of-the-east .taxB,
.social-issues .taxC,
.art-culture .taxD {
	opacity: 1;
	pointer-events: auto;
}
#single_contents .blockwrap {
	flex-direction: row-reverse;
}
#single_img img {
	margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
	.page .genre_title {
		display: none;
		opacity: 1;
		pointer-events: auto;
	}
	.nature-health .taxA,
	.traditional-culture-of-the-east .taxB,
	.social-issues .taxC,
	.art-culture .taxD {
		display: block;
	}
}


/* ***** pagenav **************** */
#pagenav {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
#pagenav a {
	display: block;
	width: 18px;
	height: 32px;
	position: absolute;
	top: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/arrow.svg);
}
#pagenav a[rel=prev] {
	left: 10px;
	transform: translate(0,-50%) rotate(90deg);
}
#pagenav a[rel=next] {
	right: 10px;
	transform: translate(0,-50%) rotate(-90deg);
}
@media only screen and (max-width: 767px) {
	#pagenav {
		display: block;
	}
}


/* ***** About **************** */
#about-me .blockwrap {
	flex-direction: row-reverse;
}
.about_jp {
	padding-bottom: 60px;
}
.about_right {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
}
#contact li {
	display:flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items:stretch;
}
#contact p {
	padding-right: 20px;
}
@media only screen and (max-width: 1300px) {
	.about_right {
		width: 280px;
	}
}
@media only screen and (max-width: 767px) {
	#about-me .blockwrap {
		padding-bottom: 80px;
	}
	.about_right {
		width: 100%;
		margin-bottom: 50px;
	}
	#contact {
		padding-top: 0;
	}
	#copyright {
		position: absolute;
		left: 5%;
		bottom: 0;
	}
}


/* ====================================
 max width 767px
==================================== */
@media only screen and (max-width: 767px) {
.pc {
	display: none;
}
.sp {
	display: inline;
}

}





